#main-header.tc-main-header {
  display: flex;
  justify-content: space-between;
  position: fixed;
}

.tc-main-header .logo-mobile {
  display: none;
}

.tc-main-header .logo-desktop {
  position: absolute;
  top: -8px;
  left: 0;
  display: inline-block;
  width: 100px;
  height: auto;
}

.logo-mobile>img,
.logo-desktop>img {
  max-width: 100%;
  height: auto;
}

.tc-menu {
  display: flex;
  justify-content: flex-end;
}

.tc-menu>.menu-item {
  padding-right: 22px;
}

.tc-menu>.menu-item>a {
  height: 100%;
  display: flex;
  align-items: center;
  height: 84px;
}

.tc-menu .menu-item.menu-item-has-children {
  position: relative;
}

.tc-menu .menu-item-has-children>a {
  padding-right: 22px;
}

.tc-menu .menu-item.menu-item-has-children>a::after {
  position: absolute;
  top: 0;
  right: 0;
  font-family: etmodules;
  font-size: 16px;
  font-weight: 800;
  content: "3";
  height: 80px;
  display: flex;
  align-items: center;
}

.tc-menu .sub-menu {
  display: none;
  position: absolute;
  top: 84px;
  background-color: #000;
  border-top: 3px solid #e6cb7c;
  transition: all 0.2s ease-in-out;
  width: 330px;
  z-index: 9999;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  padding: 20px 0;
}

.tc-menu .menu-item-has-children:hover .sub-menu {
  display: block;
}

.tc-menu .sub-menu li {
  width: 100%;
  display: inline-block;
  padding: 0 20px;
}

.tc-menu .sub-menu li a {
  line-height: 2em;
  padding: 6px 20px;
}

.tc-menu li a {
  text-transform: uppercase;
  font-size: 20px;
  color: #fff;
  transition: all 0.4s ease-in-out;
  word-wrap: break-word;
  font-family: "Lato", Helvetica, Arial, Lucida, sans-serif;
  position: relative;
  outline: 0;
}

.tc-menu li a:hover {
  opacity: 0.7;
}

.tc-menu .menu-item a:lang(es),
.tc-menu .menu-item a:lang(de) {
  font-size: 18px;
}

.tc-mobile-extras {
  display: none;
}

.tc-main-header .container.et_menu_container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.tc-cart-link,
.tc-burger-menu-trigger {
  font-family: etmodules;
  font-size: 32px;
  height: 100%;
  display: flex;
  align-items: center;
  color: #fff;
  min-height: 60px;
}

.tc-cart-link:hover,
.tc-burger-menu-trigger:hover {
  opacity: 0.7;
}

.tc-cart-link {
  font-size: 20px;
}

.tc-desktop-extras,
.tc-mobile-extras {
  height: 100%;
}

.tc-menu.toggled>.menu-droppable>.sub-menu {
  display: none;
}

.tc-menu.toggled>.menu-droppable.dropped>.sub-menu {
  display: block;
}

/* Fix desktop header for DE and ES */
@media (min-width: 981px) and (max-width: 1190px) {

  :lang(es) #page-container,
  :lang(de) #page-container {
    padding-top: 60px !important;
  }

  :lang(es) .tc-main-header .container.et_menu_container,
  :lang(de) .tc-main-header .container.et_menu_container {
    height: 60px;
    position: relative;
  }

  :lang(es) .tc-main-header .logo-mobile,
  :lang(de) .tc-main-header .logo-mobile {
    display: flex;
    align-items: center;
    max-width: 60% !important;
    max-height: 60px;
    width: 100%;
    height: 100%;
  }

  :lang(es) .tc-main-header .logo-desktop,
  :lang(de) .tc-main-header .logo-desktop {
    display: none !important;
  }

  :lang(es) .logo-mobile>img,
  :lang(de) .logo-mobile>img {
    max-height: 100%;
  }

  :lang(es) .tc-menu,
  :lang(de) .tc-menu {
    display: none;
    position: absolute;
    background: #000;
    height: 0;
    width: 300px;
    padding-bottom: 10px;
    transition: all 0.4s ease-in-out;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.6);
  }

  :lang(es) .tc-menu.toggled,
  :lang(de) .tc-menu.toggled {
    display: block;
    height: auto;
    top: 60px;
  }

  :lang(es) .tc-menu>.menu-item,
  :lang(de) .tc-menu>.menu-item {
    padding: 0;
  }

  :lang(es) .tc-menu>.menu-item a,
  :lang(de) .tc-menu>.menu-item a {
    height: auto;
    font-size: 16px;
    text-transform: none;
    color: rgba(255, 255, 255, 0.6);
    padding: 10px 40px;
  }

  :lang(es) .tc-menu .menu-item.menu-item-has-children>a::after,
  :lang(de) .tc-menu .menu-item.menu-item-has-children>a::after {
    display: none;
    content: "";
  }

  :lang(es) .tc-menu .sub-menu,
  :lang(de) .tc-menu .sub-menu {
    display: block;
    position: static;
    border-top: none;
    width: 100%;
    box-shadow: none;
    padding: 0;
  }

  :lang(es) .tc-menu .sub-menu .menu-item a,
  :lang(de) .tc-menu .sub-menu .menu-item a {
    padding-left: 40px;
    line-height: 2.6em;
  }

  :lang(es) .tc-desktop-extras,
  :lang(de) .tc-desktop-extras {
    display: none;
  }

  :lang(es) .tc-mobile-extras,
  :lang(de) .tc-mobile-extras {
    display: flex;
    margin: auto 0;
    margin-left: auto;
    align-items: stretch;
  }

  :lang(es) .tc-mobile-extras .tc-cart-link,
  :lang(de) .tc-mobile-extras .tc-cart-link {
    margin-right: 20px;
  }

  :lang(es) .tc-main-header #et_mobile_nav_menu,
  :lang(de) .tc-main-header #et_mobile_nav_menu {
    display: none;
  }

  :lang(es) .menu-droppable::after,
  :lang(de) .menu-droppable::after {
    content: "C";
    display: block;
    position: absolute;
    right: 20px;
    top: 10px;
    color: rgba(255, 255, 255, 0.6);
    font-family: etmodules;
  }

  :lang(es) .menu-droppable.dropped::after,
  :lang(de) .menu-droppable.dropped::after {
    transform: rotate(180deg);
    top: 8px;
  }
}

@media (min-width: 981px) and (max-width: 1130px) {
  .tc-menu li a {
    font-size: 16px;
  }
}

@media (max-width: 980px) {
  .tc-main-header .container.et_menu_container {
    height: 60px;
    position: relative;
  }

  .tc-main-header .logo-mobile {
    display: flex;
    align-items: center;
    max-width: 60% !important;
    max-height: 60px;
    width: 100%;
    height: 100%;
  }

  .tc-main-header .logo-desktop {
    display: none !important;
  }

  .logo-mobile>img {
    max-height: 100%;
  }

  .tc-menu {
    display: none;
    position: absolute;
    background: #000;
    height: 0;
    width: 300px;
    padding-bottom: 10px;
    transition: all 0.4s ease-in-out;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.6);
  }

  .tc-menu.toggled {
    display: block;
    height: auto;
    top: 60px;
  }

  .tc-menu>.menu-item {
    padding: 0;
  }

  .tc-menu>.menu-item a {
    height: auto;
    font-size: 16px;
    text-transform: none;
    color: rgba(255, 255, 255, 0.6);
    padding: 10px 40px;
  }

  .tc-menu .menu-item.menu-item-has-children>a::after {
    display: none;
    content: "";
  }

  .tc-menu .sub-menu {
    display: block;
    position: static;
    border-top: none;
    width: 100%;
    box-shadow: none;
    padding: 0;
  }

  .tc-menu .no-dropdown-mobile .sub-menu,
  .tc-menu .menu-item-has-children.no-dropdown-mobile:hover .sub-menu {
    display: none;
  }

  .tc-menu .sub-menu .menu-item a {
    padding-left: 40px;
    line-height: 2.6em;
  }

  .tc-desktop-extras {
    display: none;
  }

  .tc-mobile-extras {
    display: flex;
    margin: auto 0;
    margin-left: auto;
    align-items: stretch;
  }

  .tc-mobile-extras .tc-cart-link {
    margin-right: 20px;
  }

  .tc-main-header #et_mobile_nav_menu {
    display: none;
  }

  .menu-droppable::after {
    content: "C";
    display: block;
    position: absolute;
    right: 20px;
    top: 10px;
    color: rgba(255, 255, 255, 0.6);
    font-family: etmodules;
  }

  .menu-droppable.dropped::after {
    transform: rotate(180deg);
    top: 8px;
  }
}

@media (max-width: 680px) {
  div#wpadminbar {
    position: fixed;
  }
}