/* Box-shadow */
/* 400px */
/* 640px */
/* 768px */
/* 990px */
/* 1200px */
/* 1600 */
/* 1920 */
.header {
  background-color: rgba(28, 28, 28, 0.1);
  backdrop-filter: blur(8px);
  position: relative;
  z-index: 999;
}
.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #262626;
  color: #CCCCCC;
  padding: 15px 15px 19px;
}
.header-top-socials {
  font-size: 17px;
  display: flex;
  gap: 10px;
}
.header-top-socials a {
  color: #CCCCCC;
}
.header-top-socials a:hover {
  color: #9b9b9b;
}
.header-body {
  border-bottom: 1px solid #262626;
  padding: 25px 15px;
  display: grid;
  grid-template-columns: 100px 1fr 200px;
}
.header-logo-wrapper a {
  display: inline-block;
}
.header-logo-wrapper a img {
  height: 50px;
}
.header-account-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.header-account-user {
  position: relative;
  display: inline-block;
  font-weight: 500;
  text-transform: capitalize;
  font-size: 16px;
  line-height: 17px;
  cursor: pointer;
}
.header-account-user::before {
  content: "\f2bd";
  font-family: 'FontAwesome';
  margin-right: 10px;
  padding: 10px;
  border-radius: 30px;
  font-size: 14px;
  cursor: pointer;
  text-align: center;
  width: 35px !important;
  display: initial;
  border: none;
  background: #262626;
  background-size: 300% 100% !important;
  moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  overflow: visible;
}
.header-account-user.green::before {
  background: linear-gradient(to right, #E0F268, #9DB20F, #9DB20F, #E0F268);
  padding: 8px;
  font-size: 16px;
}
.header-account-user.have-menu::after {
  content: '\f107';
  padding-left: 5px;
  font-size: 10px;
  font-family: 'FontAwesome';
  position: relative;
  bottom: 1px;
  font-weight: 100;
}
.with-dropdown-menu {
  position: relative;
}
.with-dropdown-menu .menu-dropdown {
  position: absolute;
  list-style: none;
  padding: 0;
  top: 300%;
  left: -70px;
  width: 200px;
  visibility: hidden;
  opacity: 0;
  background-color: #262626;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.1);
  transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
  z-index: 3000;
}
.with-dropdown-menu .menu-dropdown::before {
  content: '';
  position: absolute;
  top: -5px;
  right: 25px;
  height: 15px;
  width: 15px;
  transform: rotate(45deg);
  background-color: #262626;
}
.with-dropdown-menu .menu-dropdown li {
  line-height: 25px;
  font-weight: 400;
  color: #e2e2e2;
  font-size: 17px;
  padding: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.with-dropdown-menu:hover .menu-dropdown {
  top: 52px;
  visibility: visible;
  opacity: 1;
}
/*# sourceMappingURL=header.css.map */