@font-face {
    font-family: 'Metropolis';
    src: url('../fonts/Metropolis-BoldItalic.ttf') format('truetype');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Metropolis';
    src: url('../fonts/Metropolis-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Metropolis';
    src: url('../fonts/Metropolis-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Metropolis';
    src: url('../fonts/Metropolis-BlackItalic.ttf') format('truetype');
    font-weight: 900;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Metropolis';
    src: url('../fonts/Metropolis-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Metropolis Extra';
    src: url('../fonts/Metropolis-ExtraBoldItalic.ttf') format('truetype');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Metropolis';
    src: url('../fonts/Metropolis-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Metropolis Extra';
    src: url('../fonts/Metropolis-ExtraLightItalic.ttf') format('truetype');
    font-weight: 200;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Metropolis';
    src: url('../fonts/Metropolis-LightItalic.ttf') format('truetype');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Metropolis Extra';
    src: url('../fonts/Metropolis-ExtraLight.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Metropolis Extra';
    src: url('../fonts/Metropolis-ExtraBold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Metropolis';
    src: url('../fonts/Metropolis-Thin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Metropolis';
    src: url('../fonts/Metropolis-RegularItalic.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Metropolis';
    src: url('../fonts/Metropolis-MediumItalic.ttf') format('truetype');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Metropolis Semi';
    src: url('../fonts/Metropolis-SemiBoldItalic.ttf') format('truetype');
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Metropolis Semi';
    src: url('../fonts/Metropolis-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Metropolis';
    src: url('../fonts/Metropolis-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Metropolis';
    src: url('../fonts/Metropolis-ThinItalic.ttf') format('truetype');
    font-weight: 100;
    font-style: italic;
    font-display: swap;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

.html,
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
    font-family: 'Metropolis' !important;
    background-color: #F0F0F5;
}

.main-header {
    background-color: #f2f2f6;
    padding: 13px 0;
}

.main-header .logo {
    width: 100%;
}

.main-header .info {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.main-header .info .details {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.main-header .info .details:not(:first-child)::before {
    content: "";
    display: block;
    width: 1px;
    height: 28px;
    background-color: #AFB0B3;
    position: absolute;
    left: 39%;
}

.main-header .info p {
    margin: 0 !important;
    font-size: 16px;
    color: #272B34;
}

.main-header .info img {
    margin-right: 6px;
}

.main-header .info .status-btn {
    background-color: transparent;
    border: 1px solid #AFB0B3;
    padding: 13px 16px;
    border-radius: 8px;
    font-size: 16px;
    color: #6B6E74;
    font-weight: 500;
}

.main-header .info .status-btn:hover {
    background-color: white;
    border: 1px solid #ffffff;
    padding: 13px 16px;
    border-radius: 8px;
    font-size: 16px;
    color: #6B6E74;
    font-weight: 500;
    box-shadow: 4px 4px 10px rgb(213 213 213 / 20%);
}

.banner-image {
  /* background-image: url("../images/banner.svg"); */
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 436px;
  position: relative;
  z-index: 1;
}

.banner-image .banner-main-heading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    width: 100%;
}

.banner-image .banner-main-heading h5 {
    font-size: 48px;
    font-weight: bold;
    line-height: 62px;
    color: #FFFFFF;
    margin-bottom: 8px;
}

.banner-image .banner-main-heading h6 {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #D1D2D3;
}

.banner-main-heading .form-inline {
    margin-top: 48px;
}

.select2-container--default .select2-selection--single {
    margin-right: 12px !important;
    border-radius: 8px !important;
    padding: 13px 16px !important;
    height: 50px !important;
    background-color: #f3f3f3 !important;
    border: 1px solid #D1D2D3 !important;
    font-weight: 500 !important;
    font-size: 16px !important;
}

.select2-container {
    width: auto !important;
}

.select2-selection__arrow b {
    display: none;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #6B6E74 !important;
    padding-left: 30px;
    text-align: left;
}

.select2-selection__arrow {
    content: "";
    position: absolute;
    top: 28px !important;
    right: 25px !important;
    background-image: url('../images/down_line.svg');
    background-position: center;
    background-repeat: no-repeat;
    transform: translateY(-50%);
}

.select2-selection {
    outline: none;
}

.select2-dropdown {
    border-radius: 8px;
    border: none;
    background-color: white;
    top: 10px;
    box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.2);
}

.select2-results__option {
    padding: 12px 10px;
    border-bottom: 1px solid #D1D2D3;
    color: #272B34;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
}

.select2-container--default .select2-results__option[aria-selected=true] {
    background-color: #E7F8F6;
    border-bottom: 1px solid #2CBFAE;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
    color: #2CBFAE;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #E7F8F6;
    border-bottom: 1px solid #2CBFAE;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
    color: #2CBFAE;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid #aaa;
    border-radius: 5px;
}

.select2-container--default .select2-search--dropdown .select2-search__field:focus-visible {
    outline: none;
}

.select2-results__option:last-child {
    border-bottom: none;
}

.select2-container--open .select2-dropdown--below {
    border-top: none;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.select2-search--dropdown {
    display: block;
    padding: 6px;
}

.select2-results__options::-webkit-scrollbar {
    width: 5px;
}

.select2-results__options::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.select2-results__options::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

.select2-results__options::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.btn-hover.color-3 {
    background-image: linear-gradient(to right, #2CBFAE, #05A1D2, #60EBDB, #0AB5EB);
}

.btn-hover {
    width: 160px;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    cursor: pointer;
    padding: 13px 16px;
    height: 50px;
    text-align: center;
    border: none;
    background-size: 300% 100%;
    border-radius: 8px;
    moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.btn-hover:hover {
    background-position: 100% 0;
    moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.btn-hover:focus {
    outline: none;
}

.banner-main-heading .form-inline .inputWithIcon {
    position: relative;
}

.banner-main-heading .form-inline .inputWithIcon .form-control {
    padding-left: 45px !important;
}

.banner-main-heading .form-inline .inputWithIcon img {
    position: absolute;
    left: 0;
    top: 30%;
    padding-left: 15px;
    z-index: 2;
}

.banner-main-heading .form-inline .inputWithIcon.black-text .select2-selection__rendered {
    color: #1F232C !important;
    font-weight: 600;
    font-size: 16px;
}

.branch {
    background-color: #DEF1F0;
    width: 100%;
    height: auto;
    padding: 50px 0;
    background-image: url('../images/bg.svg');
    background-position: right center;
    background-repeat: no-repeat;
}

.branch h3 {
    font-size: 28px;
    font-weight: 600;
    color: #171C25;
    text-align: center;
    margin-bottom: 40px;
}

.branch .branch-info {
    text-align: center;
}

.branch .branch-info .branch-icon {
    padding: 12px;
    border-radius: 4px;
    background-color: #2CBFAE;
    width: 56px;
    height: 56px;
    margin: 0 auto;
    margin-bottom: 14px;
}

.branch .branch-info .branch-details h2 {
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
    text-align: center;
    color: #1B2029;
    text-transform: capitalize;
}

.branch .branch-info .branch-details p {
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    color: #494C54;
}

.branch .row .col-lg-4:not(:first-child) .branch-info::before {
    content: "";
    display: block;
    width: 2px;
    height: 117px;
    background-color: #D1D2D3;
    position: absolute;
    left: 0%;
    top: 20%;
}

.specialist {
    background-color: #F0F0F5;
    background-image: url('../images/bg-2.svg');
    background-position: left bottom;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    padding: 70px 0px;
}

.specialist .specialist-heading h3 {
    color: #171C25;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 30px;
    text-align: center;
    width: 100%;
}

.specialist .doctor-heading {
    margin-top: 40px;
}

.specialist .doctor-heading h3 {
    color: #171C25;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 30px;
    text-align: center;
    margin-top: 40px;
}

.specialist .content-block {
    width: auto;
    height: 100%;
    border-radius: 8px;
    padding: 16px;
    background-color: white;
    text-align: center;
    cursor: pointer;
    margin: 0 5px;
}

.specialist-slider .owl-stage {
    display: flex;
}

.specialist .content-block:hover,
.specialist .content-block:active,
.specialist .content-block.selected {
    background-color: #E7F8F6;
    border: 2px solid #2CBFAE;
}

.specialist .content-block .img-area img {
    width: 68px;
    height: 68px;
    margin: 18px auto;
}

.specialist .content-block .specialist-subheading h4 {
    color: #1F232C;
    font-size: 16px;
    font-weight: 500;
}

.specialist .content-block:hover .specialist-subheading h4,
.specialist .content-block:active .specialist-subheading h4,
.specialist .content-block.selected .specialist-subheading h4 {
    color: #2CBFAE;
}

.specialist .doctor-block {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    padding: 16px;
    background-color: white;
    text-align: center;
    cursor: pointer;
    border: 1px solid transparent;
}

.specialist .doctor-block .img-area {
    margin: 10px auto;
    width: 114px;
    height: 114px;
    border-radius: 50%;
    background-color: #f7f1f173;
    display: flex;
    justify-content: center;
    align-items: center;
}

.d-flex {
    width: 100%;
    position: relative;
}

/* .specialist .doctor-heading .all-doctors {
    width: 209px;
    height: 40px;
    border-radius: 50px;
    padding: 8px 16px;
    background-color: #D1D2D3;
    font-size: 16px;
    font-weight: 500;
    color: #272B34;
    border: none;
    position: absolute;
    left: 0;
} */

.specialist .doctor-block:hover .img-area,
.specialist .doctor-block:active .img-area,
.specialist .doctor-block.selected .img-area {
    background-color: #D9D9D9;
}

.specialist .doctor-block .img-area img {
    width: 98px;
    height: 98px;
    border-radius: 50%;
}

.specialist .doctor-block .doctor-subheading h4 {
    color: #1F232C;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    text-align: center;
}

.specialist .doctor-block .doctor-specification {
    width: auto;
    height: auto;
    border-radius: 50px;
    padding: 7px 20px;
    background-color: #f9f0ea;
    display: inline-block;
}

.specialist .doctor-block .doctor-specification h4 {
    font-size: 13px;
    font-weight: 500;
    color: #89410D;
    margin-bottom: 0px;
}

.specialist .doctor-block:hover,
.specialist .doctor-block:active,
.specialist .doctor-block.selected {
    background-color: #E7F8F6;
    border: 2px solid #2CBFAE;
}

.owl-carousel .owl-nav.disabled {
    display: block;
}

.owl-carousel .owl-dots {
    display: none;
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next {
    border-radius: 50%;
    width: 48px;
    height: 48px;
    background: #fbfbfb !important;
}

.custom-prev-arrow,
.custom-next-arrow {
    display: inline-block;
    width: 24px;
    height: 24px;
    background-size: contain;
    background-repeat: no-repeat;
    cursor: pointer;
    vertical-align: middle;
}

.custom-prev-arrow {
    background-image: url('../images/arrow_left.svg');
}

.custom-next-arrow {
    background-image: url('../images/arrow_right.svg');
}

.owl-prev,
.owl-next {
    position: absolute;
    top: 47%;
    transform: translateY(-50%);
}

.owl-prev {
    left: -6%;
}

.owl-next {
    right: -6%;
}

.owl-carousel .owl-item {
    transition: transform 1s ease;
}

.footer {
    margin-top: 80px;
}

.footer .note {
    background-color: #ffefef;
    width: 700px;
    height: 80px;
    padding: 16px;
    border-radius: 12px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 30px !important;
}

.footer .note h4 {
    color: #FF3232;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 0;
}

.footer .buttons {
    margin: auto;
    text-align: center;
}

.footer .buttons .back-btn {
    width: 160px;
    height: 50px;
    border-radius: 8px;
    padding: 13px 0px;
    background-color: #D1D2D3;
    color: black;
    font-size: 16px;
    font-weight: 500;
    border: none;
}

.modal-content {
    border-radius: 12px;
    padding: 15px;
}

.modal-header,
.modal-footer {
    border: none;
}

.modal-footer {
    justify-content: center;
}

.modal-body h2 {
    font-size: 22px;
    font-weight: 600;
    color: #171C25;
    text-align: center;
    margin-bottom: 8px;
}

.modal-body p {
    text-align: center;
    font-size: 16px;
    line-height: 24px;
    color: #494C54;
    margin-bottom: 24px;
}

.modal-body form label {
    margin-bottom: 6px;
    font-size: 16px;
    color: #323232;
    font-weight: 500;
}

.modal-body form .custom-control {
    padding: 14px;
    border-radius: 6px;
    background-color: #EEEEEE;
    border: 1px solid #D1D2D3;
    height: 52px;
    font-size: 16px;
    color: #5D5D5D;
    font-weight: 500;
}

.modal-body form .custom-control-2 {
    padding: 14px;
    border-radius: 6px;
    background-color: #EEEEEE;
    border: 1px solid #D1D2D3;
    height: 52px;
    font-size: 16px;
    color: #5D5D5D;
    font-weight: 500;
    text-align: center;
}

.modal-body form .custom-control:focus-visible {
    outline: none;
}

.modal-body form .custom-control:focus {
    box-shadow: none;
}

.modal-body form .custom-control-2:focus-visible {
    outline: none;
}

.modal-body form .custom-control-2:focus {
    box-shadow: none;
}

.col-lg-2_5 {
    width: 20%;
    padding: 0 10px;
    height: auto;
    max-height: 100%;
}

#pagination {
    margin-top: 40px;
}

.pagination {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
}

.pagination li {
    padding: 10px;
    margin: 0 6px;
    cursor: pointer;
    width: 32px;
    height: 32px;
    border-radius: 4px;
    background-color: white;
    color: #494C54;
    font-size: 13px;
    font-weight: 500;
    line-height: 13px;
    text-align: center;
}

.pagination li:hover,
.pagination li.active {
    background-color: #2CBFAE;
    color: white;
}

.pagination li.disabled {
    pointer-events: none;
    color: #8D8F94;
}

.pagination li.prev,
.pagination li.next {
    background-color: transparent;
    color: #494C54;
    width: 80px;
    margin: 0 10px;
    text-align: center;
}

.pagination li.prev:hover,
.pagination li.next:hover,
.pagination li.prev:active,
.pagination li.next:active {
    background-color: transparent;
    color: #1B2029;
    font-weight: 600;
}

.details-container {
    display: none;
    padding: 15px;
    background-color: #f9f9f9;
    border: 1px solid #D1D2D3;
    border-radius: 5px;
    position: absolute;
    top: 50px;
    right: 10px;
    width: 100%;
    z-index: 1000;
}

.menu {
    display: none;
}

.col-sm-6 {
    width: 50%;
}

/* Time Slot CSS */

.banner-image .booking-info {
    width: 50%;
    height: auto;
    border-radius: 12px;
    padding: 24px 60px;
    margin: 0 auto;
    background-image: url('../images/Background\ Image.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left center;
    position: absolute;
    left: 50%;
    top: 65%;
    transform: translate(-50%, 100%);
    box-shadow: 0 10px 20px rgb(221 221 221 / 19%), 0 6px 6px rgb(110 110 110 / 23%);
}

.banner-image .booking-info h2 {
    font-size: 22px;
    font-weight: 600;
    color: #171C25;
    text-align: center;
    margin-bottom: 24px;
}

.banner-image .booking-info .booking-details {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.banner-image .booking-info .booking-details .service {
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-image .booking-info .booking-details .service span {
    margin-right: 10px;
    font-size: 16px;
    font-weight: 600;
    color: #8D8F94;
}

.banner-image .booking-info .booking-details .service p {
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 600;
    color: #1B2029;
}

.time-slot {
    background-color: #F0F0F5;
    width: 100%;
    height: 100%;
    padding: 100px 0px;
    background-image: url('../images/bg.svg'), url('../images/bg-2.svg');
    background-position: right top, left bottom;
    background-repeat: no-repeat, no-repeat;
    background-size: auto, auto;
}

.time-slot .slot-heading h2 {
    font-size: 28px;
    font-weight: 600;
    color: #171C25;
    text-align: center;
    margin-bottom: 30px;
}

.time-slot .slots {
    margin-top: 40px;
    margin-bottom: 16px;
}

.time-slot .slots .slot-color {
    display: flex;
    align-items: center;
    justify-content: center;
}

.time-slot .slots .slot-color .slot-box {
    display: flex;
    align-items: center;
    margin-right: 12px;
}

.time-slot .slots .slot-color .slot-box .main-color-box {
    width: 16px;
    height: 16px;
    border-radius: 2px;
    margin-right: 6px;
}

.time-slot .slots .slot-color .slot-box h2 {
    font-size: 14px;
    font-weight: 500;
    color: #6B6E74;
    margin-bottom: 0;
}

.time-slot .slots .slot-color .slot-box .box-color {
    background-color: white;
}

.time-slot .slots .slot-color .slot-box .box-color1 {
    background-color: #E8E8E8;
}

.time-slot .slots .slot-color .slot-box .box-color2 {
    background-color: #2CBFAE;
}

.time-slot .slot-main-block .box {
    width: 100%;
    height: 200px;
    background-color: white;
    padding: 30px;
    border: 1px solid #D1D2D3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.time-slot .slot-main-block .col-lg-2_5 {
    padding: 0;
}

/* Border radius classes */
.box-radius-top-left {
    border-top-left-radius: 10px;
}

.box-radius-top-right {
    border-top-right-radius: 10px;
}

.box-radius-bottom-left {
    border-bottom-left-radius: 10px;
}

.box-radius-bottom-right {
    border-bottom-right-radius: 10px;
}

.box-radius-all {
    border-radius: 10px;
}

.box-radius-left {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.box-radius-right {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.time-slot .slot-main-block .box h2 {
    margin-bottom: 8px;
    font-size: 18px;
    font-weight: 600;
    line-height: 27px;
    color: #272B34;
    text-align: center;
}

.time-slot .slot-main-block .box h5 {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    color: #AFB0B3;
    text-align: center;
}

.time-slot .box:hover,
.time-slot .box:active,
.time-slot .box.selected {
    background-color: #2CBFAE;
    cursor: pointer;
}

.time-slot .box.selected {
    position: relative;
}

.time-slot .box:hover h2,
.time-slot .box:active h2,
.time-slot .box.selected h2,
.time-slot .box:hover h5,
.time-slot .box:active h5,
.time-slot .box.selected h5 {
    color: white;
}

.time-slot .box.disabled {
    background-color: #E8E8E8;
    cursor: no-drop;
}

.time-slot .box.disabled h2,
.time-slot .box.disabled h5 {
    color: #AFB0B3;
    font-weight: 500;
}

.time-slot .box.selected::before {
    content: '';
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    background-image: url('../images/check_circle_fill.svg');
    width: 24px;
    height: 24px;
}

.time-slot .slot-form input{
    height: 52px;
    padding: 14px;
    background-color: #EEEEEE;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    color: #5D5D5D;
}

.time-slot .slot-form label{
    font-size: 16px;
    font-weight: 600;
    color: #323232;
}

.time-slot .slot-form input:focus{
    box-shadow: none;
    border: 1px solid #ced4da;
    background-color: #EEEEEE;
}

.time-slot .slot-form input:focus-visible{
    outline: none;
}

/* Appointment Form */

.booking-info-2{
    transform: translate(-50%, 50%) !important;
}

.appointement-form input[type="text"], .appointement-form input[type="email"], .appointement-form input{
    padding: 14px;
    height: 52px;
    background-color: #ffffff;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    color: #5D5D5D;
}

.appointement-form textarea{
    padding: 14px;
    background-color: #ffffff;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    color: #5D5D5D;
}

.appointement-form label{
    font-size: 16px;
    font-weight: 600;
    color: #323232;
}

.appointement-form input:focus{
    box-shadow: none;
    border: 1px solid #ced4da;
    background-color: #ffffff;
}

.appointement-form input:focus-visible{
    outline: none;
}

/* Confirmation Appointment */

.booking-info-3{
    transform: translate(-50%, 25%) !important;
}

.confirm-details{
    align-items: start !important;
}

.confirm-details .service{
    justify-content: flex-start !important;
}

.footer-1 {
    margin-top: 15% !important;
}

/* Mobile Verify */

.booking-info img{
    width: 122px;
    height: 122px;
    margin-bottom: 24px;
}

.verify-info{
    transform: translate(-50%, 20%) !important;
    width: 60% !important;
}

.verify-info form .custom-control-2 {
    padding: 14px;
    border-radius: 6px;
    background-color: #EEEEEE;
    border: 1px solid #D1D2D3;
    height: 52px;
    font-size: 16px;
    color: #5D5D5D;
    font-weight: 500;
    text-align: center;
    max-width: 52px;
    margin: 0 20px;
}

.verify-footer{
    margin-top: 15%;
}


/* Thank You Page */

.verify-info .appointment-code{
    margin-top: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.verify-info .appointment-code h2{
    font-size: 16px;
    font-weight: 500;
    color: #272B34;
    text-align: center;
    margin-right: 12px;
    margin-bottom: 0px;
}

.verify-info .appointment-code .code-box{
    width: auto;
    height: 52px;
    display: inline-block;
    padding: 14px 22px;
    background-color: #F9F0EA;
    border-radius: 4px;
    border: 1px dashed #89410D;
}

.verify-info .appointment-code .code-box p{
    font-size: 16px;
    font-weight: 500;
    color: #89410D;
}

.thank-you-footer {
    margin-top: 20% !important;
}



@media screen and (min-width: 1200px) and (max-width: 1299px) {

    .owl-carousel .owl-nav .owl-prev,
    .owl-carousel .owl-nav .owl-next {
        width: 40px;
        height: 40px;
    }

    .owl-prev {
        left: -2%;
    }

    .custom-prev-arrow,
    .custom-next-arrow {
        width: 20px;
        height: 20px;
    }

    .owl-next {
        right: -2%;
    }

    .banner-image .booking-info {
        width: 70%;
    }
}

@media screen and (min-width: 1024px) and (max-width: 1199px) {
    .banner-image .banner-main-heading h5 {
        font-size: 40px;
    }

    .select2-container--default .select2-selection--single {
        margin-bottom: 20px;
    }

    .btn-hover.color-3 {
        margin-bottom: 20px;
    }

    .branch .branch-info .branch-details p {
        font-size: 14px;
    }

    .branch .branch-info .branch-details h2 {
        font-size: 18px;
    }

    .owl-carousel .owl-nav .owl-prev,
    .owl-carousel .owl-nav .owl-next {
        width: 40px;
        height: 40px;
    }

    .owl-prev {
        left: -4%;
    }

    .owl-next {
        right: -4%;
    }

    .banner-main-heading .form-inline .inputWithIcon img {
        top: 20%;
    }

    .col-lg-2_5 {
        width: 25%;
        padding: 0 10px;
        margin-bottom: 30px;
    }

    .banner-image .booking-info {
        width: 70%;
    }

    .time-slot .slot-main-block .col-lg-2_5 {
        padding: 0;
        margin-bottom: 0;
    }

    .verify-info{
        width: 70% !important;
        transform: translate(-50%, 15%) !important;
    }
}

@media screen and (min-width:767px) and (max-width:1023px) {
    .col-lg-2_5 {
        width: 33%;
        padding: 0 10px;
        margin-bottom: 30px;
    }

    .owl-carousel .owl-nav .owl-prev,
    .owl-carousel .owl-nav .owl-next {
        width: 30px;
        height: 30px;
    }

    .owl-prev {
        left: -3%;
    }

    .owl-next {
        right: -3%;
    }

    .custom-prev-arrow,
    .custom-next-arrow {
        width: 18px;
        height: 18px;
    }

    .branch .branch-info .branch-details p {
        font-size: 14px;
    }

    .branch .branch-info .branch-details h2 {
        font-size: 18px;
    }

    .banner-image .banner-main-heading h5 {
        font-size: 30px;
        line-height: 50px;
    }

    .banner-image .banner-main-heading h6 {
        font-size: 15px;
    }

    .select2-container--default .select2-selection--single {
        margin-bottom: 20px;
        margin-right: 8px !important;
    }

    .btn-hover.color-3 {
        margin-bottom: 20px;
    }

    .banner-main-heading .form-inline .inputWithIcon img {
        top: 20%;
    }

    .footer .note {
        background-color: #ffefef;
        width: 100%;
    }

    .main-header .info p {
        font-size: 12px;
    }

    .main-header .info .status-btn {
        padding: 10px;
        font-size: 10px;
        font-weight: 600;
    }

    .main-header .info .status-btn:hover {
        padding: 10px;
        font-size: 10px;
        font-weight: 600;
    }

    .main-header .info .details:not(:first-child)::before {
        left: 40%;
    }

    .main-header .logo img {
        width: 100%;
    }

    .banner-image .booking-info {
        width: 90%;
    }

    .time-slot .slot-main-block .col-lg-2_5 {
        padding: 0;
        margin-bottom: 0;
    }

    .verify-info {
        width: 90% !important;
    }

    .booking-info img {
        width: 85px;
        height: 85px;
        margin-bottom: 24px;
    }
}

@media screen and (max-width: 766px) {
    .footer .note {
        width: 100%;
    }

    .specialist .doctor-block {
        width: 70%;
        margin: auto;
    }

    .col-lg-2_5 {
        width: 100%;
        padding: 0 15px;
        margin: 0px auto 20px;
    }

    .slot-main-block .col-lg-2_5 {
        width: 50%;
        padding: 0 15px;
        margin: 0px auto 20px;
    }

    .specialist .doctor-block .img-area {
        width: 84px;
        height: 84px;
    }

    .specialist .doctor-block .img-area img {
        width: 72px;
        height: 72px;
    }

    .specialist .doctor-block .doctor-subheading h4 {
        line-height: 24px;
    }

    .specialist .doctor-block .doctor-specification {
        width: auto;
        height: auto;
        padding: 7px 15px;
        margin-bottom: 10px;
        display: inline-block;
    }

    .specialist .doctor-block .doctor-specification h4 {
        font-size: 12px;
        line-height: 18px;
        margin-bottom: 0;

    }

    .specialist .content-block {
        width: 100%;
        margin: 0;
    }

    .owl-carousel .owl-nav .owl-prev,
    .owl-carousel .owl-nav .owl-next {
        width: 32px;
        height: 32px;
    }

    .owl-prev {
        left: -3%;
    }

    .owl-next {
        right: -3%;
    }

    .custom-prev-arrow,
    .custom-next-arrow {
        width: 20px;
        height: 20px;
    }

    .branch .branch-info .branch-details p {
        font-size: 12px;
    }

    .branch .branch-info .branch-details h2 {
        font-size: 18px;
    }

    .owl-prev,
    .owl-next {
        top: 40%;
    }

    .banner-image .banner-main-heading h5 {
        font-size: 25px;
        line-height: 35px;
    }

    .banner-image .banner-main-heading h6 {
        font-size: 12px;
        font-weight: 600;
        line-height: 22px;
    }

    .select2-container--default .select2-selection--single {
        margin-right: 8px !important;
        margin-bottom: 20px;
    }

    .banner-main-heading .form-inline .inputWithIcon img {
        top: 20%;
    }

    .banner-main-heading .form-inline {
        margin-top: 30px;
    }

    .menu-icon,
    .close-icon {
        display: block;
        cursor: pointer;
    }

    .menu {
        display: block;
    }

    .mobile-details {
        display: none !important;
    }

    .main-header .info {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .main-header .info .status-btn {
        padding: 10px;
        font-size: 14px;
    }

    .main-header .info .status-btn:hover {
        padding: 10px;
        font-size: 14px;
    }

    .main-header .info p {
        font-size: 14px;
    }

    .details-container .details img {
        width: 16px;
        height: 16px;
    }

    .main-header .info .details:not(:first-child)::before {
        display: none;
    }

    .main-header .info .details {
        justify-content: space-evenly;
    }

    .details-container .details:first-child {
        margin-bottom: 12px;
    }

    .banner-image .booking-info .booking-details {
        flex-direction: column;
    }

    .banner-image .booking-info {
        width: 90%;
        height: auto;
        padding: 24px 30px;
        top: -25px;
    }

    .banner-image .booking-info-3 {
        width: 80%;
        height: auto;
        padding: 24px 15px;
        top: -6px;
    }

    .slot-wrapper{
        margin: auto;
    }

    .time-slot .slot-main-block .col-lg-2_5 {
        padding: 0;
        margin: 0;
    }

    .time-slot-banner{
        height: 300px;
    }

    .heading-margin{
        margin-top: 100px !important;
    }

    .footer-1 {
        margin-top: 80% !important;
    }

    .verify-info {
        width: 95% !important;
        transform: translate(-50%, 45%) !important;
    }

    .booking-info img {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }

    .verify-info form .custom-control-2{
        width: 50px;
        height: 50px;
        margin: 0 2px;
    }

    .verify-footer{
        margin-top: 50%;
    }

    .verify-info .appointment-code{
        flex-direction: column;
    }

    .verify-info .appointment-code h2{
        margin-bottom: 18px !important;
    }

    .thank-you-footer {
        margin-top: 50% !important;
    }

    .main-header .logo img {
        width: 100%;
        object-fit: contain;
    }
}

@media screen and (min-width:320px) and (max-width:424px) {
    .main-header .logo img {
        width: 100%;
        object-fit: contain;
    }

    .btn-hover {
        margin-bottom: 20px;
    }

    .main-header .info .status-btn {
        font-size: 10px !important;
    }

    .banner-image {
        height: 550px;
    }

    .time-slot-banner{
        height: 200px;
    }

    .details-container {
        width: 210px;
    }

    .banner-image .banner-main-heading h6 {
        font-size: 11px !important;
    }

    .col-lg-2_5 {
        width: 100%;
    }

    .pagination li.prev,
    .pagination li.next {
        width: 70px;
        margin: 0px;
    }

    .footer .note h4 {
        font-size: 10px;
        line-height: 18px;
    }

    .footer .buttons {
        display: flex;
    }

    .footer .buttons .back-btn {
        margin: 0 12px;
    }

    .modal-content {
        border-radius: 12px;
        padding: 0px;
    }

    .modal-body form .custom-control-2 {
        height: 38px;
        font-size: 12px;
    }

    .modal-body p {
        font-size: 14px;
        line-height: 22px;
    }

    .modal-body h2 {
        font-size: 20px;
    }

    .modal-body form label {
        font-size: 14px;
    }

    .modal-body form .custom-control {
        height: 40px;
        font-size: 14px;
    }

    .modal-footer .btn-hover {
        width: 150px;
        font-size: 14px;
        padding: 10px;
        height: 40px;
    }

    .banner-image .booking-info h2 {
        font-size: 16px;
    }

    .banner-image .booking-info .booking-details .service p {
        font-size: 13px;
    }

    .banner-image .booking-info .booking-details .service span {
        font-size: 13px;
    }

    .specialist .doctor-block {
        width: 80%;
        margin: auto;
    }

    .time-slot .slot-main-block .box h2 {
        font-size: 16px;
    }

    .time-slot .slot-main-block .box {
        width: 100%;
        height: 100%;
    }

    .footer-1 {
        margin-top: 100% !important;
    }

    .verify-info form .custom-control-2 {
        width: 38px;
        height: 38px;
        margin: 0 2px;
    }

    .verify-footer .buttons{
        display: block !important;
    }

    .verify-footer {
        margin-top: 65%;
    }

    .thank-you-footer {
        margin-top: 85% !important;
    }

    .thank-you-footer .buttons {
        display: block;
    }
}


/* pt (3-7)*/

.common-section .booking-details {
    justify-content: space-between!important;
}

.common-section.banner-image .booking-info {
    padding: 30px 40px;
}
.common-section .booking-info .booking-details .service span {
    font-weight: 500;
}
.common-section .booking-info .booking-details .service p {
    font-weight: 500;
    color: #1B2029;
}
.common-section.banner-image .booking-info {
    width: 90%;
    max-width: 1140px;
    top: -40px;
}
.booking-info .check-area {
    text-align: left;
    margin: 14px 0 0;
}

.booking-info .check-area input[type="checkbox"] {
    width: 20px;
    height: 20px;
    appearance: none;
    position: relative;
}

.booking-info .check-area input[type="checkbox"]::before {
    content: '';
    width: 100%;
    height: 100%;
    border: 2px solid #2CBFAE;
    position: absolute;
    border-radius: 2px;
}

.booking-info .check-area input[type="checkbox"]:checked::after {
    content: '';
    width: 6px;
    left: 7px;
    top: 3px;
    height: 11px;
    border: 2px solid #2CBFAE;
    position: absolute;
    border-left: 0;
    border-top: 0;
    transform: rotate(45deg);
}

label[for="other Doctor"] {
    margin: 0;
    position: relative;
    top: -4px;
    color: #2CBFAE;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 0 5px;
}
.doctors-details .slot-heading {
    padding: 79px 0 0;
}
.doctors-details .select2-container {
    width: 100% !important;
}
.doctors-details .select2-container--default .select2-selection--single, .doctors-details.time-slot .slot-form input {
    background-color: #ffffff !important;
    padding: 10px 16px !important;
}
.doctors-details .input-group-text {
    background-color: #ffffff;
    border: 0;
}
.doctors-details  .input-group-append {
    position: absolute;
    left: auto;
    right: 0;
    width: 49px;
    height: 49px;
    top: 1px;
    justify-content: center;
    z-index: 9;
}

.doctors-details.time-slot .slot-form input {
    border-radius: 6px !important;
    padding-right: 50px;
}
.doctors-details .select2-container--default .select2-selection--single .select2-selection__rendered {
    padding-left: 0;
}
.doctors-details.time-slot .slot-main-block .box {
    padding: 20px 20px;
}

.next-section{
    padding:100px 0 100px;
}
.common-section.confirm-section.banner-image .booking-info {
    top: 8px;
}

@media screen and (max-width: 992px) {
    .common-section.banner-image {
        height: 310px;
    }
    .common-section.banner-image .booking-info {
        top: -122px;
    }
    section.time-slot.doctors-details {
        padding: 130px 0px;
    }
}
@media screen and (max-width: 766px) {
    .common-section.banner-image .banner-main-heading h6 {
    font-size: 14px !important;
    font-weight: 500;
}
section.time-slot.doctors-details {
    padding: 80px 0px;
}


}
@media screen and (max-width: 580px) {
    section.time-slot.doctors-details {
        padding: 30px 0px;
    }
    .doctors-details .time-slot-banner {
    min-height: 250px;
    padding: 57px 0 100px;
    height: 100%;
    
}
.common-section.banner-image .banner-main-heading {
    top: 44%
}
.common-section.banner-image .booking-info {
    padding: 20px 20px;
    top: -97px;
}
.common-section.banner-image .booking-info h2 {
    font-size: 18px;
    margin: 0 0 9px;
}
.common-section.banner-image .booking-info .booking-details .service span {
    font-size: 14px;
}
.common-section.banner-image .booking-info .booking-details .service p {
    font-size: 15px;
}
.doctors-details label[for="other Doctor"] {
    font-size: 14px;
}
.booking-info .check-area input[type="checkbox"] {
    width: 16px;
    height: 16px;
}

.doctors-details .select2-container--default .select2-selection--single {
    margin-bottom: 0;
}
.doctors-details.time-slot .slots {
    margin-top: 7px;
    margin-bottom: 19px;
}
.doctors-details.time-slot .slot-heading h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

label[for="other Doctor"] {
    top: -3px;
    font-size: 15px;
}
.booking-info .check-area input[type="checkbox"]:checked::after {
    width: 5px;
    left: 6px;
    top: 3px;
    height: 9px;
}
.common-section.confirm-section.banner-image .booking-info {
    top: -52px;
}
.next-section {
    padding: 83px 0 50px;
}
}