nav {
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: auto;
  color: #fff;
  background-color: #282830;
}

nav .logo {
  width: 100px;
  height: 55px;
}

nav .toyota-logo {
  display: block;
  width: 50px;
  height: 34px;
  margin-top: 11px;
  margin-left: 25px;
  background: url(/images/logo/logo-toyota-white.svg) 0 0/100% no-repeat;
}

nav .menu-right,
nav .menu-left {
  display: flex;
  position: relative;
}

nav .menu-item.open {
  height: 55px;
}

nav .nav-placeholder-width {
  width: 100px;
}
nav .nav-placeholder-height {
  height: 55px;
}

nav .menu-level-1 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 55px;
  border-left: 1px solid #383842;
}

nav .menu-right .menu-item:last-child .menu-level-1,
nav .menu-left .menu-item:last-child .menu-level-1 {
  border-right: 1px solid #383842;
}

nav .menu-level-1 .menu-item-dropdown,
nav .menu-level-1 .menu-item-link {
  margin: 0 30px;
  color: #fff;
}

nav .menu-item.active .menu-level-1 {
  background-color: #383842;
}

nav .menu-item.active .menu-level-1 a {
  text-decoration: none;
}

nav .menu-level-2 {
  display: flex;
  align-items: center;
  position: absolute;
  top: 55px;
  left: 0;
  width: 100vw;
  height: 55px;
  background-color: #383842;
}

nav .menu-level-2 .menu-item-link,
nav .menu-level-2 .menu-item-link.active {
  margin-right: 30px;
  padding-bottom: 5px;
  color: #fff;
}

nav .menu-item-link.active {
  text-decoration: none;
  font-weight: 900;
  border-bottom: 1px solid #ff0022;
}

nav .dropdown-container li:hover,
nav .menu-item-dropdown:hover,
nav .menu-item-link:hover {
  text-decoration: none;
  color: #ff0022;
  cursor: pointer;
}

nav .menu-item.open .menu-level-1 {
  border-left: 1px solid #383842;
  border-right: 1px solid #383842;
}

nav .menu-item.open {
  position: relative;
  background-color: #fff;
}

nav .menu-item.open span {
  color: #383842;
}

nav .dropdown-menu {
  position: absolute;
  top: 55px;
  left: 0;
  height: 0;
  opacity: 0;
}

nav .menu-item.open .dropdown-menu {
  opacity: 1;
  width: 100%;
  z-index: 99;
}

nav .dropdown-container {
  display: none;
  background-color: #fff;
  border-left: 1px solid #383842;
  border-right: 1px solid #383842;
  border-bottom: 1px solid #383842;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

nav .menu-item.open .dropdown-container {
  display: block;
}

nav .dropdown-container a,
nav .dropdown-container li {
  display: flex;
  justify-content: center;
  color: #383842;
  width: 100%;
  padding: 10px 0;
  border-top: 1px solid #e3e4e5;
}
