.popup__wrapper {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    z-index: 1000;
    top: 0;
    background-color: rgba(255, 255, 255, 0.5);
    visibility: hidden;
}
.popup__wrapper.active {
    visibility: visible;
}
.popup__wrapper .popup {
    position: relative;
    padding: 24px;
    border-radius: 4px;
    background-color: white;
    box-shadow: 0 16px 32px rgb(0 0 0 / 15%);
    max-height: calc(100vh - 48px);
    overflow-y: auto;
    width: 560px;
}
.popup__wrapper .popup .heading__wrapper {
    position: relative;
    display: block;
    margin-bottom: 16px;
}
.popup__wrapper .popup .heading {
    font-size: var(--h4);
    font-weight: 500;
    width: calc(100% - 64px);
}
.popup__wrapper .popup .close {
    position: absolute;
    top: 0;
    right: 0px;
    width: 32px;
    height: 32px;
    background-color: whitesmoke;
    border-radius: 50%;
    cursor: pointer;
    text-align: center;
    line-height: 32px;
    font-weight: 500;
}


