:root {
  --primary: 230, 25, 31;
  --b: 26, 26, 26;
  --header: 16, 16, 16;
  --headerv2: 16, 16, 16;
  --left-side: 16, 16, 16;
  --left-side-width: 200px;
  --t: 255, 255, 255;
  --primary: 230, 25, 31;
  --secondary: 46, 46, 46;
  --primary-sc: 255, 255, 255;
  --sc: 255, 255, 255;
  --secondary-sc: 255, 255, 255;
  --modal: 24, 24, 24;
  --dropdown: 33, 33, 33;
  --dropdown-sc: 255, 255, 255;
  --card: 19, 19, 19;
  --card-border: 44, 44, 44;
  --danger: 255, 0, 0;
  --btn-s: 14px;
  --dp-common-transition: all .1s ease-in;
  --dp-menu-padding: 6px 8px;
  --dp-animation-duration: .1s;
  --dp-menu-appear-transition-timing: cubic-bezier(.4, 0, 1, 1);
  --dp-transition-timing: ease-out;
  --dp-action-row-transtion: all .2s ease-in;
  --dp-font-family: -apple-system, blinkmacsystemfont, "Segoe UI", roboto, oxygen, ubuntu, cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  --dp-border-radius: 4px;
  --dp-cell-border-radius: 4px;
  --dp-transition-length: 22px;
  --dp-transition-timing-general: .1s;
  --dp-button-height: 35px;
  --dp-month-year-row-height: 35px;
  --dp-month-year-row-button-size: 25px;
  --dp-button-icon-height: 20px;
  --dp-calendar-wrap-padding: 0 5px;
  --dp-cell-size: 35px;
  --dp-cell-padding: 5px;
  --dp-common-padding: 10px;
  --dp-input-icon-padding: 35px;
  --dp-input-padding: 6px 30px 6px 12px;
  --dp-menu-min-width: 260px;
  --dp-action-buttons-padding: 1px 6px;
  --dp-row-margin: 5px 0;
  --dp-calendar-header-cell-padding: .5rem;
  --dp-multi-calendars-spacing: 10px;
  --dp-overlay-col-padding: 3px;
  --dp-time-inc-dec-button-size: 32px;
  --dp-font-size: 1rem;
  --dp-preview-font-size: .8rem;
  --dp-time-font-size: 2rem;
  --dp-action-button-height: 22px;
  --dp-action-row-padding: 8px;
  --dp-direction: ltr;
  --vc-clr-primary: #000;
  --vc-clr-secondary: #090f207f;
  --vc-clr-white: #ffffff;
  --vc-icn-width: 1.2em;
  --vc-nav-width: 30px;
  --vc-nav-height: 30px;
  --vc-nav-border-radius: 0;
  --vc-nav-color: var(--vc-clr-primary);
  --vc-nav-color-hover: var(--vc-clr-secondary);
  --vc-nav-background: transparent;
  --vc-pgn-width: 12px;
  --vc-pgn-height: 4px;
  --vc-pgn-margin: 4px;
  --vc-pgn-border-radius: 0;
  --vc-pgn-background-color: var(--vc-clr-secondary);
  --vc-pgn-active-color: var(--vc-clr-primary);
  --toastify-color-light: #fff;
  --toastify-color-dark: #121212;
  --toastify-color-info: #3498db;
  --toastify-color-success: #07bc0c;
  --toastify-color-warning: #f1c40f;
  --toastify-color-error: #e74c3c;
  --toastify-color-transparent: hsla(0, 0%, 100%, .7);
  --toastify-icon-color-info: var(--toastify-color-info);
  --toastify-icon-color-success: var(--toastify-color-success);
  --toastify-icon-color-warning: var(--toastify-color-warning);
  --toastify-icon-color-error: var(--toastify-color-error);
  --toastify-toast-width: 320px;
  --toastify-toast-background: #fff;
  --toastify-toast-min-height: 64px;
  --toastify-toast-max-height: 800px;
  --toastify-font-family: sans-serif;
  --toastify-z-index: 9999;
  --toastify-text-color-light: #757575;
  --toastify-text-color-dark: #fff;
  --toastify-text-color-info: #fff;
  --toastify-text-color-success: #fff;
  --toastify-text-color-warning: #fff;
  --toastify-text-color-error: #fff;
  --toastify-spinner-color: #616161;
  --toastify-spinner-color-empty-area: #e0e0e0;
  --toastify-color-progress-light: linear-gradient(90deg, #4cd964, #5ac8fa, #007aff, #34aadc, #5856d6, #ff2d55);
  --toastify-color-progress-dark: #bb86fc;
  --toastify-color-progress-info: var(--toastify-color-info);
  --toastify-color-progress-success: var(--toastify-color-success);
  --toastify-color-progress-warning: var(--toastify-color-warning);
  --toastify-color-progress-error: var(--toastify-color-error);
  --toastify-color-progress-colored: #ddd;
}

*,
*::after,
*::before {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}


body {
  background-color: rgba(var(--b));
  color: #fff;
  font-family: 'Chakra Petch';
  height: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

ul {
  list-style: none;
}

a {
  display: inline-block;
  color: inherit;
  text-decoration: none;
}



button {
  background-color: transparent;
  outline: none;
  border: none;
}


.container {
  max-width: 1340px;
  padding: 0 15px;
  margin: 0 auto;
}



.header {
  background-color: #101010;
  color: #ffffffe6;
  height: 80px;
  position: fixed;
  top: 0;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 9999;

  display: flex;
  align-items: center;
  justify-content: center;
}

.header a {
  color: inherit;
}

.header .container {
  width: 100%;
}

.flex {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header__inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.header__logo {
  max-width: 190px;
}

.header__list {
  display: flex;
  align-items: center;
}



.header__item {}

.header__item svg {
  width: 16px !important;
  height: 16px !important;
  fill: rgba(255, 255, 255, 0.6);
  margin-right: 5px;
}

.header__link {
  display: flex;
  align-items: center;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  padding: 6px 7px;
  position: relative;
  transition: all 0.3s ease;
}

.header__link svg {
  transition: all 0.3s ease;
}

.header__link:hover {
  color: #fff;
}

.header__link:hover svg {
  fill: #fff;
}

.header__link:after {
  content: "";
  width: 0%;
  height: 0px;
  border-radius: 30px;
  left: 50%;
  transform: translate(-50%);
  background: rgba(230, 25, 31, 1);
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  position: absolute;
  bottom: -10px;
}

.header__link.active::after {
  width: 100%;
  height: 2px;
}

.header__btns {
  display: flex;
  align-items: center;
}

.header__btn {
  background: rgb(46, 46, 46);
  color: rgb(255, 255, 255);
  font-size: 14px;
  text-transform: uppercase;
  padding: 9px 12px;
  border-radius: 10px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  height: 45px;
  justify-content: center;
  -webkit-transition: all .1s ease-in-out;
  -moz-transition: all .1s ease-in-out;
  -o-transition: all .1s ease-in-out;
  transition: all .1s ease-in-out;
  font-family: 'Rubik', sans-serif;
  position: relative;
}

/* .header__btn:first-child {
  border: 1px solid rgba(255, 0, 0, .4196078431) !important;
  font-size: 15px;
  cursor: pointer;
  position: relative;
  padding-left: 35px;
  height: 45px;
  margin: 0 15px;
  width: 120px;
  background: linear-gradient(90deg, #0000, rgba(var(--primary), 1)) !important;
} */

.header__btn svg {
  width: 18px;
  height: 18px;
  fill: #fff;
  margin-right: 5px;
}

.image img {
  max-width: 50px;
  width: 50px;
  height: 50px;
  position: absolute;
  left: -20px;
  top: -1px;
  margin-right: 5px;
}

.primary {
  background: rgba(var(--primary), 1);
  color: rgba(var(--primary-sc), 1);
  margin-left: 10px;

}

.primary:hover {
  background: rgb(216, 49, 49);
}


.lgs {
  display: flex;
  flex-direction: column;
  text-align: left;
  font-size: 14px;
  font-family: 'Chakra Petch', sans-serif;
}

.main {
  padding-top: 100px;
  overflow: hidden;
  flex: 1;
  position: relative;
}

.main-index .container {
  position: relative;
  z-index: 3;
}


.banner {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.banner img {
  min-width: 100px;
  max-width: 160px;
  border-radius: 10px;
}

.banner-left {
  left: 30px;
}

.banner-right {
  right: 30px;
}

.main__banner {
  margin-bottom: 5px;
  width: 100%;
  display: block;
}

.main__banner a {
  display: block;
  width: 100%;
}

.main__banner img {
  border-radius: 10px;
  width: 100%;
  height: auto;
  display: block;
}

.fix-side {
  position: fixed;
  top: calc(50% + 40px);
  transform: translateY(-50%)
}

.fix-side.left {
  left: 20px
}

.fix-side.right {
  right: 20px
}



.marquee-wrapper {
  display: flex
}

.fix-marquee {
  background: rgba(var(--card), 1);
  border: 1px solid rgba(var(--card-border), 1);
  box-shadow: #0003 0 2px 8px;
  border-radius: 10px;
  margin-bottom: 20px
}

.fix-marquee .marquee-wrapper {
  padding: 10px;
  display: flex;
  align-items: center
}

.fix-marquee .marquee-wrapper a {
  display: flex;
  margin: 0 10px
}

.fix-marquee .marquee-wrapper a img {
  display: block;
  width: 150px;
  height: 35px;
  object-fit: contain
}

.fix-marquee {
  background: rgba(var(--card), 1);
  border: 1px solid rgba(var(--card-border), 1);
  box-shadow: #0003 0 2px 8px;
  border-radius: 10px;
  margin-bottom: 20px;
  overflow: hidden;
  /* ОБЯЗАТЕЛЬНО */
}

.marquee {
  display: flex;
  width: max-content;
  animation: scroll 30s linear infinite;
  /* скорость можно менять */
}

.marquee-wrapper {
  display: flex;
  padding: 10px;
  align-items: center;
}

.fix-marquee .marquee-wrapper a {
  display: flex;
  margin: 0 10px;
}

.fix-marquee .marquee-wrapper a img {
  display: block;
  width: 150px;
  height: 35px;
  object-fit: contain;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.autocomplete-input {
  position: relative
}

.autocomplete-input h2 {
  font-size: 20px
}

.autocomplete-input .content {
  width: 100%;
  position: absolute;
  background: linear-gradient(0deg, rgba(var(--header), 1), #fff0) !important;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  z-index: 999;
  padding: 0 20px;
  border-radius: 0 0 30px 30px
}

.mb-1 {
  margin-bottom: 1rem;
}

.autocomplete-input {
  position: relative;
}

.input-group {
  position: relative;
}

.input-group svg {
  position: absolute;
  left: 10px;
  top: 50%;
  width: 30px;
  height: 30px;
  transform: translateY(-50%);
}

.input-group input {
  font-family: 'Rubik', sans-serif;
  padding: 15px;
  padding-left: 50px;
  background: rgba(255, 255, 255, .1);
  border: none;
  box-shadow: inset 0 1px rgba(var(--t), .1);
  color: rgba(var(--t), 1);
  border-radius: 10px;
  font-size: 12px;
  width: 100%;
  -webkit-transition: all .1s ease-in-out;
  -moz-transition: all .1s ease-in-out;
  -o-transition: all .1s ease-in-out;
  transition: all .1s ease-in-out;
}

input:active {
  background: rgba(255, 255, 255, .1);
}

input:focus {
  border-color: rgba(var(--t), .1);
  background: rgba(255, 255, 255, .1);
  outline: none;
  border: none;
}


input::placeholder {
  color: rgba(var(--t), .5)
}

.search-input {}

.cards {
  display: grid;
  grid-template-columns: repeat(5, minmax(195px, 254px));
  gap: 10px;
}

.card {
  max-width: 254px;
  height: 188px;
  padding: 20px;
  background: #131313;
  width: 100%;
  border: 1px solid red;
  border-radius: 15px;
  position: relative;
  box-shadow: #0003 0 2px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.card__image {
  max-width: 150px;

}

.card__image img {
  object-fit: contain;
  width: 150px;
  height: 35px;
}

.card__text {
  font-size: 18px;
  font-weight: 700;
  color: #ffd800;
  margin: 5px 0;
}

.card__link {
  padding: 9px 12px;
  background: #fff;
  color: #000;
  border-color: #fff;
  text-transform: uppercase;
  font-weight: 900;
  height: auto;
  margin-top: 10px;
  min-width: 220px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 30px;
}

img {
  width: 100%;
}

footer {
  background: #00000035;
  padding: 10px;
  margin-top: 20px
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__title {
  font-size: 12px;
  color: rgba(var(--sc), .9);
}

footer .social {
  display: flex;
  margin-top: 5px;
}


footer .social g,
footer .social svg {
  fill: rgba(var(--t), .5);
}

footer .social a {
  background-color: rgba(var(--t), .1);
  margin-right: 3px;
  display: flex;
  align-items: center;
  padding: 8px;
  justify-content: center;
  border-radius: 5px;
  color: rgba(var(--sc), 1);
}

footer .social a span {
  display: none
}

footer .social a:hover {
  background-color: rgba(var(--primary), 1)
}

footer .social a:hover g,
footer .social a:hover svg {
  fill: rgba(var(--primary-sc), 1)
}

.footer svg {
  width: 18px;
  height: 18px;
  transition: all .3s ease;
}

.footer__center {
  max-width: 120px;
}

.footer__right {
  max-width: 210px;
  opacity: 0.4;
}

.footer__right a {
  display: flex;
  align-items: center;
  color: rgba(var(--sc), .7);
  font-size: 12px;
}

.footer__right img {
  margin-left: 1rem !important;
  max-width: 75px;
}


.nav-menu {
  display: none;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.nav-menu svg {
  width: 18px;
  height: 18px;
  fill: #fff;
}






/* Sidebar */
.sidebar {
  position: fixed;
  left: -100%;
  top: 80px;
  width: 100%;
  height: calc(100% - 80px);
  background: rgba(var(--left-side), 1);
  padding: 20px 10px;
  transition: 0.4s;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  scrollbar-gutter: stab
}

.sidebar hr {
  opacity: .1;
}

.sidebar.active {
  left: 0;
}

/* Меню */
.menu {
  list-style: none;
}

.menu__item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: 20px 10px;
  font-size: 18px;
  color: #ffffffb3;
  font-weight: 600;
  transition: color 0.3s;
}

.menu__item a {
  width: 100%;
}

.menu__item .icon {
  height: 18px;
}

.menu__item svg {
  width: 18px;
  height: 18px;
  fill: #ffffffb3;
}

.menu__item.active {
  color: #e6191f;
}

.menu__item.active svg {
  fill: #e6191f;
}

.menu__item:hover {
  color: #fff;
}

/* Соц кнопки */
.socials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 5px;

}

.social-bur svg {
  width: 18px;
  height: 18px;
  fill: #fff;
}

.social-bur svg g {
  fill: #fff;
}

.social-bur {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  height: 54px;
  border-radius: 10px;
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  text-decoration: none;
}

.discord {
  background: #5522ff;
}

.telegram {
  background: #2277ff;
}

.kick {
  background: #00e257;
  color: #000;
  font-weight: 700;
}

.twitch {
  background: #3100d6;
}

.instagram {
  background: #ff22bb;
}

.youtube {
  background: #ff2222;
}

.skype {
  background: #2244ff;
}


/* BILET PAGE */

.main__bilets {}

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

.billets__item {
  max-width: 312px;
  width: 100%;
  background: rgba(19, 19, 19, 1);
  border: 4px solid rgba(230, 25, 31);
  box-shadow: #0003 0 2px 8px;
  border-radius: 15px;
  position: relative;
  overflow: hidden;
}

.billets__top {
  max-width: 312px;
  max-height: 312px;
  width: 100%;
  height: 100%;
}

.center-img {
  max-width: 198px;
  height: 30px;
}

.billets__title {
  margin: 10px 0;
  font-size: 20px;
}

.pd {
  padding: 20px;
}

.billets__list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 217px;
  margin: 0 auto;
}

.billets__count {
  display: flex;
  flex-direction: column;
  gap: 1px;
  align-items: center;
  justify-content: center;
}

.top-b {
  font-size: 18px;
  color: #fff;
  font-weight: 700;
}

.text {
  font-size: 10px;
  opacity: 0.6;
}

.billets__link {
  padding: 9px 12px;
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background-color: #e6191f1a;
  font-size: 14px;
  color: #e6191f;
  border-radius: 30px;
  transition: all 0.2s ease;
  height: 45px;
}

.billets__link:hover {
  color: #fff;
  background-color: #e6191f;
}


/* etc */

.etkinlikler .billets__link {}

.labels {
  display: flex;
  border-radius: 15px;
  overflow: hidden;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .0784313725);
  text-align: center;
  margin: 2px 0;
}

.label {
  width: 100%;
  flex-grow: 1;
  display: flex;
  align-items: center;
  flex-direction: column;
  background: #0000002b;
  border-right: 1px solid rgba(255, 255, 255, .0784313725);
  padding: 10px 0;
  font-size: 11px;
}

.labels .label span {
  font-size: 14px;
  opacity: .6;
  font-weight: 500;
}

/*  FORM */

form.auth-form {
  max-width: 450px;
  margin: 0 auto;
  background: #ffffff0a;
  padding: 20px;
  border-radius: 10px
}

form.auth-form h1 {
  margin: 5px 0;
  font-size: 24px;
  margin-bottom: 20px !important;
  display: block !important
}

.auth-form label {
  font-size: 12px;
  margin-bottom: 10px;
  font-weight: 700;
}

.auth-form input {
  background: rgba(var(--t), .1);
  border: none;
  box-shadow: inset 0 1px rgba(var(--t), .1);
  padding: 15px;
  color: rgba(var(--t), 1);
  border-radius: 10px;
  font-size: 12px;
  width: 100%;
  -webkit-transition: all .1s ease-in-out;
  -moz-transition: all .1s ease-in-out;
  -o-transition: all .1s ease-in-out;
  transition: all .1s ease-in-out;
}

.auth-form .form-group {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
}

.auth-form .row {
  display: flex;
  margin: 0 -5px;
  flex-wrap: wrap;
}

.auth-form .col.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

.auth-form .col {
  width: 100%;
  padding: 0 5px;
  display: flex;
}

.forgot-password-link a[data-v-421e9817] {
  color: rgba(230, 25, 31, 1);
  font-size: 12px;
  margin-bottom: 10px;
  display: block;
  font-weight: 600;
  text-decoration: none;
}

.auth-form .button.primary {
  background: rgba(230, 25, 31, 1);
  color: rgba(255, 255, 255, 1)
}

.w-100[data-v-421e9817] {
  width: 100%;
}

.auth-form .button {
  padding: 9px 12px;
  border-radius: 10px;
  font-weight: 500;
  cursor: pointer;
  font-size: var(--btn-s);
  display: flex;
  align-items: center;
  height: 45px;
  justify-content: center;
  -webkit-transition: all .1s ease-in-out;
  -moz-transition: all .1s ease-in-out;
  -o-transition: all .1s ease-in-out;
  transition: all .1s ease-in-out;
  margin-left: 0;
}

.auth-form svg {
  width: 18px;
  height: 18px;
  fill: #fff;
}

/*  Sizden */

.title-g {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.title-g svg {
  width: 18px;
  height: 18px;
  fill: #e6191f;
  margin-right: 5px;
}

.title-g h1 {
  margin: 0;
  font-size: 24px;
}

.title-g p {
  margin: 0;
  font-size: 14px;
  opacity: .5;
}

.title-g .button {
  padding: 9px 12px;
  border-radius: 10px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  height: 45px;
  justify-content: center;
  -webkit-transition: all .1s ease-in-out;
  -moz-transition: all .1s ease-in-out;
  -o-transition: all .1s ease-in-out;
  transition: all .1s ease-in-out;

  background-color: rgba(230, 25, 31, 0.1);
  font-size: 14px;
  color: #e6191f;
}

.title-g .button:hover {
  background: rgba(230, 25, 31, 1);
  color: rgba(255, 255, 255, 1)
}

.title-g .button:hover svg {
  fill: #fff;
}

table {
  width: 100%;
  border: none;
}

table thead {
  background: rgba(230, 25, 31, 1);
  color: #fff;
}

table th,
table td {
  padding: 12px 10px;
  font-size: 14px;
  border: none !important;
  font-weight: 500;
  text-align: left;
}

table tbody tr:nth-child(odd) {
  background: rgba(255, 255, 255, .05);
  color: rgba(255, 255, 255, .8);
}

table tbody tr:nth-child(2n) {
  background: rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .8);
}

table th,
table td {
  padding: 12px 10px;
  font-size: 14px;
  border: none !important;
  font-weight: 500;
  text-align: left;
}

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

.mr-1 {
  margin-right: 1rem !important;
}

table img {
  width: 25px;
  height: 25px;
}

table button {
  min-width: 100px;
  background-color: rgba(230, 25, 31, 0.1);
  font-size: 14px;
  color: #e6191f;
  padding: 9px 12px;
  border-radius: 10px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  height: 45px;
  justify-content: center;
  transition: all .1s ease-in-out;
}

table svg {
  width: 18px;
  height: 18px;
  fill: #e6191f;
  margin-right: 5px;
  transition: all .1s ease-in-out;
}

table button:hover {
  background-color: #e6191f;
  color: #fff;
}

table button:hover svg {
  fill: #fff
}

.mobile-table {
  display: none;
}

.Skype {
  width: 18px;
  height: 18px;
  object-fit: cover;
}



select {
  height: 45px;
  -webkit-appearance: none;
  background-color: rgba(var(--t), .1) !important;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHCAYAAADEUlfTAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyhpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDkuMS1jMDAyIDc5LmRiYTNkYTNiNSwgMjAyMy8xMi8xNS0xMDo0MjozNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIDI1LjcgKE1hY2ludG9zaCkiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6ODI4OTc4NjEwQkFCMTFFRkExOUVDNTkyOTc3ODAzM0MiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6ODI4OTc4NjIwQkFCMTFFRkExOUVDNTkyOTc3ODAzM0MiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo1MERENUZCMjBCQTAxMUVGQTE5RUM1OTI5Nzc4MDMzQyIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDo4Mjg5Nzg2MDBCQUIxMUVGQTE5RUM1OTI5Nzc4MDMzQyIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PqnmayMAAABKSURBVHjaYvz//z8DLsAExD1ArIpFroIBqPPBfwjgApkCxR//I3G2QhVoA/EFIH4Ktg5JwQqogk8wMWRJEE4CYg4YnxGfawECDAAeQ2VE0LLDbQAAAABJRU5ErkJggg==) !important;
  background-position: right 15px center !important;
  background-repeat: no-repeat !important;
}

select {
  background: rgba(var(--t), .1);
  border: none;
  box-shadow: inset 0 1px rgba(var(--t), .1);
  padding: 15px;
  color: rgba(var(--t), 1);
  border-radius: 10px;
  font-size: 12px;
  width: 100%;
  -webkit-transition: all .1s ease-in-out;
  -moz-transition: all .1s ease-in-out;
  -o-transition: all .1s ease-in-out;
  transition: all .1s ease-in-out;
}

option {
  color: #000;
}

.kazan button {
  width: 100%;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}





.etkin-new {
  padding: 30px;
  color: #fff;
  font-family: sans-serif;
}

.etkin-new__wrap {
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 20px;
}

.etkin-new__container {
  max-width: 1250px;
  margin: 0 auto;
  background-color: #0000001e;
  padding: 0 15px 15px;
}

.etkin-new__containers {
  border: 1px solid rgba(253, 181, 181, .1294117647);
  border-radius: 20px;
}

.etkin-new__header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  background: #ffffff06;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 15px;
}

.etkin-new__header img {
  max-width: 230px;
}

.etkin-new__topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #1a1a1a;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 20px;
}

.etkin-new__leftside {
  display: flex;
  align-items: center;
  gap: 15px;
}

.etkin-new__logo {
  max-width: 180px;
}

.etkin-new__title {
  font-size: 28px;
  font-weight: 700;
}

.etkin-new__status {
  color: #aaa;
  font-size: 15px;
}

.etkin-new__rules {
  border: none;
  background: #e6191f;
  color: #fff;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 10px;
  cursor: pointer;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.etkin-new__rules-dark {
  background-color: #2e2e2e;
}

.etkin-new__content {
  display: flex;
  gap: 25px;
}

/* INNER GRID */
.etkin-new__inner {
  display: flex;
  gap: 25px;
}

.etkin-new__left {
  max-width: 412px;
}

.etkin-new__image {
  background: #1b1b1b;
  padding: 15px;
  border-radius: 18px;
  margin-bottom: 25px;
}

.etkin-new__image img {
  width: 100%;
  border-radius: 12px;
}

.etkin-new__button {
  background: #e6191f;
  color: #fff;
  font-weight: 700;
  display: block;
  text-align: center;
  padding: 14px 0;
  border-radius: 10px;
  text-decoration: none;
  margin-bottom: 20px;
}

/* STATS */
.etkin-new__stats {
  background: #111;
  padding: 18px;
  border-radius: 12px;
  margin-bottom: 20px;
}

.etkin-new__stats-title {
  color: #d5d5d5;
  margin-bottom: 6px;
}

.etkin-new__stats-value {
  font-size: 24px;
  font-weight: 700;
}

.etkin-new__dates {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.etkin-new__date {
  flex: 1;
  background: #e6191f1a;
  padding: 15px;
  border-radius: 12px;
  text-align: center;
}

.etkin-new__date--active {
  background: #e6191f;
}

.etkin-new__date:nth-child(2) {
  background: #e6191f;
  color: #fff;
}

.etkin-new__date:nth-child(2) .etkin-new__date-label {
  color: #fff;
}

.etkin-new__date:nth-child(2) .etkin-new__date-value {
  color: #fff;
}

.etkin-new .labels {
  margin-bottom: 20px;
}

.etkin-new__date-label {
  color: #e6191f;
  display: block;
  font-size: 11px;
  margin-bottom: 8px;
  text-align: center;
}

.etkin-new__date-label svg {
  width: 12px;
  height: 12px;
}

.etkin-new__date-value {
  font-size: 14px;
  font-weight: 500;
  color: #e6191f;
  text-align: center;
}

.etkin-new__right {
  width: 60%;
}

.etkin-new__box {
  background: #1a1a1a;
  padding: 25px;
  border-radius: 15px;
  line-height: 1.6;
  font-size: 12px;
  color: #fff;
}

.etkin-new__box>* {
  margin: 12px 0;
}

.etkin-new__box a {}

.etkin-new__box span {
  background-color: rgb(255, 255, 255);
}

.icon-t {
  width: 12px;
  height: 12px;
}

.etkin-new__mytickets {
  background: #e6191f;
  color: #fff;
  padding: 10px 18px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
}

/* TABS */
.etkin-new__tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.etkin-new__tab {
  background: #1d1d1d;
  border: none;
  padding: 12px 18px;
  border-radius: 10px;
  color: #fff;
  cursor: pointer;
}

.etkin-new__tab--active {
  background: #e6191f;
}

/* ALERT */
.etkin-new__alert {
  background: rgba(255, 0, 0, 0.1);
  border: 1px solid #e6191f;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 20px;
}

.etkin-new__alert a {
  color: #ff8080;
}

.etkin-new__btn {
  padding: 10px;
  border-radius: 8px;
  flex-shrink: 0;
}

.alert {
  padding: 30px 10px;
  background: rgba(var(--t), .05);
  margin-bottom: 10px;
  display: flex;
  border: 1px solid rgba(var(--primary), 1);
  align-items: center;
  border-radius: 10px;
  font-size: 13px;
  max-width: 330px;
}

.btns-etkin {
  display: flex;
  gap: 20px;
}

.user {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}

.user__balance {
  display: flex;
  align-items: center;
  background: #161616;
  padding: 6px 10px;
  border-radius: 8px;
  color: #fff;
  font-weight: 600;
  transition: background 0.2s;
}

.user__balance:hover {
  background: #1e1e1e;
}

.user__dropdown {
  position: relative;
}

.user__button {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #161616;
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  padding: 6px 10px;
  cursor: pointer;
}

.user__avatar img {
  border-radius: 50%;
}

.user__arrow {
  fill: #fff;
  transition: transform 0.2s ease;
}

.user__menu {
  position: absolute;
  right: 0;
  top: 110%;
  background: #1d1d1d;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-5px);
  transition: all 0.2s ease;
  z-index: 10;
}

.user__menu ul {
  list-style: none;
  margin: 0;
  padding: 8px 0;
}

.user__menu li a {
  display: block;
  padding: 10px 16px;
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.2s;
}

.user__menu li a:hover {
  background: #292929;
}

.user__dropdown.active .user__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.user__dropdown.active .user__arrow {
  transform: rotate(180deg);
}





/* KUPON */

/* GRID */
.coupon-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  max-width: 869px;
  margin: 0 auto;
}

@media(max-width: 760px) {
  .coupon-grid {
    grid-template-columns: 1fr;
  }
}

/* CARD */
.coupon {
  background: #101010;
  border-radius: 15px;
  border: 1px solid red;
  overflow: hidden;
  width: 100%;
  display: flex;
  flex-direction: column;
  color: #fff;
}

/* HEADER */
.coupon__header {
  /* background: #2c2f36; */
  padding: 10px;
  border-bottom: 6px solid #e6191f;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.coupon__title {
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  font-style: italic;
  display: flex;
}

.coupon__title span {
  color: #ffda00;
  font-size: 24px;
  margin-right: 5px;
}

.coupon__icon {
  width: 100px;
  height: 35px;
  object-fit: contain;
}

/* BODY */
.coupon__match {
  display: flex;
  justify-content: space-between;
  padding: 10px;
  min-height: 85px;
  border-bottom: 1px solid #ddd;
  color: #fff;
}

.coupon__teams {
  font-size: 14px;
  font-weight: 600;
  padding-left: 8px;
  display: block;
}

.coupon__time {
  font-size: 12px;
  margin-left: 23px;
  color: #fff;
}

.coupon__market {
  display: flex;
  align-items: center;
  margin-top: 4px;
}

.coupon__badge {
  width: 16px;
  height: 16px;
  background: #d60000;
  color: #fff;
  font-size: 11px;
  font-weight: bold;
  border-radius: 3px;
  text-align: center;
  line-height: 16px;
  margin-right: 6px;
}

.coupon__primary {
  color: #1fa637;
}

/* ODDS */
.coupon__odds {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
}
.coupon__odds img {
  width: 16px;
  height: 16px;
}

.coupon__odd {
  width: 40px;
  height: 20px;
  background: #fff;
  font-size: 12px;
  font-weight: bold;
  border: none;
  border-radius: 2px;
  margin-top: 6px;
  text-align: center;
  color: #000;
}

.coupon__old-odd {
  font-size: 12px;
  text-decoration: line-through;
  color: #fff;
  margin-top: 3px;
}

/* FOOTER */
.coupon__footer {
  background: #2c2f36;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #282c34;
  margin-top: auto;
}

.coupon__total {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}

.coupon__play {
  background: #e6191f;
  color: #fff;
  border: none;
  padding: 6px 20px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
}









@media (max-width: 1400px) {
  .main-index .container {
    max-width: 1000px;

  }

  .cards {
    grid-template-columns: repeat(4, minmax(195px, 254px))
  }
}

@media (max-width: 1920px) {
  .fix-side {
    height: calc(100% - 100px) !important
  }

  .fix-side img {
    height: 100%
  }
}

@media (max-height: 1300px) {
  .fix-side {
    height: calc(100% - 200px) !important
  }
}


@media (max-width: 1200px) {
  .header__list {
    display: none;
  }

  .nav-menu {
    display: block;
  }

  /* .header__btn:first-child {
    display: none;
  } */

  .footer__inner {
    flex-direction: column;
    gap: 15px;
  }

  .footer__left {
    text-align: center;
  }

  .cards {
    grid-template-columns: repeat(5, minmax(195px, 254px))
  }

  .card {
    height: auto;
  }

  .card__link {
    position: absolute;
    width: 100%;
    inset: 0;
    content: "";
    background: transparent;
    text-indent: -9999px;
    display: block;
    padding: 9px 12px;
    margin-top: 0;
    min-width: auto;
  }

  .card__text {
    font-size: 10px;
    height: auto;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  .card__image img {
    width: 90%;
    max-height: 20px;
    height: 40px;
  }

  .desk-table {
    display: none;
  }

  .mobile-table {
    display: block;
  }

  table td,
  table th {
    padding: 12px 5px !important;
    width: auto;
    font-size: 11px !important;
  }

  table td,
  table th {
    padding: 12px 5px !important;
    width: auto;
    font-size: 11px !important;
  }

  table .button {
    min-width: auto;
    width: auto !important;
    font-size: 12px;
  }

  .etkin-new__content {
    flex-direction: column;
  }

  .etkin-new__left {
    max-width: 100%;
  }

  .etkin-new__right {
    width: 100%;
  }

  .etkin-new__header {
    flex-wrap: wrap;
  }

  .container {
    padding: 0 5px;
  }

  .etkin-new {
    padding: 5px;
  }

  .alert {
    max-width: 223px;
    margin-top: 5px;
    font-size: 12px;
    padding: 10px 5px;
  }

  .etkin-new__btn {
    margin-left: 2px;
  }

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

@media (max-width: 992px) {
  .cards {
    grid-template-columns: repeat(4, minmax(78px, 254px));
  }

  .card__image {
    max-width: clamp(3.6875rem, 2.1101rem + 7.8869vw, 7rem);
    ;
  }

  .header__btn {
    padding: 8px;
    height: auto;
    font-size: 12px;
  }

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

  .image {
    width: 18px;
    height: 18px;
    margin-right: 5px;
  }

  .image svg {
    margin-right: 0;
  }
}

@media (max-width: 767px) {
  .card {
    padding: 9px 12px;
  }

  .card__image {
    max-width: 92px;
    width: auto;
  }
}

@media (max-width: 620px) {
  .header__logo {
    max-width: 150px;
  }

  .btns-etkin {
    gap: 10px;
  }

  .billets {
    flex-wrap: wrap;
    justify-content: center;
  }

  .etkin-new__rules {
    padding: 6px 8px;
    font-size: 12px;
  }

  .etkin-new__box {
    padding: 10px;
  }
}

@media (max-width: 420px) {
  .header__logo {
    max-width: 110px;
  }
}

@media (max-width: 768px) {
  .banner-left,
  .banner-right {
    display: none;
  }
}
