.large-dialog .modal-dialog {
    max-width: 1200px;
}

.custom-dialog .modal-content {
    border-radius: 0;
    border: 0;
}

.top-head {
    position: relative;
    text-align: center;
    padding: 30px 0 10px 0;
}

.top-head button.close {
    position: absolute;
    top: 15px;
    right: 15px;
    opacity: 1;
}

.top-head button.close:hover {
    opacity: 0.6;
}

.top-head button.close:focus {
    outline: 0;
}

.top-head .modal-title {
    font-size: 34px;
    font-weight: 700;
    color: #170F49;
    margin-bottom: 10px;
}

.top-head p {
    font-size: 18px;
    color: #6F6C90;
    max-width: 550px;
    margin: 0 auto 20px;
}

.top-head ul {
    display: flex;
    justify-content: center;
    padding-top: 30px;
}

.top-head ul li {
    text-align: center;
    width: 14.5%;
    position: relative;
}

.top-head ul li span {
    width: 34px;
    height: 34px;
    margin: 0 auto 15px;
    background: #EFF0F6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.top-head ul li.active span {
    background: #0F3C80;
}

.top-head ul li.active span img {
    filter: brightness(0) invert(1);
}

.top-head ul li.active::before {
    background: #0F3C80;
}

.top-head ul li::before {
    content: '';
    position: absolute;
    background: #EFF0F6;
    width: 100px;
    height: 6px;
    top: 15px;
    right: calc(100% - 50px);
    border-radius: 40px;
}

.top-head ul li:first-child::before {
    display: none;
}

.form-col {
    width: 33.333%;
    padding: 0 15px;
    margin-bottom: 25px;
}

.info-outer .form-col {
    padding: 0 20px;
}

.info-outer .form-row {
    margin-right: -20px;
    margin-left: -20px;
}

.modal-body {
    padding: 20px 50px;
}

.info-outer {
    padding: 0 5px;
    margin: 40px 0 0;
}

.info-outer h3 {
    font-size: 22px;
    font-weight: 700;
    color: #222B45;
    margin-bottom: 3.5rem;
}

.info-outer .form-row label,
.info-outer .form-row input {
    width: 100%;
}

.form-col input {
    border: 1px solid #D7D6D6;
    height: 50px;
    padding: 0 10px;
}

.form-col input:focus-visible {
    outline: none;
}

span.error-text {
    color: red;
    font-size: 12px;
    padding-top: 5px;
    display: inline-block;
}

.next-btn {
    background: #0F3C80;
    color: #fff;
    height: 50px;
    width: 200px;
    transition: .2s ease;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-bottom: 20px;
    border-radius: 0;
}

.next-btn img {
    width: 16px;
    margin-left: 5px;
}

.next-btn:hover {
    background: #333232;
}

.next-btn:focus {
    box-shadow: none;
}

/* input[type="date"]::-webkit-inner-spin-button,
input[type="date"]::-webkit-calendar-picker-indicator {
    opacity: 0;
}

.form-col input[type=date]::after {
    content: '';
    background: url(../../../../web/static/images/calendar-blue.png);
    background: url("{% static 'images/calendar-blue.png'}");
    background-repeat: no-repeat;
    width: 24px;
    height: 24px;
} */


/* custom radion style */
.custom-radio {
    display: flex;
    align-items: center;
    height: 100%;
}

.custom-radio .container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.6;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.custom-radio .container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    width: auto;
    height: auto;
    padding: 0;
}

.custom-radio .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
    border-radius: 50%;
    box-shadow: 0px -3px 7px 0px #14142B14 inset;
}

.custom-radio .container:hover input~.checkmark {
    background-color: #ccc;
}

.custom-radio .container input:checked~.checkmark {
    background-color: #2196F3;
}

.custom-radio .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.custom-radio .container input:checked~.checkmark:after {
    display: block;
}

.custom-radio .container .checkmark:after {
    top: 9px;
    left: 9px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
}

/* end custom style */

/* step form */
.step {
    display: none;
}

.active {
    display: block;
}

.custom-row {
    display: flex;
}

.step .custom-row {
    margin-bottom: 30px;
}

.info-outer textarea {
    width: 100%;
    resize: none;
    border: 1px solid #D7D6D6;
    padding: 15px;
}

.info-outer textarea:focus-visible {
    outline: 0;
}

.custom-col-4 {
    padding: 0 10px;
    width: 33.333%;
}

.custom-col-8 {
    width: 66.66%;
    padding: 0 10px;
}

.custom-col-5 {
    width: 41.66%;
    padding: 0 10px;
}

.custom-col-6 {
    width: 50%;
    padding: 0 10px;
}

.custom-col-7 {
    width: 58.33%;
    padding: 0 10px;
}

.custom-col-12 {
    width: 100%;
    padding: 0 10px;
}

.step label {
    font-size: 16px;
}

.content-outer {
    border: 1px solid #CACACA;
    padding: 20px;
    margin-bottom: 30px;
}

.content-outer .discription {
    height: 230px;
    overflow-y: auto;
    padding-right: 10px;
}

.discription p {
    font-size: 16px;

}

.btn-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-top: 20px;
}

.btn-wrap .btn {
    margin: 0;
    margin-right: 20px;
}

.link-text {
    text-decoration: underline;
    display: inline-block;
    padding-left: 40px;
}

.date-time-wrap ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: 0 -5px 40px;

}

.date-time-wrap ul li {
    border: 1px solid #6B779A1A;
    padding: 12px 15px;
    margin: 0 5px 10px;
    color: #6B779A;
    border-radius: 10px;
    transition: .2s ease;
}

.date-time-wrap ul li.active,
.date-time-wrap ul li:hover {
    background: #0F3C80;
    color: #fff;
}

.date-time-wrap ul.date-outer li {
    font-size: 24px;
}

.date-time-wrap ul.date-outer li span {
    font-size: 12px;
    display: block;
    text-align: center;
    text-transform: uppercase;
    padding-top: 5px;
}

.date-time-wrap h4 {
    font-size: 18px;
    color: #222B45;
    font-weight: 700;
    margin-bottom: 20px;
}

select.month-select {
    font-size: 18px;
    color: #222B45;
    font-weight: 700;
    margin-bottom: 20px;
    border: 0;
    background: transparent;
    padding: 0;
}

select.month-select:focus-visible {
    outline: 0;
}

.profile-wrap h4 {
    font-size: 20px;
    color: #222B45;
    text-align: center;
}

.profile-wrap .img-wrap {
    width: 110px;
    height: 110px;
    background: #ccc;
    border-radius: 50%;
    box-shadow: 0px 15px 30px 0px rgb(230 217 217 / 70%);
    border: 4px solid rgb(255 255 255 / 56%);
    overflow: hidden;
    margin: 0 auto 40px;
}

/* .custom-col-8 {
    border-left: 1px solid #DDDDDD;
} */

ul.about-doctor {
    display: flex;
    padding: 40px 0 20px;
}

ul.about-doctor li {
    flex: 1;
    text-align: center;
    margin: 0 10px;
    box-shadow: 0px 10px 25px 0px rgb(107 119 154 / 5%);
    border-radius: 0px 0px 15px 15px;
}

ul.about-doctor li:hover {
    box-shadow: 0px 10px 25px 2px rgb(132 142 171 / 15%);
}

.profile-wrap .icon-wrap {
    background: #DEEDFF;
    width: 45px;
    height: 60px;
    border-radius: 0px 0px 15px 15px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 12px;
    margin: 0 auto 15px;
}

.profile-wrap {
    padding-right: 20px;
}

ul.about-doctor h6 {
    font-size: 17px;
    font-weight: 700;
    color: #222B45;
    margin: 0 0 5px;
    text-align: center;
}

ul.about-doctor p {
    color: #6B779A;
    font-size: 12px;
}

.abt-text p {
    font-size: 14px;
    color: #6B779A;
}

.abt-text h5 {
    color: #222B45;
    font-size: 18px;
}

ul.updated-details>li {
    display: flex;
    width: 100%;
    margin-bottom: 20px;
}


ul.updated-details li span.icon {
    width: 34px;
    min-width: 34px;
    height: 34px;
    background: #0F3C80;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    margin-top: -5px;
}

ul.updated-details li span.icon img {
    filter: brightness(0) invert(1);
}

ul.updated-details h6 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.right-wrap p {
    font-size: 14px;
}

.right-wrap {
    width: 100%;
}

.right-wrap li>span {
    width: 20%;
    display: inline-block;
    font-weight: 400;
}

.right-wrap li {
    font-weight: 700;
    margin-bottom: 8px;
}

span.border-wrap {
    border-top: 1px solid #E9E9E9;
    border-bottom: 1px solid #E9E9E9;
    display: inline-block;
    padding: 12px 0;
    font-size: 16px;
    line-height: 1.4;
}

span.border-wrap a {
    color: #0073E7 !important;
    display: block;
}

ul.about-doctor li:nth-child(2) .icon-wrap {
    background: #DFFFFA;
}

ul.about-doctor li:nth-child(3) .icon-wrap {
    background: #FFECE9;
}

/* paymeny modal style start */
ul.payment-method li {
    border: 1px solid #D7D6D6;
    padding: 10px 20px;
    margin-bottom: 12px;
    height: 55px;
}

ul.payment-method li .custom-radio label {
    font-size: 16px;
    font-weight: 700;
    margin: 0 !important;
    display: flex;
    align-items: center;
}

ul.payment-method li i {
    color: #A3A3A3;
}

ul.payment-method li img {
    padding: 0 15px 0 8px;
}

.payment-body .box-wrap {
    box-shadow: 0px 4px 30px 0px #0000000D;
    padding: 15px 15px 10px;
    margin-bottom: 12px;
    margin-left: 20px;
}

ul.apply-offer {
    display: flex;
    align-items: center;
    margin: 0;
}

ul.apply-offer li {
    padding-right: 20px;
}

ul.apply-offer li:last-child {
    padding-right: 0;
}

ul.apply-offer li:nth-child(2) {
    flex: 1;
}

ul.apply-offer h4 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 5px;
}

ul.apply-offer p {
    font-size: 13px;
    margin: 0;
    font-weight: 600;
}

.summary-wrap li {
    display: flex;
    justify-content: space-between;
    padding: 5px 10px;
    font-size: 12px;
    color: #5B5B5B;
}

.summary-wrap ul {
    margin: 0;
}

.common-btn {
    background: #0F3C80;
    color: #fff;
    height: 50px;
    width: 100%;
    transition: .2s ease;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    text-transform: uppercase;
}

.common-btn:hover {
    background: #333232;
}

.summary-wrap li.border-li {
    border-top: 1px solid #D7D6D6;
    border-bottom: 1px solid #D7D6D6;
    padding: 10px;
}

.summary-wrap li span {
    font-weight: 700;
}

.customer-info span {
    font-weight: 600;
    font-size: 11px;
    text-transform: uppercase;
    color: #5B5B5B;
}

.customer-info h5 {
    font-size: 14px;
    font-weight: 600;
    color: #313131;
    margin: 0;
    line-height: 1.6;
}

.summary-wrap h5 {
    color: #5B5B5B;
    font-size: 14px;
    font-weight: 700;
}

/* payment modal style ends */

/* thanks modal */
.thanks-text {
    text-align: center;
}

.thanks-text p {
    max-width: 75%;
    font-size: 18px;
    color: #6F6C90;
    margin: 0px auto;
    padding: 40px 0;
}

/* scroller style start */
/* width */
.info-outer ::-webkit-scrollbar {
    width: 4px;
    height: 4px;
    border-radius: 10px;
}

/* Track */
.info-outer ::-webkit-scrollbar-track {
    background: #AACBEB;
    border-radius: 10px;
}

/* Handle */
.info-outer ::-webkit-scrollbar-thumb {
    background: #2B7DCD;
    border-radius: 10px;
    cursor: pointer;
}

/* Handle on hover */
.info-outer ::-webkit-scrollbar-thumb:hover {
    background: #000;
}

/* scroller style ends */

.btn-right {
    margin-left: 20px;
}


.content-outer .btn-wrap .btn {
    position: relative;
    margin: 0;
}

.content-outer .btn-wrap .btn input {
    position: absolute;
    opacity: 0;
    width: 100%;
}

.content-outer .btn-wrap ul#parsley-id-multiple-Agreement {
    position: absolute;
    margin: 0 !important;
    bottom: -12px;
}

.content-outer .btn-wrap {
    position: relative;
    padding-bottom: 25px;
}

/* new style */
.button-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.button-wrap .next-btn {
    margin: 0 0 0 12px;
}

.button-wrap #BackButton {
    background: #333232;
}

.button-wrap #BackButton:hover {
    background: #0F3C80;
}

.button-wrap #BackButton img {
    transform: rotate(180deg);
    margin: 0 6px 0 0;
}


/* paymeny */
.payment-accordion .card-header {
    background: transparent;
    border: 0;
}

.payment-accordion .card {
    border-radius: 0;
    margin-bottom: 12px;
}

.payment-accordion .card .btn-link {
    padding: 0;
    width: 100%;
}

.payment-accordion .card .btn-link .custom-radio label {
    margin: 0;
    font-size: 16px;
    color: #010101;
    font-weight: 700;
    text-align: left;
}

.payment-accordion .card .btn-link .custom-radio {
    justify-content: space-between;
}

.payment-accordion .card .btn-link .custom-radio label img {
    padding: 0 15px 0 8px;
}

.payment-accordion .card span.arrow-down i {
    color: #A3A3A3;
}

.payment-accordion .inner-wrap-btn button {
    width: 200px;
    height: auto;
    margin: 15px auto !important;
    font-size: 12px;
    line-height: 2;
}

.payment-accordion .card .btn-link .arrow-down i {
    transform: rotate(180deg);
}

.payment-accordion .card .btn-link.collapsed .arrow-down i {
    transform: rotate(0deg);
}

.payment-accordion .card .btn-link:hover {
    text-decoration: none;
}

.inner-wrap-btn .custom-form {
    padding: 20px;
}

.payment-body input:focus {
    outline: 0;
    box-shadow: none;
}

.payment-body label {
    font-size: 12px;
    margin-bottom: 2px;
}

.inner-wrap-btn .custom-form  .form-check {
    display: flex;
    align-items: center;
}

/* netbanking bank card */
.inner-wrap-btn ul.list-group li {
    padding: 0 !important;
    margin: 10px 0 5px 12px;
}

.inner-wrap-btn ul.list-group li .bank-wrap {
    cursor: pointer;
    background: #fff;
    border: 1px solid #d3d3d3!important;
    padding: 6px 10px;
    min-width: 150px;
    font-weight: 600;
}

.inner-wrap-btn ul.list-group li .bank-wrap .bank-icon {
    max-width: 32px;
    margin-right: 10px;
}

.inner-wrap-btn #netbanking-frm {
    padding: 20px;
}

.inner-wrap-btn ul.list-group .filter-option {
    background: #fff;
    border: 1px solid #d3d3d3!important;
    font-weight: 600;
}

.inner-wrap-btn ul.list-group 
 .dropdown-toggle {
    margin: 10px 0 !important;
}

.inner-wrap-btn .select-box-net .dropdown-toggle::after {
    content: "\f0d7";
    font-family: FontAwesome;
    border: 0;
}

/* end bank cards */
span.icon-circle.pending {
    background: #FF9800;
}

span.icon-circle.cancel {
    background: #d11709;
}

span.icon-circle {
    background: #FF9800;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    margin-bottom: 20px;
}

span.icon-circle i {
    font-size: 30px;
    color: #fff;
}

.payment-accordion .inner-wrap-btn {
    padding-left: 7rem;
    padding-right: 2rem;
}

.payment-accordion .inner-wrap-btn .form-col {
    width: 100%;
}

.payment-accordion .inner-wrap-btn .form-col label {
    display: block;
}

.payment-accordion .inner-wrap-btn .form-col input {
    width: 100%;
    margin-bottom: 5px;
}
/* new style */

/* custom checkbox  */
/* The container */
.custom-checkbox {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.custom-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.custom-checkbox .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 17px;
    width: 17px;
    background: transparent;
    border: 2px solid #0F3C80;
    border-radius: 2px;
    margin-top: 2px;
}

.custom-checkbox:hover input~.checkmark {
    background-color: #fff;
}

.custom-checkbox input:checked~.checkmark {
    background-color: #0F3C80;
    border-color: #0F3C80;
}

.custom-checkbox .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.custom-checkbox input:checked~.checkmark:after {
    display: block;
}

.custom-checkbox .checkmark:after {
    left: 4px;
    top: 1px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

label.custom-checkbox {
    padding-left: 30px;
}

/* end custom checkbox */
.custom-radio.confirm .container {
    font-size: 16px;
}














/* responsive start */
@media (max-width: 1400px) {
    .large-dialog .modal-dialog {
        max-width: 1000px;
    }

    .top-head .modal-title {
        font-size: 26px;
    }
}

@media (max-width: 1200px) {
    .large-dialog .modal-dialog {
        max-width: 95%;
    }

    .top-head ul li {
        width: 20%;
    }
}

@media (max-width: 991px) {
    .form-col {
        width: 50%;
    }

    .custom-col-4 {
        width: 100%;
    }

    .custom-col-8 {
        width: 100%;
    }

    .custom-row {
        flex-wrap: wrap;
    }

    .custom-radio {
        height: auto;
    }

    .custom-col-5 {
        width: 100%;
        padding: 0;
    }

    .custom-col-7 {
        width: 100%;
        padding: 0 !important;
        border: 0 !important;
        margin-top: 20px;
    }

    .profile-wrap {
        padding: 0;
    }

    .custom-col-6 {
        width: 100%;
    }

    .payment-body .box-wrap {
        margin-left: 0;
        margin-top: 20px;
    }

    .btn-right {
        margin-left: 0;
    }
}