.page-body {
  overflow: visible !important;
}

.header {
  background: #ffffff;
  position: sticky;
  top: 0;
  z-index: 12;
  padding: 14px 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;

  font-family: "Proxima Nova", sans-serif;
}

.header__main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-family: "Proxima Nova", sans-serif;
  width: 100%;
}

.header__logo {
  flex-shrink: 0;
}

.header__logo-link {
  display: block;
}

.header__logo-img {
  height: 53px;
  width: auto;
}

.header__main-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.header__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  height: 52px;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Proxima Nova", sans-serif;
}

.header__btn--tickets {
  padding: 0 45px;
  background: #930a16;
  color: #ffffff;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}

.header__btn--tickets:hover {
  background: #ffffff;
  color: #ed1b2f;
  border: 1px solid #ed1b2f;
}

.header__btn--shop {
  padding: 0 23px;
  background: #ffffff;
  color: #231f20;
  border: 1px solid #bfbfbf;
  transition: all 0.3s ease;
}

.header__btn--shop:hover {
  background: #ffffff;
  color: #ed1b2f;
  border: 1px solid #ed1b2f;
}

.header__btn svg {
  width: 24px;
  height: 24px;
}

.header-trophies-content {
  display: none;
}

.header-trophies {
  padding: 15px 20px 15px;
  background: #ffffff;
  border-radius: 10px;
  min-width: 300px;
}

.header-trophies__title {
  font-size: 14px;
  font-weight: 400;
  color: #231f20;
  line-height: 1;
  margin-bottom: 10px;
}

.header-trophies__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
}

.header-trophies__list-item {
  padding: 7px 0;
  font-size: 12px;
  font-weight: 400;
  color: #231f20;
  line-height: 1;
  color: #231f20;
  border-top: 1px solid #dbdbdb;
  display: flex;
  align-items: center;
  gap: 2px;
}

.header-trophies__list-item:last-child {
  padding: 7px 0 0 0;
}

.header-trophies__item-icon {
  display: flex;
  align-items: center;
  height: 30px;
  width: 30px;
}

.header-trophies__item-year {
  font-size: 14px;
  color: #231f20;
  width: 35px;
}

.header-trophies__item-prize {
  color: #231f20;
}

.tippy-box[data-theme~="trophies-dropdown"] {
  background-color: #ffffff;
  padding: 0;
  min-width: 250px;
  max-width: 300px;
  border-radius: 10px;
  border: 1px solid #bfbfbf;
}

.tippy-box[data-theme~="trophies-dropdown"] .tippy-content {
  padding: 0;
  background-color: #ffffff;
  border-radius: 10px;
}

.tippy-box[data-theme~="trophies-dropdown"] .tippy-arrow {
  color: #bfbfbf;
}

@media (max-width: 1700px) {
  .header-trophies__list-item {
    font-size: 10px;
  }

  .header-trophies__title,
  .header-trophies__item-year {
    font-size: 12px;
  }

  .header__btn {
    font-size: 16px;
    gap: 10px;
    height: 40px;
  }

  .header__main-actions {
    gap: 12px;
  }

  .header__btn svg {
    width: 20px;
    height: 20px;
  }

  .header__btn--shop {
    padding: 0 16px;
  }

  .header__btn--tickets {
    padding: 0 36px;
  }
}

@media (max-width: 1200px) {
  .header {
    padding: 14px 20px;
  }

  .header__main {
    gap: 10px;
  }
}

@media (max-width: 1024px) {
  .header {
    padding: 16px;
    gap: 10px;
  }

  .header__logo-img {
    height: 33px;
  }
}

@media (max-width: 500px) {
  .header__btn--shop {
    padding: 0 36px;
  }

  .header__btn--tickets span,
  .header__btn--shop span {
    display: none;
  }
}
