body::after {
    content: "";
    background-color: rgba(0, 0, 0, 0.5);
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.8s ease 0s;
    pointer-events: none;
    z-index: 149;
}
body.popup-show::after {
    opacity: 1;
}
.popup.popup_show {
    visibility: visible;
    overflow: auto;
    pointer-events: auto;
	z-index: 150;
}
.popup_show .popup__content {
    visibility: visible;
    transform: scale(1);
}
.popup__wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100%;
    flex: 1 1 auto;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.popup__content {
    visibility: hidden;
    text-align: center;
    transform: scale(0);
    transition: transform 0.3s ease 0s;
    background-color: #fff;
    padding: 50px 50px 40px 50px;
    width: 100%;
    max-width: 600px;
    border-radius: 30px;
	flex: 0 1 auto!important;
}
.popup__close {
    position: absolute;
    right: 15px;
    top: 15px;
    width: 25px;
    height: 25px;
    outline: none;
}
.popup__title {
	font-size: 30px;
	text-align: center;
}
.popup__subtitle {
	color: #000;
    font-size: 15px;
    font-weight: 500;
    line-height: 25px;
}