@charset "UTF-8";

/* ==========================================================================
   Header Phone & Contact Button Styles
   ========================================================================== */

/* Common Tel Nav styling */
.telnav {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 10px;
    color: #e50141;
    line-height: 1.1;
    text-align: left;
    background-color: #fff;
    border-radius: 10px;
    height: 44px;
    width: auto;
    min-width: 190px;
}

.telnav-icon {
    width: 28px;
    flex-shrink: 0;
}

.telnav-icon svg,
.telnav-icon img {
    width: 100%;
    height: auto;
    display: block;
}

.telnav-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.telnav-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.01em;
    white-space: nowrap;
}

.telnav-hours {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.01em;
    white-space: nowrap;
}

/* Adjustments for fixed header / PC Navigation */
#medicalf-header .telnav {
    margin-top: 0;
    display: inline-flex;
    vertical-align: middle;
}

#medicalf-header .toptel {
    padding: 0 5px;
    margin-right: 0px !important;
    margin-left: 0px !important;
    margin-top: -14px;
    width: auto;
}

#medicalf-header .toptel a {
    display: flex;
    align-items: center;
    height: 100%;
    padding-right: 0 !important;
}

/* Contact Button styling */
.contactnav {
    width: 161px;
    height: 44px;
    background-color: #000;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -ms-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.contactnav:hover {
    background-color: #333;
}

.contactnav-icon {
    width: 24px;
    flex-shrink: 0;
}

.contactnav-icon img {
    width: 100%;
    height: auto;
    display: block;
}

.contactnav-text {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.05em;
}

/* Media Queries for Tablet/Small PC */
@media screen and (max-width: 1200px) {
    .telnav {
        min-width: 170px;
        gap: 6px;
        padding: 0 8px;
    }

    .telnav-number {
        font-size: 19px;
    }

    .telnav-hours {
        font-size: 9px;
    }

    .telnav-icon {
        width: 28px;
    }
}

/* Drawer / Mobile Menu specific adjustments */
.drw__inner .telnav {
    justify-content: center;
    margin: 0 auto;
    max-width: 260px;
    color: #e50141;
    background-color: #fff;
}

.drw__inner .contactnav {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

/* Mobile adjustments */
@media screen and (max-width: 768px) {
    .pure-toggle-label {
        top: 20px !important;
    }
}