:root {
  --white: #ffffff;
  --black: #000000;
  --yellow: #fdff2d;
  --dyellow: #d8db27;
}

* {
  font-family: "Syne", "system-ui", "verdana", "tahoma", sans-serif;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  background-color: var(--black);
}

img {
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

a {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  color: var(--yellow);
}

a:hover {
  color: var(--dyellow);
  text-decoration: underline;
}
.menu a.active, .footer-menu a.active, a.active {
  color: var(--dyellow);
}

.container {
  width: 100%;
  padding: 0 15px;
  margin: 0 auto;
  position: relative;
  max-width: 1280px;
  z-index: 10;
}

.f {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.justify-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.justify-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.align-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(1, 1fr);
}

.grid-1 {
  grid-template-columns: repeat(1, 1fr);
}

.h-100 {
  height: 100%;
}

.w-100 {
  width: 100%;
}

.mt-0 {
  margin-top: 0 !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mr-0 {
  margin-right: 0 !important;
}

.ml-0 {
  margin-left: 0 !important;
}

.m-0 {
  margin: 0 !important;
}

.text,
.text * {
  line-height: 1.6;
  color: var(--black);
}

p.text,
.text > p {
  margin-bottom: 25px;
}

.text-center {
  text-align: center;
}

.btn {
  position: relative;
  display: inline-block;
  padding: 21px 24px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  border: 0;
  outline: none;
  cursor: pointer;
  background-color: var(--dyellow);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  border-radius: 5px;
  color: #fff !important;
}

.btn:hover {
  background-color: var(--yellow);
  text-decoration: none;
}

.cover-link {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 50;
  cursor: pointer;
}

.icon {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.icon:before, .icon::after {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.icon--gp {
  background-image: url(../images/c50_feeltix/android.png);
}

.icon--apple {
  background-image: url(../images/c50_feeltix/apple-logo.png);
}

.h1 {
  font-size: 48px;
  margin: 0;
}

.h2 {
  font-size: 36px;
  margin: 0 0 40px;
}

.h3 {
  font-size: 28px;
  margin: 20px 0;
}

.hide-mob {
  display: none !important;
}

.scrollbar {
  overflow-y: auto;
}

.scrollbar::-webkit-scrollbar {
  width: 5px;
  padding-right: 5px;
}

.scrollbar::-webkit-scrollbar-track {
  background: transparent;
}

.scrollbar::-webkit-scrollbar-thumb {
  background-color: var(--yellow);
  border-radius: 999px;
  width: 2px;
}

@media screen and (min-width: 576px) {
  .grid-md-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 768px) {
  .grid-lg-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 1025px) {
  .hide-mob {
    display: block !important;
  }
  .hide-desk {
    display: none !important;
  }
  .grid-xl-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .text-large {
    font-size: 28px;
  }
  .f-xl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
@media screen and (min-width: 1700px) {
  .container {
    max-width: 1640px;
  }
}
.menu-toggle {
  display: block;
  position: relative;
  z-index: 999;
  width: 50px;
  height: 50px;
}

.menu-toggle span {
  position: absolute;
  width: 24px;
  height: 2px;
  background-color: var(--black);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  display: block;
  left: 15px;
}

.menu-toggle span:nth-child(1) {
  top: 17px;
}

.menu-toggle span:nth-child(2) {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.menu-toggle span:nth-child(3) {
  bottom: 17px;
}

.menu-toggle.active span:nth-child(1) {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 46%;
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  bottom: 49%;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.header {
  height: 55px;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: var(--white);
}

.header .container {
  padding: 0;
}

.logo {
  margin-right: auto;
  margin-left: 24px;
  width: 120px;
}

.logo img {
  -o-object-fit: contain;
  object-fit: contain;
}

.search {
  margin-left: auto;
}

.search-input {
  position: absolute;
  top: 50px;
  left: 0;
  right: 0;
  width: 100%;
  background-color: var(--white);
  -webkit-box-shadow: 0 0 5px 0 rgba(1, 3, 4, 0.19);
  box-shadow: 0 0 5px 0 rgba(1, 3, 4, 0.19);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-transition: 0.3s all;
  -o-transition: 0.3s all;
  transition: 0.3s all;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
}

.search-input.active {
  z-index: 100;
  visibility: visible;
  opacity: 1;
  top: 54px;
}

.search--input {
  width: 100%;
  border: 0;
  padding: 10px 10px 10px 15px;
  background-color: rgba(255, 255, 255, 0.08);
  line-height: 40px;
  font-weight: 500;
  outline: none;
  border: 0;
  line-height: 1;
}

.icon--search {
  display: block;
  width: 50px;
  height: 50px;
  background-size: 20px;
  background-image: url(../images/c50_feeltix/search.png);
}

.icon--search.active {
  background-image: url(../images/c50_feeltix/close.png);
}

.menu-wrapper {
  height: calc(100% - 158px);
  overflow-y: auto;
}

.menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: absolute;
  top: 55px;
  left: 0;
  right: 0;
  width: 100%;
  height: calc(100vh - 55px);
  background-color: var(--black);
  padding-top: 18px;
  padding: 18px 20px 0;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.menu ul {
  margin: 0;
  padding: 0;
}

.menu li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  background-color: var(--dark);
  margin-bottom: 8px;
}

.menu a {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 16px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
}

.menu.active {
  opacity: 1;
  visibility: visible;
  z-index: 99;
}

.menu-devider {
  padding: 5px 0;
}

.icon--arrow-down {
  width: 48px;
  height: 48px;
  top: 0;
  right: 0;
  background-image: url(../images/c50_feeltix/arrow.png);
  cursor: pointer;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  background-size: 20px;
}

.icon--arrow-down.active {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  opacity: 0.5;
}

.text * {
  color: var(--white);
}

.text p {
  margin-bottom: 20px;
}

.search-result {
  width: 100%;
  left: 0;
  right: 0;
  position: absolute;
  top: 100px;
  -webkit-transition: 0.3s all;
  -o-transition: 0.3s all;
  transition: 0.3s all;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
}

.search-result.active {
  z-index: 100;
  visibility: visible;
  opacity: 1;
  top: 103px;
}

.search-result-item-no-results {
  font-size: 14px; 
  text-transform: uppercase;
  font-weight: 900;
  line-height: 1.2;
  color: var(--white);
  padding: 12px 0;
  display: block;
}

.search-result-wrapper {
  background-color: var(--black);
  padding: 8px 15px 8px;
}

.search-result-items {
  width: 100%;
  height: calc(100vh - 116px);
}

.search-result--title {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  font-weight: 900;
  line-height: 1.2;
  color: var(--white);
  padding: 12px 0;
  display: block;
}

.search-result-item {
  padding: 6px 12px;
  border-radius: 8px;
  -webkit-transition: 0.3s all;
  -o-transition: 0.3s all;
  transition: 0.3s all;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 40px;
}

.search-result-item span {
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--dark);
}

.search-result-item img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  -o-object-fit: cover;
  object-fit: cover;
  overflow: hidden;
  margin-right: 10px;
}

.search-result-item:hover {
  background-color: var(--main);
  text-decoration: none;
}

.btn-see-all {
  font-weight: 700;
  color: var(--white);
  border-top: 1px solid var(--yellow);
  margin-top: 12px;
  padding: 12px 0;
  position: relative;
  font-size: 22px;
  text-transform: uppercase;
  text-align: center;
  font-weight: 900;
  letter-spacing: -1px;
  width: 100%;
  display: block;
}

.btn-see-all::after {
  content: "";
  width: 24px;
  height: 24px;
  display: inline-block;
  margin-left: 4px;
  background-image: url(../images/c50_feeltix/arrow-right-red.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 50%;
  -webkit-transform: translateY(3px);
  -ms-transform: translateY(3px);
  transform: translateY(3px);
  -webkit-transition: 0.3s all;
  -o-transition: 0.3s all;
  transition: 0.3s all;
}

.btn-see-all:hover {
  background-color: var(--white) !important;
  color: var(--dark);
  text-decoration: none;
}

.btn-see-all:hover::after {
  -webkit-transform: translate(3px, 3px);
  -ms-transform: translate(3px, 3px);
  transform: translate(3px, 3px);
}

@media screen and (min-width: 1025px) {
  .menu-toggle {
    display: none;
  }
  .logo {
    font-size: 32px;
    margin: 0 15px 0 0;
  }
  .search {
    margin-left: 20px;
  }
  .search-input {
    height: 48px;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
  }
  .icon--search {
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
  }
  .search-result {
    left: auto;
    right: 0;
    width: 400px;
    top: 42px;
  }
  .search-result.active {
    top: 128px;
  }
  .search-result-items {
    height: calc(100vh - 125px);
    max-height: 472px;
  }
  .search-result-cohort {
    padding-right: 2px;
  }
  .header {
    background-color: var(--black);
    height: 106px;
  }
  .header.active {
    background-color: #111111;
    height: 76px;
  }
  .header.active .search-input.active {
    top: 60px;
  }
  .header.active .search-result.active {
    top: 108px;
  }
  .menu {
    position: static;
    width: auto;
    opacity: 1;
    visibility: visible;
    z-index: 10;
    height: auto;
    background-color: transparent;
    padding: 0;
    margin: 0 auto;
  }
  .menu a {
    font-size: 15px;
    font-weight: 600;
  }
  .menu-wrapper {
    height: auto;
    overflow: hidden;
  }
  .menu li {
    display: inline;
  }
  .menu a:hover {
    color: var(--yellow);
  }
  .icon--search {
    -webkit-filter: invert(1);
    filter: invert(1);
    cursor: pointer;
  }
  .search-input {
    width: 400px;
    right: 0;
    left: auto;
  }
  .search-input.active {
    top: 80px;
  }
  .logo img {
    -webkit-filter: invert(1);
    filter: invert(1);
  }
}
.footer {
  background-color: var(--black);
  border-top-right-radius: 32px;
  border-top-left-radius: 32px;
  padding-top: 40px;
  margin-top: 40px;
}

.footer-logo {
  color: var(--white);
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: -0.3px;
  font-size: 28px;
  text-align: center;
  margin: 0 0 32px;
  display: block;
  text-decoration: none;
}

.footer-logo:hover {
  color: var(--white);
  text-decoration: none;
}

.copyright {
  display: block;
  padding: 32px 0;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.3;
  color: #BFBFBF;
}

.footer-menu {
  padding: 0;
  margin: 0 0 20px;
  list-style: none;
}

.footer-menu a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 48px;
  width: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: var(--white);
  background-color: var(--dark);
  text-decoration: none;
  font-size: 14px;
  line-height: 1.1;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.3px;
  margin-bottom: 8px;
  border-radius: 10px;
}

.menu-social--links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
}

.menu-social--links a {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  aspect-ratio: 1/1;
  max-width: 90px;
  background-size: 27px;
  border-radius: 10px;
  background-color: var(--dark);
}

.icon--twitter {
  background-image: url(../images/c50_feeltix/twitter.png);
}

.icon--facebook {
  background-image: url(../images/c50_feeltix/facebook.png);
}

.icon--instagram {
  background-image: url(../images/c50_feeltix/instagram.png);
}

.icon--tiktok {
  background-image: url(../images/c50_feeltix/tiktok.png);
}

@media screen and (min-width: 1025px) {
  .footer-row {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  .footer-menu a {
    background-color: transparent;
    display: inline-block;
  }
  .footer-bottom {
    width: 100%;
  }
  .copyright,
.footer-logo {
    text-align: left;
  }
  .menu-social--links a {
    max-width: 60px;
  }
  .menu-social--links {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .footer-menu {
    padding-left: 40px;
  }
}
.event-page-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  background-color: var(--black);
  border-radius: 20px;
  padding: 20px;
  margin-bottom: 20px;
}

.event-summary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

.event-date {
  border-radius: 5px;
  background-color: #1E1E1E;
  padding: 16px;
  max-width: 120px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.event-date--day {
  font-size: 28px;
  text-transform: uppercase;
  color: var(--white);
  font-weight: 700;
}

.event-date--month {
  font-size: 12px;
  text-transform: uppercase;
  color: var(--white);
  font-weight: 700;
}

.event-date--time {
  font-size: 12px;
  text-transform: uppercase;
  color: var(--dgray);
  font-weight: 700;
  margin-top: 18px;
}

.event-info {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.event--title {
  font-size: 22px;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 10px;
  text-decoration: underline;
}

.event--venue {
  text-decoration: underline;
  color: var(--dgray);
}

.guarantee--title {
  text-transform: uppercase;
  font-size: 22px;
  font-weight: 800;
}

.guarantee--list {
  padding-left: 20px;
  margin: 0;
}

.events-in {
  position: relative;
  margin: 30px 0 40px;
}

.events-in-wrapper {
  border-radius: 10px;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 26px;
  border-radius: 10px;
  position: relative;
  color: var(--white);
}

.events-in-wrapper.active::after {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.events-in-wrapper span:first-child {
  padding-right: 3px;
}

.events-in--choosen {
  text-decoration: underline;
  position: relative;
  cursor: pointer;
}

.events-in--choosen::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-left: 2px;
  background-image: url("../images/c50_feeltix/location.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transform: translateY(3px);
  -ms-transform: translateY(3px);
  transform: translateY(3px);
}

.dropdown-select {
  background-color: var(--white);
}

.dropdown {
  position: absolute;
  width: 100%;
  top: 100%;
  left: 0;
  opacity: 0;
  z-index: -1;
  visibility: hidden;
  -webkit-transition: 0.3s all;
  -o-transition: 0.3s all;
  transition: 0.3s all;
}

.dropdown.active {
  opacity: 1;
  visibility: visible;
  z-index: 10;
  top: calc(100% + 2px);
}

.dropdown * {
  color: var(--black);
}

.dropdown-item {
  display: block;
  padding: 8px;
  font-weight: 500;
  cursor: pointer;
}

.events-in--input {
  width: 100%;
  border: 0;
  padding: 8px;
  background-color: var(--white);
  border-bottom: 1px solid var(--black);
  line-height: 40px;
  font-weight: 500;
  outline: none;
  line-height: 1;
}

.filters {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-right: auto;
  margin: 18px 0 32px;
}

.filter {
  position: relative;
  margin-bottom: 8px;
  width: 100%;
}

.filter-btn {
  position: relative;
  text-transform: uppercase;
  color: var(--white);
  font-weight: 700;
  -webkit-transition: 0.3s all;
  -o-transition: 0.3s all;
  transition: 0.3s all;
  cursor: pointer;
  height: 40px;
  padding: 10px 40px 10px 15px;
  background-color: #111111;
  border: 1px solid var(--white);
  display: block;
  width: 100%;
}

.filter-btn::after {
  position: absolute;
  content: "";
  width: 11px;
  height: 7px;
  background-image: url("../images/c50_feeltix/arrow.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transition: 0.3s all;
  -o-transition: 0.3s all;
  transition: 0.3s all;
  right: 16px;
  top: 15px;
}

.filter-btn.active::after {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.date-filter--btn {
  position: absolute;
  text-transform: uppercase;
  color: var(--white);
  font-weight: 700;
  -webkit-transition: 0.3s all;
  -o-transition: 0.3s all;
  transition: 0.3s all;
  cursor: pointer;
  height: 40px;
  padding: 10px 0 0 15px;
  display: block;
  width: 100%;
}

.filter-dropdown {
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  background-color: var(--white);
  border-radius: 10px;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  z-index: -1;
  -webkit-transition: 0.3s all;
  -o-transition: 0.3s all;
  transition: 0.3s all;
}

.filter-dropdown.active {
  opacity: 1;
  visibility: visible;
  z-index: 10;
}

.filter-dropdown--search {
  position: relative;
}

.search--icon {
  position: absolute;
  left: 16px;
  top: 16px;
  width: 16px;
  height: 16px;
  background-image: url("../images/c50_feeltix/search.png");
  -webkit-filter: invert(1);
  filter: invert(1);
}

.filter-dropdown--list {
  padding: 8px 4px;
}

.filter-dropdown--item {
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 14px;
  line-height: 1.2;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--black);
  cursor: pointer;
  -webkit-transition: 0.3s all;
  -o-transition: 0.3s all;
  transition: 0.3s all;
}

.filter-dropdown--item.active, .filter-dropdown--item:hover {
  background-color: var(--main);
}

.concert--link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 40px auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.pagination--arrow-prev {
  background-image: url("../images/c50_feeltix/arrow.png");
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.pagination--arrow-next {
  background-image: url("../images/c50_feeltix/arrow.png");
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.pagination--btn {
  width: 40px;
  height: 40px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 40px;
  flex: 0 0 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 8px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--white);
  -webkit-transition: 0.3s all;
  -o-transition: 0.3s all;
  transition: 0.3s all;
  margin: 0 5px;
  background-size: 20px;
}

.pagination--btn.active {
  color: var(--white);
  border: 1px solid var(--white);
}

.pagination--btn.disabled {
  opacity: 0.5;
  pointer-events: none;
}

main {
  padding-top: 55px;
}

.hero {
  padding: 50px 0;
  min-height: 250px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
}

.h1 {
  font-size: 26px;
  text-transform: uppercase;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -2px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero--img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
}

.tabs-nav {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  margin-bottom: 16px;
}

.tabs-nav::after {
  position: absolute;
  content: "";
  bottom: 0;
  height: 4px;
  width: 100%;
  border-radius: 25px;
  background-color: var(--white);
}

.tab-nav {
  padding: 0 16px 16px;
  font-size: 14px;
  text-transform: uppercase;
  -webkit-transition: 0.3s all;
  -o-transition: 0.3s all;
  transition: 0.3s all;
  position: relative;
  display: block;
  z-index: 2;
  color: var(--white);
}

.tab-nav::after {
  position: absolute;
  left: 0;
  content: "";
  bottom: 0;
  height: 4px;
  width: 100%;
  border-radius: 25px;
  background-color: var(--white);
}

.tab-nav:hover, .tab-nav.active {
  text-decoration: none;
  color: var(--yellow);
}

.tab-nav:hover::after, .tab-nav.active::after {
  background-color: var(--yellow);
}

.tab-nav:last-child {
  padding-right: 0;
}

.tab-nav:first-child {
  padding-left: 0;
}

.tab-item {
  position: relative;
  width: 100%;
  margin-bottom: 30px;
  display: none;
}

.tab-item[data-tab=concerts] {
  display: block;
}

.tab-item--img {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.tab-item-info {
  position: relative;
  padding: 15px;
  text-align: center;
  background-color: #111;
}

.tab-item--name {
  text-transform: uppercase;
  font-weight: 500;
  color: var(--white);
  margin: 0;
}

.tab-item--name a {
  color: var(--white);
}

.tab-item--date {
  color: var(--yellow);
  font-weight: 500;
}

.tab-info-soc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 20px;
  margin-top: 15px;
}

.tab-info-soc a {
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--white);
  background-size: 20px;
  -webkit-transition: 0.3s all;
  -o-transition: 0.3s all;
  transition: 0.3s all;
}

.tab-info-soc a:hover {
  background-color: var(--yellow);
}

.date-filter {
  position: relative;
  background: #111111;
  min-width: 240px;
  position: relative;
  height: 40px;
  background-color: #111111;
  border: 1px solid var(--white);
  display: block;
}

.date-arrow {
  position: absolute;
  color: #fff;
  z-index: 1;
  width: 40px;
  height: 40px;
  background-image: url("../images/c50_feeltix/arrow.png");
  background-size: 11px;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transition: 0.3s all;
  -o-transition: 0.3s all;
  transition: 0.3s all;
  right: 0;
  top: 0;
}

.date-arrow.clear {
  background-image: url("../images/c50_feeltix/close.png");
  -webkit-filter: invert(1);
  filter: invert(1);
  background-size: 20px;
  z-index: 20;
}

.flatpickr.input, .flatpickr-input {
  background: #181818;
  color: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  min-width: 220px;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.flatpickr.input, .flatpickr-input {
  height: 40px;
  border: 0;
  background: 0 0;
  width: 100%;
  position: relative;
  z-index: 2;
  outline: 0;
}

.flatpickr.input::-webkit-input-placeholder, .flatpickr-input::-webkit-input-placeholder {
  color: #fff;
}

.flatpickr.input::-moz-placeholder, .flatpickr-input::-moz-placeholder {
  color: #fff;
}

.flatpickr.input:-ms-input-placeholder, .flatpickr-input:-ms-input-placeholder {
  color: #fff;
}

.flatpickr.input::-ms-input-placeholder, .flatpickr-input::-ms-input-placeholder {
  color: #fff;
}

.flatpickr.input::placeholder, .flatpickr-input::placeholder {
  color: #fff;
}

.flatpickr-monthDropdown-months option {
  color: #000;
}

.event {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--white);
  margin-bottom: 18px;
}

.event h2, .event h2 a {
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 5px;
  font-weight: 900;
  color: var(--white);
}

.event h2:hover, .event h2 a:hover {
  color: var(--yellow);
}

.event h2 {
  margin: 0 0 18px;
}

.event--date {
  color: var(--yellow);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 4.5;
}

.event-btns {
  margin-top: 18px;
}

.event--btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: var(--yellow);
  text-transform: uppercase;
  color: var(--black);
  height: 40px;
  padding: 4px 21px;
  font-weight: 700;
  font-size: 14px;
}

.event--btn:hover {
  color: var(--black);
  text-decoration: underline;
}

.breadcrumbs {
  text-align: center;
  padding: 15px 0;
}

.breadcrumbs--link {
  text-transform: uppercase;
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
}

span.breadcrumbs--link {
  color: var(--yellow);
}

.breadcrumbs--sep {
  color: var(--white);
  display: inline-block;
  margin: 0 5px;
}

.contact-info {
  background-color: #151515;
  padding: 50px 0;
  margin-top: 40px;
}

.contact-item--title {
  display: block;
  font-size: 18px;
  font-weight: 900;
  color: var(--white);
  margin: 0 0 12px;
  letter-spacing: 5.4px;
}

.contact-item {
  text-align: center;
  width: 100%;
  margin-bottom: 30px;
}

.contact-item:last-child,
.contact-item .menu-social--links {
  margin: 0;
}

.contact-item a {
  display: block;
  margin-bottom: 5px;
  font-size: 13px;
  color: var(--white);
}

.footer-row {
  width: 100%;
}

.footer-bottom {
  width: 100%;
  text-align: center;
}

.menu-social--links {
  margin-bottom: 20px;
}

@media screen and (min-width: 575px) {
  .tabs-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
  .filters {
    gap: 18px;
  }
  .filter {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  .dropdown {
    max-width: 400px;
  }
}
@media screen and (min-width: 767px) {
  .tabs-content {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 1025px) {
  .contact-info {
    padding: 100px 0;
  }
  .contact-item--title {
    letter-spacing: 7px;
  }
  .tab-nav {
    cursor: pointer;
  }
  .hero {
    min-height: 400px;
  }
  .hero--img {
    height: 100%;
  }
  .h1 {
    font-size: 55px;
  }
  .block-events {
    padding: 120px 0;
  }
  .events-in-wrapper {
    font-size: 55px;
  }
  .events-in--choosen::after {
    width: 40px;
    height: 40px;
  }
  .filters {
    margin: 40px 0;
  }
  .filter {
    -webkit-box-flex: 0;
    -ms-flex: 0 1;
    flex: 0 1;
  }
  .filter-btn {
    white-space: nowrap;
    max-width: 250px;
    height: 60px;
    padding: 21px 40px 0 15px;
  }
  .filter-btn::after {
    top: 25px;
  }
  .date-filter {
    max-width: 250px;
    padding: 8px 15px 18px 15px;
    height: 60px;
  }
  .flatpickr-input {
    padding: 0;
    font-size: 18px;
  }
  .date-filter--btn {
    padding: 13px 0 0 0;
  }
  .date-arrow {
    top: 9px;
    cursor: pointer;
  }
  .dropdown-item {
    -webkit-transition: 0.3s all;
    -o-transition: 0.3s all;
    transition: 0.3s all;
  }
  .dropdown-item:hover {
    text-decoration: underline;
  }
  .pagination {
    margin: 80px 0 0;
  }
  .contact-item--title {
    font-size: 24px;
  }
}