/**
 *= require_tree global
 *= require_self
 */

html, body {
    height: 100%;
}

#master-container {
    padding-top: 84px;
}

#master-header {
    position: fixed;
    top: 0;
    left: 0;
    height: 64px;
    width: 100%;
    z-index: 3;
    border-bottom: 0;
}

#master-footer, .footer-equalizer {
    height: 40px;
    line-height: 40px;
}

#header-title {
    display: inline-block;
    font-size: 34px;
    line-height: 64px;
    padding: 0 12px;
}

#header-title:hover,
#header-title:active,
#header-title:focus {
    color: #fff;
    text-decoration: none;
}

/* Main container responsive shift */

@media (min-width: 1170px) {
    .container-shift {
        margin-left: 0;
        padding-left: 295px; /* menu width + 35padding */
        padding-right: 35px;
        width: 100%;
    }
}

@media (min-width: 1450px) {
    .container-shift {
        width: 1450px;
    }
}


@media (min-width: 1720px) {
    .container-shift {
        margin: 0 auto;
        padding-left: 15px;
        padding-right: 15px;
        width: 1170px;
    }
}

/* END Main container responsive shift */

.secure .secure-hidden,
.secure-shown {
    display: none;
}

.secure .secure-shown {
    display: inherit;
}


.temp-sign:before {
    content: "°";
}

#main-footer {
    margin-top: 64px;
}
/**
 * Variables
 */
/**
 * Variables
 */
#main-menu-logo {
  position: relative;
  top: 0;
  left: 0;
  color: #fff;
  font-size: 20px;
  background-color: #463C35;
  cursor: pointer;
  padding: 0 24px;
  border-bottom: solid 1px #463C35;
  display: inline-block;
  float: left;
}
#main-menu-logo .fa {
  line-height: 63;
  font-size: 20px;
  line-height: 63px;
  font-family: FontAwesome;
}

#main-menu-toggle {
  display: none;
}
#main-menu-toggle + .main-menu {
  width: 0px;
  overflow: hidden;
}
#main-menu-toggle:checked + .main-menu {
  width: 260px;
  transition-property: width;
  transition-duration: 0.5;
}

@media (min-width: 1460px) {
  /* Hide on large screens */
  #main-menu-logo {
    display: none;
  }
  #main-menu-toggle + .main-menu {
    /* Always visible on large screens */
    width: 260px;
  }
}
.main-menu {
  position: fixed;
  left: 0;
  top: 64px;
  bottom: 0px;
  background-color: #463C35;
  font-size: 20px;
  padding-top: 32px;
}
.main-menu a {
  color: #ffffff;
  text-decoration: none;
}
.main-menu input {
  display: none;
}
.main-menu input:checked ~ label.mm-category .mm-category-name:after {
  -o-transform: rotate(0.5turn);
  -moz-transform: rotate(0.5turn);
  -webkit-transform: rotate(0.5turn);
  transform: rotate(0.5turn);
}
.main-menu input:checked ~ .submodules {
  max-height: 900px;
  transition-timing-function: cubic-bezier(1, 1, 0.5, 1);
  transition-duration: 0.8s;
}
.main-menu .submodules {
  max-height: 0px;
  overflow: hidden;
  transition-property: all;
  transition-duration: 0.3s;
  transition-timing-function: cubic-bezier(0, 1, 0.5, 1);
}
.main-menu .submodules label.mm-category .mm-category-name {
  padding-left: 32px;
}
.main-menu label.mm-category {
  font-weight: lighter;
  display: block;
  position: relative;
  margin: 0;
}
.main-menu label.mm-category .mm-category-name {
  line-height: 60px;
  width: 100%;
  padding-left: 16px;
  display: block;
  cursor: pointer;
}
.main-menu label.mm-category .mm-category-name:hover {
  background: rgba(255, 255, 255, 0.08);
}
.main-menu label.mm-category div.mm-category-name:after {
  content: "\f078";
  display: block;
  position: absolute;
  right: 12px;
  top: 0;
  font-family: FontAwesome;
  transition-property: all;
  transition-duration: 0.8s;
  transition-timing-function: cubic-bezier(0, 1, 0.5, 1);
}
.main-menu label.mm-category.active {
  background-color: #2F6D2F;
}
.main-menu label.mm-category.active a {
  color: #ffffff;
}

/* Background Colors */
.bg-header {
  background-color: #2F6D2F;
  color: #ffffff;
}

.bg-secondary {
  background-color: #E9DDAF;
}

.bg-primary {
  background-color: #2F6D2F;
}

/* Buttons */
.btn-success {
  background-color: #2F6D2F;
  border-color: #2F6D2F;
}

.border-0 {
  border: 0px solid;
}

.bt-0 {
  border-top: 0px solid;
}

.br-0 {
  border-right: 0px solid;
}

.bb-0 {
  border-bottom: 0px solid;
}

.bl-0 {
  border-left: 0px solid;
}

.border-1 {
  border: 1px solid;
}

.bt-1 {
  border-top: 1px solid;
}

.br-1 {
  border-right: 1px solid;
}

.bb-1 {
  border-bottom: 1px solid;
}

.bl-1 {
  border-left: 1px solid;
}

.border-2 {
  border: 2px solid;
}

.bt-2 {
  border-top: 2px solid;
}

.br-2 {
  border-right: 2px solid;
}

.bb-2 {
  border-bottom: 2px solid;
}

.bl-2 {
  border-left: 2px solid;
}

.border-3 {
  border: 3px solid;
}

.bt-3 {
  border-top: 3px solid;
}

.br-3 {
  border-right: 3px solid;
}

.bb-3 {
  border-bottom: 3px solid;
}

.bl-3 {
  border-left: 3px solid;
}

.border-4 {
  border: 4px solid;
}

.bt-4 {
  border-top: 4px solid;
}

.br-4 {
  border-right: 4px solid;
}

.bb-4 {
  border-bottom: 4px solid;
}

.bl-4 {
  border-left: 4px solid;
}

a[disabled=disabled],
a[disabled=disabled]:focus,
a.disabled {
  cursor: not-allowed;
  pointer-events: none;
}

.btn {
  padding: 8px;
  padding-left: 16px;
  padding-right: 16px;
  border-radius: 0;
  font-size: 16px;
}

.btn-danger {
  background-color: #d9534f;
  border-color: #d43f3a;
}

.pointer {
  cursor: pointer;
}

.dis-block,
.block {
  display: block;
}

.dis-inlb,
.inline-block {
  display: inline-block;
}

.no-select {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.pos-rel,
.pos-r {
  position: relative;
}

.pos-abs,
.pos-a {
  position: absolute;
}

.full-width {
  width: 100%;
}

.font-12 {
  font-size: 12px;
}

.font-24 {
  font-size: 24px;
}

.font-32 {
  font-size: 32px;
}

body {
  color: #666666;
}

.color-white,
.color-white-hover:hover {
  color: #ffffff;
}

html, body {
  font-size: 16px;
  /*
   * We want a default line-height of 24px
   * Overriden the bootstrap setting that takes a ratio of (20/14)
   */
  line-height: 1.5;
  font-family: "Open Sans", sans-serif;
}

h1, h2, h3, h4,
.h1, .h2, .h3, .h4 {
  /* Set margins manually on every element */
  margin: 0;
}

h1 {
  font-size: 32px;
}

h2 {
  font-size: 24px;
}

h3 {
  font-size: 20px;
}

h4 {
  font-size: 18px;
}

.form-control {
  font-size: 16px;
  padding: 8px 12px;
  height: auto;
  border-radius: 0;
}

.modal-header {
  padding: 16px;
}

html, body {
  height: 100%;
}

body a:hover {
  background: rgba(255, 255, 255, 0.08);
}

*::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px #D2BF93;
  background-color: #D2BF93;
}

*::-webkit-scrollbar {
  width: 10px;
  background-color: #ffffff;
}

*::-webkit-scrollbar-thumb {
  background-color: #463C35;
}

.mar-0x {
  margin: 0px;
}

.mar-1x {
  margin: 8px;
}

.mar-2x {
  margin: 16px;
}

.mar-3x {
  margin: 24px;
}

.mar-4x {
  margin: 32px;
}

.mt-0x {
  margin-top: 0px;
}

.mt-1x {
  margin-top: 8px;
}

.mt-2x {
  margin-top: 16px;
}

.mt-3x {
  margin-top: 24px;
}

.mt-4x {
  margin-top: 32px;
}

.mr-0x {
  margin-right: 0px;
}

.mr-1x {
  margin-right: 8px;
}

.mr-2x {
  margin-right: 16px;
}

.mr-3x {
  margin-right: 24px;
}

.mr-4x {
  margin-right: 32px;
}

.mb-0x {
  margin-bottom: 0px;
}

.mb-1x {
  margin-bottom: 8px;
}

.mb-2x {
  margin-bottom: 16px;
}

.mb-3x {
  margin-bottom: 24px;
}

.mb-4x {
  margin-bottom: 32px;
}

.ml-0x {
  margin-left: 0px;
}

.ml-1x {
  margin-left: 8px;
}

.ml-2x {
  margin-left: 16px;
}

.ml-3x {
  margin-left: 24px;
}

.ml-4x {
  margin-left: 32px;
}

.pad-0x {
  padding: 0px;
}

.pad-1x {
  padding: 8px;
}

.pad-2x {
  padding: 16px;
}

.pad-3x {
  padding: 24px;
}

.pad-4x {
  padding: 32px;
}

.pt-0x {
  padding-top: 0px;
}

.pt-1x {
  padding-top: 8px;
}

.pt-2x {
  padding-top: 16px;
}

.pt-3x {
  padding-top: 24px;
}

.pt-4x {
  padding-top: 32px;
}

.pr-0x {
  padding-right: 0px;
}

.pr-1x {
  padding-right: 8px;
}

.pr-2x {
  padding-right: 16px;
}

.pr-3x {
  padding-right: 24px;
}

.pr-4x {
  padding-right: 32px;
}

.pb-0x {
  padding-bottom: 0px;
}

.pb-1x {
  padding-bottom: 8px;
}

.pb-2x {
  padding-bottom: 16px;
}

.pb-3x {
  padding-bottom: 24px;
}

.pb-4x {
  padding-bottom: 32px;
}

.pl-0x {
  padding-left: 0px;
}

.pl-1x {
  padding-left: 8px;
}

.pl-2x {
  padding-left: 16px;
}

.pl-3x {
  padding-left: 24px;
}

.pl-4x {
  padding-left: 32px;
}

/*# sourceMappingURL=sass.css.map */
/**
 * Variables
 */
.vertical-menu {
  background-color: #D2BF93;
  padding: 0;
}

.vertical-menu > .category-container {
  padding: 0;
}

.vertical-menu > .category-container > .category {
  padding: 16px;
  border: 1px solid black;
  border-right: 2px solid black;
  cursor: pointer;
  font-weight: bold;
  font-size: 16px;
  color: white;
  background-color: #463C35;
}

.vertical-menu > .category-container > .category.active {
  border: 1px solid #463C35;
  background-color: #463C35;
}

/*# sourceMappingURL=vertical_tab_menu.css.map */
/**
 * Variables
 */
.searchbox ~ .results > div.active,
.searchbox ~ .results > div:hover {
  background-color: #2F6D2F;
  color: #ffffff;
}

.searchbox ~ .results > div {
  padding: 4px;
  padding-left: 8px;
  background: #463C35;
  color: #ffffff;
  border: 1px solid #000;
}

.searchbox ~ .results {
  border: 1px solid;
  max-height: 400px;
  overflow-y: auto;
}

.searchbox ~ .results:empty {
  display: none;
}

.searchbox,
input[type=text] {
  padding: 8px;
  width: 100%;
}

/*# sourceMappingURL=searchbox.css.map */
/**
 * Variables
 */
.message-popup-container {
  position: fixed;
  top: 64px;
  z-index: 10;
  right: 0;
  font-weight: bold;
}

.message-popup-success,
.message-popup-warning,
.message-popup-error {
  position: relative;
  float: right;
  clear: both;
  padding: 16px;
  border: 1px solid black;
  color: #ffffff;
  width: 400px;
  -webkit-transition: width 0.5s, max-height 0.5s, padding 0.5s; /* Safari */
  transition: width 0.5s, max-height 0.5s, padding 0.5s;
  max-height: 200px;
  overflow: hidden;
  white-space: nowrap;
}

.message-popup-success.collapsed,
.message-popup-warning.collapsed,
.message-popup-error.collapsed {
  width: 0px;
  max-height: 0px;
  padding: 0px;
  overflow: hidden;
}

.message-popup-success {
  background-color: #008000;
}

.message-popup-warning {
  background-color: #eabb1a;
}

.message-popup-error {
  background-color: #d61d1d;
}

/*# sourceMappingURL=global.css.map */
