/*
    - Name: "header.scss"
    - Description: "Header custom styles"
*/
/* Media query breakpoints */
@font-face {
  font-display: swap;
  font-family: "Alaska Light";
  font-style: normal;
  font-weight: 300;
  src: url("/themes/custom/alphega_theme/assets/fonts/alaska/Alaska-Light.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
@font-face {
  font-display: swap;
  font-family: "Alaska Regular";
  font-style: normal;
  font-weight: 400;
  src: url("/themes/custom/alphega_theme/assets/fonts/alaska/Alaska-Regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
@font-face {
  font-display: swap;
  font-family: "Alaska Medium";
  font-style: normal;
  font-weight: 500;
  src: url("/themes/custom/alphega_theme/assets/fonts/alaska/Alaska-Medium.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
@font-face {
  font-display: swap;
  font-family: "Alaska Semibold";
  font-style: normal;
  font-weight: 600;
  src: url("/themes/custom/alphega_theme/assets/fonts/alaska/Alaska-SemiBold.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
@font-face {
  font-display: swap;
  font-family: "Alaska Bold";
  font-style: normal;
  font-weight: 700;
  src: url("/themes/custom/alphega_theme/assets/fonts/alaska/Alaska-Bold.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
@font-face {
  font-family: "icomoon";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/themes/custom/alphega_theme/assets/fonts/icomoon/icomoon.tff") format("tff"), url("/themes/custom/alphega_theme/assets/fonts/icomoon/icomoon.eot?") format("eot"), url("/themes/custom/alphega_theme/assets/fonts/icomoon/icomoon.woff") format("woff");
}
.header .region-header {
  display: flex;
  align-items: center;
  height: 99px;
  width: 100%;
}
@media (min-width: 992px) {
  .header .region-header {
    justify-content: flex-end;
  }
}
.header__bottom {
  display: flex;
}
.header .main-menu {
  margin-left: auto;
}
@media (min-width: 992px) {
  .header .main-menu .nav > .nav-item > .nav-link {
    padding: 37px 10px;
  }
}
@media (min-width: 1660px) {
  .header .main-menu .nav > .nav-item > .nav-link {
    padding: 37px 10px;
  }
}
@media (min-width: 992px) {
  .header .main-menu .nav > .nav-item > .nav-link.highlight {
    padding: 37px 16px;
  }
}
@media (min-width: 1660px) {
  .header .main-menu .nav > .nav-item > .nav-link.highlight {
    padding: 37px 16px;
  }
}

.main-menu .nav li.menu-item--expanded .nav-link:hover + ul.menu {
  display: block;
}
.main-menu .nav li.menu-item--expanded .nav-link + ul.menu:hover {
  display: block;
}
.main-menu .nav li.menu-item--expanded > .menu {
  position: relative;
  margin-top: 16px;
  top: 100%;
  left: 0;
  display: none;
  min-width: 250px;
  padding: 24px 20px 16px 24px;
  background-color: var(--gray-100);
  list-style: none;
  z-index: 2;
}
@media (min-width: 992px) {
  .main-menu .nav li.menu-item--expanded > .menu {
    position: absolute;
    margin: 0;
  }
}
.main-menu .nav li.menu-item--expanded > .menu .nav-link {
  color: var(--text);
  font-family: var(--regular);
  font-size: 1.125rem;
  line-height: 2.125rem;
  text-decoration: none;
}
.main-menu .nav li.menu-item--expanded > .menu .nav-link:hover, .main-menu .nav li.menu-item--expanded > .menu .nav-link.is-active {
  color: var(--primary-color);
}
.main-menu .nav li.menu-item--expanded > .menu.is-open {
  display: block;
}

/*
    - Name: "search.scss"
    - Description: "Add custom styles to Breadcrumb block"
*/
.search-icon {
  position: absolute;
  top: calc(50% - 12px);
  left: 15px;
  width: 54px;
  height: 101px;
  cursor: pointer;
}
.search-icon__wrapper {
  position: relative;
  display: flex;
  align-items: center;
  width: 54px;
  height: 101px;
  background-color: var(--gray-100);
}
.search-icon::after {
  display: none;
}
.search-icon .search-line {
  position: absolute;
  top: 15px;
  left: 13px;
  display: inline-block;
  width: 7px;
  height: 3px;
  border-radius: 3px;
  background: var(--primary-color-800);
  transition: all 0.3s ease-in 0s;
  transform: rotate(45deg);
}
.search-icon .search-circle {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: 17px;
  height: 17px;
  border: 3px solid var(--primary-color-800);
  border-radius: 50%;
  background-color: var(--gray-100);
  transition: top 0.3s ease-in 0s, left 0.3s ease-in 0s, border-radius 0.3s ease-in 0s, border-width 0.3s ease-in 0s, width 0.3s ease-in 0s, height 0.3s ease-in 0s, background-color 0.1s ease-in 0s;
}
.search-icon[aria-expanded=true] .search-line {
  top: 10px;
  left: 0;
  width: 22px;
  transition: all 0.3s ease-out 0s;
}
.search-icon[aria-expanded=true] .search-circle {
  top: 12px;
  left: 12px;
  width: 0;
  height: 0;
  border-width: 0;
  transition: top 0.3s ease-in 0s, left 0.3s ease-in 0s, border-radius 0s ease-in 0.3s, border-width 0.3s ease-in 0s, width 0.3s ease-in 0s, height 0.3s ease-in 0s, background-color 0s ease-in 0.3s;
}
.search-icon[aria-expanded=true] .search-circle.second {
  top: 15px;
  left: 0;
  width: 30px;
  height: 3px;
  background-color: var(--primary-color-800);
  transform: rotate(45deg);
}
.search-icon[aria-expanded=true] .second-line {
  transform: rotate(135deg);
}
.search-icon[aria-expanded=true] .search-circle.third {
  top: 15px;
  left: 0;
  width: 30px;
  height: 3px;
  border-radius: 0;
  background-color: #333;
  transform: rotate(135deg);
}
.search-icon + .dropdown-menu[data-bs-popper] {
  top: calc(100% + 15px);
}

@media (max-width: 767px) {
  .navbar-collapse.show ~ .search-icon {
    display: block;
    opacity: 1;
  }
}

.block-dropdown-search {
  display: none !important;
  position: absolute;
  padding: var(--spacing-sm);
  top: 100%;
  left: 0;
  width: 100%;
  background-color: var(--white);
  border: 0;
  border-radius: 4px;
  box-shadow: 6px 6px 10px 0 #D9D9D9;
}
@media (min-width: 768px) {
  .block-dropdown-search {
    padding: var(--spacing-md);
  }
}
.block-dropdown-search form {
  position: relative;
}
.block-dropdown-search.is-open {
  display: block !important;
}
.block-dropdown-search .js-form-type-search {
  width: 100%;
}
.block-dropdown-search label {
  display: none;
}
.block-dropdown-search input {
  width: 100%;
  padding: 10px 20px 8px;
  border: 1px solid var(--primary-color-200);
  background-color: var(--white);
  color: var(--text);
  font-family: var(--regular);
  font-size: 1rem;
  line-height: 1.5rem;
}
@media (min-width: 768px) {
  .block-dropdown-search input {
    padding: 14px 48px 12px 30px;
    font-size: 1.125rem;
    line-height: 1.625rem;
  }
}
.block-dropdown-search input::-moz-placeholder {
  opacity: 0.8;
}
.block-dropdown-search input::placeholder {
  opacity: 0.8;
}
.block-dropdown-search .form-actions {
  position: absolute;
  display: flex;
  background-color: var(--primary-color);
  align-items: center;
  justify-content: center;
  top: 3px;
  right: 3px;
  box-sizing: inherit;
  margin-bottom: 0 !important;
  transition: var(--base-trans);
}
.block-dropdown-search .form-actions:hover {
  background-color: var(--primary-color-900);
}
.block-dropdown-search .form-actions::before {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-family: "icomoon";
  font-size: 1.25rem;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  font-display: swap;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--white);
  content: "\e907";
  z-index: 0;
}
@media (min-width: 768px) {
  .block-dropdown-search .form-actions::before {
    width: 48px;
    height: 48px;
    font-family: "icomoon";
    font-size: 1.5rem;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    font-display: swap;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}
.block-dropdown-search .js-form-submit {
  all: unset;
  width: 38px;
  height: 38px;
  background: none;
  font-size: 0;
  z-index: 1;
  cursor: pointer;
}
@media (min-width: 768px) {
  .block-dropdown-search .js-form-submit {
    width: 48px;
    height: 48px;
  }
}

@media (width >= 1024px) {
  .dropdown-menu {
    animation-duration: 0.3s;
    animation-fill-mode: both;
  }
  .dropdown-menu.show {
    animation-name: slideIn;
  }
}
@keyframes slideIn {
  0% {
    opacity: 0;
    transform: translateY(-3rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
  0% {
    opacity: 0;
    transform: translateY(-3rem);
  }
}
@keyframes slideIn {
  0% {
    -webkit-opacity: 0;
    transform: transform;
  }
  100% {
    -webkit-opacity: 1;
    transform: translateY(0);
  }
  0% {
    -webkit-opacity: 0;
    transform: translateY(-3rem);
  }
}
.header .container-custom {
  position: relative;
}
/*# sourceMappingURL=header.css.map */
