/* Navigation */
/* Import */
/* Variables */
/* Colors */
/* Administration */
/* Responsive variables */
/* Logo */
/* Menu */
/* Animation */
.animate, .header, .header div, .hamburger span, .header div.menu span {
  transition-property: all;
  transition-duration: .5s; }

/* Full absolute display */
.full-absolute {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px; }

/* Header */
.header {
  position: absolute;
  top: 0px;
  right: 0px;
  left: 0px;
  height: 50px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
  font-size: 0px; }
  .header.opened {
    height: 100%; }

@media only screen and (min-width: 600px) {
  .header {
    transition-property: none; }
  .header.opened {
    height: 50px !important; } }

.header div {
  display: inline-block;
  height: 40px;
  margin: 5px 0px 5px 5px;
  vertical-align: middle; }

/* Navigation */
/* Hamburger */
.hamburger {
  overflow: hidden;
  width: 40px; }
  .hamburger span {
    display: block;
    width: 30px;
    height: 3px;
    margin-right: 5px;
    margin-left: 5px;
    background: white;
    border-radius: 2px;
    cursor: default; }
    .hamburger span:first-child {
      margin-top: 8px; }
    .hamburger span:nth-child(2) {
      margin: 7px 5px; }
    .hamburger span:last-child {
      margin-bottom: 8px; }
  .hamburger.opened span:first-child {
    margin-top: 20px;
    transform: rotate(45deg); }
  .hamburger.opened span:nth-child(2) {
    margin: -3px 0px 0px 18px;
    width: 3px;
    opacity: 0; }
  .hamburger.opened span:last-child {
    margin-top: -3px;
    transform: rotate(-45deg); }

@media only screen and (min-width: 600px) {
  .hamburger {
    width: 0px !important;
    margin-left: 0px !important;
    visibility: hidden; } }

/* Logo */
.logo {
  transition-property: left !important;
  width: 100px;
  background: green; }

@media only screen and (max-width: 600px) {
  .logo {
    position: relative;
    left: 50%;
    margin-left: -95px !important; } }

/* Menu */
.header div.menu {
  margin: 5px 0px;
  width: calc(100% + (100px + 5px) * -1);
  overflow-y: hidden;
  overflow-x: auto;
  white-space: nowrap; }
  .header div.menu span {
    display: inline-block;
    height: 40px;
    padding: 12px 5px;
    margin: 0px 0px 0px 5px;
    box-sizing: border-box;
    font-size: 14px;
    line-height: 16px;
    text-transform: uppercase;
    color: white;
    text-align: center;
    background: black; }

@media only screen and (max-width: 600px) {
  .menu {
    display: block !important;
    position: absolute;
    width: 100% !important;
    height: auto !important;
    top: 50px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    margin: 0px !important;
    overflow-x: hidden !important;
    overflow-y: auto !important; }
    .menu span {
      margin: 5px !important;
      display: block !important; } }
