/* MOBILE MENU */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    /*left: 0;*/
    z-index: 120;
    width: 100vw;
    visibility: hidden;
    opacity: 0;
}

/*.mobile-menu.is-opened {*/
/*    opacity: 1;*/
/*    visibility: inherit;*/
/*    transition: all 0.25s;*/
/*}*/



.has-opened-menu.is-mobile {
    position: fixed;
    top:0;
    bottom:0;
    left:0;
    right:0;
    height: 100vh;
    overflow: hidden;
}

.has-opened-menu.is-mobile:before {
    content: "";
    left: 0;
    top: 0;
    position: fixed;
    width: 100%;
    height: 100%;
    display: block;
    background: #fff;
}

.has-opened-menu .header-mobile .left-column .mobile-menu-button,
.has-opened-menu .header-mobile .left-column .button-search-mobile,
.has-opened-menu .header-mobile .center-column,
.has-opened-menu .header-mobile .right-column,
.has-opened-menu.is-mobile .main,
.has-opened-menu.is-mobile footer {
    visibility: hidden;
    opacity: 0;
}

.mobile-menu .login-bottom-mobile-close-button {
    background: url('/images/icons/icon-times-dark.svg') 0 0 no-repeat;
    cursor: pointer;
    display: block;
    width: 86px;
    height: 24px;
    line-height: 24px;
    margin: 20px auto 0;
    padding-left: 25px;
}

.mobile-menu .panels {
    position: relative;
    overflow-y: auto;
    padding: 64px 0 56px;
    background: #fff;
}
.block-mobile-menu-categories.is-open {
    min-height: 400px;
}

.mobile-menu .tab-menu-items {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    max-width: 100%;
    height: 64px;
    background: #fff;
    border-bottom: 1px solid #E4E5E5;
    padding: 0 12px;
    z-index: 5;
}

.mobile-menu .panels .tab-menu-item {
    display: inline-flex;
    align-items: center;
    position: relative;
    margin-right: 30px;
    height: 100%;
    cursor: pointer;
}

.mobile-menu .panels .tab-menu-item:nth-child(3) {
    margin-right: 0;
}

.mobile-menu .panels .tab-menu-item.active:before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 2px;
    background: #252324;
    bottom: -1px;
}

.mobile-menu .panels .tab-menu-item.is-logged:after {
    content: '';
    display: block;
    position: absolute;
    width: 16px;
    height: 16px;
    background: url('/images/icons/icon-check-white-xsmall@2x.svg') no-repeat center center, #4184EF;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    top: 14px;
    right: -17px;
}

.mobile-menu .panels .tab-menu-item:last-child {
    margin-right: 0;
}


.mobile-menu .panels  .tab-menu-items .close {
    z-index: 120;
    position: absolute;
    width: 24px;
    height: 24px;
    top: 20px;
    right: 12px;
    background-image: url('/images/icons/icon-times-dark.svg');
    background-position: 50%, 50%;
    cursor: pointer;
}


.mobile-menu .panels .fixed-menu-header {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 5;
    display: block;
    width: 100%;
    height: 64px;
    background: #fff;
    border-bottom: 1px solid #E4E5E5;
}

.mobile-menu .panels .fixed-menu-header.is-sticky {
    box-shadow: 0 -5px 15px 4px rgba(0,0,0,.25);
}

.mobile-menu .panels .fixed-menu-header .title {
    display: inline-block;
    position: absolute;
    width: -moz-fit-content;
    width: fit-content;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.mobile-menu .panels .panel .fixed-menu-header .back-button {
    visibility: hidden;
    position: relative;
    display: inline-block;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: url('/images/icons/icon-chevron-left-dark.svg');
    cursor: pointer;
}

.mobile-menu .panels .panel .fixed-menu-header  .close {
    position: absolute;
    display: inline-block;
    top: 50%;
    transform: translateY(-50%);
    right: 12px;
    width: 24px;
    height: 24px;
    background: url('/images/icons/icon-times-dark.svg');
}

.mobile-menu .panels .panel {
    max-width: 50%;
    padding: 0 12px 100px 12px;
}

@media screen and (max-width: 768px) {

    .mobile-menu .panels .panel {
        max-width: 100%;
    }
}

.mobile-menu .panels .panel[data-active="0"] {
    display: none;
}

.mobile-menu .panels .panel[data-active="1"] {
    display: block;
    padding: 20px 12px 0 12px;
    width: 100%;
    min-height: 100%;
}

.mobile-menu .panels .panel[data-value="profile"],
.mobile-menu .panels .panel[data-value="services"]{
    padding: 0 0 200px 0;
    z-index: 2;
    position: relative;
}

.mobile-menu .panels .panel[data-has-grandchildren='0'] .back-button {
    visibility: visible;
}

.mobile-menu .panels .panel[data-has-grandchildren='0'] > .title {
    width: calc(100% - 34px);
    float: right;
}

.mobile-menu .panels .panel .items {
    margin-bottom: 50px;
}

.mobile-menu .panels .panel .items .item {
    position: relative;
    display: block;
    width: 100%;
    padding: 22px 0;
    cursor: pointer;
    border-bottom: 1px solid #E4E5E5;
}

.mobile-menu .panels .panel .items .item:last-child {
    border-bottom: 0;
}

.mobile-menu .panels .panel .items .item .label {
    position: relative;
}

.mobile-menu .panels .panel .items .item[data-constant="NEW"] .label:after {
    content: '';
    position: absolute;
    display: block;
    top: -2px;
    right: -13px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    background: #079048;
}

.mobile-menu .panels .panel .items .item[data-constant="SUMMER_SALE"] .label:after,
.mobile-menu .panels .panel .items .item[data-constant="SUMMER_SALE2"] .label:after {
    content: '';
    position: absolute;
    display: block;
    top: -2px;
    right: -13px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    background: #DD1018;
}

.mobile-menu .panels .panel[data-has-grandchildren='1'] .items .item[data-constant='PROMO'] {
    color: #E74C3C;
}

.mobile-menu .panels .panel .items .item[data-is-accordion='1'] > .name {
    position: relative;
    padding-right: 30px;
}
.mobile-menu .panels .panel .items .item[data-has-children='1']:after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 24px;
    height: 24px;
    background: url('/images/icons/icon-chevron-right-dark.svg') no-repeat;
    transform: translateY(-50%);
    transition: all .25s ease;
}

.mobile-menu .panels .panel .items .item[data-is-accordion='1'].is-opened > .name span {
    color: #008AEE;
}

.mobile-menu .panels .panel .items .item[data-is-accordion='1'] > .name:after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    display: block;
    width: 24px;
    height: 24px;
    background: url('/icons/icon-chevron-down-dark.svg');
    transform: translateY(-50%);
    transition: all .25s ease;
}

.mobile-menu .panels .panel .items .item[data-is-accordion='1'].is-opened > .name:after {
    transform: translateY(-50%) rotate(-180deg);
}

.mobile-menu .panels .panel .items .item[data-is-accordion='1'] > .content {
    height: 0;
    overflow: hidden;
}

.mobile-menu .panels .panel .items .item[data-is-accordion='1'] > .content .inner {
    margin: 23px 0 0 0;
}

.mobile-menu .panels .panel .items .item[data-is-accordion='1'] > .content .inner .children-item {
    position: relative;
    display: block;
    padding: 6px 0 6px 15px;
}

.mobile-menu .panels .panel .items .item[data-is-accordion='1'] > .content .inner .children-item:first-child {
    padding: 0 0 6px 15px;
}

.mobile-menu .panels .panel .items .item[data-is-accordion='1'] > .content .inner .children-item:last-child {
    padding: 6px 0 0 15px;
}

.mobile-menu .panels .panel .login {
    display: none;
}

.mobile-menu .panels .panel .register {
    display: none;
}

.mobile-menu .panels .panel .login.show,
.mobile-menu .panels .panel .register.show {
    display: block;
}

.mobile-menu .panels .panel .login {
    padding-top: 40px;
}

.mobile-menu .panels .panel .login .i-have-an-account {
    display: block;
    margin-bottom: 25px;
    padding: 0 12px;
}

.mobile-menu .panels .panel .login .login-box {
    max-width: 100%;
    padding: 0 12px 40px 12px;
    border-bottom: 1px solid #E4E5E5;
}

.mobile-menu .panels .panel .login .login-box .login-box-forgotten-password-link {
    right: 12px;
}

.mobile-menu .panels .panel .login .registration-info {
    padding: 35px 12px 0 12px;
}

.mobile-menu .panels .panel .login .registration-info .new-customer {
    display: block;
    margin-bottom: 30px;
}

.mobile-menu .panels .panel .register .welcome {
    display: block;
    padding: 0 12px;
    margin: 36px 0 24px;
    font-size: 0;
}

.mobile-menu .panels .panel .register .welcome .user {
    display: inline-block;
    position: relative;
    vertical-align: middle;
    width: 40px;
    height: 40px;
    margin-right: 10px;
    background: #252324;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    letter-spacing: 0;
    line-height: 40px;
    text-align: center;
}

.mobile-menu .panels .panel .welcome .text {
    display: inline-block;
    vertical-align: middle;
    width: calc(100% - 50px);
}

.mobile-menu .panels .panel .register .links {
    margin-top: 0;
}

.mobile-menu .panels .panel .links {
    margin-top: 20px;
    padding: 0 12px;
}

.mobile-menu .panels .panel .links .link {
    display: block;
    padding: 22px 0;
    border-bottom: 1px solid #E4E5E5;
}

.mobile-menu .panels .panel .links .link:last-child {
    border-bottom: 0;
}

.mobile-menu-footer {
    position: fixed;
    bottom: 0;
    left: -100%;
    z-index: 121;
    width: 100%;
    height: 56px;
    border-top: 1px solid #E4E5E5;
    background: #fff;
    visibility: hidden;
    opacity: 0;
}

.mobile-menu-footer .call {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: calc(50% - 2px);
    height: 100%;
    border-right: 1px solid #E4E5E5;
}

.mobile-menu-footer .call:before {
    content: '';
    position: relative;
    display: inline-block;
    vertical-align: middle;
    width: 24px;
    height: 24px;
    background: url('/images/icons/icon-phone-dark.svg');
    margin-right: 7px;
}

.mobile-menu-footer .chat {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: calc(50% - 2px);
    height: 100%;
}

.mobile-menu-footer .chat:before {
    content: '';
    position: relative;
    display: inline-block;
    vertical-align: middle;
    width: 24px;
    height: 24px;
    background: url('/images/icons/icon-messenger-dark-outline.svg');
    margin-right: 7px;
}

@media only screen and (max-width: 360px) {

    .mobile-menu .panels .tab-menu-item {
        margin-right: 20px;
    }
}
