.popup-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column-reverse;
    z-index: 2;
}

.popup {
    pointer-events: all;
    position: relative;
    background: linear-gradient(to bottom, #012532 0%, #071A21 15%);
    border-radius: 20px 20px 0 0;
    border-top: 2px solid #1A3B47;
    padding: 20px;
}

.popup__close-button {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    color: white;
}

.popup__header {
    color: white;
    font-size: 24px;
    margin: 0;
}
