.site-header {
  background: white;
  /*position: fixed;
    width: 100%;
    z-index: 10;*/
  left: 0;
  margin: auto;
  position: relative;
  right: 0;
  width: 100%;
  z-index: 1000;
}
.site-header.fixed {
  position: fixed;
  top: -275px;
  -webkit-box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.33);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.33);
}
.site-header .site-header-top {
  background: #102A4C;
  color: white;
  padding: 5px 0;
  text-align: right;
  width: 100%;
}
.site-header .site-header-top a {
  color: inherit;
}
@media (max-width:  767px ) {
  .site-header .site-header-top {
    height: auto;
    padding: 10px 0 9px;
    -moz-transition: margin-top 0.5s ease-in-out;
    -o-transition: margin-top 0.5s ease-in-out;
    -webkit-transition: margin-top 0.5s ease-in-out;
    transition: margin-top 0.5s ease-in-out;
  }
  .site-header .site-header-top.show-search {
    margin-top: 0;
  }
}
.site-header .site-header-bottom {
  background: white;
  border-bottom: 1px solid #cbcaca;
}
@media (max-width:  767px ) {
  .site-header .site-header-bottom .container {
    padding: 0;
  }
  .site-header .site-header-bottom .container .row {
    margin: 0;
  }
  .site-header .site-header-bottom .container .actions {
    padding-right: 0;
  }
}
.site-header .logo {
  display: block;
  position: absolute;
  height: 85px;
  z-index: 2;
  padding: 2px 0;
}
@media (max-width:  767px ) {
  .site-header .logo {
    width: 100%;
    height: 80px;
    padding-right: 20px;
  }
}
.site-header .logo > img {
  height: 100%;
}
@media (max-width:  767px ) {
  .site-header .logo > img {
    max-width: 100%;
  }
}
.site-header .site-header-main {
  display: table;
  width: 100%;
}
.site-header ul.global-nav {
  margin-bottom: 0;
  position: relative;
  z-index: 3;
}
@media (max-width:  767px ) {
  .site-header ul.global-nav {
    text-align: center;
  }
}
.site-header ul.global-nav > li {
  font-size: 12px;
  padding: 0;
}
@media (min-width:  768px ) and (max-width:  991px ) {
  .site-header ul.global-nav > li {
    font-size: 10px;
  }
}
@media (max-width:  767px ) {
  .site-header ul.global-nav > li {
    padding-left: 8px;
    padding-right: 8px;
  }
}
.site-header ul.global-nav > li + li {
  padding-left: 15px;
}
@media (min-width:  768px ) and (max-width:  991px ) {
  .site-header ul.global-nav > li + li {
    padding-left: 15px;
  }
}
@media (max-width:  767px ) {
  .site-header ul.global-nav > li + li {
    padding-left: 8px;
  }
}
.site-header ul.global-nav a:hover,
.site-header ul.global-nav a:focus {
  color: #99CA3C;
}
#shade {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  -webkit-transition: opacity 0.5s, visibility 0s linear 0.5s;
  -o-transition: opacity 0.5s, visibility 0s linear 0.5s;
  transition: opacity 0.5s, visibility 0s linear 0.5s;
  z-index: 3;
}
#shade.show {
  visibility: visible;
  opacity: 1;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}
