.popupWrapp {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100vw;
    height: 100vh;
    display: none;
}

.popupWrappBg {
    width: 100%;
    height: 100%;
    z-index: 200;
    padding: 16px;
    display: none;
    justify-content: center;
    background-color: var(--popup-bg);
}

.popupWrapp.show,
.popupWrappBg.show {
    display: flex;
}

.popupWrappDialog {
    max-width: 449px;
    width: 100%;
    background-color: white;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    height: fit-content;
    border-radius: 12px;
    text-align: center;
    overflow: hidden;
    overflow-y: auto;
    max-height: 100%;
    gap: 20px;
    margin: auto;
}

.popupWrappDialogMedium {
    max-width: 600px;
}

.popupWrappHeading {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.popupWrappHeading h2 {
    font-size: 26px;
}

.popupWrappHeading .icon {
    cursor: pointer;
}