.back-to-school {
    transition: all .3s;
    opacity: 0;
    display: none;

    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;

    width: 100vw;
    height: 100vh;
    background: rgba(51, 51, 51, 0.53);
}

.back-to-school.show {
    display: block;
}

.back-to-school.reveal {
    opacity: 1;
}

.back-to-school__holder {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);

    z-index: 10000;
    background: #fff;
    width: 925px;
    height: 576px;
    border-radius: 5px;

    background-image: url("/theme/images/back-to-school/background.svg");
    background-position: right;
    background-repeat: no-repeat;
}

.back-to-school__title {
    position: absolute;
    left: 49px;
    top: 92px;
}

.back-to-school__sub {
    position: absolute;
    left: 49px;
    bottom: 83px;
}

.back-to-school__person {
    position: absolute;
    left: 299px;
    z-index: 1;
    top: 34px;
}

.back-to-school__headphones {
    position: absolute;
    right: 18px;
    top: 34px;
}

.back-to-school__buttons {
    position: absolute;
    right: 52px;
    bottom: 78px;
}

.back-to-school__exit {
    z-index: 100001;
    cursor: pointer;
    position: absolute;
    right: 6px;
    top:6px;
}