.popup {
	width:100%;
	height:100%;
	background: rgba(0,0,0,0.6);
	position:fixed;
	top: 0;
	left: 0;
	z-index: 10000;
	transition: .4s ease;
  }
.popup.ok {
	opacity: 0;
	visibility: hidden;
	z-index: -1;
}
.popup-inner {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
	width: 50%;
	min-width: 500px;
	background-color: #fff;
	border-radius: 3px;
	box-shadow: 0 20px 60px -2px rgb(27 33 58 / 40%);
}
@media only screen and (max-width: 479px) {
	.popup-inner {
		min-width: 350px;
	}
}
.onetime_popup_title {
	position: relative;
    padding: 1em 80px;
    margin: 0px;
    background-color: #4575D9;
    color: #fff;
    font-size: 1.55rem;
    text-align: center;
    line-height: 1.5;
    font-weight: 400;
}
@media only screen and (max-width: 479px) {
	.onetime_popup_title {
		padding: 1em 20px;
	}
}
.onetime_popup_content {
    padding: 15px 30px 30px;
    text-align: left;
}
@media only screen and (max-width: 479px) {
	.onetime_popup_content {
		padding: 15px 15px 25px;
	}
}
.onetime_popup_content span {
    margin: 5px 0 20px;
    font-size: 1.95rem;
    text-align: center;
    display: block;
    font-weight: 600;
    color: #4575D9;
}
@media only screen and (max-width: 479px) {
	.onetime_popup_content span {
		font-size: 1.55rem;
	}
}
.onetime_popup_content p {
    text-align: left;
	margin-top: 20px;
}
@media only screen and (max-width: 479px) {
	.onetime_popup_content p {
		margin: 15px 0 15px;
		font-size: 1.25rem;
		text-align: left;
	}
}
#popup_close_btn {
    appearance: none;
    background: #fff;
    border: 0.2rem solid #4575D9;
    border-radius: 0.1rem;
    color: #4575D9;
    cursor: pointer;
    outline: none;
    text-align: center;
    text-decoration: none;
    user-select: none;
    vertical-align: middle;
    white-space: nowrap;
    position: relative;
    height: auto;
    line-height: 1.3rem;
    padding: 10px 15px;
    transition: all 0.3s ease;
	margin: 5px auto 0;
    display: block;
}
@media only screen and (max-width: 479px) {
	#popup_close_btn {
		font-size: 1.65rem;
		padding: 15px 10px;
		margin: 15px auto 0;
	}
}
#popup_close_btn:hover {
    background: #e1e5eb;
}
.onetime_popup_content span.disappear_checkbox {
	padding: 0 0 0 0px;
    color: unset;
    font-weight: normal;
    font-size: unset;
	margin: 0;
}
@media only screen and (max-width: 479px) {
	.onetime_popup_content span.disappear_checkbox {
		font-size: 1.25rem;
	}
}