@charset "UTF-8";

.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: 30%;
    background-color: #fff;
    cursor: pointer;
    border-radius: 15px;
}

.onetime_popup_title::before,
.onetime_popup_title::after {
    position: absolute;
    top: 10%;
    right: 5%;
    transform: translateY(-50%);
    width: 30px;
    height: 4px;
    background-color: gray;
    content: "";
}

.onetime_popup_title::before {
    transform: rotate(45deg);
}
.onetime_popup_title::after {
    transform: rotate(-45deg);
}

.onetime_popup_content {
    padding: 60px 30px;
    text-align: center;
}

.information{
    font-size:12px ;
    color:grey;
    padding-top:20px;
}

.onetime_popup_title{
    font-size:16px;
    color: #222222;
}

span{
    font-weight: bold;
}

@media screen and (max-width: 768px) {
    .onetime_popup {
        width: 90%;
    }
    
    .onetime_popup_content p{
        font-size:14px;
    }
    
    .information{
        font-size:10px ;
    }

    .onetime_popup_title::before,
    .onetime_popup_title::after {
    top: 7%;
}
}