html{
    width: 100%;
    height: 100%;
    -webkit-tap-highlight-color: transparent;
}
body{
    width: 100%;
    height: 100%;
    font-family: 'NeueEinstellung', Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 12px;
    background-color: #1c1c1c;
    margin: 0;
}
a{
    color: inherit;
    text-decoration: none;
    background-color: transparent;
}
li{
    display: list-item;
    list-style: none;
    text-align: -webkit-match-parent;
}

/*------------------------------ Header Bar ------------------------------*/
#header-bar{
    float: left;
    background: #00276B;
    position: relative;
    width: 100%;
    height: 59px;
    overflow: hidden;
    display: block;
}
.bar-wrap{
	display: table;
    float: left;
    background: #00276B;
    padding: 0;
    margin: 0 0 0 0;
    text-align: center;
    width: 100%;
    border-bottom: solid 0px #eee;
}
.bar-wrap span{
    padding: 0;
    display: table-cell;
    width: 60px;
    vertical-align: middle;
    font-size: 22px;
}
.open-menu span{
    display: block;
    width: 32px;
    margin: 0 auto;
    padding: 4px 8px;
    color: #fff;
    cursor: pointer;
}
.bar-wrap .main-logo{
    display: table-cell;
    padding: 0;
    margin: 0;
    vertical-align: middle;
}
.bar-wrap .main-logo .img-logo{
    width: 180px;
    margin: 14px auto 12px auto;
    display: block;
    max-width: 100%;
    height: auto;
}
.menu-shadow{
    left: -100%;
    top: 0;
}
.menu-shadow.visible{
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.25;
    z-index: 9999;
    position: fixed;
}
.menu-wrap{
    left: -100%;
    background: #101010;
    height: 100%;
    float: left;
    padding: 7px 1px 0 1px;
    position: fixed;
    top: 0;
    width: 299px;
    z-index: 10000;
    overflow: auto;
    -webkit-transition: all 500ms cubic-bezier(0.230,1.000,0.320,1.000);
    -moz-transition: all 500ms cubic-bezier(0.230,1.000,0.320,1.000);
    -o-transition: all 500ms cubic-bezier(0.230,1.000,0.320,1.000);
    transition: all 500ms cubic-bezier(0.230,1.000,0.320,1.000);
    -webkit-transition-timing-function: cubic-bezier(0.230,1.000,0.320,1.000);
    -moz-transition-timing-function: cubic-bezier(0.230,1.000,0.320,1.000);
    -o-transition-timing-function: cubic-bezier(0.230,1.000,0.320,1.000);
    transition-timing-function: cubic-bezier(0.230,1.000,0.320,1.000);
}
.menu-wrap.slidein{
    left: 0;
}
.top-menu{
    float: left;
    width: 100%;
}
.menu-close{
    float: right;
    margin: 10px 5px 0 0;
}
.menu-close span{
    padding: 9px 11px;
    margin: 0;
    font-size: 16px;
    color: #fff;
    border: solid 3px #fff;
    border-radius: 50%;
    cursor: pointer;
}
.top-menu-logo{
    float: left;
    width: 76%;
    margin: 10px 0 0 14px;
}
.top-menu-logo img{
    width: 100%;
    padding: 0;
}
.menu-wrap ul{
    float: left;
    list-style: outside none none;
    margin: 20px 0 0 0;
    padding: 20px 0 0 0;
    width: 100%;
    border-top: solid 0px #eee;
}
.menu-wrap ul li{
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 16px;
    text-align: left;
    padding: 0;
    position: relative;
}
.menu-wrap ul li a{
    float: left;
    position: relative;
    width: 100%;
    padding: 0;
}
.menu-wrap ul li a:hover .menu-item{
    background: #202020;
}
.menu-wrap ul li a .menu-item{
    float: left;
    position: relative;
    width: calc(100% - 24px);
    padding: 12px;
}
.social-buttons{
    display: block;
    float: left;
    width: calc(100% - 24px);
    margin: 42px 12px 0 12px;
}
.social-title{
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 28px;
    margin: 0 12px 0 0;
    float: left;
}
.social-item{
    background: #fff;
    color: #1c1c1c;
    width: 28px;
    height: 28px;
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
    text-align: center;
    border-radius: 18px;
    margin: 0 8px 0 0;
    float: left;
}
.social-item a{
    display: block;
}

/*------------------------------ Page Main Wrap --------------------------*/
#page-main-wrap{
    display: block;
    width: 100%;
    position: relative;
    overflow: hidden;
    background-color: #1c1c1c;
    z-index: 0;
}
.page-section{
	display: block;
	width: 90%;
	margin: 0 auto 20px;
	position: relative;
	overflow: hidden;
}
.page-section-title{
    display: block;
    color: #fff;
    font-size: 18px;
    line-height: 22px;
    font-weight: 700;
    letter-spacing: 0;
    padding: 0;
    margin: 30px 0 15px 0;
    cursor: default;
    text-transform: uppercase;
}
.page-section-title.inline{
    display: inline-block;
}
.view-all{
    position: relative;
    background: #000;
    margin: 0 5px;
    float: right;
    border: solid #000 0px;
    border-radius: 2px;
}
.view-all a{
    font-size: 12px;
    line-height: 12px;
    padding: 4px 6px;
}
.view-all a span{
    font-size: 14px;
    line-height: 22px;
}
.view-all a:hover{
    color: #FFBF00;
}
.pc-view{}
.phone-view{}

/*------------------------------ Item List -------------------------------*/
.item-list-wrap{
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.scroll-x{
    display: flex;
    flex-wrap: nowrap;
    overflow-x: scroll;
    scrollbar-width: none;
}
.scroll-x::-webkit-scrollbar{
    background: transparent;
}
.list-item{
    position: relative;
    width: 100%;
    padding: 0;
    background: #fff;
}
.list-item a{
    display:block;
    width:100%;
}
.list-item img{
    display: block;
    width:100%;
    max-width: 100%;
}
.list-item.one-half{
    flex: 0 0 calc(50% - 4px);
    max-width: calc(50% - 4px);
}
.list-item.one-third{
    flex: 0 0 calc(33.33333333% - 5.4px);
    max-width: calc(33.33333333% - 5.4px);
}
.list-item.one-fourth{
    flex: 0 0 calc(25% - 6px);
    max-width: calc(25% - 6px);
}
.list-item.one-fifth{
    flex: 0 0 calc(20% - 6.4px);
    max-width: calc(20% - 6.4px);
}
.list-item.one-sixth{
    flex: 0 0 calc(16.66666666% - 6.7px);
    max-width: calc(16.66666666% - 6.7px);
}
.list-item.two-fifth{
    flex: 0 0 calc(40% - 0px);
    max-width: calc(40% - 0px);
}
.item-title h1{
    display: block;
    color: #3a3a3a;
    font-size: 14px;
    font-weight: 700;
    line-height: 16px;
    letter-spacing: -0.5px;
    padding: 0 4px;
    margin: 9px 0;
}
.item-title h2{
    display: block;
    color: #fc2121;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -0.5px;
    padding: 0 4px;
    margin: 0 0 9px 0;
}
.over-img{
    position: absolute;
    bottom: 0;
    right: 0;
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    align-content: flex-end;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row-reverse;
}
.over-img h1{
    color: #8a8a8a;
    padding: 1px 12px;
}
.list-item a:hover .over-img{
    border: #FFBF00 2px solid;
}
.black-bg{
    padding: 12px 0;
    background: #000;
}

/*------------------------------ Video Player ----------------------------*/
.player-page{
    height: calc(100% - 60px);
}
#player-columns{
    display: flex;
    flex-wrap: wrap;
    position: relative;
    width: 90%;
    height: calc(100% - 30px);
    margin: 30px auto 0;
}
#player-primary-column{
    flex: 0 0 calc(100% - 280px);
    max-width: calc(100% - 280px);
    max-height: 100%;
}
#player-secondary-column{
    flex: 0 0 280px;
    max-width: 280px;
    max-height: 100%;
}
.wrap-primary{
    width: calc(100% - 40px);
    margin: 0 auto;
}
.wrap-secondary{
    width: calc(100% - 20px);
    margin: 0 20px 0 0;
    position: relative;
    height: 100%;
}
.player-title{
    font-size: 18px;
    font-weight: 700;
    color: #8a8a8a;
    text-align: left;
    width: 100%;
    margin: 6px 0;
    cursor: default;
}
#video-player{
    width: 100%;
}
#main-video{
    width: 100%;
}
.playlist{
    position: relative;
    width: 100%;
    height: calc(100% - 280px);
    overflow-y: scroll;
    padding: 0;
    margin: 10px 0 10px 0;
}
.playlist::-webkit-scrollbar{
    width: 10px;
    background: transparent;
}
.playlist::-webkit-scrollbar-thumb{
    background: #8a8a8a;
    border-radius: 4px;
}
.top-playlist-ad{
    display: block;
    width: 100%;
    height: 260px;
    margin: 0;
    overflow: hidden;
}
.top-playlist-ad a{
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
}
.top-playlist-ad a img{
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}
.playlist li{
    cursor: pointer;
}
.playlist li.playing{
    pointer-events: none;
}
.playlist li.playing .over-img{
    border: #FFBF00 2px solid;
}
.playlist li:hover .over-img{
    border: #FFBF00 2px solid;
}

@media (min-width:480px){}
@media (min-width:670px){}

@media (min-width:768px){
    .item-list-wrap.phone-list{
        display: none;
    }
}

@media (min-width:992px){
    .playlist .list-item.one-half{
        flex: 0 0 calc(100% - 8px);
        max-width: calc(100% - 8px);
    }
}

@media (min-width:1200px){}
@media (min-width:1310px){}
@media (max-width:991px){
    .player-page{
        height: auto;
    }
    #player-columns{
        display: block;
        width: 100%;
        margin: 0;
    }
    #player-primary-column{
        display: block;
        width: 100%;
        max-width: 100%;
    }
    #player-secondary-column{
        display: block;
        width: 100%;
        max-width: 100%;
    }
    .wrap-primary{
        width: 100%;
        margin: 0;
    }
    .wrap-secondary{
        width: 96%;
        margin: 20px auto;
    }
    .player-title{
        font-size: 16px;
        margin: 6px 2%;
    }
    .playlist{
        height: auto;
        overflow-y: auto;
    }
    .top-playlist-ad{
        height: auto;
    }
}

@media (max-width:767px){
    .item-list-wrap.pc-list{
        display: none;
    }
}

@media (max-width:669px){
    .page-section{
        width: 96%;
    }
    .item-title h1{
        font-size: 12px;
        line-height: 12px;
    }
    .over-img h1{
        font-size: 14px;
        line-height: 16px;
    }
}

@media (max-width:480px){}        
