.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;
}

.bg_onetime_popup.js_active {
    opacity: 1;
    visibility: visible;
}

.onetime_popup {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 90%;
    /*min-width: 500px;*/
    background-color: #fff;
    /*cursor: pointer;*/
}

.onetime_popup_title {
    position: relative;
    /*padding: 30px 90px;*/
    padding: 30px 70px;
    margin: 0px;
    background-color: #3388dd;
    color: #fff;
    font-size: 20px;
    text-align: center;
    line-height: 1.5;
}
/*
.onetime_popup_title::before,
.onetime_popup_title::after {
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    width: 30px;
    height: 4px;
    background-color: #fff;
    content: "";
}

.onetime_popup_title::before {
    transform: rotate(45deg);
}
.onetime_popup_title::after {
    transform: rotate(-45deg);
}
*/
.onetime_popup_content {
    padding: 30px 30px;
    text-align: center;
}

.yesno{
	display: table;
	margin: 30px auto 0 auto;
	border-collapse: separate;
	border-spacing: 5px 0;
	width: 100%;
	table-layout: fixed;
}
.yesno li{
	display: table-cell;
	font-size: 130%;
	line-height: 1.4em;
}
.yesno a:link,
.yesno a:visited{
	padding: 10px;
	background-color: #666;
	border-radius: 5px;
	display: block;
	color: #fff;
	text-decoration: none;
}
.yesno .yes a:link,
.yesno .yes a:visited{
	background-color: #003574;
}


.onetime_popup_content{
	font-weight: 700;
	line-height: 1.6em;
}
.onetime_popup_content h3{
	font-size: 140%;
	line-height: 1.4em;
	font-weight: 700;
}

@media print, screen and (min-width: 576px) {
	.onetime_popup_content h3{
		font-size: 160%;
	}
}
@media print, screen and (min-width: 768px) {
	.onetime_popup_content {
		padding: 60px 30px;
	}
}
@media print, screen and (min-width: 992px) {
	.onetime_popup {
		width: 80%;
		min-width: 600px;
	}
	.onetime_popup_title {
		font-size: 32px!important;
	}
	.yesno{
		width: 50%!important;
	}
}
@media print, screen and (min-width: 1200px) {
	.onetime_popup {
		width: 50%;
	}
}
