/* .header__actions .dropdown {
  margin-right: 24px;
} */
.header__actions .dropdown-toggle {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    border: none !important;
    outline: none !important;
    background-color: transparent !important;
    color: black !important;
    padding: 0;
    box-shadow: none !important;
  }

.header__actions .dropdown-toggle span {
      display: none;
      margin-left: 5px;
    }

.header__actions .dropdown-menu {
    min-width: 100%;
    border-radius: 4px;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.24);
  }
.dropdown-menu {
position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 10rem;
    padding: .5rem 0;
    margin: .125rem 0 0;
    font-size: 1rem;
    color: #212529;
    text-align: left;
    list-style: none;
    background-color: #fff;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border: 1px solid rgba(0,0,0,.15);
    -webkit-border-radius: .25rem;
    border-radius: .25rem;
}
.header__actions .dropdown-item {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 8px 16px;
  }

.header__actions .dropdown-item span {
      margin-left: 5px;
    }

.header__menu-icon {
  position: relative;
  width: 24px;
  min-height: 16px;
  display: flex;
    top: 50%;
    transform: translate(0,50%);
  cursor: pointer;
  margin-left: 10px;
  height:20px;
  
}

.header__menu-icon::before {
  content: "";
  position: absolute;
  top: 0;
  width: 24px;
  height: 3px;
  display: flex;
  background-color: black;
}

.header__menu-icon i {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 3px;
  display: flex;
  background-color: black;
}

.header__menu-icon::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 24px;
  height: 3px;
  display: flex;
  background-color: black;
}

.header_open .header__mobile-menu {
  transform: translateX(0);
  transition: transform .3s ease-in;
}

.header__mobile-menu {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  background-color: white;
  overflow-y: scroll;
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 30px;
  transform: translateX(100%);
  transition: transform .3s ease-out;
  z-index: 9999;
}

.header__mobile-menu li {
  margin-bottom: 20px;
}

.header__actions {
    min-width: 100px;
    display: flex;
    margin-left: -70px; 
    justify-content: flex-end;
  
}

.header__mobile-menu li:nth-last-of-type(1) {
  margin-bottom: 0;
}

.header__mobile-menu li>a {
  display: flex;
  font-size: 32px;
  font-weight: 700;
  color: black;
  text-decoration: none;
  line-height: 1;
}

.mobile-menu__top {
  min-height: 104px;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 20px;
}

.mobile-menu__top .cross {
  position: relative;
  width: 32px;
  min-height: 32px;
  display: flex;
  cursor: pointer;
}

.cross::before {
  content: "";
  position: absolute;
  width: 24px;
  height: 3px;
  display: flex;
  transform: rotate(-45deg) translate(-8px, 12px);
  background-color: black;
}

.cross::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 3px;
  display: flex;
  transform: rotate(45deg) translate(12px, 8px);
  background-color: black;
}

.language-switcher {
display: flex;
justify-content: space-between;  
 padding: 10px;
}
.language-switcher__item {
    color: black;
    text-transform: uppercase;
    font-weight: 900;
  margin-left: 10px;
  }
.language-switcher__item:hover {
      text-decoration: none;
      color: #007bff;
    }

@media (min-width:1100px) {
.header__actions .dropdown-toggle:hover {
      color: #ff3465 !important;
    }
.header__actions .dropdown-toggle span {
      display: inline-block;
    }
  .header__mobile-menu {
  display: none;
}
 .header__actions {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
/*   margin-left: 30px; */
} 
  
    .header__menu-icon{
  display:none;
  }
}
@media (max-width:1100px) {
  .header__actions {
      margin-left: 95px;
  }
  
  
}
@media (max-width:768px) {
  .header__actions {
  margin-left: 240px;
  }
  
}
@media (max-width:400px) {
  .header__actions {
      margin-left: 110px;
  }
  
}




.dropdown-container {
  position:relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.dropdown {
  display: flex;
  justify-content: space-around;
  align-items:center;
  cursor: pointer;
}

.flag-switcher {
    border-radius: 50%;
    width: 25px;
    height: 25px;
}
.rotate-dropdown-arrow {
  transform: rotate(-180deg);
}

.dropdown-menu {
  display: none;
  flex-direction: column;
  border-radius: 4px;
  margin-top: 8px;
  padding: 10px;
  box-shadow: 0 0 5px -1px rgba(0, 0, 0, 0.3);
  background: #fafafa;
  transform-origin: top left;
  margin-left: -20px;
}

.dropdown-menu span {
  padding: 10px;
  flex-grow: 1;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
  cursor: pointer;
  transition: background 0.3s ease;
}

.dropdown-menu span:hover {
  background: #eee;
}

#openDropdown:checked + .dropdown-menu {
  display: flex;
  animation: openDropDown 0.4s ease 0s 1 forwards;
}

@keyframes openDropDown {
  from { transform: rotateX(50deg); }
  to { transform: rotateX(0deg); }
}
.angel-down {
  height: 13px;
  width: 13px;
  margin-left: 10px;
}