.popup {
    opacity: 0;
    z-index: 11;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;

    align-items: center;

}

.popup .center-position {
    width: 800px;
    height: 100%;

    display: flex;
    background: url(../img/back5.png) repeat;

    background-size: 20%;
    align-items: center
}

.popup.active {
    opacity: 1;
}

.popup .control {
    padding-bottom: 10px;
    font-size: 1.6em;
    color: red;
}

.popup .control i {
    cursor: pointer;
}

.popup .control i.icon-control {
    width: 30px;
    height: 30px;
    display: block;
}

.popup .control i.icon-control.close {
    background: url("/img/icon_close.svg") center center no-repeat;
}

.popup .control i.icon-control:hover {
    transform: rotate(45deg);
}

.popup .container {
    border-radius: 4px;
    padding: 2rem;
    background-color: rgb(107, 101, 112);
    max-width: 960px;
    position: relative;
}

.popup .container .content {
    max-height: 60vh;
    /*overflowy: auto;*/
}

.popup .container .loader {
    border-radius: 4px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #90809f;
    color: #90809f;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 768px) {
    .popup .container {
        width: 468px;
    }

    .popup .center-position {
        width: 100%;
    }


}