@charset "utf-8";

:root {
    --popup-concept-color: #f4ed93;
    --popup-text-color: #422c17;
}
.popupWrap {
    position: absolute;
    z-index: 999999;
    width: 100%;
    min-width: 1440px;
    top: 180px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: flex-start;
    align-content: flex-start;
}
.noticeNewPop {
    position: relative;
    margin: 0 15px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.85);
}
.noticeNewPop .popup_wrap {
    width: 100%;
    min-width: 300px;
    max-width: 520px;
    border: 4px solid;
    border-color: var(--popup-concept-color);
    box-sizing: border-box;
}
.noticeNewPop .popup_wrap .popup_box {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.85);
}
.noticeNewPop .popup_wrap .popup_box .popup_content {
    display: block;
    color: #E9E9E9;
    box-sizing: border-box;
}
.noticeNewPop .popup_wrap .popup_box .popup_content>img {
    width: 100%;
    height: auto;
}
.noticeNewPop .popup_wrap .popup_box .popup_content>font {
    padding: 35px 20px;
    display: block;
    line-height: 185%;
    font-size: 125%;
}
.popup_wrap .btnPopClose {
    position: absolute;
    right: -15px;
    top: -17px;
}
.popup_wrap .btnPopClose a {
    background-color: var(--popup-concept-color);
    border-radius: 40px 40px;
    overflow: hidden;
    width: 40px;
    height: 40px;
    text-align: center;
    cursor: pointer;
    display: block;
    opacity: 1;
    -webkit-transform: scale(1.0);
    -moz-transform: scale(1.0);
    -ms-transform: scale(1.0);
    -o-transform: scale(1.0);
    transform: scale(1.0);
    -webkit-transition: all 0.3s 0s ease-in-out;
    -moz-transition: all 0.3s 0s ease-in-out;
    -o-transition: all 0.3s 0s ease-in-out;
    transition: all 0.3s 0s ease-in-out;
}
.popup_wrap .btnPopClose a svg {
    fill: var(--popup-text-color);
    width: 16px;
    height: auto;
    display: block;
    margin: 12px auto;
}
.popup_wrap .btnPopToday {
    position: absolute;
    margin: 0 auto;
    width: auto;
    top: -10px;
    left: 0;
}
.popup_wrap .btnPopToday a {
    background-color: var(--popup-concept-color);
    padding: 4px 10px;
    box-sizing: border-box;
    border-radius: 20px 20px;
    text-align: center;
    cursor: pointer;
    display: block;
    opacity: 1;
    -webkit-transform: scale(1.0);
    -moz-transform: scale(1.0);
    -ms-transform: scale(1.0);
    -o-transform: scale(1.0);
    transform: scale(1.0);
    -webkit-transition: all 0.3s 0s ease-in-out;
    -moz-transition: all 0.3s 0s ease-in-out;
    -o-transition: all 0.3s 0s ease-in-out;
    transition: all 0.3s 0s ease-in-out;
}
.popup_wrap .btnPopToday a span {
    font-size: 12px;
    letter-spacing: -0.035rem;
    font-weight: 600;
    color: var(--popup-text-color);
}
.popup_wrap .btnPopToday a span svg {
    fill: var(--popup-text-color);
    vertical-align: middle;
    margin: -3px 0 0 5px;
    opacity: 0.85;
}
.popup_wrap .btnPopClose a:hover {
    opacity: 0.85;
    -webkit-transform: scale(1.25);
    -moz-transform: scale(1.25);
    -ms-transform: scale(1.25);
    -o-transform: scale(1.25);
    transform: scale(1.25);
    -webkit-transition: all 0.3s 0s ease-in-out;
    -moz-transition: all 0.3s 0s ease-in-out;
    -o-transition: all 0.3s 0s ease-in-out;
    transition: all 0.3s 0s ease-in-out;
    box-shadow: 2px 2px 5px #000000;
}
.popup_wrap .btnPopToday a:hover {
    opacity: 0.95;
    margin-left: 10px;
    -webkit-transition: all 0.3s 0s ease-in-out;
    -moz-transition: all 0.3s 0s ease-in-out;
    -o-transition: all 0.3s 0s ease-in-out;
    transition: all 0.3s 0s ease-in-out;
    box-shadow: 2px 2px 5px #000000;
    
}
@media (max-width:768px) {
    .popupWrap {
        width: 90%;
        margin: 0 5%;
        min-width: 300px;
        top: 100px;
        display: flex;
        align-items: center;
        align-content: center;
        flex-direction: column;
        justify-content: flex-start;
    }
    .noticeNewPop {
        position: absolute;
        margin: 0 auto;
        width: 100%;
    }
    .noticeNewPop .popup_wrap { max-width: none;}
}