@import url("https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700;900&display=swap");
/* font-family: 'Lato', sans-serif; */
@import url("https://fonts.googleapis.com/css2?family=Lexend:wght@200;300;400;500;600;700;900&display=swap");
/* font-family: 'Lexend', sans-serif; */

/* bootstrap  */
@import url("../css/bootstrap.min.css");
/* select  */
@import url("../css/select2.min.css");

@font-face {
    font-family: "ui-font";
    src: url("../fonts/Segoe\ UI.woff");
}

@font-face {
    font-family: "ui-font-bold";
    src: url("../fonts/Segoe\ UI\ Bold.woff");
}

:root {
    --white: #fff;
    --uifont: "ui-font";
    --uifontbold: "ui-font-bold";
    --lightblue: #e6f8ff;
    --lexndafont: "Lexend', sans-serif";
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body,
html {
    overflow-x: hidden;
}

.desktop-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0px;
    background-color: var(--white);
}

.desktop-header .logo img {
    width: 221px;
}

.d-menu-container p {
    color: #333333;
    font-family: var(--uifontbold);
    font-size: 15px;
    line-height: 18px;
}

.d-menu-container span {
    color: #838383;
    font-size: 12px;
    font-family: var(--uifont);
    line-height: 18px;
}

.d-menu-container {
    margin-right: 24px;
}

.d-menu-container:last-child {
    margin-right: 0px;
}

.desktop-menu {
    display: flex;
    justify-content: space-between;
    padding: 16px 0px;
}

.headerLogin {
    color: #000;
    font-size: 15px;
    font-family: var(--uifont);
}

.fs-12 {
    font-size: 12px;
}

.headerLogin {
    margin-left: 20px;
}

.c-pointer {
    cursor: pointer !important;
}

.login-box {
    position: absolute;
    top: 36px;
    left: 4%;
    background: red;
    padding: 20px;
    width: 206px;
}

.search-header {
    background-color: var(--lightblue);
    padding: 22px 0px;
}

.docmedix-primary-btn {
    font-family: "Lexend", Sans-serif;
    font-weight: 500;
    text-decoration: none;
    fill: #ffffff;
    color: #ffffff;
    background-color: #00aeef;
    border-style: solid;
    border-width: 2px 2px 2px 2px;
    border-color: #00aeef;
    border-radius: 5px 5px 5px 5px;
    padding: 15px 15px 15px 15px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

/* .docmedix-primary-btn:hover {
    color: #2b3393 !important;
    background-color: #ffffff00 !important;
    border-color: #2b3393 !important;
} */

.docmedix-serch-input {
    padding: 15px !important;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
}

.serchBtn {
    padding: 15px;
    background: #fff;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    color: #212529;
    text-align: center;
    width: 60px;
    position: absolute;
    top: 1px;
    right: 1px;
    cursor: pointer;
}

.serchBtn:hover {
    background: #2b3393;
    color: #fff;
}

.humBurger {
    margin-right: 20px;
    cursor: pointer;
    position: relative;
    z-index: 999;
}

.humBurger .humLine {
    height: 3px;
    width: 22px;
    display: block;
    background: #00aeef;
    margin-bottom: 4px;
    border-radius: 6px;
    margin-left: auto;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.humActive .humLine {
    background-color: #fff;
}

.humBurger .humLine:last-child {
    margin-bottom: 0px;
}

.humBurger .humLine.two {
    width: 26px;
}

.humBurger.humActive .humLine.two {
    display: none;
}

.humBurger.humActive .humLine.one {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
}

.humBurger.humActive .humLine.three {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
}

.mobLogin {
    display: flex;
    justify-content: end;
    width: 45%;
    margin-right: 20px;
}

.mobLogin span {
    color: #007bff;
    font-size: 16px;
    font-weight: 500;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    bottom: 0;
    background-color: #00aeef;
    width: 80%;
    z-index: 99;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.mobile-menu ul {
    list-style: none;
    padding: 60px 10px 10px 50px;
}

.mobile-menu ul a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-size: var(--uifontbold);
    font-weight: 700;
    margin-bottom: 16px;
    display: block;
}

.mobile-menu.menu-active {
    left: 0px !important;
}

.mobLogin,
.humBurger {
    display: none;
}

.slider-sub-title {
    color: #029967;
    font-size: 32px;
    font-family: var(--uifontbold);
    font-weight: 600;
}

.slider-title {
    color: #2a2a2a;
    font-family: var(--uifontbold);
    font-weight: 600;
}

.slider-paragraph {
    color: #2a2a2a;
    font-family: var(--uifont);
}

.slider-download-app {
    max-width: 35%;
    margin: 0px auto;
}

.clearboth {
    clear: both;
}

.first-sec {
    padding: 60px 0px !important;
}

.sec-pad {
    padding: 80px 0px !important;
}

.doc-card {
    padding: 0px 0px 20px 0px;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #dadada;
    border-radius: 15px 15px 15px 15px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}

.doc-card-title {
    margin-bottom: 12px;
    font-size: 22px;
    color: #000;
    margin-top: 16px;
}

.paragraph-color {
    color: #717171;
}

.py-50 {
    padding: 50px 0px;
}

.bg-light-blue {
    background-color: var(--lightblue);
}

.section-title {
    font-size: 28px;
}

.w-96 {
    width: 96px;
}

.consult-top-doctors-title {
    font-size: 20px;
}

.mt-60 {
    margin-top: 60px;
}

.next-icon i {
    color: #45a4c6;
    font-size: 75px;
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translate(-50%, -50%);
}

.doc-sec-btn {
    padding: 12px 24px;
    color: #00aeef;
    border: 1px solid #00aeef;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    text-decoration: none;
}

.spcl-card img {
    max-width: 80px;
}

.spcl-card {
    padding: 20px 10px 10px 10px;
    border: 1px solid #dadada;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
}

.specialities-card-section {
    margin-top: 40px;
}

.spl-title {
    font-family: "Lexend", sans-serif;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
}

.video-croped-section {
    margin-top: 60px;
}

.fs-35 {
    font-size: 35px;
}

.fs-14 {
    font-size: 14px;
}

.mt-30 {
    margin-top: 30px;
}

.video-care {
    max-width: 75%;
    border-radius: 15px;
}

.faq-card {
    border: 1px solid #d5d8dc;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
}

.faq-header {
    border-bottom: 1px solid #d5d8dc;
    padding: 15px 20px;
    cursor: pointer;
}

.faq-header:last-child {
    border-bottom: none !important;
}

.faq-header span {
    font-weight: 600;
    font-size: 16px;
}

.faq-content {
    padding: 15px 20px;
    display: none;
}

footer {
    background-color: #080927;
    padding: 48px 0px;
}

.color-84 {
    color: #848484;
}

.mb-20 {
    margin-bottom: 20px !important;
}

.mb-30 {
    margin-bottom: 30px;
}

.footer-social-icon ul li a i {
    font-size: 25px;
    color: #848484;
}

.footer-social-icon ul li a i:hover {
    color: #fff;
}

.fs-20 {
    font-size: 20px;
    font-family: "Lexend", sans-serif;
    text-transform: uppercase;
    color: #fff;
}

.footer-link-title {
    color: #ffffff;
    font-family: "Lexend", Sans-serif;
    font-size: 20px;
}

.footer-links a,
.btm-footer a {
    color: #848484;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 5px;
    font-family: "Lexend", sans-serif;
    text-decoration: none;
    display: block;
}

.footer-links a:hover {
    color: #fff;
}

.btm-footer {
    padding: 16px;
    border: 1px solid #0c0d3a;
    margin-top: 40px;
}

.copy-right p,
.copy-right a {
    font-family: "Lexend", sans-serif;
    color: #848484;
    font-size: 16px;
    font-weight: 700;
}

.docmedix-bcum {
    padding: 60px 0px;
    background: url("../img/abs-bg.png") no-repeat;
    background-size: cover;
    background-position: center center;
    position: relative;
    z-index: 3;
}

.docmedix-bcum::before {
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: var(--lightblue);
    opacity: 0.3;
    z-index: -1;
}

.bcum-title {
    font-size: 30px;
    color: #333;
    font-family: var(--uifontbold);
}

.doc-left-card-container {
    padding: 15px 30px 15px;
    border-radius: 0px 25px;
    border: 1px solid var(--lightblue);
    background: var(--lightblue);
}

.primary-font {
    font-family: "ui-font";
}

.primary-font-bold {
    font-family: "ui-font-bold";
}

.font-20 {
    font-size: 20px;
}

.col-blue {
    color: #0d96e4;
}

.filter-title {
    border-bottom: 1px solid #b1e3ff;
    padding-bottom: 15px;
    margin-bottom: 30px;
}

.fs-16 {
    font-size: 16px;
}

.ms-choice {
    border: none !important;
}

.ms-drop {
    left: 0 !important;
}

.ms-choice > span {
    top: 4px !important;
}

.ms-choice > span.placeholder {
    font-size: 14px !important;
}

.doctor-by-location-list ul li {
    padding-bottom: 6px;
}

.doctor-by-location-list ul li a {
    color: #333;
    font-size: 14px;
    text-decoration: none;
    font-family: var(--uifont);
    text-transform: capitalize;
}

.doctor-by-location-list ul li a:hover {
    color: #007bff;
}

.doc-doctor-card {
    box-shadow: 0px 6px 15px rgb(64 79 104 / 15%);
    border: 1px solid rgba(64, 79, 104, 0.1);
    padding: 30px;
    border-radius: 16px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
    margin-bottom: 24px;
}

.doctor-avtar img {
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border: 2px solid #73b7ff;

    height: 113px;
    width: 113px;
}

.doctor-name {
    font-size: 18px;
    color: #00acee !important;
    font-family: var(--uifontbold);
}

.doc-consultant {
    color: #4c5f6d;
    font-size: 13px;
    font-family: var(--uifont);
}

.doc-speciality {
    color: #334562;
    font-family: var(--uifontbold);
    font-size: 14px;
}

.doc-speciality span {
    color: #4c5f6d;
    font-size: 14px;
    font-family: var(--uifont);
}

.fs-18 {
    font-size: 18px !important;
}

.bm-15 {
    border-bottom: 1px solid #b1e3ff;
    padding-bottom: 15px;
}

.select2 {
    width: 100% !important;
    background: #fff !important;
    padding: 6px 0px !important;
}

.select2-container--default
    .select2-selection--single
    .select2-selection__arrow
    b {
    margin-left: -13px !important;
    margin-top: 5px !important;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid #e0e6f6 !important;
    height: 40px !important;
    outline: none !important;
}

.select2-dropdown {
    border: 1px solid #e0e6f6 !important;
}

.find-doctor {
    padding: 30px 0px;
}

.req-field {
    color: rgb(240, 101, 72);
}

.form-control::placeholder {
    color: #a0abb8;
}

.form-group input {
    background: #fff;
    border: 1px solid #e0e6f6;
    height: 53px;
    box-shadow: none;
    padding-left: 20px;
    font-size: 14px;
    width: 100%;
    outline: none;
}

.form-group input:focus {
    box-shadow: none !important;
}

.form-group label {
    color: #05264e;
    font-size: 15px;
    margin-bottom: 10px !important;
}

.form-group {
    margin-bottom: 20px;
}

.en-card {
    border: 1px solid #eaf1f5 !;
    border-radius: 20px 4px;
    box-shadow: 0 4px 10px 0 rgba(0, 77, 255, 0.04);
}

/* code by sumit */

.date-picker:focus {
    box-shadow: none !important;
}

#datepicker {
    padding-left: 10px !important;
}

/* .ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default, .ui-button, html .ui-button.ui-state-disabled:hover, html .ui-button.ui-state-disabled:active{ */
/* background: white !important; */
/* } */

.ui-datepicker table {
    background-color: rgb(168, 238, 244) !important;
}

.ui-widget-header {
    background-color: #0dcaf0 !important;
}

.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
    background-color: #007bff !important;
    color: white !important;
}

.date-picker-container svg {
    position: absolute;
    left: 5px;
    top: 7px !important;
    z-index: 99;
}

.location svg {
    position: absolute;
    top: 8px !important;
    left: 7px;
    z-index: 99;
}

.location-option:focus {
    box-shadow: none !important;
}

/*  date slider */

.date-section ul {
    list-style-type: none;
    display: flex;
    gap: 78px;
    /* justify-content: center; */
    margin-bottom: 0px !important;
    overflow-x: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
    scroll-behavior: smooth;
    /* padding-right: 0rem !important;
  padding-left: 10rem !important; */
    padding-right: 50px !important;
    padding-left: 40px !important;
}

.date-section ul.dragging {
    scroll-behavior: auto;
}

.date-section ul::-webkit-scrollbar {
    display: none;
}

.date-section ul li {
    display: block;
}

.date-section ul li a {
    text-decoration: none;
    color: black;
    display: block;
    line-height: 50px !important;
    font-weight: bold;
}

.date-section ul li a.active {
    color: #14adea;
    border-bottom: 5px solid #14adea;
    line-height: 50px !important;
}

.slider-date {
    border: 1px solid rgba(0, 0, 0, 0.125);
    padding-top: 0px;
    /* border-bottom:1px solid rgba(0,0,0,.125); */
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    /* margin-left: 10px !important;  */
    /* commented by pranab acharya*/
    user-select: none;
}

/* .slider-date .add-border-left{

  border-left:1px solid rgba(0,0,0,.125);
  
}

.slider-date .add-border-right{
  border-right:1px solid rgba(0,0,0,.125) !important;
} */

.slider-date .left-arrow-container,
.slider-date .right-arrow-container {
    position: absolute;
    top: 0;
}

.slider-date .left-arrow-container {
    top: 0px;
    left: 0px;
}

.slider-date .right-arrow-container {
    top: 0px;
    right: 0px;
}

.left-arrow-container {
    display: flex;
    align-items: center;
    justify-content: start;
    width: 35px;
    height: 100%;
    background: white;
    display: none;
}

.right-arrow-container {
    display: flex;
    align-items: center;
    justify-content: end;
    width: 35px;
    height: 100%;
    /* background: linear-gradient(to left, #0dcaf0 50%, transparent); */
    background: white;
}

.arrow-active {
    display: block !important;
}

/* time slots for booking */

#availableTimes input[type="radio"] {
    appearance: none;
}

.timeCheck {
    font-size: 15px;
    border-radius: 8px;
    /* background-color: rgb(156, 165, 165); */
    background-color: #00aeef;
    color: white;
    font-weight: 400;
    text-align: center;
    cursor: pointer;
    user-select: none;
}

.timeCheck:hover {
    color: white !important;
}

#timeSlots {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 10px;
}

.time-slot-active {
    background-color: green;
    color: white;
    animation: fadeColor 300ms linear;
}

@keyframes fadeColor {
    from {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.disabled {
    cursor: not-allowed;
}

/* By sumit 26-08-2023 */
/* Add patient page */

.patient-section {
    border-bottom: 1px solid rgba(0, 0, 0, 0.125);
    padding-bottom: 10px;
}

#addnewpatient .modal-body {
    padding: 1rem !important;
}

#addnewpatient .modal-content {
    border: none !important;
}

.modal-dialog {
    scale: 0.9 !important;
    max-width: 800px !important;
}

.modal-open {
    padding-right: 0px !important;
}

.modal-dialog {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.form-check-input:checked[type="radio"] {
    background-image: none !important;
}

.swal2-popup {
    background: white !important;
}

.swal2-radio,
.swal2-checkbox {
    background: white !important;
    color: #000 !important;
}

.swal2-title {
    color: black !important;
}

.patient-card-container .card-title,
.patient-card-container .card-text,
.user-icon svg {
    color: gray;
}

/* 29-08-2023 */
/* my consultations page */

.dropdown-item:active {
    background-color: #00aeef !important;
}

#CancelAppointment .modal-content {
    max-width: 550px !important;
    margin: 0 auto !important;
}

#cancel-appointment-textarea {
    padding-left: 5px !important;
    width: 100% !important;
}

#cancel-appointment-textarea::placeholder {
    color: #000 !important;
}

#cancel-appointment-textarea:focus {
    outline: none !important;
}

#CancelAppointment {
    padding-right: 0px !important;
}

.modal-open {
    padding-right: 0px !important;
}
/* 30-08-2023 */
/* search results page */

.search-result-text {
    font-size: 25px;
}

.doc-details {
    color: #334562;
    font-family: var(--uifontbold);
    font-size: 14px;
}

.doc-details span {
    color: #4c5f6d;
    font-size: 14px;
    font-family: var(--uifont);
}

.doc-doctor-card-container .doc-doctor-card {
    border: 1px solid #ced0d2 !important;
}
/* by pranab */

.selected-card {
    cursor: pointer;
}

/* 31-08-2023 */
/* login modal */

/* #signupLoginModal .modal-dialog {
    max-width: 400px !important;
    scale: 1 !important;
}

#signupLoginModal .modal-content {
    height: 500px !important;
} */



#user-login:hover {
    opacity: 0.9;
}


/*08-09-2023  */
/* login */


#loginModal .modal-dialog{
    max-width:400px !important;
    scale:1 !important;
    margin-top:20px !important;
   
  }
  
  /* #loginModal .modal-content{ */
    /* height:500px !important; */
  /* } */
  
  #eye{
    right: 19px;
      top: 40px;
  }
  
  
  #loginModal .input-field-otp{
    display:flex;
    align-items: center;
    justify-content: center;
    column-gap:20px;
   
  }
  
  
  #loginModal .input-field-otp input{
  
    width:60px !important;
    height:60px !important;
    text-align: center;
    font-size:20px;
    
    
  }
  
  #loginModal .input-field-otp input:focus{
  
    border:3px solid #00AEEF !important;
    box-shadow:none;
    outline:none;
  }
  
  #otp-validate.vbutton-active{
  
    background-color:#007bff !important;
  }
  
  
  #modal-close-btn{
    position:absolute;
    top:0px !important;
    right:-34px !important;
    background-color: #00AEEF !important;
    padding:10px;
    font-size: 20px;
  }
  
  
  
  
  
  .patient-card-container .card-title, .patient-card-container .card-text, .user-icon svg{
    color:gray;
    
   }
  

/* 06-09-2023 */
/* By Sumit */
/* user profile page */
#change-password-profile .modal-dialog {
    max-width: 400px !important;
    scale: 1 !important;
}

#change-password-profile .modal-content {
    height: 500px !important;
}

span.eye {
    right: 19px !important;
    top: 40px !important;
}

.text-overflow {
    text-overflow: ellipsis;
    width: 70px;
    white-space: nowrap;
    overflow: hidden;
}

/* Animation style by Pranab Acharya */
.fadeInOpac {
    animation: fadeIn 150ms linear;
}

@keyframes fadeIn {
    0% {
        scale: 0.6;
        opacity: 0.3;
    }
    100% {
        scale: 1;
        opacity: 1;
    }
}
/* Scrollbar */
/* width */

::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1d4;
    border-radius: 5px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #00afef76;
    border-radius: 5px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #0371f8;
}

/* Scrollbar end */
