@font-face {
    font-family: 'icons';
    src: url("../fonts/icons.eot?v=4133");
    src: url("../fonts/icons.eot?v=4133#iefix") format("embedded-opentype"), url("../fonts/icons.woff?v=4133") format("woff"), url("../fonts/icons.ttf?v=4133") format("truetype"), url("../fonts/icons.svg?v=4133#timber-icons") format("svg");
    font-weight: normal;
    font-style: normal;
}

/*============================================================================
#Mobile Nav
- List of items inside the mobile drawer
==============================================================================*/
.mobile-nav {
    margin: 0;
    padding-left: 0;
}
.mobile-nav li {
    margin-bottom: 0;
}

.mobile-nav__search {
    padding: 15px; }
.mobile-nav__search .search-bar {
    margin-bottom: 0; }

.mobile-nav__item {
    position: relative;
    display: block; }
.mobile-nav > .mobile-nav__item {
    background-color: #f6f6f6; }
.mobile-nav__item:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 15px;
    right: 15px;
    border-bottom: 1px solid #e9e9e9; }
.mobile-nav > .mobile-nav__item:last-child:after {
    display: none; }

.mobile-nav__item a {
    display: block; }

.mobile-nav__item a,
.mobile-nav__toggle button {
    color: #333;
    padding: 15px;
    text-decoration: none;
    border:none;
    background: none;
}
.mobile-nav__item a:hover, .mobile-nav__item a:active, .mobile-nav__item a:focus,
.mobile-nav__toggle button:hover,
.mobile-nav__toggle button:active,
.mobile-nav__toggle button:focus {
    color: #0d0d0d; }
.mobile-nav__item a:active, .mobile-nav__item a:focus,
.mobile-nav__toggle button:active,
.mobile-nav__toggle button:focus {
    background-color: #e9e9e9; }

.mobile-nav__item--active {
    font-weight: bold; }

.mobile-nav__has-sublist {
    display: table;
    width: 100%; }
.mobile-nav__has-sublist .mobile-nav__link {
    display: table-cell;
    vertical-align: middle;
    width: 100%; }

.mobile-nav__toggle {
    display: table-cell;
    vertical-align: middle;
    width: 1%; }

.mobile-nav--expanded .mobile-nav__toggle-open {
    display: none; }

.mobile-nav__toggle-close {
    display: none; }
.mobile-nav--expanded .mobile-nav__toggle-close {
    display: block; }

.mobile-nav__sublist {
    margin: 0;
    max-height: 0;
    visibility: hidden;
    overflow: hidden;
    transition: all 300ms cubic-bezier(0.57, 0.06, 0.05, 0.95);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    padding-left:0;
}
.mobile-nav--expanded + .mobile-nav__sublist {
    visibility: visible;
    max-height: 700px;
    transition: all 700ms cubic-bezier(0.57, 0.06, 0.05, 0.95); }
.mobile-nav__sublist .mobile-nav__item:after {
    top: 0;
    bottom: auto; }
.mobile-nav__sublist .mobile-nav__link {
    padding-left: 15px;
    padding-right: 0;
    font-weight: normal; }

/*============================================================================
#Drawers
==============================================================================*/
.js-drawer-open {
    overflow: hidden; }

.drawer {
    -webkit-transform: translateZ(0);
    will-change: transform;
    display: none;
    position: fixed;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    top: 0;
    bottom: 0;
    padding: 0 15px 15px;
    max-width: 95%;
    z-index: 9999999;
    color: #333;
    background-color: #f6f6f6;
    transition: all 0.4s cubic-bezier(0.46, 0.01, 0.32, 1); }
.drawer a {
    color: #333; }
.drawer a:hover, .drawer a:focus {
    opacity: 0.7; }
.drawer input,
.drawer textarea {
    border-color: #e9e9e9; }

.drawer--left {
    width: 300px;
    left: -300px;
    border-right: 1px solid #e9e9e9; }
.js-drawer-open-left .drawer--left {
    display: block;
    -ms-transform: translateX(300px);
    -webkit-transform: translateX(300px);
    transform: translateX(300px); }
.lt-ie9 .js-drawer-open-left .drawer--left {
    left: 0; }

.drawer--right {
    width: 300px;
    right: -300px;
    border-left: 1px solid #e9e9e9; }
.js-drawer-open-right .drawer--right {
    display: block;
    -ms-transform: translateX(-300px);
    -webkit-transform: translateX(-300px);
    transform: translateX(-300px); }
.lt-ie9 .js-drawer-open-right .drawer--right {
    right: 0; }

#PageContainer {
    overflow: hidden; }

.js-drawer-open-left .is-moved-by-drawer {
    -ms-transform: translateX(300px);
    -webkit-transform: translateX(300px);
    transform: translateX(300px); }

.js-drawer-open-right .is-moved-by-drawer {
    -ms-transform: translateX(-300px);
    -webkit-transform: translateX(-300px);
    transform: translateX(-300px); }

.drawer__header {
    display: table;
    height: 70px;
    width: 100%;
    margin-bottom: 15px;
    border-bottom: 1px solid #e9e9e9; }

.drawer__title,
.drawer__close {
    display: table-cell;
    vertical-align: middle; }

.drawer__title {
    width: 100%; }

.drawer__title img{
    max-width: 160px;
    padding-left: 15px;
}

#NavDrawer{
    z-index: 999;
    height: 100vh;
}

.drawer__close {
    width: 1%;
    text-align: center;
    font-size: 1.28571em; }

.drawer__close button {
    position: relative;
    right: -10px;
    height: 100%;
    padding: 0 20px;
    color: inherit;
    background: none;
    border: none;
}
.drawer__close button:active, .drawer__close button:focus {
    background-color: #e9e9e9; }

.overlay-drawer {
    background-color: #202020;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    z-index: 9999;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.js-drawer-open .overlay-drawer {
    pointer-events: auto;
    opacity: 0.65;
}

.mobile-nav__item .mobile-nav__sublist .mobile-nav__item .mobile-nav__sublist .mobile-nav__item a {
    padding-left: 45px !important;
}

.icon-fallback-text .fallback-text{display: none;}

.icon-fallback-text .icon {
    display: inline-block;
}

.icon-fallback-text .icon:before {
    font-family: "icons";
    text-decoration: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.icon.icon-x:before {
    content: "\e606";
}
.icon.icon-plus:before {
    content: "\e605";
}
.icon.icon-minus:before {
    content: "\e602";
}

.site-nav__link.js-drawer-open-left{
    display:none;
    position: absolute;
    top: 25px;
    left: 10px;
    font-size: 30px;
    color: #FDB92E;
}