
.burger-nav {
    position: fixed;
    inset: 10px;
    z-index: 210;
    box-shadow: 0 0 30px 0 rgba(42, 48, 71, 0.1);
    background: var(--grey);
    border-radius: 29px 29px 32px 32px
}

@media (max-width: 760px) {
    .burger-nav {
        inset: 4px
    }
}

.burger-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 16px 101px;
    overflow: auto;
    text-align: center;
    --c-link: var(--dark-10);
    color: var(--dark-10);
    clip-path: circle(0% at calc(100vw - 52px) 30px)
}

@media (max-width: 760px) {
    .burger-nav {
        clip-path: circle(0 at calc(100vw - 40px) 30px)
    }
}

.burger-nav {
    transition: clip-path .5s linear(0, .012 .9%, .05 2%, .411 9.2%, .517 11.8%, .611 14.6%, .694 17.7%, .765 21.1%, .824 24.8%, .872 28.9%, .91 33.4%, .939 38.4%, .977 50.9%, .994 68.4%, 1);
    display: none
}

.burger-nav._visible {
    display: flex
}

.burger-nav._show {
    clip-path: circle(150% at calc(100vw - 52px) 30px);
    transition-duration: 1s
}

@media (max-width: 760px) {
    .burger-nav._show {
        clip-path: circle(150% at calc(100vw - 40px) 30px)
    }
}

.burger-nav__header {
    width: 100%;
    height: 60px;
    margin-bottom: 31px;
    padding: 12px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    position: sticky;
    top: 0
}

.burger-nav__header-logo {
    flex: 0 0 133px
}

.burger-nav__header-logo img {
    display: block;
    width: 100%;
    height: auto
}

.burger-nav__header-close {
    width: 32px;
    height: 32px
}

.burger-nav__header-close svg {
    display: block
}

.burger-nav__header-close {
    -webkit-tap-highlight-color: transparent
}

.burger-nav__nav {
    flex: 1 1 auto;
    margin-bottom: 31px;
    font-size: 26px;
    line-height: 32px;
    font-weight: 600
}

.burger-nav__nav ul {
    /*max-height: 288px;*/
    height: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 10px
}

.burger-nav__nav ul li {
    margin: 0;
    padding: 0
}

.burger-nav__nav ul li a {
    color: var(--dark-10)
}

.burger-nav__contacts {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px
}

.burger-nav__contacts-socials {
    display: flex;
    gap: 8px
}

.burger-nav__contacts-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 64px;
    color: var(--dark-100);
    background: var(--dark-10)
}

.burger-nav__contacts-socials a svg {
    display: block;
    width: 20px;
    height: 20px
}

.burger-nav__contacts-socials a:hover {
    background: var(--color-100);
    color: var(--dark-10)
}

.burger-nav__contacts-schedule-label {
    margin-bottom: 8px;
    color: var(--dark-50)
}

.burger-nav__contacts-schedule-time {
    font-size: 20px;
    line-height: 32px;
    font-weight: 600;
    color: var(--dark-10)
}

.burger-nav__contacts-address {
    display: flex;
}

.burger-nav__contacts-address svg {
    display: block;
    flex-shrink: 0
}

.mobile-nav {
    position: fixed;
    right: 10px;
    bottom: 10px;
    left: 10px;
    z-index: 12;
    transition: all .2s
}

body:has(.error-page, .doctor-detail) .mobile-nav {
    display: none !important
}

body:has(.burger-nav._show) .mobile-nav {
    right: 18px;
    bottom: 18px;
    left: 18px;
    transition: all .2s .1s
}

@media (max-width: 760px) {
    .mobile-nav {
        right: 6px;
        bottom: 6px;
        left: 6px
    }
    body:has(.burger-nav._show) .mobile-nav {
        right: 11px;
        bottom: 12px;
        left: 11px
    }
}

.mobile-nav {
    height: 62px;
    padding: 10px 8px;
    display: flex;
    align-items: stretch;
    gap: 12px;
    background: var(--dark-80);
    border-radius: 60px;
    --c-link-hover: var(--dark-10);
    display: none
}
.burger-nav__contacts-phone-time{
    font-weight: 600;
    font-size: 26px;
    line-height: 130%;
    text-align: center;
    color: var(--white);
}
@media (max-width: 1024px) {
    .mobile-nav {
        display: flex
    }
}

.mobile-nav__item {
    all: unset;
    display: block;
    box-sizing: border-box;
    flex: 1 1 25%;
    font-size: 14px;
    line-height: 18px;
    color: var(--dark-10);
    text-align: center
}

.mobile-nav__item-icon {
    display: block
}

.mobile-nav__item-icon svg {
    display: block;
    margin: 0 auto
}