.global.active #header {
    position: relative;
    z-index: 99999;
}

.global:after,
body.bg-black:after {
    display: none !important;
    z-index: -1;
    opacity: 0;
}

.global:before {
    content: '';
    position: fixed;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease 0s, z-index 0s ease 0.3s;    
}

.bg-black .global:before {
    z-index: 501;
    opacity: 1;
}

.bg-black #footer {
    z-index: 99999;
}

.action-finish {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9;
}

.action-finish__line {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -59%) rotate(-10deg);
    background: #e83587;
    font-family: 'Graphik-Medium-Cy';
    font-size: 28px;
    line-height: 34px;
    color: #ffffff;
    text-transform: uppercase;
    height: 80px;
    display: flex;
    align-items: center;
    width: 200%;
    animation: 7s action infinite linear;
    animation-delay: 0s;
    white-space: nowrap;
}

@keyframes action {
    from {
        text-indent: 0;
    }
    to {
        text-indent: -312px;
    }
 }

 .none {
     display: none;
 }