.icv-fee-wrap {
    border: 1px solid #e5e7eb;
    padding: 16px;
    border-radius: 12px;
    max-width: 920px;
	background-color: #fff;
}

.icv-field {
	display: flex;
	flex-direction: column;
	gap: 10px;
    margin-bottom: 14px;
}

.icv-label {
    font-weight: 600;
    margin-bottom: 16px;
    display: block;
}

.icv-radio-group label {
    margin-right: 16px
}

.icv-input {
    width: 100%;
    padding: 8px;
    border: none !important;
    border-radius: 8px;
	background-color: #FAFAFA;
}

.icv-row {
	display: grid;
    grid-template-columns: 1fr 120px 42px;
    gap: 8px;
    align-items: center;
    margin-bottom: 8px;
}

.icv-btn {
    padding: 8px 12px;
    border: 1px solid #d1d5db;
    background: #fff;
    border-radius: 8px;
    cursor: pointer;
	color: #828282 !important;
	width: 210px;
}

.icv-btn:hover {
    background: #133985 !important;
}

.icv-btn.del {
    border-color: #fca5a5;
	width: 50px !important;
}

.icv-btn.del:hover {
    background: #fee2e2;
}

.icv-primary {
    background-color: #E22437;
    color: #fff !important;
    border: none !important;
	
}

.icv-primary:hover {
    opacity: .92;
}

.icv-actions {
    margin-top: 12px;
}

.icv-breakdown table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 8px;
}

.icv-breakdown th,
.icv-breakdown td {
    border: 1px solid #e5e7eb;
    padding: 8px;
    text-align: left;
}

.icv-breakdown thead th {
    background-color: #133985;
	color: #fff;
}

.icv-breakdown tfoot td {
    font-weight: 700;
}

.icv-hint {
    font-size: 12px;
    color: #6b7280;
    margin-top: -4px;
    margin-bottom: 8px
}

.icv-subfield{
    margin-top: 8px;
}

[type=button]:focus, [type=button]:hover, [type=submit]:focus, [type=submit]:hover, button:focus, button:hover{
	background-color: #133985 !important;
	color: #fff;
}

.flex-col{
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	gap: 16px;
}



input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 14px;
  height: 14px;
  border: 1px solid #0075FF; /* màu viền khi chưa chọn */
  border-radius: 50%;
  outline: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

input[type="radio"]:checked {
  border-color: #bdbdbd; /* màu viền khi được chọn */
  background-color: #0075FF; /* màu trong */
}

@media(max-width: 520px){
	.flex-col{
		gap: 0px;
	}
	.icv-fee-wrap{
		border-radius: 0px;
	}
}

