@charset "utf-8";
/*   onetime_popup   */

.bg_onetime_popup {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 9999;
    width: 100vw;
    transition: 0.5s;
    opacity: 0;
    visibility: hidden;
}

.bg_onetime_popup.js_active {
    opacity: 1;
    visibility: visible;
}

.onetime_popup {
    position: absolute;
    bottom: 0;
    width: 100%;
    cursor: pointer;
    left: 50%;
    transform: translateX(-50%) translateY(0%);
    min-width: 500px;
}

.onetime_popup_title {
    position: relative;
    padding: 24px 90px;
    margin: 0px!important;
    background-color: rgb(102 102 102 / 90%);
    color: #fff;
    font-size: 55px;
    text-align: center;
    line-height: 1.5!important;
}
.onetime_popup_title::before,
.onetime_popup_title::after {
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    width: 30px;
    height: 4px;
    background-color: #c6c6c6;
    content: "";
}
.onetime_popup_title::before {
    transform: rotate(45deg);
}
.onetime_popup_title::after {
    transform: rotate(-45deg);
}
.onetime_popup_content {
    padding: 60px 30px;
    text-align: center;
}