.popup-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #b0b0b0a1;
    z-index: 3000;
}

.popup {
    width: 650px;
    background-color: #b0b0b0;
    border: solid 1px #878787;
    padding: 20px;
}

.popup header {
    display: flex;
    justify-content: space-between;
    font-size: 20px;
    font-weight: bold;
}

.popup header span {
    line-height: 32px;
}

.popup__content {
    padding: 50px 0 30px;
}

.popup__content p {
    font-size: 16px;
    margin-bottom: 16px;
}

.popup button {
    background-color: transparent;
    padding: 0;
    border: 0;
    cursor: pointer;
}