/* Desktop Navigation Extended Styles */
/* Base navigation styles are defined in main style.css */

@media all and (min-width: 1100px) {
  .navbar .dropdown-menu-end {
    right: 0;
    left: auto;
  }

  .navbar .nav-item .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    margin-top: 0;
  }

  .navbar .dropdown-menu.fade-down {
    top: 80%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
  }

  .navbar .dropdown-menu.fade-up {
    top: 180%;
  }

  .navbar .nav-item:hover .dropdown-menu {
    transition: 0.3s;
    opacity: 1;
    visibility: visible;
    top: 100%;
    transform: rotateX(0deg);
  }
}

.menu__btn--Contact {
  border-radius: 8px;
  color: white;
}

.btnZoom:hover {
  box-shadow: 0px 0px 3px 0px;
  transition: 0.1s;
}

.menu__btn--login span {
  border-radius: 8px;
  background: #3aaa35;
  color: white;
}

.navbar-nav > li {
  float: left;
  position: relative;
}

.navbar-light .navbar-nav .active a::after {
  border-bottom: 3px solid #dc2128;
  bottom: -3px;
  content: " ";
  left: 2px;
  position: absolute;
  right: 2px;
}

@media (min-width: 1400px) {
  .navbar-light .navbar-nav .active a::after {
    left: 20px;
  }
}

@media (max-width: 1280px) {
  .menu__btn--login {
    font-size: 12px !important;
    padding: 10px 25px !important;
  }
}

.header-message-container {
  top: 0;
  width: 100%;
  height: 30px;
  z-index: 100;
  position: relative;
  color: white;
}

.header-message {
  direction: rtl;
  width: 100%;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #39297f;
  font-weight: 700;
  overflow: hidden;
}

.header-message-container > span:last-child {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  background-color: #cc053a;
  padding: 0 5px 2px 5px;
  height: 20px;
  border-radius: 4px;
}

.header-message-container > span:last-child:hover {
  background-color: #fca2a2;
  color: black;
}
