.pop-up {
    position: fixed;
    top: -100vh; left: 0;
    width: 100%; height: 100%;
    transition: top 0ms ease-in-out 300ms;
}

.pop-up .overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 100ms ease-in-out 200ms;
}

.pop-up .content {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 95%;
    max-width: 800px;
    background: var(--block-bg-color);
    border-radius: 25px;
    opacity: 0;
    box-shadow: 0 2px 2px 5px rgba(0, 0, 0, 0.05);
    transition: all 300ms ease-in-out;
}

.pop-up .content h2 {
    margin: 10px 0;
    font-size: 25px;
    color: var(--darker-text-color);
    text-align: center;
}

.pop-up .content p {
    margin: 15px 0;
    color: #222;
    font-size: 16px;
}

.pop-up .content .controls {
    justify-content: end;
}

.content .controls .close-btn {
    background: transparent;
    color: var(--accent-color);
}

.pop-up.active {
    top: 0;
    transition: top 0ms ease-in-out 0ms;
}

.pop-up.active .overlay {
    opacity: 1;
    transition: all 300ms ease-in-out;
}

.pop-up.active .content {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}
