﻿@import url(//fonts.googleapis.com/earlyaccess/nanumgothic.css);
.readySection {
    width: 100vw;
    height: 70vh;
    padding: 3em;
    font-size: 2em;
    text-align: center;
    box-sizing: border-box;
}

body {
    padding: 0;
    margin: 0;
    font-family: 'Nanum Gothic', 나눔고딕, '맑은 고딕', 돋움;
    /* Font varient */
    font-variant-ligatures: none;
    -webkit-font-variant-ligatures: none;
    /* Smoothing */
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    text-shadow: rgba(0, 0, 0, .01) 0 0 1px;
    background: #eee;
    overflow-x: hidden;
    font-size: 70%;
    text-overflow: ellipsis;
}

span,
.title,
#titleBar>#title,
#news>#contents,
#info {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

b {
    font-weight: 700;
    color: #0361d5;
}

@-webkit-keyframes pop-in {
    from {
        opacity: 0;
        left: 100vw;
        -webkit-transform: scale(0.5);
    }
    to {
        opacity: 1;
        left: 40vw;
        -webkit-transform: scale(1);
    }
}

@-moz-keyframes pop-in {
    from {
        opacity: 0;
        left: 100vw;
        -moz-transform: scale(0.5);
    }
    to {
        opacity: 1;
        left: 40vw;
        -moz-transform: scale(1);
    }
}

@keyframes pop-in {
    from {
        opacity: 0;
        left: 100vw;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        left: 40vw;
        transform: scale(1);
    }
}
@-webkit-keyframes fade-in {
    to {
        opacity: 1;
        visibility: visible;
    }
}

@-moz-keyframes fade-in {
    to {
        opacity: 1;
        visibility: visible;
    }
}

@keyframes fade-in {
    to {
        opacity: 1;
        visibility: visible;
    }
}
@-webkit-keyframes intro {
    to {
        padding: 5px 1vw;
        margin-bottom: 0;
    }
}

@-moz-keyframes intro {
    to {
        padding: 5px 1vw;
        margin-bottom: 0;
    }
}

@keyframes intro {
    to {
        padding: 5px 1vw;
        margin-bottom: 0;
    }
}

.youtube {
    width: 100vw;
    height: calc(9 / 16 * 100vw);
}

ul,
li {
    list-style-type: none;
    display: inline-block;
}

.foldedList {
    background: white;
}

.foldedList h1 {
    width: 100vw;
    border-bottom: 1px solid #ccc;
    box-sizing: border-box;
    padding: 0.7em 1em;
    margin: 0;
    transition: background 0.5s color 0.5s;
}

.foldedList h1:after {
    content: ' ';
    width: 14px;
    height: 14px;
    display: block;
    float: right;
    background-image: url('../img/arrow_top_black.png');
    background-size: 14px;
    background-position: center;
    background-repeat: no-repeat;
    margin: 0em;
    transition: transform 0.5s;
}

.foldedList li.show h1:after {
    transform: rotate(180deg);
}

.foldedList .folded {
    border-bottom: 1px solid #ccc;
    height: 0;
    opacity: 0;
    overflow: hidden;
    transition: opacity 0.5s ease-in;
}

.foldedList li.show .folded {
    height: auto;
    opacity: 1;
}

.foldedList figure {
    margin: 0;
    padding: 0;
}

.foldedList figcaption {
    position: relative;
    margin: 0;
    margin-top: -2em;
    padding: 0.5em 1em;
    background: rgba(17, 17, 17, 0.667);
    color: white;
    text-align: center;
    z-index: 8;
}

.foldedList h2,
.foldedList p {
    margin: 1em;
    line-height: 150%;
}

/* ::-webkit-scrollbar {
    display: none;
} */

a,
a:link,
a:visited,
a:hover {
    color: inherit;
    text-decoration: none;
}

.imgPlay {
    display: inline-block;
    width: .8rem;
    vertical-align: middle;
}

header,
footer,
section {
    width: 100vw;
}

section img {
    width: 100vw;
    /* TODO: Delete this later */
    margin-bottom: -3px;
}

button {
    background: none;
    border: none;
    outline: none;
}

header {
    background: #0361d5;
    color: white;
    height: fit-content;
}

.rTable {
    display: table;
    width: 100%;
    background: none;
    /* background: #f0f0f0; */
    font-size: 1.2em;
    text-align: center;
}

.rTableRow {
    display: table-row;
}

.rTableColumn1 {
    display: table-column;
}

.rTableColumn2 {
    display: table-column;
}

.rTableHeading {
    display: table-cell;
    font-weight: bold;
    padding: 0.5em 0.9em;
    vertical-align: middle;
}

.rTableCell,
.rTableHead {
    display: table-cell;
    padding: 0.5em 0.3em;
    white-space: nowrap;
}

.rTableRow.hg-2em .rTableCell,
.rTableRow.hg-2em .rTableHead{min-height:2em;line-height:2em}
.rTableRow.hg-2em .nor{font-weight:normal}

.rTableCell img {
    width: 33px;
}

.rTableHead {
    font-weight: bold;
    border-bottom: 1px solid #ccc;
}

.rTableFoot {
    display: table-footer-group;
    font-weight: bold;
}

.rTableBody {
    display: table-row-group;
}

#titleBar { 
    /* padding: 2em 1vw;
    margin-bottom: -40px; */
    padding: 2px 2.5vw 2px 1vw;
    margin-bottom: 0;
    height: 40px;
    display: flex;

    /* -webkit-animation: intro 0.5s;
    -moz-animation: intro 0.5s;
    -ms-animation: intro 0.5s;
    animation: intro 0.5s;
    -webkit-animation-delay: 1s;
    -moz-animation-delay: 1s;
    -ms-animation-delay: 1s;
    animation-delay: 1s;
    -webkit-animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards;
    -ms-animation-fill-mode: forwards;
    animation-fill-mode: forwards; */
}

#titleBar>button {
    display: inline-flex;
    width: 24px;
    height: 30px;
    margin: 12px 1vw;
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
	 cursor: pointer;
}

#titleBar>.back {
    background-image: url("../img/left.svg");
    margin-right: 40px;
    float: left;
}

#titleBar>#title {  
    flex: 1;
    text-align: center;
    padding: 0;
    font-weight: 600;
    line-height: 2em;
    margin: 0;
}

#titleBar>#title>img {
    height: 2em;
}

#titleBar>.refresh {
    background-image: url("../img/reload.svg");
    -webkit-transition: transform 0.5s;
    -moz-transition: transform 0.5s;
    transition: transform 0.5s, margin 0.5s;
    float: right;
}

#titleBar>.buttons {
    -webkit-transition: transform 0.5s;
    -moz-transition: transform 0.5s;
    transition: transform 0.5s, margin 0.5s;
    float: right;
}
#titleBar>.buttons.notice {
    background-image: url("../img/icon_notice.png");
}
#titleBar>.buttons.search {
    background-image: url("../img/icon_search.png");
}
#titleBar>.buttons.menu {
    background-image: url("../img/icon_menu3.png");
}

/* #titleBar>.refresh:hover,
#titleBar>.refresh:focus {
    -ms-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    margin-top: 5px;
} */

#titleBar>.menu {
    background-image: url("../img/menu.svg");
    float: right;
}

#titleBar>.refresh.main {
    background-image: url("../img/reload_main.png");
 }
 
#titleBar>.menu.main {
    background-image: url("../img/menu_main.png");
 }
 
 

/**
#titleBar.sec-main{position:relative;height:fit-content;width:100vw}
#titleBar.sec-main>#title{position:absolute;left:0;top:0;bottom:0;right:0;background-color:red;z-index:0;height:80px}
#titleBar.sec-main>#title> img{width:100%;max-width:100%;height:100%}
**/
#searchBar {
    width: 96vw;
    height: 40px;
    box-sizing: border-box;
    border: 1px solid #1d6ceb;
    /* border-radius: 0.5em; */
    box-shadow: 0 0 5px #339;
    padding: 0 3vw;
    margin: 5px 2vw;
    background: #fff;

    /* opacity: 0; */

    /* -webkit-animation: pop-in 0.5s;
    -moz-animation: pop-in 0.5s;
    -ms-animation: pop-in 0.5s;
    animation: pop-in 0.5s;
    -webkit-animation-delay: 1s;
    -moz-animation-delay: 1s;
    -ms-animation-delay: 1s;
    animation-delay: 1s;
    -webkit-animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards;
    -ms-animation-fill-mode: forwards;
    animation-fill-mode: forwards; */
}

#searchBar>form {
    width: 100%;
    display: flex;
    vertical-align: middle;
}

#searchBar input {
    flex: 1;
    height: 35px;
    font-size: 1.5em;
    margin: 0;
    border: none;
    outline: none;
    display: inline-block;
	background:transparent
}

#searchBar .search {
    width: 20px;
    height: 20px;
    margin: 10px 0;
    background-image: url("../img/search.svg");
    background-repeat: no-repeat;
    background-size: 20px;
    float: right;
}

#login {
    position: fixed;
    left: 5vw;
    top: 8vh;
    width: 90vw;
    z-index: 11;
    transform: scale(0);
}

#login.show {
    transform: scale(1);
}
#login+#login_close {
    font-weight: 100;
    font-size: 5em;
    position: fixed;
    top: 8vh;
    right: 5vw;
    color: black;
    opacity: 0;
    z-index: 12;
    background-image:url(../img/btn_close.png);
    background-size:contain;
    width:14px;
    height:14px;
    visibility: hidden;
}
#login.show+#login_close {
    -webkit-animation: fade-in 0.5s;
    -moz-animation: fade-in 0.5s;
    -ms-animation: fade-in 0.5s;
    animation: fade-in 0.5s;
    -webkit-animation-delay: 0.1s;
    -moz-animation-delay: 0.1s;
    -ms-animation-delay: 0.1s;
    animation-delay: 0.1s;
    -webkit-animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards;
    -ms-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

#drawer {
    position: fixed;
    right: 0;
    top: 0;
    width: 65vw;
    height: 100vh;
    background: rgba(238, 238, 238, 0.733);
    background-image: url("../img/bg_drawer.png");
    color: #333;
    font-size: 1.6em;
    font-weight: 700;
    line-height: 2.0em;
    vertical-align: middle;
    margin: 0;
    padding: 0;
    z-index: 11;
    transform: scale(0);
    /* overflow-y: scroll; */
    /* overflow-x: hidden; */
}

#drawer.show {
    -webkit-animation: pop-in 0.5s;
    -moz-animation: pop-in 0.5s;
    -ms-animation: pop-in 0.5s;
    animation: pop-in 0.5s;
    -webkit-animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards;
    -ms-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

#drawer+#close {
    font-weight: 100;
    font-size: 5em;
    position: fixed;
    top: 3vw;
    right: 68vw;
    color: white;
    opacity: 0;
    z-index: 10;
    visibility: hidden;
}
#drawer.show+#close {
    -webkit-animation: fade-in 0.5s;
    -moz-animation: fade-in 0.5s;
    -ms-animation: fade-in 0.5s;
    animation: fade-in 0.5s;
    -webkit-animation-delay: 1s;
    -moz-animation-delay: 1s;
    -ms-animation-delay: 1s;
    animation-delay: 1s;
    -webkit-animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards;
    -ms-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

#drawer li {
    width: 65vw;
    border-bottom: 1px solid rgba(153, 153, 153, 0.8);
    padding:0;
    letter-spacing: 0;
    box-sizing: border-box;
}
#drawer li a{display:block;padding: 0.7em 0em 0.7em 1em;}
#drawer li:focus, #drawer li:hover {
    background: rgba(0, 0, 0, .4);
}

#drawer img {
    height: 2em;
    margin: 0 0.5em 0 0;
    float: left;
}

#drawer li * {
    display: inline-block;
}

.dim {
    display: none;
    position: absolute;
    right: 0;
    top: 0;
    width: 100vw;
    height: 500vh;
    background: rgba(0, 0, 0, 0.667);
    opacity: 0;
    z-index: 9;
}

.dim.show {
    display: block;
    -webkit-animation: fade-in 0.5s;
    -moz-animation: fade-in 0.5s;
    -ms-animation: fade-in 0.5s;
    animation: fade-in 0.5s;
    -webkit-animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards;
    -ms-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

#ad {
    text-align: center;
}
#adtop {
    text-align: center;
    height: auto;
}

#place {
    text-align: center;
}

#place>* {
    vertical-align: middle;
}

img#point {
    width: 1em;
    height: 1em;
    vertical-align: text-top;
    margin-top: 0.1em;
}

img#point+span {
    color: #0361d5;
    font-weight: 800;
}

#timeline {
    color: white;
}

.time {
    padding: 0.5em 1vw;
}

.time>* {
    font-size: 4vw;
    vertical-align: middle;
}

.time>img {
    width: 13vw;
    margin: 1vw 4vw;
}

.time>.description {
    width: 40vw;
}

.time::before {
    display: inline-block;
    content: ' ';
    width: 1em;
    height: 1em;
    margin: 0.3em 6vw;
    vertical-align: middle;
}

.time:nth-child(odd) {
    background: #242f43;
}

.time:nth-child(even) {
    background: #2a3549;
}

.time.selected::before {
    background: url('../img/now.png') no-repeat;
    background-size: 1em 1em;
}

.time.selected {
    background: linear-gradient(90deg, #03a0e7, #0361d5);
}

#timeline>nav {
    padding: 0.5rem 0;
    text-align: center;
}

#timeline>nav>button {
    width: 2vw;
    height: 2vw;
    border-radius: 1vw;
    background: #babac1;
    margin: 7px;
    padding: 0;
}

#timeline>nav>button.selected {
    background: #0361d5;
}

#cast p {
    padding: 0 2rem;
}

.card {
    width: 100vw;
    height: fit-content;
    padding-bottom: 0.5em;
    background: #fff;
    /* box-shadow: 0px 0 5px #bbb; */
    transition: all 1s;
}

.nopadding {
padding :0 !important;
}


/* .card+.card {
    margin-top: 15px;
} */

.card h1 {
    color: #333;
    margin: 0.3em 0;
    font-weight: normal;
}

.card h2 {
    font-weight: 500;
    padding: 0.2em 0;
    margin: 0;
}

.card p {
    color: #555;
    margin: 0.3em 0;
    font-weight: normal;
}

.text {
    display: inline-block;
    color: #333;
    padding: 0.7em 5vw;
    font-size: 1.3em;
    word-break: break-all;
}

.text p>img {
    width: 0.8em;
    vertical-align: middle;
}

.card .title {position:relative;
    flex: 1; 
}

.card button {
    display: flex;
    flex: 1;
	
}
.card button:focus, .card button:hover {
    background: #ccc;
}
.card .btn-r-02 {
	position:absolute;right:100px;top:8px;height:2rem
}
.card .btn-r-02 img{max-width:130px;height:90%;width:auto}
.card .btn-r-03 {
	float:right;top:8px;height:2rem;margin-top:0.8em;
}
.card .btn-r-03 #update {
    margin-right: 1vw;
    line-height: 2rem;
    font-size: 1.1em;
    display: inline;
}
.menu1 {
    background: white;
    display: flex;
}
.menu1 button {
    flex: auto;
    padding: 0.7em 0.3em;
    font-size: 1.3em;
    text-align: center;
    cursor: pointer;
    background: #f4f4f4;
    display: block;
}
 
.slide {
    overflow-x: scroll;
}

.slideList {
    width: max-content;
    display: inline-block;
    margin: 0.8em 5vw;
}

.slideList img {
    width: 45vw;
}


.slideTab {
    background: white;
    display: flex;
}

.slideTab li {
    flex: auto;
    padding: 0.7em 0.3em;
    font-size: 1.5em;
    text-align: center;
	cursor:pointer;
}

.slideTab li.selected {
    font-weight: bold;
    color: #0361d5;
    border-bottom: 3px solid #0361d5;
}



.slidePage {
    height: 0;
    opacity: 0;
    transition: opacity 0.5s;
    overflow: hidden;
}

.slidePage.show {
    height: auto;
    opacity: 1;
}


.categories {
    width: 100vw;
    padding: 0;
    margin: 0;
    background: #eee;
    box-shadow: inset 0 0 10px #bbb;
    height: 0;
    overflow: hidden;
    /* display: none; */
    transition: all 0.5s;
}

.categories li {
    display: inline-block;
    width: calc(50vw - 2em - 5px);
    padding: 0;
    list-style-type: none;
    font-size: 1.2em
}

.categories li > a{display:block;padding:1em 0 1em 2em }

.categories li:hover:not(.selected) {
    background: #ccc;
}

.btnCategory::before {
    content: ' ';
    background-image: url('../img/arrow_top_black.png');
    display: inline-block;
}

.categories.show {
    /* display: block; */
    height: calc(7 * 4em);
}

.hidden {
    display: none;
}

.listNav {
    text-align: center;
    padding: 1rem 0;
}

.listNav li {
    list-style-type: none;
    display: inline-block;
    width: 10vw;
    height: 6vw;line-height:6vw;
    border: 1px solid #ccc;
    text-align: center;
    padding: 0;
}

.listNav li:hover {
    border: 1px solid #666;
    background: #aaa;
}
.listNav a{padding-top:0;display:block}
.listNav strong{padding-top:0;display:block}

/*
.btnCategory2 {
    width: 100vw;
    height: 3rem;
    padding: 1rem 0;
    font-weight: 500;
    color: #666;
    text-align: center;
    -webkit-transition: transform 1s;
    -moz-transition: transform 1s;
    transition: transform 1s;
}
.btnCategory2:hover::after {
    -ms-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
} */

.title .left {
    width: 45vw;
}

.titleBanner {
    width: 100%;
    padding: 1.5em 0;
    text-align: center;
    background: url('../img/bg_titlebanner.png');
    background-size: 100vw auto;
    color: white;
}

.titleBanner h1 {
    font-size: 2em;
    margin: 0;
}

.titleBanner h3+h2 {
    margin-top: 0.5em;
}

.titleBanner h2 {
    display: inline-block;
    font-size: 1.7em;
    margin: 0;
    padding: 0 0 0 0.3em;
    border: 2px solid white;
    line-height: 150%;
}

.titleBanner h2 b {
    display: inline-block;
    height: 0;
    border-left: 0.5em solid transparent;
    border-bottom: 1.5em solid white;
    border-right: 0.3em solid white;
}

.titleBanner h3 {
    font-size: 1.1em;
    font-family: 'Nanum Gothic';
    color: #ccc;
    margin: 0;
    margin-top: 0.7em;
}

.BtnToggle {
    display: inline-block;
    width: 100vw;
    padding: 1em 0;
    font-size: 1.5em;
    font-weight: 500;
    color: #666;
    text-align: center;
    border-top: 1px solid #ccc;
}

.BtnToggle.right {
    width: 40vw;
    border-top: none;
    margin-right: 2vw;
    font-size: 1.4em;
    float: right;
}

label[for="toggleCategories"] {
    vertical-align: middle;
    font-size: 1em;
}

label[for="toggleCategories"]::after {
    display: inline-block;
    content: ' ';
    width: 1em;
    height: 1em;
    margin-top: -0.3em;
    margin-left: 0.3em;
    background-image: url('../img/arrow_top_black.png');
    background-position: center;
    background-repeat: no-repeat;
    vertical-align: middle;
    -ms-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-transition: transform 0.5s;
    -moz-transition: transform 0.5s;
    transition: transform 0.5s;
}

label[for="toggleCategories"].fold::after {
    -ms-transform: none;
    -webkit-transform: none;
    transform: none;
}

label[for="toggleMore"]::after {
    display: inline-block;
    content: ' ';
    width: 1em;
    height: 1em;
    background-size: 1em;
    margin-top: -0.1em;
    margin-left: 0.3em;
    background-image: url('../img/more.png');
    background-position: center;
    background-repeat: no-repeat;
    vertical-align: middle;
}

input[type="checkbox"] {
    display: none;
}

ul.blank {
    width: 100vw;
    color: #999;
    padding: 5em 0;
    text-align: center;
}

.videoList {
    width: 96vw;
    padding: 2vw;
    margin: 0;
    border-top: 1px solid #ccc;
}

.videoList:hover {
    background: #eee;
}

.videoList>img {
    display: inline-block;
    width: 40vw;
    vertical-align: middle;
}

.videoList span {
    display: inline-block;
    width: 50vw;
    padding: 0 1vw;
    vertical-align: middle;
    text-align: justify;
}

.videoList span h3 {
    font-weight: normal;
    margin: 0 0 0.8em 0;
}

.videoList span img {
    display: inline-block;
    width: 0.7rem;
    margin-right: 0.4rem;
    vertical-align: middle;
}

.categories li.selected {
    background: #0361d5;
}

.card .selected {
    background: linear-gradient(90deg, #03a0e7, #0361d5);
    color: white;
}

.slideList li.selected img {
    mix-blend-mode: overlay;
    -webkit-filter: grayscale(100%) contrast(120%);
    filter: grayscale(100%) contrast(120%);
    opacity: 1;
}

.slideList li.selected::before {
    content: '현재 시청중';
    padding: 0.3rem 0.4rem;
    line-height: 200%;
    margin-right: -6em;
    background: #333;
    color: white;
    vertical-align: top;
}


/* li.selected::after {
    content: ' 안녕';
    position: absolute;
    width: 30vw;
    height: fit-content;

    background: rgba(0,0,0,0.6);
} */

#showList {
    height: 40px;
    background: #f4f4f4;
    margin: 0 0 -30px 0;
}
#showList button {
    float: right;
    width: auto;
    height: 26px;
    background: white;
    margin: 0.5em;
    padding: 0 1em;
    border-radius: 20px;
    box-shadow: 0 0 3px #666;
}
#showList button:after {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 0.3em;
    background: url('../img/arrow_right_black.png');
    background-repeat: no-repeat;
    background-size: 10px;
}
#showList button:focus, #showList button:hover {
    background: #ccc;
}

#banner #more {
    display: block;
    width: 60px;
    height: 30px;
    padding: 0;
    margin-left: 3em;
    border: none;
    border-radius: 30px 30px 0 0;
    background: #2276f9;
    color: white;
}

#banner #more img {
    width: 20px;
    height: 10px;
    transition: transform 1s;
}

#banner.show #more img {
    transform: rotate(180deg);
}

#banner #container {
    display: block;
    width: 100vw;
    height: 70px;
    overflow: hidden;
}

#banner.show #container {
    height: auto;
}

#banner ul {
    display: relative;
    margin: 0;
    padding: 0;
    transition: all 1s;
}

#banner img{
    width: 100vw;
    height: 75px;
    margin-bottom: -4px;
}

footer {
    background: #323e49;
    color: white;
    width: 100vw;
    padding: 1em 0;
    display: flex;
}

footer>.refresh,
footer>.top {
    width: 4em;
    height: 4em;
    background-size: 1.5em;
    border: 1px solid #5a646d;
    display: inline-block;
    margin: 25px 15px;
}

footer>.refresh {
    background-image: url("../img/reload.png");
    background-repeat: no-repeat;
    background-position: center;
    float: left;
}

footer>.top {
    background-image: url('../img/top.png');
    background-repeat: no-repeat;
    background-position: center;
    float: top;
}

footer>#info {
    flex: 1;
    padding: 15px 0;
    text-align: center;
    display: inline-block;
}

footer h3 {
    font-weight: 900;
    color: #b2b6ba;
    margin: 0.8em 0;
}

footer p {
    color: #dcdee0;
    margin: 0;
}

footer a+a::before {
    display: inline-block;
    content: ' | ';
    font-weight: 500;
    margin: 0 1vw;
    color: #7c838b;
}

#map {
	width: 100%;
	height: 500px;
	margin: 0;
	padding: 0;
}
.leaflet-container {
	background-color: #000;
}
/**

.slideTab.h-big li {  padding: 0 0.3em;line-height:4rem }
.slideTab #sec-btn{flex:6;display: flex;flex-direction: column}
.slideTab #sec-btn button{display: felx;font-size:0.8rem;letter-spacing:-1px;margin-right:0;margin-top:0.5em;background-color:#01398A;border:2px solid #01398A;color:#fff;font-weight:bold;cursor:pointer}
.slideTab #sec-btn button.on{border:2px solid #01398A;color:#01398A;background-color:#fff}
**/
/**
#display_legend {width:80vw;margin:0 auto;border:1px solid #cecece;display:block;position:relative;}
#display_legend img{max-width:100%}
#display_legend_root{;position:absolute;top:1vw;left:0;right:5vw;z-index:3;text-align:center}
*/
#display_legend_root {flex:1;display: flex;background-color:#fff;height: 5.2rem;}
#display_legend_root.wd100 .sec-img{flex:1;width:100%;}
#display_legend_root.wd100 .sec-img img{display:block;width:100%}
#display_legend_root.wd100 #sec-btn{display:none}
#display_legend_root .sec-img{width:70%;float:left;display:block;}
#display_legend_root .sec-img img{display:inherit;width:100%;height:100%;max-width:100%}
#display_legend_root #sec-btn{width:30%;float:left;display: block;flex-direction: column;justify-content: space-around}
#display_legend_root #sec-btn button.on{display: block;font-size:1.6vw;letter-spacing:-1px;background-color:#01398A;border:2px solid #01398A;color:#fff;font-weight:bold;cursor:pointer;line-height:2.5vw;width:80%;margin:0 auto}
#display_legend_root #sec-btn button{border:2px solid #01398A;color:#01398A;background-color:#fff}
#display_legend_root #sec-btn img{width: 90%; margin: 0 auto; max-width:163px;max-height:2.6rem}
#display_legend_root #sec-btn #who{margin-top:-2px}
#display_legend_root #sec-btn div{border: 2px solid #01398A; color: #01398A; background-color: #fff; width: 80%; margin: 0 auto; font-size: 2.8vw; line-height: 6vw;}

#theme.description{background:transparent;opacity:1}
#slidePage10{position:relative}
.sec-theme-text{position:absolute;left:0;bottom:0;background: rgba(255, 255, 255, 0.8);color:#0078A8;font-size:11px;z-index:2;padding:2px}
 
.red {
color:red;
}

.blue {
color:blue;
}

#anc_ad{display:none;position:fixed;left:0;bottom:0;z-index: 100;width:100%;height:75px;padding:0;}
#anc_space{display:none;width:100%;height:75px}
#anc_adx_space{display:block;width:100%;height:50px}
.adx_anc{display:block;position:fixed;text-align: center; left:0;bottom:0;z-index: 100;width:100%;height:50px !important;padding:0;background:white}

@media screen and (max-width : 430px){/**가로가 430px 보다 작을 때 모바일 **/
 	#display_legend_root #sec-btn button{font-size:3vw; line-height:5vw;}
	#display_legend_root #sec-btn #normal{margin-top:-4px}
	#display_legend_root {height: 3.6rem;}

}

@media screen and (max-width : 380px){/**가로가 380px 보다 작을 때 모바일 **/
	.slideTab #sec-btn{flex:12}
	#display_legend_root #sec-btn button{font-size:2.8vw; line-height:6vw;}
	#display_legend_root {height: 3.4rem;}

}
@media screen and (max-width : 320px){/**가로가 320px 보다 작을 때 모바일 **/
 	#display_legend_root #sec-btn button{font-size:2.2vw; line-height:5vw;}
	#display_legend_root {height: 3rem;}

}
#unse_ban{
	width: 150px;
	height: 127px;
	position: fixed;
	right: -10px;
	top: 25vh;
	z-index: 900;
	overflow: hidden;
	transition: bottom 0.6s ease;
}
#unse_ban a img{width:84%;}
#unse_ban a{
	display:none;
	position:absolute;
	top:0;
	left:0;
	z-index:10;
    width: inherit;
    height: inherit;

	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}

#unse_ban .unse_ban_close{
	position:absolute;
	top:0;
	right:4px;
	display:block;
	width:40px;
	height:40px;
	background: url(../img/fortune/close.png) 0 5px no-repeat;
	background-size:20px 18px;
	text-indent:-9999px;
	z-index:20;
}


