/* Template Name: Doctris - Doctor Appointment Booking System
   Author: Shreethemes
   Website: https://shreethemes.in/
   Mail: support@shreethemes.in
   Version: 1.2.0
   Updated: July 2021
   File Description: Main Css file of the template
*/
/*********************************/
/*         INDEX                 */
/*================================
 *     01.  Variables            *
 *     02.  Bootstrap Custom     *
 *     03.  Components           *
 *     04.  General              *
 *     05.  Helper               *
 *     06.  Menu                 *
 *     07.  Home / Landing       *
 *     08.  Features / Services  *
 *     09.  CTA                  *
 *     10.  Chat                 *
 *     11.  Team                 *
 *     12.  Testi                *
 *     13.  Blog                 *
 *     14.  Calendar             *
 *     15.  Shop                 *
 *     16.  Contact              *
 *     17.  Simple Bar           *
 *     18.  Footer               *
 ================================*/
:root {
    --green: #1DA6A0;
    /* Brand Teal */
    --blue: #1DA6A0;
    /* Brand Teal explicitly replacing blue */
    --mint: #e8f7f6;
    /* Light Teal for backgrounds */
    --dark: #2B2F33;
    --light: #F6F8FA;
}

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");

.healthier-hero {
    margin-top: 120px;
    position: relative;
    background: linear-gradient(135deg, #eff4ff 0%, #f3f8ff 50%, #e7f7ff 100%);
    padding: 100px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.service-item {
    flex: 0 0 48%;
    min-width: 200px;
}

/* Center container */
.hero-container-center {
    max-width: 650px;
    width: 100%;
    position: relative;
    z-index: 1;
}

/* Title / Sub */
.hero-title {
    font-size: 2.7rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark);
    line-height: 1.15;
}

.hero-sub {
    font-size: 1rem;
    color: #4a5568;
    margin-bottom: 25px;
}

/* Search Card */
.hero-search-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    padding: 18px;
    border-radius: 16px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.07);
    width: 100%;
    margin-bottom: 20px;
}

.hero-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
}

@media(max-width:600px) {
    .hero-fields {
        grid-template-columns: 1fr;
    }
}

.field-group {
    position: relative;
}

.field-icon {
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translateY(-50%);
    color: #8e9aba;
    font-size: 15px;
}

.hero-select {
    width: 100%;
    padding: 12px 14px 12px 38px;
    border: 1px solid #e0e7ff;
    border-radius: 10px;
    background: #fff;
    font-size: 0.95rem;
    color: #2d3748;
    outline: none;
    transition: 0.2s;
}

.hero-select:focus {
    border-color: #5b75d8;
    box-shadow: 0 0 0 3px rgba(91, 117, 216, 0.15);
}

/* Search button */
.hero-btn {
    background: linear-gradient(90deg, var(--green), var(--mint));
    border: none;
    padding: 12px 24px;
    width: 100%;
    border-radius: 12px;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    transition: 0.2s;
}

.hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(51, 181, 255, 0.22);
}

/* Stats */
.hero-stats {
    margin-top: 20px;
    display: flex;
    gap: 30px;
    list-style: none;
    color: #54657a;
    justify-content: center;
}

.hero-stats strong {
    color: #1a2b44;
}

/* Background shapes */
.hero-bg-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.hero-bg-shapes .shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    animation: floatShape 20s infinite alternate ease-in-out;
}

.hero-bg-shapes .s1 {
    width: 200px;
    height: 200px;
    background: #6058d9;
    top: -50px;
    left: -50px;
    animation-delay: 0s;
}

.hero-bg-shapes .s2 {
    width: 250px;
    height: 250px;
    background: #33b5ff;
    bottom: -60px;
    right: -40px;
    animation-delay: 3s;
}

.hero-bg-shapes .s3 {
    width: 180px;
    height: 180px;
    background: #ff7eb6;
    top: 120px;
    right: 50px;
    animation-delay: 6s;
}

.hero-bg-shapes .s4 {
    width: 220px;
    height: 220px;
    background: #6bf3c7;
    bottom: 80px;
    left: 60px;
    animation-delay: 9s;
}

@keyframes floatShape {
    0% {
        transform: translateY(0px) translateX(0px);
    }

    50% {
        transform: translateY(-20px) translateX(15px);
    }

    100% {
        transform: translateY(0px) translateX(0px);
    }
}


h1,
.h1 {
    font-size: 42px;
    line-height: 1.5;
    font-weight: 600;
    font-family: arboria, sans-serif !important;
    font-style: normal !important;
    font-weight: bold !important;
}

.profile_gallery img {
    border-radius: 15px;
    border: solid 1px lightgray;
    margin-bottom: 10px;
}

.header-right-navigation li {
    margin-right: 6px !important;
    font-weight: bold;
}

.header-right-navigation {
    position: relative;
    right: 20px;
}

.header-right-navigation span i {
    font-size: 15px;
}

.header-right-navigation span {
    background: white;
    padding: 15px 30px;
    border-radius: 20px;
    border: solid 1px lightgray;
}

#topnav {
    background: #ffffff;
    background: radial-gradient(circle,
            rgba(255, 255, 255, 1) 0%,
            rgba(29, 166, 160, 0.05) 100%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    /* Ensure header stays above all page content */
}

.register-shade {
    position: absolute;
    top: 0px;
    left: 0px;
    background: #015e86;
    opacity: 0.8;
    right: 0px;
    height: 100%;
}

.register-cnt li {
    margin-bottom: 10px;
    line-height: 27px;
}

.mobile_profile_gallery {
    display: none !important;
}

.register-cnt {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    padding: 5%;
    color: white;
}

.profile-sub-heading {
    margin: 0;
    font-size: 27.03px;
    font-weight: 200;
    font-family: ES Klarheit Kurrent, sans-serif;
    line-height: 1.2;
    font-weight: 200;
    margin-bottom: 20px;
}

.hp-profile-doctor-search {
    font-size: 14px;
    font-family: Poppins, sans-serif;
    font-weight: 400;
    line-height: 1.4375em;
    color: #2C3341;
    box-sizing: border-box;
    position: relative;
    cursor: text;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 50%;
    font-size: 13.33px;
    font-family: Poppins, sans-serif;
    position: relative;
    border-radius: 4px;
    padding-right: 14px;
    outline: none;
    border-width: 1px;
    margin: 0 auto;
    background: white;
}

.hp-profile-doctor-search svg {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: 1em;
    height: 1em;
    display: inline-block;
    fill: currentColor;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-transition: fill 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    transition: fill 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    font-size: 1.3333333333333333rem;
    color: var(--brand-primary);
}

.hp-profile-doctor-search input {
    font: inherit;
    letter-spacing: inherit;
    color: currentColor;
    padding: 4px 0 5px;
    border: 0;
    box-sizing: content-box;
    background: none;
    height: 1.4375em;
    margin: 0;
    outline: none;
    -webkit-tap-highlight-color: transparent;
    display: block;
    min-width: 0;
    width: 100%;
    -webkit-animation-name: mui-auto-fill-cancel;
    animation-name: mui-auto-fill-cancel;
    -webkit-animation-duration: 10ms;
    animation-duration: 10ms;
    padding-top: 1px;
    padding: 8.5px 14px;
    padding-right: 0;
}

.way-bg {
    /* background: var(--brand-primary); */

    border-radius: 25px;
    position: relative;
    overflow: hidden;
}

.way-bg .way-shapes-img {
    position: relative;
}

.way-bg .way-shapes-img .way-shapes-left {
    position: absolute;
    top: 60px;
    right: 200px;
}

.way-bg .way-shapes-img .way-shapes-right {
    position: absolute;
    right: 0;
}

.align-items-end {
    align-items: flex-end !important;
}

.way-inner-header {
    margin: 0;
    padding: 60px;
}

.way-inner-header h2 {
    color: #fff;
    margin-bottom: 29px;
}

.section-inner-header h2 {
    font-weight: 600;
    font-size: 40px;
    color: #1f2937;
    margin-bottom: 0;
}

.way-inner-header p {
    font-weight: 500;
    font-size: 16px;
    color: #fff;
    margin-bottom: 40px;
}

.way-img {
    position: relative;
    top: 10px;
}

.banner-section {
    background: #FFE7FF;
    background: radial-gradient(circle, rgba(255, 231, 255, 1) 0%, rgba(214, 212, 255, 1) 50%, rgba(255, 255, 255, 1) 100%);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-clip: padding-box;
    padding: 130px 0;
    overflow: visible;
}

.align-items-center {
    align-items: center !important;
}

.banner-section .banner-content {
    padding-block: 75px;
    width: 60%;
    margin: 0 auto;


}

.banner-section .beat-wrap {
    background: #fff;
    margin: 0 0 15px;
    padding: 5px;
    border-radius: 40px;
    display: inline-flex;
    display: -webkit-inline-flex;
    align-items: center;
    -webkit-align-items: center;
}

.beat-wrap i {
    position: absolute;
    top: 16px;
    left: 27px;
}

.banner-section .beat-wrap span {
    width: 44px;
    height: 44px;
    background: #dbeffe;
    border-radius: 50%;
    margin-right: 10px;
}

.banner-section h6 {
    font-size: 16px;
    margin-bottom: 0;
    color: #000;
    font-weight: 600;
    margin-right: 30px;
}

.banner-section h1 {
    color: black;
    line-height: 70px;
    font-weight: 400;
    font-size: 60px;
}

.banner-section p {
    color: #f9fafb;
    font-weight: 500;
    margin-bottom: 0;
}

.contact-section {
    margin: 0;
    padding: 80px 0 55px;
}

.contact-inner-header {
    margin-bottom: 40px;
}

.section-inner-header h6 {
    font-weight: 500;
    font-size: 16px;
    color: var(--brand-primary);
    margin-bottom: 15px;
}

.section-inner-header h2 {
    font-weight: 600;
    font-size: 40px;
    color: #1F2937;
    margin-bottom: 0;
}

.contact-card {
    border: 2px solid #E9EAF6;
    border-radius: 0;
}

.contact-card .card-body {
    margin: 0;
    padding: 30px;

    display: flex;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
}

.contact-icon {
    color: var(--brand-primary);
    font-size: 44px;
    margin-right: 20px;
}

.contact-details h4 {
    font-weight: 600;
    font-size: 20px;
    color: #0A0B0D;
    margin-bottom: 8px;
}

.card {
    border: 1px solid #f0f0f0;
    margin-bottom: 1.875rem;
}

.contact-form-card .form-group {
    margin-bottom: 25px;
}

.contact-form-card .form-group label {
    font-size: 12px;
    color: #0A0B0D;
    margin-bottom: 8px;
}

.contact-form-card .form-group .form-control {
    font-weight: 500;
    color: #6B7280;
}

.contact-form-card .form-group textarea.form-control {
    min-height: 150px;
    resize: none;
}

input.form-control:focus {
    color: inherit;
    background-color: inherit;
    border-color: inherit;
    outline: inherit;
    box-shadow: inherit;
}

.contact-details p {
    font-size: 16px;
    margin-bottom: 0;
}

.contact-form-card .card-body {
    margin: 0;
    padding: 30px;
}

.card-body {
    flex: 1 1 auto;
}

.gNNDcP {
    z-index: -1;
    object-position: center top;
    object-fit: cover;
    width: 100%;
    height: 685px;
    visibility: visible;
    opacity: 1 !important;
    transition: visibility 1000ms linear 0s, opacity 1000ms linear 0s !important;
}

.job-descrip-header h6,
.job-info-card h6,
.job-descrip-body h5 {
    color: black;
    font-weight: bold;
    margin: 0;
}

.job-info-card span {
    color: #706f6e;
    font-size: 13px;
}

.job-info-card {
    min-height: 85px;
}

.employer-title {
    font-weight: 700;
}

.jd-box-shadow {
    background: white;
    padding: 10px 15px;
    border-radius: 5px;
    box-shadow: 0px 0px 3px 2px lightgray;

}

.job-descrip-header span {
    display: block;
    color: #706f6e;
    margin-bottom: 6px;
    margin-top: 4px;
}

.post-job-container {
    background: white;
    border-radius: 5px;
    width: 50%;
    margin: 0 auto;
}

#upload_job label {
    margin: 10px 0px;
}

.post-job a {
    background-color: black;
    color: white;
    padding: 9px 40px;
    border-radius: 5px;
}

#res_loader {
    text-align: center;
}

#res_loader img {
    width: 20%;
    margin: 0 auto;
}

.otp-icon i {
    font-size: 35px;
    color: black;
}

.otp-header h5 {
    color: black;
    padding: 0px;
    margin: 0px;
}

.otp-header span {
    color: black;
    font-size: 12px;
}

.email-verification form {
    margin-top: 20px;
}

.login-right {
    background-color: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 0px;
    padding: 25px;
}

.login-header {
    margin-bottom: 20px;
}

.login-header h3 {
    font-size: 18px;
    margin-bottom: 3px;
}

.login-header h3 a {
    color: #0de0fe;
    float: right;
    font-size: 15px;
    margin-top: 2px;
}

.form-focus {
    height: 50px;
    position: relative;
}

.form-group {
    margin-bottom: 20px;
}

.form-focus .form-control {
    height: 50px !important;
    padding: 21px 12px 6px;
}

.form-focus .focus-label {
    font-size: 14px;
    font-weight: 400;
    pointer-events: none;
    transform: translate3d(0, 22px, 0) scale(1);
    -webkit-transform: translate3d(0, 22px, 0) scale(1);
    -ms-transform: translate3d(0, 22px, 0) scale(1);
    transform-origin: left top;
    -webkit-transform-origin: left top;
    -ms-transform-origin: left top;
    -webkit-transition: 240ms;
    -ms-transition: 240ms;
    transition: 240ms;
    z-index: 1;
    color: #b8b8b8;
    margin-bottom: 0;
    position: absolute;
    top: -18px;
    left: 12px;
}

.form-control {
    border-color: #dcdcdc;
    color: #333333;
    font-size: 15px;
    min-height: 46px;
    padding: 6px 15px;
}

.text-end {
    text-align: right !important;
}

.forgot-link {
    font-weight: 500;
    color: var(--brand-primary);
    margin-bottom: 10px;
    -webkit-transition: 0.7s;
    -ms-transition: 0.7s;
    transition: 0.7s;
}

.login-btn {
    font-size: 18px;
    font-weight: 500;
}

.w-100 {
    width: 100% !important;
}

.login-or {
    color: #d4d4d4;
    position: relative;
    margin: 20px 0;
    padding: 10px 0;
}

.btn-facebook {
    background-color: #3a559f;
    color: #ffffff;
    font-size: 13px;
    padding: 8px 12px;
}

.btn-google {
    background-color: #dd4b39;
    color: #ffffff;
    font-size: 13px;
    padding: 8px 12px;
}

.or-line {
    background-color: #e5e5e5;
    height: 1px;
    margin-bottom: 0;
    margin-top: 0;
    display: block;
}

.form-focus .form-control:focus~.focus-label,
.form-focus .form-control:-webkit-autofill~.focus-label {
    opacity: 1;
    font-weight: 400;
    top: -18px;
    font-size: 12px;
    z-index: 1;
}

.span-or {
    background-color: #ffffff;
    display: block;
    margin-left: -20px;
    text-align: center;
    width: 42px;
    position: absolute;
    top: -3px;
    left: 50%;
}

.box-container {
    background: white;
    box-shadow: 0px 1px 2px 2px lightgray;
    padding: 15px 5px;
    text-align: center;
    border-radius: 10px;
    display: block;
}

.box-container span {
    color: black;
}

.top_spl_list span {
    background: white;
    border: solid 1px lightgray;
    border-radius: 14px;
    margin-right: 10px;
    margin-bottom: 20px;
}

.top_spl_list a {
    position: relative;
    color: black !important;
    position: relative;
    padding: 1rem 0;
    display: block;
}


.top_spl_list h5 {
    font-size: 15px;
}

.job_post_body {
    height: 50vh;
}

.register-patient {
    font-weight: bold;
}

#qrcode_body img {
    width: 50% !important;
}

#jobs_post a {
    color: black;
}

.job-descrip-container {
    position: sticky;
    top: 100px;
    border: .0625rem solid #d4d2d0;
    border-radius: .5rem;
    text-align: initial;
    padding: 15px 20px;
    margin-bottom: 30px;
}

.breadcrumb-bar-two {
    background: #F2F6F6;
    background-repeat: no-repeat;
    padding-top: 70px;
    min-height: 300px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hidden {
    display: none;
}

.breadcrumb-bar-two .inner-banner {
    margin: 0;
    padding: 70px 0;
}

.breadcrumb-bar-two .inner-banner .breadcrumb-title {
    font-weight: 600;
    font-size: 48px;
    margin-bottom: 6px;
}

.breadcrumb-bar-two .page-breadcrumb ol {
    background-color: transparent;
    font-weight: 500;
    margin: 0;
    padding: 0;
}

.breadcrumb-bar-two .page-breadcrumb ol li a {
    font-weight: 500;
    color: #4B5563;
}

.breadcrumb-bar-two .page-breadcrumb .breadcrumb-item+.breadcrumb-item {
    font-weight: 500;
    color: #1F2937;
    padding-left: 10px;
}

.booking-date-slots {
    display: none;
}

.back-appointment-icon::hover {
    color: black;
}

.back-appointment-icon {
    cursor: pointer;
}

/*.breadcrumb-bar-two .breadcrumb-item + .breadcrumb-item::before {*/
/*    content: "/";*/
/*    font-family: "feather";*/
/*    float: left;*/
/*    padding-right: 10px;*/
/*    color: #9CA3AF;*/
/*    font-size: 14px;*/
/*    font-weight: 600;*/
/*}*/
.booking-card {
    border: 2px solid #F4F4F4;
    border-radius: 8px;
    margin-bottom: 25px;
}

.booking-card .booking-card-body {
    padding: 15px;
}

.phy-card .card-body {
    color: black;
}

@media (max-width: 1399.98px) {
    .booking-date-list {
        width: 265px;
    }
}

.booking-date-list {
    width: 300px;
}

.booking-date-list ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.booking-date-list ul li {
    font-weight: 500;
    color: #494949;
    padding-bottom: 10px;
}

.booking-date-list ul li span {
    font-weight: normal;
    color: #777777;
    float: right;
    text-align: right;
}

.booking-list-body .booking-doctor-right {
    padding-bottom: 10px;
    position: absolute;
    right: 20px;
}

.booking-list {
    display: flex;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
}

.card-body {
    flex: 1 1 auto;
    padding: 1rem 1rem;
    /*color: white;*/
}

.booking-doctor-img {
    width: 80px;
    height: 80px;
    margin-right: 15px;
    border-radius: 50%;
}

.booking-doctor-img img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

.booking-doctor-info h4 {
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 5px;
}

.booking-doctor-info p {
    color: #888888;
    margin-bottom: 0;
}

.booking-doctor-right p {
    margin-bottom: 0;
}

.booking-doctor-right i {
    margin-right: 18px;
    font-size: 20px;
    color: #28a745;
}

.booking-doctor-right a {
    font-weight: 500;
    text-decoration: underline;
    color: var(--brand-primary);
}

.booking-doctor-left {
    display: flex;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
}

.booking-doctor-details {
    display: flex;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: space-between;
    -webkit-justify-content: space-between;
}

.swiper {
    width: 100%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    height: calc((100% - 30px) / 2) !important;

    /* Center slide text vertically */
    display: flex;
    justify-content: center;
    align-items: center;
}

.cst-field select,
.cst-field input {
    border: none !important;
    width: 100%;
    height: 5vh;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    margin-left: 40px;
    outline: none;
}

.cst-field .mdi {
    font-size: 22px;
    padding-right: 0px;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    color: black;
    position: absolute;
    top: 4px;
    width: 6%;

}

#registration_hp_list input {
    width: 100%;
    margin: 0px;
}

#registration_hp_list ul {
    margin: 0px;
    padding: 0;
}

#registration_hp_list {
    position: absolute;
    top: 34px;
    width: 100%;
    z-index: 1;
    left: 0px;
    margin: 0px;
    padding: 0;
}

#reg-form-data {
    width: 80%;
    margin: 0 auto;
    margin-top: 20px;
}

.cst-field {
    display: flex;
    margin-bottom: 1rem;
    background-color: white;
    position: relative;
}

.doctor-register-image-container {
    background-color: white;
    border-bottom-left-radius: 10px;
    border-top-left-radius: 10px;
}

.doctor-register-image-container img {
    width: 90%;
    text-align: center;

}

.reg-form h4 {
    font-size: 40px;
}

.reg-form p {
    position: relative;

    top: -7px;
    font-size: 13px;
}

.btn-register {
    background: white;
    width: 50%;
    color: black;
    font-size: 17px;
    font-weight: bold;
}

.reg-form ::placeholder,
.reg-form select,
.reg-form input {
    color: gray;
    opacity: 1;
    /* Firefox */
}

.reg-form h4,
.reg-form p {
    color: white !important;
    margin: 0;
    padding: 0;
}

.reg-form {
    background: linear-gradient(90deg, black 0%, #6FC3D4 127.93%, rgba(1, 78, 118, 0) 201.42%);
    padding: 10px;
    border-radius: 10px;
}

.doct_appointment_card {
    background: white;
    padding: 5px 5px;
    /* position: relative; */
    border-radius: 7px;
    color: black;
    position: sticky;
    top: 74px;
    z-index: 9999;
    margin-bottom: 14px;
}

.doctor-types img {
    width: 50px;
    height: 50px;
    position: absolute;
    bottom: 6px;
    right: 20px;
}

.doctor-types h5 {
    color: white !important;
    vertical-align: middle;
    margin-top: 21px;
    margin-left: 10px;
}

.doctor-types {
    height: 12vh;
    /* width: 19%; */
    display: flex;
    border-radius: 11px;
}

.hp-treatments img {
    border-radius: 100%;
    padding: 3px;
    position: absolute;
    right: 3px;
    bottom: 3px;
}

.hp-treatments h5 {
    color: black !important;
    position: absolute;
    left: 10px;
    top: 0px;
}

.hp-treatments {
    box-shadow: 0px 1px 1px 1px lightgray;
    border-radius: 10px;
}

.consultant,
.Neurologist,
.Orthopaedic {

    background: linear-gradient(90deg, #F7CB39 0%, rgba(1, 78, 118, 0) 201.42%);
}

.professor,
.Dentist {
    background: linear-gradient(90deg, #64C5ED 0%, rgba(1, 78, 118, 0) 201.42%);
}

.specialist,
.Cardiologist {
    background: linear-gradient(90deg, #F06F37 0%, rgba(1, 78, 118, 0) 201.42%);
}

.gp,
.Gynecologist,
.Ophthalmologist {
    background: linear-gradient(90deg, #E69AC0 0%, rgba(1, 78, 118, 0) 201.42%);
}

.hp-doctor-types {
    border-radius: 10px;
    position: relative !important;
    height: 13vh;
}

.hp-doctor-types img {
    position: absolute;
    right: 3px;
    bottom: 3px;
    font-size: 32px;
}

.hp-doctor-types p {
    position: relative;
    color: white !important;
    text-align: left !important;
    padding: 0px;
    margin: 0px;
    bottom: -5px;
    left: 5px;
    font-weight: 700;
    font-size: 20px;
}

.sorts_filter i {
    padding-top: 4px;
}

.booked_slot {
    text-decoration: line-through;
    color: red;
}

.appoint_reservation_container {
    width: 80%;
    margin: 0 auto;
}

.appointment_header {
    display: flex;
    position: relative;
}

.appointment_header .dct_img {
    width: 16%;
}

.appointment_header .dct_img img {
    border-radius: 5%;

}

.appointment_header .dct_info {
    width: 84%;
}

.total_visitor span {
    font-size: 12px;
    font-weight: 700;
}

.spl_list {
    border: solid 1px lightgray;
    border-radius: 10px;
}

.selected_spl_container i,
.selected_locat_container i {
    position: absolute;
    right: 0px;
    top: 4px;
}

.slots_header .booking-date {
    border: 1px solid #EEF4FE;
    border-left: none;
    display: inline-block;
    text-align: center;
    padding: 7px 19px;
    cursor: pointer;
    font-size: 10px;
    color: #515064;
}

.slots_header label {
    color: #71869A !important;
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
}

.slots_header .booking-slider-arrow-left,
.slots_header .booking-slider-arrow-right {
    display: inline-block;
    text-align: center;
    padding: 7px 19px;
    cursor: pointer;
    font-size: 10px;
    color: #515064;
}

.slots_header ul {
    list-style: none;
}

.selected_spl_container,
.selected_locat_container {
    border: solid 1px lightgray;
    width: 100%;
    border-radius: 10px;
    padding: 7px 10px;
    position: relative;
    display: none;
}

.selected_spl input,
.selected_locat input {
    border: none;
    width: 100%;
    outline: none;
}

.filter_checkbox_btn {
    height: 10px;
}

.selected_spl,
.selected_locat {
    border: solid 1px lightgray;
    padding: 7px 11px;
    border-radius: 10px;
}

.iiOIua,
#location_list {
    display: none;
}

#review_total_rating {
    position: absolute;
    top: 12px;
    right: 0px;
}

.rating_speciality h5 {
    font-size: 24px !important;
}

.rating_speciality h5,
.total_visitor span,
.other_rating h6 {
    color: #747B83 !important;
}

.review-rating {
    position: absolute;
    top: 25px;
    right: 5px;
}

#doctor-counter-1 .rounded-circle {
    background-color: #EFF1F4;
    padding: 2px;
}

.doc-reviews i {
    color: #FDBC38;
    font-size: 13px;
}

.card-title {
    color: black !important;
    margin-bottom: 10px !important;
}

.inner_search #input-dropdown {
    top: 62px !important;
    padding: 2px;
}

.review-rating i {
    font-size: 15px !important;
}

.overall_rating i,
.other_rating i,
.review-rating i {
    color: #F0B61E;
    font-size: 20px;
}

.experiences_detail {
    padding: 0px 10px;
}

.position .title,
.position .date {
    font-size: 20px;
    font-weight: 700;
}

.exp_comp_name span {
    font-size: 12px;
}

.exp_location span {
    font-size: 12px;
}

.modal-header {
    background-color: #1da6a0 !important;
    color: white !important;
}

.modal-content .btn-close {
    background-color: white !important;
}

#mobile_search .dark-gray-text {
    color: white;
}

#mobile_search_spl_body i {
    color: black !important;
    background: black24 !important;
    padding: 5px !important;
    border-radius: 5px !important;
    margin-right: 10px !important;
}

#mobile_search_spl_body ul {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    height: 100vh !important;
}

#mb_search_area,
#mb_user_location,
#mb_user_speciality,
#clinic_visit_search {
    display: none;
}

#mobile_search_spl_body .dropdown_list {
    height: 100vh;
    overflow-y: scroll;
    overflow-x: hidden;
    background-color: white;
    width: 100%;
}

.hospital_card_detail {
    padding-top: 60px;
    padding-bottom: 30px;
    width: 100%;
    margin: 0 auto;
}

.feature_card_detail {
    padding-top: 60px;
    padding-bottom: 30px;
    width: 86%;
    margin: 0 auto;
}

.hospital_card_detail .title a {
    color: black;
    text-decoration: underline !important;
    font-size: 14px;
    font-weight: 600;
}

.feature_card_detail .title a {
    color: black;
    text-decoration: underline !important;
    font-size: 17px;
    font-weight: 600;
}

.feature_speciality span.rate {
    background: linear-gradient(90deg, black 0%, #6FC3D4 127.93%, rgba(1, 78, 118, 0) 201.42%) !important;
}

.feature_speciality .skill {
    font-size: 20px;
    color: black;
    font-weight: 600;
}

#hospital_by_city,
#clinic_by_city,
#pharmacy_by_city {
    width: 84%;
    margin: 0 auto;
}

.location span {
    color: black;
    font-weight: 700;
    font-size: 13px;
}

.appointment_btn a,
.hosp_appointment_btn a {
    outline: none;
    border: none;
    background-color: #18DEC5;
    color: white !important;
    font-weight: 700;
    font-size: 15px;
    padding: 7px 20px;
    border-radius: 5px;
}

.hosp_appointment_btn {
    text-align: center;
    position: absolute;
    bottom: 9px;
    /* left: 80px; */
    width: 88%;
}

.appointment_btn {
    text-align: center;
}

.feature_speciality sup {
    display: none;
}

.hosp_feature_card {
    border: solid 1px lightgray;
    background-color: white;
    border-radius: 10px;
    min-height: 76vh;
}

.feature_card {
    border: solid 1px lightgray;
    background-color: white;
    border-radius: 10px;
}

.hospital_listing_img img {

    width: 100%;
    height: 150px;
    position: relative;
    top: 0px;
    object-fit: contain;
    background: white;
}

.slick-prev {
    left: 0 !important;
    z-index: 1 !important;
}

.slick-prev:before,
.slick-next:before {
    font-family: "slick" !important;
    font-size: 20px !important;
    line-height: 1 !important;
    opacity: 0.75 !important;
    color: white !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-next {
    right: 0 !important;
}

.slick-prev,
.slick-next {
    font-size: 0 !important;
    line-height: 0 !important;
    display: block !important;
    width: 40px !important;
    height: 40px !important;
    background: black !important;
    cursor: pointer !important;
    border: none !important;
    outline: none !important;
    -webkit-transition: all 0.4s ease !important;
    -ms-transition: all 0.4s ease !important;
    transition: all 0.4s ease !important;
    position: absolute !important;
    top: 50% !important;
    padding: 0 !important;
    transform: translate(0, -50%) !important;
    -webkit-transform: translate(0, -50%) !important;
    -ms-transform: translate(0, -50%) !important;
    -webkit-box-shadow: 1px 6px 14px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 1px 6px 14px rgba(0, 0, 0, 0.2);
    box-shadow: 1px 6px 14px rgba(0, 0, 0, 0.2);
    border-radius: 100%;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
    background-color: black;
    color: #ffffff;
    opacity: 1;
    outline: none;
    -webkit-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.slick-prev {
    left: 0;
    z-index: 1;
}

.feature-doctor-detail {
    position: relative;
    top: 30px;
}

.profile-widget {
    background-color: #ffffff;
    border: 1px solid #f0f0f0;
    position: relative;
    margin-bottom: 30px;

    border-radius: 10px;
    -webkit-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.profile-widget {
    -webkit-box-shadow: 2px 2px 13px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 2px 2px 13px rgba(0, 0, 0, 0.1);
    box-shadow: 2px 2px 13px rgba(0, 0, 0, 0.1);
    margin-bottom: 0;
}

.profile-widget .doc-img {
    position: relative;
    overflow: hidden;
    z-index: 1;
    border-radius: 4px;
}

.profile-widget .doc-img img {
    border-radius: 4px;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -webkit-transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1) 0ms;
    -ms-transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1) 0ms;
    transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1) 0ms;
    width: 100%;
}

.profile-widget .pro-content .row.row-sm {
    margin-left: -3px;
    margin-right: -3px;
}

.profile-widget .pro-content .row.row-sm>div {
    padding-left: 3px;
    padding-right: 3px;
}

.slick-slide img {
    display: block;
}

.profile-widget .pro-content .title {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 5px;
}

.profile-widget .pro-content .title a {
    display: inline-block;
    color: black !important;
    font-weight: bold;
    font-family: arboria, sans-serif !important;
}

.profile-widget .verified {
    color: #28a745;
    margin-left: 3px;
}

.profile-widget .pro-content p.speciality {
    font-size: 13px;
    color: #757575;
    margin-bottom: 5px;
    min-height: 20px;
}

.profile-widget .pro-content .rating {
    list-style: none;
    width: 100%;
    margin: 0 0 7px;
    padding: 0;
}

.profile-widget .pro-content {
    padding: 15px;
    margin-top: 20px;
}

.profile-widget .btn {
    padding: 6px 5px;
    outline: none;
    text-decoration: none;
    font-size: 15px;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    border-radius: 5px;
    width: 100%;
}

.section-header p {
    margin-top: 10px;
}

.section-header {
    margin: 0 0 30px;
}

.section-header p {
    color: #757575;
    font-size: 16px;
    margin: 15px 0 0 0;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 500;
    margin: 0;
    color: rgba(0, 0, 0, 0.822);
}

#feature-doctors {
    background-color: #F8F9FA;
    padding: 30px 0px;
}

.profile-widget .pro-content .rating i.filled {
    color: #f4c150;
}

.profile-widget .pro-content .rating i {
    color: #dedfe0;
}

.profile-widget .pro-content .available-info {
    font-size: 13px;
    color: black;
    font-weight: 400;
    list-style: none;
    margin: auto auto 15px;
    padding: 0;
}

.view-btn:hover,
.view-btn:focus {
    background-color: black;
    color: #ffffff;
}

.book-btn {
    background-color: black;
    border: 2px solid black;
    color: #ffffff;
    font-size: 13px;
    text-align: center;
    display: block;
    font-weight: 500;
    padding: 6px;
}

.view-btn {
    color: black;
    font-size: 13px;
    border: 2px solid black;
    text-align: center;
    display: block;
    font-weight: 500;
    padding: 6px;
}

.profile-widget ul li {
    list-style-type: none;
}

.feature_img_holder {
    text-align: center;
}

.feature_img_holder img {
    border-radius: 100%;
    width: 125px;
    height: 125px;
    position: relative;
    top: 30px;

    margin: 0 auto;
    margin-bottom: 40px;
    z-index: 999;
    background: white;
    object-fit: contain;
    object-position: center;

}

.lgyqId {
    max-height: 68px;
    height: 68px;
    width: 100%;
    padding: 0px 1px 0.5px;
    border-radius: 11px;
    border: 1px solid rgb(196, 196, 196);
    display: flex;
    /*direction: ltr;*/
    margin: auto;
}

body input,
body button {
    font-family: SourceSansPro !important;
}

.search-bar__text-input-doctorNameText__container {
    position: relative;
}

#advanced_search span {
    border-radius: 0;
    color: #333;
    font-weight: 600;
    position: relative;
    top: 5px;
    left: 3px;
    text-decoration: underline;
    cursor: pointer;
}

.gwwwHH {
    display: flex;
    overflow: hidden;
}

.dHYOXE {
    position: relative;
}

.btPuhx i {
    position: absolute;
    left: -40px;
    bottom: 13px;
    font-size: 30px;
    color: black;
}

.xQjgq,
.btPuhx {
    cursor: pointer;
}

.xQjgq i {
    position: absolute;
    left: -40px;
    bottom: 13px;
    font-size: 30px;
    color: rgb(112, 117, 117);
}

.kSlOLf {
    max-height: 68px;
    display: flex;
    width: 100%;
    /*direction: ltr;*/
}

.Xrbgx {
    position: relative;
    display: inline-block;
    /*direction: rtl;*/
    border: 0px;
    width: 50%;
}

.eacFSj {
    /*direction: rtl;*/
    cursor: pointer;
    border-width: 0px 1px 0px 0px;
    border-top-style: initial;
    border-bottom-style: initial;
    border-top-color: initial;
    border-bottom-color: initial;
    border-image: initial;
    border-right-style: solid;
    border-right-color: rgb(196, 196, 196);
    border-left-style: initial;
    border-left-color: initial;
    position: unset;
}

.Exzri {
    padding: 8px 16px 3.5px;
}

.BopvF {
    font-size: 12px;
    color: rgb(116, 116, 112);
    line-height: 20px;
    text-align: left;
    max-width: unset;
}

.ettccG {
    padding: 5px 5px;
}

.eyCUsh {
    color: black;
    text-overflow: ellipsis;
    border: 0px;
    margin: 0px;
    display: inline-flex;
    width: 90%;
    overflow: hidden;
    padding-left: 0px;
    padding-right: 0px;
    font-size: 17px;
    line-height: 1.9;
    outline: none;
}

::placeholder {
    /* Most modern browsers support this now. */
    color: rgb(72, 72, 72);
}

.fFVkQs {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
}

.eEEdrV {
    transition: background-color 0.5s ease 0s;
    background-color: white;
    color: white;
    margin: 0px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    text-align: right;
    width: 100%;
    /*direction: ltr;*/
    border-radius: 0px;
    height: 66px;
    padding: 6px 16px 4px;
}

.hGFMCS {
    opacity: -0.75;
    position: absolute;
    width: 100%;
    height: 100%;
    display: none;
    z-index: 1;
    /*direction: ltr;*/
}

.diBmsA {
    transition: background-color 0.5s ease 0s;
    background-color: white;
    color: white;
    margin: 0px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    text-align: right;
    width: 100%;
    /*direction: ltr;*/
    border-radius: 10px 0px 0px 10px;
    height: 66px;
    padding: 6px 16px 4px;
}

.hqlkhj {
    font-size: 12px;
    color: rgb(116, 116, 112);
    line-height: 20px;
    text-align: left;
    max-width: calc(100% - 20px);
}

.XeCAi {
    text-align: left;
    line-height: 1.5;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    display: list-item;
}

.gjKOip {
    color: black;
    -webkit-box-align: center;
    align-items: center;
    max-width: calc(100% - 20px);
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    font-size: 17px;
    line-height: 1.9;
}

::marker {
    unicode-bidi: isolate;
    font-variant-numeric: tabular-nums;
    text-transform: none;
    text-indent: 0px !important;
    text-align: start !important;
    text-align-last: start !important;
}

.bLapDo {
    color: black;
    -webkit-box-align: center;
    align-items: center;
    max-width: unset;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    font-size: 17px;
    line-height: 1.9;
}

.XeCAi {
    text-align: left;
    line-height: 1.5;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    display: list-item;
}

.jxctIN {
    color: rgb(255, 255, 255);
    background: black;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    box-shadow: black 0px 0px 0px 1px;
    width: 20%;
    margin: 0px -1px 0px 0px;
    border-radius: 0px 10px 10px 0px;
}

.goyPCr {
    max-height: 68px;
    height: 66px;
    position: relative;
    display: flex;
    /*direction: ltr;*/
    cursor: pointer;
    border: 0px;
    font-style: normal;
    font-size: 20px;
    text-align: center;
    vertical-align: middle;
    min-width: 130px;
}

.huSGge {
    display: inline-flex;
    -webkit-box-align: center;
    align-items: center;
}

.bTxAHh {
    width: 120px;
}

.mobile_ask_question {
    display: none !important;
}

@media only screen and (min-width: 1024px) {
    .kSlOLf {
        width: calc(100% - 195px);
    }

    .jxctIN {
        width: 195px;
    }

    .huSGge {
        font-weight: 400;
    }
}

@media only screen and (min-width: 768px) {

    .eMuPYJ {
        display: flex;
        flex-direction: column;
        order: 2;
    }

    .gwwwHH {
        border-radius: 20px 20px 0px 0px;
    }

    .btPuhx {
        background-color: white;
    }

    .dHYOXE {
        text-align: start;
    }

    .btPuhx .SearchBarTabstyle__HomeSearchBarTabsTitle-sc-1rkhkxl-0 {
        color: black;
        font-size: 20px;
    }

    .btPuhx .SearchBarTabstyle__HomeSearchBarTabsDesc-sc-1rkhkxl-1 {
        color: black;
        font-size: 14px;
    }

    .xQjgq {
        background-color: white;
    }

    .dHYOXE {
        text-align: start;
    }

    .xQjgq .SearchBarTabstyle__HomeSearchBarTabsTitle-sc-1rkhkxl-0 {
        color: rgb(112, 117, 117);
        font-size: 20px;
    }

    .xQjgq .SearchBarTabstyle__HomeSearchBarTabsDesc-sc-1rkhkxl-1 {
        color: rgb(112, 117, 117);
        font-size: 14px;
    }

    .gJSBO {
        -webkit-box-align: center;
        align-items: center;
        padding: 16px;
    }

    .htnXUw {
        width: auto;
        height: auto;
        padding: 16px;
        margin-inline-end: 34px;
        font-size: 16px;
        font-weight: 400;
    }

    .gisuNC {
        order: 1;
    }
}

.gisuNC {
    -webkit-box-flex: 0.1;
    flex-grow: 0.1;
    text-align: start;
}

.htnXUw {
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    width: 160px;
    height: 40px;
    background: rgb(230, 241, 255);
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: black;
    text-decoration: none;
}

.eMuPYJ {
    margin-inline-end: 16px;
    -webkit-box-flex: 1;
    flex-grow: 1;
}

.keTmmQ {
    font-size: 20px;
    font-weight: 700;
    color: rgb(72, 72, 72);
}

.iNBsDu {
    margin: 8px 0px;
    font-weight: 400;
    color: rgb(102, 102, 102);
}

.iMSggE {
    -webkit-box-flex: 0.5;
    flex-grow: 0.5;
    order: 3;
}

#ask_question_modal .modal-lg {
    max-width: 50% !important;
}

.gJSBO {
    display: flex;
    background-color: white;
    padding-inline-start: 16px;
    font-size: 16px;
    border-radius: 8px;
    overflow: hidden;
    width: 100%;
    margin-top: 15px;
}

.gytBOb {
    position: relative;
    width: calc(100% - 32px);
    height: 22px;
    border: 1px solid rgb(227, 230, 234);
    padding: 17px 15px;
    border-radius: 8px;
    box-shadow: none;
    font-weight: 400;
    font-size: 16px;
    line-height: 0px;
    color: rgb(72, 72, 72);
}

.gytBOb i {
    position: absolute;
    right: 7px;
    top: 10px;

}

.gPKvwN {
    width: 100%;
}

.eTihAM {
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: rgb(91, 91, 91);
}

.guzWBK {
    margin-inline-start: 8px;
    font-weight: 400;
    font-size: 12px;
    line-height: 21px;
    color: rgb(91, 91, 91);
}

.ukSrU {
    width: 100%;
    display: flex;
}

.iyASAL {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}

.hzCYON {
    display: block;
    cursor: pointer;
    user-select: none;
    -webkit-box-flex: 1;
    flex-grow: 1;
    flex-basis: 0px;
}

.fGspaX {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0px;
    width: 0px;
}

.eJACsg {
    cursor: pointer;
    padding: 8px 12px;
    width: 100%;
    height: 48px;
    background: #18dec5;
    border-radius: 8px;
    border: none;
    color: white;
    font-weight: 600;
    line-height: 24px;
    font-size: 16px !important;
}

.bNwtMG {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    width: 100%;
    height: 36px;
    border: 1px solid rgb(241, 244, 246);
    background: rgb(241, 244, 246);
    border-radius: 8px;
    transition: all 250ms ease 0s;
}

.euFvTt {
    display: none;
}

#question_speciality {
    cursor: pointer;
}

#question_modal_body #input-dropdown {
    top: 56px;
    left: 31px;
}

.ghSYcK {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    width: 100%;
    height: 36px;
    border: 1px solid #18dec5;
    background: white;
    border-radius: 8px;
    transition: all 250ms ease 0s;
}

.lffWpd {
    font-weight: 600;
    color: #18dec5;
    font-size: 14px;
    line-height: 20px;
    transition: all 250ms ease 0s;
}

.hzCYON:not(:first-child) {
    margin-inline-start: 8px;
}

.cIReBM {
    width: 100%;
    margin-bottom: 8px;
}

.dArOGJ {
    margin: 0px;
}

.dArOGJ [class*="FormikInputstyle__InputWrapper"] {
    width: 100%;
}

.hhRUNF {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    width: 66.66%;
}

.dArOGJ [class*="FormikInputstyle__InputWrapper"] input,
.dArOGJ [class*="FormikInputstyle__InputWrapper"] textarea {
    font-family: SourceSansPro;
    width: calc(100% - 32px);
    height: 40px;
    border: 1px solid rgb(227, 230, 234);
    padding: 9px 16px;
    border-radius: 8px;
    box-shadow: none;
    font-size: 16px;
    outline: none;
}

.jBjhwf {
    display: inline-block;
    width: calc(100% - 26px);
    padding: 6px 12px;
    margin: 0px;
    font-size: 14px;
    color: rgb(85, 85, 85);
    background-color: rgb(255, 255, 255);
    border: 1px solid rgb(239, 15, 15);
    border-radius: 4px;
    box-shadow: rgba(0, 0, 0, 0.075) 0px 1px 1px inset;
    transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s;
    height: 40px;
    resize: none;
}

.dArOGJ [class*="FormikInputstyle__InputWrapper"] input[invalid],
.dArOGJ [class*="FormikInputstyle__InputWrapper"] textarea[invalid] {
    /*border-color: rgb(239, 15, 15);*/
}

.dArOGJ [class*="FormikInputstyle__InputWrapper"] textarea {
    height: 94px;
}

.fbhaUU {
    display: block;
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    color: rgb(156, 156, 156);
}

.btSUkZ {
    display: inline-block;
    width: calc(100% - 26px);
    padding: 6px 12px;
    margin: 0px;
    font-size: 14px;
    color: rgb(85, 85, 85);
    background-color: rgb(255, 255, 255);
    border: 1px solid rgb(204, 204, 204);
    border-radius: 4px;
    box-shadow: rgba(0, 0, 0, 0.075) 0px 1px 1px inset;
    transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s;
}

.irqKrW {
    font-size: 20px;
    font-weight: 600;
    color: rgb(112, 117, 117);
    margin: 0px;
}

.dHYOXE {
    display: inline-block;
}

.chHhwg {
    -webkit-box-flex: 1;
    flex-grow: 1;
    flex-basis: 100%;
    border-bottom: 1px solid rgb(224, 224, 224);
    text-align: center;
    padding: 20px 0px;
}

.PbVdd {
    padding-top: 55px;
    width: 100%;
    line-height: 1;
    color: rgb(111, 112, 114);
    display: inline-block;
    animation: auto ease 0s 1 normal none running none;
}

.cdtxiU {
    border: 3px solid black;
    border-radius: 0px 0px 6px 6px;
}

.hvnpXQ:first-child {
    border-radius: 0px;
    border-bottom: 1px solid rgb(227, 230, 234);
}

.hvnpXQ:not(first-child) {
    position: relative;
    border-radius: 0px 0px 4px 4px;
    border-top: 0px;
}

.hqhMEG:not(first-child) {
    position: relative;
    border-radius: 0px 0px 4px 4px;
    border-top: 0px;
}

.kTDcKg {
    font-size: 16px;
    font-weight: bold;
    display: block;
    width: 100%;
    color: black;
    border: none;
    border-radius: 6px;
    margin-top: 20px;
    background-color: white;
    padding: 17px 0px;
}

.hqhMEG {
    border: none;
    display: block;
    color: rgb(111, 112, 114);
    padding: 16px;
    background-color: white;
    text-align: left;
    width: 100%;
    font-size: 16px;
}

.hvnpXQ {
    border: none;
    display: block;
    color: rgb(111, 112, 114);
    padding: 16px;
    background-color: white;
    text-align: left;
    width: 100%;
    font-size: 16px;
}

.gXhzFd {
    line-height: 1.1;
    font-size: 3.15em;
    font-weight: 600;
    margin: 0px 0px 11px;
}

.xQjgq {
    -webkit-box-flex: 1;
    flex-grow: 1;
    flex-basis: 100%;
    border-bottom: 1px solid rgb(224, 224, 224);
    text-align: center;
    padding: 20px 0px;
}

.gVkESe {
    color: rgb(112, 117, 117);
    font-size: 14px;
    margin: 0px;
}

.btPuhx .SearchBarTabstyle__HomeSearchBarTabsDesc-sc-1rkhkxl-1 {
    font-size: 14px;
}

.irqKrW {
    font-size: 20px;
    font-weight: 600;
    color: rgb(112, 117, 117);
    margin: 0px;
}

.dHYOXE {
    display: inline-block;
}

.dct_type_section {
    margin-top: 3rem;
}

.btPuhx {
    -webkit-box-flex: 1;
    flex-grow: 1;
    flex-basis: 100%;
    text-align: center;
    padding: 20px 0px 18px;
    border: 1px solid black;
}

/*--doctor profile page styling start ---*/
.selected_time_slot {
    background-color: black !important;
    padding: 2px 10px !important;
    color: white;
}

.paitent-header {
    padding-bottom: 10px;
}

.paitent-header .paitent-title {
    font-size: 22px;
    margin-bottom: 0;
}

.booking-day-active {
    background-color: black;
    color: white !important;
    border-radius: 5px;
}

.mp-profile-content ul {
    color: white;
}

.modal-lg {
    max-width: 50% !important;
}

.mp-detail-header {

    background: white !important;
    padding-top: 40px;
}

.profile_info_list li {
    margin-right: 20px;
    margin-left: 20px;
}

.profile_info_list {
    display: flex;
}

.mp-detail-header .mp-breadcrumb {
    margin-bottom: 10px;
}

.profile-breadcrumbs {
    margin: 0;
    padding: 0;
}

.mp-detail-header .mp-breadcrumb li:first-child {
    padding-right: 0px !important;
    margin-right: -11px !important;
    padding-left: 0px !important;
}

.profile-breadcrumbs li {
    display: inline-block;
    position: relative;
    margin-right: -12px !important;
    padding-left: 16px !important;
}

.mp-detail-header .mp-breadcrumb p,
.mp-detail-header .mp-breadcrumb a,
.mp-detail-header .mp-breadcrumb span {
    color: black;
    font-size: 12px;
}

.profile-breadcrumbs li>a {
    font-size: 12px;
}

.mp-detail-header .mp-breadcrumb li:first-child:before {
    content: "";
    position: absolute;
    left: -3px;
    top: 0px;
    color: black;
    width: auto;
    height: auto;
    background-color: transparent;
    border-radius: 0%;


}

.mp-detail-header .mp-breadcrumb li:before {


    display: inline-block;
    padding-right: 0.425rem;
    color: black;
    font-size: 12px;
    content: "❯";
    margin-top: 3px;
}

.mp-profile-image {
    margin-bottom: 30px;
    background: white;
    border-radius: 10px;
    display: inline-block;
}

.hsp_img_container {
    width: 84% !important;
    margin: 0 auto;
    position: relative;
    bottom: 34px;
}

.hsp_img_container img {

    width: 100% !important;
    border-radius: 0;

}

.mp-profile-image img {
    border-radius: 10px;
    display: block;
    min-height: 220px;
    min-width: 180px;
    object-fit: contain;
}

.mp-profile-content {
    padding-left: 35px;
}

.mp-profile-content .mp-profile-content-title h1 {
    color: black;
    margin: 0;
    margin-bottom: 10px;
    font: normal normal 900 30px/36px 'Lato', sans-serif;
    display: inline-block;
    float: left;
    margin-right: 10px;
}

.mp-clearfix {
    clear: both;
}

.mp-claimed-profile {
    display: inline-block;
    line-height: 22px;
    cursor: pointer;
}

.mp-tooltip {
    position: relative;
}

.mp-profile-content .mp-claimed-profile.mp-tooltip .mp-tooltiptext {
    left: -225%;
}

.mp-claimed-profile.mp-tooltip .mp-tooltiptext {
    bottom: 160%;
    left: -300%;
}

.mp-claimed-profile.mp-tooltip .mp-tooltiptext,
.mp-claimed-profile.mp-tooltip .mp-tooltiptext:after {
    background-color: #18DEC5 !important;
}

.mp-tooltip .mp-tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: #000;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    position: absolute;
    z-index: 1;
    font-size: 14px;
    font-weight: 400;
}

.mp-claimed-profile {
    display: inline-block;
    line-height: 22px;
    cursor: pointer;
}

.mp-claimed-profile img {
    user-select: none;
    pointer-events: none;
}

.mp-profile-content .mp-profile-content-rating {
    margin-bottom: 25px;
}

.mp-profile-content .mp-profile-content-rating .mp-rate {
    display: inline-block;
    background: #FFFFFF;
    float: left;
    border-radius: 2px;
    margin: 0;
    margin-right: 10px;
    min-height: 25px;
    padding: 0 5px;
    line-height: 24px;
}

.mp-profile-content .mp-profile-content-rating .mp-rate span {
    font: normal normal 900 12px/15px 'Lato', sans-serif;
    color: #0A6EF3;
    margin-right: 2px;
    background-color: transparent !important;
    padding: 0px;
}

span.rate {
    background-color: #18DEC5;
    border-radius: 5px;
    color: #fff;
    display: inline-block;
    font-weight: 700;
    line-height: 19px;
    margin-right: 5px;
    padding: 3px 6px;
}

.mp-rate span.rate sup {
    display: none !important;
}

span.rate sup {
    font-size: 75%;
    margin-left: 2px;
    top: -0.2em;
}

sub,
sup {
    position: relative;
    font-size: 75%;
    line-height: 0;
    vertical-align: baseline;
}

.mp-profile-content .mp-profile-content-rating .mp-rate i {
    color: black;
}

.mp-profile-content .mp-profile-content-rating h2,
.mp-profile-content .mp-profile-content-rating h2 a {
    display: inline-block;
    color: #FFFFFF;
    margin: 0;
    font: normal normal bold 20px/24px 'Lato', sans-serif;
}

.mp-profile-content .mp-profile-content-rating h2 a,
.mp-profile-content .mp-profile-content-rating h2 a:hover {
    color: #FFFFFF;
}

.mp-profile-content-features {
    margin-bottom: 20px;
}

.margin-bottom-5 {
    margin-bottom: 5px;
}

.mp-profile-content-feature-icon {
    margin-right: 15px;
    display: inline-block;
}

.mp-profile-content-feature-text {
    font: normal normal normal 13px/17px 'Lato', sans-serif;
    color: black;
}

.margin-bottom-30 {
    margin-bottom: 30px;
}

.mp-profile-content-details p,
.mp-profile-content-details span,
.mp-profile-content-details a {
    font: normal normal normal 12px/20px 'Lato', sans-serif;
    color: #D4DAFF;
    margin: 0;
    padding: 0;
}

.mp-profile-social-actions {
    margin-bottom: 30px !important;
}

.post-stat {
    padding: 0;
    margin: 0;
    list-style: none;
}

.sbutton {
    position: relative;
}

.pull-left {
    float: left !important;
}

.mp-profile-social-action-share .reviews-stars i,
.mp-profile-social-action-share .reviews-quantity,
.mp-profile-social-action-save #fav-container a {
    color: #fff;
}

.sbutton .reviews-stars {
    margin-right: 4px;
}

.mp-profile-social-action span {
    font: normal normal normal 14px/17px 'Lato', sans-serif;
    color: #FFFFFF;
}

.mp-profile-social-action-share .social-icons.post-socials.smenu {
    background-color: #fff;
    height: auto;
    right: auto;
    opacity: 1;
    /*display: none;*/
    padding: 20px;
    left: 0;
    top: 50px;
    text-align: center;
    visibility: visible;
    width: 410px;
    z-index: 9999999999;
    -webkit-transition: width 0.5s ease-in-out 0s, right 0.5s ease-in-out 0s;
    -moz-transition: width 0.5s ease-in-out 0s, right 0.5s ease-in-out 0s;
    -ms-transition: width 0.5s ease-in-out 0s, right 0.5s ease-in-out 0s;
    -o-transition: width 0.5s ease-in-out 0s, right 0.5s ease-in-out 0s;
    transition: width 0.5s ease-in-out 0s, right 0.5s ease-in-out 0s;
}

.smenu {
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 3px;
    left: -34px;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    padding: 0;
    position: absolute;
    top: -50px;
    -webkit-transition: opacity 0.5s ease-in-out, top 0.5s ease-in-out;
    -moz-transition: opacity 0.5s ease-in-out, top 0.5s ease-in-out;
    transition: opacity 0.5s ease-in-out, top 0.5s ease-in-out;
    width: 138px;
    text-align: left;
}

.social-icons {
    padding: 0;
    margin: 0;
    list-style: none;
}

.md-post-meta-right-box .post-stat .social-icons li {
    border: transparent !important;
    background-color: #aeaeae !important;
    border-radius: 3px !important;
    display: inline-block !important;
    float: none !important;
    height: 35px !important;
    margin: 0 6px !important;
    padding: 0 !important;
    text-align: center !important;
    vertical-align: top !important;
    width: 35px !important;
}

.md-post-meta-right-box .post-stat .social-icons li a {
    float: left;
    line-height: 35px;
    width: 100%;
}

.md-overlay {
    z-index: 99999999 !important;
}

.md-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    visibility: hidden;
    top: 0;
    left: 0;
    z-index: 999999;
    opacity: 0;
    background: rgba(0, 0, 0, 0.8);
    -webkit-transition: opacity .3s ease, transform .3s ease;
    -moz-transition: opacity .3s ease, transform .3s ease;
    transition: opacity .3s ease, transform .3s ease;
}

.hide {
    display: none !important;
}

.md-post-meta-right-box .post-stat .social-icons li a i.fa {
    border-radius: 3px;
    color: black;
    float: left;
    line-height: 34px !important;
    width: 100%;
    -webkit-transition: all .25s ease;
    -moz-transition: all .25s ease;
    -ms-transition: all .25s ease;
    -o-transition: all .25s ease;
    transition: all .25s ease;
}

.mp-vertical-line {
    margin: 0 15px;
    width: 1px;
    height: 15px;
    border: none;
    margin-top: 4px;
    background: #FFFFFF55;
}

.mp-profile-content-tabs {
    min-height: 59px;
}

.mp-profile-content-tabs-container {
    z-index: 9;
    transition: 500ms ease-in-out;
}

.mp-profile-content-tabs-container {
    background: #FFFFFF;
    box-shadow: 0 10px 29px #0A74F314;
    border-radius: 10px 10px 0 0;
}

.nav-tabs,
.nav-tabs>li>a,
.nav-tabs>li.active>a,
.nav-tabs>li.active>a:hover,
.nav-tabs>li.active>a:focus {
    border: 0;
}

.mp-w-20 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20% !important;
    flex: 0 0 20% !important;
    width: 20% !important;
}

.nav-tabs>li>a {
    position: relative;
    padding: 14px 15px;
    border-radius: 0;
    position: relative;
    text-align: center;
}

.nav-tabs>li>a {
    display: block;
    margin-right: 2px;
    line-height: 1.42857143;
    border: 1px solid transparent;
    border-radius: 4px 4px 0 0;
}

.mp-profile-content-tabs-container.nav-tabs>li.active>a,
.mp-profile-content-tabs-container.nav-tabs>li>a {
    font: normal normal bold 16px/19px 'Lato', sans-serif;
    color: #515064;
    border-right: 1px solid #EEF4FE;
}

.mp-profile-content-tabs-container.nav-tabs>li>a {
    padding: 20px 15px;
}

.mp-profile-sidebar-fixed,
.mp-profile-sidebar-mobile {
    background: #FFFFFF;
    box-shadow: 0 10px 29px #0A74F314;
    border-radius: 10px;
}

.mp-profile-sidebar-fixed-container {
    padding: 15px 20px;
}

.medicalpro-booking-section {
    width: 100%;
    margin-bottom: 10px;
    background: #fff;
}

.md-trigger {
    cursor: pointer;
}

.pos-relative {
    position: relative;
}

.margin-bottom-20 {
    margin-bottom: 20px !important;
}

.md-booking-con-title span:first-child {
    margin-left: 15px;
}

.md-booking-con-title span {
    background: rgba(91, 111, 32, .15);
    width: 32px;
    height: 5px;
    display: inline-block;
    vertical-align: middle;

}

.md-booking-con-title {
    margin-top: 5px;
    color: #515064;
    font-size: 16px;
}

.md-booking-con-title span.select-bok-step {
    background: #18DEC5 0 0 no-repeat padding-box;
}

.margin-bottom-15 {
    margin-bottom: 15px !important;
}

.md-booking-sidebar-tabs ul li:first-child.active {
    margin-right: -2%;
    width: 52%;
}

.md-booking-sidebar-tabs ul li.active {
    background: black 0% 0% no-repeat padding-box;
}

.md-booking-sidebar-tabs ul li {
    text-align: center;
    border-radius: 5px;
    background: rgba(70, 91, 224, 0.1);
}

.padding-0 {
    padding: 0 !important;
}

.md-booking-sidebar-tabs ul li.active a {
    color: #fff;
}

.md-booking-sidebar-tabs ul li a {
    color: black;
    width: 100%;
    line-height: 34px;
    display: inline-block;
    padding: 0px 6px;
    font-size: 12px;
}

.md-booking-sidebar-tabs ul li a .fa {
    margin-right: 5px;
}

.tab-content {
    padding-top: 0;
    padding-bottom: 0;
}

.md-booking-sidebar-tabs-content .fade.active {
    opacity: 1;
}

.tab-content>.active {
    display: block;
}

#step-1,
#step-2,
#mb-step-2,
#mb-step-1 {
    margin-bottom: 15px;
}

#step-2,
#step-3,
#mb-step-2,
#mb-step-3 {
    display: none;
}

.md-booking-sidebar-tabs ul {
    padding-left: 1rem !important;
    margin-right: -0.5rem;
    margin-bottom: -0.5rem;
    margin-left: -0.5rem;
    border-bottom: 0;
    list-style: none;
    display: flex;
}

.tab-content>.tab-pane {
    display: none;
}

.mp-profile-booking-fixed-container .form-group {
    margin-bottom: 15px;
}

.mp-profile-booking-fixed-container label {
    color: #71869A !important;
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
}

.custom-form-control {
    width: 100%;
    padding: 10px;
    line-height: 24px;
    -webkit-appearance: textfield;
}

.custom-form-control {
    display: block;
    width: 100%;
    height: 46px;
    line-height: 46px;
    padding: 0 12px !important;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #dce0e2;
    border-radius: 4px;
    box-shadow: none;
}

.select2-hidden-accessible {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

.select2.select2-container.select2-container--default {
    min-width: 100%;
}

.select2-container {
    box-sizing: border-box;
    display: inline-block;
    margin: 0;
    position: relative;
    vertical-align: middle;
}

.mp-profile-booking-fixed-container .select2-container .select2-selection--single {
    box-sizing: border-box;
    cursor: pointer;
    display: block;
    height: 37px;
    user-select: none;
    -webkit-user-select: none;
    border: 1px solid #EAF2FD;
}

.select2-container--default .select2-selection--single {
    background-color: #fff;
    border: 1px solid #aaa;
    border-radius: 4px;
}

.booking-date-selection .date-slider-list {
    text-align: center !important;
}

.mp-profile-booking-fixed-container .date-slider-list li {
    display: inline-block;
    text-align: center;
    padding: 7px 17px;
    cursor: pointer;
    font-size: 10px;
    color: #515064;
}

.date-slider-list li.booking-slider-arrow-left {
    padding: 0 !important;
    padding-left: 0px;
    position: relative;
    top: -5px;
    left: -10px;
    text-align: left !important;
}

.DisableArrow {
    opacity: 0.5;
}

.date-slider-list li .fa {
    font-size: 20px;
}

.mp-profile-booking-fixed-container .date-slider-list li:nth-last-child(4) {
    border-left: none;
}

.booking-slider-arrow-right,
.booking-slider-arrow-left {
    padding: 0 !important;
}

.date-slider-list {
    padding: 0 !important;
}

.mp-profile-booking-fixed-container .date-slider-list li {
    display: inline-block;
    text-align: center;
    padding: 7px 17px;
    cursor: pointer;
    font-size: 10px;
    color: #515064;
}

.date-slider-list li.active {
    border-bottom: 3px solid black;
    border-left: 1px solid #EEF4FE;
}

.date-slider-list li.booking-date {
    border: 1px solid #EEF4FE;
    border-left: none;
}

.medical-booking-slots-outer-wrap {
    color: gray;
    text-transform: uppercase;
    font-size: 13px !important;
    font-weight: bold;
    margin-top: 10px;
}

.available-slots {
    display: block;
    width: auto;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
    color: #90ACC5;
    text-transform: capitalize;
    font-size: 11px !important;
    font-weight: 400;
    margin-top: 10px !important;
    margin-bottom: 1px;
}

.medical-booking-time-pill-container {
    padding: 10px 0px;
    padding-bottom: 0px;
    width: calc(100% + 15px);
    margin-left: -15px;
    height: 25vh;
    overflow-x: hidden;
}

.mobile_date_slider {
    display: none !important;
}

.appointment_reservation_page {
    margin-top: 20px !important;
}

.patient_reservation .medical-booking-time-pill-container li {
    margin-bottom: 10px;
    display: inline-block;
    border: 1px solid #EAF2FD;
    border-radius: 5px;
    padding: 0px 0px;
    text-align: center;
    min-width: calc((100% / 3) - 26px);
    margin-left: 15px;
    cursor: pointer;
}

.medical-booking-time-pill-container li {
    margin-bottom: 10px;
    display: inline-block;
    border: 1px solid #EAF2FD;
    border-radius: 5px;
    padding: 0px 2px;
    text-align: center;
    min-width: calc((100% / 3) - 18px);
    margin-left: 2px;
    cursor: pointer;
}

.medical-booking-time-pill-hover {
    margin: 0px;
}

#continue_booking,
#submit_booking_btn,
#mb_continue_booking,
#mb_submit_booking_btn {
    width: 100%;
    line-height: 34px;
    background: #18DEC5 0% 0% no-repeat padding-box;
    border: 1px solid #18DEC5;
    border-radius: 5px;
    color: #fff;
    height: 37px;
    font-weight: 500;
    font-weight: 12px;
}

.booking-success-box,
.mb-booking-success-box {
    text-align: center;
}

.booking-success-box a,
.mb-booking-success-box a {
    display: inline-block;
    line-height: 40px;
    padding: 0px 20px;
    margin-top: 0;
}

.booking-success-box h3,
.mb-booking-success-box h3 {
    color: #42505D;
    font-size: 13px;
    margin-bottom: 30px;
    margin-top: 20px;
}

.booking-success-box p,
.mb-booking-success-box p {
    color: #71869A;
    font-size: 12px;
    line-height: 16px;
    margin-bottom: 50px;
}

button[disabled],
html input[disabled],
.lp-listing-leadform-inner .form-horizontal input[disabled].btn-second-hover {
    background-color: #DFEFEB !important;
    color: black !important;
    cursor: not-allowed !important;
    border-color: #DFEFEB !important;
}

#medicalpro-booking-form label {
    display: inline-block;
    max-width: 100%;
    margin-bottom: 5px;
    font-weight: 700;
}

.mp-profile-booking-fixed-container .lp-booking-section-footer {
    font-size: 12px;
    color: #5B6F81;
    line-height: 20px;
}

.medicalpro-booking-footer-view-switch {
    background: #ECEEFC 0% 0% no-repeat padding-box;
    padding: 0px 10px;
    border-radius: 4px;
}

.MedicalPro-Detail-Page {
    background: #FCFCFE;
}

.padding-top-20 {
    padding-top: 20px;
}

.max-height-1-overflow-visible {
    max-height: 1px;
    overflow: visible;
}

.mp-location-tab {
    background: #FFFFFF;
    box-shadow: 0 10px 29px #0A74F314;
    border-radius: 0 0 10px 10px;
    padding: 10px 15px;
}

.treatment-tab a {
    color: #3C4659 !important;
}

.margin-bottom-70 {
    margin-bottom: 70px;
}

.mp-profile-location {
    background: #FFFFFF;
    border: 1px solid #E6E6E9;
    border-radius: 12px;
    padding: 25px 30px;
    margin-bottom: 30px;
}

.mp-profile-location-header {
    margin-bottom: 10px;
}

.display-inline-block {
    display: inline-block;
}

.mp-profile-location-header .mp-heading img {
    margin: 0;
    margin-right: 10px;
    margin-top: -7px;
}

.display-inline-block {
    display: inline-block;
}

.mp-timings-container {
    position: relative;
}

.display-block {
    display: block;
}

.mp-timing-day-name {
    font: normal normal bold 13px/13px 'Lato', sans-serif;
    color: #71869A;
    display: inline-block;
    min-width: 60px;
}

.mp-profile-timing-single-day .mp-timing-day-timing-status {
    text-align: right;
    margin-right: 0px;
}

.mp-timing-day-timing-status {
    font: normal normal normal 12px/12px 'Lato', sans-serif;
    color: #71869A;
    margin-right: 5px;
    /* margin-left: 30px; */
    display: inline-block;
    min-width: 88px;
}

.mp-timing-day-view-all-timings {
    color: #18DEC5;
    cursor: pointer;
    margin-left: 5px;
    line-height: 21px;
}

.mp-timings-other-days-container {
    position: absolute;
    z-index: 11111;
    background: #fff;
    box-shadow: 0 10px 29px #0A74F314;
    border-radius: 0 0 10px 10px;
    padding: 10px;
    right: -20px;
    min-width: 225px;
    top: 35px;
}

.mp-timings-other-days-container .mp-timing-day-name {
    min-width: 70px;
}

.mp-timing-day-name {
    font: normal normal bold 13px/13px 'Lato', sans-serif;
    color: #71869A;
    display: inline-block;
    min-width: 60px;
}

.mp-profile-timing-single-day .mp-timing-day-timing-status {
    text-align: right;
    margin-right: 0px;
}

.mp-timing-day-timing-status.closed {
    color: #ff0000;
}

.footer-app-view-new {
    background-color: #f4f4f4;
    /* border: solid 1px #d6d6d6; */
    position: fixed;
    bottom: 0;
    width: 100%;
    min-height: 56px;
    display: none;
}

.footer-app-view-new {
    z-index: 11;
}

.footer-app-view-new .footer-center-btn {
    position: relative;
}

.center-btn-icon {
    position: absolute;
    height: 63px;
    top: 0;
    width: 130px;
    margin-top: 0;
    z-index: 10;
    text-align: center;
    margin: 0 auto;
    left: 0;
    right: 0;
    transform: translate(0, -45%);
}

.footer-app-view-new .footer-btn-left {
    float: left;
    color: #353535;
    margin-left: 15px;
}

.footer-app-view-new .footer-btn-left a,
.footer-app-view-new .footer-btn-right a {
    color: #353535;
}

.footer-app-view-new .footer-btn-left i,
.footer-app-view-new .footer-btn-right i {
    color: #7870e8;
    margin-right: 8px;
    padding: 18px 0;
}

.footer-app-view-new .footer-btn-right {
    float: right;
    color: #353535;
    margin-right: 15px;
}

.footer-app-view-new .footer-btn-left a,
.footer-app-view-new .footer-btn-right a {
    color: #353535;
}

.mp-profile-location-header .mp-heading h1 {
    font: normal normal bold 18px/22px 'Lato', sans-serif;
    color: black;
    display: inline-block;
    margin: 0;
}

.mp-profile-location-pricing {
    margin-bottom: 15px;
    display: none !important;
}

.display-flex {
    display: flex;
}

.mp-profile-location-pricing-icon img {
    margin-top: -1px;
    width: 21px;
    margin-left: -2px;
    display: block;
}

.mp-profile-location-pricing-price p {
    font: normal normal bold 14px/17px 'Lato', sans-serif;
    color: #5B6F81;
    margin: 0;
    margin-left: 5px;
}

.mp-profile-location-detail-map-container {
    margin-right: 15px;
}

.mp-profile-location-detail-map {
    min-width: 65px;
    min-height: 65px;
    background: #ddd;
    border-radius: 5px;
    max-width: 70px;
    max-height: 70px;
}

.mp-profile-location-detail-map img {
    border-radius: 5px;
}

.mp-profile-location-book {
    border: 2px solid #18DEC5;
    border-radius: 4px;
    background: transparent;
    color: #18DEC5 !important;
    outline: none;
    min-width: 165px;
    min-height: 40px;
    margin-top: 15%;
    font: normal normal bold 12px/15px 'Lato', sans-serif;
    transform: translate(0, 0);
    cursor: pointer;
    transition: 300ms ease-in-out;
}

.margin-bottom-60 {
    margin-bottom: 60px;
}

.mp-insurances-heading {
    margin-bottom: 35px;
}

.mp-insurances-heading h1 {
    font: normal normal 900 23px/28px 'Lato', sans-serif;
    color: #42505D;
    padding: 0 15px;
    margin: 0;
    margin-bottom: 40px;
}

.mp-insurances-content {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 29px #0A74F314;
}

.mp-border-radius-10 {
    border-radius: 10px;
}

.mp-insurances-content-card {
    border-bottom: 1px solid #EAF2FD;
    padding-right: 50px !important;
    padding-left: 50px !important;
    padding: 17px 50px;
    background: #FFF;
    min-height: 90px;
    position: relative;
    display: flex;
    align-items: center;
}

.content-center {
    justify-content: center;
    align-items: center;
    align-content: center;
}

.mp-insurances-content-card .content-center {
    justify-content: left;
}

.mp-insurances-content-card-icon {
    margin-right: 30px;
}

.mp-insurances-content-card-icon img {
    height: 55px;
    object-fit: scale-down;
    max-width: 85px;
    min-width: 50px;
}

.mp-insurances-content-card-detail p {
    font: normal normal bold 16px/19px 'Lato', sans-serif;
    color: #28313A;
    margin: 0;
}

.mp-services-content-single:last-child {
    margin-bottom: 0px !important;
}

.mp-services-content-single {
    margin-bottom: 15px;
    padding: 0;
}

.mp-services-heading h1 {
    padding: 0 15px;
    text-transform: capitalize;
    text-align: left;
    font: normal normal 900 23px/28px 'Lato', sans-serif;
    color: #42505D;
    margin: 0;
    margin-bottom: 40px;
}

.mp-services-content {
    background: #FFFFFF;
    box-shadow: 0 10px 29px #0A74F314;
    border-radius: 10px;
    padding: 11px 15px;
    padding-bottom: 35px;
}

.mp-services-content-single-name span {
    font: normal normal bold 14px/22px 'Lato', sans-serif;
    color: #71869A;
}

.mp-services-content-single-name span {
    margin-bottom: 15px;
    position: relative;
    line-height: 18px !important;
    display: inline-block;
}

.mp-services-content-single-name span:before {
    font-family: FontAwesome;
    content: "\f00c";
    display: inline-block;
    vertical-align: middle;
    width: 18px;
    height: 18px;
    border-radius: 100%;
    line-height: 18px;
    background: black;
    text-align: center;
    color: #fff;
    margin-right: 15px;
    font-size: 9px;
}

.mp-faq-heading {
    margin-bottom: 35px;
}

.mp-faq-heading h1 {
    font: normal normal 900 23px/28px 'Lato', sans-serif;
    color: #42505D;
    padding: 0 15px;
    margin: 0;
    margin-bottom: 30px;
}

.mp-faq-content-container {
    background: #E6E6E926;
    border: 1px solid #E6E6E9;
    border-radius: 12px;
    padding: 50px 30px;
}

.mp-faq-content-qa {
    max-height: 400px;
    overflow-x: hidden;
    overflow-y: auto;
}

.mp-faq-content-qa-single-q {
    margin-bottom: 15px;
}

.mp-faq-content-qa-single-a-quote,
.mp-faq-content-qa-single-q-quote {
    margin-right: 22px;
}

.mp-faq-content-qa-single-a-quote p,
.mp-faq-content-qa-single-q-quote p {
    margin: 0;
    font: normal normal bold 16px/19px 'Lato', sans-serif;
    color: #42505D;
}

.mp-faq-content-qa-single-q-text p {
    font: normal normal bold 16px/19px 'Lato', sans-serif;
    color: #42505D;
    margin: 0;
}

.mp-faq-content-qa-single-a-text {
    max-width: 85%;
}

.mp-faq-content-qa-single-a-text p {
    font: normal normal normal 16px/19px 'Lato', sans-serif;
    color: #71869A;
    margin: 0;
}

.mp-experiences-heading {
    margin-bottom: 35px;
}

.mp-experiences-heading h1 {
    font: normal normal 900 23px/28px 'Lato', sans-serif;
    color: #42505D;
    padding: 0 15px;
    margin: 0;
    margin-bottom: 30px;
}

.mp-experiences-content-container {
    background: #FFFFFF;
    box-shadow: 0 10px 29px #0A74F314;
    border-radius: 10px;
    padding: 25px 30px;
}

.mp-experiences-content-overall {
    background: #F9F9F9;
    border-radius: 5px;
    text-align: center;
    padding-top: 30px;
    padding-bottom: 30px;
    margin-bottom: 15px;
    max-height: 152px;
    min-height: 152px;
}

.mp-experiences-content-feedback {
    /* background: #FED341; */
    /* box-shadow: 0 10px 29px #FED34157; */
    background: #ffedb0;
    box-shadow: 0 10px 29px #ffedb055;
    border-radius: 10px;
    text-align: center;
    padding-top: 30px;
    padding-bottom: 30px;
    margin-bottom: 15px;
}

.mp-experiences-content-overall-heading p {
    font: normal normal 900 20px/24px 'Lato', sans-serif;
    color: #28313A;
    margin: 0;
    margin-bottom: 10px;
}

.mp-experiences-content-overall-content {
    max-width: 70%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    margin: 0 auto;
    display: inline-block;
}

.mp-experiences-content-overall-content-profile-rating.pull-left {
    display: none;
}

.mp-experiences-content-overall-content-profile-rating .rate {
    background: transparent !important;
    display: inherit;
    padding: 0px;
    color: #42505D !important;
    line-height: inherit;
    top: 0px;
}

.mp-experiences-content-overall-content-profile-rating p {
    font: normal normal 900 44px/52px 'Lato', sans-serif;
    color: #42505D;
    margin-right: 15px;
}

.mp-experiences-content-overall-content-profile-rating-stars,
.mp-experiences-content-overall-content-profile-rating-detail {
    margin-left: 0px;
}

.md-listing-stars .lp-rating-num,
.md-rating-stars-outer {
    float: none !important;
}

.md-listing-stars .lp-rating-num,
.md-rating-stars-outer {
    display: inline-block;
    vertical-align: middle;
    float: left;
}

.mp-experiences-content-overall-content-profile-rating-stars,
.mp-experiences-content-overall-content-profile-rating-detail {
    margin-left: 0px;
}

.md-rating-stars-outer .lp-star-box.filled.level4 i {
    color: rgb(115 207 66) !important;
}

.mp-experiences-content-overall-content-profile-rating-stars i {
    color: #42505D;
    margin-right: 10px;
}

.mp-experiences-content-overall-content-profile-rating-detail p {
    font: normal normal normal 16px/19px 'Lato', sans-serif;
    color: #42505D;
    margin: 0;
    margin-top: 5px;
}

.mp-experiences-content-feedback-heading p {
    font: normal normal 900 20px/24px 'Lato', sans-serif;
    color: #28313A;
    margin: 0;
    margin-bottom: 10px;
}

.mp-experiences-content-feedback-subtext p {
    font: normal normal normal 16px/19px 'Lato', sans-serif;
    color: #333333;
    margin: 0;
    margin-bottom: 15px;
}

.mp-experiences-content-feedback-stars svg:first-child {
    margin-right: 10px;
    margin-left: 0;
}

.mp-experiences-content-feedback-stars svg {
    margin-right: 10px;
    margin-left: 10px;
    fill: #fff;
    cursor: pointer;
}

#mp-review-tab {
    margin-top: 80px;
    background: #FFFFFF;
    box-shadow: 0 10px 29px #0A74F314;
    border-radius: 10px;
    margin-bottom: 100px;
    padding: 50px 75px;
    /*display: none; */
}

.review-emoticons {
    display: inline-block;
    height: 35px;
    margin-left: -2px;
    margin-top: -2px;
    position: relative;
    vertical-align: top;
    width: 35px;
}

.review-emoticons .review {
    height: 100%;
    left: 0;
    opacity: 0;
    position: absolute;
    text-align: center;
    top: 0;
    visibility: hidden;
    width: 100%;
}

.mp-add-new-review .submit-images {
    margin-top: 0px;
}

.submit-images {
    /*float: right;*/
    margin-top: 41px;
    display: none !important;
    position: relative;
    /*text-align: right;*/
}

.mp-add-new-review-form-fields label {
    font: normal normal bold 12px/15px 'Lato', sans-serif;
    color: #42505D;
    margin-left: 10px;
    margin-bottom: 10px;
    position: relative;
}

.mp-add-new-review-form-fields input,
.mp-add-new-review-form-fields textarea {
    border: 1px solid #EAF2FD;
    border-radius: 3px;
}

.form-group {
    margin-bottom: 15px;
}

.lp-requires-filed {
    color: #d10000 !important;
    font-size: 14px;
    margin-left: 3px;
    display: inline-block;
    line-height: unset;
    vertical-align: middle;
}

.md-rec {
    font: normal normal bold 12px/15px 'Lato', sans-serif;
    color: #42505D;
    margin-left: 10px;
    margin-bottom: 10px;
    position: relative;
}

.margin-top-20 {
    margin-top: 20px;
}

textarea.form-control {
    height: auto !important;
}

.mp-add-new-review-form-submit-btn {
    font: normal normal bold 11px/13px 'Lato', sans-serif;
    color: #FFFFFF !important;
    background: #18DEC5 !important;
    border: 1px solid #18DEC5 !important;
    border-radius: 4px;
    outline: none;
    padding: 10px 70px !important;
}

.lp-review-btn {
    padding: 11px 28px 11px 28px !important;
    font-weight: 700;
    font-family: 'quicksand';
    border-radius: 5px;
    color: #fff;
    text-align: center;
    cursor: pointer;
    font-size: 15px;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.submit-images:hover>a.browse-imgs {
    background-color: #363F48;
}

.submit-images:hover>a.browse-imgs {
    background-color: #363f48;
    color: #fff;
}

.form-group.submit-images>input[type="file"] {
    cursor: pointer;
    height: 30px;
    opacity: 0;
    position: absolute;
    right: 0;
    top: -2px;
    width: 65px;
}

input[type=file] {
    display: block;
}

a.browse-imgs {
    border: none;
    padding: 0 25px;
    line-height: 37px;
    margin-left: 8px;
    display: inline-block;
}

.margin-bottom-40 {
    margin-bottom: 40px !important;
}

a.browse-imgs {
    background-color: #acacac;
    /*background-color: transparent;*/
    /*border: 1px solid #363f48;*/
    border-radius: 3px;
    color: #363f48;
    font-weight: 500;
    /*padding: 5px 10px;*/
    color: white !important;
}

.mp-add-new-review-heading {
    margin-bottom: 30px;
}

.mp-add-new-review-heading p {
    font: normal normal bold 16px/19px 'Lato', sans-serif;
    color: #42505D;
    margin: 0;
}

.mp-review-form-average-rate-container {
    vertical-align: middle;
    align-items: center;
    align-content: center;
    display: flex;
    margin-bottom: 38px;
}

.mp-review-form-average-rate {
    margin-right: 15px;
}

#rewies_form h5 {
    font-size: 13px;
}

.mp-experiences-content-overall-content-profile-rating-stars {
    display: flex;
}

.mp-review-form-average-rate-container .mp-review-form-average-rate h1 {
    text-align: left;
    font: normal normal 900 44px/52px 'Lato', sans-serif;
    color: #42505D;
    margin: 0;
}

.mp-experiences-content-overall-content-profile-rating-stars,
.mp-experiences-content-overall-content-profile-rating-detail {
    margin-left: 0px;
}

.mp-experiences-content-overall-content-profile-rating-stars i {
    color: #42505D;
    margin-right: 10px;
}

@media only screen and (min-width: 600px) {
    .mp-timings {
        max-height: 30px;
        overflow: visible;
    }

    .mp-insurances-content-card:nth-child(odd) {
        border-right: 1px solid #EAF2FD;
    }

    .mp-p-0-md {
        padding: 0 !important;
    }
}

@media only screen and (min-width: 600px) {
    .mp-p-0-md {
        padding: 0 !important;
    }
}

.mp-profile-content-tabs {
    position: sticky;
    top: 4.7rem;
    background-color: white;
    z-index: 1;
}

@media only screen and (min-width: 992px) {
    .mp-profile-sidebar-fixed {
        margin-left: 15px;
        /*position: sticky;*/
        /*top: 4.7rem;*/
        /*background-color: white;*/
        /*z-index: 1;*/
    }
}

/*--doctor profile page styling end ---*/

















.cz-sidebar,
.cz-sidebar-static {
    width: 100%;
    max-width: 24rem;
    background-color: #fff;
}

.cz-sidebar-fixed .cz-sidebar-body {
    height: 100%;
    overflow-y: auto;
}

.filter-border-left {
    border-left: 1px solid rgba(0, 0, 0, 0.2);
}

.cz-sidebar.show {
    left: 0;
    box-shadow: 1.375rem 0 2rem -.75rem rgba(43, 52, 69, .15) !important;
}

.close:hover {
    opacity: 1 !important;
    color: #ffffff;
}

.cz-sidebar .close,
.cz-sidebar-static .close {
    font-size: 1.75rem;
}

.cz-sidebar-fixed .close {
    height: 3.5rem;
    margin-top: -13px;
}

.cz-sidebar-fixed .close {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3.5rem;
    padding: 1rem 1.875rem;
    border-bottom: 1px solid #e3e9ef;
    background-color: #f6f9fc;
    float: none;
}

.bg-seha {
    background-color: black !important;
}

.cz-sidebar-fixed .cz-sidebar-inner {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.tab-content>.active {
    display: block;
}

.cz-sidebar-body .sidebar-nav {
    /*margin-right: -1.875rem;*/
    /*margin-left: -1.875rem;*/
}

.fade {
    transition: opacity 0.15s linear;
}

.accordion>.card {
    overflow: hidden;
}

.widget-categories .card,
.widget-categories .card-header {
    border: 0;
    border-radius: 0;
}

.cz-sidebar-body .card {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 0.0625rem solid rgba(0, 0, 0, 0.125);
    /*border-radius: 4px;*/
}

.accordion>.card>.card-header {
    border-radius: 0;
    margin-bottom: -0.0625rem;
}

.accordion .card-header {
    padding: 0;
    background-color: transparent;
}

.list-unstyled {
    padding-left: 0;
    list-style: none;
}

.text-color-half-gray {
    color: #000000B2 !important;
}

.filter-accordion {
    border: none;
}

.filter-accordion-header {
    cursor: pointer;
    border-bottom: none;
}

.filter-accordion-header .accicon {
    float: right;
    font-size: 10px;
    margin-right: 28px;
}

.side-nav-btn {
    padding-bottom: 1.625rem;
}

.side-nav-btn {
    bottom: 0;
    padding-bottom: 3.625rem;
    display: flex;
    padding-top: 1.25rem;
    gap: 0.6875rem;
    justify-content: center;
    background: #FFFFFF;
    z-index: 1;
    box-shadow: 0px -4px 6px -3px rgba(0, 0, 0, 0.1), 0px -2px 4px -2px rgba(0, 0, 0, 0.06);
}

.clear-btn {
    background: #FFFFFF;
    border: 1px solid #004E70;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.25);
    border-radius: 1.125rem;
    height: 1.875rem;
    padding-block: 1px;
    font-size: 16px;
    padding-inline: 26px;
    color: #004E70;
}

.apply-btn {
    background: #004E70;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.25) !important;
    border-radius: 1.125rem;
    color: white !important;
    height: 1.875rem;
    padding-block: 1px;
    font-size: 16px;
    padding-inline: 26px;
}

.close {
    float: right;
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 0.0625rem 0 #fff;
    opacity: 1;
}

.modal {
    --bs-border-color: #dee2e6;
    --bs-border-color-translucent: rgba(0, 0, 0, 0.175);

    --bs-modal-zindex: 1055;
    --bs-modal-width: 500px;
    --bs-modal-padding: 1rem;
    --bs-modal-margin: 0.5rem;
    --bs-modal-color: ;
    --bs-modal-bg: #fff;
    --bs-modal-border-color: var(--bs-border-color-translucent);
    --bs-modal-border-width: 1px;
    --bs-modal-border-radius: 0.5rem;
    --bs-modal-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    --bs-modal-inner-border-radius: calc(0.5rem - 1px);
    --bs-modal-header-padding-x: 1rem;
    --bs-modal-header-padding-y: 1rem;
    --bs-modal-header-padding: 1rem 1rem;
    --bs-modal-header-border-color: var(--bs-border-color);
    --bs-modal-header-border-width: 1px;
    --bs-modal-title-line-height: 1.5;
    --bs-modal-footer-gap: 0.5rem;
    --bs-modal-footer-bg: ;
    --bs-modal-footer-border-color: var(--bs-border-color);
    --bs-modal-footer-border-width: 1px;

    position: fixed;
    top: 0;
    left: 0;
    z-index: var(--bs-modal-zindex);
    display: none;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    outline: 0;
}

.phy-card-min-width {
    min-width: 348px;
}

.card-body {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    min-height: 0.0625rem;
    padding: 20px;
}

.font-weight-medium {
    font-weight: 500 !important;
}

.modal-lg,
.modal-xl {
    max-width: 600px;
}

.apply-job-form {
    background-image: url(https://jobvacancies.ae/themes/jobbox/imgs/template/bg-1.svg);
    background-repeat: no-repeat;
}

.modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    color: var(--bs-modal-color);
    pointer-events: auto;
    background-color: var(--bs-modal-bg);
    background-clip: padding-box;
    border: var(--bs-modal-border-width) solid var(--bs-modal-border-color);
    border-radius: var(--bs-modal-border-radius);
    outline: 0;
}

.modal-content .btn-close {
    position: absolute;
    right: 15px;
    top: 15px;
    z-index: 2;
}

.btn-close {
    box-sizing: content-box;
    width: 1em;
    height: 1em;
    padding: 0.25em 0.25em;
    color: #000;
    background: transparent url(data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e) center/1em auto no-repeat;
    border: 0;
    border-radius: 0.375rem;
    opacity: .5;
}

.card-grid-2 {
    background: white;
    border: 1px solid #E0E6F7;
    border-radius: 8px;
    margin-bottom: 24px;
    overflow: hidden;
    position: relative;
}

.phy-card {
    border-radius: 0.4375rem;
    border: 0.0625rem solid #d3d3d3;
    cursor: pointer;
}

.mr-4,
.mx-4 {
    margin-right: 24px !important;
}

.pl-2,
.px-2 {
    padding-left: 8px !important;
}

.hover-up,
.hover-up:hover {
    transition: all .25s cubic-bezier(.02, .01, .47, 1);
}

.card-briefcase {
    /*background: url(https://jobvacancies.ae/themes/jobbox/imgs/template/icons/briefcase.svg) no-repeat 0 4px;*/
}

.card-briefcase,
.card-time {
    color: #777f87;
    display: inline-block;
    font-size: 12px;
    padding: 0 15px;
}

.job_spl {
    background-color: #eff3fc;
    border-radius: 5px;
    color: #4f5e64 !important;
    font-size: 12px;
    padding: 7px 10px;
}

.card-time {
    /*background: url(https://jobvacancies.ae/themes/jobbox/imgs/template/icons/time.svg) no-repeat 0 3px;*/
}

.location-small {
    /*background: url(https://jobvacancies.ae/themes/jobbox/imgs/template/icons/location.svg) no-repeat 0 3px;*/
    color: #777f87;
    display: inline-block;
    font-size: 12px;
    padding: 0 0 0 20px;
}

.doc-card-shadow {
    box-shadow: -2px 5px 8px 4px #00000014;
}

.breadcrumb {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    list-style: none;
    background-color: #e9ecef;
    border-radius: 4px;
}

.breadcrumb-item {
    display: -ms-flexbox;
    display: flex;
}

.font-size-md {
    font-size: 0.9375rem !important;
}

.mb-2,
.my-2 {
    margin-bottom: 8px !important;
}

.breadcrumb-item {
    font-size: .8125rem;
    font-weight: 400;
}

.breadcrumb-item>a {
    transition: color .25s ease-in-out, background-color .25s ease-in-out, box-shadow .25s ease-in-out, border-color .25s ease-in-out;
    color: #4b566b;
}

.text-accent {
    color: #014e78 !important;
}

.font-size-xs {
    font-size: 0.75rem !important;
}

.font-size-sm {
    font-size: 0.875rem !important;
}


.mp-bottom-search-style {
    position: relative;
    z-index: 999;
    bottom: 190px;
}

.pos-relative .container {
    position: relative;
}

.mp-bottom-search-container {
    background: #FFFFFF 0 0 no-repeat padding-box;
    /*box-shadow: 0 10px 40px #56A59A47;*/
    border-radius: 10px;
    padding: 10px 15px;
    /*margin-bottom: -28px;*/
}

.mp-bottom-search-style .mp-bottom-search-container .lp-search-bar {
    padding: 0;
    margin: 0;
}

.lp-search-bar {
    display: block;
    padding: 15px;
    background-color: rgba(255, 255, 255, .2);
    border-radius: 5px;
    margin-top: 30px;
    padding-bottom: 0;
}

.mp-bottom-search-style .mp-bottom-search-container .lp-search-bar form {
    margin: 0;
}

form {
    display: block;
    margin-top: 0em;
}

.mp-bottom-search-style .mp-bottom-search-container .lp-search-bar .lp-suggested-search {
    padding-right: 15px;
}

.mp-bottom-search-style .mp-bottom-search-container .lp-search-bar .lp-suggested-search,
.mp-bottom-search-style .mp-bottom-search-container .lp-search-bar .lp-location-search-container {
    width: 40%;
}

.lp-search-bar .form-group.lp-suggested-search {
    position: relative;
}

.form-inline .form-group.lp-suggested-search {
    margin-right: 0;
}

.lp-search-bar .form-group.lp-suggested-search {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

.lp-search-bar .form-group.lp-suggested-search {
    border-radius: 0;
}

.lp-search-bar .lp-suggested-search,
.lp-header-search .lp-search-form-where,
.lp-header-search .lp-search-form-submit {
    display: inline-block;
    margin-left: 0;
}

.lp-header-search-form .lp-suggested-search {
    width: 485px;
}

.form-inline .form-group {
    margin-right: 11px;
}

.input-group-addon {
    border-width: 1px;
    border-color: transparent !important;
    border-style: solid;
    border-right: 0;
}

.input-group-addon {
    background-color: #f4f4f4;
    padding: 12px 16px;
}

.lp-border {
    border: 1px solid #e3e3e3;
}

.input-group-addon {
    padding: 12px 12px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    color: #555;
    text-align: center;
    background-color: #eee;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.input-group-addon,
.input-group-btn {
    width: 1%;
    white-space: nowrap;
    vertical-align: middle;
}

.input-group .form-control,
.input-group-addon,
.input-group-btn {
    display: table-cell;
}

.lp-search-bar .lp-suggested-search .input-group-addon.lp-border,
.form-group.lp-location-search .lp-where {
    z-index: 10;
    line-height: 46px;
    height: 46px;
    padding: 0 10px;
}

.lp-search-bar .lp-suggested-search .input-group-addon.lp-border {
    background-color: transparent;
    color: #333;
    float: left;
    font-weight: 600;
    height: 46px;
    left: 0;
    line-height: 43px;
    /*padding: 0 0 0 15px;*/
    position: absolute;
    top: 0;
    width: 55px;
    /*z-index: 0;*/
}

.input-group-addon-what-icon {
    background-color: transparent;
    color: #f189a8;
    float: left;
    font-size: 18px;
    font-weight: 600;
    height: 53px;
    right: 0;
    left: auto;
    line-height: 53px;
    padding: 0 0 0 0;
    position: absolute;
    top: 0;
    width: auto;
    z-index: 2;
    padding-right: 10px;
    display: none;
}

.input-group .form-control:first-child,
.input-group-addon:first-child,
.input-group-btn:first-child>.btn,
.input-group-btn:first-child>.btn-group>.btn,
.input-group-btn:first-child>.dropdown-toggle,
.input-group-btn:last-child>.btn-group:not(:last-child)>.btn,
.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle) {
    border-radius: 0 !important;
}

.input-group-addon:first-child {
    border-right: 0;
    width: 15% !important;
}

.mp-bottom-search-style .mp-bottom-search-container .lp-search-bar .lp-suggested-search .lp-search-form-what {
    background: #EAF2FD44 0 0 no-repeat padding-box;
    border: 1px solid #EAF2FD44;
    border-radius: 5px;
    padding: 0;
    overflow: hidden;
}

.mp-bottom-search-style .mp-bottom-search-container .lp-search-bar .lp-suggested-search {
    padding-right: 15px;
}

.mp-bottom-search-style .mp-bottom-search-container .lp-search-bar .lp-suggested-search,
.mp-bottom-search-style .mp-bottom-search-container .lp-search-bar .lp-location-search-container {
    width: 40%;
}

.lp-header-search-form .lp-suggested-search input {
    border-right: none !important;
}

.mp-bottom-search-style .mp-bottom-search-container .lp-search-bar .lp-suggested-search input {
    width: 100%;
    background: transparent;
    padding: 0;
    border: none;
    padding-left: 55px;
    clear: both;
}

.what-placeholder::after {
    color: #000;
    content: attr(data-holder);
    font-size: 13px;
    left: 55px;
    opacity: .3;
    pointer-events: none;
    position: absolute;
    top: 13px;
    z-index: 999999;
}

.form-group.lp-suggested-search input {
    border-right: 1px solid #ddd !important;
}

.lp-search-bar .lp-suggested-search,
.lp-header-search .lp-search-form-where,
.lp-header-search .lp-search-form-submit {
    display: inline-block;
    margin-left: 0;
}

.lp-header-search-form .lp-suggested-search {
    width: 485px;
}

form i.cross-search-q {
    position: absolute;
    right: 8px;
    top: 15px;
    cursor: pointer;
    z-index: 99;
    color: #DDD;
    font-size: 15px;
    display: none;
}

#review_slider {
    display: flex;
    overflow-x: scroll;
    background-color: white;
}

.review-card {
    position: relative;
    width: 97%;
    background: white;
    filter: drop-shadow(0rem 0.125rem 0.125rem rgba(0, 0, 0, 0.1));

    border: none;
    margin: 10px;
    padding: 30px 20px;
    background: #FFFFFF;
    box-shadow: 0 10px 29px white;
    border-top: solid 1px lightgray;
    border-bottom: solid 1px lightgray;
}

.review-title {
    color: #747B93;
    font-size: 20px;
    font-weight: bold;
}

.review-msg {
    color: #747B93;
}

img.loadinerSearch {
    height: 42px;
    position: absolute;
    left: 81px;
    /* top: 8px; */
    width: 42px;
    z-index: 99;
    display: none;
}

.lp-section-content-container {
    padding-top: 60px;
    padding-bottom: 60px;
}

.about-box {
    margin-bottom: 30px;
}

.about-box-style3 .about-box-inner {
    padding: 15px !important;
    background: #fff;
    box-shadow: 0px 10px 29px #0A74F314;
    border-radius: 15px;
    transition: 350ms ease-in-out;
}

.about-box-slide {
    position: relative;
}

.about-box-style3 .about-box-icon-style2 {
    border-radius: 10px;
    border: 0px;
    width: 70px;
    height: 70px;
    line-height: 70px;
    font-size: 20px;
    margin-left: -15px;
    display: inline-block;
    text-align: center;
    position: relative;
    margin-bottom: 0px;
    vertical-align: middle;
    margin-right: 20px;
    margin-top: 0px;
}

.md-fact-icone,
.listingpro-columns-icons,
.about-box-style3 .about-box-icon-style2 {
    display: inline-flex !important;
    align-items: center !important;
    vertical-align: middle !important;
    justify-content: center !important;
}

.about-box-icon-style2 img,
.listingpro-columns-icons img,
.md-fact-icone img {
    width: 26px;
}

.listingpro-columns-style2-content {
    width: calc(100% - 98px);
    display: inline-block;
    vertical-align: middle;
    padding: 0px !important;
    background: #fff;
    border-radius: 15px;
}

.listingpro-columns-style2-content h3,
.about-box-title-style2 h4 {
    margin-top: 0px;
    color: #28313A;
    font-size: 16px;
    text-transform: capitalize;
    font-weight: 700;
}

.listingpro-columns-style2-content .about-box-description-style2 p {
    font-size: 13px;
    line-height: 18px;
    color: #90ACC5;
}

.sidebar-filters-wrap {
    border-right: 1px solid #F0F5FD !important;
    background: #fff !important;
}

.sidebar-filters-wrap {
    width: 290px;
}

.sidebar-filters-wrap {
    -webkit-transition: width .5s;
    transition: width .5s;
    width: 329px;
    /* margin: 0; */
    /*height: 100vh;*/
    left: 0;
    float: left;
    /* padding: 0 15px; */
    /*overflow-y: scroll;*/
    background-color: #fff;
    letter-spacing: 0;
}

.post-with-map-container-right .search-row {
    padding: 0;
}

.lp-filter-top-section {
    margin-top: 20px;
    margin-bottom: 0px;
    padding: 0 15px;
}

.lp-filter-top-section ul {
    padding-left: 5px !important;
}

.lp-filter-top-section li {
    display: inline-block;
}

.md-listing-filter .lp-filter-top-section li h3 {
    font-size: 18px;
    color: #42505D;
}

.lp-filter-top-section li h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

.pull-right {
    float: right !important;
}

.md-rest-filter a {
    font: normal normal 400 12px/12px Lato !important;
    color: #7D7D7D !important;
}

.md-listing-filter form#searchform {
    margin: 0px 20px;
}

form#searchform {
    padding: 0;
}

form#searchform {
    z-index: 999;
}

form#searchform {
    position: relative;
    z-index: 1;
}

.post-with-map-container-right .search-row .lp-filter-inner {
    border-top: 0 solid #dedede !important;
    border-bottom: 0 solid #dedede !important;
    padding-top: 0 !important;
}

.search-row .lp-filter-inner,
.search-row .lp-features-filter {
    background-color: transparent;
    border: medium none;
    box-shadow: none;
    float: left;
    padding-top: 0;
    width: 100%;
    border-radius: 0;
}

.post-with-map-container-right .search-row .lp-filter-inner {
    padding: 10px 0 !important;
    border-top: 1px solid #dedede !important;
    border-bottom: 1px solid #dedede !important;
}

.md-listing-filter .filters-section-wrap:first-child {
    padding-top: 10px;
}

.filters-section-wrap .filters-label,
.md-sidebar-filters-wrap .lp_more_filter_data_section h3,
.mp-tax-filter-check-title {
    text-transform: capitalize;
    font-size: 14px;
    color: #42505D !important;
}

.filters-label {
    display: block;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    color: #aaa9a9 !important;
    margin-bottom: 15px;
}

.search-row .form-inline .form-group:nth-child(2) {
    padding-right: 0;
}

.post-with-map-container-right .search-row .form-inline .form-group {
    margin-bottom: 5px;
}

.md-sidebar-filters-wrap .filters-section-wrap .lp-search-cats-filter-dropdown {
    border: 1px solid rgba(144, 172, 197, .3);
}

.lp-search-cats-filter-dropdown {
    border: 1px solid #eaeaea;
    width: calc(100% - 1px) !important;
}

.search-row .lp-search-cats-filter-dropdown .input-group {
    background-color: #f8f8f8;
}

.sidebar-filters-wrap .form-inline .input-group {
    border: 0 solid #eaeaea !important;
}

.search-row .form-inline .input-group {
    margin-right: 0;
    border: 1px solid #eaeaea;
    border-radius: 3px;
}

.form-inline .input-group {
    width: 100% !important;
}

.lp-search-cats-filter-dropdown .input-group-addon {
    width: 40px;
    background-color: #fff;
}

.post-with-map-container-right .form-inline .input-group .input-group-addon {
    width: 0;
    padding-left: 12px;
}

.input-group-addon:first-child {
    border-radius: 3px !important;
}

.md-sidebar-filters-wrap #searchform .chosen-container-single .chosen-single span,
.md-sidebar-filters-wrap .input-group-addon i {
    color: #90ACC5;
}

.tag-select-four {
    width: 189px;
}

select {
    outline: none !important;
}

.search-row #searchform .lp-search-cats-filter-dropdown .chosen-container.chosen-container-single.chosen-container-single-nosearch {
    width: 85.3% !important;
}

.search-row #searchform .chosen-container.chosen-container-single.chosen-container-single-nosearch {
    border-radius: 0 !important;
}

.search-row #searchform .chosen-container.chosen-container-single.chosen-container-single-nosearch {
    height: 35px;
    min-width: 0;
    width: 160px !important;
}

.header-filter {
    width: 56%;
    margin: 0 auto;
}

.lp-menu-bar .fullwidth-header .header-filter .ui-widget.border-dropdown,
.chosen-container.chosen-container-single.chosen-container-single-nosearch {
    height: 38px !important;
}

.chosen-container.chosen-container-single.chosen-container-single-nosearch {
    float: left;
    height: 46px;
    min-width: 100%;
    width: auto !important;
}

.chosen-container {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.post-with-map-container-right #searchform .chosen-container-single .chosen-single {
    min-height: 35px !important;
    border-radius: 0 !important;
}

.post-with-map-container-right #searchform .chosen-container-single .chosen-single,
.fullwidth-header .header-filter .chosen-container-single .chosen-single {
    padding-right: 8px;
}

.post-with-map-container-right #searchform .chosen-container-single .chosen-single {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
    color: #9f9f9f;
    height: 35px;
    line-height: 35px;
}

.post-with-map-container-right .chosen-container-single .chosen-single {
    background-color: #fff;
}

.chosen-container-single .chosen-single {
    border: none;
}

.chosen-container-single .chosen-single {
    position: relative;
    display: block;
    overflow: hidden;
    padding: 0 0 0 8px;
    height: 40px;
    border: 1px solid #E3E3E3;
    border-radius: 5px;
    background-color: #fff;
    color: #444;
    text-decoration: none;
    white-space: nowrap;
    line-height: 40px;
}

.md-sidebar-filters-wrap #searchform .chosen-container-single .chosen-single span,
.md-sidebar-filters-wrap .input-group-addon i {
    color: #90ACC5;
}

.post-with-map-container-right #searchform .chosen-container-single .chosen-single span {
    line-height: 36px;
}

.post-with-map-container-right #searchform .chosen-container-single .chosen-single span {
    padding-left: 0;
}

.search-row .chosen-container-single .chosen-single span,
.listing-sidebar-left .chosen-container-single .chosen-single span {
    margin-right: 0;
}

.chosen-container-single .chosen-single span {
    display: block;
    overflow: hidden;
    margin-right: 26px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.chosen-container-single .chosen-single div {
    display: none;
}

.chosen-container-single .chosen-single div {
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    width: 18px;
    height: 100%;
}

.chosen-container-single .chosen-single div b {
    display: block;
    width: 100%;
    height: 100%;
}

.search-row .chosen-container .chosen-drop {
    box-shadow: 0 2px 2px rgba(0, 0, 0, .3);
}

.chosen-container-single .chosen-drop {
    margin-top: -1px;
    border-radius: 0 0 4px 4px;
    background-clip: padding-box;
}

.chosen-container .chosen-drop {
    position: absolute;
    top: 100%;
    left: -9999px;
    z-index: 1010;
    width: 100%;
    border-top: 0;
    background: #fff;
}

.chosen-container-single.chosen-container-single-nosearch .chosen-search {
    position: absolute;
    left: -9999px;
}

.chosen-container-single .chosen-search {
    position: relative;
    z-index: 1010;
    margin: 0;
    padding: 3px 4px;
    white-space: nowrap;
}

.chosen-container-single .chosen-search input[type="text"] {
    margin: 1px 0;
    padding: 4px 20px 4px 5px;
    width: 100%;
    height: auto;
    outline: 0;
    border: 1px solid #aaa;
    font-size: 1em;
    font-family: sans-serif;
    line-height: normal;
    border-radius: 0;
}

.chosen-container .chosen-results {
    text-align: left;
}

.chosen-container .chosen-results {
    padding: 0 !important;
    margin: 0 !important;
}

.chosen-container .chosen-results {
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    transition: all .2s ease;
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
    margin: 0 4px 4px 0;
    padding: 0 0 0 4px;
    max-height: 280px;
    -webkit-overflow-scrolling: touch;
}

.post-with-map-container-right .search-row #searchform .chosen-container .chosen-results li.active-result {
    font-size: 13px;
}

.search-row .form-inline .form-group:nth-child(2) ul li {
    margin-right: 4px;
}

.chosen-container .chosen-results li.active-result {
    display: list-item;
    cursor: pointer;
}

.chosen-container .chosen-results li {
    background-color: #fff;
    cursor: pointer;
    display: block;
    padding: 10px 20px;
    border-top: 0;
    color: #000;
    border-bottom: 1px solid #f9f9f9;
}

.filters-section-wrap {
    padding: 20px 0px;
    border-bottom: solid 1px #EAF2FD;
}

.mp_date_filter .form-group {
    display: block;
    width: 100%;
    margin: 0 !important;
}

.search-row .form-inline .form-group:nth-child(2) {
    padding-right: 0;
}

.mp_date_filter #mp_date_filter {
    width: 100%;
    display: block;
    border: 1px solid #dce6f0;
    background: rgba(234, 242, 253, .3);
    border-radius: 5px;
    padding: 10px;
    position: relative;
    color: #90ACC5;
}

#mp_date_filter_reset {
    display: none;
    font-size: 12px;
    margin: 2px 0 0 auto;
    color: #42505D99;
    letter-spacing: 0.5px;
    cursor: pointer;
    width: max-content;
}

.sidebar-filters .md-listing-filter .filters-section-wrap {
    padding: 20px 0px;
    border-bottom: solid 1px #EAF2FD;
}

.search-filters>ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.search-row .form-inline .form-group:nth-child(2) ul li {
    margin-right: 4px;
}

.sort-by-section-wrap,
.location-section-wrap {
    display: none;
}

.sidebar-filters .filters-section-wrap.sort-by-section-wrap ul li {
    position: relative;
}

.sort-by-section-wrap ul li {
    width: 48% !important;
    margin-bottom: 5px;
    text-align: center;
}

.search-filters>ul>li {
    float: left;
    margin-right: 8px;
}

li.lp-tooltip-outer {
    cursor: pointer;
}

.md-sidebar-filters-wrap .search-filters>ul>li>a {
    text-transform: capitalize;
    font-size: 12px;
    color: #90ACC5 !important;
    font-weight: 400;
    background: rgba(234, 242, 253, .3);
    border: 1px solid rgba(144, 172, 197, .3);
}

.sidebar-filters .filters-section-wrap.sort-by-section-wrap ul li a {
    background-color: #fff;
    padding-left: 0;
    padding-right: 0;
}

.lp-tooltip-div,
.lp-tooltip-div-hidden {
    top: 100% !important;
    transform: translateY(-100%);
}

.search-filters>ul>li>a {
    background-color: #f8f8f8;
    border: 1px solid #eaeaea;
    border-radius: 3px;
    color: #9f9f9f;
    float: left;
    font-size: 13px;
    font-weight: 500;
    line-height: 27px;
    padding: 3px 15px;
    width: 100%;
}

.lp-tooltip-div {
    opacity: 0;
    visibility: hidden;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: absolute;
    top: 140%;
    -moz-box-shadow: rgba(0, 0, 0, .15) 0 0 10px 0;
    -webkit-box-shadow: rgba(0, 0, 0, .15) 0 0 10px 0;
    box-shadow: rgba(0, 0, 0, .15) 0 0 10px 0;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    background-color: #fff;
    border: 1px solid #c7cdcf;
    font-size: 11px;
}

.lp-tooltip-div>.lp-tooltip-arrow {
    margin-left: 6px;
    top: -18px;
    border-width: 9px;
}

.lp-tooltip-div>.lp-tooltip-arrow {
    border-bottom-color: rgba(0, 0, 0, .25);
    left: 0;
}

.lp-tooltip-div>.lp-tooltip-arrow,
.lp-tooltip-div>.lp-tooltip-arrow:after {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
}

.lp-tool-tip-content {
    color: #9f9f9f;
}

.lp-tool-tip-content {
    max-width: 400px;
    padding: 10px;
}

.lp-sidebar-filters-style #lp-find-near-me {
    display: inline-block;
    float: left;
    margin-top: 10px;
    margin-left: 0;
}

.listing-simple #lp-find-near-me,
.post-with-map-container #lp-find-near-me {
    margin-top: 0 !important;
}

.post-with-map-container-right .search-row .form-inline .form-group {
    margin-bottom: 5px;
}

div#lp-find-near-me ul {
    margin: 0;
    padding: 0;
}

.currency-signs>ul,
.search-filters>ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.search-filters>ul>li {
    float: left;
    margin-right: 8px;
}

.location-filters-wrapper,
#see_filter,
#more_filters,
.open-map-view {
    display: none;
}




.md-sidebar-filters-wrap .lp_all_page_overflow .col-md-12>h2 {
    display: none !important;
}

.outer_all_page_overflow {
    min-height: unset !important;
}

.md-sidebar-filters-wrap .outer_all_page_overflow,
.md-sidebar-filters-wrap .outer_all_page_overflow .lp_all_page_overflow,
.md-sidebar-filters-wrap .lp-features-filter {
    background: transparent;
    background-color: transparent !important;
}

.lp-sidebar-filters-style .lp-s-hidden-ara,
.lp-sidebar-filters-style .outer_all_page_overflow {
    display: block !important;
}

.outer_all_page_overflow {
    display: block;
    position: static;
    width: 100%;
    height: auto;
}

.outer_all_page_overflow {
    /*width: 815px;*/
    padding-top: 4px;
    /*height: 100%;*/
    overflow-y: auto;
    min-height: 445px;
    border: 0 solid #dedede;
}

.lp_all_page_overflow:first-child .lp_more_filter_data_section.lp_extrafields_select.lp_extrafields_select-border2 {
    border-top: 0px solid #EAF2FD !important;
    margin-top: 0px !important;
    padding-top: 0px !important;
}

.lp-sidebar-filters-style .lp_extrafields_select-border2 {
    border-bottom: 0 solid #dedede !important;
    padding-bottom: 0 !important;
    padding-top: 0;
}

.lp-sidebar-filters-style .lp-more-filters-outer {
    float: left;
    width: 100%;
    margin-bottom: 0;
}

.lp-more-filters-outer {
    padding-left: 15px;
}

.lp-sidebar-filters-style .md-sidebar-filters-wrap .lp_extrafields_select-border2 h3 {
    border-top: 0px solid #EAF2FD !important;
    margin-top: 0px !important;
    padding-top: 0px !important;
    font: normal normal bold 14px/17px 'Lato' !important;
}

.sidebar-filters .md-listing-filter .filters-section-wrap .filters-label,
.lp-sidebar-filters-style .md-sidebar-filters-wrap .lp_more_filter_data_section h3,
.mp-tax-filter-check-title {
    text-transform: capitalize;
    font-size: 14px;
    color: #42505D !important;
}

.lp-sidebar-filters-style .lp_extrafields_select-border2 h3 {
    display: inline-block;
    margin-top: 20px;
    margin-bottom: 15px;
}

.pull-left {
    float: left !important;
}

.mp-expand-all-filters {
    margin-top: -1px;
    font-size: 20px;
    cursor: pointer;
}

.fa.pull-right {
    margin-left: 0.3em;
}

.lp-sidebar-filters-style .md-sidebar-filters-wrap .lp-more-filters-outer .lp_filter_checkbox {
    display: block;
    width: 100%;
    float: left;
}

.md-sidebar-filters-wrap .lp-more-filters-outer li {
    width: 50%;
    margin-bottom: 30px !important;
    margin-top: 10px !important;
}

.lp-sidebar-filters-style .lp_filter_checkbox li {
    margin-bottom: 0 !important;
    margin-top: 0 !important;
    line-height: 36px;
}

.lp_filter_checkbox li {
    display: inline-block;
    width: 33.33%;
    float: left;
    margin-top: 15px;
}

.lp-sidebar-filters-style .md-sidebar-filters-wrap .lp_extrafields_select-border2 {
    border-top: 1px solid #EAF2FD;
    margin-top: 25px;
    padding-top: 25px;
    margin-top: 10px !important;
}

.lp-sidebar-filters-style .lp_extrafields_select-border2 {
    border-bottom: 0 solid #dedede !important;
    padding-bottom: 0 !important;
    padding-top: 0;
}

.lp_more_filter_data_section {
    display: inline-block;
    width: 100%;
    border-bottom: 1px solid #dedede;
    padding: 20px 0;
}

.mp-expand-all-filters {
    margin-top: -1px;
    font-size: 20px;
    cursor: pointer;
}

.fa.pull-right {
    margin-left: 0.3em;
}

.lp-sidebar-filters-style .md-sidebar-filters-wrap .lp-more-filters-outer .lp_filter_checkbox {
    display: block;
    width: 100%;
    float: left;
}

.md-sidebar-filters-wrap .lp-more-filters-outer li {
    width: 50%;
    margin-bottom: 30px !important;
    margin-top: 10px !important;
}

.lp_filter_checkbox li {
    display: inline-block;
    width: 33.33%;
    float: left;
    margin-top: 15px;
}

.lp-sidebar-filters-style .md-sidebar-filters-wrap .filter_checkbox_container,
.lp-sidebar-filters-style .md-sidebar-filters-wrap .filter_radiobox_container {
    line-height: 20px;
    text-transform: capitalize;
    font-size: 13px;
    color: #90ACC5 !important;
    font-weight: 400;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    text-align: left;
}

.lp-sidebar-filters-style .filter_checkbox_container,
.lp-sidebar-filters-style .filter_radiobox_container {
    width: 100%;
    padding-left: 35px;
    text-transform: capitalize;
    font-size: 12px;
    color: #797979 !important;
    font-weight: 300;
}

.filter_checkbox_container {
    display: inline-block;
    position: relative;
    padding-left: 37px;
    margin-bottom: 0;
    cursor: pointer;
    font-size: 14px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.filter_checkbox_container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

input[type=checkbox],
input[type=radio] {
    margin: 4px 0 0;
    line-height: normal;
}

.lp-sidebar-filters-style .md-sidebar-filters-wrap .filter_checkbox_checkmark {
    height: 19px;
    text-align: center;
    width: 19px;
    background: rgba(234, 242, 253, .3);
    border: 1px solid #90ACC544;
    border-radius: 5px;
}

.lp-sidebar-filters-style .filter_checkbox_checkmark,
.lp-sidebar-filters-style .filter_radio_select {
    left: 0;
    right: auto;
    top: 50%;
    transform: translateY(-50%);
}

.filter_checkbox_checkmark {
    position: absolute;
    top: 2px;
    left: 0;
    height: 25px;
    text-align: center;
    width: 25px;
    background-color: rgba(234, 242, 253, .3);
    border: 1px solid #eaeaea;
    border-radius: 2px;
}

.filter_checkbox_container input:checked~.filter_checkbox_checkmark {
    background: #465BE0 0% 0% no-repeat padding-box !important;
    border-radius: 5px !important;
    border: none;
}

.filter_checkbox_container input:checked~.filter_checkbox_checkmark::after {
    color: #fff !important;
}

.filter_checkbox_container input:checked~.filter_checkbox_checkmark::after {
    top: -3px !important;
}

.filter_checkbox_container input:checked~.filter_checkbox_checkmark::after {
    left: 0;
    position: absolute;
}

.filter_checkbox_container .filter_checkbox_checkmark::after {
    content: "\f00c";
    font-family: FontAwesome;
    font-size: 12px;
    color: #fff;
    text-align: center;
    left: 0;
    right: 0;
    line-height: 24px !important;
}

.header-filter {
    -moz-transform: translateY(0%);
    -webkit-transform: translateY(0%);
    -o-transform: translateY(0%);
    transform: translateY(0%);
}

.mobile-nav-icon {
    display: none;
    cursor: pointer;
}

.header-filter.form-group.pos-relative .form-inline.top-search-form {
    float: left;
    padding: 0;
    position: relative;
    width: 100%;
}

.header-filter .input-group.width-49-percent {
    max-width: 50% !important;
    border: none !important;
    border-right: 1px solid #fff !important;
}

.header-filter .input-group.width-49-percent {
    width: 60% !important;
}

.header-filter .input-group.width-49-percent {
    border-radius: 4px 0 0 4px;
    border-right: 1px solid #f0f0f0;
    width: 62%;
}

.header-filter .input-group.width-49-percent {
    background-color: #fff;
    border-radius: 0 4px 4px 0;
    float: left;
    position: relative;
    width: 36%;
    border-left: 1px solid #dedede !important;
}

.input-group.width-49-percent .input-group-addon.lp-border {
    border-radius: 5px !important;
}

.input-group.width-49-percent .input-group-addon.lp-border {
    z-index: 7 !important;
    height: 38px;
    color: #42505D;
    line-height: 38px;
    font: normal normal bold 'Lato', sans-serif;
}

.input-group.width-49-percent.margin-right-15 input.form-control,
.header-filter .top-search-form .chosen-container-single .chosen-single,
.header-without-topbar .header-filter .input-group-addon.lp-border,
.header-with-topbar .header-filter .input-group-addon.lp-border {
    background-color: #EAF2FD;
}

.header-filter .input-group:first-child .input-group-addon.lp-border {
    background-color: transparent;
    border-radius: 5px 0 0 5px;
    font-weight: 700;
    height: 46px;
    left: 0;
    line-height: 38px;
    padding: 0 0 0 4px;
    position: absolute;
    top: 0;
    width: 55px !important;
    z-index: 0;
}

.input-group.width-49-percent.margin-right-15 input.form-control {
    border-radius: 5px !important;
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

.input-group.width-49-percent.margin-right-15 input.form-control {
    background-color: transparent;
    border-radius: 5px 0 0 5px;
    min-width: 0;
    padding-left: 58px;
    line-height: 23px;
}

.top-search-form.form-inline .input-group .form-control {
    width: 100%;
}

form i.cross-search-q {
    position: absolute;
    right: 8px;
    top: 15px;
    cursor: pointer;
    z-index: 99;
    color: #DDD;
    font-size: 15px;
    display: none;
}

.what-placeholder::after {
    color: #000;
    content: attr(data-holder);
    font-size: 13px;
    left: 55px;
    opacity: .3;
    pointer-events: none;
    position: absolute;
    top: 13px;
    z-index: 999999;
}

.header-filter .input-group.width-49-percent {
    width: 43% !important;
}

.header-filter .input-group.width-49-percent {
    border: none !important;
    border-left-color: transparent !important;
}

.header-filter .input-group.width-49-percent {
    background-color: #fff;
    border-radius: 0 4px 4px 0;
    float: left;
    position: relative;
    width: 36%;
    border-left: 1px solid #dedede !important;
}

.header-filter .input-group.width-49-percent .input-group-addon.lp-border {
    border-radius: 5px !important;
}

.header-filter.input-group.width-49-percent .input-group-addon.lp-border {
    z-index: 7 !important;
    height: 38px;
    color: #42505D;
    line-height: 38px;
    font: normal normal bold 'Lato', sans-serif;
}

.header-filter .input-group-addon.lp-border {
    background-color: transparent;
    border-radius: 0;
    font-weight: 700;
    height: 100%;
    left: 0;
    line-height: 46px;
    padding: 0 0 0 11px;
    position: absolute;
    top: 0;
    width: 55px;
    z-index: 0;
}

.lp-border {
    border: 1px solid #e3e3e3;
}

.header-filter .ui-widget.border-dropdown,
.chosen-container.chosen-container-single.chosen-container-single-nosearch {
    height: 38px !important;
}

.lp-menu-bar .fullwidth-header .header-filter .ui-widget.border-dropdown {
    height: 46px;
    line-height: 21px;
}

.lp-menu-bar .ui-widget.border-dropdown,
.lp-menu-bar .ui-widget.border-dropdown span.custom-combobox input {
    height: 46px;
    width: 100%;
}

.header-filter .ui-widget {
    float: left;
    width: 100%;
}

.ui-widget.border-dropdown {
    background-color: transparent;
    border-radius: 0 5px 5px 0;
}

.header-filter form #search_cities,
.header-filter form #select {
    font-size: 13px;
    color: #5f6468;
    height: 38px;
    line-height: 38px;
    background-color: #EAF2FD;
}

form #search_cities {
    padding-left: 80px;
    width: 100%;
    height: 46px;
    line-height: 47px;
    border-radius: 0 5px 5px 0;
}

.header-filter.form-group.pos-relative .lp-search-btn-header.pos-relative {
    float: left;
    margin-left: 10px;
    max-height: 38px;
    min-height: 38px;
}

.header-filter.form-group.pos-relative .lp-search-btn-header.pos-relative {
    height: 46px;
    position: absolute;
    right: 0;
    top: 0;
    width: 18%;
}

.header-filter.form-group.pos-relative .lp-search-btn-header.pos-relative:before {
    font-family: FontAwesome;
    content: "\f002";
    position: absolute;
    right: 0;
    top: 50%;
    color: #fff;
    left: 10px;
    transform: translateY(-50%);
    font-size: 14px;
}

.top-search-form .lp-search-btn-header .lp-search-btn {
    top: 0;
    left: 0;
    width: 38px !important;
    padding: 0 !important;
    height: 40px;
    /*border-radius: 17px !important;*/
}

/*.card:after {*/
/*    content: '';*/
/*    position: absolute;*/
/*    width: 8px;*/
/*    height: 100%;*/
/*    top: 0;*/
/*    left: 0;*/
/*    background: black 0 0 no-repeat padding-box;*/
/*    box-shadow: 0 10px 29px #0A74F314;*/
/*    border-radius: 8px 0 0 8px;*/
/*}*/

.overlay_doctor_card {
    z-index: -1;
    position: relative;
}






#input-dropdown {
    margin-top: 12px;
    position: absolute;
    top: 52px;
    left: 0px;
    overflow-y: scroll !important;
    height: 50vh;
}

form.form-inline div#input-dropdown {
    padding-bottom: 0;
}

#search_doctor {
    cursor: pointer;
}

#input-dropdown {
    background: #FFFFFF !important;
    box-shadow: 0 10px 29px #0A74F314 !important;
    border-radius: 10px !important;
    overflow: hidden !important;
    top: calc(100% + 10px);
    background: #fff none repeat scroll 0 0;
    border: medium none;
    box-shadow: 0 6px 5px rgba(0, 0, 0, .3);
    margin-top: 1px;
    padding-bottom: 10px;
    padding-top: 0;
    top: -358px;
    left: 0;
    width: 358px;
    z-index: 9999;
}

#input-dropdown {
    margin-top: 4px;
}


#input-dropdown>ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    text-transform: capitalize;
}

.header-cat-menu .lp-user-menu li,
.lp-header-middle .sub-menu li,
.lp-header-middle .lp-header-user-nav .lp-user-menu li,
.lp-header-search-form #input-dropdown>ul li,
.lp-header-search-form .chosen-container .chosen-results li {
    border-bottom: solid 1px #ececec;
}

#input-dropdown>ul li:first-of-type {
    border-top: medium none;
}

#input-dropdown>ul li {
    text-align: left;
    padding-left: 11px;
    padding-right: 11px;
}

#input-dropdown>ul li {
    border-bottom: 1px solid #f9f9f9;
    color: black;
    cursor: pointer;
    float: left;
    font-family: sans-serif;
    font-size: 14px;
    line-height: 22px;
    padding: 8px 15px;
    text-decoration: none;
    width: 100%;
    /*background-color: #DFEFEB;*/
}

#input-dropdown li {
    line-height: 29px;
    padding-bottom: 5px;
    padding-top: 5px;
}

#input-dropdown li span {
    font-size: 14px;
    line-height: 26px;
    vertical-align: top;
}

#input-dropdown>ul li {
    text-align: left;
    padding-left: 11px;
    padding-right: 11px;
}

#input-dropdown>ul li {
    border-bottom: 1px solid #f9f9f9;
    color: #484848;
    cursor: pointer;
    float: left;
    font-family: sans-serif;
    font-size: 14px;
    line-height: 22px;
    padding: 8px 15px;
    text-decoration: none;
    width: 100%;
}

.mp-bottom-search-style .mp-bottom-search-container .lp-search-bar .lp-location-search-container {
    padding-left: 15px;
    padding-right: 10px;
    display: inline-block;
}

.mp-bottom-search-style .mp-bottom-search-container .lp-search-bar .lp-suggested-search,
.mp-bottom-search-style .mp-bottom-search-container .lp-search-bar .lp-location-search-container {
    width: 40%;
}

.mp-bottom-search-style .mp-bottom-search-container .lp-search-bar .lp-location-search-container .lp-location-search {
    background: #EAF2FD44 0 0 no-repeat padding-box;
    border: 1px solid #EAF2FD44;
    border-radius: 5px;
    padding: 0;
    width: 100%;
    padding-left: 65px;
}

.form-group.lp-location-search {
    margin-left: -5px;
}

.form-group.lp-location-search {
    margin-left: -4px;
    margin-right: 0;
    position: relative;
}

.form-inline .form-group {
    margin-right: 11px;
}

.form-group.lp-location-search .lp-where {
    background-color: transparent;
    border-radius: 0;
    color: #333;
    font-weight: 600;
    height: 46px;
    left: 1px;
    line-height: 46px;
    padding: 0 0 0 10px;
    position: absolute;
    top: 0;
    width: 65px;
    z-index: 0;
}

.input-group-addon:first-child {
    border-right: 0;
}

.mp-bottom-search-style .mp-bottom-search-container .lp-search-bar .lp-location-search-container .lp-location-search .ui-widget.border-dropdown {
    width: 100%;
}

.ui-widget.border-dropdown {
    background-color: transparent;
    border-radius: 0 5px 5px 0;
}

.ui-widget {
    float: left;
}

.mp-bottom-search-style .mp-bottom-search-container .lp-search-bar .lp-location-search-container .lp-location-search .ui-widget>i {
    right: 25px;
    left: auto;
}

.header-filter .lp-location-search .ui-widget>i,
.lp-search-bar .lp-location-search .ui-widget>i {
    color: #b6bfc8;
    cursor: pointer;
    font-size: 14px;
    left: 65px;
    position: absolute;
    top: 53%;
    z-index: 7;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.lp-location-search .ui-widget.border-dropdown>i {
    color: #b6bfc8;
    cursor: pointer;
    font-size: 14px;
    left: 65px;
    position: absolute;
    top: 53%;
    z-index: 7;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

form #search_cities {
    border: 0 solid;
}

form #search_cities {
    padding-left: 80px;
    width: 100%;
    height: 46px;
    line-height: 47px;
    border-radius: 0 5px 5px 0;
}

.mp-bottom-search-style .mp-bottom-search-container .lp-search-bar .lp-search-bar-submit {
    width: calc((98% - 80%) - 6px);
    margin: 0;
    padding-left: 15px;
}

.form-inline .form-group {
    margin-right: 11px;
}

.mp-bottom-search-style .mp-bottom-search-container .lp-search-bar .lp-search-bar-submit .lp-search-bar-right {
    width: 100%;
    text-align: center;
}

.form-group .lp-search-bar-right,
.lp-search-btn {
    background-color: #18DEC5;
}

.form-group .lp-search-bar-right {
    background-color: #41a6df;
    border-radius: 5px;
    margin: 0;
    z-index: 0;
}

.lp-search-bar-right {
    float: right;
    position: relative;
}

.mp-bottom-search-style .mp-bottom-search-container .lp-search-bar .lp-search-bar-submit input {
    width: 100%;
    border: none;
}

.searchloading {
    display: none;
    position: absolute;
    top: 7px;
    left: 50%;
    width: 32px;
    height: 32px;
    margin-left: -16px;
}

.lp-search-bar .lp-search-btn {
    background-color: transparent;
    height: 46px;
    z-index: 999999;
}

.lp-search-btn {
    padding: 11px 30px 11px 45px;
    font-weight: 700;
    font-size: 17px;
    background-color: #18DEC5 !important;
    color: #fff !important;
    border: none !important;
    border-radius: 5px;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
    -webkit-appearance: button;
    cursor: pointer;
}

input[type="submit"] {
    appearance: auto;
    user-select: none;
    white-space-collapse: preserve;
    text-wrap: nowrap;
    align-items: flex-start;
    text-align: center;
    cursor: default;
    box-sizing: border-box;
    background-color: buttonface;
    color: buttontext;
    padding-block: 1px;
    padding-inline: 6px;
    border-width: 2px;
    border-style: outset;
    border-color: buttonborder;
    border-image: initial;
}

.lp-search-bar .lp-search-btn {
    height: 40px;
}

@media (min-width: 768px) {
    .form-inline .form-group {
        display: inline-block;
        margin-bottom: 0;
        vertical-align: middle;
    }
}


.pos-relative {
    position: relative;
}

.lp-header-search-wrap {
    background-position: center;
}

.lp-header-search-wrap {
    /*background-image: url(https://healthier.com/assets/images/hp-search-bg.png);*/
    /*background-size: contain !important;*/
}

.lp-header-search-wrap {
    background-size: cover;
}

.lp-header-search-wrap {
    position: relative;
    top: -120px;
}

.swiper-pagination {
    position: absolute;
    text-align: center;
    transition: .3s opacity;
    transform: translate3d(0, 0, 0);
    z-index: 10;
    bottom: -6px !important;
}

.swiper-pagination-bullet-active {
    background: black !important;
}

.md-header-search-wrap .lp-header-search-sidebar-style {
    bottom: auto !important;
    top: 28% !important;
    transform: translateY(-50%);
}

.lp-header-search-sidebar-style {
    bottom: 80px !important;
}

.lp-header-search {
    position: absolute;
    width: 100%;
    bottom: 60px;
    z-index: 5;
}

.md-header-search-wrap .lp_auto_loc_container {
    padding: 0;
    margin-top: 130px;
}

.md-header-search-wrap .lp-header-search .lp-header-search-tagline,
.md-header-search-wrap .lp-dyn-city {
    color: white !important;
    font: normal normal bold 45px/45px 'Lato', sans-serif;
    font-size: 42px !important;
    margin-top: 0 !important;
}

.md-header-search-wrap .sidebar-banner-des {
    margin-bottom: 45px;
    /*text-align: left;*/
    font: normal normal normal 17px/28px 'Lato', sans-serif;
    color: white;
}

.sidebar-banner-des {
    font-size: 24px;
    margin-top: 15px;
    line-height: 30px;
    color: #fff;
    font-weight: 400;
    padding-right: 50px;
}

.md-available-docts {
    margin-bottom: 40px;
}

.md-available-docts p {
    color: white;
    font-size: 16px;
    font-weight: 700;
    font: normal normal bold 16px/19px 'Lato', sans-serif;
}

.md-available-docts span:first-child {
    margin-left: 0px;
}

.md-available-docts span {
    width: 41px;
    height: 41px;
    border-radius: 100%;
    overflow: hidden;
    border: 2px solid #fff;
    background: #333;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    margin-left: -20px;

    font-family: Lato;
    font-weight: 400;
    color: #7f7f7f;
}

.md-header-search-wrap .mp-profile-content-features {
    margin-bottom: 40px;
}

.md-header-search-wrap .mp-profile-content-feature-icon {
    margin-right: 5px;
}

.mp-profile-content-feature-icon {
    margin-right: 15px;
    display: inline-block;
}

.md-header-search-wrap .mp-profile-content-feature-text {
    font: normal normal normal 14px/17px 'Lato', sans-serif;
    color: white;
    font-weight: 700;
    font-size: 13px;
}

img.mp-banner-forground-image {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.md-header-search-wrap .mp-profile-content-feature-icon {
    margin-right: 5px;
}

.md-sidebar-search-location {
    background: #FFFFFF 0% 0% no-repeat padding-box;
    border: 2px dashed #18DEC5;
    border-radius: 8px;
    padding: 20px 25px;
    color: #42505D;
    font-size: 14px;
    font-weight: 700;
    text-align: left;
    max-width: 590px;
}

.mm-menu,
.mm-slideout {
    --mm-sidebar-collapsed-size: 44px;
    --mm-sidebar-expanded-size: 440px;
}

.md-sidebar-search-location img {
    width: 43px;
    height: 30px;
    margin-right: 15px;
}







.specialty_search input {
    width: 100%;
    outline: none;
    border: solid 1px lightgray;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    border-bottom: none;
    padding: 5px;
}

.gc_row_inner {
    margin: auto;
    max-width: 1310px;
}

.gc_ic_wrap {
    margin-left: auto;
    width: 40.5%;
}

.gc_ic_title {
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1.3;
}

.gc_title_space_1 {
    display: block;
    margin-bottom: 2rem;
}

.gc_ic_title strong {
    color: #fff;
}

.gc_global_cta .gc_ic_wrap .gc_ic_text *,
.gc_global_cta .gc_ic_wrap .gc_ic_title strong {
    color: #fff;
}

.gc_ic_buttons {
    display: flex;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.gc_global_cta .gc_btn:not(:last-child) {
    margin-right: 1.6rem;
}

a.ar_gc_btn .gc_btn_text,
a.gc_btn .gc_btn_text {
    flex-shrink: 1;
    margin-right: 1.56rem;
    text-align: center;
    white-space: nowrap;
    width: calc(100% - 45px);
}

a.ar_gc_btn .gc_btn_icon,
a.gc_btn .gc_btn_icon {
    flex-shrink: 0;
    line-height: 0;
}

.gc_global_cta .gc_cta_btn_1 {
    background-color: white;
    border-color: white;
}

a.ar_gc_btn,
a.gc_btn {
    align-items: center;
    border: 2px solid;
    border-radius: 50px;
    color: black !important;
    display: inline-flex;
    justify-content: space-between;
    min-height: 40px;
    padding: 0.65rem 1rem 0.65rem 1.56rem;
}

.gc_global_cta .gc_cta_btn_3 {
    background-color: #fff;
    border-color: #fff;
    color: #0033ff;
}

.gc_row.gc_row_space_1 {
    padding-bottom: 6.25rem;
    padding-top: 6.25rem;
}

.gc_row {
    position: relative;
}

.gc_global_cta {
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: 35% auto;
}

.consultation:after {
    background-image: url("/assets/images/bg/3s.jpg");
    background-position: 100%;
    background-size: cover;
    border-radius: 0 50% 50% 0;
    bottom: 0;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 32%;
}

.doc-filter-body ul li {
    border-bottom: solid 1px lightgray;
    padding-left: 5px;
    padding-bottom: 5px;
    padding-top: 5px;
    font-size: 13px;
}

.doc-filter-body ul {
    border: solid 1px lightgray;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    padding: 0px;
    list-style: none;
}

.doc-filter-item h5 {
    font-size: 15px !important;
    background-color: #d3d3d357;
    padding: 0px !important;
    margin: 0px !important;
    padding-left: 10px !important;
}

.doc-filter-body {
    background: white;
    padding: 10px 10px 10px 10px;
}

.clinic_appointment {
    box-shadow: 0px 0px 1px 1px lightgrey;
    border-radius: 5px;
}

/*.smart-bar::-webkit-scrollbar {*/
/*    -webkit-appearance: none;*/
/*    width: 0.25rem;*/
/*    height: 0.25rem;*/
/*    border: 0.0625rem solid black;*/
/*}*/
/*.smart-bar::-webkit-scrollbar {*/
/*    -webkit-appearance: none;*/
/*    width: 4px;*/
/*    height: 4px;*/
/*    border: 1px solid black;*/
/*}*/
/*div::-webkit-scrollbar-thumb {*/
/*    border-radius: 5px;*/
/*    background-color: black;*/
/*}*/
/*::-webkit-scrollbar-thumb {*/
/*    border-radius: 4px;*/
/*    background-color: black;*/
/*    width: 5px;*/
/*}*/
.review_block {
    display: flex;
    overflow-x: scroll;
}

#user_location_mobile {
    cursor: pointer;
}

.hp_list {
    display: flex;
    overflow-x: scroll;
}

.trending_spl {
    display: flex;
    position: relative;
    bottom: 15px;
}

.trending_spl a {
    background: linear-gradient(90deg, black 0%, #64c2f1 127.93%, rgba(1, 78, 118, 0) 201.42%);
    margin-right: 10px;
    border-radius: 5px;
    padding: 5px;
}

.trending_words {
    position: relative;
    width: 61%;
    margin: 0 auto;
    bottom: 60px;
}

.hosp_department_name:hover {
    cursor: pointer;
}

.hosp_profile_dct_profile_img {
    width: 100%;
    border: solid 1px lightgrey;
    border-radius: 10px;
}

.hosp_profile_doct_block {
    box-shadow: 0px 0px 1px 1px lightgrey;
    border-radius: 10px;
    padding: 6px;
    margin-right: 20px;
}

.hsp_doctor_container {
    box-shadow: 0px 0px 1px 1px lightgrey;
    border-radius: 10px;
}

.hosp_doctor {
    display: flex;
    overflow-x: scroll;
    padding: 10px;
}

.doctors_in_department {
    color: #3C4659 !important;
    font-size: 12px !important;
    margin-left: 10px !important;
}

#about p {
    color: #3C4659;
}

.hosp_department_name {
    /* background-color: black; */
    padding-bottom: 10px;
    padding-top: 10px;
    padding-left: 10px;
    /* border-radius: 10px; */
    color: #3C4659;
    border-bottom: solid 1px lightgray;
}

#inner_search {
    background-color: white;
    box-shadow: 7px 2px 2px 2px lightgray;
}

.text-justify {
    text-align: justify !important;
}

#services,
#diseases {
    max-height: 65vh;
    overflow-y: scroll;
    overflow-x: hidden;
}

#basic-addon1 {
    border-top-left-radius: 5px !important;
    border-bottom-left-radius: 5px !important;
}

.profile_item_design {
    background-image: linear-gradient(90deg, black 18%, grey 33%);
    padding: 10px;
    border-radius: 15px;
    color: white;
}

#desktop_search {
    z-index: 1;
}

.search_icon i {
    z-index: 1;
}

.innerpage-search-icon {
    font-size: 20px;
    color: grey;
    padding-bottom: 1px;
}

.input-group-text {
    display: flex;
    align-items: center;
    padding: 0.377rem 1rem !important;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: center;
    white-space: nowrap;
    background-color: white !important;
    border: none !important;
    border-radius: 0 !important;
}

.innerpage_search {
    display: flex;
}

.inner-page-speciality-filter {
    /*box-shadow: 0px 0px 1px 1px lightgrey;*/
    padding: 5px;
    border: none;
    /*border-top-right-radius: 5px;*/
    /*border-bottom-right-radius: 5px;*/
    outline: none;
    text-align: center;
}

.inner-page-filter {
    border: none;
    border-left: solid 1px lightgrey;
    /*box-shadow: 0px 0px 1px 1px lightgrey;*/
    padding: 10px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    outline: none;
}

.center-team {
    flex: 0 0 32%;
    min-width: 220px;
}

.doct_hospital {
    box-shadow: 0px 0px 1px 1px #d3d3d385;
    border-radius: 5px;
    padding-bottom: 10px;
    padding-top: 10px;
}

/* width */
/*::-webkit-scrollbar {*/
/*  width: 5px;*/
/*}*/

/* Track */
/*::-webkit-scrollbar-track {*/
/*  box-shadow: inset 0 0 2px grey; */
/*  border-radius: 10px;*/
/*}*/

/* Handle */
/*::-webkit-scrollbar-thumb {*/
/*  background: black; */
/*  border-radius: 10px;*/
/*}*/

/* Handle on hover */
/*::-webkit-scrollbar-thumb:hover {*/
/*  background: black; */
/*}*/

#feature_doctors {
    background-color: black14;
    padding: 10px;
    border-radius: 10px;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.citypage_image_container {
    height: 51vh !important;
}

.megasubmenu-item {
    color: black !important;
}

.megasubmenu {
    font-size: 13px;
    text-decoration: underline;
    list-style: none;
}

.dropdown-menu-right {
    position: absolute;
    width: 60% !important;
    right: 0px !important;
    left: 185px;
    background-color: #00B8E2;
    text-align: left !important;
    padding-left: 20px;
}

.md-booking-sidebar-tabs-content .dropdown-menu {
    min-width: 20rem !important;
}

.list-group-item {
    border: none !important;
}

.navigation-menu .dropdown-menu {
    position: absolute;
    top: 0px !important;
    width: 100% !important;
}



#registration_block {
    background-image: linear-gradient(313deg, black 50%, lightgrey 53%);
    padding: 15px;
    border-radius: 5px;
}

.citypage_title {
    margin-top: 245px;
    margin-left: 20px;
}

.citypage_menu {
    background-color: black;
    border-radius: 10px;
    padding: 10px 10px;
}

.citypage_sticky_menu {
    position: fixed;
    top: 115px;
    width: 20%;
    left: 80px;
    background-color: black;
    z-index: 1;
    border-radius: 10px;
    padding: 10px 10px;
}

.citypage_block h4 {
    color: black !important;
}

.specl_city_block {
    background: #DFEFEB;
}

.procedure_city_block {
    background-color: #E8F6F9;
}

.disease_city_block {
    background-color: #FBE0D0;
}

.doctor_city_block {
    background-color: #FEF5DE;
}

.hosp_city_block {
    background-color: #6fc3d44a;
}

.citypage_block {
    padding-left: 20px;
    padding-top: 10px;
    padding-bottom: 15px;
    padding-right: 20px;
    border-radius: 10px;

    box-shadow: 0rem 0.1563rem 0.1563rem rgba(0, 0, 0, 0.1);
    border-radius: 0.625rem;
    border: none;
}

.show_complete_block {
    height: auto !important;
    overflow-y: auto !important;
}

.limited_block {
    max-height: 60vh;
    overflow-y: hidden;
}

.citypage_block_link {
    color: black !important;
    margin-bottom: 15px;
}

.citypage_link {
    color: white !important;
}

.citypage_menu_item {
    margin-bottom: 10px;
}

.citypage_menu {
    list-style: none;
}

.country-btn:hover {
    background-image: linear-gradient(313deg, black 0%, lightgrey 100%);
    color: white !important;
}

.country-btn {
    background-color: white;
    color: #168bb9 !important;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 10px;
    border-radius: 5px;
    text-align: left;
    border: solid 1px black;
    font-weight: 600;
    font-size: 15px;
}

.homepage_modal_speciality_search_input {
    width: 80%;
    border: none;
    outline: none;
}

.seha-icon {
    color: black !important;
}

.general-icon {
    color: white;
    font-size: 20px;
    padding-left: 0px;
    /*position: relative;*/
    /*left: 4px;*/
    padding: 5px;
}

.feature_doct_basic_info {
    width: 97%;
    margin: 0 auto;
    font-size: 14px;
}

.basic_info {
    width: 71%;
    margin: 0 auto;
    font-size: 14px;
}

.dct_procedure a {
    color: black !important;
}

.icon-image-holder {
    --size: 34px;
    height: var(--size);
    width: var(--size);
    background: linear-gradient(90deg, black 0%, #6FC3D4 127.93%, rgba(1, 78, 118, 0) 201.42%);
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 10px 0 0;
    padding: 8px;
    color: #fff;
    flex-shrink: 0;
}

.home-speciality-link-bk-appointment {
    display: flex;
    align-items: center;
    padding-left: 6px;
    padding-bottom: 15px;
    padding-top: 15px;
    border: 1px solid #f3f2f2;
    border-radius: 5px;
    /*color: var(--dark-color);*/
    font-size: 13.6px;
}

.grid-holder {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 11px;
    max-height: 400px;
    overflow: auto;
    padding: 0 7px;
}

.specialization_icon {
    background: linear-gradient(90deg, black 0%, #6FC3D4 127.93%, rgba(1, 78, 118, 0) 201.42%);
    border-radius: 50%;
}

.specialization_name {
    font-size: 12px;
    color: #232426 !important;
}

.modal-dialog-centered {
    min-height: calc(50% - 3.5rem);
}

.ps-3 {
    padding-left: 2rem !important;
}

.list-item:hover {
    background-color: #d3d3d34d;
    cursor: pointer;
}

.selected_filter {
    font-weight: 700;
    color: black;
}

.filter_list ul {
    list-style: circle;
}

.filter_list {
    max-height: 280px;
    font-size: 15px;
}

.filter_box {
    box-shadow: 0px 0px 1px 1px lightgrey;
    padding: 5px;
    border-radius: 5px;
}

.dct_procedure,
.dct_membership,
.dct_biography {
    border: solid 1px;
    border-image: linear-gradient(90deg, black 0%, lightgrey 100%) 1;
    position: relative;
    top: -8px;
}

.procedure_name {
    background-color: black59;
    color: midnightblue;
    border-radius: 9px;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 5px;
    padding-top: 5px;
}

.similar_doctor_info {
    box-shadow: 0px 0px 0px 1px lightgrey;
    border-radius: 5px;
}

#similar_doctor_container,
.clinic_timing {
    box-shadow: inset 0px 0px 1px 1px lightgrey;
    padding: 4px;
    padding-bottom: 10px !important;
    border-radius: 5px;
}

.similar_doct_title a {
    color: #21B9F5 !important;
}

.similar_doct_title {
    font-size: 13px;
    font-weight: 700;
    margin: 0;
}

.similar_doct_hosp {
    font-size: 11px;
    margin: 0;
}

.dct_biography_heading {
    background-color: #d3d3d347;
    padding: 0px;
    border-left: solid 6px black;
    padding-left: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
}

.sPRaK {
    background: white;
    border-radius: 22px;
    box-shadow: rgba(0, 0, 0, 0.29) 0px 6px 18px 0px;
}

.gwwwHH {
    display: flex;
    overflow: hidden;
}

.doctor-profile-sticky-header {
    position: sticky;
    top: 0px;
    width: 100%;
    background-color: white;
    z-index: 1;

}

.doctor_profile_card {
    border: solid 2px black;
    border-radius: 10px !important;
}

.mp-profile-location-detail-address-action {
    text-decoration: underline;
    font: normal normal bold 12px/15px 'Lato', sans-serif;
    color: #465BE0;
}

.mp-profile-location-detail-address-vl.mp-vertical-line {
    background: #707070;
    margin: 0 10px;
}

/*#doctor_profile_tabs*/
/*{*/
/*    border: solid 1px black;*/
/*    padding-top: 10px;*/
/*    padding-bottom: 10px;*/
/*    border-radius: 10px;*/
/*    background-image: linear-gradient(313deg,black 0%,lightgrey 100%);*/
/*    padding-left: 10px;*/
/*    padding-right: 10px;*/
/*}*/
.plus_icon {
    font-size: 20px;
    position: absolute;
    right: 10px;
}

#hospital-in-near,
#doctor-in-near {
    /*border: solid 1px black;*/
    position: relative;
    left: 12px;
}

#page-bottom-links a,
#page-bottom-links a:hover {
    color: black !important;
}

.inner-page-bottom-link-heading:hover {
    cursor: pointer;
}

.inner-page-bottom-link-heading {
    display: flex;
    padding-top: 8px;
    border-bottom: solid 1px lightgrey;
    color: black;
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-default {
    border: solid 1px #24B1E3;
}

.wh-title {
    font-size: 12px !important;
    font-weight: 700;
    color: black;
}

.working-hospital-card {
    margin-left: 15px;
    border: solid 1px #24B1E3;
    margin-bottom: 10px;
    padding-left: 10px;
    padding-top: 10px;
}

.doctor_name {
    position: relative;
    font-size: 15px;
    font-weight: 700;
}

.hospital_name {
    font-size: 13px !important;
}

#feature_doct {
    display: flex;
    overflow: auto;
    scroll-behavior: smooth;
}

.hide_feature_doct,
.mhide_feature_doct {
    display: none;
}

.arrow-btn {
    background-color: white;
    color: black;
    border-radius: 50% !important;
    border: solid 1px;
}

.featured_doctor_book_appointment {
    position: absolute;
    bottom: 0px;
    width: 100%;
    margin: 0px;
    left: 0;
    border: solid 1px white !important;
}

.oc-card-section {
    background: #E8F6F9 !important;
    box-shadow: 0 0.2263rem 0.2263rem rgba(0, 0, 0, 0.1);
    border-radius: 0.9052rem;
    border: none;
}

.text-left {
    text-align: left !important;
}

.PMC-line-height {
    line-height: .875rem;
}

.oc-doctor-img img {
    aspect-ratio: 10/10.7;
    width: 191px;
    object-fit: contain;
}

figure,
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

.card-body {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    min-height: 0.0625rem;
    padding: 20px;
}

.center {
    margin: 0 auto;
}

.searchbar-section {
    border: 0.0313rem solid #ADADAD;
    box-shadow: 0rem 0.125rem 0.125rem rgba(0, 0, 0, 0.1);
    border-radius: 0.5rem;
}

.dark-gray-text {
    color: black;
}

.text-lg {
    font-size: 36px;
}

.font-weight-bold {
    font-weight: 500 !important;
}

.align-items-center {
    -ms-flex-align: center !important;
    align-items: center !important;
}

.search-box-section {
    border-right: 0.0313rem solid #ADADAD;
    padding-right: 10px;
    padding-left: 10px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.form-control {
    display: block;
    width: 100%;
    height: calc(1.5em + 20px + 0.125rem) !important;
    padding: 10px 16px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 0.0625rem solid #ced4da;
    border-radius: 4px;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.search-input {
    border: none !important;
    outline: none !important;
}

svg {
    overflow: hidden;
    vertical-align: middle;
}

svg {
    max-width: 100%;
}

.rounded-0 {
    border-radius: 0 !important;
}

.algolia-autocomplete {
    width: 100% !important;
}

.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12,
.col,
.col-auto,
.col-sm-1,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm,
.col-sm-auto,
.col-md-1,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md,
.col-md-auto,
.col-lg-1,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg,
.col-lg-auto,
.col-xl-1,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl,
.col-xl-auto {
    position: relative;
    /*width: 100%;*/
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
}

.filter-border {
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.2);
    box-shadow: 0px 4px 4px rgb(0 0 0 / 4%);
}

.filter-side-bar {
    position: sticky;
    top: 4.7rem;
    background-color: white;
    z-index: 1;
}

.center {
    margin: 0 auto;
}

.filter-border-right {
    border-right: 1px solid rgba(0, 0, 0, 0.2);
}

.filters-filter {
    padding-block: 8px;
    padding-inline: 25px;
    border-radius: 0%;
    display: none !important;
}

.card *,
.flex-column * {
    min-height: 0.01px;
}

.text-lite-gray {
    color: #4B4B4B;
}

.text-base {
    font-size: 14px !important;
    /* line-height: 20px; */
}

.font-weight-base {
    font-weight: 600 !important;
}

.text-seha {
    color: #014e78;
}

.underline {
    text-decoration: underline;
}

.text-bold {
    font-weight: 700;
}

.surgen-tag {
    background: #015245;
    border-radius: 0.125rem;
    color: white;
    padding-block: 0.0625rem !important;
    font-size: .75rem;
    padding-bottom: 0.1875rem !important;
    padding-top: 0rem !important;
}

.text-md {
    font-size: 14px;
    font-weight: 400 !important;
}

.font-weight-normal {
    font-weight: 400 !important;
}

.font-weight-bold {
    font-weight: 500 !important;
}

.card {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 0.0625rem solid rgba(0, 0, 0, 0.125);
    border-radius: 4px;
}

.In-clinic-Visit-card {
    background: #FBE0D0;
    box-shadow: 0rem 0.1957rem 0.1957rem rgba(0, 0, 0, 0.1);
    border-radius: 0.7827rem;
    border: none;
}

.pl-lg-3,
.px-lg-3 {
    padding-left: 16px !important;
}

.justify-content-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
}

.Appointment-line-height {
    line-height: .8125rem;
}

.In-clinic-card-image {
    aspect-ratio: 10/9;
    width: 120px;
    object-fit: cover;
}

.justify-content-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
}

.In-clinic-Visit-card-weight-loss {
    background: #FEF5DE;
    box-shadow: 0rem 0.1957rem 0.1957rem rgba(0, 0, 0, 0.1);
    border-radius: 0.7827rem;
    border: none;
}

.weight-loss-imge {
    aspect-ratio: 10/10;
    width: 89%;
    object-fit: contain;
}

.instant-card {
    background: #DFEFEB;
    box-shadow: 0rem 0.1563rem 0.1563rem rgba(0, 0, 0, 0.1);
    border-radius: 0.625rem;
    border: none;
}

.instant-image-logos {
    aspect-ratio: 17/8;
    width: 140px;
    object-fit: contain;
}

.instant-content {
    margin-left: 2.1875rem;
    margin-top: -0.375rem;
}

.instant-img img {
    aspect-ratio: 10/10;
    width: 247px;
    object-fit: contain;
}

.detect-icon:hover {
    cursor: pointer;
}

.detect-icon {
    background-color: #d3d3d345;
    width: 30%;
    position: relative;
    text-align: center;
    right: -260px;
    height: 44px;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 5px;
}

.detect-icon span {
    position: relative;
    /* left: 47px; */
    top: 5px;
}

.detect-icon img {
    width: 30%;
    padding-top: 5px;
}

.search-icon {
    font-size: 15px;
    color: grey;
}

.dropdown-item {
    border-bottom: solid 1px #80808054;
    padding-bottom: 10px;
    padding-top: 10px;
}

.speciality_div {
    padding-bottom: 10px;
    padding-top: 10px;
}

.dropdown-heading {
    background-color: #d3d3d391;
    padding-left: 20px;
    font-size: 15px;
    font-weight: 700;
}

.footer_speciality_link,
.footer_speciality_link:hover {
    color: black !important;
    font-size: 13px;
    font-weight: 500;
    font-family: arboria, sans-serif !important;
}

.footer-logo img {
    max-width: 50% !important;
}

#footer-links ul li {
    margin-bottom: 10px;
}

#footer-links {
    background-color: white;
    color: black !important;

}

#footer-links ul {
    list-style: none;
    padding: 0;
}

#signup_doctor {
    background: linear-gradient(90deg, black 0%, #6FC3D4 127.93%, rgba(1, 78, 118, 0) 201.42%);
}

.signup-doctor-slogan {
    position: relative;
    bottom: 15px;
    font-size: 12px;
}

.highlight-text {
    color: white;
    font-weight: 600;
}

.appoint-highlight-text {
    color: black;
    font-weight: 600;
    text-decoration: underline;
}

.overflow-dotted {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.text-md {
    font-size: 16px;
    /* line-height: 22px; */
}

.hospital-content-address {
    column-gap: 4px;
}

.flex-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
}

.text-two-truncate {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hospital-card-contents {
    padding: 5px 5px 0px 15px;
}

.mr-2,
.mx-2 {
    margin-right: 8px !important;
}

svg {
    /*filter: invert(80%) sepia(28%) saturate(4284%) hue-rotate(191deg) brightness(95%) contrast(103%);*/
}

.text-white {
    color: black !important;
}

.hospital-card-contents svg {
    filter: brightness(0) saturate(100%) invert(15%) sepia(53%) saturate(2474%) hue-rotate(192deg) brightness(92%) contrast(103%) !important;
}

.hospital-cards img {
    background: black;
}

.hospital-cards {
    /*background: linear-gradient(90deg, black 0%, #6FC3D4 127.93%, rgba(1, 78, 118, 0) 201.42%);*/
    /*filter: drop-shadow(0rem 0.125rem 0.125rem rgba(0, 0, 0, 0.1));*/
    /*border-radius: 0.5rem;*/
    /*border: none;*/
    margin-right: 10px;

    padding: 15px !important;
    background: #fff;
    box-shadow: 0px 10px 29px #0A74F314;
    border-radius: 15px;
    transition: 350ms ease-in-out;
}

.appoint-easy-steps li {
    color: black;
}

.easy-steps li {
    color: white;
}

.easy-steps,
.appoint-easy-steps {
    list-style: none;
}

.div-box {
    box-shadow: 10px 10px 10px -9px #c9cbd3 !important;
    text-align: center;
    border: solid 1px #17C5E6;
    padding: 15px;
    border-radius: 10px;
}

.mdoctor_info_box {
    background-color: white;
    border: solid 1px black;
    border-radius: 5px;
    height: auto;
}

.doctor_info_box {
    background-color: white;
    border: solid 1px black;
    border-radius: 5px;
    height: auto;
    margin-bottom: 15px;
}

.profile-image {
    background-color: #d3d3d338;
    border-radius: 10px;
    width: 100% !important;
    margin-bottom: 10px;
    margin-top: 10px;
    margin-left: 10px;
    box-shadow: 0px 0px 1px 1px black;
    padding: 3px;
}

.doct-image {
    background-color: #d3d3d338;
    border-radius: 10px;
    width: 100% !important;
    margin-bottom: 10px;
    margin-top: 10px;
    margin-left: 10px;
    box-shadow: 1px 0px 4px 0px black;
    padding: 1px;
}

.home-page-doct-image {
    width: 20% !important;
    position: relative;
    bottom: 36px;
    border-radius: 50%;
    padding: 5px;
    background-color: white;
}

.doct-name {
    position: relative;
    bottom: 36px;
}

.divider {
    width: 10%;
    margin: 0 auto;
    color: black;
    height: 4px !important;
    border-radius: 10px;
}

.speciality_icon {
    width: 35%;
    background-color: black;
    padding: 10px;
    border-radius: 50%;
}

.disease_icon {
    width: 35%;
    /*background-color: black;*/
    background: linear-gradient(90deg, black 0%, #6FC3D4 127.93%, rgba(1, 78, 118, 0) 201.42%);
    padding: 10px;
    border-radius: 50%;
}

.mid-spacer {
    flex: 0 0 auto;
    width: 1%;
}

.spacer {
    flex: 0 0 auto;
    width: 10%;
}

.text-holder p {
    font-size: 14px;
}

#feature_doctors_section {
    background-color: black;
}

.text-holder {
    background-color: white;
    padding: 10px;
    border-bottom-right-radius: 10px;
    border-top-right-radius: 10px;
}

.image-holder {
    background-color: white;
    border-right-style: ridge;
    border-color: black;
    border-bottom-left-radius: 10px;
    border-top-left-radius: 10px;
}

.booking_appointment {
    background-image: linear-gradient(to right, black, #06AFE1);
    border: none;
    color: white;
    margin-bottom: 5px;
    border-radius: 5px;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.main_heading_home_page {
    color: white;
}

.info-box {
    background-color: #009EDD;
    width: 25%;
    margin: 0 auto;
    padding: 5px;
    border-radius: 5px;
}

#search-box {
    position: relative;
    top: 15px;
}

.pt-3 {
    padding-top: 3rem !important;
}

.home-banner {
    background-size: 100% auto;
    background-position: 100% bottom;
    min-height: 65vh;
    display: flex;
    align-items: center;
}

.search-city,
.search-hospital {
    width: 100%;
    padding: 10px;
    position: absolute;
}

.hp-search-btn:hover {
    color: white;
}

.hp-search-btn {
    width: 100%;
    background-color: #70191921;
    border-radius: 0px;
    position: absolute;
    left: 0px;
    color: white;
    padding: 10px !important;
}

.dropdown-item:hover {
    cursor: pointer;
}

#read_more_btn:hover {
    cursor: pointer;
    position: relative;
    bottom: 16px;
}

#read_more_btn {
    position: relative;
    bottom: 16px;
}

.search-btn {
    background-color: #24B1E3;
    color: white;
}

.search-btn:hover {
    color: white;
}

.dropdown_list {
    height: 100vh;
    overflow-y: scroll;
    overflow-x: hidden;
    background-color: white;
}

.dropdown-menu {
    border: solid 1px lightgrey !important;
}

.filters {
    background-color: #24b1e338;
    padding: 10px;
    border-radius: 10px;
}

.service-link {
    color: #202942 !important;
}

.filter_row {
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 1px 1px lightgrey;
}

.main-block {
    background-color: #F7F7F7;
    padding: 10px;
    border-radius: 10px;
}

.service-link:hover {
    text-decoration: underline !important;
}

.search_bar_input {
    width: 79% !important;
    border: none !important;
}

.page-heading {
    font-size: 1.5rem;
}

.specialty-box {
    padding: 40px !important;
}

.text-justify {
    text-align: justify !important;
}

.search-bar {
    background-color: #202942;
    padding: 20px 10px !important;
    color: white !important;
}

.team-img {
    text-align: center;
}

.hp-doct {
    width: 70% !important;
}

.doc-specialty {
    box-shadow: 1px 2px 0px 0px lightgrey;
    padding-top: 25px;
    padding-left: 10px;
    text-align: center;
}

.doc-states {
    box-shadow: 1px 2px 0px 0px lightgrey;
    padding-top: 25px;
    padding-bottom: 25px;
    padding-left: 10px;
    text-align: center;
}

.doc-states p,
.doc-specialty p {
    font-size: 12px;
    color: #202942 !important;
}

.doc-states h4,
.doc-specialty h4 {
    font-size: 14px;
    color: #202942 !important;
}

.hosp_img {
    width: 70%;
}

.view_profile {
    width: 100% !important;
}

.view_profile a {
    width: 100% !important;
}

.speciality_state {
    color: #202942 !important;
    font-size: medium;
}

.available-doct {
    color: #202942 !important;
    font-size: 12px;
}

.specialty-name {
    color: #202942 !important;
    cursor: pointer;
    box-shadow: 2px 2px 2px 2px lightgrey;
    text-align: center;
}

/*.breadcrumb*/
/*{*/
/*  background-color: black;*/
/*  padding: 20px 10px !important;*/
/*  margin-top:68px !important;*/
/*  color: white !important;*/
/*  margin-bottom: 0rem !important;*/
/*}*/
.hp-category {
    width: 100%;
}

h2,
.h2 {
    font-size: 36px;
    line-height: 1.5;
    font-weight: 600;
}

h3,
.h3 {
    font-size: 30px;
    line-height: 1.5;
    font-weight: 600;
}

h4,
.h4 {
    font-size: 24px;
    line-height: 1.5;
    font-weight: 600;
}

h5,
.h5 {
    font-size: 18px;
    line-height: 1.5;
    font-weight: 600;
}

h6,
.h6 {
    font-size: 15px;
    line-height: 1.5;
    font-weight: 600;
}

.display-1 {
    font-size: 80px;
}

.display-2 {
    font-size: 72px;
}

.display-3 {
    font-size: 64px;
}

.display-4 {
    font-size: 56px;
}

.bg-primary {
    background-color: #396cf0 !important;
}

.bg-soft-primary {
    background-color: rgba(57, 108, 240, 0.1) !important;
    border: 1px solid rgba(57, 108, 240, 0.1) !important;
    color: #396cf0 !important;
}

.text-primary {
    color: #396cf0 !important;
}

a {
    transition: all 0.5s ease;
}

a.text-primary:hover,
a.text-primary:focus {
    color: #215aee !important;
}

.bg-secondary {
    background-color: #5a6d90 !important;
}

.bg-soft-secondary {
    background-color: rgba(90, 109, 144, 0.1) !important;
    border: 1px solid rgba(90, 109, 144, 0.1) !important;
    color: #5a6d90 !important;
}

.text-secondary {
    color: #5a6d90 !important;
}

a {
    transition: all 0.5s ease;
}

a.text-secondary:hover,
a.text-secondary:focus {
    color: #506180 !important;
}

.bg-success {
    background-color: #53c797 !important;
}

.bg-soft-success {
    background-color: rgba(83, 199, 151, 0.1) !important;
    border: 1px solid rgba(83, 199, 151, 0.1) !important;
    color: #53c797 !important;
}

.text-success {
    color: #53c797 !important;
}

a {
    transition: all 0.5s ease;
}

a.text-success:hover,
a.text-success:focus {
    color: #40c18b !important;
}

.bg-warning {
    background-color: #f1b561 !important;
}

.bg-soft-warning {
    background-color: rgba(241, 181, 97, 0.1) !important;
    border: 1px solid rgba(241, 181, 97, 0.1) !important;
    color: #f1b561 !important;
}

.text-warning {
    color: #f1b561 !important;
}

a {
    transition: all 0.5s ease;
}

a.text-warning:hover,
a.text-warning:focus {
    color: #efaa4a !important;
}

.bg-info {
    background-color: #64c2f1 !important;
}

.bg-soft-info {
    background-color: rgba(100, 194, 241, 0.1) !important;
    border: 1px solid rgba(100, 194, 241, 0.1) !important;
    color: #64c2f1 !important;
}

.text-info {
    color: #64c2f1 !important;
}

a {
    transition: all 0.5s ease;
}

a.text-info:hover,
a.text-info:focus {
    color: #4db9ef !important;
}

.bg-danger {
    background-color: #f0735a !important;
}

.bg-soft-danger {
    background-color: rgba(240, 115, 90, 0.1) !important;
    border: 1px solid rgba(240, 115, 90, 0.1) !important;
    color: #f0735a !important;
}

.text-danger {
    color: #f0735a !important;
}

a {
    transition: all 0.5s ease;
}

a.text-danger:hover,
a.text-danger:focus {
    color: #ee5f43 !important;
}

.bg-dark {
    background-color: #343a40 !important;
}

.bg-soft-dark {
    background-color: rgba(52, 58, 64, 0.1) !important;
    border: 1px solid rgba(52, 58, 64, 0.1) !important;
    color: #343a40 !important;
}

.text-dark {
    color: #343a40 !important;
}

a {
    transition: all 0.5s ease;
}

a.text-dark:hover,
a.text-dark:focus {
    color: #292d32 !important;
}

.bg-muted {
    background-color: #8492a6 !important;
}

.bg-soft-muted {
    background-color: rgba(132, 146, 166, 0.1) !important;
    border: 1px solid rgba(132, 146, 166, 0.1) !important;
    color: #8492a6 !important;
}

.text-muted {
    color: #8492a6 !important;
}

a {
    transition: all 0.5s ease;
}

a.text-muted:hover,
a.text-muted:focus {
    color: #75859b !important;
}

.bg-light {
    background-color: #f8f9fc !important;
}

.bg-soft-light {
    background-color: rgba(248, 249, 252, 0.1) !important;
    border: 1px solid rgba(248, 249, 252, 0.1) !important;
    color: #f8f9fc !important;
}

.text-light {
    color: black !important;
}

a {
    transition: all 0.5s ease;
}

a.text-light:hover,
a.text-light:focus {
    color: #e6eaf4 !important;
}

.bg-footer {
    background-color: #F2F2F2 !important;
}

.bg-soft-footer {
    background-color: rgba(32, 41, 66, 0.1) !important;
    border: 1px solid rgba(32, 41, 66, 0.1) !important;
    color: #202942 !important;
}

.text-footer {
    color: #202942 !important;
}

a {
    transition: all 0.5s ease;
}

a.text-footer:hover,
a.text-footer:focus {
    color: #181e30 !important;
}

.bg-white-50 {
    background-color: rgba(255, 255, 255, 0.5);
}

.ml-2,
.mx-2 {
    margin-left: 8px !important;
}

.border-left {
    border-left: 0.125rem solid #e3e9ef;
}

.oc-button {
    background-color: #c02942 !important;
    color: white !important;
    border-radius: 8px !important;
}

.pi-37 {
    padding-inline: 2.3125rem !important;
}

.phy-button {
    background-color: #014e78 !important;
    color: white;
    border-radius: 8px;
}

@media (min-width: 1400px) {
    .container {
        max-width: 1140px !important;
    }
}

@media (min-width: 62rem) {

    .pr-lg-5,
    .px-lg-5 {
        padding-right: 48px !important;
    }

    .pl-lg-5,
    .px-lg-5 {
        padding-left: 48px !important;
    }
}

.row>* {
    position: relative;
}

.list-inline-item:not(:last-child) {
    margin-right: 0px;
    margin-bottom: 5px;
}

.margin-nagative.mt-n5 {
    margin-top: -48px;
}

.d-flex .flex-1 {
    flex: 1;
}

.rounded {
    border-radius: 5px !important;
}

.rounded-top {
    border-top-left-radius: 5px !important;
    border-top-right-radius: 5px !important;
}

.rounded-left {
    border-top-left-radius: 5px !important;
    border-bottom-left-radius: 5px !important;
}

.rounded-bottom {
    border-bottom-left-radius: 5px !important;
    border-bottom-right-radius: 5px !important;
}

.rounded-right {
    border-top-right-radius: 5px !important;
    border-bottom-right-radius: 5px !important;
}

.rounded-md {
    border-radius: 10px !important;
}

.rounded-lg {
    border-radius: 30px !important;
}

.border {
    border: 1px solid #e9ecef !important;
}

.border-top {
    border-top: 1px solid #e9ecef !important;
}

.border-bottom {
    border-bottom: 1px solid #e9ecef !important;
}

.border-left {
    border-left: 1px solid #e9ecef !important;
}

.border-right {
    border-right: 1px solid #e9ecef !important;
}

.small,
small {
    font-size: 0.9em;
}

.card .card-body {
    padding: 1.5rem;
}

.offcanvas .offcanvas-header .dark-version {
    display: none;
}

.offcanvas .offcanvas-header .light-version {
    display: inline-block;
}

.offcanvas .offcanvas-header .btn-close {
    color: #343a40;
    background: none;
}

.btn-primary {
    background-color: #1da6a0 !important;
    border: 1px solid #1da6a0;
    color: #ffffff !important;
    box-shadow: 0 3px 5px 0 rgba(57, 108, 240, 0.3);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active,
.btn-primary.focus {
    background-color: #1da6a0 !important;
    border-color: #1da6a0 !important;
    color: #ffffff !important;
}

.btn-soft-primary {
    background-color: rgba(57, 108, 240, 0.1) !important;
    border: 1px solid rgba(57, 108, 240, 0.1) !important;
    color: #396cf0 !important;
    box-shadow: 0 3px 5px 0 rgba(57, 108, 240, 0.3);
}

.btn-soft-primary:hover,
.btn-soft-primary:focus,
.btn-soft-primary:active,
.btn-soft-primary.active,
.btn-soft-primary.focus {
    background-color: #396cf0 !important;
    border-color: #396cf0 !important;
    color: #ffffff !important;
}

.btn-outline-primary {
    border: 1px solid #396cf0;
    color: #396cf0;
    background-color: transparent;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:active,
.btn-outline-primary.active,
.btn-outline-primary.focus,
.btn-outline-primary:not(:disabled):not(.disabled):active {
    background-color: #396cf0;
    border-color: #396cf0;
    color: #ffffff !important;
    box-shadow: 0 3px 5px 0 rgba(57, 108, 240, 0.3);
}

.btn-secondary {
    background-color: #5a6d90 !important;
    border: 1px solid #5a6d90 !important;
    color: #ffffff !important;
    box-shadow: 0 3px 5px 0 rgba(90, 109, 144, 0.3);
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active,
.btn-secondary.active,
.btn-secondary.focus {
    background-color: #506180 !important;
    border-color: #506180 !important;
    color: #ffffff !important;
}

.btn-soft-secondary {
    background-color: rgba(90, 109, 144, 0.1) !important;
    border: 1px solid rgba(90, 109, 144, 0.1) !important;
    color: #5a6d90 !important;
    box-shadow: 0 3px 5px 0 rgba(90, 109, 144, 0.3);
}

.btn-soft-secondary:hover,
.btn-soft-secondary:focus,
.btn-soft-secondary:active,
.btn-soft-secondary.active,
.btn-soft-secondary.focus {
    background-color: #5a6d90 !important;
    border-color: #5a6d90 !important;
    color: #ffffff !important;
}

.btn-outline-secondary {
    border: 1px solid #5a6d90;
    color: #5a6d90;
    background-color: transparent;
}

.btn-outline-secondary:hover,
.btn-outline-secondary:focus,
.btn-outline-secondary:active,
.btn-outline-secondary.active,
.btn-outline-secondary.focus,
.btn-outline-secondary:not(:disabled):not(.disabled):active {
    background-color: #5a6d90;
    border-color: #5a6d90;
    color: #ffffff !important;
    box-shadow: 0 3px 5px 0 rgba(90, 109, 144, 0.3);
}

.btn-success {
    background-color: #53c797 !important;
    border: 1px solid #53c797 !important;
    color: #ffffff !important;
    box-shadow: 0 3px 5px 0 rgba(83, 199, 151, 0.3);
}

.btn-success:hover,
.btn-success:focus,
.btn-success:active,
.btn-success.active,
.btn-success.focus {
    background-color: #40c18b !important;
    border-color: #40c18b !important;
    color: #ffffff !important;
}

.btn-soft-success {
    background-color: rgba(83, 199, 151, 0.1) !important;
    border: 1px solid rgba(83, 199, 151, 0.1) !important;
    color: #53c797 !important;
    box-shadow: 0 3px 5px 0 rgba(83, 199, 151, 0.3);
}

.btn-soft-success:hover,
.btn-soft-success:focus,
.btn-soft-success:active,
.btn-soft-success.active,
.btn-soft-success.focus {
    background-color: #53c797 !important;
    border-color: #53c797 !important;
    color: #ffffff !important;
}

.btn-outline-success {
    border: 1px solid #53c797;
    color: #53c797;
    background-color: transparent;
}

.btn-outline-success:hover,
.btn-outline-success:focus,
.btn-outline-success:active,
.btn-outline-success.active,
.btn-outline-success.focus,
.btn-outline-success:not(:disabled):not(.disabled):active {
    background-color: #53c797;
    border-color: #53c797;
    color: #ffffff !important;
    box-shadow: 0 3px 5px 0 rgba(83, 199, 151, 0.3);
}

.btn-warning {
    background-color: #f1b561 !important;
    border: 1px solid #f1b561 !important;
    color: #ffffff !important;
    box-shadow: 0 3px 5px 0 rgba(241, 181, 97, 0.3);
}

.btn-warning:hover,
.btn-warning:focus,
.btn-warning:active,
.btn-warning.active,
.btn-warning.focus {
    background-color: #efaa4a !important;
    border-color: #efaa4a !important;
    color: #ffffff !important;
}

.btn-soft-warning {
    background-color: rgba(241, 181, 97, 0.1) !important;
    border: 1px solid rgba(241, 181, 97, 0.1) !important;
    color: #f1b561 !important;
    box-shadow: 0 3px 5px 0 rgba(241, 181, 97, 0.3);
}

.btn-soft-warning:hover,
.btn-soft-warning:focus,
.btn-soft-warning:active,
.btn-soft-warning.active,
.btn-soft-warning.focus {
    background-color: #f1b561 !important;
    border-color: #f1b561 !important;
    color: #ffffff !important;
}

.btn-outline-warning {
    border: 1px solid #f1b561;
    color: #f1b561;
    background-color: transparent;
}

.btn-outline-warning:hover,
.btn-outline-warning:focus,
.btn-outline-warning:active,
.btn-outline-warning.active,
.btn-outline-warning.focus,
.btn-outline-warning:not(:disabled):not(.disabled):active {
    background-color: #f1b561;
    border-color: #f1b561;
    color: #ffffff !important;
    box-shadow: 0 3px 5px 0 rgba(241, 181, 97, 0.3);
}

.btn-info {
    background-color: #64c2f1 !important;
    border: 1px solid #64c2f1 !important;
    color: #ffffff !important;
    box-shadow: 0 3px 5px 0 rgba(100, 194, 241, 0.3);
}

.btn-info:hover,
.btn-info:focus,
.btn-info:active,
.btn-info.active,
.btn-info.focus {
    background-color: #4db9ef !important;
    border-color: #4db9ef !important;
    color: #ffffff !important;
}

.btn-soft-info {
    background-color: rgba(100, 194, 241, 0.1) !important;
    border: 1px solid rgba(100, 194, 241, 0.1) !important;
    color: #64c2f1 !important;
    box-shadow: 0 3px 5px 0 rgba(100, 194, 241, 0.3);
}

.btn-soft-info:hover,
.btn-soft-info:focus,
.btn-soft-info:active,
.btn-soft-info.active,
.btn-soft-info.focus {
    background-color: #64c2f1 !important;
    border-color: #64c2f1 !important;
    color: #ffffff !important;
}

.btn-outline-info {
    border: 1px solid #64c2f1;
    color: #64c2f1;
    background-color: transparent;
}

.btn-outline-info:hover,
.btn-outline-info:focus,
.btn-outline-info:active,
.btn-outline-info.active,
.btn-outline-info.focus,
.btn-outline-info:not(:disabled):not(.disabled):active {
    background-color: #64c2f1;
    border-color: #64c2f1;
    color: #ffffff !important;
    box-shadow: 0 3px 5px 0 rgba(100, 194, 241, 0.3);
}

.btn-danger {
    background-color: #f0735a !important;
    border: 1px solid #f0735a !important;
    color: #ffffff !important;
    box-shadow: 0 3px 5px 0 rgba(240, 115, 90, 0.3);
}

.btn-danger:hover,
.btn-danger:focus,
.btn-danger:active,
.btn-danger.active,
.btn-danger.focus {
    background-color: #ee5f43 !important;
    border-color: #ee5f43 !important;
    color: #ffffff !important;
}

.btn-soft-danger {
    background-color: rgba(240, 115, 90, 0.1) !important;
    border: 1px solid rgba(240, 115, 90, 0.1) !important;
    color: #f0735a !important;
    box-shadow: 0 3px 5px 0 rgba(240, 115, 90, 0.3);
}

.btn-soft-danger:hover,
.btn-soft-danger:focus,
.btn-soft-danger:active,
.btn-soft-danger.active,
.btn-soft-danger.focus {
    background-color: #f0735a !important;
    border-color: #f0735a !important;
    color: #ffffff !important;
}

.btn-outline-danger {
    border: 1px solid #f0735a;
    color: #f0735a;
    background-color: transparent;
}

.btn-outline-danger:hover,
.btn-outline-danger:focus,
.btn-outline-danger:active,
.btn-outline-danger.active,
.btn-outline-danger.focus,
.btn-outline-danger:not(:disabled):not(.disabled):active {
    background-color: #f0735a;
    border-color: #f0735a;
    color: #ffffff !important;
    box-shadow: 0 3px 5px 0 rgba(240, 115, 90, 0.3);
}

.btn-dark {
    background-color: #343a40 !important;
    border: 1px solid #343a40 !important;
    color: #ffffff !important;
    box-shadow: 0 3px 5px 0 rgba(52, 58, 64, 0.3);
}

.btn-dark:hover,
.btn-dark:focus,
.btn-dark:active,
.btn-dark.active,
.btn-dark.focus {
    background-color: #292d32 !important;
    border-color: #292d32 !important;
    color: #ffffff !important;
}

.btn-soft-dark {
    background-color: rgba(52, 58, 64, 0.1) !important;
    border: 1px solid rgba(52, 58, 64, 0.1) !important;
    color: #343a40 !important;
    box-shadow: 0 3px 5px 0 rgba(52, 58, 64, 0.3);
}

.btn-soft-dark:hover,
.btn-soft-dark:focus,
.btn-soft-dark:active,
.btn-soft-dark.active,
.btn-soft-dark.focus {
    background-color: #343a40 !important;
    border-color: #343a40 !important;
    color: #ffffff !important;
}

.btn-outline-dark {
    border: 1px solid #343a40;
    color: #343a40;
    background-color: transparent;
}

.btn-outline-dark:hover,
.btn-outline-dark:focus,
.btn-outline-dark:active,
.btn-outline-dark.active,
.btn-outline-dark.focus,
.btn-outline-dark:not(:disabled):not(.disabled):active {
    background-color: #343a40;
    border-color: #343a40;
    color: #ffffff !important;
    box-shadow: 0 3px 5px 0 rgba(52, 58, 64, 0.3);
}

.btn-muted {
    background-color: #8492a6 !important;
    border: 1px solid #8492a6 !important;
    color: #ffffff !important;
    box-shadow: 0 3px 5px 0 rgba(132, 146, 166, 0.3);
}

.btn-muted:hover,
.btn-muted:focus,
.btn-muted:active,
.btn-muted.active,
.btn-muted.focus {
    background-color: #75859b !important;
    border-color: #75859b !important;
    color: #ffffff !important;
}

.btn-soft-muted {
    background-color: rgba(132, 146, 166, 0.1) !important;
    border: 1px solid rgba(132, 146, 166, 0.1) !important;
    color: #8492a6 !important;
    box-shadow: 0 3px 5px 0 rgba(132, 146, 166, 0.3);
}

.btn-soft-muted:hover,
.btn-soft-muted:focus,
.btn-soft-muted:active,
.btn-soft-muted.active,
.btn-soft-muted.focus {
    background-color: #8492a6 !important;
    border-color: #8492a6 !important;
    color: #ffffff !important;
}

.btn-outline-muted {
    border: 1px solid #8492a6;
    color: #8492a6;
    background-color: transparent;
}

.btn-outline-muted:hover,
.btn-outline-muted:focus,
.btn-outline-muted:active,
.btn-outline-muted.active,
.btn-outline-muted.focus,
.btn-outline-muted:not(:disabled):not(.disabled):active {
    background-color: #8492a6;
    border-color: #8492a6;
    color: #ffffff !important;
    box-shadow: 0 3px 5px 0 rgba(132, 146, 166, 0.3);
}

.btn-light {
    background-color: #f8f9fc !important;
    border: 1px solid #f8f9fc !important;
    color: #ffffff !important;
    box-shadow: 0 3px 5px 0 rgba(248, 249, 252, 0.3);
}

.btn-light:hover,
.btn-light:focus,
.btn-light:active,
.btn-light.active,
.btn-light.focus {
    background-color: #e6eaf4 !important;
    border-color: #e6eaf4 !important;
    color: #ffffff !important;
}

.btn-soft-light {
    background-color: rgba(248, 249, 252, 0.1) !important;
    border: 1px solid rgba(248, 249, 252, 0.1) !important;
    color: #f8f9fc !important;
    box-shadow: 0 3px 5px 0 rgba(248, 249, 252, 0.3);
}

.btn-soft-light:hover,
.btn-soft-light:focus,
.btn-soft-light:active,
.btn-soft-light.active,
.btn-soft-light.focus {
    background-color: #f8f9fc !important;
    border-color: #f8f9fc !important;
    color: #ffffff !important;
}

.btn-outline-light {
    border: 1px solid #f8f9fc;
    color: #f8f9fc;
    background-color: transparent;
}

.btn-outline-light:hover,
.btn-outline-light:focus,
.btn-outline-light:active,
.btn-outline-light.active,
.btn-outline-light.focus,
.btn-outline-light:not(:disabled):not(.disabled):active {
    background-color: #f8f9fc;
    border-color: #f8f9fc;
    color: #ffffff !important;
    box-shadow: 0 3px 5px 0 rgba(248, 249, 252, 0.3);
}

.btn-footer {
    background-color: #202942 !important;
    border: 1px solid #202942 !important;
    color: #ffffff !important;
    box-shadow: 0 3px 5px 0 rgba(32, 41, 66, 0.3);
}

.btn-footer:hover,
.btn-footer:focus,
.btn-footer:active,
.btn-footer.active,
.btn-footer.focus {
    background-color: #181e30 !important;
    border-color: #181e30 !important;
    color: #ffffff !important;
}

.btn-soft-footer {
    background-color: rgba(32, 41, 66, 0.1) !important;
    border: 1px solid rgba(32, 41, 66, 0.1) !important;
    color: #202942 !important;
    box-shadow: 0 3px 5px 0 rgba(32, 41, 66, 0.3);
}

.btn-soft-footer:hover,
.btn-soft-footer:focus,
.btn-soft-footer:active,
.btn-soft-footer.active,
.btn-soft-footer.focus {
    background-color: #202942 !important;
    border-color: #202942 !important;
    color: #ffffff !important;
}

.btn-outline-footer {
    border: 1px solid #202942;
    color: #202942;
    background-color: transparent;
}

.btn-outline-footer:hover,
.btn-outline-footer:focus,
.btn-outline-footer:active,
.btn-outline-footer.active,
.btn-outline-footer.focus,
.btn-outline-footer:not(:disabled):not(.disabled):active {
    background-color: #202942;
    border-color: #202942;
    color: #ffffff !important;
    box-shadow: 0 3px 5px 0 rgba(32, 41, 66, 0.3);
}

#sidenavbar .btn {
    padding: 0px 20px;
}

.filter-accordion-body {
    border-top: none;
}

.filter-accordion-body li {
    list-style: none;
}

.cursor {
    cursor: pointer;
}

.filter-accordion-body li :active {
    background-color: #ADD9F1 !important;
    border-radius: 28.5008px;
    color: #000000;
}

.btn {
    padding: 8px 20px;
    outline: none;
    text-decoration: none;
    font-size: 15px;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    border-radius: 5px;
}

.btn:focus {
    box-shadow: none !important;
}

.btn.btn-sm {
    padding: 7px 16px;
    font-size: 10px;
}

.btn.btn-lg {
    padding: 14px 30px;
    font-size: 16px;
}

.btn.btn-pills {
    border-radius: 30px;
}

.btn.btn-light {
    color: #343a40 !important;
    border: 1px solid #dee2e6 !important;
}

.btn.btn-light:hover,
.btn.btn-light:focus,
.btn.btn-light:active,
.btn.btn-light.active,
.btn.btn-light.focus {
    background-color: white !important;
    color: #343a40 !important;
}

.btn.btn-soft-light {
    color: rgba(52, 58, 64, 0.5) !important;
    border: 1px solid rgba(248, 249, 252, 0.1) !important;
    background-color: rgba(248, 249, 252, 0.1);
    box-shadow: 0 3px 5px 0 rgba(248, 249, 252, 0.2);
}

.btn.btn-soft-light:hover,
.btn.btn-soft-light:focus,
.btn.btn-soft-light:active,
.btn.btn-soft-light.active,
.btn.btn-soft-light.focus {
    color: #343a40 !important;
}

.btn.btn-soft-light-alt {
    background-color: rgba(248, 249, 252, 0.1);
    color: #f8f9fc;
    border: 1px solid rgba(248, 249, 252, 0.1);
    box-shadow: 0 3px 5px 0 rgba(248, 249, 252, 0.2);
}

.btn.btn-soft-light-alt:hover,
.btn.btn-soft-light-alt:focus,
.btn.btn-soft-light-alt:active,
.btn.btn-soft-light-alt.active,
.btn.btn-soft-light-alt.focus {
    background: #ffffff;
    color: #343a40 !important;
}

.btn.btn-outline-light {
    border: 1px solid #dee2e6 !important;
    color: #343a40 !important;
    background-color: transparent;
}

.btn.btn-outline-light:hover,
.btn.btn-outline-light:focus,
.btn.btn-outline-light:active,
.btn.btn-outline-light.active,
.btn.btn-outline-light.focus {
    background-color: #f8f9fc !important;
}

.btn.btn-outline-light-alt {
    border: 1px solid #dee2e6 !important;
    color: #ffffff !important;
    background-color: transparent;
}

.btn.btn-outline-light-alt:hover,
.btn.btn-outline-light-alt:focus,
.btn.btn-outline-light-alt:active,
.btn.btn-outline-light-alt.active,
.btn.btn-outline-light-alt.focus {
    background-color: #f8f9fc !important;
    color: #343a40 !important;
}

.btn.btn-icon {
    height: 36px;
    width: 36px;
    line-height: 34px;
    padding: 0;
}

.btn.btn-icon .icons {
    height: 16px;
    width: 16px;
    font-size: 16px;
}

.btn.btn-icon.btn-lg {
    height: 48px;
    width: 48px;
    line-height: 46px;
}

.btn.btn-icon.btn-lg .icons {
    height: 20px;
    width: 20px;
    font-size: 20px;
}

.btn.btn-icon.btn-sm {
    height: 30px;
    width: 30px;
    line-height: 28px;
}

button:not(:disabled) {
    outline: none;
}

.shadow {
    box-shadow: 0px 0px 16px 0px #c9cbd3 !important;
}

.shadow-lg {
    box-shadow: 0 10px 25px rgba(52, 58, 64, 0.15) !important;
}

.shadow-md {
    box-shadow: 0 5px 13px rgba(52, 58, 64, 0.2) !important;
}

.badge-primary {
    background-color: #396cf0 !important;
    color: #ffffff !important;
}

.badge-outline-primary {
    background-color: transparent !important;
    color: #396cf0 !important;
    border: 1px solid #396cf0 !important;
}

.badge-soft-primary {
    background-color: rgba(57, 108, 240, 0.1) !important;
    border: 1px solid rgba(57, 108, 240, 0.1) !important;
    color: #396cf0 !important;
}

.badge-secondary {
    background-color: #5a6d90 !important;
    color: #ffffff !important;
}

.badge-outline-secondary {
    background-color: transparent !important;
    color: #5a6d90 !important;
    border: 1px solid #5a6d90 !important;
}

.badge-soft-secondary {
    background-color: rgba(90, 109, 144, 0.1) !important;
    border: 1px solid rgba(90, 109, 144, 0.1) !important;
    color: #5a6d90 !important;
}

.badge-success {
    background-color: #53c797 !important;
    color: #ffffff !important;
}

.badge-outline-success {
    background-color: transparent !important;
    color: #53c797 !important;
    border: 1px solid #53c797 !important;
}

.badge-soft-success {
    background-color: rgba(83, 199, 151, 0.1) !important;
    border: 1px solid rgba(83, 199, 151, 0.1) !important;
    color: #53c797 !important;
}

.badge-warning {
    background-color: #f1b561 !important;
    color: #ffffff !important;
}

.badge-outline-warning {
    background-color: transparent !important;
    color: #f1b561 !important;
    border: 1px solid #f1b561 !important;
}

.badge-soft-warning {
    background-color: rgba(241, 181, 97, 0.1) !important;
    border: 1px solid rgba(241, 181, 97, 0.1) !important;
    color: #f1b561 !important;
}

.badge-info {
    background-color: #64c2f1 !important;
    color: #ffffff !important;
}

.badge-outline-info {
    background-color: transparent !important;
    color: #64c2f1 !important;
    border: 1px solid #64c2f1 !important;
}

.badge-soft-info {
    background-color: rgba(100, 194, 241, 0.1) !important;
    border: 1px solid rgba(100, 194, 241, 0.1) !important;
    color: #64c2f1 !important;
}

.badge-danger {
    background-color: #f0735a !important;
    color: #ffffff !important;
}

.badge-outline-danger {
    background-color: transparent !important;
    color: #f0735a !important;
    border: 1px solid #f0735a !important;
}

.badge-soft-danger {
    background-color: rgba(240, 115, 90, 0.1) !important;
    border: 1px solid rgba(240, 115, 90, 0.1) !important;
    color: #f0735a !important;
}

.badge-dark {
    background-color: #343a40 !important;
    color: #ffffff !important;
}

.badge-outline-dark {
    background-color: transparent !important;
    color: #343a40 !important;
    border: 1px solid #343a40 !important;
}

.badge-soft-dark {
    background-color: rgba(52, 58, 64, 0.1) !important;
    border: 1px solid rgba(52, 58, 64, 0.1) !important;
    color: #343a40 !important;
}

.badge-muted {
    background-color: #8492a6 !important;
    color: #ffffff !important;
}

.badge-outline-muted {
    background-color: transparent !important;
    color: #8492a6 !important;
    border: 1px solid #8492a6 !important;
}

.badge-soft-muted {
    background-color: rgba(132, 146, 166, 0.1) !important;
    border: 1px solid rgba(132, 146, 166, 0.1) !important;
    color: #8492a6 !important;
}

.badge-light {
    background-color: #f8f9fc !important;
    color: #ffffff !important;
}

.badge-outline-light {
    background-color: transparent !important;
    color: #f8f9fc !important;
    border: 1px solid #f8f9fc !important;
}

.badge-soft-light {
    background-color: rgba(248, 249, 252, 0.1) !important;
    border: 1px solid rgba(248, 249, 252, 0.1) !important;
    color: #f8f9fc !important;
}

.badge-footer {
    background-color: #202942 !important;
    color: #ffffff !important;
}

.badge-outline-footer {
    background-color: transparent !important;
    color: #202942 !important;
    border: 1px solid #202942 !important;
}

.badge-soft-footer {
    background-color: rgba(32, 41, 66, 0.1) !important;
    border: 1px solid rgba(32, 41, 66, 0.1) !important;
    color: #202942 !important;
}

.badge {
    display: inline-block;
    letter-spacing: 0.5px;
    padding: 4px 8px;
    font-weight: 600;
    line-height: 1;
    text-align: center;
}

.badge.badge-light {
    color: #343a40 !important;
    background-color: #f8f9fc !important;
}

.badge.badge-outline-light {
    color: #343a40 !important;
    border: 1px solid white !important;
    background-color: transparent !important;
}

.badge.badge-pill {
    border-radius: 12px;
}

.badge:focus,
.badge.focus {
    box-shadow: none !important;
}

.dropdown-primary .dropdown-menu .dropdown-item:hover,
.dropdown-primary .dropdown-menu .dropdown-item.active,
.dropdown-primary .dropdown-menu .dropdown-item:active,
.dropdown-primary .dropdown-menu .dropdown-item.focus,
.dropdown-primary .dropdown-menu .dropdown-item:focus {
    background-color: transparent;
    color: #396cf0 !important;
}

.dropdown-secondary .dropdown-menu .dropdown-item:hover,
.dropdown-secondary .dropdown-menu .dropdown-item.active,
.dropdown-secondary .dropdown-menu .dropdown-item:active,
.dropdown-secondary .dropdown-menu .dropdown-item.focus,
.dropdown-secondary .dropdown-menu .dropdown-item:focus {
    background-color: transparent;
    color: #5a6d90 !important;
}

.dropdown-success .dropdown-menu .dropdown-item:hover,
.dropdown-success .dropdown-menu .dropdown-item.active,
.dropdown-success .dropdown-menu .dropdown-item:active,
.dropdown-success .dropdown-menu .dropdown-item.focus,
.dropdown-success .dropdown-menu .dropdown-item:focus {
    background-color: transparent;
    color: #53c797 !important;
}

.dropdown-warning .dropdown-menu .dropdown-item:hover,
.dropdown-warning .dropdown-menu .dropdown-item.active,
.dropdown-warning .dropdown-menu .dropdown-item:active,
.dropdown-warning .dropdown-menu .dropdown-item.focus,
.dropdown-warning .dropdown-menu .dropdown-item:focus {
    background-color: transparent;
    color: #f1b561 !important;
}

.dropdown-info .dropdown-menu .dropdown-item:hover,
.dropdown-info .dropdown-menu .dropdown-item.active,
.dropdown-info .dropdown-menu .dropdown-item:active,
.dropdown-info .dropdown-menu .dropdown-item.focus,
.dropdown-info .dropdown-menu .dropdown-item:focus {
    background-color: transparent;
    color: #64c2f1 !important;
}

.dropdown-danger .dropdown-menu .dropdown-item:hover,
.dropdown-danger .dropdown-menu .dropdown-item.active,
.dropdown-danger .dropdown-menu .dropdown-item:active,
.dropdown-danger .dropdown-menu .dropdown-item.focus,
.dropdown-danger .dropdown-menu .dropdown-item:focus {
    background-color: transparent;
    color: #f0735a !important;
}

.dropdown-dark .dropdown-menu .dropdown-item:hover,
.dropdown-dark .dropdown-menu .dropdown-item.active,
.dropdown-dark .dropdown-menu .dropdown-item:active,
.dropdown-dark .dropdown-menu .dropdown-item.focus,
.dropdown-dark .dropdown-menu .dropdown-item:focus {
    background-color: transparent;
    color: #343a40 !important;
}

.dropdown-muted .dropdown-menu .dropdown-item:hover,
.dropdown-muted .dropdown-menu .dropdown-item.active,
.dropdown-muted .dropdown-menu .dropdown-item:active,
.dropdown-muted .dropdown-menu .dropdown-item.focus,
.dropdown-muted .dropdown-menu .dropdown-item:focus {
    background-color: transparent;
    color: #8492a6 !important;
}

.dropdown-light .dropdown-menu .dropdown-item:hover,
.dropdown-light .dropdown-menu .dropdown-item.active,
.dropdown-light .dropdown-menu .dropdown-item:active,
.dropdown-light .dropdown-menu .dropdown-item.focus,
.dropdown-light .dropdown-menu .dropdown-item:focus {
    background-color: transparent;
    color: #f8f9fc !important;
}

.dropdown-footer .dropdown-menu .dropdown-item:hover,
.dropdown-footer .dropdown-menu .dropdown-item.active,
.dropdown-footer .dropdown-menu .dropdown-item:active,
.dropdown-footer .dropdown-menu .dropdown-item.focus,
.dropdown-footer .dropdown-menu .dropdown-item:focus {
    background-color: transparent;
    color: #202942 !important;
}

.search_heading {
    width: 61% !important;
    margin: 0 auto;
}

.search_heading h3 {
    font-size: 40px;
    color: black !important;
}

.search_cities_list_drop .dropdown-menu {
    min-width: 14rem !important;
}

.dropdown-menu {
    margin-top: 10px;
    border: 0;
    border-radius: 5px;
    box-shadow: 0 0 3px rgba(52, 58, 64, 0.15);
    top: 2px !important;
}

.dropdown-menu .dropdown-item {
    padding: 5px 20px;
    clear: both;
    white-space: nowrap;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-weight: 600;
}

.dropdown .dropdown-toggle:after {
    display: none !important;
}

.alert-primary {
    background-color: rgba(57, 108, 240, 0.9);
    color: #ffffff;
    border-color: #396cf0;
}

.alert-primary .alert-link {
    color: #0a2d86;
}

.alert-outline-primary {
    background-color: transparent;
    color: #396cf0;
    border-color: #396cf0;
}

.alert-secondary {
    background-color: rgba(90, 109, 144, 0.9);
    color: #ffffff;
    border-color: #5a6d90;
}

.alert-secondary .alert-link {
    color: #1f2632;
}

.alert-outline-secondary {
    background-color: transparent;
    color: #5a6d90;
    border-color: #5a6d90;
}

.alert-success {
    background-color: rgba(83, 199, 151, 0.9);
    color: #ffffff;
    border-color: #53c797;
}

.alert-success .alert-link {
    color: #206146;
}

.alert-outline-success {
    background-color: transparent;
    color: #53c797;
    border-color: #53c797;
}

.alert-warning {
    background-color: rgba(241, 181, 97, 0.9);
    color: #ffffff;
    border-color: #f1b561;
}

.alert-warning .alert-link {
    color: #aa690f;
}

.alert-outline-warning {
    background-color: transparent;
    color: #f1b561;
    border-color: #f1b561;
}

.alert-info {
    background-color: rgba(100, 194, 241, 0.9);
    color: #ffffff;
    border-color: #64c2f1;
}

.alert-info .alert-link {
    color: #1078ac;
}

.alert-outline-info {
    background-color: transparent;
    color: #64c2f1;
    border-color: #64c2f1;
}

.alert-danger {
    background-color: rgba(240, 115, 90, 0.9);
    color: #ffffff;
    border-color: #f0735a;
}

.alert-danger .alert-link {
    color: #a2270f;
}

.alert-outline-danger {
    background-color: transparent;
    color: #f0735a;
    border-color: #f0735a;
}

.alert-dark {
    background-color: rgba(52, 58, 64, 0.9);
    color: #ffffff;
    border-color: #343a40;
}

.alert-dark .alert-link {
    color: black;
}

.alert-outline-dark {
    background-color: transparent;
    color: #343a40;
    border-color: #343a40;
}

.alert-muted {
    background-color: rgba(132, 146, 166, 0.9);
    color: #ffffff;
    border-color: #8492a6;
}

.alert-muted .alert-link {
    color: #3d4654;
}

.alert-outline-muted {
    background-color: transparent;
    color: #8492a6;
    border-color: #8492a6;
}

.alert-light {
    background-color: rgba(248, 249, 252, 0.9);
    color: #ffffff;
    border-color: #f8f9fc;
}

.alert-light .alert-link {
    color: #8d9dce;
}

.alert-outline-light {
    background-color: transparent;
    color: #f8f9fc;
    border-color: #f8f9fc;
}

.alert-footer {
    background-color: rgba(32, 41, 66, 0.9);
    color: #ffffff;
    border-color: #202942;
}

.alert-footer .alert-link {
    color: black;
}

.alert-outline-footer {
    background-color: transparent;
    color: #202942;
    border-color: #202942;
}

.alert {
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 14px;
}

.alert.alert-light {
    background-color: white;
    color: #343a40;
    border-color: #e9ecef;
}

.alert.alert-dismissible {
    padding-right: 30px;
}

.alert.alert-dismissible .close {
    top: -2px;
    right: -10px;
    font-size: 16px !important;
}

.alert.alert-pills {
    border-radius: 30px;
    display: inline-block;
}

.alert.alert-pills .content {
    font-weight: 600;
}

/*.breadcrumb {*/
/*  letter-spacing: 0.5px;*/
/*  padding: 8px 24px;*/
/*  display: block;*/
/*}*/

/*.breadcrumb .breadcrumb-item {*/
/*  text-transform: uppercase;*/
/*  font-size: 12px;*/
/*  font-weight: 500;*/
/*  padding-left: 0;*/
/*  display: inline-block;*/
/*}*/

/*.breadcrumb .breadcrumb-item a {*/
/*  color: #343a40;*/
/*}*/

.breadcrumb {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0 0;
    margin-bottom: 0;
    list-style: none;
    background-color: transparent;
    border-radius: 0.3125rem;
}

.breadcrumb .breadcrumb-item a:hover {
    color: #396cf0;
}

.breadcrumb .breadcrumb-item.active {
    color: #396cf0;
}

.breadcrumb .breadcrumb-item:before {
    content: "";
}

.breadcrumb .breadcrumb-item:after {
    content: "\F0142" !important;
    color: #343a40;
    font-family: 'Material Design Icons';
    padding-left: 5px;
}

.breadcrumb .breadcrumb-item:last-child:after {
    display: none;
}

.pagination .page-item:first-child .page-link {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.pagination .page-item:last-child .page-link {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

.pagination .page-item .page-link {
    color: #343a40;
    border: 1px solid #dee2e6;
    padding: 8px 16px;
    font-size: 14px;
}

.pagination .page-item .page-link:focus {
    box-shadow: none;
}

.pagination .page-item .page-link:hover {
    color: #ffffff;
    background: rgba(57, 108, 240, 0.9);
    border-color: rgba(57, 108, 240, 0.9);
}

.pagination .page-item.active .page-link {
    color: #ffffff;
    background: #396cf0 !important;
    border-color: #396cf0;
    cursor: not-allowed;
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(45deg, #ffffff, #ffffff);
    z-index: 9999999;
}

#preloader #status {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

#preloader #status .spinner {
    width: 40px;
    height: 40px;
    position: relative;
    margin: 100px auto;
}

#preloader #status .spinner .double-bounce1,
#preloader #status .spinner .double-bounce2 {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #396cf0;
    opacity: 0.6;
    position: absolute;
    top: 0;
    left: 0;
    animation: sk-bounce 2s infinite ease-in-out;
}

#preloader #status .spinner .double-bounce2 {
    animation-delay: -1s;
}

@keyframes sk-bounce {

    0%,
    100% {
        transform: scale(0);
    }

    50% {
        transform: scale(1);
    }
}

.avatar.avatar-ex-sm {
    height: 30px;
    width: 30px;
}

.avatar.avatar-ex-small {
    height: 36px;
    width: 36px;
}

.avatar.avatar-md-sm {
    height: 45px;
    width: 45px;
}

.avatar.avatar-small {
    height: 65px;
    width: 65px;
}

.avatar.avatar-md-md {
    height: 80px;
    width: 80px;
}

.avatar.avatar-medium {
    height: 110px;
    width: 110px;
}

.avatar.avatar-large {
    height: 140px;
    width: 140px;
}

.avatar.avatar-ex-large {
    height: 180px;
    width: 180px;
}

.avatar.avatar-client {
    max-height: 25px;
}

.accordion .accordion-item {
    overflow: hidden;
    background: transparent;
}

.accordion .accordion-item .accordion-button {
    font-weight: 600;
    text-align: left;
    box-shadow: none;
    padding: 1rem 2.5rem 1rem 1.25rem;
}

.accordion .accordion-item .accordion-button:focus {
    box-shadow: none;
}

.accordion .accordion-item .accordion-button:before {
    content: '\F0143';
    display: block;
    font-family: 'Material Design Icons';
    font-size: 16px;
    color: #396cf0;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.5s ease;
}

.accordion .accordion-item .accordion-button.collapsed {
    background-color: #ffffff;
    color: #343a40 !important;
    transition: all 0.5s;
}

.accordion .accordion-item .accordion-button.collapsed:before {
    top: 15px;
    transform: rotate(180deg);
    color: #343a40 !important;
}

.accordion .accordion-item .accordion-button:after {
    display: none;
}

.nav-pills {
    margin-bottom: 15px;
    background: #f4f6fa;
}

.nav-pills .nav-link {
    color: #495057 !important;
    padding: 5px;
    transition: all 0.5s ease;
}

.nav-pills .nav-link.nav-link-alt.active {
    background: #343a40;
    color: #ffffff !important;
}

.nav-pills .nav-link.active {
    background: black;
    color: #ffffff !important;
}

.nav-pills .nav-link.active .tab-para {
    color: rgba(255, 255, 255, 0.65) !important;
}

.nav-pills a .title {
    font-size: 17px !important;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    color: #396cf0 !important;
    border-color: transparent transparent #396cf0 !important;
}

.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
    border-color: transparent;
}

.progress-box .title {
    font-size: 15px;
}

.progress-box .progress {
    height: 8px;
    overflow: visible;
}

.progress-box .progress .progress-bar {
    border-radius: 5px;
    overflow: visible !important;
}

.progress-box .progress .progress-value {
    position: absolute;
    top: -28px;
    right: -15px;
    font-size: 14px;
}

.blockquote {
    border-left: 3px solid #dee2e6;
    border-radius: 5px;
    font-size: 16px;
}

.form-label {
    font-weight: 500;
}

.form-control {
    border: 1px solid #e9ecef;
    font-size: 14px;
    line-height: 26px;
    background-color: #ffffff;
}

.form-control:focus {
    border-color: #396cf0;
    box-shadow: none;
}

.form-control[readonly] {
    background-color: #ffffff;
}

.form-control:disabled {
    background-color: #e9ecef;
}

.form-control::placeholder {
    color: rgb(72, 72, 72);
}

.form-check-input:focus {
    border-color: #396cf0;
    box-shadow: none;
}

.select2-container {
    display: block !important;
    width: 100% !important;
}

.select2-container--default .select2-selection--single {
    background-color: #ffffff !important;
    border: 1px solid #dee2e6 !important;
    border-radius: 5px !important;
    height: 40px !important;
    text-align: left;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #343a40 !important;
    line-height: 40px !important;
    font-size: 13px !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #343a40 transparent transparent transparent;
    top: 20px;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: transparent transparent #343a40 transparent;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid #dee2e6;
    border-radius: 5px;
}

.select2-container--default .select2-search--dropdown .select2-search__field:focus {
    outline: none;
    border-color: #396cf0 !important;
}

.select2-container--default .select2-results__option--selected {
    background-color: #396cf0 !important;
    color: #ffffff !important;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: #396cf0 !important;
    color: #ffffff !important;
}

.select2-selection:focus,
.select2-selection:active {
    outline: none;
    border-color: #396cf0 !important;
}

.select2-results__option {
    color: #8492a6;
}

.select2-dropdown {
    border: 1px solid #dee2e6 !important;
    border-radius: 5px !important;
}

.apexcharts-tooltip {
    background: #ffffff !important;
    color: #343a40;
    border-color: #e9ecef !important;
}

.horizontal-scroll {
    overflow-x: auto;
    white-space: nowrap;
}

.mr-1,
.mx-1 {
    margin-right: 4px !important;
}

.oc-card {
    border-radius: 0.4375rem;
    border: #014e78 solid 0.0625rem;
    cursor: pointer;
}

.pb-1,
.py-1 {
    padding-bottom: 4px !important;
}

.pl-0,
.px-0 {
    padding-left: 0 !important;
}

.pl-4,
.px-4 {
    padding-left: 24px !important;
}

.select-time-dropdown {
    border: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: 0.3125rem;
    font-size: .8125rem;
    line-height: 1.25rem;
    color: rgba(0, 0, 0, 0.7);
    outline: none;
    padding-block: 4px;
    padding-inline: 4px;
}

label:not(.form-check-label):not(.custom-control-label):not(.custom-file-label):not(.custom-option-label) {
    color: #373f50;
}

.time-gap {
    gap: 1.125rem;
}

.pl-3,
.px-3 {
    padding-left: 16px !important;
}

.apexcharts-gridlines-horizontal,
.apexcharts-gridlines-vertical,
.apexcharts-grid,
.apexcharts-gridline,
.apexcharts-xaxis-tick,
.apexcharts-xaxis line,
.apexcharts-gridline line,
.apexcharts-radar-series line,
.apexcharts-area-series .apexcharts-series-markers .apexcharts-marker.no-pointer-events,
.apexcharts-line-series .apexcharts-series-markers .apexcharts-marker.no-pointer-events,
.apexcharts-radar-series path,
.apexcharts-radar-series polygon {
    pointer-events: none;
    stroke: #e9ecef;
}

.apexcharts-tooltip-title {
    background: #ffffff !important;
    color: #343a40;
    border-color: #e9ecef !important;
}

.apexcharts-data-labels,
.apexcharts-datalabels text,
.apexcharts-xaxis text,
.apexcharts-yaxis text {
    fill: #343a40 !important;
}

.apexcharts-legend-text {
    color: #343a40 !important;
    font-family: "Inter", sans-serif !important;
}

.map {
    line-height: 0;
}

.map iframe {
    width: 100%;
    height: 400px;
}

.subcribe-form .btn {
    padding: 10px 20px;
}

.subcribe-form input {
    padding: 12px 20px;
    width: 100%;
    color: #343a40 !important;
    border: none;
    outline: none !important;
    padding-right: 160px;
    padding-left: 20px;
    background-color: rgba(255, 255, 255, 0.8);
}

.subcribe-form button {
    position: absolute;
    top: 1.5px;
    right: 2px;
    outline: none !important;
}

.subcribe-form form {
    position: relative;
    max-width: 600px;
    margin: 0px auto;
}

.table-responsive {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.table-responsive .table td,
.table-responsive .table th {
    vertical-align: middle;
    border-color: #f2f4f6;
}

.table-responsive .table-center th {
    vertical-align: middle !important;
    cursor: pointer;
}

.table-responsive .table-center.invoice-tb th,
.table-responsive .table-center.invoice-tb td {
    text-align: end;
}

.table-responsive .table-padding tr td {
    padding-top: 20px;
    padding-bottom: 20px;
}

.social-icon li a {
    color: #343a40;
    border: 1px solid #343a40;
    display: inline-block;
    height: 32px;
    width: 32px;
    line-height: 30px;
    text-align: center;
    transition: all 0.4s ease;
    overflow: hidden;
    position: relative;
}

.social-icon li a .fea-social {
    stroke-width: 2;
}

.social-icon li a:hover {
    background-color: #396cf0 !important;
    border-color: #396cf0 !important;
    color: #ffffff !important;
}

.social-icon li a:hover .fea-social {
    fill: #396cf0;
}

.social-icon.footer-social li a {
    border: none;
    color: #adb5bd;
    background-color: #000000b8;
}

.social-icon.social li a {
    color: #adb5bd;
    border-color: #adb5bd;
}

.home-shape-arrow {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -24px;
    z-index: 1;
    text-align: center;
}

.back-to-top {
    position: fixed;
    bottom: 16px;
    right: 16px;
    z-index: 99;
    display: none;
}

#home {
    background-image: url("/assets/images/healthier_bg.jpg");
    margin-top: 4.5rem !important;
    background-size: 100% 100%;
    background-position: center;
    position: relative;
    display: none !important;
}

.back-to-home {
    position: fixed;
    top: 4%;
    right: 2%;
    z-index: 1;
}

.sticky-bar {
    position: sticky;
    top: 80px;
}

.fea {
    stroke-width: 1.8;
}

.fea.icon-sm {
    height: 16px;
    width: 16px;
}

.fea.icon-ex-md {
    height: 20px;
    width: 20px;
}

.fea.icon-m-md {
    height: 28px;
    width: 28px;
}

.fea.icon-md {
    height: 35px;
    width: 35px;
}

.fea.icon-lg {
    height: 42px;
    width: 42px;
}

.fea.icon-ex-lg {
    height: 52px;
    width: 52px;
}

[class^="uil-"]:before,
[class*=" uil-"]:before {
    margin: 0;
}

.uim-svg {
    vertical-align: 0 !important;
}

@media (max-width: 768px) {
    .display-1 {
        font-size: 56px !important;
    }

    .display-2 {
        font-size: 50px !important;
    }

    .display-3 {
        font-size: 42px !important;
    }

    .display-4 {
        font-size: 36px !important;
    }
}

body {

    font-family: arboria, sans-serif !important;
    overflow-x: hidden !important;
    font-size: 15px;
    color: #161c2d;
    background: #d3d3d303 !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-family: "Inter", sans-serif;
}

::selection {
    background: rgba(57, 108, 240, 0.9);
    color: #ffffff;
}

a {
    text-decoration: none !important;
}

p {
    line-height: 1.6;
}

#style-switcher .t-dark,
#style-switcher .t-rtl-light {
    display: inline-block;
}

#style-switcher .t-ltr-light,
#style-switcher .t-light,
#style-switcher .t-rtl-dark,
#style-switcher .t-ltr-dark {
    display: none;
}

.section {
    padding: 20px 0;
    position: relative;
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }
}

.bg-overlay {
    background-color: rgba(52, 58, 64, 0.75);
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.heading-title {
    line-height: 26px;
}

.heading-title .heading {
    font-size: 42px !important;
    letter-spacing: 1px;
}

.heading-title .title {
    font-size: 32px !important;
    letter-spacing: 1px;
}

.heading-title .para-desc {
    font-size: 17px;
}

.section-title {
    position: relative;
}

.section-title .title {
    letter-spacing: 0.5px;
    font-size: 24px !important;
}

.section-title .sub-title {
    letter-spacing: 0.5px;
    font-size: 28px !important;
}

.para-desc {
    max-width: 600px;
}

.mt-100 {
    margin-top: 100px;
}

.shape {
    position: absolute;
    pointer-events: none;
    right: 0;
    bottom: -2px;
    left: 0;
}

.shape>svg {
    transform: scale(2);
    width: 100%;
    height: auto;
    transform-origin: top center;
}

.shape.integration-hero {
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    height: 250px;
    background: #ffffff;
}

@media (max-width: 768px) {
    .shape.integration-hero {
        height: 140px;
    }
}

@media (max-width: 425px) {
    .shape.integration-hero {
        height: 60px;
    }
}

@media (max-width: 425px) {
    .shape {
        bottom: -4px;
    }
}

.features-absolute {
    position: relative;
    margin: -200px 0 0px;
    z-index: 2;
    transition: all 0.5s ease;
}

@media (max-width: 768px) {
    .features-absolute {
        margin: -140px 0 0;
    }
}

.features-absolute.career-form {
    margin: -145px 0 0px;
}

@media (max-width: 768px) {
    .features-absolute.career-form {
        margin: -105px 0 0px;
    }
}

.feature-posts-placeholder {
    position: absolute;
    bottom: 0px;
    left: 0;
    right: 0;
    height: 66.6%;
}

@media only screen and (min-width: 320px) and (max-width: 768px) {
    #doctor_profile_tabs {
        display: none !important;
    }

    .subtext {
        margin-left: 15px;
        font-size: 12px;
        position: relative;
        bottom: 10px;
    }

    .citypage_image_container {
        height: 20vh !important;
    }

    #citypage_menu_block {
        display: none !important;
    }

    .citypage_title {
        margin-top: 21px;
        margin-left: 12px;
        font-size: 16px;
        width: 50%;
    }

    .mobile_megasubmenu {
        list-style: none !important;
    }

    .megasubmenu-item {
        color: black !important;
    }

    #topnav #navigation,
    #inner_topnav #navgation {
        max-height: 500px !important;
    }

    .list-group-item {
        background-color: lightgrey !important;
    }

    .mobile-menu-item {
        background-color: white;
        padding-top: 10px;
        border-bottom: solid 1px lightgrey;
    }

    .mobile-header-icon {
        color: #00C4E4;
        font-size: 30px;
    }

    .block {
        background-color: white;
        padding-bottom: 1px;
        margin-bottom: 15px;
        border-radius: 5px;
    }

    .desktop_header {
        display: none !important;
    }

    .mobile_header {
        display: block !important;
    }

    #mobile_filters {
        display: block !important;
        padding: 10px;
    }

    .doct_specialization_info {
        margin-left: 5px;
    }

    .basic_info {
        width: 100%;
    }

    .homepage_modal_speciality_search_input {
        width: 80%;
        border: none;
        outline: none;
    }

    .grid-holder {
        grid-template-columns: 1fr !important;
    }

    #mobile_featured_doct {
        display: block !important;
    }

    #desktop_filters,
    #desktop_feature_doct {
        display: none;
    }

    .page-heading {
        font-size: 1.3rem !important;
    }

    .doct_info {
        margin-left: 15px;
    }
}

@media (max-width: 425px) {
    .feature-posts-placeholder {
        height: 80%;
    }
}

@media (max-width: 768px) {
    .heading-title .heading {
        font-size: 36px !important;
    }

    .heading-title .para-desc {
        font-size: 18px;
    }

    .section-title .title {
        font-size: 24px !important;
    }

    .mt-60 {
        margin-top: 60px;
    }
}

#topnav,
#inner_topnav {
    position: fixed;
    right: 0;
    left: 0;
    top: 0;
    z-index: 1030;
    background-color: white;
    border: 0;
    transition: all .5s ease;
    box-shadow: 1px 1px 0px 0px lightgray;
}

#topnav .logo,
#inner_topnav .logo {
    float: left;
    color: #343a40 !important;
    outline: none;
}

#inner_topnav .logo .l-dark,
#inner_topnav .logo .logo-dark-mode {
    display: none;
}

#topnav .logo .l-dark,
#topnav .logo .logo-dark-mode {
    display: none;
}

#topnav .logo .l-light,
#topnav .logo .logo-light-mode {
    display: inline-block;
}

#inner_topnav .logo .l-light,
#inner_topnav .logo .logo-light-mode {
    display: inline-block;
}

#topnav .has-submenu.active a {
    color: #ffffff;
}

#inner_topnav .has-submenu.active a {
    color: #ffffff;
}

#inner_topnav .has-submenu.active .submenu li.active>a {
    color: #396cf0 !important;
}

#topnav .has-submenu.active .submenu li.active>a {
    color: #396cf0 !important;
}

#topnav .has-submenu.active.active .menu-arrow {
    border-color: #396cf0;
}

#inner_topnav .has-submenu.active.active .menu-arrow {
    border-color: #396cf0;
}

#topnav .has-submenu {
    position: relative;
}

#inner_topnav .has-submenu {
    position: relative;
}

#topnav .has-submenu .submenu .submenu-arrow,
#inner_topnav .has-submenu .submenu .submenu-arrow {
    border: solid #343a40;
    border-radius: 0.5px;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 2px;
    transform: rotate(-45deg);
    position: absolute;
    right: 20px;
    top: 14px;
}

#topnav .has-submenu .submenu .has-submenu:hover .submenu-arrow,
#topnav .has-submenu .submenu .has-submenu.active .submenu-arrow {
    border-color: #396cf0;
}

#inner_topnav .has-submenu .submenu .has-submenu:hover .submenu-arrow,
#inner_topnav .has-submenu .submenu .has-submenu.active .submenu-arrow {
    border-color: #396cf0;
}

#topnav .navbar-toggle {
    border: 0;
    position: relative;
    width: 60px;
    padding: 0;
    margin: 0;
    cursor: pointer;
}

#inner_topnav .navbar-toggle {
    border: 0;
    position: relative;
    width: 60px;
    padding: 0;
    margin: 0;
    cursor: pointer;
}

#topnav .navbar-toggle .lines,
#inner_topnav .navbar-toggle .lines {
    width: 25px;
    display: block;
    position: relative;
    margin: 30px 10px 26px;
    height: 18px;
}

#topnav .navbar-toggle span,
#inner_topnav .navbar-toggle span {
    height: 2px;
    width: 100%;
    background-color: #343a40;
    display: block;
    margin-bottom: 5px;
    transition: transform .5s ease;
}

#inner_topnav .navbar-toggle span:last-child {
    margin-bottom: 0;
}

#topnav .navbar-toggle span:last-child {
    margin-bottom: 0;
}

#topnav .dropdowns,
#inner_topnav .dropdowns {
    float: right;
    line-height: 68px;
    padding: 2.5px 0;
}

#topnav .dropdowns>li,
#inner_topnav .dropdowns>li {
    line-height: initial;
}

#topnav .dropdowns .login-btn-primary,
#inner_topnav .dropdowns .login-btn-primary {
    display: none;
}

#topnav .dropdowns .login-btn-light,
#inner_topnav .dropdowns .login-btn-light {
    display: inline-block;
}

#topnav .navbar-toggle.open span,
#inner_topnav .navbar-toggle.open span {
    position: absolute;
}

#topnav .navbar-toggle.open span:first-child,
#inner_topnav .navbar-toggle.open span:first-child {
    top: 6px;
    transform: rotate(45deg);
}

#topnav .navbar-toggle.open span:nth-child(2),
#inner_topnav .navbar-toggle.open span:nth-child(2) {
    visibility: hidden;
}

#topnav .navbar-toggle.open span:last-child,
#inner_topnav .navbar-toggle.open span:last-child {
    width: 100%;
    top: 6px;
    transform: rotate(-45deg);
}

#topnav .navbar-toggle.open span:hover {
    background-color: #396cf0;
}

#topnav .navbar-toggle:hover,
#topnav .navbar-toggle:focus,
#topnav .navbar-toggle .navigation-menu>li>a:hover,
#topnav .navbar-toggle:focus {
    background-color: transparent;
}

#inner_topnav .navbar-toggle:hover,
#inner_topnav .navbar-toggle:focus,
#inner_topnav .navbar-toggle .navigation-menu>li>a:hover,
#inner_topnav .navbar-toggle:focus {
    background-color: transparent;
}

#topnav .navigation-menu,
#inner_topnav .navigation-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

#topnav .navigation-menu>li,
#inner_topnav .navigation-menu>li {
    float: left;
    display: block;
    position: relative;
    margin: 0 10px;
}

#topnav .navigation-menu>li:hover>a,
#topnav .navigation-menu>li.active>a {
    color: #396cf0 !important;
}

#inner_topnav .navigation-menu>li:hover>a,
#inner_topnav .navigation-menu>li.active>a {
    color: #396cf0 !important;
}

#topnav .navigation-menu>li>a,
#inner_topnav .navigation-menu>li>a {
    display: block;
    color: #343a40;
    font-size: 13px;
    background-color: transparent !important;
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 24px;
    text-transform: uppercase;
    transition: all 0.5s;
    font-family: "Inter", sans-serif;
    padding-left: 15px;
    padding-right: 15px;
}

#topnav .navigation-menu>li>a:hover,
#topnav .navigation-menu>li>a:active {
    color: #396cf0;
}

#inner_topnav .navigation-menu>li>a:hover,
#inner_topnav .navigation-menu>li>a:active {
    color: #396cf0;
}

#topnav .navigation-menu .has-submenu .menu-arrow,
#inner_topnav .navigation-menu .has-submenu .menu-arrow {
    border: solid #343a40;
    border-radius: 0.5px;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 2px;
    transform: rotate(45deg);
    position: absolute;
    transition: all 0.5s;
    right: -1px;
    top: 32px;
}

#topnav .navigation-menu .has-submenu:hover .menu-arrow,
#inner_topnav .navigation-menu .has-submenu:hover .menu-arrow {
    transform: rotate(225deg);
}

#topnav .menu-extras,
#inner_topnav .menu-extras {
    float: right;
}

#topnav.scroll,
#inner_topnav.scroll {
    background-color: #ffffff;
    border: none;
    box-shadow: 0 0 3px rgba(52, 58, 64, 0.15);
}

#topnav.scroll .navigation-menu>li>a,
#inner_topnav.scroll .navigation-menu>li>a {
    color: #343a40;
}

#topnav.scroll .navigation-menu>li>.menu-arrow,
#inner_topnav.scroll .navigation-menu>li>.menu-arrow {
    border-color: #343a40;
}

#topnav.scroll .navigation-menu>li:hover>a,
#topnav.scroll .navigation-menu>li.active>a {
    color: #396cf0;
}

#inner_topnav.scroll .navigation-menu>li:hover>a,
#inner_topnav.scroll .navigation-menu>li.active>a {
    color: #396cf0;
}

#topnav.scroll .navigation-menu>li:hover>.menu-arrow,
#topnav.scroll .navigation-menu>li.active>.menu-arrow {
    border-color: #396cf0;
}

#inner_topnav.scroll .navigation-menu>li:hover>.menu-arrow,
#inner_topnav.scroll .navigation-menu>li.active>.menu-arrow {
    border-color: #396cf0;
}

#topnav.defaultscroll.dark-menubar .logo,
#inner_topnav.defaultscroll.dark-menubar .logo {
    line-height: 70px;
}

#topnav.defaultscroll.scroll .logo,
#inner_topnav.defaultscroll.scroll .logo {
    line-height: 62px;
}

#topnav.defaultscroll.scroll.dark-menubar .logo {
    line-height: 62px;
}

#topnav.nav-sticky {
    background: #ffffff;
    box-shadow: 0 0 3px rgba(52, 58, 64, 0.15);
}

#topnav.nav-sticky .navigation-menu.nav-light>li>a {
    color: #343a40;
}

#topnav.nav-sticky .navigation-menu.nav-light>li.active>a {
    color: #396cf0 !important;
}

#topnav.nav-sticky .navigation-menu.nav-light>li:hover>.menu-arrow,
#topnav.nav-sticky .navigation-menu.nav-light>li.active>.menu-arrow {
    border-color: #396cf0 !important;
}

#topnav.nav-sticky .navigation-menu.nav-light>li:hover>a,
#topnav.nav-sticky .navigation-menu.nav-light>li.active>a {
    color: #396cf0 !important;
}

#topnav.nav-sticky .navigation-menu.nav-light .has-submenu .menu-arrow {
    border-color: #343a40;
}

#topnav.nav-sticky .dropdowns .login-btn-primary {
    display: inline-block;
}

#topnav.nav-sticky .dropdowns .login-btn-light {
    display: none;
}

#topnav.nav-sticky .logo .l-dark {
    display: inline-block;
}

#topnav.nav-sticky .logo .l-light {
    display: none;
}

.logo {
    font-weight: 600;
    font-size: 24px;
    padding: 0 0 6px;
    letter-spacing: 1px;
    line-height: 68px;
}

.search-bar {
    padding-top: 14.5px;
    padding-bottom: 14.5px;
}

.search-bar .menu-search form {
    position: relative;
}

.search-bar .menu-search input[type="text"],
.search-bar .searchform input[type="text"] {
    box-shadow: none;
    padding: 12px 15px;
    height: 40px;
    font-size: 14px;
    display: block;
    width: 100%;
    outline: none !important;
    padding-right: 45px;
    opacity: 0.7;
}

.search-bar .menu-search input[type="submit"],
.search-bar .searchform input[type="submit"] {
    position: absolute;
    top: 5px;
    right: 10px;
    opacity: 0;
    width: 40px;
    height: 40px;
}

.search-bar .menu-search .searchform:after {
    content: "\F0349";
    position: absolute;
    font-family: "Material Design Icons";
    right: 16px;
    top: 12px;
    font-size: 20px;
    line-height: 20px;
    pointer-events: none;
}

@media (min-width: 992px) {
    #topnav .navigation-menu {
        display: flex;
        justify-content: center;
    }

    #topnav .navigation-menu>.has-submenu>.submenu>.has-submenu>.submenu::before {
        top: 15px;
        margin-left: -20px;
        box-shadow: 1px 1px 0px 0px rgba(52, 58, 64, 0.15);
        border-color: transparent #ffffff #ffffff transparent;
    }

    #topnav .navigation-menu>.has-submenu:hover .menu-arrow {
        top: 35px !important;
    }

    #topnav .navigation-menu>.has-submenu.active .menu-arrow {
        top: 32px;
    }

    #topnav .navigation-menu>li .submenu {
        position: absolute;
        top: 100%;
        left: 15px;
        z-index: 1000;
        padding: 15px 0;
        list-style: none;
        min-width: 220px !important;
        visibility: hidden;
        opacity: 0;
        margin-top: 10px;
        transition: all .2s ease;
        border-radius: 5px;
        background-color: #ffffff;
        box-shadow: 0 0 3px rgba(52, 58, 64, 0.15);
    }

    #topnav .navigation-menu>li .submenu li {
        position: relative;
    }

    #topnav .navigation-menu>li .submenu li a {
        display: block;
        padding: 10px 20px;
        clear: both;
        white-space: nowrap;
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: 0.04em;
        font-weight: 600;
        color: #343a40 !important;
        transition: all 0.3s;
    }

    #topnav .navigation-menu>li .submenu li a:hover {
        color: #396cf0 !important;
    }

    #topnav .navigation-menu>li .submenu li ul {
        list-style: none;
        padding-left: 0;
        margin: 0;
    }

    #topnav .navigation-menu>li .submenu.megamenu {
        white-space: nowrap;
        width: auto;
    }

    #topnav .navigation-menu>li .submenu.megamenu>li {
        overflow: hidden;
        min-width: 180px;
        display: inline-block;
        vertical-align: top;
    }

    #topnav .navigation-menu>li .submenu.megamenu>li .submenu {
        left: 100%;
        top: 0;
        margin-left: 10px;
        margin-top: -1px;
    }

    #topnav .navigation-menu>li .submenu>li .submenu {
        left: 101%;
        top: 0;
        margin-left: 10px;
        margin-top: -1px;
    }

    #topnav .navigation-menu>li>a {
        padding-top: 25px;
        padding-bottom: 25px;
        min-height: 62px;
    }

    #topnav .navigation-menu>li:hover>.menu-arrow {
        border-color: #396cf0;
    }

    #topnav .navigation-menu>li:hover>a,
    #topnav .navigation-menu>li.active>a {
        color: #396cf0 !important;
    }

    #topnav .navigation-menu>li.last-elements .submenu {
        left: auto;
        right: 0;
    }

    #topnav .navigation-menu>li.last-elements .submenu:before {
        left: auto;
        right: 10px;
    }

    #topnav .navigation-menu>li.last-elements .submenu>li.has-submenu .submenu {
        left: auto;
        right: 106%;
        margin-left: 0;
        margin-right: 10px;
    }

    #topnav .navigation-menu>li.last-elements .submenu>li.has-submenu .submenu:before {
        transform: rotate(-45deg);
        right: -3px;
    }

    #topnav .navigation-menu.nav-light>li>a {
        color: #343a40 !important;
    }

    #topnav .navigation-menu.nav-light>li.active>a {
        color: #343a40 !important;
    }

    #topnav .navigation-menu.nav-light>li:hover>.menu-arrow {
        border-color: #343a40 !important;
    }

    #topnav .navigation-menu.nav-light>li:hover>a {
        color: #343a40 !important;
    }

    #topnav .navigation-menu.nav-light .has-submenu .menu-arrow {
        border-color: #343a40;
    }

    #topnav .navigation-menu.nav-light .has-submenu.active .menu-arrow {
        border-color: #343a40 !important;
    }

    #topnav .navigation-menu.nav-right {
        justify-content: flex-end !important;
    }

    #topnav .navigation-menu.nav-left {
        justify-content: flex-start !important;
    }

    #topnav .navigation-menu.nav-left>li.last-elements .submenu {
        left: auto;
        right: 0;
    }

    #topnav .navigation-menu.nav-left>li.last-elements .submenu:before {
        right: -5px;
    }

    #topnav .logo {
        margin-right: 30px;
    }

    #topnav .dropdowns {
        padding-left: 15px;
        margin-left: 15px;
    }

    #topnav .navbar-toggle {
        display: none;
    }

    #inner_topnav .navbar-toggle {
        display: none;
    }

    #topnav #navigation {
        display: block !important;
    }

    #topnav.scroll {
        top: 0;
    }

    #topnav.scroll .navigation-menu>li>a {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    #topnav.scroll-active .navigation-menu>li>a {
        padding-top: 25px;
        padding-bottom: 25px;
    }

    #topnav .search-bar .menu-search input[type="text"],
    #topnav .search-bar .searchform input[type="text"] {
        width: 250px !important;
    }
}

@media (max-width: 991px) {
    #topnav {
        background-color: #ffffff;
        box-shadow: 0 0 3px rgba(52, 58, 64, 0.15);
        min-height: 74px;
    }

    #topnav .logo {
        padding: 3px 0 !important;
    }

    #topnav .logo .l-dark {
        display: inline-block !important;
    }

    #topnav .logo .l-light {
        display: none !important;
    }

    #topnav .container {
        width: auto;
    }

    #topnav #navigation {
        max-height: 400px;
    }

    #topnav .navigation-menu {
        float: none;
    }

    #topnav .navigation-menu>li {
        float: none;
    }

    #topnav .navigation-menu>li .submenu {
        display: none;
        list-style: none;
        padding-left: 20px;
        margin: 0;
    }

    #topnav .navigation-menu>li .submenu li a {
        display: block;
        position: relative;
        padding: 7px 15px;
        text-transform: uppercase;
        font-size: 11px;
        letter-spacing: 0.04em;
        font-weight: 600;
        color: #343a40 !important;
        transition: all 0.3s;
    }

    #topnav .navigation-menu>li .submenu.open {
        display: block;
    }

    #topnav .navigation-menu>li .submenu .submenu {
        display: none;
        list-style: none;
    }

    #topnav .navigation-menu>li .submenu .submenu.open {
        display: block;
    }

    #topnav .navigation-menu>li .submenu.megamenu>li>ul {
        list-style: none;
        padding-left: 0;
    }

    #topnav .navigation-menu>li .submenu.megamenu>li>ul>li>span {
        display: block;
        position: relative;
        padding: 10px 15px;
        text-transform: uppercase;
        font-size: 12px;
        letter-spacing: 2px;
        color: #8492a6;
    }

    #topnav .navigation-menu>li>a {
        color: #343a40;
        padding: 10px 20px;
    }

    #topnav .navigation-menu>li>a:after {
        position: absolute;
        right: 15px;
    }

    #topnav .navigation-menu>li>a:hover,
    #topnav .navigation-menu>li .submenu li a:hover,
    #topnav .navigation-menu>li.has-submenu.open>a {
        color: #396cf0;
    }

    #topnav .menu-extras .menu-item {
        border-color: #8492a6;
    }

    #topnav .navbar-header {
        float: left;
    }

    #topnav .dropdowns .login-btn-primary {
        display: inline-block !important;
    }

    #topnav .dropdowns .login-btn-light {
        display: none;
    }

    #topnav .has-submenu .submenu .submenu-arrow {
        transform: rotate(45deg);
        position: absolute;
        right: 20px;
        top: 12px;
    }

    #topnav .has-submenu.active a {
        color: #396cf0;
    }

    #navigation {
        position: absolute;
        top: 74px;
        left: 0;
        width: 100%;
        display: none;
        height: auto;
        padding-bottom: 0;
        overflow: auto;
        border-top: 1px solid #f1f3f9;
        border-bottom: 1px solid #f1f3f9;
        background-color: #ffffff;
    }

    #navigation.open {
        display: block;
        overflow-y: auto;
    }
}

@media (max-width: 768px) {
    #topnav .navigation-menu .has-submenu .menu-arrow {
        right: 16px;
        top: 16px;
    }
}

@media (min-width: 768px) {
    #topnav .navigation-menu>li.has-submenu:hover>.submenu {
        visibility: visible;
        opacity: 1;
        margin-top: 0;
    }

    #topnav .navigation-menu>li.has-submenu:hover>.submenu>li.has-submenu:hover>.submenu {
        visibility: visible;
        opacity: 1;
        margin-left: 0;
        margin-right: 0;
    }

    .navbar-toggle {
        display: block;
    }
}

@media (max-width: 425px) {
    #topnav .navbar-toggle .lines {
        margin-right: 0 !important;
    }
}

@media (max-width: 375px) {
    #topnav .dropdowns {
        margin: 0 0 0 10px;
    }
}

.sidebar-nav {
    /*padding: 15px 0;*/
}

.sidebar-nav>.navbar-item {
    padding: 6.5px 15px;
}

.sidebar-nav>.navbar-item .navbar-link {
    color: #343a40 !important;
    font-size: 15px;
    font-weight: 500;
}

.sidebar-nav>.navbar-item .navbar-link .navbar-icon {
    font-size: 18px;
    margin-right: 6px;
}

.sidebar-nav>.navbar-item:hover .navbar-link,
.sidebar-nav>.navbar-item.active .navbar-link {
    color: #396cf0 !important;
}

.page-wrapper {
    height: 100vh;
}

.page-wrapper.doctris-theme .sidebar-wrapper {
    box-shadow: 0 0 3px rgba(52, 58, 64, 0.15);
    background-color: #ffffff;
    transition: all 0.3s ease;
}

.page-wrapper.doctris-theme .sidebar-wrapper .sidebar-header,
.page-wrapper.doctris-theme .sidebar-wrapper .sidebar-menu {
    border-top: 1px solid #e9ecef;
}

.page-wrapper.doctris-theme .sidebar-wrapper .sidebar-header .user-info .user-role,
.page-wrapper.doctris-theme .sidebar-wrapper .sidebar-header .user-info .user-status,
.page-wrapper.doctris-theme .sidebar-wrapper .sidebar-brand>a,
.page-wrapper.doctris-theme .sidebar-wrapper .sidebar-menu li a {
    color: #343a40;
    font-weight: 500;
}

.page-wrapper.doctris-theme .sidebar-wrapper .sidebar-menu li:hover>a,
.page-wrapper.doctris-theme .sidebar-wrapper .sidebar-menu li.active>a,
.page-wrapper.doctris-theme .sidebar-wrapper .sidebar-menu li:active>a,
.page-wrapper.doctris-theme .sidebar-wrapper .sidebar-menu li:active>a:before,
.page-wrapper.doctris-theme .sidebar-wrapper .sidebar-menu li:hover>a:before,
.page-wrapper.doctris-theme .sidebar-wrapper .sidebar-menu li.active>a:before,
.page-wrapper.doctris-theme .sidebar-wrapper .sidebar-menu .sidebar-dropdown.active>a,
.page-wrapper.doctris-theme .sidebar-wrapper .sidebar-header .user-info,
.page-wrapper.doctris-theme .sidebar-wrapper .sidebar-brand>a:hover {
    color: #396cf0 !important;
}

.page-wrapper.doctris-theme .sidebar-wrapper .sidebar-brand .logo-dark-mode {
    display: none;
}

.page-wrapper.doctris-theme .sidebar-wrapper .sidebar-brand .logo-light-mode {
    display: inline-block;
}

.page-wrapper .sidebar-wrapper {
    width: 300px;
    height: 100%;
    max-height: 100%;
    position: fixed;
    top: 0;
    left: -300px;
    z-index: 999;
}

@media (min-width: 1025px) {
    .page-wrapper .sidebar-wrapper {
        z-index: 1000;
    }
}

@media (max-width: 1024px) {
    .page-wrapper .sidebar-wrapper {
        left: 0;
    }
}

@media (max-width: 425px) {
    .page-wrapper .sidebar-wrapper {
        width: 260px;
    }
}

.page-wrapper .sidebar-wrapper ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.page-wrapper .sidebar-wrapper a {
    text-decoration: none;
}

.page-wrapper .sidebar-wrapper .sidebar-content {
    max-height: calc(100% - 30px);
    height: calc(100% - 30px);
    overflow-y: auto;
    position: relative;
}

.page-wrapper .sidebar-wrapper .sidebar-content.desktop {
    overflow-y: hidden;
}

.page-wrapper .sidebar-wrapper .sidebar-brand {
    padding: 10px 20px;
    display: flex;
    align-items: center;
    height: 70px;
}

.page-wrapper .sidebar-wrapper .sidebar-brand>a {
    text-transform: uppercase;
    font-weight: bold;
    flex-grow: 1;
    transition: all 0.3s ease;
}

.page-wrapper .sidebar-wrapper .sidebar-brand>a:focus {
    outline: none;
}

.page-wrapper .sidebar-wrapper .sidebar-brand #close-sidebar {
    cursor: pointer;
    font-size: 24px;
    transition: all 0.3s ease;
}

.page-wrapper .sidebar-wrapper .sidebar-header {
    padding: 20px;
    overflow: hidden;
}

.page-wrapper .sidebar-wrapper .sidebar-menu {
    padding-bottom: 10px;
}

.page-wrapper .sidebar-wrapper .sidebar-menu .header-menu span {
    font-weight: bold;
    font-size: 14px;
    padding: 15px 20px 5px 20px;
    display: inline-block;
}

.page-wrapper .sidebar-wrapper .sidebar-menu li a {
    display: inline-block;
    width: 100%;
    text-decoration: none;
    position: relative;
    padding: 8px 30px 8px 20px;
    transition: all 0.3s ease;
}

.page-wrapper .sidebar-wrapper .sidebar-menu li a:hover>i::before {
    display: inline-block;
}

.page-wrapper .sidebar-wrapper .sidebar-menu li a:focus {
    outline: none;
}

.page-wrapper .sidebar-wrapper .sidebar-menu li a i {
    width: 30px;
    height: 30px;
    line-height: 30px;
    background-color: #f8f9fa;
    font-size: 16px;
    text-align: center;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.page-wrapper .sidebar-wrapper .sidebar-menu li:hover i,
.page-wrapper .sidebar-wrapper .sidebar-menu li.active i {
    background-color: rgba(57, 108, 240, 0.1);
}

.page-wrapper .sidebar-wrapper .sidebar-menu .sidebar-dropdown>a:after {
    content: "\F0142" !important;
    color: #343a40;
    font-family: 'Material Design Icons';
    font-size: 16px;
    position: absolute;
    right: 15px;
    top: 14px;
    transition: all 0.3s ease;
}

.page-wrapper .sidebar-wrapper .sidebar-menu .sidebar-dropdown.active>a:after {
    transform: rotate(90deg);
    right: 17px;
    color: #396cf0;
}

.page-wrapper .sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu {
    display: none;
}

.page-wrapper .sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu ul {
    padding: 5px 0;
}

.page-wrapper .sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu ul li {
    padding-left: 25px;
    font-size: 14px;
}

.page-wrapper .sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu ul li a:before {
    content: "\F035F" !important;
    color: #343a40;
    font-family: 'Material Design Icons';
    margin-right: 6px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.page-wrapper .sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu ul li a .badge,
.page-wrapper .sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu ul li a .label {
    float: right;
    margin-top: 0px;
}

.page-wrapper .sidebar-wrapper .sidebar-menu ul li a span.label,
.page-wrapper .sidebar-wrapper .sidebar-menu ul li a span.badge {
    float: right;
    margin-top: 8px;
    margin-left: 5px;
}

.page-wrapper .page-content {
    display: inline-block;
    width: 100%;
    padding-left: 0px;
    overflow-x: hidden;
    transition: all 0.3s ease;
}

.page-wrapper .page-content .top-header {
    position: fixed;
    right: 0;
    top: 0;
    z-index: 999;
    max-height: 70px;
    left: 0px;
    transition: all 0.3s;
}

.page-wrapper .page-content .top-header .header-bar {
    background: #ffffff;
    height: 71px;
    box-shadow: 0 0 3px rgba(52, 58, 64, 0.15);
    position: relative;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
}

@media (max-width: 425px) {
    .page-wrapper .page-content .top-header .header-bar {
        padding: 24px 12px;
    }
}

.page-wrapper .page-content .top-header .header-bar .logo-icon {
    display: none;
}

@media (max-width: 1024px) {
    .page-wrapper .page-content .top-header .header-bar .logo-icon {
        display: block;
    }
}

.page-wrapper .page-content .top-header .header-bar .logo-icon .small {
    display: none;
}

@media (max-width: 767px) {
    .page-wrapper .page-content .top-header .header-bar .logo-icon .small {
        display: block;
    }
}

.page-wrapper .page-content .top-header .header-bar .logo-icon .big {
    display: none;
}

.page-wrapper .page-content .top-header .header-bar .logo-icon .big .logo-dark-mode {
    display: none;
}

.page-wrapper .page-content .top-header .header-bar .logo-icon .big .logo-light-mode {
    display: inline-block;
}

@media (min-width: 768px) and (max-width: 1024px) {
    .page-wrapper .page-content .top-header .header-bar .logo-icon .big {
        display: block;
    }
}

.page-wrapper .page-content .top-header .header-bar .search-bar {
    padding-top: 14.5px;
    padding-bottom: 14.5px;
}

.page-wrapper .page-content .top-header .header-bar .search-bar .menu-search form {
    position: relative;
}

.page-wrapper .page-content .top-header .header-bar .search-bar .menu-search input[type="text"],
.page-wrapper .page-content .top-header .header-bar .search-bar .searchform input[type="text"] {
    box-shadow: none;
    padding: 12px 15px;
    height: 40px;
    font-size: 14px;
    display: block;
    width: 250px;
    outline: none !important;
    padding-right: 45px;
    opacity: 0.7;
}

.page-wrapper .page-content .top-header .header-bar .search-bar .menu-search input[type="submit"],
.page-wrapper .page-content .top-header .header-bar .search-bar .searchform input[type="submit"] {
    position: absolute;
    top: 5px;
    right: 10px;
    opacity: 0;
    width: 40px;
    height: 40px;
}

.page-wrapper .page-content .top-header .header-bar .search-bar .menu-search .searchform:after {
    content: "\F0349";
    position: absolute;
    font-family: "Material Design Icons";
    right: 16px;
    top: 12px;
    font-size: 20px;
    line-height: 20px;
    pointer-events: none;
}

.page-wrapper .page-content .layout-specing {
    padding: 94px 14px 24px !important;
    min-height: calc(100vh - 56px) !important;
    position: relative;
}

@media (max-width: 425px) {
    .page-wrapper .page-content .layout-specing {
        padding: 94px 0 24px !important;
    }
}

@media screen and (min-width: 1025px) {
    .page-wrapper.toggled .page-content {
        padding-left: 300px;
    }
}

.page-wrapper.toggled .top-header {
    left: 301px;
}

@media (max-width: 1024px) {
    .page-wrapper.toggled .top-header {
        left: 0;
    }
}

.page-wrapper.toggled .sidebar-wrapper {
    left: 0px;
}

@media (max-width: 1024px) {
    .page-wrapper.toggled .sidebar-wrapper {
        left: -300px;
    }
}

.sidebar-footer {
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 9px 15px !important;
    box-shadow: 0 0 3px rgba(52, 58, 64, 0.15);
}

.bg-home {
    height: 100vh;
    background-size: 100% 100%;
    align-self: center;
    position: relative;
    background-position: center center;
}

.bg-half-260 {
    padding: 260px 0;
    background-size: cover;
    align-self: center;
    position: relative;
    background-position: center center;
}

.bg-half-170 {
    padding: 280px 0 !important;
    background-size: cover;
    align-self: center;
    position: relative;
    background-position: center center;
}

.bg-half-150 {
    padding: 150px 0;
    background-size: cover;
    align-self: center;
    position: relative;
    background-position: center center;
}

.bg-profile {
    padding: 80px 0;
    background-size: cover;
    align-self: center;
    position: relative;
    background-position: center center;
}

.bg-dashboard {
    padding: 100px 0 30px;
    background-size: cover;
    align-self: center;
    position: relative;
    background-position: center center;
}

.bg-hero {
    padding: 100px 0;
    background-size: cover;
    align-self: center;
    position: relative;
    background-position: center center;
}

.dr-profile-img {
    position: absolute;
    bottom: 0;
}

@media (max-width: 425px) {
    .dr-profile-img {
        position: relative;
        padding: 24px;
    }
}

.home-slider .carousel-control-next,
.home-slider .carousel-control-prev {
    width: 30px;
    height: 30px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 30px;
    border: 1px solid #ced4da;
}

.home-slider .carousel-control-next-icon,
.home-slider .carousel-control-prev-icon {
    width: 30%;
}

.home-slider .carousel-control-next {
    right: 8px;
}

.home-slider .carousel-control-prev {
    left: 8px;
}

.carousel-indicators [data-bs-target] {
    width: 7px;
    height: 7px;
    border-radius: 30px;
    background: rgba(57, 108, 240, 0.5) !important;
    transition: all 0.5s ease;
    border: 2px solid rgba(255, 255, 255, 0.5);
    margin: 0 4px;
    padding: 0;
}

.carousel-indicators .active {
    background: #396cf0 !important;
    border-color: #396cf0;
}

@media (max-width: 767px) {

    .bg-home,
    .bg-half-170,
    .bg-half-260,
    .main-slider .slides .bg-slider {
        padding: 110px 0 !important;
        height: auto;
    }
}

.features.feature-primary .title:hover {
    color: #396cf0 !important;
}

.features.feature-primary .icon {
    color: #396cf0 !important;
    background-color: rgba(57, 108, 240, 0.05) !important;
}

.features.feature-primary .link {
    color: #396cf0 !important;
}

.features.feature-bg-primary:hover {
    background-color: black !important;
}

.features.feature-secondary .title:hover {
    color: #5a6d90 !important;
}

.features.feature-secondary .icon {
    color: #5a6d90 !important;
    background-color: rgba(90, 109, 144, 0.05) !important;
}

.features.feature-secondary .link {
    color: #5a6d90 !important;
}

.features.feature-bg-secondary:hover {
    background-color: #5a6d90 !important;
}

.features.feature-success .title:hover {
    color: #53c797 !important;
}

.features.feature-success .icon {
    color: #53c797 !important;
    background-color: rgba(83, 199, 151, 0.05) !important;
}

.features.feature-success .link {
    color: #53c797 !important;
}

.features.feature-bg-success:hover {
    background-color: #53c797 !important;
}

.features.feature-warning .title:hover {
    color: #f1b561 !important;
}

.features.feature-warning .icon {
    color: #f1b561 !important;
    background-color: rgba(241, 181, 97, 0.05) !important;
}

.features.feature-warning .link {
    color: #f1b561 !important;
}

.features.feature-bg-warning:hover {
    background-color: #f1b561 !important;
}

.features.feature-info .title:hover {
    color: #64c2f1 !important;
}

.features.feature-info .icon {
    color: #64c2f1 !important;
    background-color: rgba(100, 194, 241, 0.05) !important;
}

.features.feature-info .link {
    color: #64c2f1 !important;
}

.features.feature-bg-info:hover {
    background-color: #64c2f1 !important;
}

.features.feature-danger .title:hover {
    color: #f0735a !important;
}

.features.feature-danger .icon {
    color: #f0735a !important;
    background-color: rgba(240, 115, 90, 0.05) !important;
}

.features.feature-danger .link {
    color: #f0735a !important;
}

.features.feature-bg-danger:hover {
    background-color: #f0735a !important;
}

.features.feature-dark .title:hover {
    color: #343a40 !important;
}

.features.feature-dark .icon {
    color: #343a40 !important;
    background-color: rgba(52, 58, 64, 0.05) !important;
}

.features.feature-dark .link {
    color: #343a40 !important;
}

.features.feature-bg-dark:hover {
    background-color: #343a40 !important;
}

.features.feature-muted .title:hover {
    color: #8492a6 !important;
}

.features.feature-muted .icon {
    color: #8492a6 !important;
    background-color: rgba(132, 146, 166, 0.05) !important;
}

.features.feature-muted .link {
    color: #8492a6 !important;
}

.features.feature-bg-muted:hover {
    background-color: #8492a6 !important;
}

.features.feature-light .title:hover {
    color: #f8f9fc !important;
}

.features.feature-light .icon {
    color: #f8f9fc !important;
    background-color: rgba(248, 249, 252, 0.05) !important;
}

.features.feature-light .link {
    color: #f8f9fc !important;
}

.features.feature-bg-light:hover {
    background-color: #f8f9fc !important;
}

.features.feature-footer .title:hover {
    color: #202942 !important;
}

.features.feature-footer .icon {
    color: #202942 !important;
    background-color: rgba(32, 41, 66, 0.05) !important;
}

.features.feature-footer .link {
    color: #202942 !important;
}

.features.feature-bg-footer:hover {
    background-color: #202942 !important;
}

.features {
    transition: all 0.5s ease;
}

.features .icon {
    height: 65px;
    width: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.features .title {
    font-weight: 500;
}

.features .big-icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
    opacity: 0.05;
    font-size: 120px;
}

.features .titles,
.features .icons,
.features .para,
.features .big-icon {
    transition: all 0.5s ease;
}

.features:hover .titles,
.features:hover .icons,
.features:hover .big-icon {
    color: #ffffff !important;
}

.features:hover .para {
    color: rgba(255, 255, 255, 0.5) !important;
}

.play-btn {
    height: 78px;
    width: 78px;
    font-size: 30px;
    line-height: 76px;
    border-radius: 50%;
    display: inline-block;
    color: #ffffff;
}

.play-icon {
    position: absolute;
    bottom: 50%;
    transform: translateY(50%);
    right: 0;
    left: 0;
    text-align: center;
}

.play-icon i {
    height: 75px;
    -webkit-text-stroke: 2px #396cf0;
    -webkit-text-fill-color: transparent;
    width: 75px;
    font-size: 25px;
    line-height: 75px;
    display: inline-block;
}

.play-icon i:hover {
    -webkit-text-stroke: 2px #396cf0;
    -webkit-text-fill-color: #396cf0;
}

.cta-review {
    position: relative;
    top: 220px;
}

.chat .chat-list:hover,
.chat .chat-list.active,
.chat .chat-list:focus {
    background: #f8f9fc !important;
    box-shadow: 0 0 3px rgba(52, 58, 64, 0.15);
}

.chat .chat-list .on-off,
.chat .chat-type .on-off {
    position: absolute;
    left: -1px;
    top: -1px;
    font-size: 12px !important;
}

.chat.chat-person .on-off {
    font-size: 10px;
}

.chat.chat-person .chat-msg {
    margin-left: 8px;
}

.chat.chat-person .chat-msg .msg {
    border: 1px solid #e9ecef;
}

.chat.chat-person .chat-msg .msg-time {
    font-size: 12px !important;
}

.chat.chat-person .chat-right {
    justify-content: flex-end;
    text-align: right;
}

.chat.chat-person .chat-right .chat-user-image {
    order: 2;
}

.chat.chat-person .chat-right .chat-user-image .on-off {
    right: -1px;
}

.chat.chat-person .chat-right .chat-msg {
    margin-right: 8px;
    margin-left: 0;
}

.chat.chat-person .chat-right .chat-msg .msg {
    display: inline-block;
}

.chat.chat-person .chat-right .chat-msg .msg-time {
    display: block;
}

.team {
    transition: all 0.5s;
}

.team .team-img .team-social {
    position: absolute;
    bottom: 10px;
    left: 10px;
    opacity: 0;
    transition: all 0.5s;
    transform: translateX(-50px);
}

.team .title {
    font-weight: 500;
}

.team .content,
.team .content .title,
.team .content .speciality {
    transition: all 0.5s;
}

.team .team-person img {
    transition: all 0.5s;
}

.team .team-person .team-like {
    position: absolute;
    top: 10px;
    right: 10px;
}

.team .team-person:hover img {
    transform: scale(1.05);
}

.team:hover .team-img .team-social {
    opacity: 1;
    transform: translateX(0px);
}

.team:hover .content {
    background: #396cf0 !important;
}

.team:hover .content .title {
    color: #ffffff !important;
}

.team:hover .content .speciality {
    color: rgba(255, 255, 255, 0.5) !important;
}

.tns-nav {
    text-align: center;
    margin-top: 10px;
}

.tns-nav button {
    width: 10px;
    height: 10px;
    border-radius: 5px;
    background: rgba(57, 108, 240, 0.5) !important;
    transition: all 0.5s ease;
    border: 2px solid rgba(255, 255, 255, 0.5);
    margin: 0 4px;
    padding: 0;
}

.tns-nav button.tns-nav-active {
    background: #396cf0 !important;
    border-color: #396cf0;
}

.tiny-timeline {
    position: relative;
    width: 100%;
    margin: 0 auto;
}

.tiny-timeline:before {
    content: "";
    position: absolute;
    width: 100%;
    top: 17px;
    left: 0;
    height: 2px;
    background: #396cf0;
}

.tiny-timeline .item-box {
    margin: 70px 15px;
}

.tiny-timeline .item-box:before,
.tiny-timeline .item-box:after {
    content: "";
    position: absolute;
    left: 50%;
    background: #396cf0;
}

.tiny-timeline .item-box:before {
    width: 2px;
    height: 46px;
    top: -46px;
    transform: translateX(-50%);
}

.tiny-timeline .item-box:after {
    width: 13px;
    height: 13px;
    top: -59px;
    border-radius: 3px;
    transform: translateX(-50%) rotate(45deg);
}

.slick-slider {
    overflow-x: hidden !important;
    cursor: pointer;
}

.blog.blog-primary .tag {
    background: #396cf0 !important;
}

.blog.blog-primary .title:hover {
    color: #396cf0 !important;
}

.blog.blog-primary .link {
    color: #396cf0 !important;
}

.blog.blog-primary .post-meta .like:hover,
.blog.blog-primary .post-meta .comments:hover {
    color: #396cf0 !important;
}

.blog.blog-secondary .tag {
    background: #5a6d90 !important;
}

.blog.blog-secondary .title:hover {
    color: #5a6d90 !important;
}

.blog.blog-secondary .link {
    color: #5a6d90 !important;
}

.blog.blog-secondary .post-meta .like:hover,
.blog.blog-secondary .post-meta .comments:hover {
    color: #5a6d90 !important;
}

.blog.blog-success .tag {
    background: #53c797 !important;
}

.blog.blog-success .title:hover {
    color: #53c797 !important;
}

.blog.blog-success .link {
    color: #53c797 !important;
}

.blog.blog-success .post-meta .like:hover,
.blog.blog-success .post-meta .comments:hover {
    color: #53c797 !important;
}

.blog.blog-warning .tag {
    background: #f1b561 !important;
}

.blog.blog-warning .title:hover {
    color: #f1b561 !important;
}

.blog.blog-warning .link {
    color: #f1b561 !important;
}

.blog.blog-warning .post-meta .like:hover,
.blog.blog-warning .post-meta .comments:hover {
    color: #f1b561 !important;
}

.blog.blog-info .tag {
    background: #64c2f1 !important;
}

.blog.blog-info .title:hover {
    color: #64c2f1 !important;
}

.blog.blog-info .link {
    color: #64c2f1 !important;
}

.blog.blog-info .post-meta .like:hover,
.blog.blog-info .post-meta .comments:hover {
    color: #64c2f1 !important;
}

.blog.blog-danger .tag {
    background: #f0735a !important;
}

.blog.blog-danger .title:hover {
    color: #f0735a !important;
}

.blog.blog-danger .link {
    color: #f0735a !important;
}

.blog.blog-danger .post-meta .like:hover,
.blog.blog-danger .post-meta .comments:hover {
    color: #f0735a !important;
}

.blog.blog-dark .tag {
    background: #343a40 !important;
}

.blog.blog-dark .title:hover {
    color: #343a40 !important;
}

.blog.blog-dark .link {
    color: #343a40 !important;
}

.blog.blog-dark .post-meta .like:hover,
.blog.blog-dark .post-meta .comments:hover {
    color: #343a40 !important;
}

.blog.blog-muted .tag {
    background: #8492a6 !important;
}

.blog.blog-muted .title:hover {
    color: #8492a6 !important;
}

.blog.blog-muted .link {
    color: #8492a6 !important;
}

.blog.blog-muted .post-meta .like:hover,
.blog.blog-muted .post-meta .comments:hover {
    color: #8492a6 !important;
}

.blog.blog-light .tag {
    background: #f8f9fc !important;
}

.blog.blog-light .title:hover {
    color: #f8f9fc !important;
}

.blog.blog-light .link {
    color: #f8f9fc !important;
}

.blog.blog-light .post-meta .like:hover,
.blog.blog-light .post-meta .comments:hover {
    color: #f8f9fc !important;
}

.blog.blog-footer .tag {
    background: #202942 !important;
}

.blog.blog-footer .title:hover {
    color: #202942 !important;
}

.blog.blog-footer .link {
    color: #202942 !important;
}

.blog.blog-footer .post-meta .like:hover,
.blog.blog-footer .post-meta .comments:hover {
    color: #202942 !important;
}

.blog .title {
    font-weight: 500;
}

.sidebar .widget .widget-search form {
    position: relative;
}

.sidebar .widget .widget-search input[type="text"],
.sidebar .widget .searchform input[type="text"] {
    box-shadow: none;
    padding: 12px 15px;
    height: 45px;
    font-size: 14px;
    display: block;
    width: 100%;
    outline: none !important;
    padding-right: 45px;
}

.sidebar .widget .widget-search input[type="submit"],
.sidebar .widget .searchform input[type="submit"] {
    position: absolute;
    top: 5px;
    right: 10px;
    opacity: 0;
    width: 40px;
    height: 40px;
}

.sidebar .widget .widget-search .searchform:after {
    content: "\F0349";
    position: absolute;
    font-family: "Material Design Icons";
    right: 16px;
    top: 15px;
    font-size: 20px;
    line-height: 20px;
    pointer-events: none;
}

.sidebar .widget .post-recent {
    padding-bottom: 15px;
}

.sidebar .widget .post-recent:last-child {
    padding-bottom: 0;
}

.sidebar .widget .post-recent .post-recent-thumb {
    width: 25%;
}

.sidebar .widget .post-recent .post-recent-content {
    width: 75%;
    padding-left: 10px;
}

.sidebar .widget .post-recent .post-recent-content a {
    display: block;
    color: #343a40;
    font-size: 15px;
    transition: all 0.5s ease;
}

.sidebar .widget .post-recent .post-recent-content a:hover {
    color: #396cf0;
}

.sidebar .widget .post-recent .post-recent-content span {
    font-size: 13px;
}

.sidebar .widget .tagcloud>a {
    background: #f8f9fa;
    color: #343a40;
    display: inline-block;
    font-size: 9px;
    letter-spacing: 1px;
    margin: 5px 10px 5px 0;
    padding: 8px 12px 7px;
    text-transform: uppercase;
    transition: all 0.5s ease;
    font-weight: 600;
}

.sidebar .widget .tagcloud>a:hover {
    background: #396cf0;
    color: #ffffff;
}

.pharpachy-categories .category-title {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 1;
}

.fc-event-title-container,
#external-events .fc-event {
    cursor: pointer;
    margin: 4px 2px;
}

#external-events .fc-event .fc-event-main {
    padding: 5px;
}

.fc .fc-non-business {
    background-color: transparent;
}

.fc .fc-daygrid-day-number {
    padding: 5px;
    font-weight: 600;
}

.fc .fc-col-header-cell-cushion {
    padding: 8px 4px !important;
}

.fc .fc-scrollgrid-liquid {
    border-radius: 5px !important;
}

.fc-theme-standard .fc-scrollgrid,
.fc-theme-standard td,
.fc-theme-standard th {
    border-color: #e9ecef !important;
}

.fc-header-toolbar .fc-toolbar-chunk .fc-toolbar-title {
    font-size: 18px !important;
}

.fc-direction-ltr .fc-daygrid-event.fc-event-start {
    margin: auto 8px 4px;
}

.fc-event-main {
    background-color: #396cf0;
}

.fc-daygrid-dot-event {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
}

.fc-daygrid-dot-event:hover {
    background-color: #e9ecef;
}

.fc .fc-button {
    padding: 4px 8px;
    font-size: 13px !important;
    background-color: #396cf0 !important;
    border: 1px solid #396cf0 !important;
    color: #ffffff !important;
    text-transform: capitalize !important;
}

.fc .fc-button:disabled,
.fc .fc-button:disabled:hover,
.fc .fc-button:disabled:focus,
.fc .fc-button:disabled:active,
.fc .fc-button:disabled.active,
.fc .fc-button:disabled.focus {
    background-color: rgba(57, 108, 240, 0.1) !important;
    border: 1px solid rgba(57, 108, 240, 0.1) !important;
    color: #396cf0 !important;
}

.fc .fc-button:hover,
.fc .fc-button:focus,
.fc .fc-button:active,
.fc .fc-button.active,
.fc .fc-button.focus {
    background-color: #215aee !important;
    border-color: #215aee !important;
}

.fc .fc-button:focus {
    box-shadow: none !important;
}

.fc .fc-icon {
    font-size: 16px !important;
}

#calendar {
    max-width: 1240px;
}

.shop-list .shop-image .shop-icons,
.shop-list .shop-image .qty-icons {
    position: absolute;
    opacity: 0;
    transition: all 0.5s ease;
}

.shop-list .shop-image .shop-icons {
    top: 15px;
    left: 15px;
    z-index: 2;
}

.shop-list .shop-image .qty-icons {
    bottom: 15px;
    text-align: center;
    right: 0;
    left: 0;
    z-index: 2;
    transform: translateY(100px);
}

.shop-list .shop-image:hover .shop-icons,
.shop-list .shop-image:hover .qty-icons {
    opacity: 1;
}

.shop-list .shop-image:hover .qty-icons {
    transform: translateY(0);
}

.shop-list .content .product-name {
    transition: all 0.5s ease;
}

.shop-list .content .product-name:hover {
    color: #396cf0 !important;
}

.shop-list .label {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 2;
}

.shop-list .qty-btn {
    pointer-events: none;
    width: 65px;
    padding-left: 16px;
}

@media only screen and (min-device-width: 1138px) and (-webkit-min-device-pixel-ratio: 1) {
    .weight-loss-imge {
        width: 117px !important;
    }
}

@media (max-width: 1024px) {
    .shop-list .qty-btn {
        padding-left: 0;
    }
}

.error {
    margin: 8px 0px;
    display: none;
    color: #f0735a;
}

#ajaxsuccess {
    font-size: 16px;
    width: 100%;
    display: none;
    clear: both;
    margin: 8px 0px;
}

.error_message,
#success_page {
    padding: 10px;
    margin-bottom: 20px;
    text-align: center;
    border-radius: 5px;
}

.error_message {
    background-color: rgba(240, 115, 90, 0.1) !important;
    border: 2px solid rgba(240, 115, 90, 0.1) !important;
    color: #f0735a !important;
    font-size: 14px;
}

.contact-loader {
    display: none;
}

#success_page {
    background-color: rgba(83, 199, 151, 0.1) !important;
    border: 2px solid rgba(83, 199, 151, 0.1) !important;
    color: #53c797 !important;
}

#success_page p {
    margin-bottom: 0 !important;
}

.simplebar-track.simplebar-vertical {
    width: 8px !important;
}

.simplebar-track.simplebar-vertical .simplebar-scrollbar:before {
    width: 4px !important;
    background: #adb5bd !important;
}

footer {
    padding: 60px 0 24px;
    position: relative;
    color: black;
}

footer .text-foot {
    color: black;
}

footer .footer-head {
    font-size: 18px !important;
    letter-spacing: 1px;
    font-weight: 500;
}

footer .footer-list {
    margin-bottom: 0;
}

footer .footer-list li {
    margin-bottom: 10px;
}

footer .footer-list li a {
    transition: all 0.5s ease;
}

footer .footer-list li a:hover {
    color: white;
}

footer .footer-list li:last-child {
    margin-bottom: 0;
}

footer .footer-bar,
footer.footer-bar {
    border-top: 1px solid lightgrey;
}

/*# sourceMappingURL=style.css.map */