/*=============================================================================================
  Start Header Area
==============================================================================================*/
.header.style-7 {
  position: relative;
  width: 100%;
}
.header.style-7 .header-right i {
  font-size: 20px;
  line-height: 0;
}
.header.style-7 .header-right i,
.header.style-7 .cart-dropdown > a i {
  font-size: 22px;
  transition: all 0.3s ease;
  font-weight: 500;
  color: var(--title-color);
}
.header.style-7 .header-right a:hover i {
  color: var(--primary-color);
}
.header.style-7 .header-action-label {
  font-size: 14px;
  color: var(--title-color);
  font-weight: 400;
  margin-top: 6px;
  display: block;
  transition: all 0.3s ease;
}

.header.style-7 .menu > li > a {
  font-weight: 400;
  color: var(--white-color);
}
.header.style-7 .menu > li.active > a:not(.menu-title),
.header.style-7 .menu > li:hover > a:not(.menu-title) {
  color: var(--white-color) !important;
}
.header.style-7 .menu .submenu {
  padding: 1rem 0;
}

.header.style-7 .menu > li .megamenu,
.header.style-7 .menu > li > .submenu {
  left: 0;
}

.header.style-7 .active-underline > li > a::before {
  display: none;
}

.header.style-7 .header-right a:hover .header-action-label {
  color: var(--primary-color);
}

.header.style-7 .header-menu-btn {
  position: relative;
  cursor: pointer;
  padding-bottom: 12px;
  top: 6px;
  z-index: 3;
}
.header.style-7 .header-menu-btn-text:hover {
  color: var(--primary-color);
}
.header.style-7 .header-menu-btn .submenu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background-color: #fff;
  padding: 0;
  min-width: 220px;
  z-index: 999;
  margin: 0;
  border: 1px solid #eee;
}
.header.style-7 .header-menu-btn:hover .submenu {
  display: block;
}
.header.style-7 .header-menu-btn .submenu li {
  list-style: none;
  border-bottom: 1px solid #eee;
}
.header.style-7 .header-menu-btn .submenu li:last-child {
  border-bottom: 0;
}
.header.style-7 .header-menu-btn .submenu li a {
  text-decoration: none;
  color: var(--title-color);
  display: flex;
  font-size: 14px;
  line-height: 120%;
  padding: 10px 12px;
  transition: all 0.3s ease;
  align-items: center;
  gap: 12px;
}
.header.style-7 .header-menu-btn .submenu li a:hover {
  color: var(--primary-color);
}
.header.style-7 .header-menu-btn .submenu li img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}
.header.style-7 .cart-dropdown .cart-count {
  width: 16px;
  height: 16px;
  right: -6px;
  font-size: 10px;
  line-height: 17px;
}
.header.style-7 .header-search.hs-expanded {
  max-width: 44.6rem;
  background: #f5f5f5;
  border-radius: 8px;
}
.header.style-7 .header-search input.form-control {
  border: none;
  padding-right: 42px;
  font-size: 14px;
  border-radius: 8px;
  border: 1px solid transparent;
  color: var(--title-color);
}

.header.style-7 .header-search input.form-control:focus {
  border: 1px solid var(--primary-color);
}

.header.style-7 .header-search.hs-round .btn-search {
  background: transparent !important;
  color: var(--paragraph-color);
  position: absolute;
  right: 14px;
  top: 12px;
  width: initial;
  min-width: initial;
}
.header.style-7 .header-search .btn-search i {
  font-size: 20px;
}
.header.style-7 .header-search.hs-round .btn-search:hover {
  color: var(--primary-color);
}

.header.style-7 .header-middle {
  padding: 16px 0px;
  border-bottom: 1px solid #eee;
}
.header.style-7 .header-bottom {
  padding: 0;
  background: var(--primary-color);
}
.header.style-7 .inner-wrap {
  justify-content: space-between;
}

.header.style-7 .header-top-wrapper {
  background: var(--primary-color);
  padding: 16px 0px;
}

.header.style-7 .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
  width: 100%;
}
.header.style-7 .header-wrapper {
  display: flex;
  align-items: center;
  gap: 28px;
  width: 100%;
}
.header.style-7 .h-category-btn {
  font-size: 24px;
  color: #e7f6f1;
}
.header.style-7 .h-logo img {
  max-width: 180px;
  height: 48px;
  object-fit: contain;
}
.header.style-7 .h-search-widget {
  display: flex;
  align-items: center;
}
.header.style-7 .h-search-form {
  position: relative;
}
.header.style-7 .h-search-form input {
  font-family: var(--font-family);
  width: 500px;
  height: 48px;
  padding: 15px 120px 15px 15px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 400;
  line-height: 120%;
  background: #f7f7f7;
  border: none;
}
.header.style-7 .h-search-form button {
  font-family: var(--font-family);
  background: var(--primary-color);
  color: var(--white-color);
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 500;
  line-height: 40px;
  position: absolute;
  right: 4px;
  top: 4px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.header.style-7 .h-search-form button:hover {
  background: var(--secondary-color);
  color: var(--white-color);
}
.header.style-7 .h-contact {
  display: flex;
  align-items: center;
  gap: 8px;
}
.header.style-7 .h-contact i {
  font-size: 36px;
  color: var(--white-color);
}
.header.style-7 .h-contact-info span {
  font-size: 14px;
  font-weight: 500;
  line-height: 120%;
  display: block;
  color: #e7f6f1;
}
.header.style-7 .h-contact-info p {
  font-size: 20px;
  font-weight: 600;
  line-height: 130%;
  color: #e7f6f1;
  margin: 0;
  margin-top: 4px;
  transition: all 0.3s ease;
}
.header.style-7 .h-contact:hover .h-contact-info p {
  color: var(--secondary-color);
}
.header.style-7 .header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}
.header.style-7 .header-actions-group {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header.style-7 .header-actions .btn {
  color: var(--white-color);
  position: relative;
  margin-left: 12px;
}
.header.style-7 .header-actions .btn i {
  font-size: 20px;
  color: var(--white-color);
}
.header.style-7 .header-actions .btn .label {
  position: absolute;
  top: -2px;
  left: -12px;
  width: 20px;
  height: 20px;
  background: var(--white-color);
  color: var(--title-color);
  border-radius: 100%;
  font-size: 13px;
  font-weight: 600;
  line-height: 19px;
  display: inline-block;
  text-align: center;
}
.header.style-7 .h-account-btn {
  background: var(--white-color);
  padding: 8px 12px;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 500;
  line-height: 120%;
  border-radius: 30px;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.header.style-7 .h-account-btn:hover {
  background: var(--secondary-color);
  color: var(--white-color);
}
.header.style-7 .header-bottom-wrapper {
  background: #f5f5f5;
  padding: 0;
}
.header.style-7 .header-bottom-wrapper.fixed {
  background: var(--white-color);
}
.header.style-7 .header-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header.style-7 .header-item-wrapper {
  display: flex;
  align-items: center;
  gap: 24px;
}
.header.style-7 .h-category-btn {
  background: transparent;
  color: var(--white-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  border-radius: 4px 4px 0px 0px;
  font-size: 14px;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  height: 40px;
  padding: 0;
}
.header.style-7 .h-category-btn i {
  font-size: 20px;
}
.header.style-7 .header-nav ul {
  padding: 0;
  margin: 0;
}
.header.style-7 .header-nav li {
  display: inline-block;
  margin-right: 24px;
}
.header.style-7 .header-nav li:last-child {
  margin: 0;
}
.header.style-7 .header-nav li a {
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
}
.header.style-7 .header-nav li a:hover {
  color: var(--primary-color);
}
.header.style-7 .header-nav li .submenu li a {
  font-weight: 500;
  font-size: 15px;
}
.header.style-7 .h-flash-btn {
  border-radius: 4px;
  background: var(--white-color);
  padding: 6px 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: var(--primary-color) !important;
}
.header.style-7 .h-flash-btn i {
  font-size: 24px;
}
.header.style-7 .header-bottom .header-right .header-focus-btn {
  background: var(--secondary-color);
  padding: 12px 16px;
  height: 52px;
  color: var(--white-color);
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}
.header.style-7 .header-bottom .header-right {
  gap: 0;
}
.header.style-7 .header-bottom .header-right .header-focus-btn i {
  color: var(--white-color);
  font-size: 18px;
}
.header.style-7 .header-bottom .header-right .header-focus-btn.donation-btn {
  background: #21bf73 !important;
}

@media only screen and (min-width: 1200px) and (max-width: 1372px) {
  .header.style-7 .header-inner {
    gap: 48px;
  }
  .header.style-7 .h-search-form input {
    width: 400px;
  }
}

@media only screen and (max-width: 1199.99px) {
  .header.style-7 .header-inner {
    display: flex;
  }
  .header.style-7 .header-wrapper {
    gap: 24px;
    justify-content: space-between;
    width: auto;
  }
  .header.style-7 .h-logo img {
    max-width: 164px;
    height: auto;
  }
  .header.style-7 .h-category-btn {
    font-size: 22px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header.style-7 .h-search-form input {
    width: 300px;
  }
}

@media only screen and (max-width: 991px) {
  .header.style-7 .header-bottom-wrapper {
    padding: 8px 0px;
  }
  .header.style-7 .header-nav {
    display: none;
  }
  .header.style-7 .h-logo img {
    max-width: 180px;
    height: auto;
  }
  .header.style-7 .h-flash-btn {
    padding: 8px;
    font-size: 12px;
  }
  .header.style-7 .h-flash-btn i {
    font-size: 18px;
  }
  .header.style-7 .h-search-widget,
  .header.style-7 .h-contact {
    display: none;
  }
  .header.style-7 .h-account-btn {
    background: transparent !important;
    padding: 0;
    color: var(--white-color);
    font-size: 0;
  }

  .header.style-7 .h-account-btn i {
    font-size: 20px;
    position: relative;
    top: 0;
  }
}

@media only screen and (max-width: 767px) {
  .header.style-7 .logo {
    display: flex;
    justify-content: center;
  }
  .header.style-7 .h-logo img {
    max-width: 132px;
    height: auto;
  }
  .header.style-7 .header-middle .header-right > :not(:last-child) {
    margin-right: 6px;
  }
}
/*=============================================================================================
  End Header Area
==============================================================================================*/
