body {
    background-color: #FAFAFA;
}

.c-blue {
    color: #090C47;
}

.b-light-blue {
    background-color: #C1D4F0;
}

.steps {
    color: #090C47;
    font-family: "inter", Arial, Helvetica, sans-serif;
}

.step {
    display: none;
}

.active-step {
    display: block;
}

.step-title {
    color: #090C47;
    font-size: 32px;
}

.step-title span::after {
    content: "";
    position: absolute;
    bottom: -2%;
    left: 0;
    width: 50%;
    background-color: #144295;
    height: 2px;
}

.steps .form-label {
    font-size: 20px;
    font-weight: 500;
}

.steps .form-check-label {
    font-size: 20px;
}

.steps input[type="text"],
.steps input[type="email"],
.steps input[type="password"],
.steps input[type="number"],
.steps select {
    border: 1px solid #DAD2D2;
    background-color: #fff;
    border-radius: 5px;
    height: 40px;
}

.steps input::placeholder,
.steps textarea::placeholder {
    color: #DAD2D2;
    /* font-weight: 500; */
    font-size: 16px;
}

.modal-dialog{
    max-width: 100%;
    max-height: 100%;
}

.modal-content {
    max-width: 95vw;
    margin: auto;
}

.cropper-container {
    max-height: 90vh !important;
    overflow: auto !important;
}

/* #modal-img.cropper-hidden {
    display: block !important;
    max-width: 100%;
    object-fit: contain;
} */

.form-check-input {
    width: 24px;
    height: 24px;
    background-color: #D9D9D9;
}

.form-check-input:checked {
    border-color: #D9D9D9;
    background-color: #050834;
    background-image: none;
    border-width: 5px;
}

.b-light-blue .form-check-input {
    background-color: #fff;
}

.b-light-blue .form-check-input:checked {
    border-color: #fff;
    background-color: #050834;
}

.form-check-label,
.card-body {
    color: #050834;
}

.asterisk {
    color: #FF0004;
}

.has-error,
.has-error input,
.has-error textarea {
    border-color: red !important;
}

.controller {
    width: 12%;
}

.terms-card {
    height: 400px;
    overflow-y: scroll;
}

.canvas {
    border: 2px dashed grey;
    width: 100%;
    min-height: 160px;
    position: relative;
}

.user-name,
.child-name {
    color: #144295;
    border-bottom: 1px dotted #b6995e;
    font-weight: bold;
}

.next,
.submit,
.blue-btn {
    background-color: #144295;
    color: #fff;
    border: 2px solid transparent;
}

.next:hover,
.submit:hover,
.blue-btn:hover {
    border-color: #144295;
    color: #144295;
    background-color: #fff;
}

.back {
    background-color: transparent;
    border: 2px solid #144295;
    color: #144295;
}

.back:hover {
    border-color: transparent;
    color: #fff;
    background-color: #144295;
}

.success {
    font-size: 30px;
    font-weight: 500;
}

@media screen and (max-width: 767px) {
    body {
        font-size: 15px;
    }

    h4 {
        font-size: 19px;
    }

    h5 {
        font-size: 17px;
    }

    .step-title {
        font-size: 22px;
    }

    .steps .form-label {
        font-size: 15px;
    }

    .steps .form-check-label {
        font-size: 15px;
    }

    .form-check .form-check-input {
        margin-left: -1.7em;
    }

    .controller {
        width: 24%;
    }
}