@charset "UTF-8";

.right {
    float: right;
}

.clearfix::after {
    display: block;
    content: '';
    clear: both;
}

video {
    -webkit-mask-image: -webkit-radial-gradient(white, black);
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
}


/* guide padding */
[data-view-guide="true"] .inner {
    position: relative;
}

[data-view-guide="true"] .inner:not(.no-wrap):before,
[data-view-guide="true"] .inner:not(.no-wrap):after {
    content: '';
    display: block;
    width: 35px;
    height: 100%;
    position: absolute;
    top: 0;
    background: #FFB2B2;
    opacity: 0.3;
}

[data-view-guide="true"] .inner:not(.no-wrap):before {
    left: 0;
}

[data-view-guide="true"] .inner:not(.no-wrap):after {
    right: 0;
}

/* design-guide */
.inner {
    max-width: 375px;
    margin: 0 auto;
    box-sizing: border-box;
    overflow: hidden;
}

section, .section {
    padding: 0 35px;
}

.inner.no-wrap {
    padding: 0;
    /*max-width: unset;*/
    overflow: inherit;
}



/* 유의사항 */
#eventInfo .info-tit {
    padding-top: 80px;
    font-weight: 700;
    font-size: 24px;
    line-height: 38px;
}

#eventInfo .info-cont {
    margin-top: 40px;
    margin-bottom: 30px;
}

#eventInfo .info-list {
    margin-top: 20px;
    word-break: keep-all;
}

#eventInfo .noline .info-list {
    margin-top: 0;
}

#eventInfo .info-list li {
    position: relative;
    padding-left: 10px;
    font-size: 15px;
    line-height: 26px;
}

#eventInfo .info-list li::before {
    /*content: "・";*/
    content: "";
    position: absolute;
    top: 11px;
    left: 1px;
    display: inline-block;
    width: 2px;
    height: 2px;
    background: #333333;
    border-radius: 50%;
}

.accordion-block {
    padding: 20px 0;
    overflow: hidden;
}

.accordion-block.noline {
    padding: 40px 0 30px;
}

.accordion-block .accordion-btn {
    position: relative;
    width: 100%;
    text-align: left;
    font-weight: 700;
    font-size: 18px;
    /*line-height: 21px;*/
    line-height: 28px;
}

.accordion-block .accordion-btn span {
    vertical-align: middle;
}

.accordion-block .accordion-btn .title {
    display: inline-block;
    width: calc(100% - 25px);
}

.accordion-block .accordion-btn .icon-plus {
    position: absolute;
    top: 2px;
    right: 0;
}

.accordion-block .accordion-btn .icon-plus svg {
    transform: rotate(0deg);
    transition: transform 0.3s;
}

.accordion-block .accordion-btn.is-active .icon-plus svg {
    transform: rotate(225deg);
    transform-origin: center;
    transition: transform 0.3s;
}

.accordion-block .accordion-content {
    display: none;
}

.accordion-block.unfold .accordion-content {
    display: block;
}

.accordion-block.unfold .accordion-btn {
    pointer-events: none;
}

.accordion-block.unfold .icon-plus {
    display: none;
}

.serial {
    padding-bottom: 140px;
    font-size: 15px;
    font-weight: 700;
    line-height: 26px;
}

#eventInfo .serial .info-list li::before {
    width: 4px;
    height: 4px;
}


/* 플로팅 버튼 */
#btnApply {
    position: fixed;
    bottom: 23px;
    width: 100%;
    text-align: center;
}

#btnApply .apply-btn {
    display: inline-block;
    width: 325px;
    height: 66px;
    margin: 0 auto;
    line-height: 66px;
    text-align: center;
    background: #FFD600;
    color: #000;
    font-size: 20px;
    font-weight: 700;
    border-radius: 25px;
}

/* theme color */
.theme-default #eventInfo {
    background: #F1F1F1;
}

.theme-default #eventInfo * {
    color: #333333;
}

.theme-dark #eventInfo {
    background: #444444;
}

.theme-dark #eventInfo * {
    color: #F1F1F1;
}

.theme-default .accordion-block {
    border-top: 2px solid #333333;
}

.theme-dark .accordion-block {
    border-top: 2px solid #F1F1F1;
}

.accordion-block.noline {
    border-top: none;
}

.theme-default .accordion-block .accordion-btn .icon-plus svg {
    stroke: #333333;
}

.theme-dark .accordion-block .accordion-btn .icon-plus svg {
    stroke: #F1F1F1;
}




/* 공유하기 */
#share {
    /*width:100%;*/
    /*padding:60px;*/
    text-align: center;
    box-sizing: border-box;
}

#share .share-btn .btn {
    display: inline-block;
    vertical-align: middle;
    padding: 25px 40px;
    min-width: 188px;
    max-height: 75px;
    background: #fff;
    border-radius: 40px;
    font-size: 21px;
    line-height: 21px;
    font-weight: 700;
    box-sizing: border-box;
}

#share .share-btn svg {
    margin-right: 5px;
    vertical-align: sub;
}

/* theme color */
.theme-default #share {
    background: #FFD600;
}

.theme-dark #share {
    background: #fff;
}

.theme-default #share .share-btn .btn {
    background: #fff;
    color: #333333;
}

.theme-dark #share .share-btn .btn {
    background: #555555;
    color: #fff;
}

.theme-default #share .share-btn svg {
    stroke: #333333;
}

.theme-dark #share .share-btn svg {
    stroke: #ffffff;
}


/* 공유하기 팝업 */
.popup-share .pop-content {
    position: absolute;
    left: 0;
    bottom: -500px;
    width: 100%;
    transition: bottom 0.3s;
}

.popup-share .pop-content-inner {
    margin: 0 auto;
    padding: 10px 18px 81px 17px;
    max-width: 375px;
    background: #fff;
    border-radius: 30px 30px 0 0;
    text-align: center;
    box-sizing: border-box;
}

.popup-share .btn-close {
    position: relative;
    width: 35px;
    height: 5px;
    border-radius: 20px;
    text-indent: -9999px;
    background: #EAECEF;
}

.popup-share .pop-share-btn-list {
    margin-top: 35px;
}

.popup-share li+li {
    margin-top: 10px;
}

.popup-share .pop-share-btn-list a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 60px;
    background: #F1F1F1;
    border-radius: 15px;
    font-weight: 600;
    color: #000;
}

.popup-share .pop-share-btn-icon {
    margin-right: 6px;
    width: 26px;
    height: 26px;
}

.popup-share .pop-share-btn-list button:after {
    content: none;
}

.popup-share .pop-share-btn-list .kakaotalk {
    background: #FAE200;
}

.popup-share .pop-share-btn-list .facebook {
    background: #1877F2;
    color: #fff;
}

.popup-share .pop-share-btn-list .twitter {
    background: #1D9BF0;
    color: #fff;
}

.popup-share.on {
    /*display: block;*/
    visibility: visible;
    opacity: 1;
}

.popup-share.on .pop-content {
    bottom: -50px;
}




/* 팝업 */
.popups {
    /*display: none;*/
    visibility: hidden;
    opacity: 0;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 999;
}

.popups.on {
    /*display: block;*/
    visibility: visible;
    opacity: 1;
}

.popups .dimmed {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.6;
}

.popups .modal-table {
    display: table;
    width: 100%;
    height: 100%;
    table-layout: fixed;
}

.popups .modal-cell {
    display: table-cell;
    width: 100%;
    height: 100%;
    vertical-align: middle;
    text-align: center;
}

.popups .modal-content {
    position: relative;
    max-width: 330px;
    margin: 0 auto;
    padding: 30px;
    background: #fff;
    box-sizing: border-box;
    padding: 14px;
    border-radius: 20px;
}

.popups .copy {
    text-align: center;
    margin: 26px auto 34px;
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    color: #000000;
}

.popups .okay-btn {
    width: 100%;
}

.popups .okay-btn .btn-ok {
    display: inline-block;
    padding: 22px 0 22px;
    width: 100%;
    text-align: center;
    line-height: 24px;
    background: #799FAD;
    /* custom */
    border-radius: 10px;
    font-size: 20px;
    font-weight: 700;
    color: #FFFFFF;
    box-sizing: border-box;
}

.popups .okay-btn.cnt-2 .btn-ok {
    display: inline-block;
    width: 49%;
    /* 버튼 두개일 때 디자인 필요 */
}

.popups .title {
    line-height: 24px;
    text-align: center;
    margin: 28px auto 34px;
    font-weight: 700;
    font-size: 20px;
    color: #000000;
    letter-spacing: -0.5px;;
}
.popups .title .sub {
    display: block;
    margin-top: 20px;
    font-size:15px;
    line-height:18px;
    letter-spacing: -1px;
    font-weight:400;
}




@media screen and (max-width: 375px) {
    .inner.no-wrap {
        overflow: hidden;
    }
}

@media screen and (max-width: 360px) {
    /* .inner {padding: 0 25px;} */

    #share .share-btn .btn {
        padding: 25px 28px;
    }
}

@media screen and (max-width: 340px) {}