@charset "utf-8";

@import url('./font.css');
@font-face {
    font-family: 'NorBComic-B';
    font-weight: normal;
    src: url('./../../../../fonts/NorBComic-Bold/NorBComic-Bold.eot');
    src: url('./../../../../fonts/NorBComic-Bold/NorBComic-Bold.svg#NorBComic-Bold') format('svg'),
        url('./../../../../fonts/NorBComic-Bold/NorBComic-Bold.ttf') format('truetype'),
        url('./../../../../fonts/NorBComic-Bold/NorBComic-Bold.woff') format('woff'),
        url('./../../../../fonts/NorBComic-Bold/NorBComic-Bold.woff2') format('woff2');
}

@font-face {
    font-family: 'NorBComic-R';
    font-weight: normal;
    src: url('./../../../../fonts/NorBComic-Regular/NorBComic-Regular.eot');
    src: url('./../../../../fonts/NorBComic-Regular/NorBComic-Regular.svg#NorBComic-Regular') format('svg'),
        url('./../../../../fonts/NorBComic-Regular/NorBComic-Regular.ttf') format('truetype'),
        url('./../../../../fonts/NorBComic-Regular/NorBComic-Regular.woff') format('woff'),
        url('./../../../../fonts/NorBComic-Regular/NorBComic-Regular.woff2') format('woff2');
}

.body {
    overflow-y: hidden;
}

.bts-popup {
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    max-width: none;
    max-height: none;
    z-index: 1000;
}

.bts-popup-proof-bi {
    background-color: rgba(0, 0, 0, 1);
}

.bts-popup-proof-bi>.video {
    display: block;
    position: absolute;
    max-width: 1440px;
    width: 100%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

.bts-popup-proof-bi>.video>video {
    display: block;
    position: relative;
    width: 100%;
}

.bts-popup-proof-bi>.btn-skip {
    display: block;
    position: fixed;
    bottom: 110px;
    left: 50%;
    font-size: 36px;
    font-family: 'Monte Stella';
    font-weight: 200;
    color: #fff;
    text-align: center;
    transform: translate(-50%);
    -webkit-transform: translate(-50%);
    -moz-transform: translate(-50%);
    -ms-transform: translate(-50%);
    -o-transform: translate(-50%);
    cursor: pointer;
}


.proof {
    background-color: #000;

}

.proof .album-detail {
    padding: 0;
}

.proof .album-detail .contents-title {
    background: url("./../../../../images/bts/discography/butter/butter_logo.png") no-repeat center top/180px auto;
    font-family: "NorBComic-B";
    font-size: 33px;
    text-shadow: none;
    color: #000;
}

.proof .album-detail .contents-title span {
    display: block;
    padding-top: 60px;
    font-family: 'NorBComic-B';
    font-size: 38px;
    line-height: 1.4;
}

.proof .album-detail .txt_hidden {
    opacity: 0;
    visibility: hidden;
}

/* 섹션 공통 */
.bts-section>.con {
    text-align: center;
}

.bts-section>.con>.title-img {
    display: block;
    position: relative;
    text-align: center;
}

.bts-section>.con>.title-img>img {
    display: inline-block;
    position: relative;
}

.bts-section>.con>.sub-title-img {
    display: inline-block;
    position: relative;
    text-align: center;
}

.bts-section>.con>.sub-title-img>img {
    display: block;
    position: relative;
}

.bts-section>.con>.desc {
    display: block;
    position: relative;
}

.bts-section>.con>.desc>p {}

/* Between PC And Mobile */
@media screen and (max-width: 1440px) {
}

/* For Mobile */
@media screen and (max-width: 768px) {
    #footer {
        /* display: none; */
        position: absolute !important;
        opacity: 0;
        bottom: 0;
        width: 0;
        overflow: hidden;
    }

    #footer.on {
        /*opacity: 1;
        transition: opacity ease-in;
        -webkit-transition: opacity ease-in;
        -moz-transition: opacity ease-in;
        -ms-transition: opacity ease-in;
        -o-transition: opacity ease-in;
        */
        animation: fadeIn .5s ease-in;
        -webkit-animation: fadeIn .5s ease-in;
        opacity: 1;
        width: auto;
        overflow: visible;
    }

    #footer.off {
        /*opacity: 0;
        transition: opacity ease-in;
        -webkit-transition: opacity ease-in;
        -moz-transition: opacity ease-in;
        -ms-transition: opacity ease-in;
        -o-transition: opacity ease-in;
        */
        animation: fadeOut .5s ease-in;
        -webkit-animation: fadeOut .5s ease-in;
        opacity: 0;
        width: 0;
        overflow: hidden;
    }

    @keyframes fadeIn {
        0% {
            width: auto;
            opacity: 0;
        }

        100% {
            opacity: 1;
        }
    }

    @keyframes fadeOut {
        0% {
            width: auto;
            opacity: 1;
        }

        99% {
            width: 0;
        }

        100% {
            width: 0;
            opacity: 0;
        }
    }

    /* popup  */
    .bts-popup-proof-bi>.video {
        width: 100vw;
    }
}