.js_mobile_menu > * {
    order: 1;
}
.js_mobile_menu > .orderstatus-show {
    order: 0;
}
.orderstatus-show:not(a) {
    font-size: 16px;
    white-space: nowrap;
    font-weight: 500;
    line-height: 20px;
    opacity: 0.4;
    margin-right: 25px;
    text-transform: uppercase;
    cursor: pointer;
}
.orderstatus-show:not(a):hover {
    opacity: 0.68;
}
.content_tab .orderstatus-show {
    text-transform: none;
    font-weight: 700;
    opacity: 1;
    line-height: 20px;
    margin-bottom: 24px;
    margin-top: 4px;
}
.orderstatus {
    display: none;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999999;
}
.orderstatus-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}
.orderstatus-container {
    max-width: 480px;
    background: #fff;
    padding: 30px 20px 10px;
    z-index: 2;
    position: relative;
}
.orderstatus .close-button {
    position: absolute;
    top: 26px;
    right: 20px;
    width: 24px;
    height: 23px;
    cursor: pointer;
    background-position-x: -591px;
    background-position-y: -172px;
    filter: none;
    z-index: 1;
}

.orderstatus p {
    font-weight: 500;
    font-size: 32px;
    line-height: 20px;
    text-transform: uppercase;
    margin-bottom: 40px;
}
.orderstatus .button {
    padding: 14px 20px;
}
.orderstatus .text-small {
    margin: 16px 0;
}
.orderstatus .button-disabled {
    opacity: 0.2;
}

.error-popup {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 20px 40px 0;
    gap: 10px;
}
.error-popup > .text {
    font-size: 18px;
}
.error-popup > .title {
    font-size: 28px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 30px;
}
.error-popup > .button {
    width: 220px;
}

@media (max-width: 1024px) {
    .orderstatus-container {
        max-width: 100%;
    }
    .js_mobile_menu > .orderstatus-show {
        display: none;
    }
}