.dk-header {
    height: 108px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    flex-direction: row;
    background-color: #ffffff;
    gap: 28px;
    max-width: 1480px;
    margin: 0 auto;
}

.dk-header-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    padding: 13px 20px 19px;
}

.dk-header-logo {
    width: 87px;
    height: 100%;
    padding: 13px 0;
    margin: 0 20px;
}

.dk-header-logo img {
    position: relative;
    bottom: 6px;
    max-width: inherit;
}

.dk-header-menu {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 36px;
}

.dk-header-menu__item {
    color: rgba(0, 0, 0, 0.5);
    transition: color 300ms ease;
}

.dk-header-menu__link {
    cursor: pointer;
    font-family: Nekst, sans-serif!important;
    font-style: normal;
    font-weight: 500;
    font-size: 21px;
    line-height: 26px;
    text-transform: lowercase;
    white-space: nowrap;
}

.dk-header-menu__link--right {
    font-size: 18px;
    line-height: 20px;
    margin-top: 1px;
}



.dk-header-menu__dropdown {
    opacity: 0;
    position: absolute;
    left: 0;
    top: 42px;
    width: 100%;
    display: none;
    justify-content: flex-start;
    align-items: center;
}

.dk-header-menu__item.dk-header-menu--active {
    color: rgba(0, 0, 0, 1) !important;
}

.dk-header-menu--active .dk-header-menu__dropdown {
    opacity: 1;
    display: flex;
}

.dk-header-dropdown-content {

}

.dk-header-dropdown {
    display: flex;
    /*white-space: nowrap;*/
    gap: 32px;
    align-items: flex-end;
}

.dk-header-dropdown__link {
    font-family: Gilroy, sans-serif!important;
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 20px;
    text-transform: lowercase;
    color: rgba(0,0,0,1);
    white-space: nowrap;
    transition: color 300ms ease;
}

.dk-header-dropdown__link:hover {
    color: rgba(0,0,0,0.4);
}

.dk-header-dropdown__link:active {
    color: rgba(0,0,0,0.8);
}

.dk-header-divider {
    border: 1px solid #000;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom: none;
    height: 11px;
    margin-bottom: 4px;
}


.dk-header-contacts-container {
    display: flex;
    gap: 36px;
}

.dk-header-contacts-container .dk-header-menu__dropdown {
    gap: 20px;
    justify-content: flex-end;
    padding-right: 20px;
    top: 55px;
}

.dk-header-dropdown__link--secondary {
    font-family: Gilroy, sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 15px;
    color: #000000;
    opacity: 0.6;
}

.dk-header-mobile-contacts {
    display: none;
    height: 100%;
    position: relative;
    top: -16px;
    right: -20px;
}

.dk-header-mobile-contacts_burger {
    height: 55px;
    width: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 1;
    transition: opacity 300ms ease;
}

.dk-header-mobile-contacts_burger:hover {
    opacity: 0.6;
}

.dk-header-mobile-contacts_burger:active {
    opacity: 0.8;
}

.dk-header-mobile-popup {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    left: auto;
    bottom: auto;
    background: #EBEBEB;
    width: 300px;
    min-height: 100vh;
    z-index: 1000000;
    padding: 16px;
    gap: 20px;
    padding-top: 54px;
    transition: all 300ms ease;
    white-space: nowrap;
}

.dk-header-mobile-popup_background {
    opacity: 0;
    display: none;
    z-index: 999999;
    background: rgba(141, 141, 141, 0.3);
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    transition: all 300ms ease;
}

.dk-header-mobile-popup_close {
    cursor: pointer;
    display: flex;
    width: 56px;
    height: 54px;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 0;
    top: 0;
    left: auto;
    bottom: auto;
    opacity: 1;
    transition: opacity 300ms ease;
}


.dk-header-mobile-popup_close:hover {
    opacity: 0.6;
}

.dk-header-mobile-popup_close:active {
    opacity: 0.8;
}

.dk-header-mobile-popup_block {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.dk-header-mobile-popup_block:last-child {
    padding-bottom: 60px;
}

.dk-header-mobile-popup_link {
    cursor: pointer!important;
    font-family: Gilroy, sans-serif!important;
    font-style: normal!important;
    font-weight: 500!important;
    font-size: 17px!important;
    line-height: 20px!important;
    text-transform: lowercase!important;
    color: #000000!important;
    white-space: nowrap!important;

}

.dk-header-contacts a.dk-header-phone {
    font-family: Nekst, sans-serif!important;
}

.dk-header-mobile-popup_block a.dk-header-mobile-popup_phone {
    font-family: Nekst, sans-serif!important;
    font-weight: 500!important;
}

.dk-header-mobile-popup_block p.dk-header-mobile--title {
    font-family: Nekst, sans-serif!important;
}

.dk-header-mobile-popup_phone {
    cursor: pointer!important;
    font-family: Nekst, sans-serif!important;
    font-style: normal!important;
    font-weight: 400!important;
    font-size: 21px!important;
    line-height: 26px!important;
    text-transform: lowercase!important;
    color: #000000!important;
    white-space: nowrap!important;
}

.dk-header-mobile-popup_timezone {
    cursor: pointer!important;
    font-family: Gilroy, sans-serif!important;
    font-style: normal!important;
    font-weight: 400!important;
    font-size: 13px!important;
    line-height: 15px!important;
    color: rgba(0,0,0,0.6)!important;
    white-space: nowrap!important;

}

@media (max-width: 1150px) {
    .dk-header-contacts-container {
        display: none;
    }

    .dk-header-mobile-contacts {
        display: flex;
    }
}


.dk-animate-popup {
    animation-duration: 0.3s;
    -webkit-animation-duration: 0.3s;
    animation-fill-mode: both;
    -webkit-animation-fill-mode: both;
    -webkit-animation-name: slideIn;
    animation-name: slideIn;
}

.dk-animate-popup-out {
    animation-duration: 0.3s;
    -webkit-animation-duration: 0.3s;
    animation-fill-mode: both;
    -webkit-animation-fill-mode: both;
    -webkit-animation-name: slideOut;
    animation-name: slideOut;
}

.dk-m-animate-popup {
    animation-duration: 0.4s;
    -webkit-animation-duration: 0.4s;
    animation-fill-mode: both;
    -webkit-animation-fill-mode: both;
    -webkit-animation-name: slideMobileIn;
    animation-name: slideMobileIn;
}

.dk-m-animate-popup-out {
    animation-duration: 0.4s;
    -webkit-animation-duration: 0.4s;
    animation-fill-mode: both;
    -webkit-animation-fill-mode: both;
    -webkit-animation-name: slideMobileOut;
    animation-name: slideMobileOut;
}

.dk-animate-background {
    animation-duration: 0.3s;
    -webkit-animation-duration: 0.3s;
    animation-fill-mode: both;
    -webkit-animation-fill-mode: both;
    -webkit-animation-name: animBackground;
    animation-name: animBackground;
}

.dk-animate-background-out {
    animation-duration: 0.3s;
    -webkit-animation-duration: 0.3s;
    animation-fill-mode: both;
    -webkit-animation-fill-mode: both;
    -webkit-animation-name: animBackgroundOut;
    animation-name: animBackgroundOut;
}

.dk-header-phone {
    color: rgba(0, 0, 0, 1) !important;
    font-size: 19px;
    line-height: 24px;
    margin-bottom: 17px;
}


@keyframes animBackground {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }

    0% {
        opacity: 0;
    }
}

@-webkit-keyframes animBackground {
    0% {
        -webkit-opacity: 0;
    }

    100% {
        -webkit-opacity: 1;
    }

    0% {
        -webkit-opacity: 0;
    }
}

@keyframes animBackgroundOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }

    0% {
        opacity: 1;
    }
}

@-webkit-keyframes animBackgroundOut {
    0% {
        -webkit-opacity: 1;
    }

    100% {
        -webkit-opacity: 0;
    }

    0% {
        -webkit-opacity: 1;
    }
}


@keyframes slideIn {
    0% {
        transform: translateX(320px);
    }

    100% {
        transform: translateY(0);
    }

    0% {
        transform: translateX(320px);
    }
}

@-webkit-keyframes slideIn {
    0% {
        -webkit-transform: translateX(320px);
    }

    100% {
        -webkit-transform: translateX(0);
    }

    0% {
        -webkit-transform: translateX(320px);
    }
}


@keyframes slideOut {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(320px);
    }

    0% {
        transform: translateX(0);
    }
}

@-webkit-keyframes slideOut {
    0% {
        -webkit-transform: translateX(0);
    }

    100% {
        -webkit-transform: translateX(320px);
    }

    0% {
        -webkit-transform: translateX(0);
    }
}


/*
MOBILE
*/

@media (max-width: 1023px) {
    .dk-catalog .wrapper {
        padding-top: 54px!important;
    }


    .dk-m-header-container {
        background-color: white;
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 54px;
        padding: 0;
    }

    .dk-m-header-container .dk-logo {
        display: block;
        height: 54px;
        padding: 6px 16px;
    }

    .dk-m-header-container .menu-opener {
        height: 54px;
        width: 54px;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }


    #dk-m-burger-menu {
        display: none;
        width: calc(100% - 54px);
        overflow-y: scroll;
        overscroll-behavior: none;
        z-index: 1000000;
        flex-direction: column;
        padding-top: 54px;
        padding-bottom: 120px;
        position: fixed;
        background: #EBEBEB;
        min-height: 100vh;
        height: 100%;
        max-width: 586px;
        right: 0;
        top: 0;
        bottom: auto;
        left: auto;
        gap: 0px;
        padding-left: 16px;
        padding-right: 16px;
    }

    .dk-header-mobile-popup_block {
        margin-bottom: 36px;
    }

    .dk-header-mobile-popup_block:last-child {
        margin-bottom: 0px;
    }

    .dk-m-header-btn--close {
        height: 54px;
        width: 56px;
        position: absolute;
        left: auto;
        top: 0;
        right: 0;
        bottom: auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .dk-header-mobile--title {
        font-family: Nekst, sans-serif!important;
        font-style: normal!important;
        font-weight: 500!important;
        font-size: 21px!important;
        line-height: 26px!important;
        text-transform: lowercase!important;
        color: rgba(0, 0, 0, 0.35) !important;
        margin-bottom: 6px!important;
    }

    .dk-header-mobile-divider {
        border: 1px solid #000;
        border-left: none;
        border-bottom-right-radius: 11px;
        border-top: none;
        height: 11px;
        width: 100%;
        margin-bottom: 36px;
    }
}

.dk-header__bottom {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-top: 36px;
}

@media (max-width: 1020px) {
    .dk-header__bottom {
        justify-content: space-between;
    }
}

.dk-header__logo {
    min-width: 68px;
    display: flex;
    align-items: center;
}

.dk-header__logo img {
    object-fit: contain;
    max-height: 38px;
}

.dk-header__links {
    color: #000;
    text-align: right;
    font-family: Gilroy, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 17.08px;
    opacity: 0.5;
    transition: opacity 300ms ease;
    white-space: nowrap;
}

.dk-header__links:hover {
    opacity: 1;
}

@media (max-width: 374px) {
    #dk-m-burger-menu {
        width: 100%;
    }
}


@keyframes slideMobileIn {
    0% {
        transform: translateX(586px);
    }

    100% {
        transform: translateY(0);
    }

    0% {
        transform: translateX(586px);
    }
}

@-webkit-keyframes slideMobileIn {
    0% {
        -webkit-transform: translateX(586px);
    }

    100% {
        -webkit-transform: translateX(0);
    }

    0% {
        -webkit-transform: translateX(586px);
    }
}


@keyframes slideMobileOut {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(586px);
    }

    0% {
        transform: translateX(0);
    }
}

@-webkit-keyframes slideMobileOut {
    0% {
        -webkit-transform: translateX(0);
    }

    100% {
        -webkit-transform: translateX(586px);
    }

    0% {
        -webkit-transform: translateX(0);
    }
}

/*.dk-header-media-mobile {*/
/*    display: none;*/
/*}*/

.dk-header-media {
    display: flex;
}

@media (max-width: 768px) {
    .dk-header-media {
        display: none;
    }

    /*.dk-header-media-mobile {*/
    /*    display: block;*/
    /*}*/
}

