#menu-toggle {
  display: none;
}

header {
  background-color: #ffffff;
  height: 38px;
  border-bottom: 1px solid #483e8c;
}
header .subscription-block {
  float: left;
  width: calc(100% - 30px);
  clear: both;
  z-index: 10;
  position: relative;
  padding: 5px 15px;
  text-align: center;
  background: #cc0000;
}
header .subscription-block a {
  color: white;
  font-weight: 600;
}

nav #menu {
  position: relative;
  z-index: 10;
}
nav #menu .subscribe-btn {
  background-color: #37c9db;
}
nav #menu ul {
  width: 100%;
  float: left;
}
nav #menu li {
  background-color: rgb(72, 62, 140);
}
nav #menu li:hover {
  background-color: #51469e;
}
nav #menu li a {
  font-weight: 600;
  text-decoration: none;
  display: block;
  color: white;
}
nav #welcome_user_name {
  display: block;
  z-index: 15;
  padding: 10px 0 0 10px;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgb(72, 62, 140);
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  nav #welcome_user_name {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  nav {
    float: left;
    width: 100%;
  }
  nav label {
    cursor: pointer;
    margin: 6px 0 0 15px;
    display: inline-block;
    float: left;
  }
  nav .fa-bars {
    font-size: 1.5rem;
  }
  nav #menu {
    display: none;
    margin-top: 39px;
  }
  nav #menu li {
    clear: both;
    width: 100%;
    border-bottom: 1px solid white;
  }
  nav #menu li a {
    padding: 12px 15px;
    width: 100%;
  }
  nav #welcome_user_name {
    float: right;
    padding: 12px 15px 0 0;
  }
  #menu-toggle:checked + #menu {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  nav label {
    display: none;
  }
  nav #menu {
    float: right;
  }
  nav #menu li {
    float: left;
    border-right: 1px solid white;
  }
  nav #menu li:last-child {
    border-right: unset;
  }
  nav #menu li a {
    padding: 11px 26px;
    font-size: 0.85rem;
  }
  nav #welcome_user_name {
    float: left;
  }
}
/* Site Header */
.site-header {
  padding: 0 10px;
  width: calc(100% - 20px);
  max-width: 1024px;
  margin: 0 auto;
}
.site-header .logo-block,
.site-header .search-block {
  width: 100%;
  float: left;
}
.site-header .logo-block {
  margin: 20px 0;
}
.site-header #searchForm {
  width: calc(100% - 40px);
  background-color: #f3ea00;
  border-radius: 40px;
  padding: 14px 18px;
  margin: 20px 0;
  position: relative;
}
.site-header input#vault_keyword_search {
  width: calc(100% - 2px);
  background-color: white;
  border: unset;
  height: 25px;
  border-radius: 20px;
  padding: 2px 10px;
  position: relative;
}
.site-header button {
  position: absolute;
  right: 24px;
  top: 18px;
  width: 20px;
  height: 20px;
  background: url(../img/icon_magnify_glass.png) no-repeat;
  border: unset;
}
.site-header h2 {
  font-weight: normal;
  color: rgb(72, 62, 140);
  font-size: 1rem;
  width: 100%;
  max-width: 350px;
  padding-left: 5px;
}

@media screen and (min-width: 768px) {
  .site-header .logo-block,
  .site-header .search-block {
    width: 50%;
    float: left;
  }
}

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