/*****************************
				STORYLINE
*****************************/
#story {
    width: 500px;
    height: 600px;
    background: #222b30;
    border-top: 5px solid #1c2225;
    border-bottom: 25px solid #1c2225;
    margin: 0px auto;
}

.story-head {
    font-family: 'Cookie', cursive;
    font-size: 70px;
    text-align: center;
    ;background: linear-gradient(to bottom, #92b0bb 0%, #25423d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.5;
    margin-top: -54px;
    font-weight: 100;
}

.story-line1 {
    width: 318px;
    height: 5px;
    background: #2b383e;
    margin: 0px 91px;
}

.story-line2 {
    width: 201px;
    height: 5px;
    background: #41545b;
    margin: 0px 149px;
    margin-top: 5px;
}

.story-line3 {
    width: 108px;
    height: 5px;
    background: #445854;
    margin: 0px 196px;
    margin-top: 5px;
}

.tabbed {
    width: 500px;
    margin: 40px auto;
}

.tabbed > input {
    display: none;
}

.tabbed > label {
    box-sizing: border-box;
    width: 58px;
    padding: 11.5px 0px;
    margin: 0px 6.67px;
    border-radius: 50%;
    color: #bbb;
    font-size: 35px;
    background: #1e262b;
    float: left;
    text-align: center;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.tabbed > label:hover,.tabbed > input:checked + label {
    background: #41545b;
    color: #0a0c0e;
}

.tabs {
    clear: both;
    perspective: 600px;
}

.tabs > div {
    width: 440px;
    position: absolute;
    border: 30px solid #222b30;
    line-height: 1.4em;
    opacity: 0;
    transform: rotateX(-20deg);
    transform-origin: top center;
    transition: opacity .3s, transform 1s;
    z-index: 0;
    height: 330px;
    overflow: auto;
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    color: #bbb;
}

.tabs > div .s-tit {
    font-family: 'Cookie', cursive;
    font-size: 50px;
    ;background: linear-gradient(to bottom, #92b0bb 0%, #25423d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
    font-weight: 100;
}

.tabs > div ul {
    list-style-type: disclosure-closed;
}

.tabs > div a {
    text-decoration: none;
    color: #79979e;
    padding: 0px 15px;
    ;}

.tabs > div a:hover {
    color: #bbbbbb;
    text-decoration: none;
}

#tab-nav-1:checked ~ .tabs > div:nth-of-type(1), #tab-nav-2:checked ~ .tabs > div:nth-of-type(2), #tab-nav-3:checked ~ .tabs > div:nth-of-type(3), #tab-nav-4:checked ~ .tabs > div:nth-of-type(4), #tab-nav-5:checked ~ .tabs > div:nth-of-type(5), #tab-nav-6:checked ~ .tabs > div:nth-of-type(6), #tab-nav-7:checked ~ .tabs > div:nth-of-type(7) {
    transform: rotateX(0);
    opacity: 1;
    z-index: 1;
}

@media screen and (max-width: 700px) {
    .tabbed {
        width: 400px
    }

    .tabbed > label {
        display: none
    }

    .tabs > div {
        width: 400px;
        border: none;
        padding: 0;
        opacity: 1;
        position: relative;
        transform: none;
        margin-bottom: 60px;
    }

    .tabs > div h2 {
        border-bottom: 2px solid #4EC6DE;
        padding-bottom: .5em;
    }
}

.story_bottomline1 {
    width: 305px;
    height: 5px;
    position: relative;
    top: 350px;
    right: -166px;
    background: #41545b;
}

.story_bottomline2 {
    position: relative;
    width: 162px;
    height: 5px;
    right: -309px;
    top: 355px;
    background: #445854;
}

		