/* ========================================================== */
/* 			            04. breakpoints                           */
/* ========================================================== */
.site-header {
  /*position: relative;
  background: transparent;
  z-index: 100;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  transition: height 0.3s ease-in-out;*/
}
.site-header > .row > .col-12:first-child {
  border-bottom: 1px solid #ddd;
  position: relative;
}
.site-header__categories-wrapper, .site-header__clubs-wrapper {
  background: #fff;
}
.site-header__main {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 101;
  background: white;
}
.site-header__secondary {
  transition: transform 0.3s ease-in-out;
}
.site-header__secondary.hidden {
  transform: translateY(-200%);
}
.site-header__logo {
  margin: 12px auto;
}
.site-header__logo h1,
.site-header__logo a,
.site-header__logo span {
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .site-header__logo img {
    max-width: 60px;
  }
}
.site-header__layout-item-header {
  display: flex;
  justify-content: center;
  align-items: center;
}
.site-header__layout-item-col-left {
  display: flex;
  align-items: center;
  justify-content: left;
}
.site-header__layout-item-col-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.site-header__layout-item-col-right {
  display: flex;
  align-items: center;
  justify-content: right;
}
.site-header_icons {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: left;
}
@media only screen and (max-width: 768px) {
  .site-header_icons {
    display: none;
  }
}
.site-header__menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-header__menu-separator {
  display: block;
  width: 1px;
  min-height: 45px;
  height: 100%;
  background: #ddd;
  margin: 0 20px;
}
@media only screen and (max-width: 768px) {
  .site-header__menu-separator {
    display: none;
  }
}
.site-header__menu-popup {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: -9;
  opacity: 0;
  transition: opacity 150ms ease, z-index 200ms ease;
}
.site-header__menu-popup.active {
  z-index: 999999;
  opacity: 1;
}
.site-header__menu-bg {
  background: rgba(0, 0, 0, 0.6);
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
}
.site-header__menu-wrapper {
  display: flex;
  flex-direction: column;
  z-index: 9;
  position: relative;
  overflow: auto;
  background: #fff;
  height: 100vh;
  width: 100%;
  max-width: 350px;
  transform: translate(-100%, 0px);
  transition: transform 300ms ease;
}
.site-header__menu-wrapper.active {
  transform: translate(0px, 0px);
}
.site-header__menu-header {
  border-bottom: 1px solid #ddd;
}
.site-header__menu-main .menu-item {
  margin: 0;
  display: flex;
  justify-content: left;
  align-items: center;
  border-bottom: 1px solid #ddd;
}
.site-header__menu-main .menu-item:last-of-type {
  border: 0;
}
.site-header__menu-main .menu-item a {
  color: #000;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0px;
  font-size: 20px;
  line-height: 1.2;
  padding: 16px 20px;
  display: block;
  width: 100%;
}
.site-header__menu-main .menu-item a:hover {
  color: var(--hover-color);
}
.site-header__menu-footer {
  margin: auto 0 0;
  padding: 20px 0;
  border-top: 1px solid #ddd;
}
.site-header__menu-secondary {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-header__menu-secondary .menu-item {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: left;
  align-items: center;
  padding: 6px 20px;
}
.site-header__menu-secondary .menu-item a {
  color: #444;
  width: 100%;
}
.site-header__menu-secondary .menu-item a:hover {
  color: var(--hover-color);
}
.site-header__button {
  background: transparent;
  border: unset;
  outline: unset;
  cursor: pointer;
}
.site-header__button-menu {
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  flex-direction: column;
}
.site-header__button-menu .line {
  width: 100%;
  min-width: 20px;
  height: 2px;
  background: #000;
}
.site-header__button-search, .site-header__button-search span {
  max-width: 20px;
  max-height: 20px;
  display: flex;
}
.site-header__button-close {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  gap: 5px;
  position: relative;
  margin: 15px 15px 15px auto;
}
.site-header__button-close .line {
  width: 100%;
  min-width: 20px;
  height: 2.2px;
  background: #000;
}
.site-header__button-close .line:first-of-type {
  transform: rotate(45deg) translate(3px, 3px);
}
.site-header__button-close .line:last-of-type {
  transform: rotate(-45deg) translate(2.4px, -3px);
}
.site-header__link, .site-header__link span {
  max-width: 20px;
  max-height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.site-header__button, .site-header__link {
  filter: invert(0%);
  transition: filter 150ms ease-in-out;
}
.site-header__button:hover, .site-header__link:hover {
  filter: invert(52%) sepia(21%) saturate(447%) hue-rotate(85deg) brightness(95%) contrast(91%);
}
.site-header__search {
  position: absolute;
  left: 0;
  right: 0;
  top: -100%;
  bottom: 0;
  height: 100%;
  background: #fff;
  display: flex;
  z-index: -1;
  transition: 300ms ease;
}
@media only screen and (max-width: 768px) {
  .site-header__search .container {
    padding: 0 !important;
  }
}
.site-header__search.active {
  z-index: 1;
  top: 0;
}
.site-header__search .search-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.site-header__search .search-form {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  position: relative;
}
.site-header__search .search-form label,
.site-header__search .search-form input {
  width: 100%;
  max-width: 100%;
}
.site-header__search .search-form .search-field {
  padding: 12px 16px;
  padding-right: 62px;
  border: 1px solid #ddd;
  outline: unset;
  background: #fff;
  border: 0;
}
.site-header__search .search-form button {
  border: 0;
  outline: unset;
  cursor: pointer;
  background: transparent;
  position: absolute;
  right: 0;
  padding: 12px 14px;
}
.site-header__search .search-form button span {
  max-width: 20px;
  max-height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.site-header__categories, .site-header__clubs {
  overflow: hidden;
  white-space: nowrap;
  padding: 12px 0px;
  display: flex;
  gap: 0px;
  justify-content: space-between;
}
.site-header__categories .slick-track, .site-header__clubs .slick-track {
  display: flex;
  gap: 0px;
  justify-content: space-between;
}
.site-header__categories .slick-track:before, .site-header__categories .slick-track:after, .site-header__clubs .slick-track:before, .site-header__clubs .slick-track:after {
  content: unset;
  display: none;
}
.site-header__categories a, .site-header__clubs a {
  display: inline-block !important;
  margin-right: 5px !important;
  margin-left: 5px !important;
  width: auto !important;
  display: inline-flex !important;
  justify-content: left !important;
}
.site-header__categories a:first-of-type, .site-header__clubs a:first-of-type {
  margin-left: 0px !important;
}
.site-header__categories a:last-of-type, .site-header__clubs a:last-of-type {
  margin-right: 10px !important;
}
.site-header__categories .slick-prev, .site-header__categories .slick-next {
  background: var(--main-color);
  color: #000;
  box-shadow: 0 0 20px 25px var(--main-color);
}
.site-header__categories .slick-prev:hover, .site-header__categories .slick-next:hover {
  background: var(--main-color);
}
.site-header__categories a {
  color: #000;
  text-decoration: none;
  position: relative;
  font-size: clamp(12px, 1vw, 14px);
  font-weight: 600;
  padding: 2px 0;
}
.site-header__categories a:before {
  content: attr(data-name);
}
.site-header__categories a:after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: -1px;
  left: 0px;
  transform-origin: left bottom;
  transition: transform 350ms ease-out;
}
.site-header__categories a:hover {
  color: #000;
  text-decoration: none;
}
.site-header__categories a:hover:after {
  transform: scaleX(1);
  transform-origin: left bottom;
  background-color: #000;
}
.site-header__clubs a {
  transition: transform 150ms ease;
}
.site-header__clubs a:hover {
  transform: scale(1.2);
}

/*# sourceMappingURL=header.css.map */
