.top-menu {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    z-index: 100;

    font-size: 11px;
    font-weight: 400;
    transform: translateZ(0);

    box-shadow: 0 0 50px 0 rgba(0,0,0,0.6);
}

.top-menu a {
    border-bottom: none;
}

.top-menu__logo {
    margin-left: 20px;
}

.top-menu__slogan {
    display: none;
}

.top-menu__items {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-end;
}

.top-menu__menu {
    margin-left: 50px;
    max-height: 61px;
}

.top-menu__menu > ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.top-menu__menu > ul > li {
    position: relative;
}

.top-menu__menu > ul > li > a {
    font-family: 'proxima', sans-serif;
    padding: 16px 11px 14px 11px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    white-space: nowrap;
    line-height: 30px;
    transition: color .3s, opacity .3s;
}

.top-menu__menu > li > a:hover {
    opacity: 0.8;
}

.top-menu__menu > ul > li ul {
    position: absolute;
    background: #000000;
    padding: 7px 0;
    z-index: 10;
    margin-top: -1px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    transition-delay: 0.2s;
}

.top-menu__menu > ul > li.hover ul,
.top-menu__menu > ul > li:hover ul {
    opacity: 1;
    visibility: visible;
}

.top-menu__menu > ul > li ul li {
}

.top-menu__menu > ul > li ul li a {
    color: #b2b2b2;
    display: block;
    padding: 11px 44px 11px 22px;
    font-size: 13px;
    font-weight: 400;
    white-space: nowrap;
    transition: all .3s;
    line-height: 18px;
}

.top-menu__menu > ul > li ul li a:hover {
    color: #ffffff;
    transform: translateX(10px);
}

/* menu-crop */

.top-menu__menu-crop {
    margin-left: 50px;
    max-height: 61px;
    display: none;
}

.top-menu__menu-crop > ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.top-menu__menu-crop > ul > li {
    position: relative;
}

.top-menu__menu-crop > ul > li > a {
    font-family: 'proxima', sans-serif;
    padding: 16px 11px 14px 11px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    white-space: nowrap;
    line-height: 30px;
    transition: color .3s, opacity .3s;
}

.top-menu__menu-crop > li > a:hover {
    opacity: 0.8;
}

.top-menu__menu-crop > ul > li ul {
    position: absolute;
    background: #000000;
    padding: 7px 0;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    transition-delay: 0.2s;
}

.top-menu__menu-crop > ul > li.hover ul,
.top-menu__menu-crop > ul > li:hover ul {
    opacity: 1;
    visibility: visible;
}

.top-menu__menu-crop > ul > li ul li {
}

.top-menu__menu-crop > ul > li ul li a {
    color: #b2b2b2;
    display: block;
    padding: 11px 44px 11px 22px;
    font-size: 13px;
    font-weight: 400;
    white-space: nowrap;
    transition: all .3s;
    line-height: 18px;
}

.top-menu__menu-crop > ul > li ul li a:hover {
    color: #ffffff;
    transform: translateX(10px);
}

/* menu-crop.end */

.top-menu__order {
    display: flex;
    align-items: center;
    padding: 0 15px;
}

.top-menu__order a {
    display: block;
    border: 0;
    border-radius: 2px;
    color: #4c4c4c;
    padding: 6px 35px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.4s;
    background: #fff;
}

.top-menu__order a:hover {
    border: 0;
    color: #4c4c4c;
    background: #fff;
}

.top-menu__burger {
    display: none;
    cursor: pointer;
}

.top-menu__extra {
    display: none;
}

@media (max-width: 1205px) {
    .top-menu__menu-crop {
        display: block;
    }
    .top-menu__menu {
        display: none;
    }
}

@media (max-width: 991px) {
    .top-menu__menu {
        display: none;
    }

    .top-menu {
        background: #212121;
        z-index: 9999999;
        height: 60px;
    }

    .top-menu__slogan {
        display: block;
        color: #eeeeee;
        line-height: 1.2;
        text-align: center;
        margin: 0 auto;
        padding: 0 20px;
    }

    .top-menu__logo {
        align-self: center;
        margin-left: 30px;
    }

    .top-menu__logo img {
        height: 30px;
    }

    .top-menu__menu-crop {
        max-height: none;
        height: calc(100vh - 60px);
        overflow: auto;
        margin-left: 0;
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        background: #212121;
        display: block;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s;
    }

    .top-menu_opened .top-menu__menu-crop {
        opacity: 1;
        visibility: visible;
    }

    .top-menu__menu-crop > ul {
        display: block;
        padding: 0 30px;
        border-top: #363636 1px solid;
        border-bottom: #363636 1px solid;
    }

    .top-menu__menu-crop > ul > li + li {
        border-top: #363636 1px solid;
    }

    .top-menu__menu-crop > ul > li > a {
        font-size: 14px;
        padding: 12px 0;
        display: inline-block;
    }

    .top-menu__menu-crop > ul > li ul {
        position: relative;
        padding: 0 0 8px;
        margin-top: 0;
        opacity: 1;
        visibility: visible;
        background: transparent;
        display: none;
    }

    .top-menu__menu-crop > ul > li ul li {
    }

    .top-menu__menu-crop > ul > li ul li a {
        color: #b2b2b2;
        display: block;
        padding: 11px 44px 11px 22px;
        font-size: 13px;
        font-weight: 400;
        white-space: nowrap;
        transition: all .3s;
        line-height: 18px;
    }

    .top-menu__menu-crop > ul > li .toggle {
        position: absolute;
        width: 54px;
        height: 54px;
        right: -19px;
        top: 0;
    }

    .top-menu__menu-crop > ul > li .toggle:before {
        content: "";
        display: block;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 0;
        height: 0;
        border-width: 10px 7px 0 7px;
        border-color: #ffffff transparent transparent transparent;
        border-style: solid;
        transition: transform 0.3s ease;
    }

    .top-menu__menu-crop > ul > li.opened .toggle:before {
        transform: translate(-50%, -50%) rotateZ(180deg);
    }

    .top-menu__order {
        display: none;
    }

    .top-menu__burger {
        display: block;
        width: 44px;
        height: 44px;
        flex-shrink: 0;
        align-self: center;
        margin: 0 18px 0 0;
        position: relative;
    }

    .top-menu__burger:before,
    .top-menu__burger:after {
        content: '';
        display: block;
        position: absolute;
        left: 13px;
        top: 50%;
        width: 21px;
        height: 1px;
        background: #fff;
        transform: rotate(0);
        transition: all 0.25s;
        opacity: 0.5;
    }

    .top-menu__burger:before {
        transform: translateY(-4px);
    }

    .top-menu__burger:after {
        transform: translateY(3px);
    }

    .top-menu_opened .top-menu__burger:before {
        transform: rotate(45deg) translateY(0px);
    }

    .top-menu_opened .top-menu__burger:after {
        transform: rotate(-45deg) translateY(0px);
    }

    .top-menu__extra {
        display: block;
        text-align: center;
        margin: 34px 0 0;
    }

    .top-menu__contacts {
        margin: 0 0 20px;
        text-align: center;
        font-size: 13px;
        line-height: 1.5;
        color: #ffffff;
    }

    .top-menu__contacts p {
        margin: 0;
    }

    .top-menu__contacts p.phone {
        font-size: 25px;
        line-height: 1.3;
    }

    .top-menu__order-mobile {
        margin-bottom: 30px;
    }

    .top-menu__order-mobile a {
        border: #5fee2b 1px solid;
        border-radius: 2px;
        display: inline-block;
        color: #ffffff;
        font-size: 19px;
        padding: 10px 30px;
        background: #44bd18;
    }

    .top-menu__social {
        margin-bottom: 30px;
    }

    .top-menu__social ul {
        display: flex;
        justify-content: center;
    }

    .top-menu__social ul li {
        margin: 6px;
    }

    .top-menu__social ul li a {
        display: block;
        width: 33px;
        height: 34px;
        background: url("/themes/classic/img/mobile-menu-social.png") left top no-repeat;
    }

    .top-menu__social ul li a.fb {
        background-position: 0 0;
    }

    .top-menu__social ul li a.gp {
        background-position: -66px 0;
    }

    .top-menu__social ul li a.ig {
        background-position: -99px 0;
    }

    .top-menu__social ul li a.vk {
        background-position: -132px 0;
    }

    .top-menu__social ul li a.ok {
        background-position: -165px 0;
    }
}
