@charset "UTF-8";
@media screen and (min-width: 768px) {
.sd-trigger,#globalNav span.close {
display:none;
}
}
@media screen and (max-width: 767px) {
* {
  box-sizing: border-box;
}

html {
  overflow-y: scroll;
}

body {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-overflow-scrolling: touch;
}

html, body {
  height: 100%;
  width:100%;
}

a {
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
}

a:active, a:focus,
button:focus, input[type="button"] {
  outline: none;
}

article, aside, details, figure, figcaption, footer, header, main, nav, section {
  display: block;
}

address, em, i {
  font-style: normal;
}

img {
  max-width: 100%;
  height: auto;
  border: 0;
}

ol, ul {
  list-style-type: none;
  padding: 0;
}

li {
  vertical-align: top;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

tr {
  vertical-align: top;
}

th, td {
  padding: 0;
}

.cf {
  zoom: 1;
}
.cf:after {
  content: "";
  display: table;
  clear: both;
}



i {
  letter-spacing: 5px;
}

/* Smart Drawer
   ========================================================================== */
#sd {
  width: 350px;
  height: 100%;
  color: white;
  overflow: auto;
  position: fixed;
  left: -350px;
  top: 0;
  z-index:1000;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
	background:#23571f;
}
@media screen and (max-width: 400px) {
  #sd {
    width: 300px;
    left: -300px;
  }
}
#sd.block {
  -webkit-transform: translate3d(350px, 0, 0);
  transform: translate3d(350px, 0, 0);
}
@media screen and (max-width: 400px) {
  #sd.block {
    -webkit-transform: translate3d(300px, 0, 0);
    transform: translate3d(300px, 0, 0);
  }
}
#sd.block:not(:target) {
  left: 0\9;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  #sd.block-ie10 {
    -webkit-transform: translate3d(350px, 0, 0) !important;
    transform: translate3d(350px, 0, 0) !important;
  }
}
#sd .close {
color:#FFF;
  display: block;
  position: relative;
  margin:0 auto 20px;
  width:90%;
  font-size:12px;
  height:35px;
  top:15px;
  border-radius:8px;
  z-index:9999;
  background:#000;
  line-height:35px;
  text-align:center;
}
#sd .close:hover {
  cursor: pointer;
}
#sd .close:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.sd-trigger {
  width: 60px;
  height:60px;
  color: white;
  text-decoration: none;
  border-radius:30px;
  line-height:60px;
  font-size:12px;
  text-align: center;
  top:10px;
  left:10px;
  display: block;
  background: #23571f;
  position:fixed;
  z-index:999;
  
}
.sd-trigger:hover {
  cursor: pointer;
  text-decoration: underline;
  background: #7d1f0a;
}

#sd-overlay {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: -1;
  transition: 0.3s;
  background: rgba(54, 97, 43, 0.5);
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
}
#sd-overlay.block {
  z-index: 100;
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
}

#sd-overlay-android {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  display: none;
  background: rgba(0, 0, 0, 0.5);
}
}