/* common */
/*body {
    margin: 0;
    padding: 0;
    background: #666;
}

ul {
  margin: 0;
  padding: 0;
	list-style: none;
}*/

/* contents */
#container {
    display: table;
    width: 100%;
    /*height: 100vh;*/
    padding: 0;
    margin: 0;
    /*background: #f6bc60;*/
    box-shadow: 0 0 50px 0 rgba(0,0,0,.8);
    -webkit-transition-property: all;
    transition-property: all;
    -webkit-transition-delay: .3s;
    transition-delay: .3s;
    -webkit-transition-duration: .5s;
    transition-duration: .5s;
}

/*.contents__inner {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}

.contents__inner h1 {
    margin: 0;
    padding: 0;
    color: #fff;
    font-size: 40px;
    font-family: Futura, "Century Gothic", "helvetica neue", arial, sans-serif !important;
    font-style: italic;
}

.contents__inner p {
    margin-top: 20px;
    color: #fff;
    font-size: 20px;
}

.contents__inner p span {
    border-bottom: 1px solid #fff;
}*/

/* drawer menu */
.drawer-menu {
    box-sizing: border-box;
    position: fixed;
	z-index: 9999;
    top: 0;
    right: 0;
    width: 250px;
    height: 100%;
    padding: 60px 0 60px;
    /*background: #222;*/
	/*background: #A08762;*/
	background: #666;
    -webkit-transition-property: all;
    transition-property: all;
    -webkit-transition-duration: .5s;
    transition-duration: .5s;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    -webkit-transform-origin: right center;
    -ms-transform-origin: right center;
    transform-origin: right center;
    -webkit-transform: perspective(500px) rotateY(90deg);
    transform: perspective(500px) rotateY(90deg);
    opacity: 0;
}

.drawer-menu ul {
    /*text-align: center;*/
	overflow-y: auto;
	height: 100%;
	padding: 0 10px;
	-webkit-overflow-scrolling: touch;
}
.drawer-menu ul::-webkit-scrollbar{
  width: 4px;
  margin-right: 1px;
}
.drawer-menu ul::-webkit-scrollbar-track{
  background: #fff;
  border: none;
  opacity: 0;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  box-shadow: inset 0 0 2px #777; 
}
.drawer-menu ul::-webkit-scrollbar-thumb{
  background: #aaa;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  box-shadow: none;
}
/*.drawer-menu ul::-webkit-scrollbar-track{
    width: 3px;
	background-color: #fff;
	border-radius: 3px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	-o-border-radius: 3px;
	opacity: 0;
	border: solid 2px rgba( 255, 255, 255, 0.1 );
}
.drawer-menu ul::-webkit-scrollbar-thumb{
  background: #aaa;
  border-radius: 3px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	-o-border-radius: 3px;
  box-shadow: none;
}*/
.drawer-menu ul li {
    /*text-align: center;*/
	color: #fff;
}

.drawer-menu ul li a {
    display: block;
    height: 50px;
    line-height: 50px;
	padding: 0 10px;
    font-size: 14px;
    color: #fff;
	text-decoration: none;
    -webkit-transition: all .8s;
    transition: all .8s;
}
.drawer-menu ol {
    /*text-align: center;*/
	padding-left: 20px;
}
.drawer-menu ol li a {
    display: block;
    height: 30px;
    line-height: 30px;
    font-size: 13px;
    color: #fff;
	text-decoration: none;
    -webkit-transition: all .8s;
    transition: all .8s;
}

.drawer-menu li a:hover {
    color: #1a1e24;
    background: #fff;
}

/* checkbox */
.check {
    display: none;
}

/* menu button - label tag */
.menu-btn {
    position: fixed;
    display: block;
    top: 15px;
    right: 10px;
    display: block;
    width: 30px;
    height: 30px;
    font-size: 10px;
    text-align: center;
    cursor: pointer;
    z-index: 99999;
}

.bar {
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    width: 30px;
    height: 4px;
    /*background: #A08762;*/
	background: #2D8ACD;
    -webkit-transition: all .5s;
    transition: all .5s;
    -webkit-transform-origin: left top;
    -ms-transform-origin: left top;
    transform-origin: left top;
	border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
}

.bar.middle {
    top: 10px;
    opacity: 1;
}

.bar.bottom {
    top: 20px;
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
}

.menu-btn__text {
    position: absolute;
    bottom: -13px;
    left: 0;
    right: 0;
    margin: auto;
    /*color: #A08762;*/
	color: #2D8ACD;
    -webkit-transition: all .5s;
    transition: all .5s;
    display: block;
    visibility: visible;
    opacity: 1;
}

.menu-btn:hover .bar {
    background: #999;
}

.menu-btn:hover .menu-btn__text {
    color: #999;
}

.close-menu {
    position: fixed;
    top: 0;
    right: 250px;
    width: 100%;
    height: 100vh;
    /*background: rgba(0,0,0,0);*/
    cursor: url(http://theorthodoxworks.com/demo/images/cross.svg),auto;
    -webkit-transition-property: all;
    transition-property: all;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    visibility: hidden;
    opacity: 0;
}

/* checked */
.check:checked ~ .drawer-menu {
    -webkit-transition-delay: .3s;
    transition-delay: .3s;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    opacity: 1;
    z-index: 99998;
}

.check:checked ~ .contents {
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    -webkit-transform: translateX(300px);
    -ms-transform: translateX(300px);
    transform: translateX(300px);
}

.check:checked ~ .menu-btn .menu-btn__text {
    visibility: hidden;
    opacity: 0;
}

.check:checked ~ .menu-btn .bar.top {
    width: 36px;
	left: 5px;
	background: #fff;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.check:checked ~ .menu-btn .bar.middle {
    opacity: 0;
}

.check:checked ~ .menu-btn .bar.bottom {
    width: 36px;
    top: 25px;
	left: 5px;
	background: #fff;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.check:checked ~ .close-menu {
    -webkit-transition-duration: 1s;
    transition-duration: 1s;
    -webkit-transition-delay: .3s;
    transition-delay: .3s;
    background: rgba(0,0,0,.5);
    visibility: visible;
    opacity: 1;
    z-index: 99999;
}


