@-moz-keyframes spin {
    from {
        -moz-transform: rotate(0deg);
    }
    to {
        -moz-transform: rotate(360deg);
    }
}

@-webkit-keyframes spin {
    from {
        -webkit-transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@-moz-keyframes click {
    from {
        -moz-transform: scale(1.05);
    }
    to {
        -moz-transform: scale(1);
    }
}

@-webkit-keyframes click {
    from {
        -webkit-transform: scale(1.05);
    }
    to {
        -webkit-transform: scale(1);
    }
}

@keyframes click {
    from {
        transform: scale(1.05);
    }
    to {
        transform: scale(1);
    }
}

html, body {
    margin: 0;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

#page {
    font-family: 'Roboto', sans-serif;
    margin: 0 auto;
}

a {
    color: #1F2023;
    text-decoration: none;
}

img {
    max-width: 100%;
}

p {
    margin: 0;
}

*:focus {
    outline: none;
}

h1, h2, h3, h4 {
    margin: 0;
    font-weight: normal;
}

#content #appointment-types {
    max-width: 970px;
    margin: 0 auto;
    margin-top: 18px;
    margin-bottom: 16px;
}

#content #appointment-types .appointment-type {
    cursor: pointer;
    display: inline-block;
    border-right: 1px solid #E6EBF1;
    padding: 15px 63px 15px 81px;
}

#content #appointment-types .appointment-type:last-child {
    border-right: none;
}

#content #appointment-types .appointment-type a {
    color: #1F2023;
    font-size: 18px;
    letter-spacing: 0.4px;
    line-height: 33px;
    display: block;
    position: relative;
}

#content #appointment-types .appointment-type a:after {
    content: '';
    position: absolute;
    height: 1px;
    background: #1F2023;
    bottom: 2px;
    left: 0;
    width: 0;
    opacity: 0;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

#content #appointment-types .appointment-type a:hover {
    text-decoration: none;
}

#content #appointment-types .appointment-type a:hover:after {
    width: 100%;
    opacity: 1;
}

#content #appointment-types .appointment-type span {
    opacity: 0.6;
    color: #323446;
    font-size: 14px;
    line-height: 16px;
}

#content #appointment-types .appointment-type:before {
    height: 48px;
    width: 48px;
    border-radius: 2px;
    display: inline-block;
    content: '';
    margin-left: -64px;
    position: absolute;
    background: url("../assets/icon/types/urgent.svg") no-repeat center center #FFE6E7;
}

#content #appointment-types .appointment-type.doctor:before {
    background-image: url("../assets/icon/types/doctor.svg");
    background-color: #E6E6FF;
}

#content #appointment-types .appointment-type.family:before {
    background-image: url("../assets/icon/types/family.svg");
    background-color: #E1EDFA;
}

#content #popular-clinics {
    border-top: 1px solid #E6EBF1;
    padding-top: 42px;
    margin-bottom: 81px;
    max-width: 1360px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 40px;
    padding-right: 40px;
}

#content #popular-clinics .inner {
    display: inline-block;
    width: 100%;
}

#content #popular-clinics .inner h2 {
    color: #1F2023;
    font-size: 18px;
    letter-spacing: 0.6px;
    line-height: 32px;
    margin-bottom: 21px;
}

#content #popular-clinics .inner .popular-clinic {
    cursor: pointer;
    display: inline-block;
    width: 23.65%;
    float: left;
    margin-right: 1.8%;
    opacity: 1;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

#content #popular-clinics .inner .popular-clinic .inner {
    border: 1px solid rgba(25, 26, 27, 0.1);
    border-radius: 2px;
    padding: 0;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

#content #popular-clinics .inner .popular-clinic .inner:hover {
    box-shadow: 2px 4px 10px 0 rgba(0, 0, 0, 0.05);
}

#content #popular-clinics .inner .popular-clinic .inner .clinic-logo {
    padding: 6px 10px;
}

#content #popular-clinics .inner .popular-clinic .inner .clinic-logo a {
    height: 100px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    display: block;
}

#content #popular-clinics .inner .popular-clinic .inner .clinic-logo .no-logo-wrap {
    display: table;
    width: 100%;
}

#content #popular-clinics .inner .popular-clinic .inner .clinic-logo .no-logo-wrap .no-logo {
    vertical-align: middle;
    display: table-cell;
    height: 100px;
    color: #E1E1E1;
    font-size: 16px;
    letter-spacing: -0.18px;
    line-height: 1.2;
    text-align: center;
    padding-left: 10px;
    padding-right: 10px;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

#content #popular-clinics .inner .popular-clinic .inner .clinic-description {
    padding: 46px 24px;
    padding-bottom: 24px;
    border-top: 1px solid rgba(25, 26, 27, 0.1);
}

#content #popular-clinics .inner .popular-clinic .inner .clinic-description a {
    color: #1F2023;
    font-size: 18px;
    letter-spacing: 0.6px;
    line-height: 23px;
    display: block;
    margin-bottom: 8px;
}

#content #popular-clinics .inner .popular-clinic .inner .clinic-description .clinic-address {
    margin: 0;
    color: #B0B5BB;
    font-size: 14px;
    letter-spacing: -0.32px;
    line-height: 20px;
}

#content #popular-clinics .inner .popular-clinic .inner:hover .clinic-logo a.no-logo {
    color: #1F2023;
}

#content #popular-clinics .inner .popular-clinic:last-child {
    margin-right: 0;
}

#content #featured-specialties {
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
}

#content #featured-specialties .inner {
    padding-left: 40px;
    padding-right: 40px;
}

#content #featured-specialties .inner .wrap h2 {
    color: #1F2023;
    font-size: 18px;
    letter-spacing: 1px;
    line-height: 32px;
    margin-bottom: 21px;
    margin-top: 0;
    display: inline-block;
}

#content #featured-specialties .inner .wrap .all {
    color: #9DA1A6;
    font-size: 16px;
    line-height: 24px;
    float: right;
    margin-top: 4px;
}

#content #featured-specialties .inner .featured-specialty {
    display: inline-block;
    width: 23.65%;
    float: left;
    margin-right: 1.8%;
    opacity: 1;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

#content #featured-specialties .inner .featured-specialty .inner {
    border: 1px solid rgba(25, 26, 27, 0.1);
    border-radius: 2px;
    border-collapse: collapse;
    padding: 0;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

#content #featured-specialties .inner .featured-specialty .inner:hover {
    box-shadow: 2px 4px 10px 0 rgba(0, 0, 0, 0.05);
}

#content #featured-specialties .inner .featured-specialty .inner .specialty-image img {
    width: 100%;
}

#content #featured-specialties .inner .featured-specialty .inner .specialty-name {
    padding: 17px 16px;
    color: #1F2023;
    font-size: 16px;
    letter-spacing: 0.23px;
    line-height: 21px;
    display: block;
}

#content #featured-specialties .inner .featured-specialty:last-child {
    margin-right: 0;
}

#content #download {
    margin-top: 146px;
    display: inline-block;
    width: 100%;
    background-color: #FAFBFC;
    position: relative;
    border-bottom: 1px solid #D1D6DB;
}

#content #download .inner {
    max-width: 1140px;
    margin: 0 auto;
}

#content #download .inner #download-phone {
    position: absolute;
    margin-left: 118px;
    bottom: 0;
    width: 275px;
    overflow: hidden;
}

#content #download .inner #download-phone img {
    margin-bottom: -85px;
}

#content #download .inner #download-phone img.logo {
    position: absolute;
    top: 75px;
    left: calc(50% - 24px);
}

#content #download .inner .button.violet {
    line-height: 56px;
    height: auto;
    padding: 0 24px;
    margin: 24px 0 16px;
    float: none;
    display: inline-block;
}

#content #download .inner .oneLinkButton {
    display: block;
    height: 32px;
    width: 68px;
    border-radius: 16px;
    background: black url(../assets/icon/download-icons.svg) no-repeat center/50px auto;
}

#content #download .inner #download-cta {
    margin-left: 470px;
    padding-top: 97px;
    padding-bottom: 71px;
}

#content #download .inner #download-cta p {
    color: #1F2023;
    font-size: 32px;
    line-height: 44px;
    max-width: 574px;
    margin: 0;
    letter-spacing: 0.4px;
}

#content #download .inner #download-cta #download-buttons {
    margin-top: 59px;
}

#content #download .inner #download-cta #download-buttons .download-button {
    max-width: 225px;
    margin-right: 11px;
    display: inline-block;
    opacity: 1;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

#content #download .inner #download-cta #download-buttons .download-button:hover {
    opacity: 0.8;
}

#content #specialty {
    padding-top: 83px;
    display: inline-block;
    width: 100%;
}

#content #specialty h2 {
    color: #1F2023;
    font-size: 32px;
    line-height: 48px;
    text-align: center;
    margin-top: 0;
    margin-bottom: 45px;
    letter-spacing: 0.3px;
}

#content #specialty input {
    height: 56px;
    width: 352px;
    border: 1px solid #DADFE6;
    border-radius: 2px;
    background-color: #FFFFFF;
    margin-bottom: 25px;
    padding-left: 16px;
    color: #2C2E3D;
    font-size: 16px;
    letter-spacing: -0.32px;
    line-height: 24px;
}

#content #specialty #specialty-list {
    border-radius: 1px;
    display: flex;
    margin-left: auto;
    margin-right: auto;
    max-width: 1440px;
}

#content #specialty #specialty-list .inner {
    padding: 32px 40px;
    padding-bottom: 22px;
    width: 100%;
    border: 1px solid #E6EBF1;
    margin: 0 40px;
}

#content #specialty #specialty-list .inner h3 {
    color: #1F2023;
    font-size: 18px;
    letter-spacing: 1px;
    line-height: 32px;
    margin: 0;
    border-bottom: 1px solid #E6EBF1;
    padding-bottom: 16px;
    margin-bottom: 16px;
}

#content #specialty #specialty-list .inner ul {
    margin: 0;
    padding: 0;
    display: inline-block;
    width: 100%;
}

#content #specialty #specialty-list .inner ul li {
    float: left;
    list-style: none;
    display: inline-block;
    width: 23%;
    margin-right: 2%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

#content #specialty #specialty-list .inner ul li a {
    color: #1F2023;
    font-size: 16px;
    letter-spacing: 0.23px;
    line-height: 32px;
    position: relative;
}

#content #specialty #specialty-list .inner ul li a:after {
    content: '';
    position: absolute;
    height: 1px;
    background: #000;
    bottom: -2px;
    left: 0;
    width: 0;
    opacity: 0;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

#content #specialty #specialty-list .inner ul li a:hover {
    text-decoration: none;
}

#content #specialty #specialty-list .inner ul li a:hover:after {
    width: 100%;
    opacity: 1;
}

#content #specialty #specialty-list .inner .all {
    display: block;
    margin-top: 15px;
    color: #9DA1A6;
    font-size: 16px;
    letter-spacing: -0.37px;
    line-height: 24px;
    clear: both;
}

#content #professionals-cta {
    overflow: hidden;
    position: relative;
    width: 100%;
}

#content #professionals-cta #profesionals-cta-text {
    display: inline-block;
    width: 50%;
    background-color: #91B0B6;
}

#content #professionals-cta #profesionals-cta-text .inner {
    padding: 119px 40px;
    padding-bottom: 115px;
    color: #fff;
}

#content #professionals-cta #profesionals-cta-text .inner h2 {
    font-size: 32px;
    line-height: 48px;
    margin-bottom: 15px;
    letter-spacing: 0.4px;
}

#content #professionals-cta #profesionals-cta-text .inner p {
    color: #FAFBFC;
    font-size: 18px;
    letter-spacing: 0.4px;
    line-height: 32px;
    margin: 0;
    max-width: 540px;
}

#content #professionals-cta #profesionals-cta-text .inner .btn {
    border: 1px solid #FFFFFF;
    border-radius: 2px;
    background-color: #FFFFFF;
    color: #2C2E3D;
    font-size: 16px;
    letter-spacing: -0.32px;
    padding: 12px 17px;
    display: inline-block;
    margin-top: 38px;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

#content #professionals-cta #profesionals-cta-text .inner .btn:hover {
    box-shadow: 0 0 10px #635e5e;
}

#content #professionals-cta #profesionals-cta-img {
    background: url("../assets/images/clinic@2x.png") no-repeat center center/cover;
    height: 100%;
    width: 50%;
    position: absolute;
    right: 0;
    top: 0;
}

#content #hero-image {
    margin-bottom: 40px;
}

#content #hero-image img {
    width: 100%;
}

#content .back-home {
    color: #9DA1A6;
    font-size: 14px;
    line-height: 20px;
}

#content .type {
    opacity: 0.3;
    color: #1F2023;
    font-size: 18px;
    letter-spacing: 0.6px;
    line-height: 24px;
    margin-top: 10px;
}

.not-home h1 {
    color: #1F2023;
    font-size: 32px;
    line-height: 48px;
    margin-bottom: 40px;
    margin-top: 11px;
    letter-spacing: 0.3px;
}

.not-home #content #specialty {
    padding-top: 40px;
}

.not-home #content #specialty #specialty-list {
    padding: 33px 40px;
}

.not-home #content #specialty #specialty-list .inner h3 {
    padding-bottom: 14px;
    margin-bottom: 24px;
    letter-spacing: 0.7px;
}

.not-home #content #specialty #specialty-list .inner ul li {
    width: 31.33%;
}

.home #content #appointment-types .appointment-type.doctor {
    padding-left: 112px;
    padding-right: 53px;
}

.home #content #appointment-types .appointment-type.family {
    padding-left: 112px;
    padding-right: 0;
}

.home #specialty #specialty-list {
    margin-bottom: 80px;
}

.home.lang-fr #content #appointment-types .appointment-type.doctor {
    padding-left: 82px;
    padding-right: 30px;
}

.home.lang-fr #content #appointment-types .appointment-type.family {
    padding-left: 92px;
}

.error-404 #content {
    background-color: #E6EBF1;
}

.error-404 #content .inner {
    max-width: 1360px;
    margin: 0 auto;
    padding: 185px 40px 212px 40px;
}

.error-404 #content .inner h1 {
    margin-bottom: 16px;
}

.error-404 #content .inner p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 21px;
    letter-spacing: 0.2px;
    max-width: 490px;
}

.error-404 #content .inner .purple {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 2px;
    background-color: #9C99FA;
    color: #fff;
    padding: 11px 18px;
    display: inline-block;
}

.margin-40 {
    margin: 0 auto;
    max-width: 1360px;
    padding-left: 40px;
    padding-right: 40px;
}

.lang-fr #content #appointment-types {
    max-width: 992px;
}

.lang-fr #content #appointment-types .appointment-type {
    padding-right: 25px;
}

.info-modal {
    font-family: 'Roboto', sans-serif;
    z-index: 2;
    opacity: 0;
    visibility: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition: opacity 500ms ease-in-out;
    font-size: 22px;
    line-height: 26px;
    color: #1F2023;
    border-radius: 3px;
}

.info-modal .modal-inner {
    -webkit-transform: translate(-50%, -50%) scale(0.75);
    transform: translate(-50%, -50%) scale(0.75);
    top: 50%;
    left: 50%;
    width: 50%;
    background: white;
    padding: 30px;
    position: absolute;
}

.info-modal .modal-inner .close {
    background: #9C98FA;
    display: inline-block;
    padding: 10px;
    position: absolute;
    right: -15px;
    top: -15px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-radius: 50%;
}

.info-modal .modal-inner .close:before {
    content: '';
    display: inline-block;
    width: 15px;
    height: 15px;
    background: url("../assets/icon/ui/close.svg") no-repeat center center/contain;
}

.info-modal .modal-inner .close:hover {
    background: #1F2023;
}

.mobile-modal {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: white;
    padding-top: 130px;
    z-index: 1;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    display: none;
}

@media (max-width: 1440px) and (min-width: 1200px) {
    .mobile-modal {
        padding-top: 40px;
    }
}

@media (max-width: 620px) {
    .mobile-modal {
        padding: 30px 20px;
        width: 100%;
    }
}

.mobile-modal .modal-content {
    width: 70%;
    height: 500px;
    margin: 0 auto;
    position: relative;
    padding-left: 350px;
    box-sizing: border-box;
    padding-top: 105px;
    color: #1F2023;
}

@media (max-width: 1440px) and (min-width: 1200px) {
    .mobile-modal .modal-content {
        height: 55%;
        min-height: 400px;
        padding-top: 3%;
        padding-left: 20%;
    }
}

@media (max-width: 1200px) {
    .mobile-modal .modal-content {
        padding-left: 18%;
        padding-top: 30px;
        height: auto;
        margin-bottom: 50px;
    }
}

@media (max-width: 768px) {
    .mobile-modal .modal-content {
        padding-left: 0;
    }
}

@media (max-width: 620px) {
    .mobile-modal .modal-content {
        width: 100%;
    }
}

.mobile-modal .modal-content form {
    position: relative;
}

.mobile-modal .modal-content form label.error {
    position: absolute;
    left: 0;
    top: 70px;
    white-space: nowrap;
    clear: both;
    color: #AB3E43;
    margin-top: -7px;
    margin-bottom: 10px;
    font-size: 16px;
    z-index: -1;
    background: #FFE6E7;
    border-radius: 2px;
    height: 40px;
    line-height: 40px;
    padding: 0 16px;
    z-index: 2;
}

.mobile-modal .modal-content form label.error.apiError {
    z-index: 1;
    display: none;
}

.mobile-modal .modal-content h2 {
    font-size: 34px;
    line-height: 44px;
    margin-bottom: 24px;
}

@media (max-width: 768px) {
    .mobile-modal .modal-content h2 {
        font-size: 26px;
        line-height: 34px;
    }
}

@media (max-width: 500px) {
    .mobile-modal .modal-content h2 {
        font-size: 22px;
        line-height: 28px;
    }
}

.mobile-modal .modal-content h2.mobile-number {
    margin-top: -15px;
    font-weight: 500;
}

.mobile-modal .modal-content p {
    font-size: 16px;
    line-height: 24px;
    font-weight: 300;
    margin-bottom: 48px;
    width: 70%;
}

@media (max-width: 768px) {
    .mobile-modal .modal-content p {
        width: 100%;
        margin-bottom: 18px;
    }
}

@media (max-width: 500px) {
    .mobile-modal .modal-content p {
        font-size: 14px;
        line-height: 24px;
    }
}

.mobile-modal .modal-content p a {
    font-weight: 500;
    text-decoration: underline;
}

.mobile-modal .modal-content input:not([type="submit"]) {
    float: left;
    border-radius: 2px;
    border: 1px solid #DADFE6;
    height: 56px;
    font-size: 16px;
    line-height: 24px;
    color: #2C2E3D;
    width: 292px;
    font-size: 16px;
    padding-left: 16px;
}

@media (max-width: 500px) {
    .mobile-modal .modal-content input:not([type="submit"]) {
        width: 100%;
        margin-bottom: 60px;
    }
}

.mobile-modal .modal-content input[type="submit"].button.violet {
    line-height: 56px;
    height: auto;
    padding: 0 24px;
    margin: 0 0 0 15px;
    float: none;
    display: inline-block;
}

@media (max-width: 500px) {
    .mobile-modal .modal-content input[type="submit"].button.violet {
        width: 200px;
        display: block;
        float: none;
        margin: 0 auto;
        margin-right: auto !important;
    }
}

.mobile-modal .modal-content #download-phone {
    position: absolute;
    width: 270px;
    left: 0;
    top: 0;
    height: 500px;
}

@media (max-width: 1440px) and (min-width: 1200px) {
    .mobile-modal .modal-content #download-phone {
        height: 100%;
        width: 200px;
    }
}

@media (max-width: 1200px) {
    .mobile-modal .modal-content #download-phone {
        height: 300px;
        width: 16%;
    }
}

@media (max-width: 768px) {
    .mobile-modal .modal-content #download-phone {
        display: none;
    }
}

.mobile-modal .modal-content #download-phone .logo {
    position: absolute;
    left: calc(50% - 24px);
    top: 50%;
}

@media (max-width: 1200px) {
    .mobile-modal .modal-content #download-phone .logo {
        top: 50px;
    }
}

.mobile-modal .modal-content #download-phone .logo.second {
    width: 100px;
    left: calc(50% - 50px);
    top: calc(50% - 50px);
}

@media (max-width: 1200px) {
    .mobile-modal .modal-content #download-phone .logo.second {
        top: 50px;
    }
}

.mobile-modal .modal-footer {
    width: 500px;
    margin: 60px auto 0;
}

@media (max-width: 1200px) {
    .mobile-modal .modal-footer {
        width: 50%;
        margin: 20px auto 0;
        clear: both;
    }
}

@media (max-width: 768px) {
    .mobile-modal .modal-footer {
        width: 80%;
        margin-top: 30px;
    }
}

@media (max-width: 620px) {
    .mobile-modal .modal-footer {
        width: 100%;
    }
}

.mobile-modal .modal-footer a.download {
    width: 50%;
    float: left;
    height: 106px;
    cursor: pointer;
    transition: 0.1s ease-in;
    -webkit-transition: 0.1s ease-in;
    -moz-transition: 0.1s ease-in;
    margin-bottom: 40px;
}

.mobile-modal .modal-footer a.download.appstore {
    background: #FAFBFC url(../assets/icon/download-apple.svg) no-repeat center;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

@media (max-width: 500px) {
    .mobile-modal .modal-footer a.download.appstore {
        background-size: 90%;
    }
}

.mobile-modal .modal-footer a.download.playstore {
    background: #FAFBFC url(../assets/icon/download-google.svg) no-repeat center;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

@media (max-width: 500px) {
    .mobile-modal .modal-footer a.download.playstore {
        background-size: 90%;
    }
}

.mobile-modal .modal-footer a.download:hover {
    background-color: #9c99fa1f;
}

.mobile-modal .modal-footer p {
    font-size: 14px;
    line-height: 24px;
    color: #1F2023;
    opacity: 0.4;
    clear: both;
    text-align: center;
}

.mobile-modal .modal-footer p a {
    text-decoration: underline;
}

.mobile-modal .close-modal {
    background: url(../assets/icon/ui/cancel-black.svg) no-repeat center/46px;
    width: 60px;
    height: 60px;
    cursor: pointer;
    position: fixed;
    right: 20px;
    top: 20px;
    display: block;
}

@media (max-width: 620px) {
    .mobile-modal .close-modal {
        width: 40px;
        height: 40px;
        background-size: 30px;
        top: 15px;
        right: 15px;
    }
}

.mobile-modal .second {
    display: none;
}

.mobile-modal.sent .second {
    display: block;
}

.mobile-modal.sent .second .button {
    margin-left: 0;
}

.mobile-modal.sent .first {
    display: none;
}

#header #header-logo {
    float: left;
}

#header .logo-holder {
    display: flex;
    flex: 1;
}

#header #header-menu {
    float: right;
    margin-top: 5px;
}

#header #header-menu ul {
    margin: 0;
    padding: 0;
}

#header #header-menu ul li {
    list-style: none;
    display: inline-block;
}

#header #header-menu ul li a {
    color: #FFFFFF;
    font-size: 16px;
    line-height: 24px;
    margin-left: 25px;
    position: relative;
}

#header #header-menu ul li a:after {
    content: '';
    position: absolute;
    height: 1px;
    background: #fff;
    bottom: -2px;
    left: 0;
    width: 0;
    opacity: 0;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

#header #header-menu ul li a:hover {
    text-decoration: none;
}

#header #header-menu ul li a:hover:after {
    width: 100%;
    opacity: 1;
}

#header #search {
    margin-top: 122px;
}

#header #search h1 {
    font-family: 'Roboto', sans-serif;
    color: #fff;
    font-size: 32px;
    letter-spacing: 1px;
    line-height: 33px;
    clear: both;
    margin-bottom: 45px;
}

#header #search #results-info {
    opacity: 0.4;
    color: #212224;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.92px;
    line-height: 16px;
    text-transform: uppercase;
    padding-left: 25px;
    margin-top: 15px;
    margin-bottom: 10px;
}

#header #search #results-info a {
    text-decoration: underline;
}

.home #header-wrap {
    background: url("../assets/images/header-home.png") no-repeat center 0/cover;
}

.home #header-wrap #header {
    max-width: 1360px;
    margin: 0 auto;
    padding: 24px 40px;
    padding-bottom: 277px;
}

.home #header-wrap #header #header-search {
    position: relative;
    width: 744px;
}

.home #header-wrap #header #header-search input {
    box-sizing: border-box;
    height: 68px;
    width: 100%;
    border: 1px solid rgba(25, 26, 27, 0.1);
    border-radius: 4px;
    background-color: #FFFFFF;
    box-shadow: 2px 4px 10px 0 rgba(0, 0, 0, 0.05);
    font-size: 16px;
    letter-spacing: -0.32px;
    line-height: 24px;
    padding-left: 61px;
}

.home #header-wrap #header #header-search input::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: rgba(44, 46, 61, 0.4);
}

.home #header-wrap #header #header-search input::-moz-placeholder {
    /* Firefox 19+ */
    color: rgba(44, 46, 61, 0.4);
}

.home #header-wrap #header #header-search input:-ms-input-placeholder {
    /* IE 10+ */
    color: rgba(44, 46, 61, 0.4);
}

.home #header-wrap #header #header-search input:-moz-placeholder {
    /* Firefox 18- */
    color: rgba(44, 46, 61, 0.4);
}

.home #header-wrap #header #header-search input.searching {
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
}

.home #header-wrap #header #header-search:after {
    content: '';
    display: inline-block;
    background: url("../assets/icon/ui/search.svg") no-repeat center center/cover;
    position: absolute;
    left: 20px;
    width: 22px;
    height: 22px;
    top: 23px;
}

.home #header-wrap #header #popular-search {
    margin-top: 25px;
    color: #fff;
    font-size: 14px;
    line-height: 16px;
}

.home #header-wrap #header #popular-search span {
    margin-right: 20px;
    opacity: 0.7;
}

.home #header-wrap #header #popular-search ul {
    display: inline-block;
    margin: 0;
    padding: 0;
}

.home #header-wrap #header #popular-search ul li {
    list-style: none;
    display: inline-block;
    margin-right: 20px;
    margin-bottom: 10px;
}

.home #header-wrap #header #popular-search ul li a {
    color: #fff;
    position: relative;
}

.home #header-wrap #header #popular-search ul li a:after {
    content: '';
    position: absolute;
    height: 1px;
    background: #fff;
    bottom: -2px;
    left: 0;
    width: 0;
    opacity: 0;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.home #header-wrap #header #popular-search ul li a:hover {
    text-decoration: none;
}

.home #header-wrap #header #popular-search ul li a:hover:after {
    width: 100%;
    opacity: 1;
}

.not-home #header {
    margin-left: auto;
    margin-right: auto;
    min-height: 58px;
    margin-top: 11px;
    padding-bottom: 10px;
    border-bottom: 1px solid #F4F4F4;
    padding-left: 40px;
    padding-right: 40px;
}

.not-home #header #header-logo {
    margin-top: 13px;
}

.not-home #header #header-search {
    width: 100%;
    margin-left: 31px;
    float: left;
    position: relative;
    padding-right: 40px;
}

.not-home #header #header-search #search-results {
    top: 55px;
}

.not-home #header #header-search #search-results #results-info {
    opacity: 0.4;
    color: #212224;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.92px;
    line-height: 16px;
    text-transform: uppercase;
    padding-left: 25px;
    margin-top: 15px;
    margin-bottom: 10px;
}

.not-home #header #header-search #search-results #results-info a {
    text-decoration: underline;
}

.not-home #header #header-search input {
    height: 58px;
    width: 100%;
    border: 1px solid rgba(25, 26, 27, 0.1);
    border-radius: 4px;
    background-color: #FFFFFF;
    padding-left: 55px;
    padding-right: 10px;
    font-size: 16px;
    letter-spacing: -0.32px;
    line-height: 24px;
}

.not-home #header #header-search input::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: rgba(44, 46, 61, 0.4);
}

.not-home #header #header-search input::-moz-placeholder {
    /* Firefox 19+ */
    color: rgba(44, 46, 61, 0.4);
}

.not-home #header #header-search input:-ms-input-placeholder {
    /* IE 10+ */
    color: rgba(44, 46, 61, 0.4);
}

.not-home #header #header-search input:-moz-placeholder {
    /* Firefox 18- */
    color: rgba(44, 46, 61, 0.4);
}

.not-home #header #header-search input.searching {
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
}

.not-home #header #header-search:after {
    content: '';
    display: inline-block;
    background: url("../assets/icon/ui/search.svg") no-repeat center center/cover;
    position: absolute;
    left: 21px;
    width: 22px;
    height: 21px;
    top: 19px;
}

.not-home.error-404 #header {
    margin-bottom: 0px;
}

#header-search {
    width: 56%;
    max-width: 100%;
}

#header-search #search-results {
    background: #fff;
    border-radius: 4px;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    width: 100%;
    display: none;
    position: absolute;
    z-index: 1;
    left: 0;
    top: 65px;
    padding-top: 3px;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.08);
    box-sizing: border-box;
    border: 1px solid rgba(25, 26, 27, 0.1);
}

#header-search #search-results.no-specialties #results-wrapper #specialty-filter {
    display: none;
}

#header-search #search-results.no-specialties #results-wrapper #providers-clinics {
    width: 100%;
}

#header-search #search-results.no-specialties #results-wrapper:after {
    opacity: 0;
}

#header-search #search-results.no-providers #results-wrapper #providers-clinics {
    display: none;
}

#header-search #search-results.no-providers #results-wrapper #specialty-filter {
    width: 100%;
}

#header-search #search-results.no-providers #results-wrapper:after {
    opacity: 0;
}

#header-search #search-results h2 {
    opacity: 0.4;
    color: #212224;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.92px;
    line-height: 16px;
    text-transform: uppercase;
    padding-left: 25px;
    margin-top: 17px;
    margin-bottom: 10px;
}

#header-search #search-results #results-wrapper:after {
    content: '';
    display: block;
    position: absolute;
    width: 1px;
    height: 100%;
    left: 49.9%;
    background: #E6EBF1;
}

#header-search #search-results #results-wrapper #specialty-filter {
    display: inline-block;
    float: left;
    width: 50%;
    max-height: 300px;
    overflow-y: auto;
}

#header-search #search-results #results-wrapper #specialty-filter ul {
    padding: 0;
    margin: 0;
}

#header-search #search-results #results-wrapper #specialty-filter ul li {
    list-style: none;
    padding-left: 25px;
    color: #1F2023;
    font-size: 14px;
    letter-spacing: -0.28px;
    line-height: 32px;
}

#header-search #search-results #results-wrapper #specialty-filter ul li:hover {
    background-color: #FAFBFC;
}

#header-search #search-results #results-wrapper #specialty-filter ul li a {
    list-style: none;
    color: #1F2023;
    font-size: 14px;
    letter-spacing: -0.28px;
    line-height: 32px;
}

#header-search #search-results #results-wrapper #specialty-filter ul li a:hover {
    background-color: #FAFBFC;
}

#header-search #search-results #results-wrapper #providers-clinics {
    display: inline-block;
    float: left;
    width: 49.8%;
    max-height: 300px;
    overflow-y: auto;
}

#header-search #search-results #results-wrapper #providers-clinics .search-result {
    margin: 8px 25px;
    background-color: #F0F0FA;
    min-height: 52px;
    position: relative;
    padding-left: 64px;
    padding-bottom: 10px;
}

#header-search #search-results #results-wrapper #providers-clinics .search-result::before {
    content: '';
    width: 52px;
    height: 100%;
    display: inline-block;
    position: absolute;
    background: url("../assets/icon/types/doctor1.svg") no-repeat center center #E3DCFA;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

#header-search #search-results #results-wrapper #providers-clinics .search-result a {
    color: #1F2023;
    font-size: 14px;
    letter-spacing: -0.28px;
    line-height: 20px;
    display: block;
    padding-top: 8px;
}

#header-search #search-results #results-wrapper #providers-clinics .search-result .type {
    opacity: 0.6;
    color: #2C2E3D;
    font-size: 12px;
    letter-spacing: -0.24px;
    line-height: 16px;
    display: inline;
    float: none;
}

#header-search #search-results #results-wrapper #providers-clinics .search-result.green {
    background-color: #F0FAF8;
}

#header-search #search-results #results-wrapper #providers-clinics .search-result.green::before {
    background: url("../assets/icon/types/parmedical.svg") no-repeat center center #D3F0EA;
}

#header-search #search-results #results-wrapper #providers-clinics .search-result.blue {
    background-color: #F0F5FA;
}

#header-search #search-results #results-wrapper #providers-clinics .search-result.blue::before {
    background: url("../assets/icon/types/clinic.svg") no-repeat center center #D7E6F5;
}

#footer {
    margin-top: 42px;
    padding: 40px;
    margin-left: auto;
    margin-right: auto;
    max-width: 1360px;
}

#footer #footer-menu .footer-menu-col {
    display: inline-block;
    float: left;
    width: 23%;
    margin-right: 2%;
}

#footer #footer-menu .footer-menu-col-wide {
    display: inline-block;
    float: left;
    width: 69%;
    margin-right: 2%;
    color: #B0B5BB;
}

#footer #footer-menu .footer-menu-col h2 {
    color: #1F2023;
    font-size: 18px;
    letter-spacing: 0.6px;
    line-height: 32px;
    margin-bottom: 25px;
}

#footer #footer-menu .footer-menu-col ul {
    margin: 0;
    padding: 0;
}

#footer #footer-menu .footer-menu-col ul li {
    list-style: none;
}

#footer #footer-menu .footer-menu-col ul li a {
    color: #1F2023;
    font-size: 16px;
    letter-spacing: 0.23px;
    line-height: 32px;
    position: relative;
}

#footer #footer-menu .footer-menu-col ul li a:after {
    content: '';
    position: absolute;
    height: 1px;
    background: #000;
    bottom: -2px;
    left: 0;
    width: 0;
    opacity: 0;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

#footer #footer-menu .footer-menu-col ul li a:hover {
    text-decoration: none;
}

#footer #footer-menu .footer-menu-col ul li a:hover:after {
    width: 100%;
    opacity: 1;
}

#footer #footer-menu .footer-menu-col #footer-social-icons ul {
    margin-bottom: 28px;
}

#footer #footer-menu .footer-menu-col #footer-social-icons ul li {
    display: inline-block;
    margin-right: 35px;
}

#footer #footer-bottom {
    border-top: 1px solid #E6EBF1;
    display: inline-block;
    padding-top: 35px;
    margin-top: 35px;
    width: 100%;
}

#footer #footer-bottom #footer-logo {
    float: left;
    margin-right: 20px;
}

#footer #footer-bottom #footer-copyright {
    float: left;
    color: #B0B5BB;
    font-size: 14px;
    letter-spacing: -0.32px;
    line-height: 32px;
}

#footer #footer-bottom #footer-lang-switch {
    float: right;
}

#footer #footer-bottom #footer-lang-switch .s-hidden {
    visibility: hidden;
    padding-right: 10px;
    display: none;
}

#footer #footer-bottom #footer-lang-switch .select {
    cursor: pointer;
    display: inline-block;
    position: relative;
}

#footer #footer-bottom #footer-lang-switch .select .styledSelect {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: white;
    font-size: 18px;
    line-height: 18px;
    text-align: center;
    padding: 11px 23px;
    background: url("../assets/icon/ui/caret-black.svg") no-repeat right center;
    padding-right: 40px;
}

#footer #footer-bottom #footer-lang-switch .select .options {
    top: -140px;
    right: 0;
    display: none;
    position: absolute;
    z-index: 999;
    margin: 0 0;
    padding: 0 0;
    list-style: none;
    padding: 15px 0;
    margin-top: 5px;
    width: 258px;
    border: 1px solid #DFE1E5;
    border-radius: 2px;
    background-color: #FFFFFF;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.08);
}

#footer #footer-bottom #footer-lang-switch .select .options li {
    font-size: 16px;
    letter-spacing: 0.23px;
    line-height: 40px;
    padding: 0 15px;
}

#footer #footer-bottom #footer-lang-switch .select .options li.active {
    background: url("../assets/icon/ui/checked.svg") no-repeat right center;
}

#footer #footer-bottom #footer-lang-switch .select .options li:hover {
    background-color: #EDF0F7;
}

* {
    -webkit-font-smoothing: antialiased;
}

#content #filters {
    display: inline-block;
    width: 100%;
    margin-top: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #EFF0F1;
}

#content #filters select {
    visibility: hidden;
    position: absolute;
}

#content #filters #visit-filters {
    float: left;
    margin-left: 40px;
}

#content #filters #visit-filters .s-hidden {
    visibility: hidden;
    padding-right: 10px;
}

#content #filters #visit-filters .select {
    cursor: pointer;
    display: inline-block;
    position: relative;
    color: #FE5B64;
    border: 1px solid #FE5B64;
    border-radius: 2px;
}

#content #filters #visit-filters .select .styledSelect {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: white;
    font-size: 16px;
    line-height: 16px;
    text-align: center;
    padding: 11px 23px;
}

#content #filters #visit-filters .select .options {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    z-index: 999;
    margin: 0 0;
    padding: 0 0;
    list-style: none;
    border: 1px solid #DFE1E5;
    border-radius: 2px;
    background-color: #FFFFFF;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.08);
    padding: 15px 0;
    padding-top: 0px;
    margin-top: 5px;
    width: 350px;
    max-height: 330px;
    overflow: scroll;
}

#content #filters #visit-filters .select .options::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 7px;
}

#content #filters #visit-filters .select .options::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: rgba(0, 0, 0, 0.5);
    -webkit-box-shadow: 0 0 1px rgba(255, 255, 255, 0.5);
}

#content #filters #visit-filters .select .options li {
    font-size: 14px;
    letter-spacing: -0.28px;
    line-height: 24px;
    padding: 0 15px;
    padding-top: 15px;
    padding-left: 50px;
    color: #2C2E3D;
}

#content #filters #visit-filters .select .options li:before {
    content: '';
    position: absolute;
    display: inline-block;
    height: 22px;
    width: 22px;
    border-radius: 11px;
    background-color: #fff;
    border: 1px solid #2A2B2E;
    margin-left: -33px;
}

#content #filters #visit-filters .select .options li.active:before {
    border-color: #9C98FA;
    background: url("../assets/icon/ui/check.svg") no-repeat center center #9C98FA/cover;
}

#content #filters #visit-filters .select .options .option-desc {
    color: #2C2E3D;
    font-size: 12px;
    letter-spacing: -0.24px;
    line-height: 16px;
    padding-left: 50px;
    padding-right: 10px;
    display: inline-block;
    cursor: default;
}

#content #filters #visit-filters #filter-by {
    float: left;
    opacity: 0.6;
    color: #2C2E3D;
    font-size: 14px;
    line-height: 40px;
    margin-right: 26px;
    letter-spacing: 0.4px;
}

#content #filters #visit-filters #visit-type {
    float: left;
}

#content #filters #visit-filters #specialty-type {
    float: left;
    margin-left: 5px;
    display: none;
}

#content #filters #visit-filters.purple .select {
    color: #9C99FA;
    border-color: #9C99FA;
}

#content #filters #map-switch {
    float: right;
    margin-right: 40px;
}

#content #filters #map-switch #toggle-map {
    color: #2C2E3D;
    font-size: 16px;
    letter-spacing: -0.32px;
    line-height: 24px;
    line-height: 40px;
}

#content #filters #map-switch .switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 24px;
    float: right;
    margin-top: 8px;
    margin-left: 8px;
}

#content #filters #map-switch .switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

#content #filters #map-switch .switch .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    -webkit-transition: .4s;
    transition: .4s;
    border: 1px solid #E6EBF1;
    border-radius: 12px;
}

#content #filters #map-switch .switch .slider:before {
    position: absolute;
    content: "";
    height: 24px;
    width: 24px;
    right: 0px;
    bottom: -1px;
    background: #9C98FA url("../assets/icon/ui/check.svg") no-repeat center center/cover;
    -webkit-transition: .4s;
    transition: .4s;
}

#content #filters #map-switch .switch .slider.round {
    border-radius: 34px;
}

#content #filters #map-switch .switch .slider.round:before {
    border-radius: 50%;
}

#content #filters #map-switch .switch .slider.unchecked:before {
    background-color: #B0B5BB;
}

#content #filters input:checked + .slider:before {
    -webkit-transform: translateX(-15px);
    -ms-transform: translateX(-15px);
    transform: translateX(-15px);
}

#content #special-wrap {
    display: inline-block;
    width: 100%;
    overflow: hidden;
    background-color: #FAFBFC;
}

#content #special-wrap .left {
    float: left;
    display: inline-block;
    width: 63.5%;
    overflow-y: auto;
    -webkit-transition: width 0.3s ease-out;
    -moz-transition: width 0.3s ease-out;
    -o-transition: width 0.3s ease-out;
    transition: width 0.3s ease-out;
}

#content #special-wrap .left h1 {
    margin-top: 35px;
    margin-bottom: 20px;
    margin-left: 30px;
    margin-right: 20px;
    font-size: 24px;
    line-height: 32px;
}

#content #special-wrap .left #search-results {
    padding-left: 30px;
    padding-right: 20px;
}

@media (max-width: 768px) {
    #content #special-wrap .left #search-results {
        padding: 0 20px;
    }
}

#content #special-wrap .left #search-results .result {
    display: inline-block;
    width: 49%;
    float: left;
    margin-right: 2%;
    padding-bottom: 30px;
    opacity: 1;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

#content #special-wrap .left #search-results .result:nth-child(2n+2) {
    margin-right: 0;
}

#content #special-wrap .left #search-results .result:hover {
    opacity: 0.8;
}

#content #special-wrap .left #search-results .result .result-logo {
    border: 1px solid #E6EBF1;
    border-radius: 2px;
    background-color: #FFFFFF;
    margin-bottom: 10px;
    padding: 10px;
    box-shadow: 2px 4px 10px 0 rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 2px 4px 10px 0 rgba(0, 0, 0, 0.05);
    -webkit-box-shadow: 2px 4px 10px 0 rgba(0, 0, 0, 0.05);
}

#content #special-wrap .left #search-results .result .result-logo a {
    display: block;
    height: 114px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
}

#content #special-wrap .left #search-results .result .result-logo .no-logo-wrap {
    display: table;
    width: 100%;
}

#content #special-wrap .left #search-results .result .result-logo .no-logo-wrap .no-logo {
    vertical-align: middle;
    display: table-cell;
    height: 114px;
    color: #E1E1E1;
    font-size: 16px;
    letter-spacing: -0.18px;
    line-height: 1.2;
    text-align: center;
    padding-left: 10px;
    padding-right: 10px;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

#content #special-wrap .left #search-results .result .result-tags {
    font-size: 12px;
    line-height: 16px;
    font-weight: 500;
    color: #9C99FA;
    text-transform: uppercase;
    margin-bottom: 11px;
}

#content #special-wrap .left #search-results .result .result-tags .dark-purple {
    color: #fff;
    background: #9C99FA;
    padding: 4px 6px;
    border-radius: 2px;
}

#content #special-wrap .left #search-results .result .result-name {
    margin-bottom: 8px;
}

#content #special-wrap .left #search-results .result .result-name a {
    color: #1F2023;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -0.21px;
    line-height: 24px;
}

#content #special-wrap .left #search-results .result .result-desc {
    font-size: 14px;
    line-height: 16px;
    color: #7E8089;
}

#content #special-wrap .left #search-results .result .result-desc span {
    margin-right: 5px;
    display: inline-block;
    margin-bottom: 5px;
}

#content #special-wrap .left #search-results .result .result-desc .result-type {
    color: #6A68A3;
    border-radius: 2px;
    background-color: #E6E6FF;
    padding: 4px 7px;
    letter-spacing: -0.32px;
}

#content #special-wrap .left #search-results .result:hover .result-logo .no-logo-wrap .no-logo {
    color: #1F2023;
}

#content #special-wrap .left .explore-all {
    display: inline-block;
    width: 100%;
    clear: both;
    background: #fff;
}

#content #special-wrap .left .explore-all .wrap {
    padding-top: 20px;
    padding-bottom: 30px;
    padding-left: 0;
    padding-right: 0;
}

#content #special-wrap .left .explore-all .wrap h2 {
    color: #1F2023;
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 12px;
}

#content #special-wrap .left .explore-all .wrap .explore-row {
    display: flex;
}

#content #special-wrap .left .explore-all .wrap .explore-row .result {
    display: inline-block;
    float: left;
    width: 32.3%;
    margin-right: 1.5%;
    margin-bottom: 30px;
    opacity: 1;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

#content #special-wrap .left .explore-all .wrap .explore-row .result.no-margin {
    margin-right: 0;
}

#content #special-wrap .left .explore-all .wrap .explore-row .result:hover {
    opacity: 0.8;
}

#content #special-wrap .left .explore-all .wrap .explore-row .result .result-logo {
    border: 1px solid #E6EBF1;
    border-radius: 2px;
    background-color: #FFFFFF;
    margin-bottom: 8px;
    padding: 10px;
}

#content #special-wrap .left .explore-all .wrap .explore-row .result .result-logo a {
    display: block;
    height: 114px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
}

#content #special-wrap .left .explore-all .wrap .explore-row .result .result-logo .no-logo-wrap {
    display: table;
    width: 100%;
}

#content #special-wrap .left .explore-all .wrap .explore-row .result .result-logo .no-logo-wrap .no-logo {
    vertical-align: middle;
    display: table-cell;
    height: 114px;
    color: #E1E1E1;
    font-size: 16px;
    letter-spacing: -0.18px;
    line-height: 1.2;
    text-align: center;
    padding-left: 10px;
    padding-right: 10px;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

#content #special-wrap .left .explore-all .wrap .explore-row .result .result-name {
    margin-bottom: 6px;
}

#content #special-wrap .left .explore-all .wrap .explore-row .result .result-name a {
    color: #1F2023;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -0.21px;
    line-height: 24px;
}

#content #special-wrap .left .explore-all .wrap .explore-row .result .result-desc {
    font-size: 14px;
    line-height: 16px;
    color: #7E8089;
}

#content #special-wrap .left .explore-all .wrap .explore-row .result .result-desc span {
    margin-right: 5px;
    display: inline-block;
    margin-bottom: 5px;
}

#content #special-wrap .left .explore-all .wrap .explore-row .result .result-desc .result-type {
    color: #6A68A3;
    border-radius: 2px;
    background-color: #E6E6FF;
    padding: 4px 7px;
    letter-spacing: -0.32px;
}

#content #special-wrap .left .explore-all .wrap .explore-row .result:hover .result-logo .no-logo-wrap .no-logo {
    color: #1F2023;
}

#content #special-wrap .right {
    background: #fff;
    float: left;
    display: inline-block;
    width: 36.5%;
    -webkit-transition: width 0.3s ease-out;
    -moz-transition: width 0.3s ease-out;
    -o-transition: width 0.3s ease-out;
    transition: width 0.3s ease-out;
}

#content #special-wrap .right #map {
    height: 100%;
}

#content #special-wrap .right #map .gm-style div > div:last-child > div > div:first-child > div {
    background: #F0F5FA !important;
}

#content #special-wrap .right #map .gm-style div > div:last-child > div > div:first-child > div:nth-child(3) > div div {
    background-color: #F0F5FA !important;
}

#content #special-wrap .right #map .gm-style div > div:last-child > div > div:first-child > div:first-child {
    background: transparent !important;
}

#content #special-wrap .right #map .info-win {
    color: #1F2023;
    font-size: 18px;
}

#content #special-wrap .right #map .gm-style-iw .gmtext {
    padding-left: 60px;
    max-width: 200px;
    min-height: 45px;
}

#content #special-wrap .right #map .gm-style-iw .gmtext strong a {
    display: block;
    margin-bottom: 3px;
}

#content #special-wrap .right #map .gm-style-iw:before {
    text-align: center;
    content: '';
    width: 45px;
    height: 45px;
    display: inline-block;
    background: url("../assets/icon/types/clinic.svg") no-repeat center center #D7E6F5;
    left: 0;
    top: 0;
    position: absolute;
}

.details.doctor #content .booking-links #booking-box {
    padding-bottom: 22px;
}

.details.doctor #content .booking-links #booking-box h2 {
    margin-top: 24px;
}

.details.doctor #content h1 {
    margin-bottom: 15px;
}

.details.doctor #content #left-wrap #left-info .result-desc {
    float: none;
}

.details.doctor #content #left-wrap #left-info #tabs {
    margin-top: 31px;
}

.details.doctor #content #left-wrap #left-info #location {
    width: 100%;
    margin-top: 55px;
    padding-bottom: 55px;
    display: inline-block;
    border-bottom: 1px solid #E6EBF1;
}

.details.doctor #content #left-wrap #left-info #location h2 {
    color: #1F2023;
    font-size: 24px;
    letter-spacing: -0.32px;
    line-height: 32px;
    margin-bottom: 25px;
}

.details.doctor #content #left-wrap #left-info #location .left {
    float: left;
    width: 56%;
}

.details.doctor #content #left-wrap #left-info #location .left h2 {
    max-width: 270px;
    margin-top: 17px;
}

.details.doctor #content #left-wrap #left-info #location .left ul {
    padding: 0;
    margin: 0;
}

.details.doctor #content #left-wrap #left-info #location .left ul li {
    list-style: none;
    display: inline-block;
}

.details.doctor #content #left-wrap #left-info #location .left ul button {
    color: #2C2E3D;
    font-size: 14px;
    letter-spacing: -0.32px;
    line-height: 16px;
    border-radius: 2px;
    background-color: #F0F2F7;
    cursor: pointer;
    padding: 6px 10px;
    border: none;
    margin-right: 5px;
}

.details.doctor #content #left-wrap #left-info #location .left ul button.active {
    color: #fff;
    background-color: #9C99FA;
}

.details.doctor #content #left-wrap #left-info #location .left .result-type {
    color: #6A68A3;
    font-size: 14px;
    letter-spacing: -0.32px;
    line-height: 24px;
    padding: 6px 10px;
    border-radius: 2px;
    background-color: #E6E6FF;
}

.details.doctor #content #left-wrap #left-info #location .left .location-icon {
    margin-top: 22px;
    position: relative;
    padding-left: 25px;
}

.details.doctor #content #left-wrap #left-info #location .left .location-icon::before {
    content: '';
    height: 20px;
    width: 20px;
    position: absolute;
    left: 3px;
    top: 0px;
    background: url("../assets/icon/ui/pushpin.svg") no-repeat center center/cover;
}

.details.doctor #content #left-wrap #left-info #location .left #contact-links ul {
    padding: 12px 24px;
}

.details.doctor #content #left-wrap #left-info #location .right {
    float: left;
    width: 44%;
    height: 375px;
}

.details.doctor #content #left-wrap #left-info #location .right #map {
    height: 100%;
}

.details #content {
    position: relative;
}

.details #content #hero-image {
    height: 247px;
    margin-bottom: 28px;
    background: url("../assets/images/header@2x.png") no-repeat center top/cover;
}

@media (max-width: 414px) {
    .details #content #hero-image {
        background-position: left bottom;
    }
}

.details #content #left-wrap {
    margin: 0 auto;
    max-width: 1440px;
    position: relative;
}

.details #content #left-wrap .booking-links {
    position: absolute;
    right: 0;
    width: 530px;
    margin-top: -128px;
}

.details #content #left-wrap .booking-links #booking-box {
    border: 1px solid #DFE1E5;
    border-radius: 4px;
    background-color: #FFFFFF;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.details #content #left-wrap .booking-links #booking-box #white-wrap {
    padding: 40px;
    padding-bottom: 30px;
}

.details #content #left-wrap .booking-links #booking-box #white-wrap .member-image {
    width: 64px;
    height: 64px;
    overflow: hidden;
    border-radius: 2px;
    background-color: #E6E6FF;
    box-shadow: 2px 4px 10px 0 rgba(0, 0, 0, 0.05);
    margin-right: 12px;
    font-size: 20px;
    line-height: 64px;
    text-align: center;
    color: #9C99FA;
    margin-top: 5px;
}

.details #content #left-wrap .booking-links #booking-box #white-wrap .member-image img {
    width: 100%;
}

.details #content #left-wrap .booking-links #booking-box #white-wrap #booking-logo img {
    max-height: 200px;
    margin-bottom: 42px;
}

.details #content #left-wrap .booking-links #booking-box #white-wrap h2 {
    color: #1F2023;
    font-size: 16px;
    line-height: 24px;
}

.details #content #left-wrap .booking-links #booking-box #white-wrap #booking-not-available h2 {
    opacity: 0.4;
    color: #212224;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.92px;
    line-height: 16px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.details #content #left-wrap .booking-links #booking-box #white-wrap #booking-not-available a {
    color: #2C2E3D;
    font-size: 16px;
    letter-spacing: -0.32px;
    line-height: 24px;
    border: 1px solid #F0F2F7;
    border-radius: 2px;
    background-color: #FAFBFC;
    display: inline-block;
    padding: 8px 19px;
    margin-right: 5px;
}

.details #content #left-wrap .booking-links #booking-box #white-wrap #booking-not-available a.purple {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 2px;
    background-color: #9C99FA;
    color: #fff;
    margin-bottom: 10px;
}

.details #content #left-wrap .booking-links #booking-box #white-wrap #appointment-types {
    margin-top: 14px;
}

.details #content #left-wrap .booking-links #booking-box #white-wrap #appointment-types .appointment-type {
    cursor: pointer;
    border: 1px solid #E6EBF1;
    border-radius: 2px;
    background-color: #FFFFFF;
    display: block;
    margin-bottom: 7px;
    position: relative;
    padding-left: 75px;
}

.details #content #left-wrap .booking-links #booking-box #white-wrap #appointment-types .appointment-type:after {
    content: '';
    top: 0px;
    display: inline-block;
    width: 20px;
    height: 20px;
    position: absolute;
    right: 30px;
    margin-top: 30px;
    background: url("../assets/icon/ui/arrow-right.svg") no-repeat center center/cover;
    opacity: 0.2;
}

.details #content #left-wrap .booking-links #booking-box #white-wrap #appointment-types .appointment-type:hover {
    border: 1px solid #CED3D9;
}

.details #content #left-wrap .booking-links #booking-box #white-wrap #appointment-types .appointment-type:hover:after {
    opacity: 0.5;
}

.details #content #left-wrap .booking-links .free-info {
    color: #9DA1A6;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
}

.details #content #left-wrap .booking-links.responsive {
    display: none;
    position: relative;
    right: auto;
    margin-top: 20px;
    margin-left: 35px;
    margin-bottom: 30px;
}

.details #content #left-wrap .booking-links.fixed {
    position: fixed;
    top: 0;
    margin-top: 40px;
    z-index: 999;
}

.details #content #left-wrap .booking-links.bottom {
    top: auto;
    bottom: 20px;
}

.details #content #left-wrap #left-info {
    max-width: 800px;
    margin-left: 40px;
}

.details #content #left-wrap #left-info h1 {
    margin-top: 3px;
    margin-bottom: 14px;
}

.details #content #left-wrap #left-info .result-desc {
    float: left;
}

.details #content #left-wrap #left-info .result-desc .result-type {
    color: #6A68A3;
    font-size: 14px;
    letter-spacing: -0.32px;
    line-height: 24px;
    border-radius: 2px;
    background-color: #E6E6FF;
    padding: 6px 10px;
    margin-right: 9px;
}

.details #content #left-wrap #left-info .result-tags span {
    color: #9C99FA;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: -0.16px;
    line-height: 24px;
    text-transform: uppercase;
    padding: 5px 8px;
}

.details #content #left-wrap #left-info .result-tags span.dark-purple {
    color: #fff;
    border-radius: 2px;
    background-color: #9C99FA;
}

.details #content #left-wrap #left-info #tabs {
    margin-top: 57px;
}

.details #content #left-wrap #left-info #tabs ul {
    margin: 0;
    padding: 0;
    display: inline-block;
    width: 100%;
}

.details #content #left-wrap #left-info #tabs ul li {
    list-style: none;
    display: inline-block;
    float: left;
}

.details #content #left-wrap #left-info #tabs ul li a {
    color: rgba(44, 46, 61, 0.4);
    font-size: 18px;
    letter-spacing: 0.5px;
    line-height: 24px;
    padding: 10px 14px;
    padding-bottom: 17px;
    border-bottom: 1px solid #E6EBF1;
    display: block;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.details #content #left-wrap #left-info #tabs ul li a:hover {
    color: #1F2023;
    border-color: #1F2023;
}

.details #content #left-wrap #left-info #tabs ul li.active a {
    color: #1F2023;
    border-color: #1F2023;
}

.details #content #left-wrap #left-info #contact-links {
    margin-top: 32px;
    margin-bottom: 25px;
}

.details #content #left-wrap #left-info #contact-links ul {
    margin: 0;
    padding: 0;
    display: inline-block;
    padding: 15px 31px;
    border: 1px solid #E6EBF1;
    border-radius: 2px;
}

.details #content #left-wrap #left-info #contact-links ul li {
    list-style: none;
    display: inline-block;
    float: left;
}

.details #content #left-wrap #left-info #contact-links ul li a {
    color: #1F2023;
    font-size: 16px;
    letter-spacing: 0.23px;
    line-height: 24px;
    padding-left: 35px;
    position: relative;
    display: block;
    padding-right: 24px;
    margin-left: 24px;
    border-right: 1px solid #E6EBF1;
}

.details #content #left-wrap #left-info #contact-links ul li a:before {
    content: '';
    position: absolute;
    left: 0;
    width: 24px;
    height: 24px;
    background: url("../assets/icon/contact/phone.svg") no-repeat center center/cover;
}

.details #content #left-wrap #left-info #contact-links ul li.phone a {
    margin-left: 0;
}

.details #content #left-wrap #left-info #contact-links ul li.fax a:before {
    background: url("../assets/icon/contact/fax.svg") no-repeat center center/cover;
}

.details #content #left-wrap #left-info #contact-links ul li.website a:before {
    background: url("../assets/icon/contact/web.svg") no-repeat center center/cover;
}

.details #content #left-wrap #left-info #contact-links ul li.directions a {
    padding-right: 0;
    border: none;
}

.details #content #left-wrap #left-info #contact-links ul li.directions a:before {
    background: url("../assets/icon/contact/directions.svg") no-repeat center center/cover;
}

.details #content #left-wrap #left-info #contact-address {
    color: #9DA1A6;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 50px;
}

.details #content #left-wrap #left-info .truncate {
    color: #1F2023;
    font-size: 16px;
    letter-spacing: 0.23px;
    line-height: 24px;
}

.details #content #left-wrap #left-info .truncate .moreless {
    color: #9DA1A6;
    font-size: 14px;
    line-height: 24px;
    display: block;
    margin-top: 10px;
    letter-spacing: 0.4px;
}

.details #content #left-wrap #left-info .truncate .moreless::after {
    content: '';
    margin-top: 2px;
    margin-left: 14px;
    display: inline-block;
    position: absolute;
    height: 20px;
    width: 20px;
    background: url("../assets/icon/ui/caret-down.svg") no-repeat center center/cover;
}

.details #content #left-wrap #left-info .truncate .less::after {
    transform: rotate(180deg);
}

.details #content #left-wrap #left-info .share {
    margin-top: 31px;
    padding-bottom: 37px;
    border-bottom: 1px solid #E6EBF1;
    position: relative;
}

.details #content #left-wrap #left-info .share .share-button {
    color: #1F2023;
    font-size: 16px;
    letter-spacing: 0.23px;
    line-height: 24px;
    border: none;
    background: none;
    background: url("../assets/icon/share/share.svg") no-repeat 10px center;
    padding: 10px 15px;
    padding-left: 40px;
    border: 1px solid #F0F2F7;
    border-radius: 2px;
    background-color: #FAFBFC;
}

.details #content #left-wrap #left-info .share #share-box {
    border: 1px solid #DFE1E5;
    border-radius: 2px;
    background-color: #FFFFFF;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.08);
    padding: 20px;
    position: absolute;
    bottom: 80px;
    display: none;
}

.details #content #left-wrap #left-info .share #share-box div {
    padding: 10px 20px;
    padding-left: 30px;
}

.details #content #left-wrap #left-info .share #share-box div a {
    color: #2C2E3D;
    font-size: 16px;
    letter-spacing: -0.32px;
    line-height: 24px;
}

.details #content #left-wrap #left-info .share #share-box div::before {
    content: '';
    width: 24px;
    height: 24px;
    display: inline-block;
    position: absolute;
    left: 20px;
    background: url("../assets/icon/share/twitter.svg") no-repeat center center/cover;
}

.details #content #left-wrap #left-info .share #share-box div#facebook::before {
    background-image: url("../assets/icon/share/facebook.svg");
}

.details #content #left-wrap #left-info .share #share-box div#email::before {
    background-image: url("../assets/icon/share/mail.svg");
}

.details #content #left-wrap #left-info #single-specialties {
    padding-bottom: 34px;
    margin-top: 57px;
    border-bottom: 1px solid #E6EBF1;
    width: 100%;
    display: inline-block;
}

.details #content #left-wrap #left-info #single-specialties h2 {
    color: #1F2023;
    font-size: 24px;
    letter-spacing: 0.3px;
    line-height: 32px;
    margin-bottom: 30px;
}

.details #content #left-wrap #left-info #single-specialties .single-specialty {
    border-radius: 2px;
    background-color: #FFFFFF;
    float: left;
    display: inline-block;
    width: 49.2%;
    margin-right: 1.6%;
    margin-bottom: 20px;
}

.details #content #left-wrap #left-info #single-specialties .single-specialty .inner {
    padding: 25px;
    border: 1px solid rgba(25, 26, 27, 0.1);
}

.details #content #left-wrap #left-info #single-specialties .single-specialty .inner h3 {
    color: #2C2E3D;
    font-size: 20px;
    letter-spacing: 0.3px;
    line-height: 28px;
    margin-bottom: 7px;
}

.details #content #left-wrap #left-info #single-specialties .single-specialty .inner .providers-number {
    opacity: 0.6;
    color: #2C2E3D;
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 16px;
    display: block;
}

.details #content #left-wrap #left-info #single-specialties .single-specialty .inner .book-link {
    display: inline-block;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 2px;
    background-color: #9C99FA;
    color: #FFFFFF;
    font-size: 16px;
    line-height: 24px;
    padding: 9px 16px;
}

.details #content #left-wrap #left-info #single-specialties .single-specialty:nth-child(2n+1) {
    margin-right: 0;
}

.details #content #left-wrap #left-info #family-medicine {
    width: 100%;
    display: inline-block;
    border-bottom: 1px solid #E6EBF1;
}

.details #content #left-wrap #left-info #family-medicine h2 {
    color: #1F2023;
    font-size: 24px;
    letter-spacing: 0.3px;
    line-height: 32px;
    margin-bottom: 23px;
    margin-top: 55px;
}

.details #content #left-wrap #left-info #family-medicine #quick-search {
    height: 48px;
    width: 250px;
    border: 1px solid #E6EBF1;
    border-radius: 2px;
    background-color: #FFFFFF;
    color: #2C2E3D;
    font-size: 16px;
    letter-spacing: -0.32px;
    line-height: 24px;
    padding-left: 16px;
    padding-right: 32px;
    margin-bottom: 15px;
}

.details #content #left-wrap #left-info #family-medicine #members {
    padding: 0;
    margin: 0;
    display: inline-block;
    width: 100%;
    margin-bottom: 52px;
}

.details #content #left-wrap #left-info #family-medicine #members .member {
    border-radius: 2px;
    background-color: #FFFFFF;
    float: left;
    width: 49.2%;
    margin-right: 1.6%;
    margin-bottom: 14px;
    list-style: none;
}

.details #content #left-wrap #left-info #family-medicine #members .member:nth-child(2n+2) {
    margin-right: 0;
}

.details #content #left-wrap #left-info #family-medicine #members .member.hidden {
    display: none;
}

.details #content #left-wrap #left-info #family-medicine #members .member .inner {
    border: 1px solid rgba(25, 26, 27, 0.1);
    padding: 17px;
    padding-bottom: 19px;
    cursor: pointer;
}

.details #content #left-wrap #left-info #family-medicine #members .member .inner .member-image {
    float: left;
    width: 64px;
    height: 64px;
    overflow: hidden;
    border-radius: 2px;
    background-color: #E6E6FF;
    margin-right: 16px;
    font-size: 20px;
    line-height: 64px;
    text-align: center;
    color: #9C99FA;
}

.details #content #left-wrap #left-info #family-medicine #members .member .inner .member-image img {
    width: 100%;
}

.details #content #left-wrap #left-info #family-medicine #members .member .inner .member-info h3 {
    margin-bottom: 10px;
}

.details #content #left-wrap #left-info #family-medicine #members .member .inner .member-info h3 a {
    color: #2C2E3D;
    font-size: 20px;
    letter-spacing: -0.27px;
    line-height: 28px;
}

.details #content #left-wrap #left-info #family-medicine #members .member .inner .member-info .member-tag {
    color: #6A68A3;
    font-size: 14px;
    letter-spacing: -0.32px;
    line-height: 24px;
    border-radius: 2px;
    background-color: #E6E6FF;
    padding: 4px 8px;
}

.details #content #left-wrap #left-info #family-medicine.few-doctors .search-wrap {
    display: none;
}

.details #content #left-wrap #left-info #more-information {
    display: inline-block;
    width: 100%;
    margin-bottom: 63px;
}

.details #content #left-wrap #left-info #more-information h2 {
    color: #1F2023;
    font-size: 24px;
    letter-spacing: 0.2px;
    line-height: 32px;
    margin-bottom: 40px;
    margin-top: 55px;
}

.details #content #left-wrap #left-info #more-information #board-certifications {
    display: inline-block;
    margin-bottom: 17px;
}

.details #content #left-wrap #left-info #more-information h3 {
    opacity: 0.4;
    color: #212224;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.92px;
    line-height: 16px;
    text-transform: uppercase;
    margin-bottom: 19px;
}

.details #content #left-wrap #left-info #more-information .info-wrap {
    display: inline-block;
    width: 100%;
    margin-bottom: 38px;
}

.details #content #left-wrap #left-info #more-information .info-wrap .left {
    float: left;
    display: inline-block;
    width: 48%;
    margin-right: 2%;
}

.details #content #left-wrap #left-info #more-information .info-wrap .right {
    float: left;
    display: inline-block;
    width: 50%;
}

.details #content #left-wrap #left-info #more-information #how-to-get-there {
    margin-bottom: 40px;
    color: #1F2023;
    font-size: 16px;
    letter-spacing: 0.23px;
    line-height: 24px;
}

.details #content #left-wrap #left-info #more-information #cancelation-policy {
    margin-bottom: 55px;
}

.details #content #left-wrap #left-info #more-information ul {
    margin: 0;
    padding: 0;
}

.details #content #left-wrap #left-info #more-information ul li {
    list-style: none;
    color: #1F2023;
    font-size: 16px;
    letter-spacing: 0.23px;
    line-height: 32px;
}

.details #content #left-wrap #left-info #more-information p {
    margin: 0;
    margin-bottom: 24px;
}

.details #content .tab#details {
    display: block;
}

.details #content .tab#details .appointment-type {
    margin-top: 25px;
    border: 1px solid #E6EBF1;
    border-radius: 2px;
    background-color: #FFFFFF;
    display: inline-block;
    margin-bottom: 20px;
    position: relative;
    padding: 11px 30px;
    padding-left: 81px;
}

.details #content .tab#details .appointment-type a {
    color: #1F2023;
    font-size: 18px;
    letter-spacing: 0.2px;
    line-height: 32px;
    display: block;
}

.details #content .tab#details .appointment-type span {
    opacity: 0.6;
    color: #323446;
    font-size: 14px;
    line-height: 16px;
}

.details #content .tab#details .appointment-type:before {
    height: 48px;
    width: 48px;
    border-radius: 2px;
    display: inline-block;
    content: '';
    margin-left: -64px;
    position: absolute;
    background: url("../assets/icon/types/urgent.svg") no-repeat center center #FFE6E7;
}

.details #content .tab#overview {
    display: block;
    margin-top: 40px;
}

.details #content .tab#overview h2 {
    opacity: 0.4;
    color: #212224;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    line-height: 16px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.details #content .tab#overview .grey {
    color: #2C2E3D;
    font-size: 14px;
    letter-spacing: -0.32px;
    line-height: 16px;
    border-radius: 2px;
    background-color: #F0F2F7;
    padding: 6px 10px;
    margin-right: 5px;
    display: inline-block;
    margin-bottom: 10px;
}

.details #content .tab#overview .truncate {
    margin-top: 30px;
    display: block;
}

.details #content .tab .search-wrap {
    display: inline-block;
    position: relative;
}

.details #content .tab .search-wrap:before {
    content: '';
    width: 23px;
    height: 23px;
    position: absolute;
    top: 13px;
    right: 19px;
    background: url("../assets/icon/ui/search.svg") no-repeat center center/cover;
}

.details #content #get-directions {
    height: 348px;
}

.details #content #get-directions #search-directions {
    position: absolute;
    z-index: 1;
    margin-top: 10px;
    margin-left: 10px;
}

.details #content #get-directions #search-directions input {
    height: 56px;
    width: 278px;
    border: 1px solid #DADFE6;
    border-radius: 2px 0px 0px 2px;
    background-color: #FFFF;
    color: #2C2E3D;
    font-size: 16px;
    letter-spacing: -0.32px;
    line-height: 24px;
    padding-left: 16px;
    float: left;
}

.details #content #get-directions #search-directions button {
    height: 56px;
    width: 150px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 0 2px 2px 0;
    background-color: #9C99FA;
    color: #FFFFFF;
    font-size: 16px;
    letter-spacing: -0.32px;
    line-height: 24px;
    cursor: pointer;
}

.details #content #get-directions #single-map {
    height: 100%;
}

.details #content #last-update {
    background-color: #E6EBF1;
    text-align: center;
    opacity: 0.6;
    color: #1F2023;
    font-size: 16px;
    letter-spacing: 0.23px;
    line-height: 24px;
    padding: 24px;
}

.details #content #last-update p {
    margin: 0;
}

.details #content h1 {
    margin-bottom: 30px;
}

#working-hours {
    padding: 17px 40px 18px 45px;
    background-color: #FAFBFC;
}

#working-hours #open-now a {
    position: relative;
    letter-spacing: 0.5px;
}

#working-hours #open-now a:before {
    content: '';
    position: absolute;
    height: 10px;
    width: 10px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background-color: #6ECCBA;
    border-radius: 50%;
    left: -22px;
    top: 3px;
}

#working-hours #open-now a:after {
    content: '';
    position: absolute;
    width: 19px;
    height: 19px;
    background: url("../assets/icon/ui/caret-down.svg") no-repeat center center;
    right: -31px;
    top: 1px;
}

#working-hours #open-now a.closed:before {
    background-color: #ff1717;
}

#working-hours #open-now a.closing-soon:before {
    background-color: #ffc800;
}

#working-hours #open-now a.show-days:after {
    transform: scaleY(-1);
}

#working-hours #working-days {
    margin-top: 28px;
    line-height: 40px;
    letter-spacing: -0.2px;
    display: none;
    cursor: pointer;
}

#working-hours #working-days .working-day span {
    display: inline-block;
    min-width: 115px;
}

#working-hours #working-days .working-day.today {
    font-weight: 500;
}

@media all and (max-width: 1520px) {
    .not-home #content #specialty #specialty-list {
        padding-left: 0;
        padding-right: 0;
    }
}

@media all and (max-width: 1440px) {
    .not-home #header {
        padding-left: 0;
        padding-right: 0;
    }

    .not-home #header #header-logo {
        margin-left: 40px;
    }
}

@media all and (max-width: 1440px) and (max-width: 414px) {
    .not-home #header #header-logo {
        margin-left: 0;
    }
}

@media all and (max-width: 1440px) {
    .not-home #header #header-menu {
        margin-right: 40px;
    }
}

@media all and (max-width: 1440px) and (max-width: 768px) {
    .not-home #content #filters #visit-filters {
        width: 100%;
        margin-left: 0;
    }
}

@media all and (max-width: 1440px) {
    .not-home #content #filters #map-switch {
        margin-right: 40px;
    }
}

@media all and (max-width: 1340px) {
    .details #content #left-wrap #left-info {
        margin-right: 35px;
        max-width: 55%;
    }

    .details #content #left-wrap .booking-links {
        width: 35%;
    }
}

@media all and (max-width: 1100px) {
    .details #content #left-wrap #left-info {
        max-width: 100%;
    }

    .details #content #left-wrap .booking-links {
        display: none;
    }

    .details #content #left-wrap .booking-links.responsive {
        display: block;
        width: 450px;
        max-width: 100%;
    }
}

@media all and (max-width: 991px) {
    .not-home #header #header-search {
        width: 50%;
    }

    .not-home #header #header-search input {
        width: 100%;
    }

    .not-home #header #header-search #search-results #results-wrapper:after {
    }

    .not-home #header #header-search #search-results #results-wrapper #specialty-filter {
        width: 100%;
        float: none;
        display: inline-block;
    }

    .not-home #header #header-search #search-results #results-wrapper #providers-clinics {
        float: none;
        width: 100%;
    }

    .not-home #header #header-menu ul li a {
        margin-left: 10px;
    }

    .not-home h1 {
        font-size: 28px;
        line-height: 44px;
        margin-bottom: 30px;
    }

    .not-home #content #featured-specialties .inner .featured-specialty {
        width: 49%;
        margin-right: 2%;
        margin-bottom: 20px;
    }

    .not-home #content #featured-specialties .inner .featured-specialty:nth-child(3) {
        margin-right: 0;
    }

    .not-home #content #featured-specialties .inner .featured-specialty:last-child {
        margin-right: 0;
    }

    .not-home #content #specialty {
        padding-top: 50px;
    }

    .not-home #content #specialty h2 {
        font-size: 28px;
        line-height: 44px;
        margin-left: 40px;
        margin-right: 40px;
        margin-bottom: 40px;
    }

    .not-home #content #specialty #specialty-list .inner ul li {
        width: 47%;
        margin-right: 3%;
    }

    .not-home #content #specialty #specialty-list .inner ul li a {
        font-size: 15px;
    }

    .not-home #content #specialty #specialty-list .inner .all {
        padding-top: 20px;
    }

    .not-home #content #special-wrap .left {
        width: 100%;
    }

    .not-home #content #special-wrap .right {
        width: 100%;
    }

    .home #header {
        padding-bottom: 150px;
    }

    .home #header h1 {
        font-size: 24px;
        line-height: 28px;
    }

    .home #header #header-menu#header-menu .mobile-screen .hamburger {
        background: url(../assets/icon/ui/menu-icon-white.png) no-repeat center/contain;
        top: 27px;
    }

    .home #header #header-search {
        width: 100%;
    }

    .home #header #header-search input {
        width: 100%;
        height: 60px;
        font-size: 14px;
    }

    .home #header #header-search:after {
        top: 20px;
    }

    .home #header #header-search #search-results {
        top: 60px;
    }

    .home #header #popular-search ul {
        display: block;
        margin-top: 10px;
    }

    .home #header #popular-search ul li:first-child {
        margin-left: 0px;
    }

    .home #content #appointment-types {
        border: none;
        width: 100%;
    }

    .home #content #appointment-types .appointment-type {
        display: block;
    }

    .home #content #appointment-types .appointment-type.doctor {
        padding-left: 81px;
    }

    .home #content #appointment-types .appointment-type.family {
        padding-left: 81px !important;
    }

    .home #content #popular-clinics .inner .popular-clinic {
        width: 49%;
        margin-right: 2%;
        margin-bottom: 20px;
    }

    .home #content #popular-clinics .inner .popular-clinic:nth-child(3) {
        margin-right: 0;
    }

    .home #content #popular-clinics .inner .popular-clinic:last-child {
        margin-right: 0;
    }

    .home #content #featured-specialties .inner .featured-specialty {
        width: 49%;
        margin-right: 2%;
        margin-bottom: 20px;
    }

    .home #content #featured-specialties .inner .featured-specialty:nth-child(3) {
        margin-right: 0;
    }

    .home #content #featured-specialties .inner .featured-specialty:last-child {
        margin-right: 0;
    }

    .home #content #download {
        margin-top: 110px;
    }

    .home #content #download #download-phone {
        margin-left: 30px;
    }

    .home #content #download #download-cta {
        margin-left: 320px;
    }

    .home #content #download #download-cta p {
        font-size: 24px;
        line-height: 28px;
        margin-right: 20px;
    }

    .home #content #download #download-cta #download-buttons .download-button {
        max-width: 140px;
        margin-bottom: 20px;
    }

    .home #content #specialty {
        padding-top: 50px;
    }

    .home #content #specialty h2 {
        font-size: 28px;
        line-height: 44px;
        margin-left: 40px;
        margin-right: 40px;
        margin-bottom: 40px;
    }

    .home #content #specialty #specialty-list .inner ul li {
        width: 47%;
        margin-right: 3%;
    }

    .home #content #specialty #specialty-list .inner ul li a {
        font-size: 15px;
    }

    .home #content #specialty #specialty-list .inner .all {
        padding-top: 20px;
    }

    #footer #footer-menu .footer-menu-col {
        width: 48%;
        margin-right: 2%;
        margin-bottom: 50px;
    }

    #footer #footer-bottom #footer-lang-switch .styled-select select {
        font-size: 16px;
    }

    .details #content #left-wrap #left-info #more-information {
        margin-bottom: 10px;
    }

    .details #content #left-wrap #left-info #more-information .info-wrap {
        margin-bottom: 20px;
    }
}

@media all and (max-width: 640px) {
    .error-404 #content .inner {
        padding-top: 60px;
        padding-bottom: 70px;
    }

    #header-search #search-results #results-wrapper #specialty-filter {
        float: none;
        width: 100%;
    }

    #header-search #search-results #results-wrapper #providers-clinics {
        float: none;
        width: 100%;
    }

    .details #content #get-directions #search-directions input {
        width: 150px;
        font-size: 14px;
    }

    .details #content #get-directions #search-directions button {
        width: 130px;
        font-size: 14px;
    }

    .details #content .booking-links {
        width: auto;
    }

    .details #content .booking-links #booking-box #booking-not-available a {
        display: inline-block;
        margin-bottom: 10px;
    }

    .details #content #left-wrap #left-info #tabs ul {
        padding: 12px;
    }
}

@media all and (max-width: 640px) and (max-width: 414px) {
    .details #content #left-wrap #left-info #tabs ul {
        padding: 12px 0;
    }
}

@media all and (max-width: 640px) {
    .details #content #left-wrap #left-info #tabs ul li a {
        font-size: 16px;
        line-height: 18px;
        padding: 10px 5px;
    }

    .details #content #left-wrap #left-info #contact-links {
        margin-top: 20px;
    }

    .details #content #left-wrap #left-info #contact-links ul li a {
        font-size: 14px;
        padding-right: 10px;
        padding-left: 10px;
        margin-left: 0;
    }

    .details #content #left-wrap #left-info #contact-links ul li a:before {
        width: 18px;
        height: 18px;
        display: none;
    }

    .details.doctor #content #left-wrap #left-info #location .left {
        float: none;
        width: 100%;
    }

    .details.doctor #content #left-wrap #left-info #location .right {
        float: none;
        width: 100%;
    }

    .home #content #professionals-cta #profesionals-cta-text {
        width: 100%;
    }

    .home #content #professionals-cta #profesionals-cta-text .inner {
        padding: 50px 40px;
    }

    .home #content #professionals-cta #profesionals-cta-img {
        display: none;
    }

    .not-home #header #header-search {
        width: 70%;
    }

    .not-home #header #header-menu {
        float: none;
        clear: both;
        text-align: center;
        padding-top: 20px;
        margin-right: 0;
    }

    .not-home #content #special-wrap .left #search-results .result {
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }

    .not-home #content #special-wrap .left .explore-all .wrap .explore-row {
        display: block;
    }

    .not-home #content #special-wrap .left .explore-all .wrap .explore-row .result {
        width: 100%;
        margin-right: 0;
    }
}

@media all and (max-width: 560px) {
    .details #content .booking-links.responsive {
        width: auto;
    }

    .not-home #header #header-logo {
        width: 48px;
        margin-left: 15px;
        float: left;
    }

    .not-home #header #header-search {
        width: 90%;
        margin-left: 5%;
        float: none;
    }

    .not-home #header #header-menu {
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .not-home #content #filters {
        display: inline-block;
        width: 100%;
        padding-bottom: 10px;
        border-bottom: 1px solid #EFF0F1;
        margin-top: 20px;
        padding-left: 30px;
        margin-bottom: 20px;
    }

    .not-home #content #filters #visit-filters {
        float: none;
        display: inline-block;
        width: 100%;
        margin-left: 0;
    }

    .not-home #content #filters #visit-filters #visit-type {
        float: none;
        clear: both;
        margin-bottom: 15px;
    }

    .not-home #content #filters #visit-filters #specialty-type {
        float: none;
        margin-left: 0;
    }

    .not-home #content #filters #map-switch {
        float: none;
        display: inline-block;
        margin-top: 20px;
    }
}

@media all and (max-width: 480px) {
    .details #content .booking-links #booking-box {
        padding: 20px;
    }

    .details #content .booking-links #booking-box #white-wrap {
        padding: 0;
    }

    .details #content .booking-links #booking-box #white-wrap #appointment-types .appointment-type .appointment-type-description .appointment-type-name {
        font-size: 16px;
        line-height: 22px;
    }

    .details #content .booking-links #booking-box #white-wrap #appointment-types .appointment-type .appointment-type-description span {
        font-size: 12px;
    }

    .details #content .booking-links #booking-box #working-hours {
        padding: 30px;
        padding-left: 40px;
    }

    .details #content .booking-links #booking-box #working-hours #working-days .working-day span {
        min-width: 100px;
    }

    .details #content #left-wrap #left-info #single-specialties .single-specialty {
        width: 100%;
        margin-right: 0;
    }

    .details #content #left-wrap #left-info #family-medicine #members .member {
        width: 100%;
        margin-right: 0;
    }

    .not-home #content #featured-specialties .inner .featured-specialty {
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }

    .not-home #content #specialty #specialty-list .inner input {
        width: 100%;
    }

    .not-home #content #specialty #specialty-list .inner ul li {
        width: 100%;
        margin-right: 0;
    }

    .not-home #content #specialty #specialty-list .inner ul li a {
        font-size: 14px;
    }

    .home #header #header-search input {
        font-size: 12px;
        padding-left: 30px;
    }

    .home #header #header-search:after {
        top: 21px;
        left: 10px;
        width: 17px;
        height: 17px;
    }

    .home #content #popular-clinics .inner .popular-clinic {
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }

    .home #content #featured-specialties .inner .featured-specialty {
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }

    .home #content #download #download-phone {
        display: none;
    }

    .home #content #download #download-cta {
        padding: 50px 0;
        margin-left: 30px;
    }

    .home #content #download #download-cta p {
        font-size: 28px;
        line-height: 33px;
        margin-right: 30px;
    }

    .home #content #specialty #specialty-list .inner ul li {
        width: 100%;
        margin-right: 0;
    }

    .home #content #specialty #specialty-list .inner ul li a {
        font-size: 14px;
    }

    #footer {
        margin-top: 15px;
    }

    #footer #footer-menu .footer-menu-col {
        width: 100%;
        margin-right: 0;
        margin-bottom: 30px;
    }

    #footer #footer-menu .footer-menu-col h2 {
        margin-bottom: 15px;
    }

    #footer #footer-bottom #footer-lang-switch .styled-select select {
        font-size: 15px;
    }
}

body.book.book h2 {
    margin-bottom: 24px;
}

@media (max-width: 414px) {
    body.book.book #page#page {
        margin-left: 20px;
        margin-right: 20px;
        margin-top: 16px;
    }
}

body.book.book #page#page .selectric {
    border-radius: 2px;
}

body.book.book #page#page #header #header-menu ul li a {
    color: #1F2023;
}

body.book.book #page#page #content {
    max-width: 1280px;
}

@media (max-width: 940px) {
    body.book.book #page#page #content {
        margin-top: 70px;
    }
}

@media (max-width: 414px) {
    body.book.book #page#page #content {
        margin-top: 32px;
    }
}

@media (max-width: 940px) {
    body.book.book #page#page #content form {
        margin-bottom: 0;
    }
}

@media (max-width: 768px) and (min-width: 320px) {
    body.book.book #page#page #content form {
        margin-bottom: 0;
    }
}

body.book.book #page#page #content form .input-wrap .upload-file-mask {
    height: 56px;
    color: #B4B4B9;
    border: 1px solid #DADFE6;
    border-radius: 2px;
    font-size: 16px;
    line-height: 24px;
    width: 100%;
    padding: 16px 20px;
    appearance: none;
    -webkit-appearance: none;
    width: 100%;
    display: block;
    background: url("../assets/icon/ui/upload.svg") no-repeat center right 15px/24px;
    transition: all 0.2s linear;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    cursor: pointer;
}

body.book.book #page#page #content form .input-wrap .upload-file-mask.filled {
    color: #1F2023;
    background: #e6e6ffb8 url("../assets/icon/ui/checkmark-outline_violet.svg") no-repeat center right 15px/24px;
}

body.book.book #page#page #content form .input-wrap .hidden-file-input {
    opacity: 0;
    text-indent: -100%;
    margin-top: -18px;
}

body.book.book #page#page #content .inner {
    display: inline-block;
    width: 100%;
}

body.book.book #page#page #content .inner #left {
    float: left;
    width: 50%;
}

@media (max-width: 940px) {
    body.book.book #page#page #content .inner #left {
        width: 100%;
    }
}

body.book.book #page#page #content .inner #left #book-box {
    position: relative;
    max-width: 528px;
}

@media (max-width: 940px) {
    body.book.book #page#page #content .inner #left #book-box {
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    body.book.book #page#page #content .inner #left #book-box {
        margin-top: 42px;
    }
}

body.book.book #page#page #content .inner #left #book-box #box-top {
    padding: 24px 24px 24px 32px;
    background-color: #FFFFFF;
    border: 1px solid #E6EBF1;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}

@media (max-width: 414px) {
    body.book.book #page#page #content .inner #left #book-box #box-top {
        padding: 16px;
    }
}

body.book.book #page#page #content .inner #left #book-box #box-top #book-type-icon {
    top: 24px;
    right: 24px;
    position: absolute;
    height: 48px;
    width: 48px;
    border-radius: 2px;
    background-image: url("../assets/icon/types/doctor.svg");
    background-color: #E6E6FF;
    background-repeat: no-repeat;
    background-position: center center;
}

body.book.book #page#page #content .inner #left #book-box #box-top #book-date {
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0.6px;
    margin-bottom: 16px;
    color: #1F2023;
}

@media (max-width: 414px) {
    body.book.book #page#page #content .inner #left #book-box #box-top #book-date {
        font-size: 16px;
        line-height: 20px;
    }
}

body.book.book #page#page #content .inner #left #book-box #box-top #book-type-name {
    color: #6A68A3;
    font-size: 14px;
    line-height: 24px;
    border-radius: 2px;
    background-color: #E6E6FF;
    display: inline-block;
    padding: 2px 8px;
}

body.book.book #page#page #content .inner #left #book-box #box-bottom {
    padding: 24px 24px 27px 34px;
    background-color: #FFFFFF;
    border: 1px solid #E6EBF1;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    border-top: none;
}

@media (max-width: 414px) {
    body.book.book #page#page #content .inner #left #book-box #box-bottom {
        padding: 16px;
    }
}

body.book.book #page#page #content .inner #left #book-box #box-bottom #doctor {
    opacity: 0.3;
    font-size: 14px;
    line-height: 20px;
}

body.book.book #page#page #content .inner #left #book-box #box-bottom #doctor-name, body.book.book #page#page #content .inner #left #book-box #box-bottom #clinic-name {
    font-size: 18px;
    line-height: 32px;
    margin-bottom: 11px;
}

@media (max-width: 414px) {
    body.book.book #page#page #content .inner #left #book-box #box-bottom #doctor-name, body.book.book #page#page #content .inner #left #book-box #box-bottom #clinic-name {
        font-size: 16px;
    }
}

body.book.book #page#page #content .inner #left #book-box #box-bottom #clinic-name {
    margin-top: 12px;
}

body.book.book #page#page #content .inner #left #book-box #box-bottom #location {
    font-size: 14px;
    line-height: 16px;
    padding-left: 26px;
    background: url("../assets/icon/ui/pin-icon-placeholder.png") no-repeat left bottom 2px;
}

body.book.book #page#page #content .inner #left #book-box #box-grey-info {
    color: #2C2E3D;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    padding: 12px 32px;
    background-color: #E6EBF1;
}

@media (max-width: 414px) {
    body.book.book #page#page #content .inner #left #book-box #box-grey-info {
        padding: 12px 16px;
        font-size: 14px;
    }
}

body.book.book #page#page #content .inner #left #book-box #bottom-info {
    opacity: 0.5;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    margin-top: 24px;
}

body.book.book #page#page #content .inner #left #book-box.urgent #box-top #book-type-icon {
    background-image: url("../assets/icon/types/urgent.svg");
    background-color: #FFE6E7;
}

body.book.book #page#page #content .inner #left #book-box.urgent #box-top #book-type-name {
    color: #AB3E43;
    background-color: #FFE6E7;
}

body.book.book #page#page #content .inner #left #book-box.family #box-top #book-type-icon {
    background-image: url("../assets/icon/types/family.svg");
    background-color: #E1EDFA;
}

body.book.book #page#page #content .inner #left #book-box.family #box-top #book-type-name {
    color: #335980;
    background-color: #E1EDFA;
}

body.book.book #page#page #content .inner #right {
    float: right;
    width: 50%;
}

@media (max-width: 940px) {
    body.book.book #page#page #content .inner #right {
        width: 100%;
    }
}

body.book.book #page#page #content .inner #right .purple {
    clear: both;
    margin-bottom: 16px;
}

body.book.book #page#page #content .inner #right .inner {
    max-width: 392px;
    margin: 0 auto;
    display: block;
}

@media (max-width: 414px) {
    body.book.book #page#page #content .inner #right .inner #steps {
        margin-top: 40px;
    }
}

body.book.book #page#page #content .inner #right .inner #checked {
    margin-left: -20px;
    margin-bottom: 10px;
}

body.book.book #page#page #content .inner #right .inner .selectric-scroll ul li {
    position: relative;
}

body.book.book #page#page #content .inner #right .inner .selectric-scroll ul li.plus:after {
    position: absolute;
    right: 20px;
    top: 16px;
    content: '';
    width: 15px;
    height: 15px;
    background: url("../assets/icon/ui/add.svg") no-repeat center center/contain;
}

body.book.book::after {
    content: '';
    position: fixed;
    width: 50%;
    height: 100%;
    z-index: -1;
    background-color: #FAFBFC;
    top: 0;
    border-right: 1px solid #FAFBFC;
}

body.book.book.confirmed #page #header #header-menu ul li a {
    color: white;
}

body.book.book.confirmed #page #header #header-menu ul li a.grey {
    color: #1F2023;
}

body.book.book.registration #page #content #right {
    margin-top: -70px;
}

.input-wrap.input-wrap.file {
    clear: both;
}

body.details.details #page #header {
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

body.details.details.lang-fr .booking-links .free-info {
    margin-top: 30px;
}

body.auth.auth.log-in.log-in #page form .button.default, body.auth.auth.create.create #page form .button.default, body.auth.auth #page form .button.default, body.auth.auth.forgot.forgot #page form .button.default {
    margin-top: 30px;
    margin-right: 20px;
}

@media (max-width: 414px) {
    body.auth.auth.log-in.log-in #page #header, body.auth.auth.create.create #page #header, body.auth.auth #page #header, body.auth.auth.forgot.forgot #page #header {
        margin-top: 0;
    }
}

@media (max-width: 414px) {
    body.auth.auth.log-in.log-in #page #header #header-logo#header-logo, body.auth.auth.create.create #page #header #header-logo#header-logo, body.auth.auth #page #header #header-logo#header-logo, body.auth.auth.forgot.forgot #page #header #header-logo#header-logo {
        margin-left: 0;
        margin-top: 0;
    }
}

@media (max-width: 769px) {
    body.auth.auth.log-in.log-in #page #header #header-logo#header-logo a img, body.auth.auth.create.create #page #header #header-logo#header-logo a img, body.auth.auth #page #header #header-logo#header-logo a img, body.auth.auth.forgot.forgot #page #header #header-logo#header-logo a img {
        margin-top: 4px;
    }
}

body.auth.auth.log-in.log-in #page #header #header-menu ul li a, body.auth.auth.create.create #page #header #header-menu ul li a, body.auth.auth #page #header #header-menu ul li a, body.auth.auth.forgot.forgot #page #header #header-menu ul li a {
    color: #1F2023;
}

body form {
    margin: 0;
}

body form:first-child .table-content {
    margin-top: 0;
}

body.lang-fr .input-wrap {
    font-size: 13px;
}

body .mobile-book.button.violet {
    margin: 16px 0 0 0 !important;
    display: none;
}

@media (max-width: 940px) {
    body .mobile-book.button.violet {
        display: block;
    }
}

body.profile #header#header {
    float: left;
}

body.profile #page#page #content#content {
    clear: both;
    padding-top: 33px;
}

@media (max-width: 768px) {
    body.profile #page#page #content#content #tabs ul li a {
        font-size: 12px;
        padding: 10px;
    }
}

@media (max-width: 1280px) {
    body.profile #page#page #content#content {
        max-width: 1080px;
    }

    body.profile #page#page #content#content.small {
        max-width: 392px;
    }
}

body.not-home {
    background: white;
}

body.auth.auth, body.not-home, body.profile.auth.auth {
    margin: 0;
    scroll-behavior: smooth;
    color: #1F2023;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    letter-spacing: 0.2px;
    line-height: 24px;
}

body.auth.auth *, body.not-home *, body.profile.auth.auth * {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

body.auth.auth a.violet.link, body.not-home a.violet.link, body.profile.auth.auth a.violet.link {
    font-size: 16px;
    line-height: 24px;
    color: #9C99FA;
    margin: 16px 0;
    display: block;
    cursor: pointer;
    clear: both;
}

body.auth.auth *:focus, body.not-home *:focus, body.profile.auth.auth *:focus {
    outline: none;
}

body.auth.auth strong, body.not-home strong, body.profile.auth.auth strong {
    font-weight: 500;
}

body.auth.auth h1, body.auth.auth h2, body.auth.auth h3, body.auth.auth h4, body.not-home h1, body.not-home h2, body.not-home h3, body.not-home h4, body.profile.auth.auth h1, body.profile.auth.auth h2, body.profile.auth.auth h3, body.profile.auth.auth h4 {
    font-weight: normal;
}

body.auth.auth #page #header, body.not-home #page #header, body.profile.auth.auth #page #header {
    width: 100%;
    display: block;
    min-height: 69px;
}

body.auth.auth #page #content, body.not-home #page #content, body.profile.auth.auth #page #content {
    clear: both;
}

@media (max-width: 769px) {
    body.auth.auth #page #content h1, body.not-home #page #content h1, body.profile.auth.auth #page #content h1 {
        font-size: 20px;
        line-height: 24px;
        margin-bottom: 9px;
    }
}

body.auth.auth #page #content .inner > p, body.not-home #page #content .inner > p, body.profile.auth.auth #page #content .inner > p {
    font-size: 16px;
    line-height: 24px;
}

@media (max-width: 1400px) {
    body.auth.auth #page #content, body.not-home #page #content, body.profile.auth.auth #page #content {
        margin-bottom: 40px;
    }
}

@media (max-width: 769px) {
    body.auth.auth #page #content, body.not-home #page #content, body.profile.auth.auth #page #content {
        margin-top: 26px;
    }
}

@media (max-width: 414px) {
    body.auth.auth #page #content, body.not-home #page #content, body.profile.auth.auth #page #content {
        margin-top: 0;
    }
}

body.auth.auth #page #content .back-home, body.not-home #page #content .back-home, body.profile.auth.auth #page #content .back-home {
    color: #9DA1A6;
    font-size: 14px;
    line-height: 20px;
}

body.auth.auth #page #content .filterBox, body.not-home #page #content .filterBox, body.profile.auth.auth #page #content .filterBox {
    display: block;
    padding: 14px 0;
    margin-top: 25px;
    border-top: 1px solid rgba(25, 26, 27, 0.1);
    border-bottom: 1px solid rgba(25, 26, 27, 0.1);
}

body.auth.auth #page #content .filterBox span, body.not-home #page #content .filterBox span, body.profile.auth.auth #page #content .filterBox span {
    font-size: 14px;
    float: left;
    line-height: 42px;
    margin-right: 15px;
    opacity: 0.4;
}

body.auth.auth #page #content #left-info, body.not-home #page #content #left-info, body.profile.auth.auth #page #content #left-info {
    max-width: 800px;
    margin-left: 35px;
    position: relative;
}

@media (max-width: 414px) {
    body.auth.auth #page #content #left-info, body.not-home #page #content #left-info, body.profile.auth.auth #page #content #left-info {
        margin-left: 20px;
        margin-right: 20px;
    }
}

body.auth.auth #page #content #left-info h1, body.not-home #page #content #left-info h1, body.profile.auth.auth #page #content #left-info h1 {
    width: 80%;
}

body.auth.auth #page #content #left-info .logo, body.not-home #page #content #left-info .logo, body.profile.auth.auth #page #content #left-info .logo {
    position: absolute;
    right: 0;
    top: 30px;
    max-width: 140px;
    height: auto;
    max-height: 110px;
}

@media (min-width: 1100px) and (max-width: 1400px) {
    body.auth.auth #page #content #left-info .logo, body.not-home #page #content #left-info .logo, body.profile.auth.auth #page #content #left-info .logo {
        top: -112px;
        left: 0px;
    }
}

@media (max-width: 414px) {
    body.auth.auth #page #content #left-info .logo, body.not-home #page #content #left-info .logo, body.profile.auth.auth #page #content #left-info .logo {
        top: -120px;
    }
}

body.auth.auth #page #content .open-hours, body.not-home #page #content .open-hours, body.profile.auth.auth #page #content .open-hours {
    float: right;
    font-size: 16px;
    color: #2C2E3D;
}

body.auth.auth #page #content .open-hours span, body.not-home #page #content .open-hours span, body.profile.auth.auth #page #content .open-hours span {
    font-weight: 500;
}

body.auth.auth #page #content .message, body.not-home #page #content .message, body.profile.auth.auth #page #content .message {
    position: absolute;
    top: 0;
    width: 100%;
}

body.auth.auth #page #content .inner, body.not-home #page #content .inner, body.profile.auth.auth #page #content .inner {
    position: relative;
    width: 100%;
}

body.auth.auth #page #content.small, body.not-home #page #content.small, body.profile.auth.auth #page #content.small {
    max-width: 392px;
    min-height: 100vh;
}

body.auth.auth #page #content.small .actionsPopup.actionsPopup, body.not-home #page #content.small .actionsPopup.actionsPopup, body.profile.auth.auth #page #content.small .actionsPopup.actionsPopup {
    min-width: 280px;
}

body.auth.auth #page #content.small .actionsPopup.actionsPopup form, body.not-home #page #content.small .actionsPopup.actionsPopup form, body.profile.auth.auth #page #content.small .actionsPopup.actionsPopup form {
    margin-bottom: 0;
    margin-top: 0;
}

body.auth.auth #page #content.small .actionsPopup.actionsPopup form input, body.not-home #page #content.small .actionsPopup.actionsPopup form input, body.profile.auth.auth #page #content.small .actionsPopup.actionsPopup form input {
    width: 100%;
    margin-top: 0;
}

@media (min-width: 1400px) {
    body.auth.auth #page #content.small, body.not-home #page #content.small, body.profile.auth.auth #page #content.small {
        margin-bottom: 300px;
    }
}

body.auth.auth #page #content.small.left, body.not-home #page #content.small.left, body.profile.auth.auth #page #content.small.left {
    max-width: 1280px;
}

@media (max-width: 1280px) {
    body.auth.auth #page #content.small.left, body.not-home #page #content.small.left, body.profile.auth.auth #page #content.small.left {
        max-width: 1080px;
    }
}

body.auth.auth #page #content.small.left .inner, body.not-home #page #content.small.left .inner, body.profile.auth.auth #page #content.small.left .inner {
    float: left;
    max-width: 392px;
}

body.auth.auth #page #content.small.left .inner:nth-child(2), body.not-home #page #content.small.left .inner:nth-child(2), body.profile.auth.auth #page #content.small.left .inner:nth-child(2) {
    margin-left: 80px;
    padding-top: 108px;
}

body.auth.auth #page #content .tab.tab #family-member-box #family-member-delete#family-member-delete, body.not-home #page #content .tab.tab #family-member-box #family-member-delete#family-member-delete, body.profile.auth.auth #page #content .tab.tab #family-member-box #family-member-delete#family-member-delete {
    background: url("../assets/icon/ui/trash.svg") no-repeat center center/20px;
    display: inline-block;
    padding: 0;
    margin-right: 0;
    margin-top: 0;
    border: none;
}

body.auth.auth #page #content .tab.tab #family-member-box #family-member-delete#family-member-delete:hover, body.not-home #page #content .tab.tab #family-member-box #family-member-delete#family-member-delete:hover, body.profile.auth.auth #page #content .tab.tab #family-member-box #family-member-delete#family-member-delete:hover {
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
}

body.auth.auth #page #content .tab.tab #family-member-box form, body.not-home #page #content .tab.tab #family-member-box form, body.profile.auth.auth #page #content .tab.tab #family-member-box form {
    margin: 0;
}

body.auth.auth #page #content .tab.tab h2, body.not-home #page #content .tab.tab h2, body.profile.auth.auth #page #content .tab.tab h2 {
    clear: both;
}

body.auth.auth #page #content .tab.tab.tab#details, body.not-home #page #content .tab.tab.tab#details, body.profile.auth.auth #page #content .tab.tab.tab#details {
    display: block;
}

body.auth.auth #page #content .tab.tab.tab#details > div.types, body.not-home #page #content .tab.tab.tab#details > div.types, body.profile.auth.auth #page #content .tab.tab.tab#details > div.types {
    margin-bottom: 30px;
    overflow: hidden;
    display: flex;
}

body.auth.auth #page #content .tab.tab.tab#details > div.types .appointment-type, body.not-home #page #content .tab.tab.tab#details > div.types .appointment-type, body.profile.auth.auth #page #content .tab.tab.tab#details > div.types .appointment-type {
    margin-top: 25px;
    border: 1px solid #E6EBF1;
    border-radius: 2px;
    background-color: #FFFFFF;
    display: inline-block;
    margin-bottom: 20px;
    position: relative;
    padding: 16px 12px 16px 76px;
    width: 33.3%;
    float: left;
    border-right-width: 0;
    cursor: pointer;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

@media (max-width: 1280px) {
    body.auth.auth #page #content .tab.tab.tab#details > div.types .appointment-type, body.not-home #page #content .tab.tab.tab#details > div.types .appointment-type, body.profile.auth.auth #page #content .tab.tab.tab#details > div.types .appointment-type {
        padding: 16px 12px 16px 60px;
    }
}

@media (max-width: 768px) {
    body.auth.auth #page #content .tab.tab.tab#details > div.types .appointment-type, body.not-home #page #content .tab.tab.tab#details > div.types .appointment-type, body.profile.auth.auth #page #content .tab.tab.tab#details > div.types .appointment-type {
        width: 100%;
        margin: 15px 0 0;
        border-right-width: 1px;
    }
}

body.auth.auth #page #content .tab.tab.tab#details > div.types .appointment-type:last-child, body.not-home #page #content .tab.tab.tab#details > div.types .appointment-type:last-child, body.profile.auth.auth #page #content .tab.tab.tab#details > div.types .appointment-type:last-child {
    border-right-width: 1px;
}

body.auth.auth #page #content .tab.tab.tab#details > div.types .appointment-type a, body.not-home #page #content .tab.tab.tab#details > div.types .appointment-type a, body.profile.auth.auth #page #content .tab.tab.tab#details > div.types .appointment-type a {
    color: #1F2023;
    font-size: 18px;
    letter-spacing: 0.2px;
    line-height: 32px;
    display: block;
}

@media (max-width: 1280px) {
    body.auth.auth #page #content .tab.tab.tab#details > div.types .appointment-type a, body.not-home #page #content .tab.tab.tab#details > div.types .appointment-type a, body.profile.auth.auth #page #content .tab.tab.tab#details > div.types .appointment-type a {
        font-size: 16px;
    }
}

body.auth.auth #page #content .tab.tab.tab#details > div.types .appointment-type span, body.not-home #page #content .tab.tab.tab#details > div.types .appointment-type span, body.profile.auth.auth #page #content .tab.tab.tab#details > div.types .appointment-type span {
    opacity: 0.6;
    color: #323446;
    font-size: 13px;
    line-height: 16px;
}

@media (max-width: 1280px) {
    body.auth.auth #page #content .tab.tab.tab#details > div.types .appointment-type span, body.not-home #page #content .tab.tab.tab#details > div.types .appointment-type span, body.profile.auth.auth #page #content .tab.tab.tab#details > div.types .appointment-type span {
        font-size: 12px;
    }
}

body.auth.auth #page #content .tab.tab.tab#details > div.types .appointment-type:before, body.not-home #page #content .tab.tab.tab#details > div.types .appointment-type:before, body.profile.auth.auth #page #content .tab.tab.tab#details > div.types .appointment-type:before {
    height: 48px;
    width: 48px;
    border-radius: 2px;
    display: inline-block;
    content: '';
    margin-left: -64px;
    position: absolute;
    background: url("../assets/icon/types/urgent.svg") no-repeat center center #FFE6E7;
}

@media (max-width: 1280px) {
    body.auth.auth #page #content .tab.tab.tab#details > div.types .appointment-type:before, body.not-home #page #content .tab.tab.tab#details > div.types .appointment-type:before, body.profile.auth.auth #page #content .tab.tab.tab#details > div.types .appointment-type:before {
        top: calc(50% - 18px);
        width: 40px;
        height: 40px;
        margin-left: -52px;
    }
}

body.auth.auth #page #content .tab.tab.tab#details > div.types .appointment-type.doctor:before, body.not-home #page #content .tab.tab.tab#details > div.types .appointment-type.doctor:before, body.profile.auth.auth #page #content .tab.tab.tab#details > div.types .appointment-type.doctor:before {
    background-image: url("../assets/icon/types/doctor.svg");
    background-color: #E6E6FF;
}

body.auth.auth #page #content .tab.tab.tab#details > div.types .appointment-type.family:before, body.not-home #page #content .tab.tab.tab#details > div.types .appointment-type.family:before, body.profile.auth.auth #page #content .tab.tab.tab#details > div.types .appointment-type.family:before {
    background-image: url("../assets/icon/types/family.svg");
    background-color: #E1EDFA;
}

body.auth.auth #page #content .tab.tab.tab#overview, body.not-home #page #content .tab.tab.tab#overview, body.profile.auth.auth #page #content .tab.tab.tab#overview {
    display: block;
    margin-top: 40px;
}

body.auth.auth #page #content .tab.tab.tab#overview h2, body.not-home #page #content .tab.tab.tab#overview h2, body.profile.auth.auth #page #content .tab.tab.tab#overview h2 {
    opacity: 0.4;
    color: #212224;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    line-height: 16px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

body.auth.auth #page #content .tab.tab.tab#overview .grey, body.not-home #page #content .tab.tab.tab#overview .grey, body.profile.auth.auth #page #content .tab.tab.tab#overview .grey {
    color: #2C2E3D;
    font-size: 14px;
    letter-spacing: -0.32px;
    line-height: 16px;
    border-radius: 2px;
    background-color: #F0F2F7;
    padding: 6px 10px;
    margin-right: 5px;
    display: inline-block;
    margin-bottom: 10px;
}

body.auth.auth #page #content .tab.tab.tab#overview .truncate, body.not-home #page #content .tab.tab.tab#overview .truncate, body.profile.auth.auth #page #content .tab.tab.tab#overview .truncate {
    margin-top: 30px;
    display: block;
    clear: both;
}

body.auth.auth #page #content .tab.tab.tab .search-wrap, body.not-home #page #content .tab.tab.tab .search-wrap, body.profile.auth.auth #page #content .tab.tab.tab .search-wrap {
    display: inline-block;
    position: relative;
}

body.auth.auth #page #content .tab.tab.tab .search-wrap:before, body.not-home #page #content .tab.tab.tab .search-wrap:before, body.profile.auth.auth #page #content .tab.tab.tab .search-wrap:before {
    content: '';
    width: 21px;
    height: 21px;
    position: absolute;
    top: 14px;
    right: 22px;
    background: url("../assets/icon/ui/search.svg") no-repeat center center/cover;
}

@media (max-width: 440px) {
    body.auth.auth #page #content form, body.not-home #page #content form, body.profile.auth.auth #page #content form {
        margin-bottom: 70px;
    }
}

body.auth.auth #page #content form #mmyy, body.auth.auth #page #content form #expiry, body.not-home #page #content form #mmyy, body.not-home #page #content form #expiry, body.profile.auth.auth #page #content form #mmyy, body.profile.auth.auth #page #content form #expiry {
    position: relative;
}

body.auth.auth #page #content form label.form_label, body.not-home #page #content form label.form_label, body.profile.auth.auth #page #content form label.form_label {
    font-size: 16px;
    line-height: 28px;
    display: block;
    margin-bottom: 16px;
}

body.auth.auth #page #content form .input-wrap, body.not-home #page #content form .input-wrap, body.profile.auth.auth #page #content form .input-wrap {
    max-height: 72px;
    transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
}

body.auth.auth #page #content form .input-wrap.has-error, body.not-home #page #content form .input-wrap.has-error, body.profile.auth.auth #page #content form .input-wrap.has-error {
    max-height: 115px;
}

body.auth.auth #page #content form .input-wrap input[type=email], body.auth.auth #page #content form .input-wrap input[type=password], body.auth.auth #page #content form .input-wrap input[type=text], body.auth.auth #page #content form .input-wrap input[type=file], body.not-home #page #content form .input-wrap input[type=email], body.not-home #page #content form .input-wrap input[type=password], body.not-home #page #content form .input-wrap input[type=text], body.not-home #page #content form .input-wrap input[type=file], body.profile.auth.auth #page #content form .input-wrap input[type=email], body.profile.auth.auth #page #content form .input-wrap input[type=password], body.profile.auth.auth #page #content form .input-wrap input[type=text], body.profile.auth.auth #page #content form .input-wrap input[type=file] {
    margin-bottom: 16px;
}

body.auth.auth #page #content form .input-wrap input[type=email]:-webkit-autofill, body.auth.auth #page #content form .input-wrap input[type=password]:-webkit-autofill, body.auth.auth #page #content form .input-wrap input[type=text]:-webkit-autofill, body.auth.auth #page #content form .input-wrap input[type=file]:-webkit-autofill, body.not-home #page #content form .input-wrap input[type=email]:-webkit-autofill, body.not-home #page #content form .input-wrap input[type=password]:-webkit-autofill, body.not-home #page #content form .input-wrap input[type=text]:-webkit-autofill, body.not-home #page #content form .input-wrap input[type=file]:-webkit-autofill, body.profile.auth.auth #page #content form .input-wrap input[type=email]:-webkit-autofill, body.profile.auth.auth #page #content form .input-wrap input[type=password]:-webkit-autofill, body.profile.auth.auth #page #content form .input-wrap input[type=text]:-webkit-autofill, body.profile.auth.auth #page #content form .input-wrap input[type=file]:-webkit-autofill {
    background-color: rgba(0, 0, 0, 0.06);
}

body.auth.auth #page #content form .input-wrap input[type=email]:-webkit-autofill + .floating-label, body.auth.auth #page #content form .input-wrap input[type=email]:-webkit-autofill + span + .floating-label, body.auth.auth #page #content form .input-wrap input[type=email] + label + .floating-label, body.auth.auth #page #content form .input-wrap input[type=email]:not(:empty) + .floating-label, body.auth.auth #page #content form .input-wrap input[type=email].error + label + .floating-label, body.auth.auth #page #content form .input-wrap input[type=password]:-webkit-autofill + .floating-label, body.auth.auth #page #content form .input-wrap input[type=password]:-webkit-autofill + span + .floating-label, body.auth.auth #page #content form .input-wrap input[type=password] + label + .floating-label, body.auth.auth #page #content form .input-wrap input[type=password]:not(:empty) + .floating-label, body.auth.auth #page #content form .input-wrap input[type=password].error + label + .floating-label, body.auth.auth #page #content form .input-wrap input[type=text]:-webkit-autofill + .floating-label, body.auth.auth #page #content form .input-wrap input[type=text]:-webkit-autofill + span + .floating-label, body.auth.auth #page #content form .input-wrap input[type=text] + label + .floating-label, body.auth.auth #page #content form .input-wrap input[type=text]:not(:empty) + .floating-label, body.auth.auth #page #content form .input-wrap input[type=text].error + label + .floating-label, body.auth.auth #page #content form .input-wrap input[type=file]:-webkit-autofill + .floating-label, body.auth.auth #page #content form .input-wrap input[type=file]:-webkit-autofill + span + .floating-label, body.auth.auth #page #content form .input-wrap input[type=file] + label + .floating-label, body.auth.auth #page #content form .input-wrap input[type=file]:not(:empty) + .floating-label, body.auth.auth #page #content form .input-wrap input[type=file].error + label + .floating-label, body.not-home #page #content form .input-wrap input[type=email]:-webkit-autofill + .floating-label, body.not-home #page #content form .input-wrap input[type=email]:-webkit-autofill + span + .floating-label, body.not-home #page #content form .input-wrap input[type=email] + label + .floating-label, body.not-home #page #content form .input-wrap input[type=email]:not(:empty) + .floating-label, body.not-home #page #content form .input-wrap input[type=email].error + label + .floating-label, body.not-home #page #content form .input-wrap input[type=password]:-webkit-autofill + .floating-label, body.not-home #page #content form .input-wrap input[type=password]:-webkit-autofill + span + .floating-label, body.not-home #page #content form .input-wrap input[type=password] + label + .floating-label, body.not-home #page #content form .input-wrap input[type=password]:not(:empty) + .floating-label, body.not-home #page #content form .input-wrap input[type=password].error + label + .floating-label, body.not-home #page #content form .input-wrap input[type=text]:-webkit-autofill + .floating-label, body.not-home #page #content form .input-wrap input[type=text]:-webkit-autofill + span + .floating-label, body.not-home #page #content form .input-wrap input[type=text] + label + .floating-label, body.not-home #page #content form .input-wrap input[type=text]:not(:empty) + .floating-label, body.not-home #page #content form .input-wrap input[type=text].error + label + .floating-label, body.not-home #page #content form .input-wrap input[type=file]:-webkit-autofill + .floating-label, body.not-home #page #content form .input-wrap input[type=file]:-webkit-autofill + span + .floating-label, body.not-home #page #content form .input-wrap input[type=file] + label + .floating-label, body.not-home #page #content form .input-wrap input[type=file]:not(:empty) + .floating-label, body.not-home #page #content form .input-wrap input[type=file].error + label + .floating-label, body.profile.auth.auth #page #content form .input-wrap input[type=email]:-webkit-autofill + .floating-label, body.profile.auth.auth #page #content form .input-wrap input[type=email]:-webkit-autofill + span + .floating-label, body.profile.auth.auth #page #content form .input-wrap input[type=email] + label + .floating-label, body.profile.auth.auth #page #content form .input-wrap input[type=email]:not(:empty) + .floating-label, body.profile.auth.auth #page #content form .input-wrap input[type=email].error + label + .floating-label, body.profile.auth.auth #page #content form .input-wrap input[type=password]:-webkit-autofill + .floating-label, body.profile.auth.auth #page #content form .input-wrap input[type=password]:-webkit-autofill + span + .floating-label, body.profile.auth.auth #page #content form .input-wrap input[type=password] + label + .floating-label, body.profile.auth.auth #page #content form .input-wrap input[type=password]:not(:empty) + .floating-label, body.profile.auth.auth #page #content form .input-wrap input[type=password].error + label + .floating-label, body.profile.auth.auth #page #content form .input-wrap input[type=text]:-webkit-autofill + .floating-label, body.profile.auth.auth #page #content form .input-wrap input[type=text]:-webkit-autofill + span + .floating-label, body.profile.auth.auth #page #content form .input-wrap input[type=text] + label + .floating-label, body.profile.auth.auth #page #content form .input-wrap input[type=text]:not(:empty) + .floating-label, body.profile.auth.auth #page #content form .input-wrap input[type=text].error + label + .floating-label, body.profile.auth.auth #page #content form .input-wrap input[type=file]:-webkit-autofill + .floating-label, body.profile.auth.auth #page #content form .input-wrap input[type=file]:-webkit-autofill + span + .floating-label, body.profile.auth.auth #page #content form .input-wrap input[type=file] + label + .floating-label, body.profile.auth.auth #page #content form .input-wrap input[type=file]:not(:empty) + .floating-label, body.profile.auth.auth #page #content form .input-wrap input[type=file].error + label + .floating-label {
    top: 6px;
    left: 16px;
    font-size: 12px;
    opacity: 1;
}

body.auth.auth #page #content form .input-wrap input[type=email][data-toggle="datepicker"], body.auth.auth #page #content form .input-wrap input[type=password][data-toggle="datepicker"], body.auth.auth #page #content form .input-wrap input[type=text][data-toggle="datepicker"], body.auth.auth #page #content form .input-wrap input[type=file][data-toggle="datepicker"], body.not-home #page #content form .input-wrap input[type=email][data-toggle="datepicker"], body.not-home #page #content form .input-wrap input[type=password][data-toggle="datepicker"], body.not-home #page #content form .input-wrap input[type=text][data-toggle="datepicker"], body.not-home #page #content form .input-wrap input[type=file][data-toggle="datepicker"], body.profile.auth.auth #page #content form .input-wrap input[type=email][data-toggle="datepicker"], body.profile.auth.auth #page #content form .input-wrap input[type=password][data-toggle="datepicker"], body.profile.auth.auth #page #content form .input-wrap input[type=text][data-toggle="datepicker"], body.profile.auth.auth #page #content form .input-wrap input[type=file][data-toggle="datepicker"] {
    cursor: pointer;
    background: white url(../assets/icon/ui/calendar.svg) no-repeat center right 16px/24px;
}

body.auth.auth #page #content form .input-wrap .selectric, body.not-home #page #content form .input-wrap .selectric, body.profile.auth.auth #page #content form .input-wrap .selectric {
    border-radius: 2px;
}

body.auth.auth #page #content form .input-wrap .selectric .label.label, body.not-home #page #content form .input-wrap .selectric .label.label, body.profile.auth.auth #page #content form .input-wrap .selectric .label.label {
    height: 56px;
}

@media (max-width: 414px) {
    body.auth.auth #page #content form input[type="submit"], body.not-home #page #content form input[type="submit"], body.profile.auth.auth #page #content form input[type="submit"] {
        margin-top: 12px;
    }
}

body.auth.auth #page #content form #expiry#expiry, body.not-home #page #content form #expiry#expiry, body.profile.auth.auth #page #content form #expiry#expiry {
    float: left;
    display: block;
}

body.auth.auth #page #content form a.purple, body.not-home #page #content form a.purple, body.profile.auth.auth #page #content form a.purple {
    clear: both;
}

body.auth.auth #page #content form a.purple.margin-bottom, body.not-home #page #content form a.purple.margin-bottom, body.profile.auth.auth #page #content form a.purple.margin-bottom {
    margin-bottom: 15px;
}

body.auth.auth #page #content .booking-links, body.not-home #page #content .booking-links, body.profile.auth.auth #page #content .booking-links {
    position: absolute;
    right: 0;
    width: 530px;
    margin-right: 30px;
    z-index: 2;
}

body.auth.auth #page #content .booking-links #booking-box#booking-box, body.not-home #page #content .booking-links #booking-box#booking-box, body.profile.auth.auth #page #content .booking-links #booking-box#booking-box {
    width: 100%;
    padding: 0 11px 30px;
    border-radius: 4px;
    margin-bottom: 0;
    background: transparent;
    box-shadow: none;
    border: none;
    height: auto;
    max-height: 430px;
    transition: all 0.4s linear;
    -webkit-transition: all 0.4s linear;
    -moz-transition: all 0.4s linear;
}

body.auth.auth #page #content .booking-links #booking-box#booking-box.box-popup, body.not-home #page #content .booking-links #booking-box#booking-box.box-popup, body.profile.auth.auth #page #content .booking-links #booking-box#booking-box.box-popup {
    display: none;
}

body.auth.auth #page #content .booking-links #booking-box#booking-box.box-popup.active, body.not-home #page #content .booking-links #booking-box#booking-box.box-popup.active, body.profile.auth.auth #page #content .booking-links #booking-box#booking-box.box-popup.active {
    display: block;
}

body.auth.auth #page #content .booking-links #booking-box#booking-box.box-popup.urgent, body.auth.auth #page #content .booking-links #booking-box#booking-box.box-popup.always-visible, body.not-home #page #content .booking-links #booking-box#booking-box.box-popup.urgent, body.not-home #page #content .booking-links #booking-box#booking-box.box-popup.always-visible, body.profile.auth.auth #page #content .booking-links #booking-box#booking-box.box-popup.urgent, body.profile.auth.auth #page #content .booking-links #booking-box#booking-box.box-popup.always-visible {
    display: block;
}

body.auth.auth #page #content .booking-links #booking-box#booking-box.doctor .slots.fifth, body.auth.auth #page #content .booking-links #booking-box#booking-box.specialist .slots.fifth, body.not-home #page #content .booking-links #booking-box#booking-box.doctor .slots.fifth, body.not-home #page #content .booking-links #booking-box#booking-box.specialist .slots.fifth, body.profile.auth.auth #page #content .booking-links #booking-box#booking-box.doctor .slots.fifth, body.profile.auth.auth #page #content .booking-links #booking-box#booking-box.specialist .slots.fifth {
    width: 20%;
    text-align: center;
    float: left;
    clear: initial;
    min-height: 200px;
}

body.auth.auth #page #content .booking-links #booking-box#booking-box.doctor .slots.fifth .slot, body.auth.auth #page #content .booking-links #booking-box#booking-box.specialist .slots.fifth .slot, body.not-home #page #content .booking-links #booking-box#booking-box.doctor .slots.fifth .slot, body.not-home #page #content .booking-links #booking-box#booking-box.specialist .slots.fifth .slot, body.profile.auth.auth #page #content .booking-links #booking-box#booking-box.doctor .slots.fifth .slot, body.profile.auth.auth #page #content .booking-links #booking-box#booking-box.specialist .slots.fifth .slot {
    margin-left: 0;
    width: 93%;
    display: inline-block;
    float: none;
    cursor: pointer;
    border-radius: 2px;
    transition: all 0.1s linear;
    -webkit-transition: all 0.1s linear;
    -moz-transition: all 0.1s linear;
}

body.auth.auth #page #content .booking-links #booking-box#booking-box.doctor .slots.fifth .slot:hover, body.auth.auth #page #content .booking-links #booking-box#booking-box.specialist .slots.fifth .slot:hover, body.not-home #page #content .booking-links #booking-box#booking-box.doctor .slots.fifth .slot:hover, body.not-home #page #content .booking-links #booking-box#booking-box.specialist .slots.fifth .slot:hover, body.profile.auth.auth #page #content .booking-links #booking-box#booking-box.doctor .slots.fifth .slot:hover, body.profile.auth.auth #page #content .booking-links #booking-box#booking-box.specialist .slots.fifth .slot:hover {
    color: white;
    background: #9C99FA;
}

body.auth.auth #page #content .booking-links #booking-box#booking-box.expanded .appts, body.not-home #page #content .booking-links #booking-box#booking-box.expanded .appts, body.profile.auth.auth #page #content .booking-links #booking-box#booking-box.expanded .appts {
    padding-bottom: 35px;
}

body.auth.auth #page #content .booking-links #booking-box#booking-box.expanded .appts .lessButton, body.not-home #page #content .booking-links #booking-box#booking-box.expanded .appts .lessButton, body.profile.auth.auth #page #content .booking-links #booking-box#booking-box.expanded .appts .lessButton {
    visibility: visible;
}

body.auth.auth #page #content .booking-links #booking-box#booking-box.expanded .appts .more#showMoreAvailabilities, body.not-home #page #content .booking-links #booking-box#booking-box.expanded .appts .more#showMoreAvailabilities, body.profile.auth.auth #page #content .booking-links #booking-box#booking-box.expanded .appts .more#showMoreAvailabilities {
    display: none;
}

body.auth.auth #page #content .booking-links #booking-box#booking-box.expanded .appts .slots.slots-container, body.not-home #page #content .booking-links #booking-box#booking-box.expanded .appts .slots.slots-container, body.profile.auth.auth #page #content .booking-links #booking-box#booking-box.expanded .appts .slots.slots-container {
    overflow: auto;
}

body.auth.auth #page #content .booking-links #booking-box#booking-box.expanded .appts .slots.slots-container::-webkit-scrollbar, body.not-home #page #content .booking-links #booking-box#booking-box.expanded .appts .slots.slots-container::-webkit-scrollbar, body.profile.auth.auth #page #content .booking-links #booking-box#booking-box.expanded .appts .slots.slots-container::-webkit-scrollbar {
    width: 7px;
    background: #fafbfc;
    border-left: 1px solid #F0F2F7;
    border-right: 1px solid #F0F2F7;
}

body.auth.auth #page #content .booking-links #booking-box#booking-box.expanded .appts .slots.slots-container::-webkit-scrollbar-thumb, body.not-home #page #content .booking-links #booking-box#booking-box.expanded .appts .slots.slots-container::-webkit-scrollbar-thumb, body.profile.auth.auth #page #content .booking-links #booking-box#booking-box.expanded .appts .slots.slots-container::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: rgba(0, 0, 0, 0.5);
    -webkit-box-shadow: 0 0 1px rgba(255, 255, 255, 0.5);
}

body.auth.auth #page #content .booking-links #booking-box#booking-box.expanded .appts .slots.slots-container .slots, body.not-home #page #content .booking-links #booking-box#booking-box.expanded .appts .slots.slots-container .slots, body.profile.auth.auth #page #content .booking-links #booking-box#booking-box.expanded .appts .slots.slots-container .slots {
    max-height: 100% !important;
}

body.auth.auth #page #content .booking-links #booking-box#booking-box.expanded .appts > .slots, body.not-home #page #content .booking-links #booking-box#booking-box.expanded .appts > .slots, body.profile.auth.auth #page #content .booking-links #booking-box#booking-box.expanded .appts > .slots {
    overflow: scroll;
}

body.auth.auth #page #content .booking-links #booking-box#booking-box .appts, body.not-home #page #content .booking-links #booking-box#booking-box .appts, body.profile.auth.auth #page #content .booking-links #booking-box#booking-box .appts {
    padding: 0 40px 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.08);
    border-radius: 4px;
    background: white;
    border: 1px solid #DFE1E5;
    border-top-right-radius: 0;
    border-top-left-radius: 0;
    min-height: 330px;
    transition: all 0.4s linear;
    -webkit-transition: all 0.4s linear;
    -moz-transition: all 0.4s linear;
    max-height: 100%;
}

@media (max-width: 700px) {
    body.auth.auth #page #content .booking-links #booking-box#booking-box .appts, body.not-home #page #content .booking-links #booking-box#booking-box .appts, body.profile.auth.auth #page #content .booking-links #booking-box#booking-box .appts {
        padding: 0 15px 20px;
    }
}

body.auth.auth #page #content .booking-links #booking-box#booking-box .appts .seeAll, body.not-home #page #content .booking-links #booking-box#booking-box .appts .seeAll, body.profile.auth.auth #page #content .booking-links #booking-box#booking-box .appts .seeAll {
    color: #9DA1A6;
    font-size: 14px;
    position: absolute;
    bottom: 10px;
    left: 40px;
    cursor: pointer;
}

body.auth.auth #page #content .booking-links #booking-box#booking-box .appts .slots, body.not-home #page #content .booking-links #booking-box#booking-box .appts .slots, body.profile.auth.auth #page #content .booking-links #booking-box#booking-box .appts .slots {
    text-align: center;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    max-height: 214px;
    clear: both;
    position: relative;
}

body.auth.auth #page #content .booking-links #booking-box#booking-box .appts .slots .overlay.closeable-container, body.not-home #page #content .booking-links #booking-box#booking-box .appts .slots .overlay.closeable-container, body.profile.auth.auth #page #content .booking-links #booking-box#booking-box .appts .slots .overlay.closeable-container {
    display: none;
}

body.auth.auth #page #content .booking-links #booking-box#booking-box .appts .slots .slot, body.not-home #page #content .booking-links #booking-box#booking-box .appts .slots .slot, body.profile.auth.auth #page #content .booking-links #booking-box#booking-box .appts .slots .slot {
    height: 36px;
    width: 18.2%;
    display: block;
    float: left;
    border: 1px solid #F0F2F7;
    border-radius: 2px;
    margin-right: 2%;
    background-color: #FAFBFC;
    margin-bottom: 8px;
    text-align: center;
    line-height: 36px;
    cursor: pointer;
    color: #1F2023;
    position: relative;
}

body.auth.auth #page #content .booking-links #booking-box#booking-box .appts .slots .slot:hover, body.not-home #page #content .booking-links #booking-box#booking-box .appts .slots .slot:hover, body.profile.auth.auth #page #content .booking-links #booking-box#booking-box .appts .slots .slot:hover {
    color: white;
    background: #9C99FA;
}

body.auth.auth #page #content .booking-links #booking-box#booking-box .appts .slots .slot.more, body.not-home #page #content .booking-links #booking-box#booking-box .appts .slots .slot.more, body.profile.auth.auth #page #content .booking-links #booking-box#booking-box .appts .slots .slot.more {
    width: 100%;
    margin-right: 0;
    margin-bottom: 0;
    position: absolute;
    top: 176px;
    z-index: 1;
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
}

body.auth.auth #page #content .booking-links #booking-box#booking-box .appts .slots .slot:nth-child(5n+5), body.not-home #page #content .booking-links #booking-box#booking-box .appts .slots .slot:nth-child(5n+5), body.profile.auth.auth #page #content .booking-links #booking-box#booking-box .appts .slots .slot:nth-child(5n+5) {
    margin-right: 0;
}

body.auth.auth #page #content .booking-links #booking-box#booking-box .appts .day-switcher, body.not-home #page #content .booking-links #booking-box#booking-box .appts .day-switcher, body.profile.auth.auth #page #content .booking-links #booking-box#booking-box .appts .day-switcher {
    width: 100%;
    text-align: center;
    color: #1F2023;
    font-size: 18px;
    position: relative;
    float: left;
}

body.auth.auth #page #content .booking-links #booking-box#booking-box .appts .day-switcher p, body.not-home #page #content .booking-links #booking-box#booking-box .appts .day-switcher p, body.profile.auth.auth #page #content .booking-links #booking-box#booking-box .appts .day-switcher p {
    line-height: 75px;
}

@media (max-width: 700px) {
    body.auth.auth #page #content .booking-links #booking-box#booking-box .appts .day-switcher p, body.not-home #page #content .booking-links #booking-box#booking-box .appts .day-switcher p, body.profile.auth.auth #page #content .booking-links #booking-box#booking-box .appts .day-switcher p {
        line-height: 44px;
    }
}

body.auth.auth #page #content .booking-links #booking-box#booking-box .appts .day-switcher .day.fifth, body.not-home #page #content .booking-links #booking-box#booking-box .appts .day-switcher .day.fifth, body.profile.auth.auth #page #content .booking-links #booking-box#booking-box .appts .day-switcher .day.fifth {
    color: #1F2023;
    width: 20%;
    float: left;
    height: 63px;
    padding-top: 8px;
}

body.auth.auth #page #content .booking-links #booking-box#booking-box .appts .day-switcher .day.fifth > span, body.not-home #page #content .booking-links #booking-box#booking-box .appts .day-switcher .day.fifth > span, body.profile.auth.auth #page #content .booking-links #booking-box#booking-box .appts .day-switcher .day.fifth > span {
    font-size: 14px;
    display: block;
    float: none;
    line-height: 24px;
    text-transform: capitalize;
}

body.auth.auth #page #content .booking-links #booking-box#booking-box .appts .day-switcher .day.fifth > span:nth-child(2), body.not-home #page #content .booking-links #booking-box#booking-box .appts .day-switcher .day.fifth > span:nth-child(2), body.profile.auth.auth #page #content .booking-links #booking-box#booking-box .appts .day-switcher .day.fifth > span:nth-child(2) {
    opacity: 0.6;
}

body.auth.auth #page #content .booking-links #booking-box#booking-box .appts .day-switcher > span, body.not-home #page #content .booking-links #booking-box#booking-box .appts .day-switcher > span, body.profile.auth.auth #page #content .booking-links #booking-box#booking-box .appts .day-switcher > span {
    position: absolute;
    width: 44px;
    height: 30px;
    display: block;
    top: 17px;
    background: url("../assets/icon/ui/caret-down.svg") no-repeat center;
    background-size: cover;
    transform: rotate(90deg);
    cursor: pointer;
    left: -37px;
}

@media (max-width: 700px) {
    body.auth.auth #page #content .booking-links #booking-box#booking-box .appts .day-switcher > span, body.not-home #page #content .booking-links #booking-box#booking-box .appts .day-switcher > span, body.profile.auth.auth #page #content .booking-links #booking-box#booking-box .appts .day-switcher > span {
        top: 7px;
        left: -10px;
    }
}

body.auth.auth #page #content .booking-links #booking-box#booking-box .appts .day-switcher > span.next, body.not-home #page #content .booking-links #booking-box#booking-box .appts .day-switcher > span.next, body.profile.auth.auth #page #content .booking-links #booking-box#booking-box .appts .day-switcher > span.next {
    right: -37px;
    left: initial;
    background: url("../assets/icon/ui/caret-down.svg") no-repeat center;
    background-size: cover;
    transform: rotate(-90deg);
}

@media (max-width: 700px) {
    body.auth.auth #page #content .booking-links #booking-box#booking-box .appts .day-switcher > span.next, body.not-home #page #content .booking-links #booking-box#booking-box .appts .day-switcher > span.next, body.profile.auth.auth #page #content .booking-links #booking-box#booking-box .appts .day-switcher > span.next {
        right: -10px;
    }
}

body.auth.auth #page #content .booking-links #booking-box#booking-box .top, body.not-home #page #content .booking-links #booking-box#booking-box .top, body.profile.auth.auth #page #content .booking-links #booking-box#booking-box .top {
    padding: 25px 49px;
    transition: 0.3s ease-in;
    -webkit-transition: 0.3s ease-in;
    -moz-transition: 0.3s ease-in;
    border: 1px solid #AB3E43;
    border-radius: 2px 2px 0 0;
    box-shadow: inset 0 -1px 0 0 rgba(230, 235, 241, 0.5);
    position: relative;
}

@media (max-width: 700px) {
    body.auth.auth #page #content .booking-links #booking-box#booking-box .top, body.not-home #page #content .booking-links #booking-box#booking-box .top, body.profile.auth.auth #page #content .booking-links #booking-box#booking-box .top {
        padding: 12px 16px;
    }
}

body.auth.auth #page #content .booking-links #booking-box#booking-box .top p, body.not-home #page #content .booking-links #booking-box#booking-box .top p, body.profile.auth.auth #page #content .booking-links #booking-box#booking-box .top p {
    font-size: 24px;
    color: white;
    font-weight: 400;
}

@media (max-width: 700px) {
    body.auth.auth #page #content .booking-links #booking-box#booking-box .top p, body.not-home #page #content .booking-links #booking-box#booking-box .top p, body.profile.auth.auth #page #content .booking-links #booking-box#booking-box .top p {
        font-size: 18px;
    }
}

body.auth.auth #page #content .booking-links #booking-box#booking-box .top:before, body.not-home #page #content .booking-links #booking-box#booking-box .top:before, body.profile.auth.auth #page #content .booking-links #booking-box#booking-box .top:before {
    height: 48px;
    width: 48px;
    border-radius: 2px;
    display: inline-block;
    content: '';
    margin-left: -64px;
    position: absolute;
    background: url("../assets/icon/types/urgent.svg") no-repeat center center #FFE6E7;
    right: 49px;
    top: 15px;
    transition: 0.3s ease-in;
    -webkit-transition: 0.3s ease-in;
    -moz-transition: 0.3s ease-in;
}

@media (max-width: 700px) {
    body.auth.auth #page #content .booking-links #booking-box#booking-box .top:before, body.not-home #page #content .booking-links #booking-box#booking-box .top:before, body.profile.auth.auth #page #content .booking-links #booking-box#booking-box .top:before {
        height: 30px;
        width: 30px;
        right: 15px;
        top: 10px;
    }
}

body.auth.auth #page #content .booking-links #booking-box#booking-box.urgent .top, body.not-home #page #content .booking-links #booking-box#booking-box.urgent .top, body.profile.auth.auth #page #content .booking-links #booking-box#booking-box.urgent .top {
    background: #FE5B64;
}

body.auth.auth #page #content .booking-links #booking-box#booking-box.doctor .top, body.auth.auth #page #content .booking-links #booking-box#booking-box.specialist .top, body.not-home #page #content .booking-links #booking-box#booking-box.doctor .top, body.not-home #page #content .booking-links #booking-box#booking-box.specialist .top, body.profile.auth.auth #page #content .booking-links #booking-box#booking-box.doctor .top, body.profile.auth.auth #page #content .booking-links #booking-box#booking-box.specialist .top {
    background: #9C99FA;
}

body.auth.auth #page #content .booking-links #booking-box#booking-box.doctor .day-switcher, body.auth.auth #page #content .booking-links #booking-box#booking-box.specialist .day-switcher, body.not-home #page #content .booking-links #booking-box#booking-box.doctor .day-switcher, body.not-home #page #content .booking-links #booking-box#booking-box.specialist .day-switcher, body.profile.auth.auth #page #content .booking-links #booking-box#booking-box.doctor .day-switcher, body.profile.auth.auth #page #content .booking-links #booking-box#booking-box.specialist .day-switcher {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 8px;
}

body.auth.auth #page #content .booking-links #booking-box#booking-box.doctor .top, body.not-home #page #content .booking-links #booking-box#booking-box.doctor .top, body.profile.auth.auth #page #content .booking-links #booking-box#booking-box.doctor .top {
    border-color: #5f5d99;
    background: #9C99FA;
}

body.auth.auth #page #content .booking-links #booking-box#booking-box.doctor .top:before, body.not-home #page #content .booking-links #booking-box#booking-box.doctor .top:before, body.profile.auth.auth #page #content .booking-links #booking-box#booking-box.doctor .top:before {
    background-image: url("../assets/icon/types/doctor.svg");
    background-color: #E6E6FF;
}

body.auth.auth #page #content .booking-links #booking-box#booking-box.specialist .top, body.not-home #page #content .booking-links #booking-box#booking-box.specialist .top, body.profile.auth.auth #page #content .booking-links #booking-box#booking-box.specialist .top {
    border-color: #335980;
    background: #b9d7f7;
}

body.auth.auth #page #content .booking-links #booking-box#booking-box.specialist .top:before, body.not-home #page #content .booking-links #booking-box#booking-box.specialist .top:before, body.profile.auth.auth #page #content .booking-links #booking-box#booking-box.specialist .top:before {
    background-image: url("../assets/icon/types/family.svg");
    background-color: #E1EDFA;
}

body.auth.auth #page #content .booking-links #booking-box#booking-box .member-image, body.not-home #page #content .booking-links #booking-box#booking-box .member-image, body.profile.auth.auth #page #content .booking-links #booking-box#booking-box .member-image {
    width: 64px;
    height: 64px;
    overflow: hidden;
    border-radius: 2px;
    background-color: #E6E6FF;
    box-shadow: 2px 4px 10px 0 rgba(0, 0, 0, 0.05);
    margin-right: 12px;
    font-size: 20px;
    line-height: 64px;
    text-align: center;
    color: #9C99FA;
}

body.auth.auth #page #content .booking-links #booking-box#booking-box .member-image img, body.not-home #page #content .booking-links #booking-box#booking-box .member-image img, body.profile.auth.auth #page #content .booking-links #booking-box#booking-box .member-image img {
    width: 100%;
}

body.auth.auth #page #content .booking-links #booking-box#booking-box #booking-logo img, body.not-home #page #content .booking-links #booking-box#booking-box #booking-logo img, body.profile.auth.auth #page #content .booking-links #booking-box#booking-box #booking-logo img {
    max-height: 200px;
}

body.auth.auth #page #content .booking-links #booking-box#booking-box h2, body.not-home #page #content .booking-links #booking-box#booking-box h2, body.profile.auth.auth #page #content .booking-links #booking-box#booking-box h2 {
    color: #1F2023;
    font-size: 16px;
    line-height: 24px;
    margin-top: 25px;
}

body.auth.auth #page #content .booking-links #booking-box#booking-box #booking-not-available h2, body.not-home #page #content .booking-links #booking-box#booking-box #booking-not-available h2, body.profile.auth.auth #page #content .booking-links #booking-box#booking-box #booking-not-available h2 {
    opacity: 0.4;
    color: #212224;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.92px;
    line-height: 16px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

body.auth.auth #page #content .booking-links #booking-box#booking-box #booking-not-available a, body.not-home #page #content .booking-links #booking-box#booking-box #booking-not-available a, body.profile.auth.auth #page #content .booking-links #booking-box#booking-box #booking-not-available a {
    color: #2C2E3D;
    font-size: 16px;
    letter-spacing: -0.32px;
    line-height: 24px;
    border: 1px solid #F0F2F7;
    border-radius: 2px;
    background-color: #FAFBFC;
    display: inline-block;
    padding: 8px 19px;
    margin-right: 5px;
}

body.auth.auth #page #content .booking-links #booking-box#booking-box #booking-not-available a.purple, body.not-home #page #content .booking-links #booking-box#booking-box #booking-not-available a.purple, body.profile.auth.auth #page #content .booking-links #booking-box#booking-box #booking-not-available a.purple {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 2px;
    background-color: #9C99FA;
    color: #fff;
}

body.auth.auth #page #content .booking-links #booking-box#booking-box #appointment-types .appointment-type, body.not-home #page #content .booking-links #booking-box#booking-box #appointment-types .appointment-type, body.profile.auth.auth #page #content .booking-links #booking-box#booking-box #appointment-types .appointment-type {
    border: 1px solid #E6EBF1;
    border-radius: 2px;
    background-color: #FFFFFF;
    display: block;
    margin-bottom: 8px;
    position: relative;
    cursor: pointer;
}

body.auth.auth #page #content .booking-links #booking-box#booking-box #appointment-types .appointment-type:after, body.not-home #page #content .booking-links #booking-box#booking-box #appointment-types .appointment-type:after, body.profile.auth.auth #page #content .booking-links #booking-box#booking-box #appointment-types .appointment-type:after {
    content: '';
    top: 0px;
    display: inline-block;
    width: 20px;
    height: 20px;
    position: absolute;
    right: 30px;
    margin-top: 30px;
    background: url("../assets/icon/ui/arrow-right.svg") no-repeat center center/cover;
    opacity: 0.2;
}

body.auth.auth #page #content .booking-links #booking-box#booking-box #appointment-types .appointment-type:hover, body.not-home #page #content .booking-links #booking-box#booking-box #appointment-types .appointment-type:hover, body.profile.auth.auth #page #content .booking-links #booking-box#booking-box #appointment-types .appointment-type:hover {
    border: 1px solid #CED3D9;
}

body.auth.auth #page #content .booking-links #booking-box#booking-box #appointment-types .appointment-type:hover:after, body.not-home #page #content .booking-links #booking-box#booking-box #appointment-types .appointment-type:hover:after, body.profile.auth.auth #page #content .booking-links #booking-box#booking-box #appointment-types .appointment-type:hover:after {
    opacity: 0.5;
}

body.auth.auth #page #content .booking-links .free-info, body.not-home #page #content .booking-links .free-info, body.profile.auth.auth #page #content .booking-links .free-info {
    color: #9DA1A6;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
}

body.auth.auth #page #content .booking-links.responsive, body.not-home #page #content .booking-links.responsive, body.profile.auth.auth #page #content .booking-links.responsive {
    display: none;
    position: relative;
    right: auto;
    margin-top: 20px;
    margin-left: 35px;
    margin-bottom: 30px;
    position: fixed;
    top: 0;
    left: 0;
}

body.auth.auth #page #content .booking-links.responsive.show, body.not-home #page #content .booking-links.responsive.show, body.profile.auth.auth #page #content .booking-links.responsive.show {
    display: block;
}

body.auth.auth #page #content .booking-links.responsive .free-info, body.not-home #page #content .booking-links.responsive .free-info, body.profile.auth.auth #page #content .booking-links.responsive .free-info {
    display: none;
}

body.auth.auth #page #content .booking-links.responsive .overlay-booking, body.not-home #page #content .booking-links.responsive .overlay-booking, body.profile.auth.auth #page #content .booking-links.responsive .overlay-booking {
    width: 100%;
    height: 300vh;
    left: 0;
    top: 0;
    position: fixed;
    background: rgba(0, 0, 0, 0.2);
}

body.auth.auth #page #content .booking-links.responsive #booking-box, body.not-home #page #content .booking-links.responsive #booking-box, body.profile.auth.auth #page #content .booking-links.responsive #booking-box {
    position: fixed;
    width: 500px !important;
    left: calc(50% - 250px);
    top: 100px;
    z-index: 2;
}

@media (max-width: 700px) {
    body.auth.auth #page #content .booking-links.responsive #booking-box, body.not-home #page #content .booking-links.responsive #booking-box, body.profile.auth.auth #page #content .booking-links.responsive #booking-box {
        width: 330px !important;
        left: calc(50% - 165px);
    }
}

body.auth.auth #page #content .booking-links.offtap #booking-box#booking-box, body.not-home #page #content .booking-links.offtap #booking-box#booking-box, body.profile.auth.auth #page #content .booking-links.offtap #booking-box#booking-box {
    background: white;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.08);
    max-height: initial;
}

body.auth.auth #page #content .booking-links.offtap .free-info, body.not-home #page #content .booking-links.offtap .free-info, body.profile.auth.auth #page #content .booking-links.offtap .free-info {
    margin-top: 30px;
}

body.auth.auth #page #content #filters, body.not-home #page #content #filters, body.profile.auth.auth #page #content #filters {
    display: inline-block;
    width: 100%;
    padding-bottom: 10px;
    border: none;
}

@media (max-width: 768px) {
    body.auth.auth #page #content #filters, body.not-home #page #content #filters, body.profile.auth.auth #page #content #filters {
        padding: 0 15px;
        padding-bottom: 5px;
    }
}

@media (max-width: 768px) {
    body.auth.auth #page #content #filters #map-switch, body.not-home #page #content #filters #map-switch, body.profile.auth.auth #page #content #filters #map-switch {
        display: none;
    }
}

body.auth.auth #page #content #filters select, body.not-home #page #content #filters select, body.profile.auth.auth #page #content #filters select {
    visibility: hidden;
    position: absolute;
}

body.auth.auth #page #content #filters #date input, body.not-home #page #content #filters #date input, body.profile.auth.auth #page #content #filters #date input {
    padding: 11px 23px;
    background: white;
    color: #2C2E3D;
    border: 1px solid rgba(25, 26, 27, 0.1);
    height: 38px;
    font-size: 16px;
    text-align: center;
    width: 140px;
    box-shadow: 2px 4px 10px 0 rgba(0, 0, 0, 0.05);
    cursor: pointer;
}

body.auth.auth #page #content #filters #date input::-webkit-input-placeholder, body.not-home #page #content #filters #date input::-webkit-input-placeholder, body.profile.auth.auth #page #content #filters #date input::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #1F2023;
}

body.auth.auth #page #content #filters #date input::-moz-placeholder, body.not-home #page #content #filters #date input::-moz-placeholder, body.profile.auth.auth #page #content #filters #date input::-moz-placeholder {
    /* Firefox 19+ */
    color: #1F2023;
}

body.auth.auth #page #content #filters #date input:-ms-input-placeholder, body.not-home #page #content #filters #date input:-ms-input-placeholder, body.profile.auth.auth #page #content #filters #date input:-ms-input-placeholder {
    /* IE 10+ */
    color: #1F2023;
}

body.auth.auth #page #content #filters #date input:-moz-placeholder, body.not-home #page #content #filters #date input:-moz-placeholder, body.profile.auth.auth #page #content #filters #date input:-moz-placeholder {
    /* Firefox 18- */
    color: #1F2023;
}

body.auth.auth #page #content #filters #visit-filters, body.not-home #page #content #filters #visit-filters, body.profile.auth.auth #page #content #filters #visit-filters {
    float: left;
}

body.auth.auth #page #content #filters #visit-filters .s-hidden, body.not-home #page #content #filters #visit-filters .s-hidden, body.profile.auth.auth #page #content #filters #visit-filters .s-hidden {
    visibility: hidden;
    padding-right: 10px;
}

body.auth.auth #page #content #filters #visit-filters .select, body.not-home #page #content #filters #visit-filters .select, body.profile.auth.auth #page #content #filters #visit-filters .select {
    cursor: pointer;
    display: inline-block;
    position: relative;
    color: #FE5B64;
    border: 1px solid #FE5B64;
    border-radius: 2px;
    box-shadow: 2px 4px 10px 0 rgba(0, 0, 0, 0.05);
}

body.auth.auth #page #content #filters #visit-filters .select.color-default, body.not-home #page #content #filters #visit-filters .select.color-default, body.profile.auth.auth #page #content #filters #visit-filters .select.color-default {
    color: #2C2E3D;
    border: 1px solid rgba(25, 26, 27, 0.1);
}

body.auth.auth #page #content #filters #visit-filters .select.color-blue, body.not-home #page #content #filters #visit-filters .select.color-blue, body.profile.auth.auth #page #content #filters #visit-filters .select.color-blue {
    border: 1px solid #67B2FC;
    border-radius: 2px;
    box-shadow: 2px 4px 10px 0 rgba(0, 0, 0, 0.05);
    color: #67B2FC;
}

body.auth.auth #page #content #filters #visit-filters .select .styledSelect, body.not-home #page #content #filters #visit-filters .select .styledSelect, body.profile.auth.auth #page #content #filters #visit-filters .select .styledSelect {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: white;
    font-size: 16px;
    line-height: 16px;
    text-align: center;
    padding: 11px 23px;
    border-radius: 2px;
    transition: 0.1s ease-in;
    -webkit-transition: 0.1s ease-in;
    -moz-transition: 0.1s ease-in;
}

body.auth.auth #page #content #filters #visit-filters .select .styledSelect.active, body.not-home #page #content #filters #visit-filters .select .styledSelect.active, body.profile.auth.auth #page #content #filters #visit-filters .select .styledSelect.active {
    background-color: #E6EBF1;
}

body.auth.auth #page #content #filters #visit-filters .select .options, body.not-home #page #content #filters #visit-filters .select .options, body.profile.auth.auth #page #content #filters #visit-filters .select .options {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    z-index: 999;
    margin: 0 0;
    padding: 0 0;
    list-style: none;
    border: 1px solid #DFE1E5;
    border-radius: 2px;
    background-color: #FFFFFF;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.08);
    padding: 15px 0;
    padding-top: 0px;
    margin-top: 5px;
    width: 305px;
}

body.auth.auth #page #content #filters #visit-filters .select .options li, body.not-home #page #content #filters #visit-filters .select .options li, body.profile.auth.auth #page #content #filters #visit-filters .select .options li {
    font-size: 14px;
    letter-spacing: -0.28px;
    line-height: 24px;
    padding: 0 15px;
    padding-top: 15px;
    padding-left: 50px;
    color: #2C2E3D;
}

body.auth.auth #page #content #filters #visit-filters .select .options li:before, body.not-home #page #content #filters #visit-filters .select .options li:before, body.profile.auth.auth #page #content #filters #visit-filters .select .options li:before {
    content: '';
    position: absolute;
    display: inline-block;
    height: 22px;
    width: 22px;
    border-radius: 11px;
    background-color: #fff;
    border: 1px solid #2A2B2E;
    margin-left: -33px;
}

body.auth.auth #page #content #filters #visit-filters .select .options li.active:before, body.not-home #page #content #filters #visit-filters .select .options li.active:before, body.profile.auth.auth #page #content #filters #visit-filters .select .options li.active:before {
    border-color: #9C98FA;
    background: url("../assets/icon/ui/check.svg") no-repeat center center #9C98FA/cover;
}

body.auth.auth #page #content #filters #visit-filters .select .options .option-desc, body.not-home #page #content #filters #visit-filters .select .options .option-desc, body.profile.auth.auth #page #content #filters #visit-filters .select .options .option-desc {
    color: #2C2E3D;
    font-size: 12px;
    letter-spacing: -0.24px;
    line-height: 16px;
    padding-left: 50px;
    padding-right: 10px;
}

body.auth.auth #page #content #filters #visit-filters #filter-by, body.not-home #page #content #filters #visit-filters #filter-by, body.profile.auth.auth #page #content #filters #visit-filters #filter-by {
    float: left;
    opacity: 0.6;
    color: #2C2E3D;
    font-size: 14px;
    line-height: 40px;
    margin-right: 25px;
}

@media (max-width: 768px) {
    body.auth.auth #page #content #filters #visit-filters #filter-by, body.not-home #page #content #filters #visit-filters #filter-by, body.profile.auth.auth #page #content #filters #visit-filters #filter-by {
        display: none;
    }
}

body.auth.auth #page #content #filters #visit-filters #visit-type, body.not-home #page #content #filters #visit-filters #visit-type, body.profile.auth.auth #page #content #filters #visit-filters #visit-type {
    float: left;
}

body.auth.auth #page #content #filters #visit-filters .filter-item.filter-item, body.not-home #page #content #filters #visit-filters .filter-item.filter-item, body.profile.auth.auth #page #content #filters #visit-filters .filter-item.filter-item {
    float: left;
    margin-right: 15px;
    transition: 0.1s ease-in;
    -webkit-transition: 0.1s ease-in;
    -moz-transition: 0.1s ease-in;
    cursor: pointer;
}

@media (max-width: 768px) {
    body.auth.auth #page #content #filters #visit-filters .filter-item.filter-item, body.not-home #page #content #filters #visit-filters .filter-item.filter-item, body.profile.auth.auth #page #content #filters #visit-filters .filter-item.filter-item {
        width: 48%;
        height: 40px;
        float: left;
        margin-right: 4%;
        margin-bottom: 10px;
        margin-left: 0 !important;
    }

    body.auth.auth #page #content #filters #visit-filters .filter-item.filter-item > *, body.not-home #page #content #filters #visit-filters .filter-item.filter-item > *, body.profile.auth.auth #page #content #filters #visit-filters .filter-item.filter-item > * {
        height: 40px;
        width: 100%;
    }
}

@media (max-width: 768px) and (max-width: 414px) {
    body.auth.auth #page #content #filters #visit-filters .filter-item.filter-item .filter-checkbox label, body.not-home #page #content #filters #visit-filters .filter-item.filter-item .filter-checkbox label, body.profile.auth.auth #page #content #filters #visit-filters .filter-item.filter-item .filter-checkbox label {
        font-size: 14px;
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media (max-width: 768px) {
    body.auth.auth #page #content #filters #visit-filters .filter-item.filter-item:nth-child(odd), body.not-home #page #content #filters #visit-filters .filter-item.filter-item:nth-child(odd), body.profile.auth.auth #page #content #filters #visit-filters .filter-item.filter-item:nth-child(odd) {
        margin-right: 0;
    }
}

body.auth.auth #page #content #filters #visit-filters .more_filters_box, body.not-home #page #content #filters #visit-filters .more_filters_box, body.profile.auth.auth #page #content #filters #visit-filters .more_filters_box {
    float: left;
    display: none;
}

@media (max-width: 768px) {
    body.auth.auth #page #content #filters #visit-filters .more_filters_box, body.not-home #page #content #filters #visit-filters .more_filters_box, body.profile.auth.auth #page #content #filters #visit-filters .more_filters_box {
        width: 100%;
    }

    body.auth.auth #page #content #filters #visit-filters .more_filters_box .filter-item:nth-child(even), body.not-home #page #content #filters #visit-filters .more_filters_box .filter-item:nth-child(even), body.profile.auth.auth #page #content #filters #visit-filters .more_filters_box .filter-item:nth-child(even) {
        margin-right: 0;
    }

    body.auth.auth #page #content #filters #visit-filters .more_filters_box .filter-item:nth-child(odd), body.not-home #page #content #filters #visit-filters .more_filters_box .filter-item:nth-child(odd), body.profile.auth.auth #page #content #filters #visit-filters .more_filters_box .filter-item:nth-child(odd) {
        margin-right: 4%;
    }
}

body.auth.auth #page #content #filters #visit-filters #specialty-type, body.not-home #page #content #filters #visit-filters #specialty-type, body.profile.auth.auth #page #content #filters #visit-filters #specialty-type {
    float: left;
    margin-left: 5px;
    display: none;
}

body.auth.auth #page #content #filters #visit-filters.purple .select, body.not-home #page #content #filters #visit-filters.purple .select, body.profile.auth.auth #page #content #filters #visit-filters.purple .select {
    color: #9C99FA;
    border-color: #9C99FA;
}

body.auth.auth #page #content #filters input:checked + .slider:before, body.not-home #page #content #filters input:checked + .slider:before, body.profile.auth.auth #page #content #filters input:checked + .slider:before {
    -webkit-transform: translateX(-15px);
    -ms-transform: translateX(-15px);
    transform: translateX(-15px);
}

body.auth.auth #page #header #edit-profile, body.not-home #page #header #edit-profile, body.profile.auth.auth #page #header #edit-profile {
    display: none;
    position: fixed;
    z-index: 4;
}

body.auth.auth #page #header #edit-profile .inner #edit-buttons a.button, body.auth.auth #page #header #edit-profile .inner #edit-buttons .button, body.not-home #page #header #edit-profile .inner #edit-buttons a.button, body.not-home #page #header #edit-profile .inner #edit-buttons .button, body.profile.auth.auth #page #header #edit-profile .inner #edit-buttons a.button, body.profile.auth.auth #page #header #edit-profile .inner #edit-buttons .button {
    float: right;
    display: block;
    margin-left: 8px;
    padding: 0 16px;
    line-height: 44px;
}

body.auth.auth #page #header #header-menu ul .submenu, body.not-home #page #header #header-menu ul .submenu, body.profile.auth.auth #page #header #header-menu ul .submenu {
    z-index: 3;
}

body.auth.auth #page #header #header-menu ul li.has-child .parent:after, body.not-home #page #header #header-menu ul li.has-child .parent:after, body.profile.auth.auth #page #header #header-menu ul li.has-child .parent:after {
    left: initial;
    display: block;
    opacity: 1;
    left: initial;
}

body.auth.auth #page #header #header-menu ul li a, body.not-home #page #header #header-menu ul li a, body.profile.auth.auth #page #header #header-menu ul li a {
    margin-left: 0;
}

body.auth.auth #page #header #header-menu ul li a.button, body.not-home #page #header #header-menu ul li a.button, body.profile.auth.auth #page #header #header-menu ul li a.button {
    color: white;
}

body.auth.auth #without-ramq, body.not-home #without-ramq, body.profile.auth.auth #without-ramq {
    display: none;
}

body.auth.auth label.error, body.not-home label.error, body.profile.auth.auth label.error {
    display: inline-block !important;
    white-space: nowrap;
    clear: both;
    color: #AB3E43;
    margin-top: -7px;
    margin-bottom: 10px;
    font-size: 16px;
    z-index: -1;
    background: #FFE6E7;
    border-radius: 2px;
    height: 40px;
    line-height: 40px;
    padding: 0 16px;
    z-index: 2;
}

body.auth.auth label.error:empty, body.not-home label.error:empty, body.profile.auth.auth label.error:empty {
    display: none !important;
}

body.auth.auth form .styled-checkbox.styled-checkbox + label, body.not-home form .styled-checkbox.styled-checkbox + label, body.profile.auth.auth form .styled-checkbox.styled-checkbox + label {
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -o-user-select: none;
    transition: 0.2s ease-in;
    -moz-transition: 0.2s ease-in;
    -webkit-transition: 0.2s ease-in;
    clear: both;
    display: block;
    margin-bottom: 30px;
}

body.auth.auth form .styled-checkbox.styled-checkbox + label:before, body.not-home form .styled-checkbox.styled-checkbox + label:before, body.profile.auth.auth form .styled-checkbox.styled-checkbox + label:before {
    border-radius: 4px;
    border: 2px solid #8F8F91;
}

body.auth.auth form .styled-checkbox.styled-checkbox:checked + label:after, body.not-home form .styled-checkbox.styled-checkbox:checked + label:after, body.profile.auth.auth form .styled-checkbox.styled-checkbox:checked + label:after {
    content: '';
    position: absolute;
    width: 21px;
    height: 21px;
    left: 0;
    top: 3px;
    background: url(../assets/icon/ui/check.svg) no-repeat left -4px top -8px/32px;
}

body.auth.auth form .styled-checkbox.styled-checkbox:checked + label:before, body.not-home form .styled-checkbox.styled-checkbox:checked + label:before, body.profile.auth.auth form .styled-checkbox.styled-checkbox:checked + label:before {
    border-color: #9C99FA;
}

body.auth.auth .selectric-wrapper .selectric-hide-select, body.not-home .selectric-wrapper .selectric-hide-select, body.profile.auth.auth .selectric-wrapper .selectric-hide-select {
    height: auto;
    width: auto;
    display: block;
    position: initial;
}

body.auth.auth .selectric-wrapper .selectric-hide-select label.error, body.not-home .selectric-wrapper .selectric-hide-select label.error, body.profile.auth.auth .selectric-wrapper .selectric-hide-select label.error {
    position: absolute;
    bottom: -58px;
}

body.auth.auth .selectric-wrapper .button, body.not-home .selectric-wrapper .button, body.profile.auth.auth .selectric-wrapper .button {
    border: none;
    transition: 0.1s ease-in;
    -webkit-transition: 0.1s ease-in;
    -moz-transition: 0.1s ease-in;
}

body.auth.auth .selectric-wrapper.selectric-open .button, body.not-home .selectric-wrapper.selectric-open .button, body.profile.auth.auth .selectric-wrapper.selectric-open .button {
    transform: rotate(-180deg);
}

body.auth.auth #sent, body.not-home #sent, body.profile.auth.auth #sent {
    position: fixed;
}

.actions-wrapper {
    border: 1px solid #DFE1E5;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.08);
    border-radius: 2px;
    box-sizing: border-box;
    padding: 25px 25px 33px;
    display: block;
    position: relative;
    width: 270px;
    float: left;
}

.actions-wrapper h3 {
    font-size: 24px;
    color: #1F2023;
    margin-bottom: 16px;
}

button.button, .button, input[type="submit"].button.button.violet {
    height: 44px;
    line-height: 44px;
    font-size: 16px;
    display: block;
    padding: 0 16px;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    cursor: pointer;
    border-radius: 2px;
    float: left;
    color: #1F2023;
    background: #FAFBFC;
    border-color: #F0F2F7;
    border: 1px solid #F0F2F7;
    margin: 0 8px 0 0;
}

button.button:last-child, .button:last-child, input[type="submit"].button.button.violet:last-child {
    margin-right: 0;
}

button.button.purple, button.button.violet, .button.purple, .button.violet, input[type="submit"].button.button.violet.purple, input[type="submit"].button.button.violet.violet {
    background: #9C99FA;
    color: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

button.button.purple.calendar, button.button.violet.calendar, .button.purple.calendar, .button.violet.calendar, input[type="submit"].button.button.violet.purple.calendar, input[type="submit"].button.button.violet.violet.calendar {
    padding-left: 56px;
    background: #9C99FA url(../assets/icon/ui/cal-add.svg) no-repeat center left 15px/24px;
}

button.button.purple.app-button.app-button, button.button.violet.app-button.app-button, .button.purple.app-button.app-button, .button.violet.app-button.app-button, input[type="submit"].button.button.violet.purple.app-button.app-button, input[type="submit"].button.button.violet.violet.app-button.app-button {
    background: #9C99FA url(../assets/icon/download-icons.svg) no-repeat center left 10px/50px auto;
}

.select-wrap {
    max-height: 58px;
    margin-bottom: 16px;
    transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
}

.select-wrap.has-error {
    max-height: 100px;
    padding-bottom: 39px;
    position: relative;
}

.select-wrap.has-error .selectric-hide-select label.error {
    bottom: 0;
}

@media (max-width: 769px) {
    .select-wrap .floating-label {
        top: 6px;
    }
}

.loader {
    overflow: hidden;
    width: 100%;
    height: 100%;
    display: block;
    position: fixed;
    top: 0;
    height: 300vh;
    background: rgba(0, 0, 0, 0.3);
    text-align: center;
    z-index: 9;
}

.loader.small {
    position: absolute;
    left: 0;
    height: 100%;
    background: rgba(255, 255, 255, 0.7);
}

.loader.small img {
    position: absolute;
}

.loader img {
    height: 130px;
    width: 130px;
    position: fixed;
    top: calc(50% - 65px);
    left: calc(50% - 65px);
    animation-name: spin;
    animation-duration: 1000ms;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.back-link {
    color: #2C2E3D;
    font-size: 16px;
    line-height: 24px;
    padding-left: 26px;
    position: relative;
    opacity: 0.6;
    margin-bottom: 16px;
    display: block;
}

.back-link:after {
    height: 18px;
    width: 21px;
    position: absolute;
    display: block;
    content: "";
    left: 0;
    top: 0;
    background: url(../../assets/icon/caret-down.svg) no-repeat center left/27px;
    transform: rotate(90deg);
}

.badge {
    padding: 0 8px;
    display: inline-block;
    line-height: 28px;
    font-size: 14px;
    color: black;
    background: #ccc;
    margin-bottom: 32px;
}

.badge.green {
    color: #146657;
    background: #DCF5EF;
}

.close-switch.close-button {
    width: 24px;
    height: 24px;
    float: right;
    background: url(../assets/icon/ui/cancel-black.svg) no-repeat center center/contain;
}

@media (max-width: 414px) {
    #header-search {
    }
}

@media (max-width: 414px) {
    #header-search input {
        font-size: 14px !important
    }
}

@media (max-width: 320px) {
    #header-search input {
        font-size: 11px !important
    }
}

body #page #header-menu#header-menu {
    float: right;
    margin-top: 0;
}

body #page #header-menu#header-menu .mobile-screen {
    display: none;
}

@media (max-width: 1024px) {
    body #page #header-menu#header-menu .mobile-screen {
        display: none;
    }

    body #page #header-menu#header-menu .mobile-screen .hamburger {
        position: absolute;
        width: 24px;
        height: 24px;
        background: url(../assets/icon/ui/menu-icon.png) no-repeat center/contain;
        right: 45px;
        top: 28px;
        cursor: pointer;
    }
}

@media (max-width: 1024px) and (max-width: 414px) {
    body #page #header-menu#header-menu .mobile-screen .hamburger {
        right: 27px;
        top: 13px;
    }
}

@media (max-width: 1024px) and (max-width: 1024px) {
    body #page #header-menu#header-menu .big-screen {
        display: none;
    }

    body #page #header-menu#header-menu .mobile-screen {
        display: block;
    }

    body #page #header-menu#header-menu .mobile-screen .mobile-menu {
        display: block;
        height: 100vh;
        position: absolute;
        width: 360px;
        background: white;
        right: -380px;
        transition: 0.3s linear;
        -webkit-transition: 0.3s linear;
        -moz-transition: 0.3s linear;
        z-index: 3;
        padding: 20px 26px;
        box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.08);
        top: 0;
        box-sizing: border-box;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
    }
}

@media (max-width: 1024px) and (max-width: 1024px) and (max-width: 414px) {
    body #page #header-menu#header-menu .mobile-screen .mobile-menu {
        width: 100%;
        right: -120%;
    }
}

@media (max-width: 1024px) and (max-width: 1024px) {
    body #page #header-menu#header-menu .mobile-screen .mobile-menu.slide {
        right: 0;
    }

    body #page #header-menu#header-menu .mobile-screen .mobile-menu .top {
        padding-bottom: 25px;
    }
}

@media (max-width: 1024px) and (max-width: 1024px) and (max-width: 414px) {
    body #page #header-menu#header-menu .mobile-screen .mobile-menu .top {
        overflow: hidden;
    }

    body #page #header-menu#header-menu .mobile-screen .mobile-menu .top a.mobile-logo {
        float: left;
    }
}

@media (max-width: 1024px) and (max-width: 1024px) {
    body #page #header-menu#header-menu .mobile-screen .mobile-menu ul li {
        width: 100%;
        text-align: left;
    }

    body #page #header-menu#header-menu .mobile-screen .mobile-menu ul li.bordered {
        border-bottom: 1px solid #E6EBF1;
        padding-bottom: 24px;
    }

    body #page #header-menu#header-menu .mobile-screen .mobile-menu ul li a {
        font-size: 16px;
        color: #1F2023;
        padding: 24px 0 0;
        margin-left: 0;
    }

    body #page #header-menu#header-menu .mobile-screen .close-menu {
        width: 24px;
        height: 24px;
        display: block;
        float: right;
        background: url(../assets/icon/ui/cancel-black.svg) no-repeat center/contain;
    }
}

body #page #header-menu#header-menu ul {
    margin: 0;
    padding: 0;
}

body #page #header-menu#header-menu ul li {
    list-style: none;
    float: left;
    position: relative;
}

body #page #header-menu#header-menu ul li a {
    display: block;
    padding: 10px 16px;
}

body #page #header-menu#header-menu ul li a.app-button {
    padding-left: 70px;
}

@media (max-width: 414px) {
    body #page #header-menu#header-menu ul li a {
        font-size: 14px;
        padding: 5px 16px;
    }
}

body #page #header-menu#header-menu ul li a.grey {
    border: 1px solid #F0F2F7;
    border-radius: 2px;
    background-color: #FAFBFC;
    transition: all 0.3s ease-out;
}

body #page #header-menu#header-menu ul li a.grey:hover {
    box-shadow: 2px 2px 10px #c3c3c3;
}

body #page #header-menu#header-menu ul li.has-child .parent {
    color: #fff !important;
    background: #9C99FA;
    display: inline-block;
    position: relative;
    min-width: 200px;
    margin-left: 0;
}

body #page #header-menu#header-menu ul li.has-child .parent::after {
    position: absolute;
    content: '';
    background: url("../assets/icon/ui/caret-down-white.svg") no-repeat center center;
    width: 15px;
    height: 15px;
    right: 15px;
    top: 15px;
    left: initial;
    opacity: 1;
}

body #page #header-menu#header-menu ul li.has-child .submenu {
    position: absolute;
    margin-top: 8px;
    width: 100%;
    display: none;
}

body #page #header-menu#header-menu ul li.has-child .submenu ul {
    border-radius: 2px;
    background-color: #FFFFFF;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.08);
    border: 1px solid #DFE1E5;
}

body #page #header-menu#header-menu ul li.has-child .submenu ul li {
    display: block;
    float: none;
}

body #page #header-menu#header-menu ul li.has-child .submenu ul li:last-child {
    border-top: 1px solid #E6EBF1;
}

body #page #header-menu#header-menu ul li.has-child .submenu ul li:last-child a {
    padding-top: 27px;
    padding-bottom: 17px;
}

body #page #header-menu#header-menu ul li.has-child .submenu ul li a {
    padding: 12px 16px;
    color: #1F2023;
    margin-left: 0;
}

.float-left {
    float: left;
}

.clear {
    clear: both;
}

.box.gray {
    background: #E6EBF1;
    width: 100%;
    display: block;
    padding: 28px 32px 28px 32px;
    color: #1F2023;
    border-radius: 2px;
    overflow: hidden;
}

@media (max-width: 700px) {
    .box.gray {
        text-align: center;
    }
}

.box.gray h2 {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 16px;
    width: 70%;
    float: left;
}

@media (max-width: 700px) {
    .box.gray h2 {
        width: 100%;
        float: none;
        overflow: hidden;
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 16px;
    }
}

.box.gray p {
    font-size: 16px;
    line-height: 24px;
    width: 70%;
    float: left;
}

@media (max-width: 700px) {
    .box.gray p {
        width: 100%;
    }
}

.box.gray .button {
    float: right;
}

.box.gray span.label {
    float: right;
    opacity: 0.6;
    margin-top: 16px;
}

.apptsLoader {
    display: none;
}

.appointments-table {
    overflow: hidden;
    margin-bottom: 35px;
}

.appointments-table .no-results {
    display: flex;
    justify-content: center;
}

@media (max-width: 768px) {
    .appointments-table {
        overflow: visible;
    }
}

.appointments-table.wide > .table-content.table-content {
    width: calc(100% - 70px);
    margin-left: auto;
    margin-right: auto;
    float: none;
    overflow: hidden;
}

.appointments-table .table-top {
    overflow: hidden;
    display: block;
    position: relative;
    height: 64px;
    border-bottom: 1px solid rgba(25, 26, 27, 0.1);
    text-align: center;
}

@media (max-width: 768px) {
    .appointments-table .table-top {
        overflow: visible;
    }
}

@media (max-width: 768px) {
    .appointments-table .table-top .day-switcher.urgent {
        width: 100%;
    }
}

.appointments-table .table-top .day span:nth-child(2) {
    opacity: 0.6;
}

.appointments-table .table-top a.moveDay {
    position: absolute;
    background: url(../assets/icon/ui/caret-down.svg) no-repeat center;
    background-size: 45px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    transform: rotate(-90deg);
    margin-left: 15px;
    display: block;
    top: calc(50% - 20px);
    border-radius: 50%;
    transition: all 0.2s linear;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    z-index: 1;
}

.appointments-table .table-top a.moveDay.prev {
    transform: rotate(90deg);
    margin-right: 0;
    left: -56px;
}

@media (max-width: 768px) {
    .appointments-table .table-top a.moveDay.prev {
        left: -43px;
    }
}

.appointments-table .table-top a.moveDay.next {
    margin-left: 0;
    right: -15px;
}

@media (max-width: 1280px) {
    .appointments-table .table-top a.moveDay.next {
        right: -15px;
    }
}

@media (max-width: 768px) {
    .appointments-table .table-top a.moveDay.next {
        right: -23px;
    }
}

.appointments-table .table-top a.moveDay.urgent.prev {
    left: 10px;
}

.appointments-table .table-top a.moveDay.urgent.next {
    right: 10px;
}

.appointments-table .table-top .left, .appointments-table .table-top .details-side {
    text-align: left;
    padding-left: 90px;
    padding-top: 13px;
}

.appointments-table .table-top .left a, .appointments-table .table-top .details-side a {
    font-weight: normal;
    margin-right: 24px;
}

.appointments-table .table-top .date-display {
    font-size: 14px;
    color: #1F2023;
    background: #FAFBFC;
    border-radius: 2px;
    border: 1px solid #F0F2F7;
    height: 36px;
    display: inline-block;
    line-height: 36px;
}

.appointments-table h3 {
    font-size: 20px;
    color: #2C2E3D;
    display: inline-block;
    line-height: 36px;
}

.appointments-table span {
    display: inline-block;
}

.appointments-table div.day {
    width: 50%;
    float: left;
}

.appointments-table div.day > span {
    font-size: 20px;
    color: #2C2E3D;
    display: inline-block;
    line-height: 36px;
    line-height: 64px;
}

.appointments-table div.day.fifth {
    width: 20%;
    height: 100%;
    padding-top: 8px;
}

.appointments-table div.day.fifth span {
    line-height: 24px;
    font-size: 14px;
    display: block;
    text-align: center;
    width: 100%;
    text-transform: capitalize;
}

@media (max-width: 1280px) {
    .appointments-table div.day.fifth span:nth-child(1) {
        font-size: 11px;
    }
}

.appointments-table div.day.current {
    background: #E6EBF1;
}

.appointments-table div.day:first-child {
    border-color: #F0F2F7;
    border-style: solid;
    border-width: 0 1px 0 1px;
}

.appointments-table div.day h3 {
    line-height: 64px;
}

.appointments-table .table-content {
    box-shadow: 2px 4px 10px 0 rgba(0, 0, 0, 0.05);
    border-radius: 2px;
    border: 1px solid rgba(25, 26, 27, 0.1);
    float: left;
    width: 100%;
    margin-top: 15px;
}

.appointments-table .table-content h3.faded {
    font-size: 18px;
    opacity: 0.3;
    margin-bottom: 3px;
}

@media (max-width: 768px) {
    .appointments-table .table-content h3.faded {
        position: absolute;
        top: 52px;
        right: 20px;
    }
}

.appointments-table .table-content .badge {
    float: none;
}

@media (max-width: 768px) {
    .appointments-table .table-content .badge {
        margin-bottom: 10px;
    }
}

.appointments-table .table-content .left, .appointments-table .table-content .details-side {
    padding: 25px 15px 25px 25px;
}

.appointments-table .table-content .left span.doctor-criteria, .appointments-table .table-content .details-side span.doctor-criteria {
    width: 40px;
    height: 40px;
    position: relative;
    display: block;
    float: right;
    overflow: visible;
    background: #FAFBFC url(../assets/icon/ui/accepting.svg) no-repeat center/24px;
}

.appointments-table .table-content .left span.doctor-criteria.no-new-patients, .appointments-table .table-content .details-side span.doctor-criteria.no-new-patients {
    background: #FAFBFC url(../assets/icon/ui/not-accepting.svg) no-repeat center/24px;
}

.appointments-table .table-content .left span.doctor-criteria.no-new-patients .tooltip .not-accepting, .appointments-table .table-content .details-side span.doctor-criteria.no-new-patients .tooltip .not-accepting {
    display: block;
}

.appointments-table .table-content .left span.doctor-criteria.no-new-patients .tooltip .accepting, .appointments-table .table-content .details-side span.doctor-criteria.no-new-patients .tooltip .accepting {
    display: none;
}

.appointments-table .table-content .left span.doctor-criteria:hover .tooltip, .appointments-table .table-content .details-side span.doctor-criteria:hover .tooltip {
    opacity: 1;
    visibility: visible;
}

.appointments-table .table-content .left span.doctor-criteria .tooltip, .appointments-table .table-content .details-side span.doctor-criteria .tooltip {
    position: absolute;
    color: white;
    top: -40px;
    background: #2C2E3D;
    width: auto;
    opacity: 0;
    font-size: 14px;
    line-height: 32px;
    border-radius: 2px;
    transition: all 0.4s linear;
    -webkit-transition: all 0.4s linear;
    -moz-transition: all 0.4s linear;
    z-index: 10;
    text-align: center;
    margin-left: -80px;
    min-width: 200px;
    visibility: hidden;
}

.appointments-table .table-content .left span.doctor-criteria .tooltip .not-accepting, .appointments-table .table-content .details-side span.doctor-criteria .tooltip .not-accepting {
    display: none;
}

.appointments-table .table-content .left span.doctor-criteria .tooltip:after, .appointments-table .table-content .details-side span.doctor-criteria .tooltip:after {
    content: "";
    border-color: #2C2E3D transparent;
    border-style: solid;
    border-width: 10px 10px 0px 10px;
    height: 0px;
    width: 0px;
    bottom: -7px;
    position: absolute;
    left: calc(50% - 10px);
}

.appointments-table .table-content .left h2, .appointments-table .table-content .details-side h2 {
    margin-bottom: 8px;
}

.appointments-table .table-content .right, .appointments-table .table-content .slots-side {
    padding: 25px 0 25px 0;
    min-height: 285px;
}

.appointments-table .table-content .right .slots-container, .appointments-table .table-content .slots-side .slots-container {
    position: relative;
}

.appointments-table .table-content .right .overlay .loginPopup, .appointments-table .table-content .slots-side .overlay .loginPopup {
    top: calc(50% - 125px);
}

@media (max-width: 1400px) {
    .appointments-table .table-content .right, .appointments-table .table-content .slots-side {
        padding: 15px;
    }
}

.appointments-table .table-content .right.slots-side, .appointments-table .table-content .slots-side.slots-side {
    overflow: hidden;
    padding-bottom: 20px;
}

@media (max-width: 440px) {
    .appointments-table .table-content .right.slots-side .loginPopup, .appointments-table .table-content .slots-side.slots-side .loginPopup {
        width: 280px;
        left: calc(50% - 140px);
    }

    .appointments-table .table-content .right.slots-side .loginPopup h3, .appointments-table .table-content .slots-side.slots-side .loginPopup h3 {
        font-size: 14px;
    }
}

.appointments-table .table-content .right.slots-side.full, .appointments-table .table-content .slots-side.slots-side.full {
    text-align: center;
    position: relative;
    min-height: 290px;
    max-height: 290px;
    overflow: hidden;
    height: auto;
    transition: all 0.4s linear;
    -webkit-transition: all 0.4s linear;
    -moz-transition: all 0.4s linear;
}

.appointments-table .table-content .right.slots-side.full.urgent-page .slots-container, .appointments-table .table-content .slots-side.slots-side.full.urgent-page .slots-container {
    width: 100%;
}

.appointments-table .table-content .right.slots-side.full.urgent-page .slots-container .slots.slots-container, .appointments-table .table-content .slots-side.slots-side.full.urgent-page .slots-container .slots.slots-container {
    width: 100%;
}

.appointments-table .table-content .right.slots-side.full.urgent-page .slots-container .slots.slots-container .slot.more, .appointments-table .table-content .slots-side.slots-side.full.urgent-page .slots-container .slots.slots-container .slot.more {
    left: 0;
    cursor: pointer;
}

.appointments-table .table-content .right.slots-side.full.urgent-page.slots-side, .appointments-table .table-content .slots-side.slots-side.full.urgent-page.slots-side {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 0;
    padding-right: 0;
}

.appointments-table .table-content .right.slots-side.full.urgent-page .urgent-availabilities-form, .appointments-table .table-content .slots-side.slots-side.full.urgent-page .urgent-availabilities-form {
    width: 50%;
}

.appointments-table .table-content .right.slots-side.full .no-availabilities, .appointments-table .table-content .slots-side.slots-side.full .no-availabilities {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    white-space: nowrap;
}

.appointments-table .table-content .right.slots-side.full .slots, .appointments-table .table-content .slots-side.slots-side.full .slots {
    width: 100%;
    overflow: hidden;
    position: relative;
    max-height: 290px;
    min-height: 210px;
}

.appointments-table .table-content .right.slots-side.full .slots .loginPopup, .appointments-table .table-content .slots-side.slots-side.full .slots .loginPopup {
    top: calc(50% - 100px);
}

.appointments-table .table-content .right.slots-side.full .slots .slot, .appointments-table .table-content .slots-side.slots-side.full .slots .slot {
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
}

.appointments-table .table-content .right.slots-side.full .slots .more, .appointments-table .table-content .slots-side.slots-side.full .slots .more {
    width: 100%;
    position: absolute;
    top: 220px;
}

.appointments-table .table-content .slots {
    width: 50%;
    transition: all 0.4s linear;
    -webkit-transition: all 0.4s linear;
    -moz-transition: all 0.4s linear;
}

.appointments-table .table-content .slots .slots {
    width: 100%;
}

.appointments-table .table-content .slots.empty .slot.more {
    display: none;
}

.appointments-table .table-content .slots.fifth {
    width: 20%;
    text-align: center;
    min-height: 180px;
    max-height: 285px;
    height: auto;
    padding-bottom: 18px;
    float: left;
}

.appointments-table .table-content .slots.fifth .slot {
    margin-left: 0;
    width: 93%;
    display: inline-block;
    float: none;
    cursor: pointer;
    border-radius: 2px;
}

.appointments-table .table-content .slots.current {
    position: relative;
}

.appointments-table .table-content .slots.current:before {
    content: "";
    width: 100%;
    height: 1000vh;
    background: rgba(31, 32, 35, 0.05);
    position: absolute;
    top: -50px;
    opacity: 0.2;
    left: 0;
}

.appointments-table .table-content .slots.current .slot {
    background: white;
}

.appointments-table .table-content .slots .slot {
    float: left;
    position: relative;
    margin-left: 8px;
    width: 22%;
    text-align: center;
    border: 1px solid #F0F2F7;
    border-radius: 2px;
    height: 36px;
    line-height: 36px;
    line-height: 36px;
    font-size: 14px;
    color: #1F2023;
    margin-bottom: 8px;
    z-index: 1;
    background-color: #FAFBFC;
    transition: all 0.1s linear;
    -webkit-transition: all 0.1s linear;
    -moz-transition: all 0.1s linear;
}

.appointments-table .table-content .slots .slot:hover {
    color: white;
    background: #9C99FA;
}

.appointments-table .table-content .slots .slot.more {
    width: 98%;
    margin: 0 auto;
    position: absolute;
    bottom: 8px;
    z-index: 1;
}

.appointments-table .table-content .clinic-location {
    margin-top: 10px;
}

@media (max-width: 768px) {
    .appointments-table .table-content .clinic-location {
        margin-top: 0;
    }
}

.appointments-table .table-content.expanded .slots-side.full {
    max-height: 4000px;
}

.appointments-table .table-content.expanded .slots-side.full .slots {
    max-height: initial;
    padding-bottom: 45px;
    max-height: 4000px;
}

.appointments-table .table-content.expanded .slots-side.full .slots .more {
    top: calc(100% - 45px);
}

.appointments-table .table-content.expanded .slots-side .slots {
    max-height: 4000px;
}

.appointments-table.urgent-table .table-top .half .day span:nth-child(odd):after {
    content: ",";
}

.appointments-table.urgent-table .table-top .half .day span:nth-child(even) {
    margin-left: 10px;
    opacity: 1;
}

#content #special-wrap #search-results .appointments-table .slots-side {
    display: flex;
}

#content #special-wrap {
    background: white;
}

#content #special-wrap .appointments-table .table-top {
    border-top: 1px solid rgba(25, 26, 27, 0.1);
    margin-bottom: 24px;
}

@media (max-width: 768px) {
    #content #special-wrap .appointments-table .table-top .details-side {
        display: none;
    }
}

@media (max-width: 768px) {
    #content #special-wrap .appointments-table form.consultations-availabilities-form, #content #special-wrap .appointments-table form.specialty-availabilities-form {
        margin-bottom: 0;
    }
}

#content #special-wrap .appointments-table .details-side {
    width: 45%;
    margin-right: 0;
}

@media (max-width: 768px) {
    #content #special-wrap .appointments-table .details-side {
        width: 100%;
        padding: 15px;
    }
}

#content #special-wrap .appointments-table .slots-side {
    width: 55%;
}

@media (max-width: 768px) {
    #content #special-wrap .appointments-table .slots-side {
        width: 100%;
    }
}

#content #special-wrap .appointments-table .table-content {
    position: relative;
}

@media (max-width: 414px) {
    #content #special-wrap .appointments-table .table-content.expanded .slots-side.cropped {
        padding-bottom: 40px;
    }
}

@media (max-width: 768px) {
    #content #special-wrap .appointments-table .table-content {
        margin-top: 15px;
    }
}

#content #special-wrap .appointments-table .table-content .half.cropped {
    padding: 25px 2% 23px 0%;
}

@media (max-width: 768px) {
    #content #special-wrap .appointments-table .table-content .half.cropped {
        padding: 10px 5px 23px 5px;
    }
}

@media (max-width: 414px) {
    #content #special-wrap .appointments-table .table-content .half.cropped {
        padding: 10px 5px 20px 5px;
    }

    #content #special-wrap .appointments-table .table-content .half.cropped .slot.more {
        bottom: 5px;
        width: calc(100% - 10px);
        left: 5px;
    }
}

#content #special-wrap .appointments-table .table-content .open-hours {
    width: 45%;
    position: absolute;
    left: 0;
    bottom: 0;
}

#content #special-wrap .box.gray {
    margin-bottom: 15px;
    margin-top: 30px;
    float: left;
    position: relative;
}

#content #special-wrap .box.gray .label {
    float: right;
    font-size: 16px;
    line-height: 24px;
    color: #1F2023;
    opacity: 0.6;
    margin-top: 16px;
}

@media (max-width: 700px) {
    #content #special-wrap .box.gray .label {
        font-size: 16px;
        line-height: 24px;
        color: #1F2023;
        opacity: 0.6;
        margin-top: 24px;
        display: block;
        overflow: hidden;
        clear: both;
        float: left;
        width: 100%;
    }
}

#content #special-wrap .box.gray .button.white {
    height: 56px;
    line-height: 56px;
    font-size: 18px;
    padding: 0 32px;
}

@media (max-width: 700px) {
    #content #special-wrap .box.gray .button.white {
        overflow: hidden;
        float: none;
        margin-bottom: 16px;
    }
}

#content #special-wrap .right.map-wrapper.float {
    position: fixed;
    height: 100vh;
    top: 0;
}

.centered-vertically {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    flex-direction: column;
}

.centered-vertically p {
    font-size: 16px;
    opacity: 0.6;
    margin-bottom: 20px;
    font-weight: 300;
}

.centered-vertically a {
    line-height: 44px;
    height: 44px;
    font-size: 16px;
    border: 1px solid #F0F2F7;
    border-radius: 2px;
    background-color: #FAFBFC;
    padding: 0 16px;
    font-weight: 400;
}

.centered-vertically a.nextAvailability {
    padding-right: 30px;
    background-image: url(../assets/icon/arrow-right.svg);
    background-position: center right 5px;
}

.clinic-location {
    font-size: 14px;
    color: #2C2E3D;
    line-height: 20px;
    padding-left: 28px;
    background: url(../assets/icon/ui/pin-icon-placeholder.png) no-repeat top left;
}

.half {
    width: 49%;
    margin-right: 2%;
    float: left;
}

.half.cropped {
    position: relative;
}

.half:nth-child(2n+2) {
    margin-right: 0;
}

.half.box {
    border: 1px solid rgba(25, 26, 27, 0.1);
    border-radius: 2px;
    box-shadow: 2px 4px 10px 0 rgba(0, 0, 0, 0.05);
    padding: 24px;
}

.half.box.nametag {
    padding: 17px 17px 17px 97px;
    position: relative;
    margin-top: 15px;
}

.half.box .initials {
    width: 64px;
    height: 64px;
    display: block;
    position: absolute;
    left: 17px;
    top: 17px;
    background: #E6E6FF;
    color: #9C99FA;
    line-height: 64px;
    text-align: center;
    font-size: 20px;
}

.half.box .specialty {
    background: #E6E6FF;
    color: #9C99FA;
    font-size: 14px;
    line-height: 24px;
    padding: 0 8px;
    display: inline-block;
    margin-top: 10px;
}

.half.box .button {
    margin-top: 16px;
}

.half.box h4 {
    font-size: 20px;
    line-height: 28px;
    color: #2C2E3D;
    font-weight: 400;
}

.half.box p {
    color: #2C2E3D;
    opacity: 0.6;
    font-size: 14px;
    margin-top: 8px;
}

.box.gray {
    background: #E6EBF1;
    width: 100%;
    display: block;
    padding: 28px 32px 28px 32px;
    color: #1F2023;
    border-radius: 2px;
    overflow: hidden;
}

.box.gray h2 {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 16px;
    width: 70%;
    float: left;
}

@media (max-width: 700px) {
    .box.gray h2 {
        width: 100%;
        font-size: 14px;
        margin-bottom: 8px;
    }
}

.box.gray p {
    font-size: 16px;
    line-height: 24px;
    width: 70%;
    clear: both;
}

@media (max-width: 700px) {
    .box.gray p {
        width: 100%;
    }
}

.box.gray .button {
    float: right;
}

.box.gray span.label {
    float: right;
    opacity: 0.6;
    margin-top: 16px;
}

.badge {
    padding: 2px 8px;
    font-size: 14px;
    line-height: 24px;
    background: #FFE6E7;
    color: #AB3E43;
    border-radius: 0;
    margin-top: 8px;
}

.badge.specialist {
    color: #335980;
    background: #E1EDFA;
}

.modal {
    position: fixed;
    background: rgba(0, 0, 0, 0.3);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
    display: none;
}

.modal .modal-body {
    width: 480px;
    position: fixed;
    display: block;
    overflow: hidden;
    top: calc(50% - 140px);
    left: calc(50% - 240px);
    border: 1px solid #DFE1E5;
    border-radius: 2px;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.08);
    background: white;
    padding: 20px 25px 11px;
}

.modal .modal-body h3 {
    font-size: 16px;
    list-style-position: 24px;
    color: #1F2023;
    margin-bottom: 36px;
}

.modal .modal-body p {
    font-size: 16px;
    line-height: 28px;
    color: #1F2023;
    margin-bottom: 26px;
}

.modal .modal-body .buttons {
    float: right;
}

.modal .modal-body .buttons > a, .modal .modal-body .buttons > form {
    float: left;
}

body #page {
    overflow: hidden;
    position: relative;
}

body #page .message.message {
    padding: 16px 20px;
    font-size: 16px;
    line-height: 24px;
    background: #DCF5EF;
    border-radius: 2px;
    margin-bottom: 48px;
    position: relative;
    height: 58px;
    float: left;
    width: 100%;
}

body #page .message.message.success {
    color: #146657;
}

body #page .message.message.success a {
    color: #146657;
    margin-left: 15px;
}

body #page .message.message.success a.close {
    position: absolute;
    font-size: 0;
    width: 12px;
    height: 12px;
    right: 22px;
    top: 22px;
    background: url("../assets/icon/ui/close-green.svg") no-repeat center center/contain;
}

body #page .message.message.error {
    color: #AB3E43;
    background: #FFE6E7 !important;
}

.conditionBox span {
    transition: 0.2s ease-in-out;
    -webkit-transition: 0.2s ease-in-out;
    -moz-transition: 0.2s ease-in-out;
}

.conditionBox span.condition {
    color: #fe5b64;
    font-size: 14px;
    line-height: 24px;
    display: block;
    font-weight: 200;
    padding-left: 32px;
    background: url("../assets/icon/ui/cancel.svg") no-repeat center left 5px/12px;
}

@media (max-width: 414px) {
    .conditionBox span.condition {
        font-size: 12px;
    }
}

.conditionBox span.condition.strength {
    color: orange;
}

.conditionBox.uppercase .condition.uppercase {
    color: #9C99FA;
    background: url(../assets/icon/ui/checked_violet.svg) no-repeat center left 0/22px;
}

.conditionBox.length .condition.length {
    color: #9C99FA;
    background: url(../assets/icon/ui/checked_violet.svg) no-repeat center left 0/22px;
}

.conditionBox.lowercase .condition.lowercase {
    color: #9C99FA;
    background: url(../assets/icon/ui/checked_violet.svg) no-repeat center left 0/22px;
}

.conditionBox.digit .condition.digit {
    color: #9C99FA;
    background: url(../assets/icon/ui/checked_violet.svg) no-repeat center left 0/22px;
}

.conditionBox.sepcial .condition.sepcial {
    color: #9C99FA;
    background: url(../assets/icon/ui/checked_violet.svg) no-repeat center left 0/22px;
}

.validationPassed {
    color: #9C99FA!important;
    background: url(../assets/icon/ui/checked_violet.svg) no-repeat center left 0/22px!important;
}

.conditionBox.Medium .condition.strength {
    background: url(../assets/icon/ui/checked_violet.svg) no-repeat center left 0/22px;
    color: #9C99FA;
}

.conditionBox.Medium.Strong .condition.strength {
    color: #9C99FA;
}

.filter-checkbox input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    position: absolute;
}

.filter-checkbox input[type="checkbox"]:checked + label {
    border-color: #9C99FA;
    color: #9C99FA;
    animation-name: click;
    animation-duration: 100ms;
    animation-iteration-count: 1;
    animation-timing-function: ease-in;
}

.filter-checkbox label {
    display: block;
    color: #1F2023;
    border: 1px solid rgba(25, 26, 27, 0.1);
    background-color: white;
    font-size: 16px;
    line-height: 16px;
    text-align: center;
    padding: 11px 23px;
    border-radius: 2px;
    cursor: pointer;
}

#content #special-wrap .left #search-results .result:nth-child(2n+2) {
    margin-right: 2%;
}

#content #special-wrap .left #search-results .result.no-margin {
    margin-right: 0;
}

#content #special-wrap .right #map .gm-style div > div:last-child > div > div:first-child > div:first-child.gm-style-iw.gm-style-iw-c.gm-style-iw.gm-style-iw-c {
    background: white !important;
}

.day-switcher.urgent {
    position: relative;
    width: 55%;
    float: right;
    height: 100%;
}

.day-switcher.urgent p {
    font-size: 20px;
    line-height: 62px;
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    cursor: pointer;
    left: 0;
    background: rgba(255, 255, 255, 0.5);
    z-index: 3;
}

.overlay .loginPopup {
    position: absolute;
    background: white;
    overflow: hidden;
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    background: white;
    top: calc(50% - 90px);
    border: 1px solid #DFE1E5;
    padding: 25px;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.08);
    text-align: left;
}

@media (max-width: 1299px) {
    .overlay .loginPopup {
        padding: 20px;
    }
}

@media (max-width: 700px) {
    .overlay .loginPopup {
        padding: 16px;
        width: 260px;
        left: calc(50% - 130px);
        display: block;
        background: white;
        top: calc(50% - 100px);
    }
}

.overlay .loginPopup h3 {
    font-size: 16px;
    color: #1F2023;
    margin-bottom: 8px;
}

.overlay .loginPopup p {
    font-size: 14px;
    line-height: 20px;
    color: #9DA1A6;
}

.overlay .loginPopup .buttons {
    margin-top: 15px;
}

.overlay .loginPopup .buttons p {
    line-height: 44px;
    color: #1F2023;
}

@media (max-width: 700px) {
    .overlay .loginPopup .buttons p {
        clear: both;
    }
}

.overlay .loginPopup .buttons p > .link {
    display: inline;
}

.float-right {
    float: right;
}

.actionsPopup {
    padding: 25px;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.08);
    float: left;
    margin-left: 100px;
    background: white;
    border: 1px solid #DFE1E5;
    overflow: hidden;
}

.actionsPopup form {
    margin-bottom: 0;
    margin-top: 0;
}

.actionsPopup form input {
    width: 100%;
    margin-top: 0;
}

.actionsPopup h3 {
    font-size: 24px;
    margin-bottom: 16px;
}

.no-availabilities {
    height: 90px;
    top: calc(50% - 45px);
    border: 1px solid #fe5b64;
    padding: 0 15px;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.08);
    -webkit-box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.08);
    -moz-box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.08);
    background: white;
    display: inline-block;
    color: #fe5b64;
    font-size: 18px;
    line-height: 90px;
    margin: 20px;
}

.lessButton {
    height: 36px;
    width: 100%;
    display: block;
    float: left;
    border: 1px solid #F0F2F7;
    border-radius: 2px;
    margin-right: 2%;
    background-color: #FAFBFC;
    margin-bottom: 8px;
    text-align: center;
    line-height: 36px;
    cursor: pointer;
    color: #1F2023;
    position: relative;
    visibility: hidden;
}

.lessButton:hover {
    color: white;
    background: #9C99FA;
}

.slot.more {
    height: 36px;
    width: 18.2%;
    display: block;
    float: left;
    border: 1px solid #F0F2F7;
    border-radius: 2px;
    margin-right: 2%;
    background-color: #FAFBFC;
    margin-bottom: 8px;
    text-align: center;
    line-height: 36px;
    cursor: pointer;
    color: #1F2023;
    position: relative;
}

.slot.more:hover {
    color: white;
    background: #9C99FA;
}

.slot.more.more {
    width: 98%;
    margin: 0 auto;
    position: absolute;
    bottom: 8px;
    z-index: 1;
}
