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

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



/* contents */
#drawer-container {
    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;
}

/* drawer menu */
.drawer-menu {
    box-sizing: border-box;
    position: fixed;
	z-index: 9999;
    top: 0;
    right: 0;
    width: 250px;
    height: 100%;
    padding: 70px 0 60px;
	background: #ab7e41;
	-webkit-box-shadow:-1px 0 3px rgba(33,148,67, 0.3);
	box-shadow:-1px 0 3px rgba(33,148,67, 0.3);
    -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: 10px 10px;
    font-size: 14px;
	font-weight: bold;
    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: 20px;
    line-height: 20px;
    font-size: 13px;
    color: #fff;
	font-weight: normal;
	text-decoration: none;
    -webkit-transition: all .8s;
    transition: all .8s;
}

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

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

/* menu button - label tag */
.menu-btn {
    position: fixed;
    display: block;
    top: 10px;
    right: 10px;
    display: block;
    width: 40px;
    height: 40px;
    font-size: 10px;
    text-align: center;
    cursor: pointer;
    z-index: 99999;
	
	/*background-color: #221814;*/
	background-color: rgba( 255, 255, 255, 0.1 );
}

.bar {
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    width: 20px;
    height: 2px;
	background: #111;
    -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.top{
    top: 10px;
	right: 10px;
}
.bar.middle {
    top: 18px;
	right: 10px;
    opacity: 1;
}
.bar.bottom {
    top: 26px;
	right: 10px;
    -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: #243686;
    -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 {
	background-color: transparent;
}

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

.check:checked ~ .menu-btn .bar.top {
    width: 36px;
	/*top: 22px;*/
	left: 10px;
	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: 34px;
	left: 10px;
	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;
}


