body.open_popup {
    overflow: hidden;
}

.bg_onetime_popup {
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 9999;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
}

body.open_popup .bg_onetime_popup {
    opacity: 1;
    visibility: visible;
}

.onetime_popup {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 90%;
}

.onetime_popup_title {
    position: relative;
    margin: 0px;
    color: #fff;
    font-size: 32px;
    text-align: center;
    line-height: 1.5;
    margin-left: auto;
}

.onetime_popup_title_close {
    position: absolute;
    top: 50%;
    right: -10px;
    width: 30px;
    height: 30px;
    transform: translateY(-50%);
    cursor: pointer;
}
.onetime_popup_title_close::before,
.onetime_popup_title_close::after {
    position: absolute;
    top: 51%;
    left: 50%;
    transform: translateX(-51%) translateY(-50%);
    width: 100%;
    height: 4px;
    content: "";
	background: #666;
}
.onetime_popup_title_close::before {
    transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
.onetime_popup_title_close::after {
    transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}

.onetime_popup_content {
    text-align: center;
	margin-top:15px;
    padding: clamp(1em,2.6vw,2.7vw);
    background: #f2f2f2;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    column-gap: 3%;
    align-items: center;
    max-width: 780px;
    position: relative;
}

.onetime_popup_content .Right{
    width: 100%;
}

.onetime_popup_content .title{
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: .5em;
    text-align: center;
}

.onetime_popup_content p{
    font-size: 0.9rem;
    margin-bottom: 0;
    margin-top: 1.5em;
    text-align: center;
}
@media screen and (max-width: 767px) {
    .onetime_popup_content .title{
        margin-top: .75em;
    }

    #mailpoet_form_2 form.mailpoet_form{
        padding: 10px 0 0 0 !important;
    }
    #mailpoet_form_2 p.mailpoet_form_paragraph.last, .onetime_popup_content p{
        font-size: 0.85rem !important;
    }
}