* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Microsoft JhengHei';
    transition: all .5s;
}

#wrapper {
    text-align: center;
    padding: 10px;
    overflow: auto;
    z-index: 999;
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
}

video {
    width: 100%;
    height: 100%;
    background: #000;
}

.play-button {
    background: #96f;
    color: #fff;
    padding: 5px;
    border-radius: 5px;
    box-shadow: 2px 2px 0 0 #cacaca;
    cursor: pointer;
    font-size: 19px;
}

.play-button:hover {
    background: #666;
}

.collapse {
    cursor: pointer;
}

.fa-child {
    margin-left: 20px;
}

.section div:nth-child(2) .fa {
    margin-right: 10px;
}

.fa-chevron-circle-down {
    margin-left: 30px;
}

.hide {
    display: none;
}

a {
    text-decoration: none;
}

body {
    width: 100%;
}


/* video page */

#video-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

#menu,
video {
    position: absolute;
    z-index: 10;
}

#menu {
    display: none;
    z-index: 50;
	opacity: 0.5;
}

.fa-bars {
    background: #fff;
    color: #0af;
    font-size: 50px;
    margin: 10px;
    padding: 3px 6px;
    border-radius: 10px;
    box-shadow: 0 0px 10px 5px rgba(255, 255, 255, 0.7);
    cursor: pointer;
}

.fa-bars:hover {
    background: #0af;
    color: #FFF;
}

#menu-list {
    position: fixed;
    width: 500px;
    top: 80px;
    left: -510px;
    height: auto;
    max-height: 81%;
    background: #ffffff;
    overflow: auto;
    padding-right: 5px;
    border-radius: 15px;
    border: solid 7px #fff;
    box-shadow: 0 0px 10px 5px rgba(255, 255, 255, 0.7);
}
#menu.show{
	opacity: 1;
}
#menu.show  #menu-list {
    left: 10px;
}

#all-auto,
.child-list-item,
.list-item {
    font-size: 20px;
    text-align: center;
    line-height: 50px;
    border-radius: 10px;
    margin: 10px;
    margin-top: 5px;
    box-sizing: border-box;
    background: #0af;
    box-shadow: 5px 5px #bbb;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
}

#all-auto.active {
    background: #7C3DB7;
}

.all-play {
    background: #0070a9;
}

#all-auto:hover,
.child-list-item:hover,
.list-item:hover {
    background: #555;
}

.child-list-item .fa-play,
.list-item .fa-play {
    float: left;
    height: 50px;
    line-height: 50px;
    padding-left: 15px;
}

.active-play-parent,
.active-play {
    color: #0af;
    background: #fff;
}

.active-play-parent:hover,
.active-play:hover {
    background: #fff;
}

.child-list {
    display: none;
}

.list-item.active-play .child-list {
    /*display: block;*/
}

