
body{
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.text-primary{
    color: #002440 !important;
}

.bg-primary{
    background-color: #067FEE !important;
}

.btn-primary{
    background-color: #067FEE !important;
    border-color: #067FEE !important;
}

.border-primary{
    border-color: #067FEE !important;
}

.fw-thin{ font-weight: 200 !important; }
.fw-light{ font-weight: 300 !important; }
.fw-regular{ font-weight: 400 !important; }
.fw-medium{ font-weight: 500 !important; }
.fw-semibold{ font-weight: 600 !important; }
.fw-bold{ font-weight: 700 !important; }
.fw-extrabold{ font-weight: 800 !important; }
.fw-black{ font-weight: 900 !important; }


.custom-radio {
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
    margin-bottom: 12px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.custom-radio input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.radio-checkmark {
    position: relative;
    height: 16px;
    width: 16px;
    background-color: #fff;
    border: 2px solid #ccc;
    border-radius: 4px;
    margin-right: 10px;
    transition: all 0.3s;
    background-color: #dadada;
}

.custom-radio:hover input ~ .radio-checkmark {
    border-color: #888;
}

.custom-radio input:checked ~ .radio-checkmark {
    background-color: #2196F3;
    border-color: #2196F3;
}

.radio-checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.custom-radio input:checked ~ .radio-checkmark:after {
    display: block;
}

.custom-radio .radio-checkmark:after {
    left: 4px;
    top: 1px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.radio-label {
    font-family: Arial, sans-serif;
    font-size: 14px;
}


#form-fields input,
#form-fields select{
    border: 0px;
    background-color: #F9FAFB;
    font-size: 14px !important;
}

#form-fields input:disabled,
#form-fields select:disabled{
    cursor: not-allowed !important;
}

label{
    font-size: 14px !important;
}


#form-fields input:focus, 
#form-fields textarea:focus, 
#form-fields select:focus {
  outline: none;
  border-color: #5a5a5a;
  box-shadow: 0 0 0 1px rgb(44 44 44 / 48%);
}


@media (max-width: 768px) {
    #form-fields input,
    #form-fields select{
        font-size: 12px !important;
    }
}