.wrap {
    opacity: 0.01;
}

.loader_bg {
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0.0);
    /* z-index: 1; */
    z-index: 90000;
    display: none;
}

.loader {
    width: 150px;
    height: 150px;
    display: inline-block;
    padding: 0px;
    text-align: left;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.loader span {
    position: absolute;
    display: inline-block;
    width: 150px;
    height: 150px;
    border-radius: 100%;
    background: #A69382;
    -webkit-animation: loader3 1.5s linear infinite;
    animation: loader3 1.5s linear infinite;
}

.loader span:last-child {
    animation-delay: -0.9s;
    -webkit-animation-delay: -0.9s;
}

@keyframes loader3 {
    0% {
    transform: scale(0, 0);
    opacity: 0.8;
    }

    100% {
    transform: scale(1, 1);
    opacity: 0;
    }
}

@-webkit-keyframes loader3 {
    0% {
    -webkit-transform: scale(0, 0);
    opacity: 0.8;
    }

    100% {
    -webkit-transform: scale(1, 1);
    opacity: 0;
    }
}

.toast-cover {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
    z-index: 3000;
}
.toast {
    position: fixed;
    bottom: 120px;
    left: 50%;
    width: calc(100% - 32px);
    max-width: var(--max-screen-width);
    padding: 20px;
    transform: translate(-50%, 10px);
    border-radius: 10px;
    overflow: hidden;
    font-size: .8rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s, visibility .5s, transform .5s;
    background: #FFF;
    color: #000;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    z-index: 10000;
}
.toast.show {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0)
}

.modal {
	display: none;
	justify-content: center;
	align-items: center;
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 5000;
	padding: 0 40px;
	background: rgba(0, 0, 0, 0.5);
}
.modal.active {
	display: flex;
}
.modal.flex-column {
    display: flex;
    flex-direction: column;
}
.modal .modal-inner {
	position: relative;
	padding: 24px 20px 20px 20px;
	background-color: #FFFFFF;
	box-shadow: 0px 2px 48px rgba(0, 0, 0, 0.04);
	border-radius: 10px;
    width: 320px;
    min-width: 240px;
}
.modal .modal-inner.ico {
	padding-top: 63px;
}
.modal .modal-inner .modal-title {
	display: flex;
	justify-content: center;
	font-size: 26px;
    font-weight: 700;
}
.modal .modal-inner .modal-title.sm {
	display: flex;
	justify-content: center;
	font-size: 24px;
    font-weight: 600;
}
.modal .modal-inner .modal-cont {
	margin-top: 20px;
}
.modal .modal-inner .modal-cont.justify-center {
    display: flex;
	justify-content: center;
}
.modal .modal-inner .modal-cont .txt {
    font-size: 20px;
	font-weight: 500;
	text-align: justify;
    margin-bottom: 20px;
	word-break: keep-all;
}
.modal .modal-inner .modal-cont .txt-sub-highlight {
    font-size: 16px;
	font-weight: 500;
    margin-bottom: 20px;
	word-break: keep-all;
}
.modal .modal-inner input {
	font-size: 16px;
	font-weight: 600;
	border-bottom: 1px solid #A5A5A5;
	padding-bottom: 10px;
	width: 100%;
}
.modal .modal-inner .txt-input {
	margin-top: 4px;
	height: 44px;
	width: 100%;
	padding-bottom: 0;
	font-family: "Noto Sans KR", sans-serif;
	color: #353535;
}
.modal .modal-inner .modal-cont .txt-sub-title {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
    word-break: keep-all;
}
.modal .modal-inner .modal-cont .txt-duration {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 4px 0;
    padding: 4px 8px;
    background-color: #375FFE10;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    word-break: keep-all;
}
.modal .modal-inner .modal-cont .txt-count {
    color: #375FFE;
    font-size: 15px;
    font-weight: 600;
}
.modal .modal-inner .modal-cont .txt-desc {
    color: #375FFE;
    font-size: 14px;
    font-weight: 400;
}
.modal .modal-inner .modal-cont .bg-scroll {
    overflow-y: scroll;
    max-height: 40vh;
    position: relative;    
    margin: 16px 0 12px 0;
    padding: 12px 16px;
    background-color: #375FFE10;
    border-radius: 8px;    
}
.modal .modal-inner .modal-cont .num-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.modal .modal-inner .modal-cont .txt-num {
    color: #375FFE;
    font-size: 15px;
    font-weight: 400;
}
.modal .modal-inner .modal-cont .txt-num .highlight {
    font-weight: 600;
}
.modal .modal-inner .modal-cont .code .txt-copy {
    position: absolute;
    right: 0;
    color: #767676;
    font-size: 12px;
    font-weight: 500;
    text-decoration-line: underline;
}
.modal .modal-inner .modal-cont .code {
    position: relative;
    display: flex;
    align-items: center;
}
.modal .modal-inner .modal-cont .code .txt-product-code {
    color: #375FFE;
    font-size: 24px;
    font-weight: 700;
}
.modal .modal-inner .modal-cont .code .txt-copy {
    position: absolute;
    right: 0;
    color: #767676;
    font-size: 12px;
    font-weight: 500;
    text-decoration-line: underline;
}
.modal .modal-inner .modal-cont .code .txt-copy-done {
    position: absolute;
    right: 0;
    color: #375FFE;
    font-size: 12px;
    font-weight: 500;
}
.modal .modal-inner .modal-btn {
	display: flex;
	justify-content: center;
	margin-left: -6px;
	margin-right: -6px;
}
.modal .modal-inner .modal-btn .btn-default {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 16px 6px 0 6px;
	padding: 0 10px;
    width: 100%;
	height: 56px;
	color: #FFF;
	font-weight: 700;
	font-size: 18px;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	border-radius: 10px;
}
.modal .modal-inner .modal-btn .btn-default.sm {
	padding: 0 10px;
    width: 100%;
	height: 46px;
	color: #FFF;
	font-weight: 700;
	font-size: 16px;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	border-radius: 10px;
}
.modal .modal-inner .modal-btn .btn-default.half {
    width: 50%;
}
.modal .modal-inner .modal-btn:active {
	transform: scale(0.98);
}
.modal .modal-inner .modal-btn .btn-default.confirm {
	background-color: #000;
	color: #fff;
}
.modal .modal-inner .modal-btn .btn-default.continue {
	background-color: #EEE;
	color: #000;
}
.modal .modal-inner .modal-btn .btn-default.naver {
	background-color: #03C75A;
	color: #fff;
}
.modal .modal-inner .modal-btn-details {	
    margin-top: 12px;
    display: flex;
	height: 20px;
	justify-content: center;
	align-items: center;
	color: #A5A5A5;
	font-size: 12px;
    line-height: 12px;
	font-weight: 500;
}
.modal .modal-inner .modal-btn-details::after {
	content: "";
	display: inline-block;
	background-image: url("../images/ico-more.png");
	background-size: 12px 12px;
	width: 12px;
	height: 12px;
	vertical-align: middle;
}
.modal .modal-inner .modal-btn-details.kakao::before {
    margin-right: 4px;
    margin-top: 2px;
	content: "";
	display: inline-block;
	background-image: url("../images/ico-kakao-channel.png");
	background-size: 14px 14px;
	width: 14px;
	height: 14px;
	vertical-align: middle;
}
.modal .modal-inner .code-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    background-color: #375fee1a;    
    border-radius: 10px;
}
.modal .modal-inner .txt-title {
    color: #375FEE;
    font-size: 16px;
    font-weight: 500;
}
.modal .modal-inner .txt-code {
    color: #375FEE;
    font-size: 24px;
    font-weight: 600;
}
.lucky-wheel {
    justify-content: center;
    display: flex;
    align-items: center;
}
.lucky-wheel-info {
    justify-content: space-between;
    position: absolute;
    top: 30px;
    width: 170px;
    background-color: #A5A5A5;
    border-radius: 10px;
    padding: 10px 12px;
    display: flex;
    color: #FFF;
    font-size: 15px;
    font-weight: 400;
}
.lucky-wheel-info .highlight {
    color: #FFF;
    font-weight: 700;
}

.picker{
    position:fixed;
    left:0;
    top:0;
    z-index:3000;
    width:100%;
    height:100%;
    overflow:hidden;
    text-align:center;
    font-size:14px;
    background-color:rgba(37,38,45,.4)
}
.picker .picker-panel{
    position:absolute;
    z-index:600;
    width:100%;
    height:273px;
    background:#FFF;
}
.picker .picker-panel.up{
    bottom:0;
    animation:select-scroll-showup .3s 0s linear;
    max-width: var(--max-screen-width);
    left: 50%;
    transform: translate(-50%, 0%);
}
.picker .picker-panel.down{
    bottom:-273px;
    animation:select-scroll-hidedown .3s 0s linear
}
.picker .picker-panel .picker-choose{
    position:relative;
    height:60px;
    color:#999
}
.picker .picker-panel .cancel,.picker .picker-panel .confirm{
    position:absolute;
    top:6px;
    padding:16px;
    font-size:14px
}
.picker .picker-panel .confirm{
    right:0;
    color:#007bff
}
.picker .picker-panel .cancel{
    left:0
}
.picker .picker-panel .picker-title{
    margin:0;
    line-height:60px;
    font-weight:400;
    text-align:center;
    font-size:18px;
    color:#333
}
.picker .picker-panel .picker-content{
    position:relative;
    top:20px
}
.picker .picker-panel .mask-bottom,.picker .picker-panel .mask-top{
    z-index:10;
    width:100%;
    height:68px;
    pointer-events:none;
    transform:translateZ(0)
}
.picker .picker-panel .mask-top{
    position:absolute;
    top:0;
    background:linear-gradient(0deg,hsla(0,0%,100%,.4),hsla(0,0%,100%,.8))
}
.picker .picker-panel .mask-bottom{
    position:absolute;
    bottom:1px;
    background:linear-gradient(180deg,hsla(0,0%,100%,.4),hsla(0,0%,100%,.8))
}
.picker .picker-panel .border-bottom-1px:after,.picker .picker-panel .border-bottom-1px:before,.picker .picker-panel .border-top-1px:after,.picker .picker-panel .border-top-1px:before{
    content:"";
    display:block;
    position:absolute;
    transform-origin:0 0
}
.picker .picker-panel .border-bottom-1px:after{
    border-bottom:1px solid #ebebeb;
    left:0;
    bottom:0;
    transform-origin:0 bottom;
    width:200%;
    transform:scale(.5) translateZ(0)
}
.picker .picker-panel .border-top-1px:before{
    width:200%;
    transform:scale(.5) translateZ(0);
    border-top:1px solid #ebebeb;
    left:0;
    top:0;
    transform-origin:0 top
}
.picker .picker-panel .wheel-wrapper{
    display:-ms-flexbox;
    display:flex;
    padding:0 16px
}
.picker .picker-panel .wheel{
    -ms-flex:1;
    flex:1;
    -ms-flex-preferred-size:-8e;
    flex-basis:-8e;
    width:1%;
    height:173px;
    overflow:hidden;
    font-size:20px
}
.picker .picker-panel .wheel-scroll{
    padding:0;
    margin-top:68px;
    line-height:36px;
    list-style:none
}
.picker .picker-panel .wheel-item{
    list-style:none;
    height:36px;
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
    color:#333
}
.picker .picker-footer{
    height:20px
}

/* 소비요정 당첨자 발표 */
.modal .modal-inner .modal-cont .bg-scroll-sobiyojung {
    overflow-y: scroll;
    max-height: 40vh;
    position: relative;    
    margin: 16px 0 12px 0;
    padding: 12px 16px;
    border: 1px solid #F0F5FF;
    border-radius: 8px;    
    background-color: white;
}
.reward-group-sobiyojung {
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}
.reward-container-sobiyojung {
    background-color: white;
    padding: 15px;
    border: 1px solid #f0f5ff;
    border-top: none;
}
.reward-title-sobiyojung {
	background-color: #f0f5ff;
    color: #3056CC;
	padding: 10px;
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: left;
}
.modal .modal-inner .modal-cont .num-wrap-sobiyojung {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.modal .modal-inner .modal-cont .txt-num-sobiyojung {
    flex: 1;
    min-width: 120px;
    color: #666;
    font-size: 14px;
    padding: 2px 0;
}