/* Start General Rules */
@font-face {
    font-family: Omnes;
    src: url(../fonts/omnes-regular.otf);
}

@font-face {
    font-family: Omnes-bold;
    src: url(../fonts/omnes-bold.otf);
}

/* Hide arrows on input type number for Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Hide arrows on input type number for Firefox */
input[type=number] {
    -moz-appearance: textfield;
}


:root {
    --primary-color: #7ec287;
    --secondary-color: #308bc4;
    --gray-color: #c4c4c4;
}

body {
    
    font-family: Omnes;
    color: #202020;
}

input,
textarea {
    font-family: Omnes;
    border: none;
    outline: none;
    background-color: transparent;
}

select {
    border: none;
    outline: none;
    background-color: #fff;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    font-family: Omnes-bold;
}

a {
    text-decoration: none;
    color: var(--secondary-color);
}

    a.disabled {
        pointer-events: none;
    }

button {
    border: none;
    background-color: transparent;
}

img {
    width: 100%;
    height: 100%;
}

/* ==========input_grediant========== */
.input_grediant_container {
    background: linear-gradient(90.37deg, #308bc4 0.3%, #7ec287 99.68%);
    padding: 2px;
    border-radius: 8px;
}

.input_grediant {
    height: 56px;
    padding: 10px 20px;
    display: flex;
    column-gap: 8px;
    position: relative;
    background: #fff;
    border-radius: 6px;
}

    .input_grediant .select {
        width: 100%;
    }

    .input_grediant img {
        width: 40px;
    }

    .input_grediant .label {
        position: absolute;
        top: -12px;
        right: 16px;
        background-color: white;
        padding: 0 5px;
    }

        .input_grediant .label .gradient_text {
            background: linear-gradient(90.37deg, #308bc4 0.3%, #7ec287 99.68%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

.input label {
    display: -ms-grid;
    display: grid;
    flex-grow: 1;
    border-left: 1px solid var(--gray-color);
    padding-left: 10px;
}

/* ==========input_grediant========== */

/* ============================================ */
/* Start progress */
.progress {
    background-color: rgba(175, 216, 194, 0.2);
    margin-bottom: 20px;
    padding: 20px;
    height: auto;
    flex-direction: column;
}

.progress_container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.single_progress {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

    .single_progress span {
        white-space: nowrap;
        margin-top: 7px;
        font-size: 13px;
    }

    .single_progress.active span {
        color: var(--secondary-color);
        font-weight: bold;
    }

.progress_icon {
    display: flex;
    width: 50px;
    height: 50px;
    justify-content: center;
    align-items: center;
}

.line {
    display: flex;
    align-items: center;
    margin-right: 6px;
    margin-left: 8px;
    margin-top: -25px;
    width: 100%;
    height: 5px;
}
/* ========================= */
/* End progress */

/* Start notification_map */
.frame {
    position: relative;
    margin-top: 20px;
    width: 54px;
}

    .frame .question {
        position: absolute;
        right: 14px;
        top: -32px;
        height: 54px;
        z-index: 2;
    }

.notificationDiv {
    background-color: rgb(217, 231, 242);
    border-radius: 20px;
    margin-top: 2rem;
}
.notification_map {
    /*border-radius: 12px;*/
    /*background-color: rgba(48, 139, 196, 0.2);*/
    padding: 18px 21px;
    /*background-image: url(../assets/road.svg);*/
    /*background-repeat: no-repeat;*/
    /*background-size: cover;*/
    display: flex;
    /*position: relative;*/
    /*overflow: hidden;*/
    justify-content: space-evenly;
    align-items: center;
}

    .notification_map .blue_bubbles {
        width: 100px;
        position: absolute;
        right: 0;
        bottom: -7px;
        z-index: -1;
    }

    .notification_map .message {
        width: 60%;
        font-size: 1.2rem;
        line-height: 1.1;
        /*margin-right: 50px;*/
        /*margin-bottom: 0;*/
        /*padding: 15px 0;*/
    }
    .notification_map .estsherna {
        width: 20%;
        border-radius: 10px;
        padding: 0.5rem;
        font-size: 1.2rem;
        line-height: 1.1;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: rgb(122, 191, 138);
        color: #fff;
        cursor: pointer;
    }
        .notification_map .estsherna a{
            color: #fff;
        }
            .notification_map .estsherna a:hover {
                color: #fff;
            }
            .notification_map .message .whatsApp {
                width: 40px;
                height: 40px;
                border-radius: 50%;
                margin-right: 8px;
            }

.message .whatsApp:hover {
    transform: scale(1.1);
    box-shadow: 0px 0px 13px 0px rgba(48,139,196,0.7);
}


.notification_map .close {
    height: 20px;
    cursor: pointer;
}
/* End notification_map */

/* Start Form */
.form_container {
    padding: 20px 0;
}

    .form_container .title {
        margin-bottom: 20px;
    }

    .form_container h2 {
        margin-bottom: 5px;
        font-size: 22px;
        font-weight: bold;
    }

    .form_container .under_line {
        width: 64px;
        height: 20px;
    }

    .form_container .choose_person {
        display: flex;
        column-gap: 15px;
        margin-bottom: 40px;
        scroll-snap-type: x mandatory;
        overflow-x: auto;
        padding-bottom: 25px;
    }

        .form_container .choose_person > div {
            scroll-snap-align: start;
        }

        .form_container .choose_person .add_person {
            min-width: 102px;
            height: 117px;
        }

        .form_container .choose_person .my_self,
        .form_container .choose_person .other_person {
            border: 1px solid var(--secondary-color);
            width: 102px;
            height: 117px;
            border-radius: 8px;
            display: flex;
            flex-direction: column;
            align-items: center;
            font-weight: bold;
            padding: 10px;
        }

        .form_container .choose_person .my_self_img {
            width: 80px;
        }

            .form_container .choose_person .my_self_img img {
                margin: auto;
            }

.payment-radios-wrapper img {
    width: 40px;
}

.form-check-input[type=radio].radio-with-checkboxUI {
    border-radius: .25em;
}

.form-check-input:checked[type=radio].radio-with-checkboxUI {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
}

.form-control, .form-select {
    border-radius: 8px;
    border-color: #C4C4C4;
}

    .form-select:focus,
    .form-control:focus {
        border-color: #C4C4C4;
        box-shadow: none;
    }

    .form-select:disabled {
        color: #999;
        background-color: #fff;
    }

    .form-select + .control-label {
        font-weight: bold;
    }

    .form-select:disabled + .control-label {
        color: #999;
    }

.header_background img {
    width: 240px;
    margin-right: auto;
    display: block;
}

/* Custome buttons */
.btn {
    transition: 0.3s;
}

.btn-link {
    color: var(--secondary-color);
    text-decoration: none;
}

.white {
    color: white !important;
}

.theme-gradient {
    background: linear-gradient(90.37deg, var(--secondary-color) 0.3%, var(--primary-color) 99.68%);
    color: #fff;
}


.btn-theme-gradient {
    background: linear-gradient(90.37deg, var(--secondary-color) 0.3%, var(--primary-color) 99.68%) !important;
    color:  #fff;
}

    .btn-theme-gradient:hover {
        filter: contrast(1.4);
        color: #fff;
    }

    .btn-check:focus + .btn-theme-gradient, .btn-theme-gradient:focus {
        box-shadow: 0 0 0 0.25rem rgb(122 192 138 / 30%);
    }

.btn-theme-outline-secondary {
    background: #fff;
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

    .btn-theme-outline-secondary:hover {
        background: var(--secondary-color);
        color: #fff;
    }

.accordion-button.text-black:not(.collapsed)::after {
    filter: brightness(0);
}

.accordion-icon {
    width: 40px;
    position: absolute;
    z-index: 99;
    top: -30px;
    right: -10px;
}
/* Start Floating Inputs */
.form-floating {
    margin-top: 10px;
}

    .form-floating > .form-control, .form-floating > .form-select {
        height: 50px;
    }

    .form-floating > label {
        height: auto;
        padding: 0 10px;
        top: 10px;
        right: 15px;
        color: #555555;
    }

    .form-floating > .form-control:focus ~ label, .form-floating > .form-control:not(:placeholder-shown) ~ label, .form-floating > .form-select ~ label {
        opacity: 1;
        transform: scale(.85) translateY(-1.7rem) translateX(0);
        background-color: #fff;
        color: #202020;
    }

    .form-floating > .form-control:focus, .form-floating > .form-control:not(:placeholder-shown) {
        padding-top: 1rem;
        padding-bottom: 0.625rem;
        line-height: 1.5;
    }

    .form-floating > .form-select {
        padding-top: 0.7rem;
        padding-bottom: 0.625rem;
        padding-right: 25px;
        line-height: 1.5;
    }

label.error {
    color: #dc3545;
}
/*===========================================*/
/*========== PATIENT BODYPARTS CSS ==========*/
/*===========================================*/
.human-body {
    position: relative;
    max-width: 260px;
    display: block;
    margin-right: auto;
    background-image: url(../assets/Ameen-Brand-5.svg);
    background-repeat: no-repeat;
    background-position: left bottom;
}

.circle {
    cursor: pointer;
    position: absolute;
    width: 18px;
    height: 18px;
    background-image: url("../../assets/icon-blue-point.png");
}

    .circle.active {
        width: 30px;
        height: 30px;
        background-size: 30px;
        background-image: url("../../assets/icon-blue-point--active.png");
    }

.partNeck {
    right: 30%;
    top: 10%;
}

.partShoulder {
    top: 14%;
    right: 50%;
}

.partElbow {
    top: 36%;
    right: 15%;
}

.partHand {
    top: 25%;
    right: 2%;
}

.partBack {
    right: 44%;
    top: 30%;
}

.partThigh {
    top: 52%;
    right: 25%;
}

.partKnee {
    top: 61%;
    right: 8%;
}

.partAnkle {
    top: 81%;
    right: 41%;
}

.partFoot {
    top: 90%;
    right: 35%;
}

.partBrain {
    right: 17%;
    top: 3%;
}

.partShin {
    top: 73%;
    right: 75%;
}

.partHip {
    top: 45%;
    right: 45%;
}
/*===========================================*/
/*=================== OTP INPUT ===============*/
/*===========================================*/
.code-input:not(last-child) {
    font-size: 24px;
    max-width: 56px;
    aspect-ratio: 1/1;
    text-align: center;
    border: 1px solid var(--gray-color);
    padding: 8px;
    border-radius: 8px;
    margin-right: 30px;
}

.code-input:focus {
    outline: none;
    border-width: 2px;
    border-style: solid;
    border-image: linear-gradient(90.37deg, #308bc4 0.3%, #7ec287 99.68%);
    border-image-slice: 1;
}

/*===========================================*/
/*============== Complain CSS ===============*/
/*===========================================*/
.voice-record {
    background-color: #eff7f3;
    border-radius: 8px;
    padding: 9px;
    margin-bottom: 10px;
}

.audio-style {
    background: #f1f3f4;
    border-radius: 8px;
    width: 100%;
}

.voice-record__icon {
    cursor: pointer;
    display: block;
    margin-right: auto;
}

#audioMsg {
    font-size: 14px;
}

.delete_icon img,
.redo_icon {
    width: 24px;
    vertical-align: baseline;
}

.delete_icon {
    position: absolute;
    bottom: 8px;
    right: 22px;
}

.redo_icon {
    position: absolute;
    bottom: 12px;
    right: 60px;
}

.form_container .attach-files {
    border: 1px dashed #c4c4c4;
    border-radius: 8px;
    padding: 25px 20px;
    margin-bottom: 20px;
}

    .form_container .attach-files .choose-file {
        display: flex;
        align-items: center;
        column-gap: 10px;
        margin: auto;
        color: #308bc4;
        font-weight: bold;
        font-family: inherit;
    }

.form_container .plus_icon {
    width: 20px;
    height: 20px;
}

#getFile {
    display: none;
}

.uploadedFiles {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border: 1px solid #c4c4c4;
    border-radius: 8px;
    padding: 9px 16px;
}

.trim-long-text-w85 {
    max-width: 85%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
/*===========================================*/
/*============ Payment methods Notes ========*/
/*===========================================*/
.payment-method-note {
    color: #555;
    display: none;
}

    .payment-method-note.active {
        display: block;
    }
/*===========================================*/
/*=================== Helpers ===============*/
/*===========================================*/


.text-light-black {
    color: #555 !important;
}

.col-gap-10 {
    column-gap: 10px !important;
}

.rounded-15 {
    border-radius: 15px !important;
}

.rounded-10 {
    border-radius: 10px !important;
}

.shadow-md {
    box-shadow: 0 0.025rem 0.35rem rgba(0,0,0,0.175) !important;
}

.fs-18 {
    font-size: 1.12rem;
}

.border-grey {
    border-color: #C4C4C4 !important;
}

.bg-light-green {
    background: #eff7f3 !important;
}

.img-disabled {
    filter: grayscale(1) !important;
}

.form-check--primary:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.form-check--primary:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgb(126 194 135 / 20%);
}

#stop {
    animation: taadaa 1s infinite;
    animation-fill-mode: forwards;
    animation-direction: alternate;
}

@keyframes taadaa {
    0% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}
/*===========================================*/
/*=================== Media Queries ===============*/
/*===========================================*/
/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 1280px){
    .notification_map .message {
        font-size: 1rem;
    }

    .notification_map .estsherna {
        width: 20%;
        font-size: 1rem;
    }
}

/*Medium devices (tablets, 768px and up)*/
@media (min-width: 768px) {
    .redo_icon, .delete_icon {
        position: relative;
        inset: unset;
    }

    .form_container .choose_person {
        scroll-snap-type: none;
        overflow-x: hidden;
        padding-bottom: 0;
        flex-wrap: wrap;
    }

        .form_container .choose_person > div {
            margin-bottom: 10px;
        }
}

/*Large devices (desktops, 992px and up)*/
@media (min-width: 992px) {
    .progress {
        height: 100%;
        min-height: 100vh;
        justify-content: center;
        align-items: center;
        -webkit-clip-path: polygon(0 0, 100% 0%, 100% 100%, 15% 100%);
        clip-path: polygon(0 0, 100% 0%, 100% 100%, 15% 100%);
        margin-bottom: 0;
    }

    .progress_container {
        flex-direction: column;
        height: 70%;
        align-items: start;
        justify-content: start;
    }

    .progress_icon {
        width: 60px;
    }

    .line {
        transform: rotate(90deg);
        margin-right: 5px;
        margin-left: 0;
        margin-top: 0;
        height: 60px;
        width: 45px;
    }

    .titles_container {
        display: none;
    }

    .single_progress {
        flex-direction: row;
    }

    /*.notification_map .message {
        margin-right: 78px;
    }*/

    .single_progress span {
        margin-right: 20px;
        font-size: 19px;
    }

    .form_container h2 {
        font-size: 26px;
    }

    #audioMsg {
        font-size: 16px;
    }
}

/*X-Large devices (large desktops, 1200px and up)*/
@media (min-width: 1200px) {
}

/*XX-Large devices (larger desktops, 1400px and up)*/
@media (min-width: 1400px) {
}

.select2-selection--single {
    height: 50px !important;
    border: 1px solid #ced4da !important;
    border-radius: 8px !important;
    padding-top: 0.7rem !important;
    padding-bottom: 0.625rem !important;
    padding-right: 25px !important;
    line-height: 1.5 !important;
}

    .select2-selection--single .select2-selection__arrow {
        display: none;
    }

/* Small devices (portraitphones, 576px ) */
@media (max-width: 700px) and (orientation: portrait){
.notification_map .message {
    font-size: 0.7rem;
}
    .notification_map .estsherna {
        width: 30%;
        font-size: 0.7rem;
    }
}