/* Важная часть */
.popup__bg {
    position: fixed;
    left: 0;
    top:0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    opacity: 0; 
    pointer-events: none; 
    transition: 0.5s all;
    z-index: 5;
    padding: 15px 0;
}

.popup__bg.active {
    opacity: 1; 
    pointer-events: all; 
    transition: 0.5s all;
}

.popup {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0); 
    background: #fff;
    width: 80vw;
    max-width: 700px;
    padding: 25px;
    transition: 0.5s all;
    height:auto;
    margin: 20px 0;
    max-height: 90vh;
    overflow-y: scroll;
}

.close-popup {
    width: 22px;
    height: 22px;
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}

.popup.active { 
    transform: translate(-50%, -50%) scale(1); 
    transition: 0.5s all;
}

.popup-content {
    height:100%;
    width: 100%;
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    color: black;
}

.popup-content ol li{
    list-style-type: none;
}

.popup-content ul li{
    list-style-type:"– ";
    list-style-position: inside;
}

.popup-content h2{
    margin: 15px 0 8px 0;
}
.popup-content h3{
    margin: 5px 0 3px 0;
}
.popup-content span{
    font-size: 19px;
}