@import url("https://fonts.googleapis.com/css2?family=Poppins+Urbanist:ital,wght@0,200..900;1,200..900&display=swap");

:root {
  --dark: #070710;
  --dark-rgba: 7,7,16;
  --dark-light: #0F1021;
  --primary: #7064E9;
  --primary-rgba: 112,100,233;
  --secondary: #8C83ED;
  --secondary-rgba: 140,131,237;
  --light: #A9A2F1;
  --light-rgba: 169,162,241;
  --medium: #9A92EF;
  --medium-rgba: 154,146,239;
  --highlight: #7376AA;
  --highlight-rgba: 115,118,170;
  --text: #CCCEEF;
  --text-dark: #7376AA;
  --tertiary: #5950BA;
  --tertiary-rgba: 89,80,186;
  --blue: #1662FF;
  --blue-rgba: 22,98,255;
  --purple: #AC29C2;
  --purple-rgba: 172,41,194;
  --size: 16px;
  --sec-size: 18px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins Urbanist', sans-serif;
  font-weight: normal;
  font-style: normal;
  background-color: var(--dark);
}

button {
  padding: 0;
  border: none;
  background-color: transparent;
  transition: 0.6s ease;
  transition-property: color, background, background-color, border-color, box-shadow, opacity;
  cursor: pointer;
}

  button:focus {
    outline: none;
  }

a {
  text-decoration: none;
  transition: 0.6s ease;
  transition-property: color, background, background-color, border-color, box-shadow, opacity;
}

  a:hover,
  a:active,
  a:focus {
    outline: none;
    text-decoration: none;
  }

input,
textarea,
select {
  padding: 0;
  margin: 0;
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none;
  box-shadow: none;
  transition: 0.4s ease;
  transition-property: color, border-color, box-shadow;
}

  input:focus,
  textarea:focus,
  select:focus {
    outline: none;
  }

  select::-ms-expand {
    display: none;
  }

  input::-webkit-outer-spin-button,
  input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }

  input[type=number] {
    -moz-appearance: textfield;
  }

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

svg {
  transition: 0.4s ease;
  transition-property: stroke, fill;
}

::-moz-selection {
  background: var(--primary);
  color: var(--text);
  text-shadow: none;
}

::selection {
  background: var(--primary);
  color: var(--text);
  text-shadow: none;
}

::-webkit-input-placeholder {
  color: var(--highlight);
  opacity: 1;
}

::-moz-placeholder {
  color: var(--highlight);
  opacity: 1;
}

:-moz-placeholder {
  color: var(--highlight);
  opacity: 1;
}

:-ms-input-placeholder {
  color: var(--highlight);
  opacity: 1;
}

:focus {
  outline: 0 !important;
}

:focus-visible {
  outline: 0 !important;
}

@media (min-width: 1900px) {
  .container {
    max-width: 1344px;
  }
}

.tab-content {
  width: 100%;
  position: relative;
}
/*==============================
	PRELOADER
==============================*/
.preloader {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 9999999;
  top: 0;
  left: 0;
  background-color: var(--dark);
  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;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
}

  .preloader.active {
    opacity: 1;
    visibility: visible;
  }

  .preloader .spinner-grow {
    background-color: var(--primary);
  }
/*==============================
	Body
==============================*/
@media (min-width: 1200px) {
  .body {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    height: 100svh;
    overflow: hidden;
  }
}
/*==============================
	Header
==============================*/
.header {
  display: block;
  width: 100%;
  height: 70px;
  padding: 0 4px;
  position: sticky;
  top: 0;
  left: 0;
  background-color: var(--dark);
  border-bottom: 1px solid var(--dark-light);
  z-index: 99;
}

.header__content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 70px;
}

.header__logo img {
  width: auto;
  height: 36px;
  display: block;
}

.header__search {
  display: none;
}

.header__auth {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  width: auto;
}

.header__sign-in {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  background-color: var(--light);
}

  .header__sign-in span {
    display: none;
    color: var(--dark);
  }

  .header__sign-in svg {
    width: 24px;
    height: 24px;
    stroke: var(--dark);
  }

  .header__sign-in:hover,
  .header__sign-in[aria-expanded="true"] {
    background-color: var(--primary);
  }

    .header__sign-in:hover span,
    .header__sign-in[aria-expanded="true"] span {
      color: var(--dark);
    }

    .header__sign-in:hover svg,
    .header__sign-in[aria-expanded="true"] svg {
      stroke: var(--text);
    }

.header__dropdown-menu {
  position: absolute;
  background-color: var(--dark);
  padding: 16px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: auto;
  min-width: 160px;
  border-radius: 16px;
  border: 1px solid var(--dark-light);
  max-height: 298px;
  height: auto;
  overflow-y: auto;
}

  .header__dropdown-menu::-webkit-scrollbar {
    width: 4px;
    height: 4px;
  }

  .header__dropdown-menu::-webkit-scrollbar-button {
    display: none;
  }

  .header__dropdown-menu::-webkit-scrollbar-thumb {
    background: rgba(var(--primary-rgba),0.4);
    outline: 0 solid var(--text);
    border-radius: 4px;
  }

    .header__dropdown-menu::-webkit-scrollbar-thumb:hover {
      background: var(--primary);
    }

  .header__dropdown-menu::-webkit-scrollbar-track {
    background: var(--dark);
    border-radius: 4px;
  }

  .header__dropdown-menu li {
    margin-bottom: 16px;
    width: 100%;
  }

    .header__dropdown-menu li:last-child {
      margin-bottom: 0;
    }

  .header__dropdown-menu a {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    font-size: var(--size);
    line-height: 24px;
    color: var(--text);
    font-weight: 500;
    white-space: nowrap;
  }

    .header__dropdown-menu a svg {
      width: 20px;
      height: 20px;
      margin-right: 8px;
      stroke: var(--highlight);
    }

    .header__dropdown-menu a:hover svg {
      stroke: var(--primary);
    }

.header__dropdown-menu--noicon a:hover {
  color: var(--primary);
}

.header__dropdown-menu.show {
  display: flex;
}

.header__profile {
  position: relative;
  margin-left: 16px;
}

  .header__profile:first-child {
    margin-left: 0;
  }

.header__notices {
  position: relative;
  margin-left: 16px;
}

  .header__notices:first-child {
    margin-left: 0;
  }

.header__notices-btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--light);
  position: relative;
}

  .header__notices-btn svg {
    width: 24px;
    height: 24px;
    stroke: var(--dark);
    position: relative;
    z-index: 1;
  }

  .header__notices-btn span {
    position: absolute;
    z-index: 2;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background-color: var(--primary);
    color: var(--text);
    font-size: 10px;
    font-weight: 500;
    line-height: 14px;
    width: auto;
    min-width: 20px;
    height: 20px;
    padding: 0 2px;
    border-radius: 10px;
    top: -4px;
    right: -4px;
  }

    .header__notices-btn span:empty {
      display: none;
    }

  .header__notices-btn:hover,
  .header__notices-btn[aria-expanded="true"] {
    background-color: var(--primary);
  }

    .header__notices-btn:hover svg,
    .header__notices-btn[aria-expanded="true"] svg {
      stroke: var(--text);
    }

.header__dropdown-notices {
  position: absolute;
  background-color: var(--dark);
  padding: 16px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  min-width: 220px;
  border-radius: 16px;
  border: 1px solid var(--dark-light);
  overflow: hidden;
}

  .header__dropdown-notices.show {
    display: flex;
  }

.header__notes {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-height: 252px;
  overflow-y: auto;
  padding-right: 8px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--dark-light);
  margin-bottom: 8px;
}

  .header__notes:last-child {
    padding-bottom: 0;
    border-bottom: none;
    margin-bottom: 0;
  }

  .header__notes::-webkit-scrollbar {
    width: 4px;
    height: 4px;
  }

  .header__notes::-webkit-scrollbar-button {
    display: none;
  }

  .header__notes::-webkit-scrollbar-thumb {
    background: rgba(var(--primary-rgba),0.4);
    outline: 0 solid var(--text);
    border-radius: 4px;
  }

    .header__notes::-webkit-scrollbar-thumb:hover {
      background: var(--primary);
    }

  .header__notes::-webkit-scrollbar-track {
    background: var(--dark-light);
    border-radius: 4px;
  }

  .header__notes li {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    position: relative;
    width: 100%;
    margin-bottom: 16px;
  }

    .header__notes li:last-child {
      margin-bottom: 0;
    }

    .header__notes li img {
      width: 16px;
      height: 16px;
      position: absolute;
      top: 2px;
      left: 0;
    }

    .header__notes li p {
      font-size: var(--size);
      line-height: 20px;
      color: var(--text);
      margin-bottom: 4px;
      padding-left: 24px;
    }

      .header__notes li p:first-child {
        padding-left: 0;
      }

      .header__notes li p:last-child {
        margin-bottom: 0;
      }

    .header__notes li span {
      font-size: 12px;
      line-height: 16px;
      color: var(--highlight);
    }

.header__balance {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: auto;
  position: relative;
  margin-left: 16px;
}

  .header__balance:first-child {
    margin-left: 0;
  }

.header__balance-dropdown {
  position: relative;
  display: none;
}

.header__balance-dropdown-btn {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: auto;
  min-width: 150px;
  height: 40px;
  border-radius: 20px 0 0 20px;
  background-color: var(--dark-light);
  padding: 0 8px;
}

  .header__balance-dropdown-btn img {
    width: 20px;
    height: 20px;
    margin-right: 8px;
  }

  .header__balance-dropdown-btn span {
    font-size: var(--size);
    font-weight: 500;
    color: var(--text);
    margin-right: 4px;
  }

  .header__balance-dropdown-btn svg {
    margin-left: auto;
    width: 14px;
    height: 14px;
    stroke: var(--highlight);
  }

  .header__balance-dropdown-btn:hover svg,
  .header__balance-dropdown-btn.show svg {
    stroke: var(--primary);
  }

.header__balance-menu {
  position: absolute;
  background-color: var(--dark);
  padding: 16px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  min-width: 190px;
  border-radius: 16px;
  border: 1px solid var(--dark-light);
  overflow: hidden;
}

  .header__balance-menu.show {
    display: flex;
  }

.header__balance-currencies {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-height: 252px;
  overflow-y: auto;
  padding-right: 8px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--dark-light);
  margin-bottom: 8px;
}

  .header__balance-currencies:last-child {
    padding-bottom: 0;
    border-bottom: none;
    margin-bottom: 0;
  }

  .header__balance-currencies::-webkit-scrollbar {
    width: 4px;
    height: 4px;
  }

  .header__balance-currencies::-webkit-scrollbar-button {
    display: none;
  }

  .header__balance-currencies::-webkit-scrollbar-thumb {
    background: rgba(var(--primary-rgba),0.4);
    outline: 0 solid var(--text);
    border-radius: 4px;
  }

    .header__balance-currencies::-webkit-scrollbar-thumb:hover {
      background: var(--primary);
    }

  .header__balance-currencies::-webkit-scrollbar-track {
    background: var(--dark-light);
    border-radius: 4px;
  }

  .header__balance-currencies li {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 16px;
    cursor: pointer;
  }

    .header__balance-currencies li:last-child {
      margin-bottom: 0;
    }

    .header__balance-currencies li:hover span,
    .header__balance-currencies li.active span {
      color: var(--primary);
    }

  .header__balance-currencies span {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    font-size: var(--size);
    line-height: 20px;
    color: var(--text);
    font-weight: 500;
    transition: color 0.4s ease;
  }

    .header__balance-currencies span img {
      width: 20px;
      height: 20px;
      margin-right: 8px;
    }

.header__balance-edit,
.header__notices-clear {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  font-size: 12px;
  line-height: 20px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--text);
}

  .header__balance-edit:hover,
  .header__notices-clear:hover {
    color: var(--primary);
  }

.header__wallet {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--secondary);
}

  .header__wallet svg {
    width: 24px;
    height: 24px;
    stroke: var(--dark);
  }

.header__dropdown {
  display: none;
  position: relative;
}

.header__dropdown-btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--dark-light);
  position: relative;
}

  .header__dropdown-btn svg {
    width: 20px;
    height: 20px;
    stroke: var(--highlight);
  }

  .header__dropdown-btn:hover svg,
  .header__dropdown-btn[aria-expanded="true"] svg {
    stroke: var(--primary);
  }

@media (min-width: 768px) {
  .header {
    height: 80px;
  }

  .header__content {
    height: 80px;
  }

  .header__search {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background-color: var(--light);
    margin-right: 24px;
    margin-left: auto;
  }

    .header__search span {
      display: none;
    }

    .header__search svg {
      width: 22px;
      height: 22px;
      stroke: var(--dark);
    }

  .header__profile {
    margin-left: 24px;
    border-radius: 24px 24px 0 0;
  }

  .header__sign-in {
    height: 46px;
    width: 120px;
    border-radius: 24px;
  }

    .header__sign-in svg {
      display: none;
    }

    .header__sign-in span {
      display: block;
      font-size: var(--size);
      line-height: 24px;
      font-weight: 500;
      color: var(--dark);
      text-transform: uppercase;
      transition: color 0.4s ease;
    }

  .header__sign-in--user {
    width: 46px;
    border-radius: 50%;
  }

    .header__sign-in--user svg {
      display: block;
    }

    .header__sign-in--user span {
      display: none;
    }

  .header__notices {
    margin-left: 24px;
  }

  .header__notices-btn,
  .header__dropdown-btn {
    width: 46px;
    height: 46px;
  }

  .header__balance-dropdown {
    display: block;
  }

  .header__balance {
    min-width: 226px;
    margin-left: 24px;
  }

  .header__balance-dropdown-btn {
    height: 46px;
    border-radius: 24px 0 0 24px;
    padding: 0 16px;
    min-width: 180px;
  }

  .header__balance-menu {
    min-width: 226px;
  }

  .header__wallet {
    width: 46px;
    height: 46px;
    border-radius: 0 50% 50% 0;
  }

    .header__wallet svg {
      margin-right: 2px;
    }
}

@media (min-width: 992px) {
  .header__search {
    justify-content: flex-start;
    width: 224px;
    height: 46px;
    border-radius: 24px;
    background-color: var(--dark-light);
    padding: 0 16px;
    margin-right: auto;
    margin-left: 24px;
  }

    .header__search span {
      display: block;
      font-size: var(--size);
      line-height: 24px;
      font-weight: 500;
      color: var(--highlight);
    }

    .header__search svg {
      width: 20px;
      height: 20px;
      stroke: var(--highlight);
      margin-right: 8px;
    }
}

@media (min-width: 1200px) {
  .header {
    padding: 0 40px;
  }

  .header__logo {
    display: none;
  }

  .header__search {
    margin-right: 0;
    margin-left: 0;
  }

    .header__search:hover svg {
      stroke: var(--primary);
    }

    .header__search:focus svg {
      stroke: var(--highlight);
    }

  .header__profile,
  .header__notices,
  .header__balance {
    margin-left: 32px;
  }

  .header__wallet:hover {
    background-color: var(--primary);
  }

    .header__wallet:hover svg {
      stroke: var(--text);
    }

  .header__wallet:focus {
    background-color: var(--secondary);
  }

    .header__wallet:focus svg {
      stroke: var(--dark);
    }

  .header__dropdown {
    display: block;
    margin-left: 32px;
    margin-right: auto;
  }
}
/*==============================
	Sidebar
==============================*/
.sidebar {
  position: fixed;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  top: 70px;
  left: 0;
  bottom: 60px;
  background-color: var(--dark);
  z-index: 98;
  width: 100vw;
  transform: translate3d(-100vw, 0, 0);
  transition: transform 0.4s ease;
  border-right: 1px solid var(--dark-light);
}

.sidebar__head {
  display: none;
}

.sidebar__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  width: 100%;
  height: 100%;
  overflow-y: auto;
}

  .sidebar__content::-webkit-scrollbar {
    width: 4px;
    height: 4px;
  }

  .sidebar__content::-webkit-scrollbar-button {
    display: none;
  }

  .sidebar__content::-webkit-scrollbar-thumb {
    background: rgba(var(--primary-rgba),0.4);
    outline: 0 solid var(--text);
    border-radius: 0;
  }

    .sidebar__content::-webkit-scrollbar-thumb:hover {
      background: var(--primary);
    }

  .sidebar__content::-webkit-scrollbar-track {
    background: var(--dark);
    border-radius: 0;
  }

.sidebar__menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  width: 100%;
  padding: 0 16px;
  margin-top: 32px;
  margin-bottom: 32px;
}

.sidebar__nav {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  width: 100%;
  padding-bottom: 8px;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--dark-light);
}

  .sidebar__nav:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border: none;
  }

  .sidebar__nav li {
    position: relative;
    width: 100%;
  }

    .sidebar__nav li.active a:after,
    .sidebar__nav li.active button:after {
      opacity: 0.5;
    }

    .sidebar__nav li.active a:before,
    .sidebar__nav li.active button:before {
      opacity: 1;
    }

    .sidebar__nav li.active a svg,
    .sidebar__nav li.active button svg {
      stroke: var(--primary);
    }

    .sidebar__nav li.active.green a:after,
    .sidebar__nav li.active.green button:after {
      background-color: var(--secondary);
    }

    .sidebar__nav li.active.green a svg,
    .sidebar__nav li.active.green button svg {
      stroke: var(--secondary);
    }

    .sidebar__nav li.active.green a:hover svg,
    .sidebar__nav li.active.green button:hover svg {
      stroke: var(--secondary);
    }

    .sidebar__nav li.active.red a:after,
    .sidebar__nav li.active.red button:after {
      background-color: var(--tertiary);
    }

    .sidebar__nav li.active.red a svg,
    .sidebar__nav li.active.red button svg {
      stroke: var(--tertiary);
    }

    .sidebar__nav li.active.red a:hover svg,
    .sidebar__nav li.active.red button:hover svg {
      stroke: var(--tertiary);
    }

    .sidebar__nav li.active.blue a:after,
    .sidebar__nav li.active.blue button:after {
      background-color: var(--blue);
    }

    .sidebar__nav li.active.blue a svg,
    .sidebar__nav li.active.blue button svg {
      stroke: var(--blue);
    }

    .sidebar__nav li.active.blue a:hover svg,
    .sidebar__nav li.active.blue button:hover svg {
      stroke: var(--blue);
    }

    .sidebar__nav li.active.purple a:after,
    .sidebar__nav li.active.purple button:after {
      background-color: var(--purple);
    }

    .sidebar__nav li.active.purple a svg,
    .sidebar__nav li.active.purple button svg {
      stroke: var(--purple);
    }

    .sidebar__nav li.active.purple a:hover svg,
    .sidebar__nav li.active.purple button:hover svg {
      stroke: var(--purple);
    }

  .sidebar__nav a,
  .sidebar__nav button {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    width: 100%;
    height: 44px;
    border-radius: 22px;
    background: transparent;
    border: none;
    text-align: left;
    padding: 0 16px;
  }

    .sidebar__nav a:after,
    .sidebar__nav button:after {
      content: '';
      position: absolute;
      z-index: 1;
      top: 10px;
      bottom: 10px;
      left: 16px;
      width: 20px;
      background-color: var(--primary);
      border-radius: 50%;
      opacity: 0;
      transition: 0.4s ease;
    }

    .sidebar__nav a:before,
    .sidebar__nav button:before {
      content: '';
      position: absolute;
      z-index: 2;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      border-radius: 22px;
      background: rgba(255,255,255,0.01);
      border: 1px solid rgba(255,255,255,0.03);
      backdrop-filter: blur(16px);
      opacity: 0;
      transition: 0.4s ease;
    }

    .sidebar__nav a svg,
    .sidebar__nav button svg {
      position: relative;
      z-index: 3;
      width: 20px;
      height: 20px;
      stroke: var(--highlight);
      margin-right: 8px;
    }

    .sidebar__nav a span,
    .sidebar__nav button span {
      position: relative;
      z-index: 3;
      font-weight: 500;
      font-size: var(--size);
      line-height: 20px;
      color: var(--text);
      transition: color 0.4s ease;
    }

    .sidebar__nav a p,
    .sidebar__nav button p {
      position: relative;
      z-index: 3;
      display: flex;
      flex-direction: row;
      justify-content: center;
      align-items: center;
      margin-left: auto;
      font-weight: 700;
      font-size: 10px;
      line-height: 20px;
      padding: 0 8px;
      background-color: var(--dark-light);
      color: var(--highlight);
      margin-bottom: 0;
      border-radius: 10px;
    }

      .sidebar__nav a p:empty,
      .sidebar__nav button p:empty {
        display: none;
      }

    .sidebar__nav a:hover svg,
    .sidebar__nav button:hover svg {
      stroke: var(--primary);
    }

    .sidebar__nav button.sidebar__collapsed svg:last-child {
      width: 14px;
      height: 14px;
      transition: 0.4s ease;
      margin-right: 0;
      margin-left: 4px;
      margin-top: 2px;
    }

    .sidebar__nav button.sidebar__collapsed[aria-expanded="true"] svg,
    .sidebar__nav button.sidebar__collapsed:hover svg {
      stroke: var(--primary);
    }

.sidebar__nav--collapse {
  border-radius: 16px;
  background-color: var(--dark-light);
  padding: 0 8px;
  margin-bottom: 0;
  border: none;
}

  .sidebar__nav--collapse a,
  .sidebar__nav--collapse button {
    padding: 0 8px 0 24px;
    height: 32px;
  }

    .sidebar__nav--collapse a:before,
    .sidebar__nav--collapse button:before,
    .sidebar__nav--collapse a:after,
    .sidebar__nav--collapse button:after {
      display: none;
    }

    .sidebar__nav--collapse a p,
    .sidebar__nav--collapse button p {
      padding: 0;
      background-color: transparent;
    }

    .sidebar__nav--collapse a:hover span,
    .sidebar__nav--collapse button:hover span {
      color: var(--primary);
    }

  .sidebar__nav--collapse li {
    margin-bottom: 5px;
  }

    .sidebar__nav--collapse li:before {
      content: '';
      position: absolute;
      width: 4px;
      height: 4px;
      border-radius: 50%;
      background-color: var(--highlight);
      left: 8px;
      top: 50%;
      transform: translateY(-50%);
      transition: background-color 0.4s ease;
    }

    .sidebar__nav--collapse li:first-child {
      margin-top: 16px;
    }

    .sidebar__nav--collapse li:last-child {
      margin-bottom: 16px;
    }

    .sidebar__nav--collapse li:hover:before {
      background-color: var(--primary);
    }

.sidebar--active {
  transform: translate3d(0, 0, 0);
}

@media (min-width: 768px) {
  .sidebar {
    width: 260px;
    transform: translate3d(-260px, 0, 0);
  }

  .sidebar--active {
    transform: translate3d(0, 0, 0);
  }
}

@media (min-width: 1200px) {
  .sidebar {
    position: relative;
    top: auto;
    left: auto;
    bottom: auto;
    transform: translate3d(0, 0, 0);
    height: 100%;
    flex-shrink: 0;
    transition: width 0.4s ease;
  }

  .sidebar__head {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: 80px;
    padding: 0 16px;
    flex-shrink: 0;
    position: relative;
    border-bottom: 1px solid var(--dark-light);
  }

  .sidebar__logo img {
    width: auto;
    height: 48px;
    display: block;
  }
}
/*==============================
	Main
==============================*/
.main {
  width: 100%;
  padding-bottom: 60px;
}

.main__content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
}

.main__table {
  display: none;
}

.main__tabs-nav {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  flex-wrap: nowrap;
  width: auto;
  max-width: 100%;
  padding: 0 20px;
  border-radius: 30px;
  background: var(--dark-light);
  overflow-x: auto;
  border: none;
  margin-top: 0;
  margin-bottom: 8px;
}

  .main__tabs-nav::-webkit-scrollbar {
    width: 4px;
    height: 4px;
  }

  .main__tabs-nav::-webkit-scrollbar-button {
    display: none;
  }

  .main__tabs-nav::-webkit-scrollbar-thumb {
    background: rgba(var(--primary-rgba),0.4);
    outline: 0 solid var(--text);
    border-radius: 4px;
  }

    .main__tabs-nav::-webkit-scrollbar-thumb:hover {
      background: var(--primary);
    }

  .main__tabs-nav::-webkit-scrollbar-track {
    background: var(--dark);
    border-radius: 4px;
  }

  .main__tabs-nav li {
    margin-right: 20px;
  }

    .main__tabs-nav li:last-child {
      margin-right: 0;
    }

  .main__tabs-nav button {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    width: auto;
    height: 56px;
    color: var(--highlight);
    position: relative;
    font-size: var(--size);
    font-weight: 500;
    white-space: nowrap;
  }

    .main__tabs-nav button:hover {
      color: var(--text);
    }

    .main__tabs-nav button:before {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 0;
      display: block;
      background: var(--primary);
      box-shadow: none;
      transition: 0.4s ease;
      border-radius: 2px 2px 0 0;
    }

    .main__tabs-nav button.active {
      color: var(--text);
    }

      .main__tabs-nav button.active:before {
        height: 2px;
      }

.main__tabs-nav--mt {
  margin-top: 30px;
}

.main__tabs-nav--movie {
  margin-top: 24px;
  position: relative;
  z-index: 2;
}

.main__tabs-content {
  position: relative;
  width: 100%;
}

@media (min-width: 768px) {
  .main {
    padding-bottom: 0;
  }

  .main__table {
    display: block;
    padding: 32px 32px 16px;
    background-color: var(--dark-light);
    border-radius: 16px;
  }

  .main__table--mt {
    margin-top: 16px;
  }

  .main__tabs-nav {
    margin-bottom: 16px;
    padding: 0 30px;
  }

    .main__tabs-nav li {
      margin-right: 30px;
    }

      .main__tabs-nav li:last-child {
        margin-right: 0;
      }

  .main__tabs-nav--movie {
    margin-top: 32px;
  }
}

@media (min-width: 1200px) {
  .main {
    overflow: hidden;
    height: 100%;
  }

  .main__content {
    height: calc(100% - 80px);
    overflow-y: auto;
  }

    .main__content::-webkit-scrollbar {
      width: 4px;
      height: 4px;
    }

    .main__content::-webkit-scrollbar-button {
      display: none;
    }

    .main__content::-webkit-scrollbar-thumb {
      background: rgba(var(--primary-rgba),0.4);
      outline: 0 solid var(--text);
      border-radius: 0;
    }

      .main__content::-webkit-scrollbar-thumb:hover {
        background: var(--primary);
      }

    .main__content::-webkit-scrollbar-track {
      background: var(--dark);
      border-radius: 0;
    }
}
/*==============================
	Section
==============================*/
.section {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 40px 4px 0;
}

  .section .container {
    position: relative;
    z-index: 4;
  }

.section__header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  margin-bottom: 8px;
}

.section__header--tabs {
  justify-content: flex-end;
  margin-top: -44px;
  position: relative;
  z-index: 1;
}

.section__head {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
}

.section__title {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: auto;
  font-size: 26px;
  font-weight: 500;
  line-height: 36px;
  color: var(--text);
  margin-bottom: 0;
}

  .section__title small {
    font-size: 20px;
    line-height: normal;
    font-weight: 400;
    color: var(--highlight);
    margin-top: 8px;
    margin-left: 8px;
  }

  .section__title a {
    display: inline-flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    width: auto;
    color: var(--text);
  }

    .section__title a:hover {
      color: var(--primary);
    }

.section__title--head {
  font-size: 32px;
  line-height: 42px;
}

.section__title--land {
  display: flex;
  justify-content: center;
  width: 100%;
  font-size: 36px;
  line-height: 48px;
  text-align: center;
}

.section__text {
  color: var(--highlight);
  font-size: var(--sec-size);
  line-height: 24px;
  margin-bottom: 16px;
}

  .section__text b {
    font-weight: 500;
    color: var(--highlight);
  }

  .section__text a {
    color: var(--primary);
  }

    .section__text a:hover {
      color: var(--primary);
      text-decoration: underline;
    }

.section__text--land {
  text-align: center;
  width: 100%;
  max-width: 460px;
  margin: 8px auto 0 !important;
  color: #dbdbdb;
  text-shadow: 1px 1px 4px rgba(var(--dark-rgba),0.8);
}

  .section__text--land b {
    color: var(--text);
  }

    .section__text--land b.red {
      color: var(--tertiary);
    }

    .section__text--land b.blue {
      color: var(--blue);
    }

    .section__text--land b.green {
      color: var(--secondary);
    }

    .section__text--land b.purple {
      color: var(--purple);
    }

    .section__text--land b.ocean {
      color: #05aff2;
    }

    .section__text--land b.crimson {
      color: #ff2b91;
    }

    .section__text--land b.diamond {
      color: #72f2eb;
    }

.section__list ol {
  padding-left: 0;
  list-style: none;
  counter-reset: li;
  margin-bottom: 16px;
}

  .section__list ol li {
    margin-bottom: 16px;
  }

    .section__list ol li:last-child {
      margin-bottom: 0;
    }

  .section__list ol:last-child {
    margin-bottom: 0;
  }

  .section__list ol ol {
    padding-left: 20px;
    margin-bottom: 16px;
  }

    .section__list ol ol ol {
      margin-top: 16px;
    }

    .section__list ol ol:last-child {
      margin-bottom: 0;
    }

  .section__list ol h4 {
    font-size: var(--sec-size);
    line-height: 24px;
    font-weight: 500;
    color: var(--highlight);
    display: inline-block;
    margin-bottom: 16px;
  }

  .section__list ol li {
    font-size: var(--sec-size);
    line-height: 24px;
    color: var(--highlight);
    position: relative;
  }

    .section__list ol li b {
      font-weight: 500;
      color: var(--highlight);
    }

    .section__list ol li a {
      color: var(--primary);
    }

      .section__list ol li a:hover {
        color: var(--primary);
        text-decoration: underline;
      }

    .section__list ol li:last-child {
      margin-bottom: 0;
    }

    .section__list ol li:before {
      counter-increment: li;
      content: counters(li, ".") ". ";
    }

.section__nav {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  width: auto;
  flex-shrink: 0;
}

.section__all {
  display: none;
}

.section__carousel {
  width: 100%;
  position: relative;
  margin-top: 16px;
}

.section__more {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 48px;
  width: 160px;
  border-radius: 24px;
  background-color: var(--light);
  margin: 32px auto 0;
  padding-right: 44px;
  overflow: hidden;
}

  .section__more:before {
    content: '';
    position: absolute;
    z-index: 1;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    right: 4px;
    top: 4px;
    background-color: var(--primary);
    transition: transform 0.4s ease;
    transform: scale(1);
    transform-origin: center;
    will-change: transform;
    pointer-events: none;
  }

  .section__more:hover:before {
    transform: scale(7);
  }

  .section__more:hover .section__more-name {
    color: var(--text);
  }

  .section__more:hover .section__more-arrow {
    transform: rotate(-45deg);
    background-color: transparent;
  }

.section__more-name {
  font-size: var(--size);
  font-weight: 500;
  color: var(--dark);
  text-transform: uppercase;
  position: relative;
  transition: color 0.4s ease;
  z-index: 2;
  margin-left: 16px;
}

.section__more-arrow {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: absolute;
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  right: 4px;
  top: 4px;
  background-color: var(--dark-light);
  border: 1px solid var(--dark-light);
  transition: 0.4s ease;
  transition-property: transform, background-color;
  will-change: transform;
}

  .section__more-arrow svg {
    width: 24px;
    height: 24px;
    stroke: var(--text);
  }

.section__bg {
  position: absolute;
  z-index: 1;
  height: 100%;
  width: 100%;
  background: linear-gradient(145deg, var(--dark), var(--dark-light), var(--primary), var(--dark-light), var(--dark-light), var(--primary), var(--dark-light), var(--dark-light), var(--primary), var(--dark-light), var(--dark));
  background-size: 180% 180%;
  animation: gradient-animation 9s ease infinite;
  opacity: 1;
  overflow: hidden;
}

  .section__bg:after {
    content: '';
    position: absolute;
    z-index: 2;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0,0,0,0.2);
    backdrop-filter: blur(64px);
  }

  .section__bg:before {
    content: '';
    position: absolute;
    z-index: 3;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: radial-gradient(circle, rgba(0,0,0,0) 0%, rgba(0,0,0,0.5) 32%, rgba(0,0,0,0.9) 100%);
    pointer-events: none;
  }

  .section__bg .star {
    position: absolute;
    background: transparent;
    z-index: 4;
  }

  .section__bg #stars {
    width: 2px;
    height: 2px;
    box-shadow: 1397px 1662px var(--primary), 456px 285px var(--primary), 739px 1736px var(--primary), 1805px 346px var(--primary), 395px 202px var(--primary), 1665px 504px var(--primary), 659px 217px var(--primary), 1285px 1913px var(--primary), 1954px 999px var(--primary), 1394px 965px var(--primary), 1122px 174px var(--primary), 1434px 1147px var(--primary), 1367px 1287px var(--primary), 1185px 1581px var(--primary), 570px 1087px var(--primary), 1796px 1318px var(--primary), 924px 738px var(--primary), 101px 1708px var(--primary), 888px 363px var(--primary), 1488px 1502px var(--primary);
    border-radius: 50%;
    animation: animStar 35s linear infinite;
  }

    .section__bg #stars:after {
      content: '';
      position: absolute;
      top: 1900px;
      width: 2px;
      height: 2px;
      background: transparent;
      box-shadow: 1397px 1662px var(--primary), 456px 285px var(--primary), 739px 1736px var(--primary), 1805px 346px var(--primary), 395px 202px var(--primary), 1665px 504px var(--primary), 659px 217px var(--primary), 1285px 1913px var(--primary), 1954px 999px var(--primary), 1394px 965px var(--primary), 1122px 174px var(--primary), 1434px 1147px var(--primary), 1367px 1287px var(--primary), 1185px 1581px var(--primary), 570px 1087px var(--primary), 1796px 1318px var(--primary), 924px 738px var(--primary), 101px 1708px var(--primary), 888px 363px var(--primary), 1488px 1502px var(--primary);
    }

  .section__bg #stars2 {
    width: 3px;
    height: 3px;
    box-shadow: 1269px 1266px var(--primary), 1033px 144px var(--primary), 1453px 1525px var(--primary), 1224px 262px var(--primary), 1371px 242px var(--primary), 463px 1090px var(--primary), 1018px 1140px var(--primary), 276px 1468px var(--primary), 1039px 933px var(--primary), 1713px 328px var(--primary), 116px 1068px var(--primary), 235px 868px var(--primary);
    border-radius: 50%;
    animation: animStar 60s linear infinite;
  }

    .section__bg #stars2:after {
      content: '';
      position: absolute;
      top: 1900px;
      width: 3px;
      height: 3px;
      background: transparent;
      box-shadow: 1269px 1266px var(--primary), 1033px 144px var(--primary), 1453px 1525px var(--primary), 1224px 262px var(--primary), 1371px 242px var(--primary), 463px 1090px var(--primary), 1018px 1140px var(--primary), 276px 1468px var(--primary), 1039px 933px var(--primary), 1713px 328px var(--primary), 116px 1068px var(--primary), 235px 868px var(--primary);
    }

  .section__bg #stars3 {
    width: 4px;
    height: 4px;
    box-shadow: 167px 892px var(--primary), 1667px 1783px var(--primary), 1805px 488px var(--primary), 529px 521px var(--primary), 413px 1255px var(--primary), 1051px 1643px var(--primary);
    border-radius: 50%;
    animation: animStar 90s linear infinite;
  }

    .section__bg #stars3:after {
      content: '';
      position: absolute;
      top: 1900px;
      width: 4px;
      height: 4px;
      background: transparent;
      box-shadow: 167px 892px var(--primary), 1667px 1783px var(--primary), 1805px 488px var(--primary), 529px 521px var(--primary), 413px 1255px var(--primary), 1051px 1643px var(--primary);
    }

.section__canvas {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

  .section__canvas canvas {
    width: 100%;
    height: 100%;
  }

.section__animation {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  overflow: hidden;
}

.section__animation--green .section__animation-color {
  background-color: var(--secondary);
}

.section__animation--green .section__animation-icon svg {
  stroke: var(--secondary);
}

.section__animation--tertiary .section__animation-color {
  background-color: var(--tertiary);
}

.section__animation--tertiary .section__animation-icon svg {
  stroke: var(--tertiary);
}

.section__animation--blue .section__animation-color {
  background-color: var(--blue);
}

.section__animation--blue .section__animation-icon svg {
  stroke: var(--blue);
}

.section__animation--purple .section__animation-color {
  background-color: var(--purple);
}

.section__animation--purple .section__animation-icon svg {
  stroke: var(--purple);
}

.section__animation-color {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80px;
  height: 80px;
  margin: -40px 0 0 -40px;
  border-radius: 50%;
  background-color: var(--primary);
  animation: moveBackground 8s ease-in-out infinite alternate;
  opacity: 0.5;
  z-index: 1;
  transition: 0.4s ease;
  will-change: transform;
}

.section__animation-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 160px;
  height: 160px;
  margin: -80px 0 0 -80px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.005);
  animation: moveBackground 8s ease-in-out infinite alternate;
  backdrop-filter: blur(24px);
  border: 2px solid rgba(255,255,255,0.02);
  z-index: 2;
  transition: 0.4s ease;
  will-change: transform;
}

.section__animation-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 200px;
  margin: -100px 0 0 -100px;
  border-radius: 50%;
  background-color: transparent;
  animation: moveBackground 8s ease-in-out infinite alternate;
  z-index: 3;
  transition: 0.4s ease;
  will-change: transform;
}

  .section__animation-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--primary);
  }

.section__roadmap {
  display: block;
  position: relative;
  margin-top: 16px;
  width: 100%;
  background-color: var(--dark-light);
  border-radius: 16px;
  padding: 30px 20px;
}

  .section__roadmap:before {
    content: '';
    position: absolute;
    display: block;
    height: 4px;
    top: 82px;
    right: 20px;
    left: 20px;
    border-radius: 4px;
    background: var(--primary);
  }

  .section__roadmap.red:before {
    background-color: var(--tertiary);
  }

  .section__roadmap.blue:before {
    background-color: var(--blue);
  }

  .section__roadmap.green:before {
    background-color: var(--secondary);
  }

  .section__roadmap.purple:before {
    background-color: var(--purple);
  }

.section__chart {
  width: 100%;
  margin: 24px auto 0;
  background: url("../img/currencies/flixcoin.svg") no-repeat center;
  background-size: 40px 40px;
  position: relative;
}

.section__tokenomics {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 32px;
  gap: 16px 20px;
}

  .section__tokenomics li {
    color: var(--text);
    font-size: var(--sec-size);
    line-height: 24px;
    padding-left: 24px;
    position: relative;
  }

    .section__tokenomics li:before {
      content: '';
      position: absolute;
      width: 16px;
      height: 16px;
      border-radius: 50%;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
    }

    .section__tokenomics li.clr1:before {
      background-color: var(--secondary);
    }

    .section__tokenomics li.clr2:before {
      background-color: #ff2b91;
    }

    .section__tokenomics li.clr3:before {
      background-color: var(--primary);
    }

    .section__tokenomics li.clr4:before {
      background-color: #72f2eb;
    }

    .section__tokenomics li.clr5:before {
      background-color: #05aff2;
    }

    .section__tokenomics li.clr6:before {
      background-color: #dc2d4e;
    }

    .section__tokenomics li.clr7:before {
      background-color: var(--purple);
    }

    .section__tokenomics li.clr8:before {
      background-color: var(--tertiary);
    }

    .section__tokenomics li.clr9:before {
      background-color: var(--blue);
    }

    .section__tokenomics li.clr10:before {
      background-color: #ffc312;
    }

.section--bb {
  border-bottom: 1px solid var(--dark-light);
  padding-bottom: 40px;
}

.section--land {
  position: relative;
  padding-bottom: 40px;
}

.section--pt0 {
  padding-top: 0;
}

@media (min-width: 768px) {
  .section {
    padding: 48px 4px 0;
  }

  .section__header--tabs {
    margin-top: -52px;
  }

  .section__head {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .section__title {
    font-size: 32px;
  }

    .section__title small {
      font-size: 24px;
    }

  .section__title--head {
    font-size: 36px;
    line-height: 46px;
  }

  .section__title--land {
    font-size: 40px;
    line-height: 56px;
    margin-bottom: 8px;
  }

  .section__text--land {
    margin: 8px auto 8px !important;
  }

  .section__all {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    min-width: 70px;
    padding: 0 16px;
    height: 36px;
    color: var(--text);
    border-radius: 18px;
    background-color: var(--dark-light);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    margin-right: 16px;
  }

    .section__all:hover {
      color: var(--primary);
    }

  .section__more {
    margin: 40px auto 0;
  }

  .section__roadmap {
    padding: 30px 30px 40px;
  }

    .section__roadmap:before {
      left: 30px;
      right: 30px;
      top: 87px;
    }

  .section__chart {
    width: 360px;
    margin: 24px auto 0;
  }

  .section--bb {
    padding-bottom: 48px;
  }

  .section--land {
    padding-bottom: 48px;
  }

  .section--pt0 {
    padding-top: 0;
  }
}

@media (min-width: 1200px) {
  .section {
    padding: 56px 40px 0;
  }

  .section__roadmap {
    padding: 30px;
  }

  .section--bb {
    padding-bottom: 56px;
  }

  .section--land {
    padding-bottom: 56px;
  }

  .section--pt0 {
    padding-top: 0;
  }
}
/*==============================
	Hero
==============================*/
.hero {
  position: relative;
  width: 100%;
}

.hero__slide {
  position: relative;
  padding: 0 80px 0 16px;
  overflow: hidden;
  -webkit-transform: translateZ(0);
  -webkit-backface-visibility: hidden;
}

  .hero__slide:before,
  .hero__slide:after {
    content: '';
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    position: absolute;
    -webkit-transform: translateZ(0);
    -webkit-backface-visibility: hidden;
  }

  .hero__slide:before {
    background-color: rgba(0,0,0,0.4);
    z-index: 2;
  }

  .hero__slide:after {
    background: linear-gradient(180deg, rgba(var(--dark-rgba),0) 0%, var(--dark) 100%);
    z-index: 3;
  }

.hero__bg {
  position: absolute;
  z-index: 1;
  height: 100%;
  width: 100%;
  inset: 0;
  object-fit: cover;
}

.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: 460px;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
  z-index: 4;
  padding-bottom: 8px;
}

.hero__title {
  font-size: 32px;
  line-height: 42px;
  color: var(--text);
  font-weight: 500;
  margin-bottom: 10px;
  position: relative;
  padding-right: 40px;
}

  .hero__title sub {
    display: inline-flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 5px;
    right: 0;
    font-size: var(--size);
    font-weight: 600;
    line-height: 20px;
    color: var(--dark);
    width: 32px;
    height: 32px;
    background-color: var(--dark);
    border-radius: 50%;
    overflow: hidden;
  }

    .hero__title sub.gold {
      background: linear-gradient(45deg, #ffd700, #ffa500, #fc0);
    }

    .hero__title sub.silver {
      background: linear-gradient(45deg, #c0c0c0, #a8a8a8, #d0d0d0);
    }

    .hero__title sub.bronze {
      background: linear-gradient(45deg, #cd7f32, #b87333, #c19a6b);
    }

.hero__text {
  font-size: var(--size);
  line-height: 24px;
  color: var(--text);
  margin-bottom: 16px;
  width: 100%;
  max-width: 420px;
}

.hero__meta {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 420px;
  margin-bottom: 16px;
}

  .hero__meta li {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: start;
    flex-wrap: wrap;
    width: 100%;
    font-size: var(--size);
    line-height: 24px;
    color: var(--text);
  }

    .hero__meta li:last-child {
      margin-bottom: 0;
    }

  .hero__meta span {
    margin-right: 10px;
    font-weight: 400;
  }

  .hero__meta a {
    font-size: var(--size);
    line-height: 24px;
    position: relative;
    color: var(--light);
    margin-right: 10px;
  }

    .hero__meta a:after {
      content: ',';
      position: absolute;
      display: block;
      left: 100%;
      top: 0;
      color: var(--light);
    }

    .hero__meta a:last-child {
      margin-right: 0;
    }

      .hero__meta a:last-child:after {
        display: none;
      }

    .hero__meta a:hover {
      color: var(--primary);
    }

.hero__category {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

  .hero__category a {
    font-size: var(--size);
    line-height: 20px;
    position: relative;
    color: var(--light);
    margin-right: 8px;
  }

    .hero__category a:after {
      content: ',';
      position: absolute;
      display: block;
      left: 100%;
      top: 0;
      color: var(--light);
    }

    .hero__category a:last-child {
      margin-right: 0;
    }

      .hero__category a:last-child:after {
        display: none;
      }

    .hero__category a:hover {
      color: var(--primary);
    }

.hero__hash {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  white-space: nowrap;
  width: 224px;
  padding: 4px;
  height: 32px;
  background-color: var(--dark-light);
  border-radius: 16px;
}

  .hero__hash:after {
    content: '';
    position: absolute;
    display: block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: var(--text-dark);
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    transition: background-color 0.2s ease;
  }

  .hero__hash img {
    width: 24px;
    border-radius: 50%;
    opacity: 1 !important;
  }

    .hero__hash img + img {
      margin-left: -12px;
    }

  .hero__hash span {
    margin-left: 8px;
    font-size: var(--size);
    line-height: 24px;
    color: var(--secondary);
    font-weight: 500;
    text-transform: uppercase;
    white-space: nowrap;
  }

    .hero__hash span + span {
      font-size: 12px;
      line-height: 24px;
      color: var(--highlight);
      font-weight: 400;
      text-transform: none;
      margin-left: 4px;
    }

      .hero__hash span + span b {
        color: var(--secondary);
        font-weight: 400;
      }

  .hero__hash:hover:after {
    background-color: var(--light);
  }

.hero__actions {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 10px;
}

.hero__btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 48px;
  width: 160px;
  border-radius: 24px;
  background-color: var(--light);
  margin-top: 20px;
  margin-right: 16px;
  position: relative;
  overflow: hidden;
}

  .hero__btn:last-child {
    margin-right: 0;
  }

  .hero__btn:before {
    content: '';
    position: absolute;
    z-index: 1;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    margin: -10px 0 0 -10px;
    background-color: var(--primary);
    transition: 0.4s ease;
    transition-property: transform, opacity;
    transform: scale(1);
    opacity: 0;
    transform-origin: center;
    will-change: transform;
    pointer-events: none;
  }

  .hero__btn span {
    position: relative;
    z-index: 2;
    font-size: var(--size);
    line-height: 20px;
    font-weight: 500;
    color: var(--dark);
    text-transform: uppercase;
    transition: color 0.4s ease;
  }

  .hero__btn:hover:before {
    opacity: 1;
    transform: scale(8.2);
  }

  .hero__btn:hover span {
    color: var(--text);
  }

.hero__favorite {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  background-color: var(--dark);
  border: 1px solid var(--dark-light);
  border-radius: 50%;
  margin-top: 20px;
  margin-right: 16px;
}

  .hero__favorite svg {
    width: 20px;
    height: 20px;
    stroke: var(--text-dark);
  }

  .hero__favorite:last-child {
    margin-right: 0;
  }

  .hero__favorite:hover svg {
    stroke: #ffc312;
  }

.hero__favorite--active svg {
  stroke: #ffc312;
}

.hero__navs {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 64px;
  overflow: hidden;
}

@media (min-width: 576px) {
  .hero__slide {
    padding-left: calc((100% - 516px) / 2);
    padding-right: calc((100% - 516px) / 2);
  }
}

@media (min-width: 768px) {
  .hero__slide {
    padding-left: calc((100% - 696px) / 2);
    padding-right: calc((100% - 696px) / 2);
  }

  .hero__content {
    height: 500px;
  }

  .hero__title {
    font-size: 36px;
    line-height: 46px;
  }

    .hero__title sub {
      top: 8px;
    }
}

@media (min-width: 992px) {
  .hero__slide {
    padding-left: calc((100% - 936px) / 2);
    padding-right: calc((100% - 936px) / 2);
  }
}

@media (min-width: 1200px) {
  .hero__slide {
    padding-left: 52px;
    padding-right: 52px;
  }
}
/*==============================
	Carousel
==============================*/
.carousel {
  position: relative;
  width: 100%;
  padding: 40px 0 0 16px;
  margin-bottom: 24px;
}

.carousel__navs {
  position: absolute;
  top: 40px;
  right: 0;
  bottom: 0;
  width: 56px;
  overflow: hidden;
  pointer-events: none;
}

  .carousel__navs .splide__arrows {
    pointer-events: auto;
  }

    .carousel__navs .splide__arrows:before,
    .carousel__navs .splide__arrows:after {
      pointer-events: none;
    }

.carousel__content {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
}

@media (min-width: 576px) {
  .carousel {
    padding-left: calc((100% - 516px) / 2);
  }
}

@media (min-width: 768px) {
  .carousel {
    padding-top: 48px;
    padding-left: calc((100% - 696px) / 2);
    padding-right: calc((100% - 696px) / 2);
  }

  .carousel__navs {
    top: 0;
    width: 46px;
  }

  .carousel__content {
    position: relative;
  }
}

@media (min-width: 992px) {
  .carousel {
    padding-left: calc((100% - 936px) / 2);
    padding-right: calc((100% - 936px) / 2);
  }
}

@media (min-width: 1200px) {
  .carousel {
    padding: 56px 52px 0;
  }
}
/*==============================
	Itemcard
==============================*/
.itemcard {
  position: relative;
  display: block;
  width: calc(100vw - 56px);
  border-radius: 16px;
  overflow: hidden;
}

.itemcard__cover {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  cursor: pointer;
  border-radius: 16px;
  overflow: hidden;
  background-color: var(--dark-light);
}

  .itemcard__cover:before {
    content: '';
    position: absolute;
    z-index: 2;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: radial-gradient(circle, rgba(0,0,0,0) 0%, rgba(0,0,0,0.9) 100%);
    transition: opacity 0.4s ease;
    opacity: 0.6;
    pointer-events: none;
  }

  .itemcard__cover:hover .itemcard__bg {
    opacity: 0.4;
  }

  .itemcard__cover:hover:before {
    opacity: 1;
  }

  .itemcard__cover:hover .item__play {
    opacity: 1;
    transform: scale(1);
  }

  .itemcard__cover:hover .itemcard__title {
    transform: scale(0.84);
    opacity: 0.1;
  }

.itemcard__bg {
  position: absolute;
  z-index: 1;
  height: 100%;
  width: 100%;
  inset: 0;
  object-fit: cover;
  transition: opacity 0.4s ease;
  opacity: 0.8;
}

.itemcard__hash {
  position: absolute;
  z-index: 3;
  bottom: 8px;
  left: auto;
  right: 8px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  white-space: nowrap;
  width: auto;
  padding: 4px;
  height: 32px;
  background-color: var(--dark-light);
  border-radius: 16px;
}

  .itemcard__hash img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
  }

  .itemcard__hash span {
    margin-left: 8px;
    font-size: var(--size);
    line-height: 24px;
    color: var(--secondary);
    font-weight: 500;
    text-transform: uppercase;
    white-space: nowrap;
    margin-right: 8px;
  }

.itemcard__title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: auto;
  padding: 16px 40px;
  border-radius: 16px;
  overflow: hidden;
  transition: 0.4s ease;
  will-change: transform;
}

  .itemcard__title h3 {
    font-size: 26px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 36px;
    color: var(--text);
    text-align: center;
    margin-bottom: 4px;
    text-shadow: 1px 1px 4px var(--dark);
  }

    .itemcard__title h3:last-child {
      margin-bottom: 0;
    }

  .itemcard__title span {
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
    color: var(--text);
    text-align: center;
    text-shadow: 1px 1px 4px var(--dark);
  }

.itemcard__timebar {
  position: absolute;
  z-index: 3;
  display: block;
  right: 0;
  bottom: 0;
  left: 0;
  height: 4px;
  background-color: rgba(var(--primary-rgba),0.2);
  backdrop-filter: blur(4px);
}

  .itemcard__timebar span {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 0;
    background-color: var(--primary);
    border-radius: 0 2px 2px 0;
  }

.itemcard--slide {
  width: 100%;
}

.itemcard--timebar .item__labels {
  bottom: 12px;
}

.itemcard--timebar .itemcard__hash {
  bottom: 12px;
}

@media (min-width: 576px) {
  .itemcard {
    width: calc(100vw - 112px);
  }

  .itemcard--slide {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .itemcard {
    width: 100%;
  }

  .itemcard__hash {
    bottom: 16px;
    right: 16px;
  }

  .itemcard--timebar .item__labels {
    bottom: 16px;
  }

  .itemcard--timebar .itemcard__hash {
    bottom: 16px;
  }
}

@media (min-width: 1200px) {
  .itemcard__title {
    padding: 16px 16px;
  }

    .itemcard__title h3 {
      font-size: 18px;
      line-height: 30px;
    }

    .itemcard__title span {
      font-size: var(--size);
      line-height: 20px;
    }

  .itemcard__cover:hover .item__favorite {
    opacity: 1;
    transform: scale(1);
  }
}

@media (min-width: 1900px) {
  .itemcard__title {
    padding: 16px 64px;
  }
}
/*==============================
	Item
==============================*/
.item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  min-width: 100%;
  position: relative;
}

.item__cover {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background-color: #000;
}

  .item__cover img {
    width: 100%;
    height: 150px;
    transition: opacity 0.4s ease;
    position: relative;
    z-index: 1;
  }

  .item__cover:before {
    content: '';
    position: absolute;
    z-index: 2;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: radial-gradient(circle, rgba(0,0,0,0) 0%, rgba(0,0,0,0.9) 100%);
    transition: opacity 0.4s ease;
    opacity: 0.1;
    pointer-events: none;
  }

  .item__cover:hover img {
    opacity: 0.5;
  }

  .item__cover:hover:before {
    opacity: 1;
  }

  .item__cover:hover .item__play {
    opacity: 1;
    transform: scale(1);
  }

.item__play {
  position: absolute;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 64px;
  height: 64px;
  background-color: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  margin: -32px 0 0 -32px;
  z-index: 3;
  transition: 0.4s ease;
  transform: scale(0.8);
  transition-property: opacity, background-color, transform, border-color;
  opacity: 0;
  backdrop-filter: blur(4px);
}

  .item__play:before {
    content: '';
    position: absolute;
    z-index: 1;
    top: 8px;
    right: 8px;
    bottom: 8px;
    left: 8px;
    border-radius: 50%;
    background-color: var(--dark);
  }

  .item__play svg {
    position: relative;
    z-index: 2;
    width: 26px;
    height: 26px;
    stroke: var(--text-dark);
  }

  .item__play:hover {
    background-color: rgba(var(--primary-rgba),0.2);
    border-color: rgba(var(--primary-rgba),0.1);
  }

    .item__play:hover svg {
      stroke: var(--primary);
    }

.item__content {
  position: relative;
  display: block;
  margin-top: 12px;
  width: 100%;
}

.item__title {
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  color: var(--text);
  margin: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  word-wrap: break-word;
  transition: color 0.4s ease;
}

  .item__title a {
    color: var(--text);
  }

    .item__title a:hover {
      color: var(--primary);
    }

  .item__title:hover {
    color: var(--primary);
  }

.item__category {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: start;
  flex-wrap: wrap;
  margin-top: 4px;
}

  .item__category a {
    font-size: var(--size);
    line-height: 24px;
    position: relative;
    color: var(--light);
    margin-right: 10px;
  }

    .item__category a:after {
      content: ',';
      position: absolute;
      display: block;
      left: 100%;
      top: 0;
      color: var(--light);
      line-height: 24px;
    }

    .item__category a:last-child {
      margin-right: 0;
    }

      .item__category a:last-child:after {
        display: none;
      }

    .item__category a:hover {
      color: var(--primary);
    }

.item__rate {
  position: absolute;
  z-index: 3;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  top: 8px;
  left: 8px;
  background-color: var(--dark);
  border-radius: 50%;
  overflow: hidden;
}

  .item__rate span {
    position: relative;
    z-index: 2;
    font-size: var(--size);
    font-weight: 600;
    line-height: 20px;
    color: var(--dark);
  }

.item__rate--gold {
  background: linear-gradient(45deg, #ffd700, #ffa500, #fc0);
}

.item__rate--silver {
  background: linear-gradient(45deg, #c0c0c0, #a8a8a8, #d0d0d0);
}

.item__rate--bronze {
  background: linear-gradient(45deg, #cd7f32, #b87333, #c19a6b);
}

.item__favorite {
  position: absolute;
  z-index: 3;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  top: 8px;
  right: 8px;
  background-color: var(--dark);
  border: 1px solid var(--dark-light);
  border-radius: 50%;
}

  .item__favorite svg {
    width: 16px;
    height: 16px;
    stroke: var(--text-dark);
  }

  .item__favorite:hover svg {
    stroke: #ffc312;
  }

.item__favorite--active svg {
  stroke: #ffc312;
}

.item__favorite--active:hover svg {
  stroke: var(--tertiary);
}

.item__labels {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  position: absolute;
  z-index: 3;
  bottom: 8px;
  left: 8px;
  right: 8px;
}

  .item__labels span {
    margin-right: 8px;
    margin-top: 8px;
  }

    .item__labels span:last-child {
      margin-right: 0;
    }

.item__labels--movie {
  top: 0;
  bottom: auto;
}

.item__new {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--tertiary);
  color: var(--text);
  font-size: 12px;
  font-weight: 600;
}

.item__promo {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--text);
}

  .item__promo svg {
    width: 24px;
    height: 24px;
    stroke: var(--tertiary);
  }

.item__online {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: auto;
  height: 32px;
  padding: 0 4px;
  border-radius: 16px;
  background-color: var(--text);
}

  .item__online svg {
    width: 24px;
    height: 24px;
    stroke: var(--tertiary);
  }

  .item__online span {
    font-size: var(--size);
    font-weight: 500;
    line-height: 20px;
    color: var(--dark);
    margin: 0 8px 0 4px !important;
  }

.item__time {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: auto;
  height: 32px;
  padding: 0 4px;
  border-radius: 16px;
  background-color: var(--text);
}

  .item__time svg {
    width: 24px;
    height: 24px;
    stroke: var(--tertiary);
  }

  .item__time span {
    font-size: var(--size);
    font-weight: 500;
    line-height: 20px;
    color: var(--dark);
    margin: 0 8px 0 4px !important;
  }

.item__hash {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  white-space: nowrap;
  width: 100%;
  margin-top: 8px;
  padding: 4px;
  height: 32px;
  background-color: var(--dark-light);
  border-radius: 16px;
}

  .item__hash:after {
    content: '';
    position: absolute;
    display: block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: var(--text-dark);
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    transition: background-color 0.2s ease;
  }

  .item__hash img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
  }

  .item__hash span {
    margin-left: 8px;
    font-size: var(--size);
    line-height: 24px;
    color: var(--secondary);
    font-weight: 500;
    text-transform: uppercase;
    white-space: nowrap;
  }

    .item__hash span + span {
      font-size: 12px;
      line-height: 24px;
      color: var(--highlight);
      font-weight: 400;
      text-transform: none;
      margin-left: 4px;
    }

      .item__hash span + span b {
        color: var(--secondary);
        font-weight: 400;
      }

  .item__hash:hover:after {
    background-color: var(--light);
  }

.item--none {
  display: none;
}

@media (min-width: 768px) {
  .item__rate {
    top: 16px;
    left: 16px;
  }

  .item__favorite {
    top: 16px;
    right: 16px;
  }

  .item__labels {
    right: 16px;
    bottom: 16px;
    left: 16px;
  }

  .item__labels--movie {
    top: 8px;
    bottom: auto;
  }
}

@media (min-width: 1200px) {
  .item__cover:hover .item__favorite {
    opacity: 1;
    transform: scale(1);
  }

  .item__favorite {
    transition: 0.4s ease;
    transform: scale(0.8);
    transition-property: opacity, background-color, color, border-color, transform;
    opacity: 0;
  }

  .item__favorite--active {
    opacity: 1;
    transform: scale(1);
  }
}
/*==============================
	Earning
==============================*/
.earning {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  min-height: 100%;
}

  .earning:focus .earning__dot {
    opacity: 0;
  }

  .earning:focus .earning__arrow {
    transform: translate(0, 0);
  }

  .earning:hover .earning__dot {
    opacity: 1;
  }

  .earning:hover .earning__arrow {
    transform: translate(30%, -30%);
  }

.earning--green .earning__content {
  background-color: rgba(var(--secondary-rgba),0.12);
}

.earning--green .earning__icon {
  background-color: rgba(var(--secondary-rgba),0.12);
}

  .earning--green .earning__icon svg {
    stroke: var(--secondary);
  }

.earning--green .earning__text b {
  color: var(--secondary);
}

.earning--green .earning__dot {
  background-color: var(--secondary);
}

.earning--green:hover .earning__arrow svg {
  stroke: var(--secondary);
}

.earning--tertiary .earning__content {
  background-color: rgba(var(--tertiary-rgba),0.12);
}

.earning--tertiary .earning__icon {
  background-color: rgba(var(--tertiary-rgba),0.12);
}

  .earning--tertiary .earning__icon svg {
    stroke: var(--tertiary);
  }

.earning--tertiary .earning__text b {
  color: var(--tertiary);
}

.earning--tertiary .earning__dot {
  background-color: var(--tertiary);
}

.earning--tertiary:hover .earning__arrow svg {
  stroke: var(--tertiary);
}

.earning--blue .earning__content {
  background-color: rgba(var(--blue-rgba),0.12);
}

.earning--blue .earning__icon {
  background-color: rgba(var(--blue-rgba),0.12);
}

  .earning--blue .earning__icon svg {
    stroke: var(--blue);
  }

.earning--blue .earning__text b {
  color: var(--blue);
}

.earning--blue .earning__dot {
  background-color: var(--blue);
}

.earning--blue:hover .earning__arrow svg {
  stroke: var(--blue);
}

.earning--purple .earning__content {
  background-color: rgba(var(--purple-rgba),0.12);
}

.earning--purple .earning__icon {
  background-color: rgba(var(--purple-rgba),0.12);
}

  .earning--purple .earning__icon svg {
    stroke: var(--purple);
  }

.earning--purple .earning__text b {
  color: var(--purple);
}

.earning--purple .earning__dot {
  background-color: var(--purple);
}

.earning--purple:hover .earning__arrow svg {
  stroke: var(--purple);
}

.earning--burgundy .earning__content {
  background-color: rgba(220,45,78,0.12);
}

.earning--burgundy .earning__icon {
  background-color: rgba(220,45,78,0.12);
}

  .earning--burgundy .earning__icon svg {
    stroke: #dc2d4e;
  }

.earning--burgundy .earning__text b {
  color: #dc2d4e;
}

.earning--burgundy .earning__dot {
  background-color: #dc2d4e;
}

.earning--burgundy:hover .earning__arrow svg {
  stroke: #dc2d4e;
}

.earning--diamond .earning__content {
  background-color: rgba(114,242,235,0.12);
}

.earning--diamond .earning__icon {
  background-color: rgba(114,242,235,0.12);
}

  .earning--diamond .earning__icon svg {
    stroke: #72f2eb;
  }

.earning--diamond .earning__text b {
  color: #72f2eb;
}

.earning--diamond .earning__dot {
  background-color: #72f2eb;
}

.earning--diamond:hover .earning__arrow svg {
  stroke: #72f2eb;
}

.earning--ocean .earning__content {
  background-color: rgba(5,175,242,0.12);
}

.earning--ocean .earning__icon {
  background-color: rgba(5,175,242,0.12);
}

  .earning--ocean .earning__icon svg {
    stroke: #05aff2;
  }

.earning--ocean .earning__text b {
  color: #05aff2;
}

.earning--ocean .earning__dot {
  background-color: #05aff2;
}

.earning--ocean:hover .earning__arrow svg {
  stroke: #05aff2;
}

.earning--crimson .earning__content {
  background-color: rgba(255,43,145,0.12);
}

.earning--crimson .earning__icon {
  background-color: rgba(255,43,145,0.12);
}

  .earning--crimson .earning__icon svg {
    stroke: #ff2b91;
  }

.earning--crimson .earning__text b {
  color: #ff2b91;
}

.earning--crimson .earning__dot {
  background-color: #ff2b91;
}

.earning--crimson:hover .earning__arrow svg {
  stroke: #ff2b91;
}

.earning__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  z-index: 2;
  width: 100%;
  flex: 1;
  border-radius: 16px;
  backdrop-filter: blur(16px);
  padding: 20px;
}

  .earning__content:before {
    content: '';
    position: absolute;
    z-index: 1;
    top: 4px;
    right: 4px;
    bottom: 4px;
    left: 4px;
    background-color: var(--dark);
    border-radius: 12px;
  }

.earning__icon {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 44px;
  width: 44px;
  border-radius: 8px;
  position: absolute;
  z-index: 2;
  top: 20px;
  left: 20px;
}

  .earning__icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary);
  }

.earning__arrow {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: absolute;
  z-index: 2;
  top: 20px;
  right: 20px;
  width: 30px;
  height: 44px;
  transition: transform 0.4s ease;
}

  .earning__arrow svg {
    width: 24px;
    height: 24px;
    stroke: var(--highlight);
  }

.earning__title {
  position: relative;
  z-index: 2;
  font-size: 20px;
  line-height: 35px;
  font-weight: 500;
  color: var(--text);
  padding-left: 60px;
  margin-bottom: 16px;
}

.earning__text {
  position: relative;
  z-index: 2;
  color: var(--highlight);
  font-size: var(--sec-size);
  line-height: 24px;
  width: 100%;
  margin-bottom: 0;
}

  .earning__text b {
    font-weight: 500;
    color: var(--highlight);
  }

  .earning__text a {
    color: var(--primary);
  }

    .earning__text a:hover {
      color: var(--primary);
      text-decoration: underline;
    }

.earning__dot {
  width: 32px;
  height: 32px;
  background-color: var(--primary);
  border-radius: 50%;
  position: absolute;
  z-index: 1;
  opacity: 0;
  transition: 0.4s ease;
  will-change: opacity;
  animation: moveDot 6s linear infinite;
}

@media (min-width: 768px) {
  .earning__content {
    padding: 28px;
  }

  .earning__icon {
    top: 28px;
    left: 28px;
  }

  .earning__arrow {
    top: 28px;
    right: 28px;
  }
}
/*==============================
	Timetable
==============================*/
.timetable {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  background-color: var(--dark-light);
  width: 100%;
  border-radius: 16px;
}

.timetable__head {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  border-bottom: 1px solid var(--dark);
  padding: 24px 16px 0;
  width: 100%;
  position: relative;
}

.timetable__title {
  width: 100%;
  color: var(--text);
  font-weight: 500;
  font-size: 26px;
  line-height: 36px;
  text-align: center;
  margin-bottom: 20px;
}

  .timetable__title b {
    font-weight: 600;
  }

.timetable__datetime {
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
  border: 1px solid var(--light);
  height: 36px;
  width: auto;
  min-width: 240px;
  padding: 0 16px;
  border-radius: 18px;
}

  .timetable__datetime svg {
    width: 20px;
    height: 20px;
    stroke: var(--light);
    margin-right: 8px;
  }

  .timetable__datetime span {
    font-size: var(--size);
    font-weight: 400;
    line-height: 24px;
    margin-right: 5px;
    color: var(--light);
  }

    .timetable__datetime span:last-child {
      margin-right: 0;
    }

.timetable__tabs {
  border: none;
  flex-wrap: nowrap;
  width: 100%;
}

.timetable__date {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 70px;
  padding-bottom: 12px;
  margin: 0 auto;
  position: relative;
  padding-bottom: 44px;
}

  .timetable__date:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    display: block;
    background-color: var(--primary);
    transition: 0.4s ease;
    transform: translateY(2px);
    opacity: 0;
    border-radius: 4px 4px 0 0;
  }

  .timetable__date span {
    font-size: 12px;
    line-height: 16px;
    color: var(--highlight);
    transition: color 0.4s ease;
    font-weight: 500;
    text-transform: uppercase;
    text-align: center;
    margin: 0 4px;
  }

    .timetable__date span:last-child {
      position: absolute;
      bottom: 8px;
      left: 0;
      font-size: 20px;
      line-height: 32px;
      width: 100%;
      margin-bottom: 0;
      margin-right: 0;
      margin: 0;
    }

  .timetable__date:hover span {
    color: var(--text);
  }

  .timetable__date.active span {
    color: var(--text);
  }

  .timetable__date.active:before {
    opacity: 1;
    transform: translateY(0);
  }

.timetable__content {
  width: 100%;
  padding: 24px 16px 0;
}

.timetable__table {
  display: none;
}

.timetable__mob-table {
  display: block;
  width: 100%;
}

.timetable__more {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  position: relative;
  height: 48px;
  width: 160px;
  border-radius: 24px;
  background-color: var(--light);
  margin: 10px auto 24px;
  padding-right: 44px;
  overflow: hidden;
}

  .timetable__more:before {
    content: '';
    position: absolute;
    z-index: 1;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    right: 4px;
    top: 4px;
    background-color: var(--primary);
    transition: transform 0.4s ease;
    transform: scale(1);
    transform-origin: center;
    will-change: transform;
    pointer-events: none;
  }

  .timetable__more:hover:before {
    transform: scale(7);
  }

  .timetable__more:hover .timetable__more-name {
    color: var(--text);
  }

  .timetable__more:hover .timetable__more-arrow {
    transform: rotate(-45deg);
    background-color: transparent;
  }

.timetable__more-name {
  font-size: var(--size);
  font-weight: 500;
  color: var(--dark);
  text-transform: uppercase;
  position: relative;
  transition: color 0.4s ease;
  z-index: 2;
  margin-right: 16px;
}

.timetable__more-arrow {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: absolute;
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  right: 4px;
  top: 4px;
  background-color: var(--dark-light);
  border: 1px solid var(--dark-light);
  transition: 0.4s ease;
  transition-property: transform, background-color;
  will-change: transform;
}

  .timetable__more-arrow svg {
    width: 24px;
    height: 24px;
    stroke: var(--text);
  }

@media (min-width: 768px) {
  .timetable__head {
    padding: 32px 32px 0;
    align-items: flex-start;
  }

  .timetable__title {
    font-size: 32px;
    margin-bottom: 32px;
    text-align: left;
  }

  .timetable__datetime {
    margin-bottom: 0;
    position: absolute;
    justify-content: flex-start;
    top: 32px;
    right: 32px;
    min-width: 230px;
    width: auto;
  }

  .timetable__datetime--notitle {
    position: relative;
    margin-bottom: 32px;
    justify-content: center;
    top: auto;
    right: auto;
  }

  .timetable__date {
    justify-content: flex-start;
    align-items: flex-start;
    margin: 0;
    width: auto;
    padding-bottom: 56px;
    width: 60px;
  }

    .timetable__date span {
      font-size: var(--size);
      line-height: 20px;
      text-align: left;
      margin: 0 4px 0 0;
    }

      .timetable__date span:last-child {
        font-size: 24px;
        line-height: 36px;
        margin: 0;
        bottom: 12px;
      }

  .timetable__content {
    padding: 32px 32px 8px;
  }

  .timetable__table {
    display: block;
    width: 100%;
  }

  .timetable__mob-table {
    display: none;
  }

  .timetable__more {
    margin: 8px auto 32px;
  }
}

@media (min-width: 992px) {
  .timetable__datetime--notitle {
    position: absolute;
    margin-bottom: 0;
    justify-content: flex-start;
    top: 32px;
    right: 32px;
  }
}
/*==============================
	Table
==============================*/
.xtable {
  width: 100%;
  border-spacing: 0;
}

  .xtable thead th {
    font-size: 12px;
    text-transform: uppercase;
    color: var(--highlight);
    font-weight: 400;
    padding: 0 16px 16px;
    line-height: 100%;
    margin-bottom: 0;
    border: none;
    border-bottom: 1px solid var(--dark);
    background-color: transparent;
    white-space: nowrap;
  }

    .xtable thead th button {
      display: flex;
      flex-direction: row;
      justify-content: flex-start;
      align-items: center;
      color: var(--highlight);
      font-size: 12px;
      text-transform: uppercase;
      line-height: 20px;
    }

      .xtable thead th button svg {
        width: 14px;
        height: 14px;
        margin-left: 4px;
        stroke: var(--highlight);
      }

      .xtable thead th button:hover {
        color: var(--text);
      }

        .xtable thead th button:hover svg {
          stroke: var(--text);
        }

      .xtable thead th button.active {
        cursor: default;
        color: var(--text);
      }

        .xtable thead th button.active svg {
          stroke: var(--primary);
        }

    .xtable thead th:first-child {
      padding-left: 0;
    }

    .xtable thead th:last-child {
      padding-right: 0;
      text-align: right;
    }

      .xtable thead th:last-child button {
        margin-left: auto;
        justify-content: flex-end;
      }

  .xtable tbody tr:last-child td {
    border-bottom: none;
  }

  .xtable tbody td {
    font-size: 0;
    padding: 16px;
    border-bottom: 1px solid var(--dark);
  }

    .xtable tbody td:first-child {
      padding-left: 0;
    }

    .xtable tbody td:last-child {
      padding-right: 0;
      text-align: right;
    }

      .xtable tbody td:last-child .xtable__title,
      .xtable tbody td:last-child .xtable__text,
      .xtable tbody td:last-child .xtable__live,
      .xtable tbody td:last-child .xtable__premiere,
      .xtable tbody td:last-child .xtable__free,
      .xtable tbody td:last-child .xtable__pair,
      .xtable tbody td:last-child .xtable__info,
      .xtable tbody td:last-child .xtable__btn,
      .xtable tbody td:last-child .xtable__favorite,
      .xtable tbody td:last-child .xtable__watch,
      .xtable tbody td:last-child .xtable__ticket {
        margin-left: auto;
        justify-content: flex-end;
      }

.xtable__title {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: auto;
  font-size: var(--sec-size);
  line-height: 24px;
  color: var(--text);
  font-weight: 400;
}

  .xtable__title svg {
    width: 20px;
    height: 20px;
    margin-right: 4px;
    stroke: var(--medium);
  }

  .xtable__title:hover {
    color: var(--primary);
  }

.xtable__text {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  white-space: nowrap;
  width: auto;
  font-size: var(--size);
  line-height: 24px;
  color: var(--text);
  font-weight: 400;
}

  .xtable__text svg {
    width: 20px;
    height: 20px;
    stroke: var(--light);
    margin-right: 4px;
  }

  .xtable__text a {
    color: var(--light);
    text-decoration: underline;
  }

    .xtable__text a:hover {
      color: var(--medium);
    }

.xtable__text--green {
  color: var(--secondary);
}

  .xtable__text--green svg {
    stroke: var(--secondary);
  }

.xtable__text--green-icon svg {
  stroke: var(--secondary);
}

.xtable__text--tertiary {
  color: var(--tertiary);
}

  .xtable__text--tertiary svg {
    stroke: var(--tertiary);
  }

.xtable__text--tertiary-icon svg {
  stroke: var(--tertiary);
}

.xtable__text--blue {
  color: var(--blue);
}

  .xtable__text--blue svg {
    stroke: var(--blue);
  }

.xtable__text--blue-icon svg {
  stroke: var(--blue);
}

.xtable__text--grey {
  color: var(--highlight);
}

  .xtable__text--grey svg {
    stroke: var(--highlight);
  }

.xtable__text--clouds {
  color: var(--light);
  font-weight: 500;
}

  .xtable__text--clouds svg {
    stroke: var(--light);
  }

.xtable__text--pink {
  color: var(--medium);
  font-weight: 500;
}

  .xtable__text--pink svg {
    stroke: var(--medium);
  }

.xtable__text--yellow {
  color: #ffc312;
}

.xtable__text--small {
  font-size: 12px;
  font-weight: 500;
}

.xtable__text--big {
  font-size: var(--sec-size);
  font-weight: 500;
}

.xtable__message {
  font-size: var(--size);
  line-height: 24px;
  color: var(--text);
  font-weight: 400;
  position: relative;
  padding-left: 17px;
  width: auto;
  min-width: 200px;
}

  .xtable__message:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--medium);
    border-radius: 2px;
  }

.xtable__live {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  padding: 0 8px;
  width: auto;
  height: 24px;
  border-radius: 12px;
  font-size: var(--size);
  line-height: 24px;
  color: var(--text);
  font-weight: 500;
  background-color: var(--tertiary);
}

.xtable__premiere {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  padding: 0 8px;
  width: auto;
  height: 24px;
  border-radius: 12px;
  font-size: var(--size);
  line-height: 24px;
  color: var(--dark);
  font-weight: 500;
  background-color: var(--medium);
}

.xtable__free {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  padding: 0 8px;
  width: auto;
  height: 24px;
  border-radius: 12px;
  font-size: var(--size);
  line-height: 24px;
  color: var(--dark);
  font-weight: 500;
  background-color: var(--secondary);
}

.xtable__pair {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  white-space: nowrap;
  width: auto;
}

  .xtable__pair img {
    width: 24px;
    border-radius: 50%;
  }

    .xtable__pair img + img {
      margin-left: -12px;
    }

  .xtable__pair span {
    margin-left: 8px;
    font-size: var(--size);
    line-height: 24px;
    color: var(--text);
    font-weight: 500;
    text-transform: uppercase;
  }

    .xtable__pair span + span {
      color: var(--highlight);
      font-weight: 400;
    }

      .xtable__pair span + span b {
        color: var(--secondary);
        font-weight: 400;
      }

.xtable__info {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: auto;
}

  .xtable__info p {
    font-size: var(--size);
    line-height: 24px;
    white-space: nowrap;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 0;
  }

  .xtable__info span {
    font-size: 12px;
    line-height: 20px;
    white-space: nowrap;
    color: var(--highlight);
  }

.xtable__btn {
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
}

  .xtable__btn svg {
    width: 20px;
    height: 20px;
    stroke: var(--light);
  }

  .xtable__btn:hover svg {
    stroke: var(--medium);
  }

.xtable__favorite {
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 24px;
}

  .xtable__favorite svg {
    width: 20px;
    height: 20px;
    stroke: var(--text-dark);
  }

  .xtable__favorite:hover svg {
    stroke: #ffc312;
  }

.xtable__favorite--active svg {
  stroke: #ffc312;
}

.xtable__favorite--active:hover svg {
  stroke: var(--tertiary);
}

.xtable__watch {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: auto;
  font-size: var(--size);
  line-height: 24px;
  color: var(--text);
  font-weight: 500;
  text-transform: uppercase;
}

  .xtable__watch span {
    display: inline-flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: var(--dark);
    font-weight: normal;
    margin-right: 8px;
    text-transform: none;
    transition: background-color 0.4s ease;
  }

    .xtable__watch span svg {
      width: 16px;
      height: 16px;
      stroke: var(--text-dark);
    }

  .xtable__watch:hover span {
    background-color: var(--primary);
  }

    .xtable__watch:hover span svg {
      stroke: var(--text);
    }

.xtable__ticket {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: auto;
  font-size: var(--size);
  line-height: 24px;
  color: var(--text);
  font-weight: 500;
  text-transform: uppercase;
  white-space: nowrap;
}

  .xtable__ticket span {
    display: inline-flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    font-weight: normal;
    margin-right: 8px;
    text-transform: none;
  }

    .xtable__ticket span svg {
      width: 20px;
      height: 20px;
      stroke: var(--text-dark);
    }

  .xtable__ticket:hover span svg {
    stroke: var(--primary);
  }

.xtable--small {
  min-width: 290px;
}

  .xtable--small thead th {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 500;
    padding: 0 8px 16px;
  }

    .xtable--small thead th:first-child {
      padding-left: 0;
    }

    .xtable--small thead th:last-child {
      padding-right: 0;
    }

  .xtable--small tbody td {
    padding: 16px 8px;
  }

    .xtable--small tbody td:first-child {
      padding-left: 0;
    }

    .xtable--small tbody td:last-child {
      padding-right: 0;
    }

.xtable--profile {
  min-width: 500px;
}

  .xtable--profile thead th {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 500;
    padding: 0 20px 16px;
  }

  .xtable--profile tbody td {
    padding: 16px 20px;
  }

@media (min-width: 768px) {
  .xtable__title {
    white-space: nowrap;
  }
}

.mob-table {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
}

  .mob-table .xtable__text {
    white-space: wrap;
  }

.mob-table__row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--dark);
}

  .mob-table__row:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
  }

.mob-table__item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: calc(50% - 8px);
  margin-bottom: 16px;
}

.mob-table__item--full {
  width: 100%;
}

.mob-table__title {
  font-size: 12px;
  color: var(--highlight);
  font-weight: 400;
  display: block;
  margin-bottom: 8px;
}

.mob-table--bg {
  background-color: var(--dark-light);
  border-radius: 16px;
  padding: 24px 20px 10px;
}

.mob-table--mt {
  margin-top: 16px;
}

@media (min-width: 768px) {
  .mob-table {
    display: none;
  }
}
/*==============================
	Plan
==============================*/
.plan {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-top: 16px;
  position: relative;
}

.plan--clouds .plan__content,
.plan--clouds .plan__cellar {
  background-color: var(--light);
}

.plan--clouds .plan__price {
  color: var(--blue);
}

.plan--clouds .plan__item svg {
  stroke: var(--blue);
}

.plan--pink .plan__content,
.plan--pink .plan__cellar {
  background-color: var(--medium);
}

.plan--pink .plan__price {
  color: var(--tertiary);
}

.plan--pink .plan__item svg {
  stroke: var(--tertiary);
}

.plan--active .plan__btn {
  pointer-events: none;
  opacity: 0.7;
}

.plan__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  border-radius: 16px 16px 0 0;
  padding: 32px;
  background-color: var(--text);
  position: relative;
}

  .plan__content:after {
    content: '';
    width: 100%;
    height: 0.125rem;
    border-top: 4px dotted var(--dark);
    position: absolute;
    z-index: 1;
    bottom: -2px;
    left: 0;
    right: 0;
  }

.plan__head {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.plan__title {
  font-size: 24px;
  line-height: 30px;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 0;
}

.plan__price {
  font-size: 30px;
  font-weight: 500;
  line-height: 30px;
  color: var(--secondary);
}

  .plan__price sub {
    font-size: var(--size);
    bottom: 1px;
    font-weight: 400;
  }

.plan__list {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-top: 24px;
}

.plan__item {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  font-size: var(--sec-size);
  line-height: 24px;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 8px;
}

  .plan__item b {
    font-weight: 500;
    margin-right: 4px;
  }

  .plan__item svg {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    stroke: var(--secondary);
  }

.plan__item--none {
  color: var(--text-dark);
}

  .plan__item--none svg {
    stroke: var(--text-dark) !important;
  }

.plan__item:last-child {
  margin-bottom: 0;
}

.plan__cellar {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  border-radius: 0 0 16px 16px;
  padding: 24px;
  background-color: var(--text);
  position: relative;
}

  .plan__cellar:before,
  .plan__cellar:after {
    content: '';
    position: absolute;
    display: block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    top: -8px;
    background-color: var(--dark);
    z-index: 2;
  }

  .plan__cellar:before {
    left: -8px;
  }

  .plan__cellar:after {
    right: -8px;
  }

.plan__btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 48px;
  width: 100%;
  border-radius: 16px;
  text-transform: uppercase;
  background-color: var(--dark-light);
  border: 2px solid var(--dark-light);
  line-height: 1;
  overflow: hidden;
}

  .plan__btn:before {
    content: '';
    position: absolute;
    z-index: 1;
    right: 0;
    bottom: -2px;
    left: 0;
    height: 0;
    background-color: var(--primary);
    transition: 0.4s ease;
    will-change: height;
  }

  .plan__btn span {
    position: relative;
    z-index: 2;
    font-size: var(--size);
    line-height: 24px;
    font-weight: 500;
    color: var(--text);
  }

  .plan__btn:hover {
    color: var(--text);
  }

    .plan__btn:hover:before {
      height: 48px;
    }

@media (min-width: 992px) {
  .plan--page {
    margin-top: 0;
  }

  .plan__head {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .plan__price {
    margin-top: 12px;
  }
}

@media (min-width: 1200px) {
  .plan__head {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .plan__price {
    margin-top: 0;
  }
}
/*==============================
	Invest
==============================*/
.invest {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  padding: 32px;
  background-color: var(--text);
  border-radius: 16px;
  margin-top: 16px;
  position: relative;
}

.invest--clouds {
  background-color: var(--light);
}

  .invest--clouds .invest__term {
    color: var(--blue);
  }

  .invest--clouds .invest__mark {
    color: var(--blue);
  }

  .invest--clouds .invest__item svg {
    stroke: var(--blue);
  }

  .invest--clouds .invest__content p b {
    color: var(--blue);
  }

.invest--pink {
  background-color: var(--medium);
}

  .invest--pink .invest__term {
    color: var(--tertiary);
  }

  .invest--pink .invest__mark {
    color: var(--tertiary);
  }

  .invest--pink .invest__item svg {
    stroke: var(--tertiary);
  }

  .invest--pink .invest__content p b {
    color: var(--tertiary);
  }

.invest--active .invest__btn {
  pointer-events: none;
  opacity: 0.7;
}

.invest__title {
  font-size: 24px;
  line-height: 30px;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 0;
}

  .invest__title b {
    font-weight: 500;
  }

.invest__term {
  font-size: 30px;
  font-weight: 500;
  line-height: 30px;
  color: var(--secondary);
  position: absolute;
  top: 32px;
  right: 32px;
}

  .invest__term sub {
    font-size: var(--size);
    bottom: 1px;
    font-weight: 400;
  }

.invest__mark {
  position: absolute;
  top: 32px;
  right: 32px;
  font-size: var(--size);
  font-weight: 500;
  line-height: 30px;
  text-transform: uppercase;
  color: var(--secondary);
}

.invest__list {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-top: 16px;
}

.invest__item {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  font-size: var(--sec-size);
  line-height: 24px;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 8px;
}

  .invest__item b {
    font-weight: 500;
    margin-right: 4px;
  }

  .invest__item svg {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    stroke: var(--secondary);
  }

.invest__item--none {
  color: var(--text-dark);
}

  .invest__item--none svg {
    stroke: var(--text-dark) !important;
  }

.invest__item:last-child {
  margin-bottom: 0;
}

.invest__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-top: 16px;
  position: relative;
}

  .invest__content p {
    font-size: var(--sec-size);
    line-height: 24px;
    font-weight: 400;
    color: var(--dark);
    margin-bottom: 8px;
  }

    .invest__content p b {
      font-weight: 500;
      color: var(--secondary);
    }

    .invest__content p:last-child {
      margin-bottom: 0;
    }

.invest__group {
  position: relative;
  margin-top: 24px;
  width: 100%;
}

.invest__label {
  font-size: var(--size);
  line-height: 100%;
  font-weight: 400;
  color: var(--text-dark);
  width: 100%;
  margin-bottom: 8px;
  padding-left: 16px;
}

  .invest__label b {
    color: var(--tertiary);
    font-weight: 500;
  }

.invest__input {
  width: 100%;
  background: url("../img/dollar.svg") no-repeat center left 10px transparent;
  background-size: 24px 24px;
  border: 2px solid var(--dark-light);
  height: 48px;
  position: relative;
  color: var(--dark);
  font-size: var(--sec-size);
  width: 100%;
  border-radius: 24px;
  padding: 0 16px 0 36px;
}

  .invest__input:focus {
    border-color: var(--primary);
  }

.invest__btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 48px;
  width: 100%;
  border-radius: 24px;
  text-transform: uppercase;
  background-color: var(--dark-light);
  border: 2px solid var(--dark-light);
  line-height: 1;
  overflow: hidden;
  margin-top: 30px;
}

  .invest__btn:before {
    content: '';
    position: absolute;
    z-index: 1;
    right: 0;
    bottom: -2px;
    left: 0;
    height: 0;
    background-color: var(--primary);
    transition: 0.4s ease;
    will-change: height;
  }

  .invest__btn span {
    position: relative;
    z-index: 2;
    font-size: var(--size);
    line-height: 24px;
    font-weight: 500;
    color: var(--text);
  }

  .invest__btn:hover {
    color: var(--text);
  }

    .invest__btn:hover:before {
      height: 48px;
    }
/*==============================
	Roadmap
==============================*/
.roadmap {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  position: relative;
}

  .roadmap:before,
  .roadmap:after {
    content: '';
    position: absolute;
    display: block;
    border-radius: 50%;
  }

  .roadmap:before {
    width: 24px;
    height: 24px;
    left: 0;
    top: 42px;
    background-color: var(--text);
    opacity: 0.12;
    z-index: 1;
  }

  .roadmap:after {
    width: 10px;
    height: 10px;
    left: 7px;
    top: 49px;
    background-color: var(--text);
    z-index: 2;
  }

  .roadmap.active:before,
  .roadmap.active:after {
    background: var(--primary);
  }

  .roadmap.active:after {
    width: 16px;
    height: 16px;
    left: 4px;
    top: 46px;
  }

  .roadmap.active .roadmap__list li:before {
    background: var(--primary);
  }

  .roadmap.red.active:before,
  .roadmap.red.active:after {
    background: var(--tertiary);
  }

  .roadmap.red.active .roadmap__list li:before {
    background: var(--tertiary);
  }

  .roadmap.blue.active:before,
  .roadmap.blue.active:after {
    background: var(--blue);
  }

  .roadmap.blue.active .roadmap__list li:before {
    background: var(--blue);
  }

  .roadmap.green.active:before,
  .roadmap.green.active:after {
    background: var(--secondary);
  }

  .roadmap.green.active .roadmap__list li:before {
    background: var(--secondary);
  }

  .roadmap.purple.active:before,
  .roadmap.purple.active:after {
    background: var(--purple);
  }

  .roadmap.purple.active .roadmap__list li:before {
    background: var(--purple);
  }

.roadmap__title {
  font-size: 20px;
  line-height: 30px;
  color: var(--text);
  font-weight: 500;
  display: block;
  margin-bottom: 50px;
  margin-left: 10px;
}

.roadmap__list {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: calc(100% - 10px);
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
  margin-left: 10px;
}

  .roadmap__list li {
    color: var(--highlight);
    font-size: var(--sec-size);
    line-height: 26px;
    font-weight: 400;
    margin-bottom: 12px;
    padding-left: 16px;
    position: relative;
  }

    .roadmap__list li:last-child {
      margin-bottom: 0;
    }

    .roadmap__list li:before {
      content: '';
      position: absolute;
      width: 4px;
      height: 4px;
      background-color: var(--text);
      opacity: 1;
      top: 11px;
      left: 0;
      border-radius: 50%;
    }

@media (min-width: 768px) {
  .roadmap:before {
    top: 47px;
  }

  .roadmap:after {
    top: 54px;
  }

  .roadmap.active:before {
    top: 47px;
  }

  .roadmap.active:after {
    top: 51px;
  }

  .roadmap__title {
    margin-bottom: 60px;
  }

  .roadmap__list li {
    margin-bottom: 15px;
  }

    .roadmap__list li:last-child {
      margin-bottom: 0;
    }
}
/*==============================
	Partners
==============================*/
.partner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 20px;
  background-color: var(--dark-light);
  border-radius: 8px;
  height: 120px;
  position: relative;
}

  .partner img {
    max-width: 100%;
    display: block;
    transition: 0.4s ease;
    transition-property: transform, opacity;
    transform: scale(1);
    opacity: 1;
  }

  .partner p {
    position: absolute;
    transition: 0.4s ease;
    transition-property: transform, opacity;
    transform: scale(0.8);
    opacity: 0;
    font-size: 18px;
    line-height: 32px;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 0;
  }

  .partner:hover img {
    opacity: 0;
    transform: scale(0.8);
  }

  .partner:hover p {
    opacity: 1;
    transform: scale(1);
  }
/*==============================
	Paginator
==============================*/
.paginator-mob {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: 32px;
}

.paginator-mob--comments {
  margin-top: 24px;
}

.paginator-mob__pages {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 36px;
  width: auto;
  padding: 0 16px;
  color: var(--highlight);
  border-radius: 18px;
  background-color: var(--dark-light);
  font-size: 12px;
}

.paginator-mob__nav {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}

  .paginator-mob__nav li {
    margin-right: 16px;
  }

    .paginator-mob__nav li:first-child a {
      padding-left: 8px;
    }

      .paginator-mob__nav li:first-child a span {
        margin-left: 2px;
      }

    .paginator-mob__nav li:last-child {
      margin-right: 0;
    }

      .paginator-mob__nav li:last-child a {
        padding-right: 8px;
      }

        .paginator-mob__nav li:last-child a span {
          margin-right: 2px;
        }

  .paginator-mob__nav a {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 36px;
    width: auto;
    padding: 0 16px;
    color: var(--text);
    text-align: center;
    border-radius: 18px;
    background-color: var(--dark-light);
  }

    .paginator-mob__nav a span {
      font-size: 12px;
      font-weight: 500;
      text-transform: uppercase;
    }

    .paginator-mob__nav a svg {
      width: 20px;
      height: 20px;
      stroke: var(--text);
    }

@media (min-width: 768px) {
  .paginator-mob {
    display: none;
  }
}

.paginator {
  display: none;
}

@media (min-width: 768px) {
  .paginator {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 40px;
  }

  .paginator--comments {
    margin-top: 30px;
  }

  .paginator__item {
    margin-right: 16px;
  }

    .paginator__item a,
    .paginator__item span {
      display: flex;
      flex-direction: row;
      justify-content: center;
      align-items: center;
      font-size: var(--size);
      font-weight: 500;
      height: 46px;
      width: 46px;
      color: var(--text);
      text-align: center;
      border-radius: 24px;
      background-color: var(--dark-light);
    }

    .paginator__item span {
      cursor: default;
    }

    .paginator__item:last-child {
      margin-right: 0;
    }

    .paginator__item:hover a {
      color: var(--primary);
    }

      .paginator__item:hover a svg {
        stroke: var(--primary);
      }

  .paginator__item--prev svg,
  .paginator__item--next svg {
    width: 20px;
    height: 20px;
    stroke: var(--text);
  }

  .paginator__item--prev svg {
    padding-right: 1px;
  }

  .paginator__item--next svg {
    padding-left: 1px;
  }

  .paginator__item--active a {
    color: var(--primary);
    cursor: default;
    font-weight: 600;
  }
}
/*==============================
	Grid
==============================*/
.grid {
  display: grid;
  gap: 16px;
  width: 100%;
  position: relative;
}

.grid--catalog {
  grid-template-columns: repeat(2, 1fr);
}

.grid--earning,
.grid--news {
  grid-template-columns: repeat(1, 1fr);
}

.grid--more {
  margin-top: 16px;
}

.grid--how {
  margin-top: 24px;
}

.grid--compare {
  margin-top: 24px;
  margin-bottom: 24px;
  grid-template-columns: repeat(2, 1fr);
}

  .grid--compare .how {
    padding: 18px 12px;
  }

  .grid--compare img, .grid--compare video {
    position: relative;
    z-index: 2;
    margin: 0 !important;
  }

.grid--feature {
  margin-top: 24px;
}

.grid--mt0 {
  margin-top: 0;
}

@media (min-width: 576px) {
  .grid--catalog {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 768px) {
  .grid--catalog {
    grid-template-columns: repeat(4, 1fr);
  }

  .grid--earning,
  .grid--news,
  .grid--feature {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .grid--catalog {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media (min-width: 1400px) {
  .grid--catalog {
    grid-template-columns: repeat(6, 1fr);
  }

  .grid--earning {
    grid-template-columns: repeat(4, 1fr);
  }

  .grid--news {
    grid-template-columns: repeat(3, 1fr);
  }

  .grid--how {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1900px) {
  .grid--catalog {
    grid-template-columns: repeat(7, 1fr);
  }

  .grid--feature {
    grid-template-columns: repeat(4, 1fr);
  }
}
/*==============================
	Post
==============================*/
.post {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  min-height: 260px;
  border-radius: 16px;
  padding: 20px;
  position: relative;
  background-color: var(--text);
  overflow: hidden;
}

.post--bg {
  background-color: #000;
}

  .post--bg .post__title {
    color: var(--text);
  }

  .post--bg .post__text {
    color: var(--text);
  }

  .post--bg .post__tag {
    border-color: var(--text);
  }

    .post--bg .post__tag span {
      color: var(--text);
    }

    .post--bg .post__tag:hover {
      background-color: var(--text);
      border-color: var(--text);
    }

      .post--bg .post__tag:hover span {
        color: var(--dark);
      }

  .post--bg .post__arrow {
    border-color: var(--text);
  }

    .post--bg .post__arrow svg {
      stroke: var(--text);
    }

.post--clouds {
  background-color: var(--light);
}

  .post--clouds .post__title {
    color: var(--blue);
  }

  .post--clouds .post__text {
    color: #2a3a4f;
  }

  .post--clouds .post__tag {
    border-color: #2a3a4f;
  }

    .post--clouds .post__tag span {
      color: #2a3a4f;
    }

    .post--clouds .post__tag:hover {
      border-color: var(--blue);
    }

      .post--clouds .post__tag:hover span {
        color: var(--blue);
      }

  .post--clouds .post__arrow {
    border-color: #2a3a4f;
  }

    .post--clouds .post__arrow svg {
      stroke: #2a3a4f;
    }

.post--pink {
  background-color: var(--medium);
}

  .post--pink .post__title {
    color: var(--tertiary);
  }

  .post--pink .post__text {
    color: #684040;
  }

  .post--pink .post__tag {
    border-color: #684040;
  }

    .post--pink .post__tag span {
      color: #684040;
    }

    .post--pink .post__tag:hover {
      border-color: var(--tertiary);
    }

      .post--pink .post__tag:hover span {
        color: var(--tertiary);
      }

  .post--pink .post__arrow {
    border-color: #684040;
  }

    .post--pink .post__arrow svg {
      stroke: #684040;
    }

.post__bg {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

  .post__bg img, .post__bg video {
    height: 100%;
    width: 100%;
    inset: 0;
    object-fit: cover;
    transition: opacity 0.4s ease;
    opacity: 1;
    position: relative;
    z-index: 1;
  }

  .post__bg:before {
    content: '';
    position: absolute;
    z-index: 2;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0,0,0,0.55);
  }

.post__link {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
}

.post__head {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  z-index: 2;
  width: 100%;
  margin-bottom: 24px;
}

.post__title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  font-size: 26px;
  line-height: 36px;
  color: var(--dark);
  font-weight: 500;
  margin-bottom: 10px;
  width: 100%;
}

  .post__title:last-child {
    margin-bottom: 0;
  }

.post__text {
  font-size: var(--sec-size);
  line-height: 24px;
  color: var(--text-dark);
  margin-bottom: 16px;
}

  .post__text:last-child {
    margin-bottom: 0;
  }

.post__tags {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  width: auto;
  max-width: calc(100% - 50px);
  gap: 8px;
  position: relative;
  z-index: 4;
}

.post__tag {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: auto;
  height: 40px;
  padding: 0 16px;
  position: relative;
  border-radius: 20px;
  border: 1px solid var(--text-dark);
  transition: 0.6s ease;
  transition-property: color, background, background-color, border-color, box-shadow, opacity;
}

  .post__tag span {
    font-size: var(--size);
    font-weight: 400;
    color: var(--text-dark);
    white-space: nowrap;
    transition: color 0.6s ease;
  }

  .post__tag:hover {
    border-color: var(--dark);
  }

    .post__tag:hover span {
      color: var(--dark);
    }

.post__arrow {
  position: absolute;
  z-index: 2;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--text-dark);
  transition: 0.4s ease;
  transition-property: border-color, background-color;
}

  .post__arrow svg {
    width: 24px;
    height: 24px;
    stroke: var(--text-dark);
    transition: transform 0.4s ease, stroke 0.4s ease;
  }

@media (min-width: 768px) {
  .post {
    min-height: 360px;
  }

  .post__title {
    font-size: 30px;
    line-height: 42px;
  }
}

@media (min-width: 992px) {
  .post {
    padding: 32px;
  }

  .post__text {
    padding-right: 25%;
  }

  .post__arrow {
    right: 32px;
    bottom: 32px;
  }
}

@media (min-width: 1200px) {
  .post:hover .post__arrow {
    background-color: var(--dark);
    border-color: var(--dark);
  }

    .post:hover .post__arrow svg {
      transform: rotate(-45deg);
      stroke: var(--text);
    }

  .post--bg:hover .post__arrow {
    background-color: var(--text);
    border-color: var(--text);
  }

    .post--bg:hover .post__arrow svg {
      stroke: var(--dark);
    }

  .post--clouds:hover .post__arrow {
    background-color: var(--blue);
    border-color: var(--blue);
  }

    .post--clouds:hover .post__arrow svg {
      stroke: var(--text);
    }

  .post--pink:hover .post__arrow {
    background-color: var(--tertiary);
    border-color: var(--tertiary);
  }

    .post--pink:hover .post__arrow svg {
      stroke: var(--text);
    }
}
/*==============================
	Article
==============================*/
.article {
  display: block;
  position: relative;
  width: 100%;
}

.article__tags {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  width: 100%;
  gap: 8px;
}

.article__tag {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: auto;
  height: 40px;
  padding: 0 16px;
  position: relative;
  border-radius: 20px;
  border: 1px solid var(--light);
}

  .article__tag span {
    font-size: var(--size);
    font-weight: 400;
    color: var(--light);
    white-space: nowrap;
    transition: color 0.4s ease;
  }

  .article__tag:hover {
    background-color: var(--light);
    border-color: var(--light);
  }

    .article__tag:hover span {
      color: var(--dark);
    }

.article__date {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  font-size: var(--size);
  line-height: 24px;
  font-weight: 400;
  color: var(--medium);
}

  .article__date svg {
    width: 20px;
    height: 20px;
    margin-right: 4px;
    stroke: var(--medium);
  }

.article__views {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  font-size: var(--size);
  line-height: 24px;
  font-weight: 400;
  color: var(--medium);
}

  .article__views svg {
    width: 20px;
    height: 20px;
    margin-right: 4px;
    stroke: var(--medium);
  }

.article__meta {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  gap: 20px 24px;
  margin-bottom: 24px;
}

.article__content {
  position: relative;
}

  .article__content .plyr {
    width: 100%;
    margin-bottom: 24px;
  }

    .article__content .plyr:last-child {
      margin-bottom: 0;
    }

  .article__content img {
    display: block;
    width: 100%;
    height: auto;
    margin-bottom: 24px;
    border-radius: 16px;
  }

  .article__content iframe {
    display: block;
    width: 100%;
    min-height: 240px;
    margin-bottom: 24px;
    border-radius: 16px;
    border: none;
  }

  .article__content h1,
  .article__content h2,
  .article__content h3,
  .article__content h4,
  .article__content h5,
  .article__content h6 {
    font-weight: 400;
    color: var(--text);
    margin-bottom: 16px;
  }

    .article__content h1:last-child,
    .article__content h2:last-child,
    .article__content h3:last-child,
    .article__content h4:last-child,
    .article__content h5:last-child,
    .article__content h6:last-child {
      margin-bottom: 0;
    }

  .article__content h1 {
    font-size: 30px;
    line-height: 42px;
  }

  .article__content h2 {
    font-size: 28px;
    line-height: 40px;
  }

  .article__content h3 {
    font-size: 24px;
    line-height: 36px;
  }

  .article__content h4 {
    font-size: 22px;
    line-height: 32px;
  }

  .article__content h5 {
    font-size: 18px;
    line-height: 28px;
  }

  .article__content h6 {
    font-size: var(--sec-size);
    line-height: 26px;
  }

  .article__content p {
    display: block;
    font-size: var(--sec-size);
    line-height: 24px;
    font-weight: 400;
    color: var(--highlight);
    margin-bottom: 24px;
  }

    .article__content p b,
    .article__content p strong {
      color: var(--text);
      font-weight: 500;
    }

    .article__content p a {
      color: var(--primary);
      text-decoration: underline;
    }

      .article__content p a:hover,
      .article__content p a:focus {
        color: var(--primary);
        text-decoration: none;
      }

    .article__content p:last-child {
      margin-bottom: 0;
    }

  .article__content blockquote {
    display: block;
    position: relative;
    padding: 0 0 0 24px;
    font-size: var(--sec-size);
    line-height: 24px;
    color: var(--text);
    font-weight: 400;
    margin-bottom: 24px;
    font-style: italic;
  }

    .article__content blockquote:before {
      content: '';
      position: absolute;
      display: block;
      top: 2px;
      bottom: 2px;
      left: 0;
      width: 4px;
      background-color: var(--primary);
      border-radius: 2px;
    }

    .article__content blockquote:last-child {
      margin-bottom: 0;
    }

  .article__content ul {
    margin-bottom: 20px;
    display: block;
  }

    .article__content ul li {
      font-size: var(--sec-size);
      line-height: 24px;
      font-weight: 400;
      color: var(--highlight);
      padding-left: 24px;
      position: relative;
      margin-bottom: 4px;
    }

      .article__content ul li b,
      .article__content ul li strong {
        color: var(--text);
        font-weight: 500;
      }

      .article__content ul li:last-child {
        margin-bottom: 0;
      }

      .article__content ul li:before {
        content: '';
        position: absolute;
        display: block;
        width: 4px;
        height: 4px;
        border-radius: 50%;
        background-color: var(--primary);
        left: 0;
        top: 50%;
        margin-top: -2px;
      }

    .article__content ul:last-child {
      margin-bottom: 0;
    }

@media (min-width: 768px) {
  .article__content h1 {
    font-size: 36px;
    line-height: 46px;
  }

  .article__content h2 {
    font-size: 32px;
    line-height: 42px;
  }

  .article__content h3 {
    font-size: 28px;
    line-height: 40px;
  }

  .article__content h4 {
    font-size: 24px;
    line-height: 36px;
  }

  .article__content h5 {
    font-size: 22px;
    line-height: 32px;
  }

  .article__content h6 {
    font-size: 18px;
    line-height: 28px;
  }

  .article__content iframe {
    min-height: 380px;
  }

  .article__meta {
    margin-bottom: 32px;
    justify-content: flex-end;
  }

  .article__tags {
    width: auto;
    margin-right: auto;
  }
}
/*==============================
	Share
==============================*/
.share {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 24px;
  gap: 16px;
}

.share__link {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: auto;
  height: 40px;
  padding: 0 16px 0 12px;
  position: relative;
  border-radius: 20px;
  border: 1px solid var(--light);
  background-color: var(--light);
}

  .share__link span {
    font-size: var(--size);
    font-weight: 500;
    color: var(--dark);
    white-space: nowrap;
    transition: color 0.4s ease;
  }

  .share__link svg {
    width: 20px;
    height: 20px;
    margin-right: 4px;
    stroke: var(--dark);
  }

  .share__link:hover {
    background-color: var(--medium);
    border-color: var(--medium);
  }

    .share__link:hover span {
      color: var(--dark);
    }

    .share__link:hover svg {
      stroke: var(--dark);
    }

.share__link--fb:hover {
  border-color: #3b5998;
  background-color: #3b5998;
}

  .share__link--fb:hover span {
    color: var(--text);
  }

  .share__link--fb:hover svg {
    stroke: var(--text);
  }

.share__link--tw:hover {
  border-color: #000;
  background-color: #000;
}

  .share__link--tw:hover span {
    color: var(--text);
  }

  .share__link--tw:hover svg {
    stroke: var(--text);
  }

@media (min-width: 768px) {
  .share {
    margin-top: 32px;
  }
}
/*==============================
	Subscribe
==============================*/
.subscribe {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 24px;
  gap: 16px;
  background-color: var(--dark-light);
  border-radius: 16px;
  padding: 20px;
}

.subscribe__title {
  font-size: var(--size);
  line-height: 24px;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 0;
}

.subscribe__social {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  width: auto;
  gap: 16px;
}

  .subscribe__social a {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
    position: relative;
  }

    .subscribe__social a svg {
      width: 24px;
      height: 24px;
      stroke: var(--text-dark);
    }

    .subscribe__social a:last-child {
      margin-right: 0;
    }

    .subscribe__social a:hover svg {
      stroke: var(--primary);
    }

@media (min-width: 768px) {
  .subscribe {
    margin-top: 32px;
    padding: 20px 30px;
  }
}
/*==============================
	Filter
==============================*/
.filter {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 24px;
}

.filter--mt {
  margin-top: 16px;
}

.filter--sticky {
  position: sticky;
  z-index: 97;
  top: 94px;
  padding: 0 12px;
  background-color: var(--dark);
}

  .filter--sticky:before,
  .filter--sticky:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 24px;
    background-color: var(--dark);
  }

  .filter--sticky:before {
    bottom: 100%;
  }

  .filter--sticky:after {
    top: 100%;
    background: linear-gradient(180deg, var(--dark) 0%, rgba(var(--dark-rgba),0) 100%);
  }

.filter__search {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  position: relative;
}

  .filter__search input {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 40px;
    background-color: var(--dark-light);
    padding: 0 44px;
    border-radius: 20px;
    border: none;
    font-size: var(--size);
    color: var(--text);
  }

    .filter__search input:focus + svg {
      stroke: var(--primary);
    }

  .filter__search svg {
    position: absolute;
    z-index: 2;
    top: 10px;
    left: 16px;
    width: 20px;
    height: 20px;
    stroke: var(--highlight);
  }

  .filter__search:hover input + svg {
    stroke: var(--primary);
  }

.filter__search-clear {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: 20px;
  height: 20px;
  z-index: 2;
  top: 10px;
  right: 16px;
  transition: opacity 0.4s ease;
  opacity: 0;
}

  .filter__search-clear svg {
    position: relative;
    top: auto;
    left: auto;
    stroke: var(--highlight);
    width: 16px;
    height: 16px;
  }

  .filter__search-clear:hover svg {
    stroke: var(--tertiary);
  }

  .filter__search-clear.active {
    opacity: 1;
  }

.filter__dropdown {
  position: relative;
  width: 40px;
  margin-left: 16px;
  flex-shrink: 0;
}

.filter__dropdown--checkboxes .filter__dropdown-menu {
  min-width: 220px;
}

.filter__btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--dark-light);
  border: none;
}

  .filter__btn.show .filter__btn-icon svg {
    stroke: var(--primary);
  }

.filter__btn-icon {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

  .filter__btn-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--highlight);
  }

.filter__btn-name,
.filter__btn-arrow {
  display: none;
}

.filter__btn-counter {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background-color: var(--primary);
  color: var(--text);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 500;
  position: absolute;
  top: -4px;
  right: -4px;
}

  .filter__btn-counter:empty {
    display: none;
  }

.filter__btn-mask {
  display: none;
}

.filter__dropdown-menu {
  border-radius: 16px;
  width: 100%;
  min-width: 180px;
  padding: 16px;
  border: 1px solid var(--dark-light);
  background: var(--dark);
  box-shadow: none;
  overflow: hidden;
}

.filter__dropdown-list {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-height: 252px;
  overflow-y: auto;
  padding-right: 8px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--dark-light);
  margin-bottom: 8px;
}

  .filter__dropdown-list:last-child {
    padding-bottom: 0;
    border-bottom: none;
    margin-bottom: 0;
  }

  .filter__dropdown-list::-webkit-scrollbar {
    width: 4px;
    height: 4px;
  }

  .filter__dropdown-list::-webkit-scrollbar-button {
    display: none;
  }

  .filter__dropdown-list::-webkit-scrollbar-thumb {
    background: rgba(var(--primary-rgba),0.4);
    outline: 0 solid var(--text);
    border-radius: 4px;
  }

    .filter__dropdown-list::-webkit-scrollbar-thumb:hover {
      background: var(--primary);
    }

  .filter__dropdown-list::-webkit-scrollbar-track {
    background: var(--dark-light);
    border-radius: 4px;
  }

  .filter__dropdown-list li {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 16px;
    cursor: pointer;
  }

    .filter__dropdown-list li:last-child {
      margin-bottom: 0;
    }

    .filter__dropdown-list li:hover span {
      color: var(--primary);
    }

    .filter__dropdown-list li.active span {
      color: var(--primary);
    }

  .filter__dropdown-list span {
    font-size: var(--size);
    line-height: 24px;
    font-weight: 500;
    color: var(--text);
    transition: color 0.4s ease;
  }

.filter__dropdown-checkboxes {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  position: relative;
  height: auto;
  max-height: 224px;
  padding-right: 8px;
  overflow-y: auto;
}

  .filter__dropdown-checkboxes::-webkit-scrollbar {
    width: 4px;
    height: 4px;
  }

  .filter__dropdown-checkboxes::-webkit-scrollbar-button {
    display: none;
  }

  .filter__dropdown-checkboxes::-webkit-scrollbar-thumb {
    background: rgba(var(--primary-rgba),0.4);
    outline: 0 solid var(--text);
    border-radius: 4px;
  }

    .filter__dropdown-checkboxes::-webkit-scrollbar-thumb:hover {
      background: var(--primary);
    }

  .filter__dropdown-checkboxes::-webkit-scrollbar-track {
    background: var(--dark-light);
    border-radius: 4px;
  }

  .filter__dropdown-checkboxes li {
    position: relative;
    display: block;
    width: 100%;
    text-align: left;
    margin-bottom: 16px;
    overflow: hidden;
    flex-shrink: 0;
  }

    .filter__dropdown-checkboxes li:last-child {
      margin-bottom: 0;
    }

    .filter__dropdown-checkboxes li input:not(:checked),
    .filter__dropdown-checkboxes li input:checked {
      position: absolute;
      left: -9999px;
    }

      .filter__dropdown-checkboxes li input:not(:checked) + label,
      .filter__dropdown-checkboxes li input:checked + label {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        position: relative;
        font-size: var(--size);
        line-height: 24px;
        height: 24px;
        color: var(--highlight);
        font-weight: 500;
        cursor: pointer;
        padding-left: 28px;
        margin: 0;
        transition: color 0.4s ease;
      }

        .filter__dropdown-checkboxes li input:not(:checked) + label span,
        .filter__dropdown-checkboxes li input:checked + label span {
          font-size: 10px;
          line-height: 20px;
          font-weight: 700;
          color: var(--highlight);
          background-color: var(--dark-light);
          padding: 0 8px;
          border-radius: 10px;
          margin-left: 8px;
        }

        .filter__dropdown-checkboxes li input:not(:checked) + label:hover,
        .filter__dropdown-checkboxes li input:checked + label:hover {
          color: var(--text);
        }

      .filter__dropdown-checkboxes li input:checked + label {
        color: var(--text);
      }

        .filter__dropdown-checkboxes li input:not(:checked) + label:before,
        .filter__dropdown-checkboxes li input:checked + label:before {
          content: '';
          position: absolute;
          left: 0;
          top: 2px;
          width: 20px;
          height: 20px;
          border: 1px solid rgba(var(--primary-rgba),0.2);
          background-color: rgba(var(--primary-rgba),0.15);
          border-radius: 50%;
        }

        .filter__dropdown-checkboxes li input:not(:checked) + label:after,
        .filter__dropdown-checkboxes li input:checked + label:after {
          content: '';
          position: absolute;
          left: 4px;
          top: 6px;
          width: 12px;
          height: 12px;
          transition: 0.4s ease;
          background-color: var(--primary);
          border-radius: 50%;
        }

      .filter__dropdown-checkboxes li input:not(:checked) + label:after {
        opacity: 0;
        transform: scale(0);
      }

      .filter__dropdown-checkboxes li input:checked + label:after {
        opacity: 1;
        transform: scale(1);
      }

    .filter__dropdown-checkboxes li label::-moz-selection {
      background: transparent;
      color: var(--text);
    }

    .filter__dropdown-checkboxes li label::selection {
      background: transparent;
      color: var(--text);
    }

.filter__dropdown-clear {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  border-radius: 8px;
  font-size: 12px;
  line-height: 20px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--text);
  padding-bottom: 8px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--dark-light);
}

  .filter__dropdown-clear:hover {
    color: var(--primary);
  }

@media (min-width: 576px) {
  .filter--sticky {
    padding-left: calc(((100vw - 516px) / 2) - 4px);
    padding-right: calc(((100vw - 516px) / 2) - 4px);
  }
}

@media (min-width: 768px) {
  .filter {
    margin-bottom: 32px;
  }

  .filter--sticky {
    top: 104px;
    padding-left: calc(((100vw - 696px) / 2) - 4px);
    padding-right: calc(((100vw - 696px) / 2) - 4px);
  }

  .filter__search input {
    height: 46px;
    border-radius: 24px;
  }

  .filter__search svg {
    top: 13px;
  }

  .filter__search-clear {
    top: 13px;
  }

    .filter__search-clear svg {
      top: auto;
    }

  .filter__dropdown {
    width: auto;
  }

  .filter__dropdown--checkboxes .filter__btn {
    min-width: 220px;
  }

  .filter__btn {
    width: auto;
    min-width: 180px;
    height: 46px;
    padding: 0 16px;
    border-radius: 24px;
  }

    .filter__btn:hover .filter__btn-arrow svg,
    .filter__btn.show .filter__btn-arrow svg {
      stroke: var(--primary);
    }

    .filter__btn.active .filter__btn-name {
      display: none;
    }

    .filter__btn.active .filter__btn-mask {
      display: flex;
    }

  .filter__btn-icon {
    display: none;
  }

  .filter__btn-name {
    display: block;
    font-size: var(--size);
    line-height: 20px;
    font-weight: 500;
    color: var(--text);
    margin-right: 8px;
  }

  .filter__btn-arrow {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-left: auto;
  }

    .filter__btn-arrow svg {
      width: 16px;
      height: 16px;
      stroke: var(--highlight);
    }

  .filter__btn-mask {
    display: none;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    font-size: var(--size);
    line-height: 20px;
    color: var(--text);
    margin-right: 8px;
    padding-left: 28px;
  }

  .filter__btn-clear {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
    background-color: transparent;
    margin-left: 8px;
  }

    .filter__btn-clear svg {
      width: 16px;
      height: 16px;
      stroke: var(--highlight);
    }

    .filter__btn-clear:hover svg {
      stroke: var(--tertiary);
    }

  .filter__btn-counter {
    top: 13px;
    right: auto;
    left: 16px;
  }
}

@media (min-width: 992px) {
  .filter--sticky {
    padding-left: calc(((100vw - 936px) / 2) - 4px);
    padding-right: calc(((100vw - 936px) / 2) - 4px);
  }
}

@media (min-width: 1200px) {
  .filter--sticky {
    top: 24px;
    padding-left: 12px;
    padding-right: 12px;
  }
}

@media (min-width: 1900px) {
  .filter--sticky {
    padding-left: calc((100% - 1320px) / 2);
    padding-right: calc((100% - 1320px) / 2);
  }
}
/*==============================
	How
==============================*/
.how {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding: 32px;
  border-radius: 16px;
  position: relative;
  height: auto;
  min-height: 100%;
}

  .how:before,
  .how:after {
    content: '';
    position: absolute;
    background-color: var(--dark-light);
    z-index: 1;
  }

  .how:before {
    top: 0;
    left: 64px;
    right: 0;
    bottom: 0;
    border-radius: 16px 16px 16px 0;
  }

  .how:after {
    top: 48px;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: 16px 0 16px 16px;
  }

.how__number {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 64px;
  height: 48px;
  border-radius: 0 0 16px 0;
}

  .how__number span {
    position: relative;
    z-index: 3;
    font-size: 32px;
    font-weight: 600;
    color: var(--primary);
  }

  .how__number:before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 32px;
    height: 32px;
    background-color: var(--dark-light);
    z-index: 1;
  }

  .how__number:after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 32px;
    height: 32px;
    background-color: var(--dark);
    border-radius: 0 0 16px 0;
    z-index: 2;
  }

.how__title {
  position: relative;
  z-index: 2;
  font-size: 24px;
  line-height: 32px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 16px;
  text-align: center;
  padding: 0 32px;
  width: 100%;
}

.how__text {
  position: relative;
  z-index: 2;
  color: var(--highlight);
  font-size: var(--sec-size);
  line-height: 24px;
  width: 100%;
  margin-bottom: 0;
  text-align: center;
}

  .how__text b {
    font-weight: 600;
  }

  .how__text a {
    color: var(--primary);
  }

    .how__text a:hover {
      color: var(--primary);
      text-decoration: underline;
    }

.how--green .how__number span {
  color: var(--secondary);
}

.how--tertiary .how__number span {
  color: var(--tertiary);
}

.how--blue .how__number span {
  color: var(--blue);
}

.how--purple .how__number span {
  color: var(--purple);
}

@media (min-width: 768px) {
  .how {
    padding: 48px 32px;
  }

  .how__title {
    font-size: 30px;
    line-height: 42px;
  }

  .how__text {
    max-width: 420px;
    font-size: 18px;
    line-height: 30px;
  }
}

@media (min-width: 1400px) {
  .how__title {
    font-size: 24px;
    line-height: 32px;
  }

  .how__text {
    font-size: var(--sec-size);
    line-height: 24px;
  }
}
/*==============================
	Feature
==============================*/
.feature {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  padding: 32px;
  background-color: var(--dark-light);
  border-radius: 16px;
  position: relative;
  height: auto;
  min-height: 100%;
  overflow: hidden;
}

  .feature:before {
    content: '';
    position: absolute;
    z-index: 1;
    display: block;
    top: 1px;
    left: 32px;
    width: 48px;
    height: 2px;
    background-color: var(--primary);
    border-radius: 2px;
    box-shadow: 0 32px 72px rgba(252,228,143,0.6), 0 16px 40px rgba(var(--primary-rgba),0.6), 0 8px 24px rgba(252,228,143,0.5), 0 12px 24px rgba(var(--primary-rgba),0.6), 0 4px 12px rgba(252,228,143,0.3), 0 2px 6px rgba(var(--primary-rgba),0.2);
    opacity: 0.8;
  }

.feature__icon {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: 48px;
  height: 48px;
  background-color: rgba(0,0,0,0.12);
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 8px;
  top: 32px;
  left: 32px;
  z-index: 3;
}

  .feature__icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary);
  }

.feature__title {
  color: var(--text);
  display: block;
  font-size: 18px;
  font-weight: 500;
  line-height: 32px;
  text-transform: uppercase;
  padding-left: 64px;
  margin-bottom: 16px;
  padding-top: 8px;
  min-height: 48px;
}

.feature__text {
  display: block;
  color: var(--highlight);
  font-size: var(--sec-size);
  line-height: 24px;
  width: 100%;
  margin-bottom: 0;
}

  .feature__text a {
    color: var(--primary);
  }

    .feature__text a:hover {
      color: var(--primary);
      text-decoration: underline;
    }

.feature--green:before {
  background-color: var(--secondary);
  box-shadow: 0 32px 72px rgba(252,228,143,0.6), 0 16px 40px rgba(var(--secondary-rgba),0.6), 0 8px 24px rgba(252,228,143,0.5), 0 12px 24px rgba(var(--secondary-rgba),0.6), 0 4px 12px rgba(252,228,143,0.3), 0 2px 6px rgba(var(--secondary-rgba),0.2);
}

.feature--green .feature__icon svg {
  stroke: var(--secondary);
}

.feature--tertiary:before {
  background-color: var(--tertiary);
  box-shadow: 0 32px 72px rgba(252,228,143,0.6), 0 16px 40px rgba(var(--tertiary-rgba),0.6), 0 8px 24px rgba(252,228,143,0.5), 0 12px 24px rgba(var(--tertiary-rgba),0.6), 0 4px 12px rgba(252,228,143,0.3), 0 2px 6px rgba(var(--tertiary-rgba),0.2);
}

.feature--tertiary .feature__icon svg {
  stroke: var(--tertiary);
}

.feature--blue:before {
  background-color: var(--blue);
  box-shadow: 0 32px 72px rgba(252,228,143,0.6), 0 16px 40px rgba(var(--blue-rgba),0.6), 0 8px 24px rgba(252,228,143,0.5), 0 12px 24px rgba(var(--blue-rgba),0.6), 0 4px 12px rgba(252,228,143,0.3), 0 2px 6px rgba(var(--blue-rgba),0.2);
}

.feature--blue .feature__icon svg {
  stroke: var(--blue);
}

.feature--purple:before {
  background-color: var(--purple);
  box-shadow: 0 32px 72px rgba(252,228,143,0.6), 0 16px 40px rgba(var(--purple-rgba),0.6), 0 8px 24px rgba(252,228,143,0.5), 0 12px 24px rgba(var(--purple-rgba),0.6), 0 4px 12px rgba(252,228,143,0.3), 0 2px 6px rgba(var(--purple-rgba),0.2);
}

.feature--purple .feature__icon svg {
  stroke: var(--purple);
}
/*==============================
	Affiliate
==============================*/
.affiliate {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  padding: 32px 32px 16px;
  background-color: var(--dark-light);
  border-radius: 16px;
  margin-top: 16px;
  position: relative;
}

.affiliate__icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 32px;
  left: 32px;
}

  .affiliate__icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--primary);
  }

.affiliate__title {
  font-size: 24px;
  line-height: 32px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 10px;
  padding-left: 46px;
}

.affiliate__text {
  color: var(--highlight);
  font-size: var(--size);
  line-height: 24px;
  width: 100%;
  margin-bottom: 0;
}

  .affiliate__text b {
    font-weight: 500;
  }

  .affiliate__text a {
    color: var(--primary);
  }

    .affiliate__text a:hover {
      color: var(--primary);
      text-decoration: underline;
    }

.affiliate__table {
  position: relative;
  display: block;
  width: 100%;
  margin-top: 24px;
}

.affiliate--yellow .affiliate__icon svg {
  stroke: #ffc312;
}

.affiliate--yellow .xtable__text b {
  color: #ffc312;
}

.affiliate--green .affiliate__icon svg {
  stroke: var(--secondary);
}

.affiliate--green .xtable__text b {
  color: var(--secondary);
}

.affiliate--blue .affiliate__icon svg {
  stroke: var(--blue);
}

.affiliate--blue .xtable__text b {
  color: var(--blue);
}

.affiliate--purple .affiliate__icon svg {
  stroke: var(--purple);
}

.affiliate--purple .xtable__text b {
  color: var(--purple);
}

@media (min-width: 768px) {
  .affiliate {
    padding: 32px 32px 12px;
  }

  .affiliate__icon {
    top: 32px;
    left: 32px;
  }

  .affiliate__table {
    margin-top: 32px;
  }
}
/*==============================
	Dialog
==============================*/
.dialog {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  background: var(--dark-light);
  border-radius: 16px;
  padding: 20px;
}

.dialog__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  background-color: var(--dark);
  border-radius: 12px;
  padding: 20px 16px;
  height: auto;
  max-height: 360px;
  overflow-y: scroll;
}

  .dialog__content::-webkit-scrollbar {
    width: 4px;
    height: 4px;
  }

  .dialog__content::-webkit-scrollbar-button {
    display: none;
  }

  .dialog__content::-webkit-scrollbar-thumb {
    background: rgba(var(--primary-rgba),0.4);
    outline: 0 solid var(--text);
    border-radius: 4px;
  }

    .dialog__content::-webkit-scrollbar-thumb:hover {
      background: var(--primary);
    }

  .dialog__content::-webkit-scrollbar-track {
    background: var(--dark);
    border-radius: 4px;
  }

.dialog__item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  width: 100%;
  margin-bottom: 20px;
  padding: 20px 16px 16px;
  border-radius: 8px;
  border: 2px solid transparent;
}

  .dialog__item:before {
    content: '';
    position: absolute;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 24px;
    width: auto;
    padding: 0 10px;
    left: 16px;
    top: -12px;
    font-size: 12px;
    font-weight: 500;
    color: var(--dark);
    border-radius: 12px;
  }

  .dialog__item:last-child {
    margin-bottom: 0;
  }

.dialog__item--customer {
  border-color: var(--medium);
}

  .dialog__item--customer:before {
    content: 'You';
    background-color: var(--medium);
  }

.dialog__item--support {
  border-color: var(--light);
}

  .dialog__item--support:before {
    content: 'Support';
    background-color: var(--light);
  }

.dialog__massage p {
  font-size: var(--size);
  line-height: 24px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 15px;
}

  .dialog__massage p:last-child {
    margin-bottom: 0;
  }

.dialog__cellar {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
}

.dialog__time {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin-top: 15px;
  width: auto;
  font-size: 12px;
  line-height: 24px;
  color: var(--highlight);
  order: 2;
}

  .dialog__time svg {
    width: 16px;
    height: 16px;
    margin-right: 4px;
    stroke: var(--highlight);
  }

.dialog__attachment {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin-top: 15px;
  width: auto;
  font-size: var(--size);
  line-height: 24px;
  color: var(--text);
  order: 1;
}

  .dialog__attachment svg {
    width: 16px;
    height: 16px;
    margin-right: 4px;
    stroke: var(--light);
  }

  .dialog__attachment:hover svg {
    stroke: var(--primary);
  }

.dialog__form {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  background-color: var(--dark);
  border-radius: 12px;
  margin-top: 20px;
  padding: 20px 16px 30px;
}

@media (min-width: 768px) {
  .dialog__content {
    max-height: 420px;
  }

  .dialog__cellar {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .dialog__time {
    order: 1;
  }

  .dialog__attachment {
    order: 2;
  }
}

@media (min-width: 1200px) {
  .dialog {
    flex-direction: row;
    gap: 16px;
  }

  .dialog__content {
    width: 50%;
    min-height: 100%;
    max-height: 440px;
  }

  .dialog__form {
    width: 50%;
    margin-top: 0;
  }
}
/*==============================
	Breadcrumbs
==============================*/
.breadcrumbs {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin-top: 10px;
}

.breadcrumbs__item {
  font-size: var(--size);
  line-height: 20px;
  font-weight: 500;
  color: var(--highlight);
  transition: 0.4s ease;
  position: relative;
  margin-right: 36px;
}

  .breadcrumbs__item:before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: url("../img/breadcrumb.svg") no-repeat center;
    background-size: 20px 20px;
    left: 100%;
    top: 0;
    margin-left: 8px;
  }

  .breadcrumbs__item:hover {
    color: var(--highlight);
  }

.breadcrumbs__item--active {
  cursor: default;
  margin-right: 0;
}

  .breadcrumbs__item--active:before {
    display: none;
  }

  .breadcrumbs__item--active:hover {
    color: var(--highlight);
  }

.breadcrumbs a {
  color: var(--text);
}

  .breadcrumbs a:hover {
    color: var(--primary);
  }

.breadcrumbs--tablet {
  display: none;
}

@media (min-width: 768px) {
  .breadcrumbs {
    margin-top: 0;
  }

  .breadcrumbs--tablet {
    display: flex;
  }
}
/*==============================
	Accordion
==============================*/
.accordion--page {
  margin-top: -16px;
}

.accordion__card {
  background-color: var(--dark-light);
  border-radius: 16px;
  margin-top: 16px;
  border: none;
}

  .accordion__card button {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    width: 100%;
    min-height: 68px;
    padding: 16px 76px 16px 20px;
    color: var(--text);
    font-size: var(--sec-size);
    line-height: 30px;
    font-weight: 400;
    text-align: left;
  }

    .accordion__card button:before {
      content: '';
      display: flex;
      flex-direction: row;
      justify-content: center;
      align-items: center;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: url("../img/down.svg") no-repeat center;
      background-size: 20px 20px;
      background-color: var(--dark);
      position: absolute;
      top: 15px;
      right: 20px;
      transition: 0.4s ease;
      transition-property: opacity, transform;
      opacity: 1;
    }

    .accordion__card button:after {
      content: '';
      display: flex;
      flex-direction: row;
      justify-content: center;
      align-items: center;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: url("../img/down--hover.svg") no-repeat center;
      background-size: 20px 20px;
      background-color: var(--dark);
      position: absolute;
      top: 15px;
      right: 20px;
      transition: 0.4s ease;
      transition-property: opacity, transform;
      opacity: 0;
    }

    .accordion__card button:hover:after {
      opacity: 1;
    }

    .accordion__card button[aria-expanded="true"]:before {
      transform: rotate(180deg);
    }

    .accordion__card button[aria-expanded="true"]:after {
      transform: rotate(180deg);
      opacity: 1;
    }

  .accordion__card p, .accordion__card .accordion-body {
    padding: 0 20px 16px;
    color: var(--highlight);
    font-size: var(--sec-size);
    line-height: 34px;
    margin-bottom: 0;
  }

    .accordion__card p b, .accordion__card .accordion-body b,
    .accordion__card p strong, .accordion__card .accordion-body strong {
      font-weight: 700;
    }

    .accordion__card p:first-child, .accordion__card .accordion-body:first-child {
      border-top: 1px solid var(--dark);
      padding: 16px;
    }

@media (min-width: 768px) {
  .accordion__card button {
    padding: 16px 86px 16px 32px;
  }

    .accordion__card button:before,
    .accordion__card button:after {
      right: 32px;
    }

  .accordion__card p, .accordion__card .accordion-body {
    padding: 0 32px 16px;
  }

    .accordion__card p:first-child, .accordion__card .accordion-body:first-child {
      padding: 16px 32px;
    }
}
/*==============================
	Actor
==============================*/
.actor {
  position: relative;
  width: 100%;
  padding: 40px 4px 0;
}

  .actor .container {
    position: relative;
    z-index: 4;
  }

  .actor:before,
  .actor:after {
    content: '';
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    position: absolute;
    -webkit-transform: translateZ(0);
    -webkit-backface-visibility: hidden;
  }

  .actor:before {
    background-color: rgba(0,0,0,0.4);
    z-index: 2;
  }

  .actor:after {
    background: linear-gradient(180deg, rgba(var(--dark-rgba),0) 0%, var(--dark) 100%);
    z-index: 3;
  }

.actor__bg {
  position: absolute;
  z-index: 1;
  height: 100%;
  width: 100%;
  inset: 0;
  object-fit: cover;
}

.actor__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
}

.actor__photo {
  margin-top: 24px;
  border-radius: 8px;
  width: 100%;
  max-width: 200px;
}

.actor__meta {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-top: 16px;
}

  .actor__meta li {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: start;
    flex-wrap: wrap;
    width: 100%;
    font-size: var(--size);
    line-height: 24px;
    color: var(--text);
  }

    .actor__meta li:last-child {
      margin-bottom: 0;
    }

  .actor__meta span {
    margin-right: 10px;
    font-weight: 400;
  }

  .actor__meta a {
    font-size: var(--size);
    line-height: 24px;
    position: relative;
    color: var(--light);
    margin-right: 10px;
  }

    .actor__meta a:after {
      content: ',';
      position: absolute;
      display: block;
      left: 100%;
      top: 0;
      color: var(--light);
    }

    .actor__meta a:last-child {
      margin-right: 0;
    }

      .actor__meta a:last-child:after {
        display: none;
      }

    .actor__meta a:hover {
      color: var(--primary);
    }

@media (min-width: 768px) {
  .actor {
    padding: 48px 4px 0;
  }

  .actor__content {
    flex-direction: row;
    justify-content: flex-start;
    margin-top: 24px;
  }

  .actor__photo {
    margin-right: 24px;
    margin-top: 0;
  }

  .actor__meta {
    margin-top: 0;
  }
}

@media (min-width: 1200px) {
  .actor {
    padding: 56px 40px 0;
  }
}
/*==============================
	Movie
==============================*/
.movie {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 40px 4px 0;
}

  .movie .container {
    position: relative;
    z-index: 4;
  }

  .movie:before,
  .movie:after {
    content: '';
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    position: absolute;
    -webkit-transform: translateZ(0);
    -webkit-backface-visibility: hidden;
  }

  .movie:before {
    background-color: rgba(0,0,0,0.5);
    z-index: 2;
  }

  .movie:after {
    background: linear-gradient(180deg, rgba(var(--dark-rgba),0) 0%, var(--dark) 100%);
    z-index: 3;
  }

.movie__bg {
  position: absolute;
  z-index: 1;
  height: 100%;
  width: 100%;
  inset: 0;
  object-fit: cover;
}

.movie__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
}

.movie__player {
  position: relative;
  width: 100%;
  margin-top: 32px;
}

  .movie__player:first-child {
    margin-top: 0;
  }

.movie__player--stream:first-child {
  margin-top: 32px;
}

.movie__select {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  position: relative;
  z-index: 2;
  gap: 0 16px;
}

  .movie__select .sign__dropdown-btn {
    padding: 0 16px 0 20px;
  }

@media (min-width: 768px) {
  .movie {
    padding: 48px 4px 0;
  }

  .movie__select .sign__dropdown {
    width: auto;
  }

  .movie__select .sign__dropdown-btn {
    padding: 0 16px 0 24px;
  }
}

@media (min-width: 1200px) {
  .movie {
    padding: 56px 40px 0;
  }
}
/*==============================
	Stats
==============================*/
.stats {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  margin-top: 16px;
  padding: 20px;
  border-radius: 16px;
  background-color: var(--dark-light);
  width: 100%;
}

  .stats span {
    font-size: 18px;
    line-height: 30px;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 12px;
  }

  .stats p {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    width: auto;
    font-size: var(--sec-size);
    line-height: 24px;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 0;
  }

    .stats p.green {
      color: var(--secondary);
    }

    .stats p.red {
      color: var(--tertiary);
    }

    .stats p img {
      width: 24px;
      height: 24px;
      border-radius: 50%;
      margin-right: 8px;
    }

    .stats p b {
      color: var(--highlight);
      font-weight: 400;
      font-size: 12px;
      margin-left: 4px;
    }

      .stats p b.green {
        color: var(--secondary);
      }

      .stats p b.red {
        color: var(--tertiary);
      }

    .stats p sub {
      display: flex;
      flex-direction: row;
      justify-content: center;
      align-items: center;
      height: 20px;
      padding: 0 8px;
      border-radius: 12px;
      color: var(--highlight);
      font-weight: 400;
      font-size: 12px;
      line-height: 20px;
      margin-left: 8px;
      bottom: -1px;
    }

      .stats p sub.green {
        font-weight: 600;
        color: var(--secondary);
        background-color: rgba(var(--secondary-rgba),0.1);
        border: 1px solid rgba(var(--secondary-rgba),0.1);
      }

      .stats p sub.red {
        font-weight: 600;
        color: var(--tertiary);
        background-color: rgba(var(--tertiary-rgba),0.1);
        border: 1px solid rgba(var(--tertiary-rgba),0.2);
      }

    .stats p a {
      color: var(--text);
    }

      .stats p a:hover {
        color: var(--primary);
      }

  .stats svg {
    position: absolute;
    width: 24px;
    height: 24px;
    top: 23px;
    right: 20px;
    stroke: var(--primary);
  }

@media (min-width: 768px) {
  .stats {
    padding: 20px 30px;
  }

    .stats svg {
      right: 30px;
    }
}
/*==============================
	Dashbox
==============================*/
.dashbox {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  background-color: var(--dark-light);
  margin-top: 16px;
  border-radius: 16px;
  overflow: hidden;
}

.dashbox__title {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px;
  border-bottom: 1px solid var(--dark);
}

  .dashbox__title h3 {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    color: var(--text);
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 0;
  }

    .dashbox__title h3 svg {
      width: 20px;
      height: 20px;
      margin-right: 8px;
      stroke: var(--primary);
    }

.dashbox__wrap {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}

.dashbox__more {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: auto;
  height: 30px;
  background-color: var(--light);
  padding: 0 12px;
  border-radius: 16px;
  margin-left: 15px;
  position: relative;
  overflow: hidden;
}

  .dashbox__more span {
    position: relative;
    z-index: 2;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--dark);
    transition: color 0.4s ease;
  }

.dashbox__refresh {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
}

  .dashbox__refresh svg {
    width: 20px;
    height: 20px;
    stroke: var(--highlight);
  }

  .dashbox__refresh:hover svg {
    stroke: var(--primary);
  }

.dashbox__table-wrap {
  position: relative;
  display: block;
  width: 100%;
  padding: 20px 20px 10px;
}

@media (min-width: 768px) {
  .dashbox__title {
    padding: 20px 30px;
  }

  .dashbox__table-wrap {
    padding: 20px 30px 10px;
  }

  .dashbox__more:before {
    content: '';
    position: absolute;
    z-index: 1;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    margin: -5px 0 0 -5px;
    background-color: var(--primary);
    transition: 0.4s ease;
    transition-property: transform, opacity;
    transform: scale(1);
    opacity: 0;
    transform-origin: center;
    will-change: transform;
    pointer-events: none;
  }

  .dashbox__more:hover:before {
    opacity: 1;
    transform: scale(8);
  }

  .dashbox__more:hover span {
    color: var(--text);
  }
}
/*==============================
	Verification
==============================*/
.verification {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  width: 100%;
  background-color: var(--dark-light);
  border-radius: 16px;
  padding: 20px 20px 10px 60px;
  margin-top: 16px;
}

.verification__icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 23px;
  left: 20px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--dark);
}

  .verification__icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--secondary);
    opacity: 0;
  }

.verification__head {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
}

.verification__title {
  font-size: 18px;
  line-height: 30px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 10px;
  margin-right: 16px;
}

.verification__status {
  font-size: var(--size);
  line-height: 30px;
  color: var(--text);
  background-color: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 0 8px;
  border-radius: 8px;
  margin-bottom: 10px;
}

.verification__text {
  font-size: var(--size);
  line-height: 24px;
  font-weight: 400;
  color: var(--highlight);
  margin-bottom: 10px;
}

.verification__btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 48px;
  width: 160px;
  border-radius: 24px;
  background-color: var(--light);
  margin-top: 10px;
  margin-right: 16px;
  margin-bottom: 10px;
  position: relative;
  overflow: hidden;
}

  .verification__btn:last-child {
    margin-right: 0;
  }

  .verification__btn:before {
    content: '';
    position: absolute;
    z-index: 1;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    margin: -10px 0 0 -10px;
    background-color: var(--primary);
    transition: 0.4s ease;
    transition-property: transform, opacity;
    transform: scale(1);
    opacity: 0;
    transform-origin: center;
    will-change: transform;
    pointer-events: none;
  }

  .verification__btn span {
    position: relative;
    z-index: 2;
    font-size: var(--size);
    line-height: 20px;
    font-weight: 500;
    color: var(--dark);
    text-transform: uppercase;
    transition: color 0.4s ease;
  }

  .verification__btn:hover:before {
    opacity: 1;
    transform: scale(8.2);
  }

  .verification__btn:hover span {
    color: var(--text);
  }

.verification--done .verification__icon {
  background-color: transparent;
  border: none;
}

  .verification--done .verification__icon svg {
    opacity: 1;
  }

.verification--done .verification__status {
  color: var(--secondary);
  background-color: rgba(var(--secondary-rgba),0.1);
  border-color: rgba(var(--secondary-rgba),0.1);
}

.verification--requested .verification__status {
  color: var(--tertiary);
  background-color: rgba(var(--tertiary-rgba),0.1);
  border-color: rgba(var(--tertiary-rgba),0.2);
}

@media (min-width: 768px) {
  .verification {
    padding: 32px 32px 22px 70px;
  }

  .verification__icon {
    top: 35px;
    left: 32px;
  }

  .verification__btn {
    position: absolute;
    top: 50%;
    right: 32px;
    transform: translateY(-50%);
    margin: 0;
  }
}
/*==============================
	Comments
==============================*/
.comments {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-top: 16px;
}

.comments__author {
  display: block;
  position: relative;
  margin-bottom: 8px;
  padding-left: 20px;
}

.comments__name {
  display: block;
  font-size: var(--size);
  color: var(--text);
  line-height: 24px;
  font-weight: 400;
}

.comments__time {
  display: block;
  font-size: 12px;
  color: var(--highlight);
  line-height: 24px;
  font-weight: 400;
}

.comments__text {
  display: block;
  margin: 0;
  color: var(--text);
  font-size: var(--size);
  line-height: 24px;
  background-color: var(--dark-light);
  padding: 16px;
  position: relative;
  border-top: 1px solid var(--dark-light);
  border-left: 1px solid var(--dark-light);
  border-right: 1px solid var(--dark-light);
  border-radius: 16px 16px 0 0;
}

  .comments__text span {
    display: block;
    background-color: var(--dark);
    margin-bottom: 16px;
    padding: 16px;
    position: relative;
    min-height: 56px;
    border-radius: 8px;
    color: var(--highlight);
  }

.comments__item {
  margin-bottom: 16px;
  display: block;
}

.comments__item--answer,
.comments__item--quote {
  margin-left: 24px;
}

.comments__item:last-child {
  margin-bottom: 0;
}

.comments__actions {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  background-color: var(--dark-light);
  padding: 0 16px 16px;
  position: relative;
  border-radius: 0 0 16px 16px;
}

  .comments__actions button,
  .comments__actions a {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    font-size: 12px;
    color: var(--highlight);
    margin-right: 16px;
    height: 30px;
    text-transform: uppercase;
    font-weight: 500;
  }

    .comments__actions button svg,
    .comments__actions a svg {
      width: 16px;
      height: 16px;
      margin-right: 4px;
      stroke: var(--highlight);
    }

    .comments__actions button:hover,
    .comments__actions a:hover {
      color: var(--primary);
    }

      .comments__actions button:hover svg,
      .comments__actions a:hover svg {
        stroke: var(--primary);
      }

    .comments__actions button:last-child,
    .comments__actions a:last-child {
      margin-right: 0;
    }

.comments__rate {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  position: absolute;
  left: 16px;
  top: 0;
}

  .comments__rate button,
  .comments__rate a {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    color: var(--highlight);
    font-size: var(--size);
    font-weight: 500;
    margin-right: 16px;
    position: relative;
    height: 30px;
    background-color: var(--dark);
    padding: 0 16px;
    border-radius: 16px;
  }

    .comments__rate button svg,
    .comments__rate a svg {
      width: 20px;
      height: 20px;
      opacity: 0.8;
      transition: opacity 0.4s ease;
    }

    .comments__rate button:last-child,
    .comments__rate a:last-child {
      padding: 0 8px 0 16px;
      margin-right: 0;
    }

      .comments__rate button:last-child svg,
      .comments__rate a:last-child svg {
        margin-left: 6px;
        margin-top: 2px;
        stroke: var(--tertiary);
      }

    .comments__rate button:first-child,
    .comments__rate a:first-child {
      padding: 0 16px 0 12px;
    }

      .comments__rate button:first-child svg,
      .comments__rate a:first-child svg {
        margin-right: 4px;
        margin-top: -1px;
        stroke: var(--secondary);
      }

    .comments__rate button:hover,
    .comments__rate a:hover {
      color: var(--text);
    }

      .comments__rate button:hover svg,
      .comments__rate a:hover svg {
        opacity: 1;
      }

@media (min-width: 768px) {
  .comments__author {
    padding-left: 30px;
  }

  .comments__text {
    padding: 24px 30px;
  }

  .comments__actions {
    padding: 0 30px 24px;
  }

  .comments__rate {
    left: 30px;
  }

  .comments__item--answer,
  .comments__item--quote {
    margin-left: 32px;
  }
}
/*==============================
	Reviews
==============================*/
.reviews {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-top: 16px;
}

.reviews__author {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  position: relative;
  z-index: 3;
  padding: 0 20px 16px;
  background-color: var(--dark);
}

  .reviews__author:before {
    content: '';
    position: absolute;
    background: transparent;
    border-radius: 0 16px 0 0;
    width: 32px;
    height: 32px;
    top: 100%;
    right: 0;
    box-shadow: 10px -10px 1px var(--dark);
  }

  .reviews__author:after {
    content: '';
    position: absolute;
    background: transparent;
    border-radius: 16px 0 0 0;
    width: 32px;
    height: 32px;
    top: 100%;
    left: 0;
    box-shadow: -10px -10px 1px var(--dark);
  }

.reviews__name {
  display: block;
  font-size: var(--sec-size);
  color: var(--text);
  line-height: 24px;
  font-weight: 400;
}

.reviews__time {
  display: block;
  font-size: 12px;
  color: var(--highlight);
  font-weight: 400;
  line-height: 24px;
}

.reviews__text {
  display: block;
  margin: 0;
  color: var(--text);
  font-size: var(--size);
  line-height: 24px;
  position: relative;
  z-index: 2;
  padding: 16px 88px 16px 20px;
  text-shadow: 1px 1px 4px rgba(var(--dark-rgba),0.5);
  min-height: 96px;
}

.reviews__item {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  width: 100%;
  border-radius: 16px;
  background-color: var(--dark-light);
}

  .reviews__item:after {
    content: '';
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: 16px;
    opacity: 0;
    transition: opacity 0.4s ease;
  }

  .reviews__item:last-child {
    margin-bottom: 0;
  }

.reviews__item--gold {
  background: linear-gradient(-45deg, rgba(255,215,0,0.64), rgba(255,165,0,0.64), rgba(255,204,0,0.64));
}

  .reviews__item--gold:after {
    background-color: #ffa500;
  }

.reviews__item--silver {
  background: linear-gradient(-45deg, rgba(192,192,192,0.64), rgba(168,168,168,0.64), rgba(208,208,208,0.64));
}

  .reviews__item--silver:after {
    background-color: #a8a8a8;
  }

.reviews__item--bronze {
  background: linear-gradient(-45deg, rgba(205,127,50,0.64), rgba(184,115,51,0.64), rgba(193,154,107,0.64));
}

  .reviews__item--bronze:after {
    background-color: #b87333;
  }

.reviews__item:hover:after {
  opacity: 0.3;
}

.reviews__rating {
  font-size: 40px;
  font-weight: 900;
  line-height: 48px;
  color: var(--dark);
  text-align: center;
  position: absolute;
  z-index: 3;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 72px;
  height: 48px;
  top: 100%;
  right: 8px;
  margin-top: 16px;
}

.reviews__rating--gold {
  background: linear-gradient(45deg, #ffd700, #ffa500, #fc0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.reviews__rating--silver {
  background: linear-gradient(45deg, #c0c0c0, #a8a8a8, #d0d0d0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.reviews__rating--bronze {
  background: linear-gradient(45deg, #cd7f32, #b87333, #c19a6b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (min-width: 768px) {
  .reviews__text {
    padding: 24px 88px 24px 30px;
  }

  .reviews__author {
    padding: 0 30px 16px;
  }

  .reviews__rating {
    margin-top: 24px;
  }
}
/*==============================
	Rating
==============================*/
.rating {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 0;
  background-color: var(--dark-light);
  height: 46px;
  border-radius: 24px;
  overflow: hidden;
  padding: 0 16px;
}

  .rating > label {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 10%;
    height: 46px;
  }

  .rating:not(:checked) > input {
    display: none;
  }

  .rating:not(:checked) > label {
    cursor: pointer;
    font-size: 30px;
  }

    .rating:not(:checked) > label > svg {
      stroke: rgba(var(--highlight-rgba),0.5);
      width: 24px;
      height: 24px;
    }

  .rating > input:checked ~ label > svg {
    stroke: var(--text);
  }

  .rating:not(:checked) > label:hover ~ label > svg,
  .rating:not(:checked) > label:hover > svg {
    stroke: var(--text);
  }

  .rating #star5:hover ~ label > svg,
  .rating #star5:hover > svg {
    stroke: #b87333 !important;
  }

  .rating #star6:hover ~ label > svg,
  .rating #star6:hover > svg {
    stroke: #b87333 !important;
  }

  .rating #star7:hover ~ label > svg,
  .rating #star7:hover > svg {
    stroke: #a8a8a8 !important;
  }

  .rating #star8:hover ~ label > svg,
  .rating #star8:hover > svg {
    stroke: #a8a8a8 !important;
  }

  .rating #star9:hover ~ label > svg,
  .rating #star9:hover > svg {
    stroke: #ffa500 !important;
  }

  .rating #star10:hover ~ label > svg,
  .rating #star10:hover > svg {
    stroke: #ffa500 !important;
  }

  .rating #star5:checked ~ label > svg {
    stroke: #b87333;
  }

  .rating #star6:checked ~ label > svg {
    stroke: #b87333;
  }

  .rating #star7:checked ~ label > svg {
    stroke: #a8a8a8;
  }

  .rating #star8:checked ~ label > svg {
    stroke: #a8a8a8;
  }

  .rating #star9:checked ~ label > svg {
    stroke: #ffa500;
  }

  .rating #star10:checked ~ label > svg {
    stroke: #ffa500;
  }

@media (min-width: 768px) {
  .rating:not(:checked) > label > svg {
    width: 28px;
    height: 28px;
  }
}
/*==============================
	Chat
==============================*/
.xchat {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  width: 100%;
  background: var(--dark-light);
  border-radius: 16px;
  padding: 8px;
  margin-top: 16px;
}

.xchat__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  height: 245px;
  position: relative;
  overflow: hidden;
  background-color: var(--dark);
  border-radius: 8px 8px 0 0;
}

.xchat__messages {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  position: relative;
  padding: 16px 16px 0;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: scroll;
  word-break: break-word;
  overflow-anchor: none;
  overscroll-behavior: contain;
}

  .xchat__messages::-webkit-scrollbar {
    width: 4px;
    height: 4px;
  }

  .xchat__messages::-webkit-scrollbar-button {
    display: none;
  }

  .xchat__messages::-webkit-scrollbar-thumb {
    background: rgba(var(--primary-rgba),0.4);
    outline: 0 solid var(--text);
    border-radius: 4px;
  }

    .xchat__messages::-webkit-scrollbar-thumb:hover {
      background: var(--primary);
    }

  .xchat__messages::-webkit-scrollbar-track {
    background: var(--dark);
    border-radius: 4px;
  }

.xchat__message {
  width: 100%;
  margin-bottom: 15px;
}

  .xchat__message button {
    display: inline;
    margin-right: 4px;
    color: var(--primary);
  }

  .xchat__message p {
    font-size: var(--size);
    line-height: 24px;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 15px;
  }

    .xchat__message p:last-child {
      margin-bottom: 0;
    }

  .xchat__message:nth-child(n) button {
    color: var(--primary);
  }

  .xchat__message:nth-child(2n) button {
    color: var(--secondary);
  }

  .xchat__message:nth-child(3n) button {
    color: var(--tertiary);
  }

  .xchat__message:nth-child(4n) button {
    color: var(--blue);
  }

  .xchat__message:nth-child(4n) button {
    color: var(--purple);
  }

  .xchat__message:nth-child(5n) button {
    color: #72f2eb;
  }

  .xchat__message:nth-child(6n) button {
    color: #dc2d4e;
  }

  .xchat__message:nth-child(7n) button {
    color: #05aff2;
  }

  .xchat__message:nth-child(8n) button {
    color: #ff2b91;
  }

.xchat__cellar {
  width: 100%;
  height: 137px;
  padding: 16px 16px;
  position: relative;
  background-color: var(--dark);
  border-radius: 0 0 8px 8px;
  border-top: 1px solid var(--dark-light);
}

.xchat__form {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
}

  .xchat__form .sign__group {
    margin-top: 0;
  }

.xchat__actions {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: 16px;
}

.xchat__online {
  position: relative;
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  padding-left: 20px;
  font-size: var(--size);
  line-height: 24px;
  color: var(--text);
}

  .xchat__online:before,
  .xchat__online:after {
    content: '';
    position: absolute;
    display: block;
    border-radius: 50%;
    pointer-events: none;
  }

  .xchat__online:before {
    width: 16px;
    height: 16px;
    background-color: rgba(var(--secondary-rgba),0.24);
    top: 4px;
    left: 0;
    z-index: 1;
    opacity: 0.24;
    transition: opacity 0.4s ease;
    will-change: opacity;
    animation: onlineDot 2s linear infinite;
  }

  .xchat__online:after {
    width: 8px;
    height: 8px;
    top: 8px;
    left: 4px;
    background-color: var(--secondary);
    z-index: 2;
    opacity: 0.8;
  }

.xchat__manual {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-color: transparent;
  margin-right: 8px;
  margin-left: auto;
}

  .xchat__manual svg {
    width: 20px;
    height: 20px;
    stroke: var(--highlight);
  }

  .xchat__manual:hover svg {
    stroke: var(--primary);
  }

.xchat__send {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 46px;
  width: 100px;
  border-radius: 24px;
  background-color: var(--light);
  position: relative;
  overflow: hidden;
}

  .xchat__send:before {
    content: '';
    position: absolute;
    z-index: 1;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    margin: -10px 0 0 -10px;
    background-color: var(--primary);
    transition: 0.4s ease;
    transition-property: transform, opacity;
    transform: scale(1);
    opacity: 0;
    transform-origin: center;
    will-change: transform;
    pointer-events: none;
  }

  .xchat__send span {
    position: relative;
    z-index: 2;
    font-size: var(--size);
    line-height: 20px;
    font-weight: 500;
    color: var(--dark);
    text-transform: uppercase;
    transition: color 0.4s ease;
  }

  .xchat__send:hover:before {
    opacity: 1;
    transform: scale(5.2);
  }

  .xchat__send:hover span {
    color: var(--text);
  }

@media (min-width: 768px) {
  .xchat {
    padding: 16px;
  }
}

@media (min-width: 1400px) {
  .xchat {
    margin-top: 32px;
    height: calc(100% - 32px);
    justify-content: flex-end;
  }

  .xchat__content {
    position: absolute;
    top: 16px;
    left: 16px;
    width: calc(100% - 32px);
    height: calc(100% - 169px);
  }
}
/*==============================
	Footer
==============================*/
.footer {
  background-color: var(--dark);
  border-top: 1px solid var(--dark-light);
  padding: 40px 4px 0;
  width: 100%;
  margin-top: 40px;
}

.footer__tagline {
  display: block;
  font-size: var(--size);
  line-height: 22px;
  color: var(--highlight);
  margin-bottom: 0;
}

.footer__social {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  width: 100%;
}

  .footer__social a {
    margin-top: 20px;
    margin-right: 16px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
    position: relative;
  }

    .footer__social a svg {
      width: 24px;
      height: 24px;
      stroke: var(--text-dark);
    }

    .footer__social a:last-child {
      margin-right: 0;
    }

    .footer__social a:hover svg {
      stroke: var(--primary);
    }

.footer__content {
  position: relative;
  margin-top: 30px;
  border-top: 1px solid var(--dark-light);
  padding-bottom: 20px;
}

.footer__copyright {
  display: block;
  font-size: 12px;
  color: var(--highlight);
  margin-top: 20px;
  font-weight: 400;
}

  .footer__copyright a {
    color: var(--highlight);
  }

    .footer__copyright a:hover {
      color: var(--primary);
    }

.footer__title {
  display: block;
  font-size: var(--sec-size);
  line-height: 26px;
  color: var(--text);
  font-weight: 400;
  margin-bottom: 15px;
}

.footer__nav {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 30px;
}

  .footer__nav a {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    width: auto;
    font-size: var(--size);
    line-height: 24px;
    margin-bottom: 10px;
    color: var(--highlight);
    font-weight: 400;
  }

    .footer__nav a svg {
      width: 20px;
      height: 20px;
      margin-right: 8px;
      stroke: var(--highlight);
    }

    .footer__nav a:last-child {
      margin-bottom: 0;
    }

    .footer__nav a:hover {
      color: var(--primary);
    }

    .footer__nav a.green {
      text-transform: uppercase;
    }

      .footer__nav a.green svg {
        stroke: var(--secondary);
      }

      .footer__nav a.green:hover {
        color: var(--secondary);
      }

    .footer__nav a.red {
      text-transform: uppercase;
    }

      .footer__nav a.red svg {
        stroke: var(--tertiary);
      }

      .footer__nav a.red:hover {
        color: var(--tertiary);
      }

    .footer__nav a.blue {
      text-transform: uppercase;
    }

      .footer__nav a.blue svg {
        stroke: var(--blue);
      }

      .footer__nav a.blue:hover {
        color: var(--blue);
      }

    .footer__nav a.purple {
      text-transform: uppercase;
    }

      .footer__nav a.purple svg {
        stroke: var(--purple);
      }

      .footer__nav a.purple:hover {
        color: var(--purple);
      }

.footer__lang {
  position: relative;
  margin-top: 20px;
}

.footer__lang-btn {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}

  .footer__lang-btn img {
    width: 20px;
    height: auto;
    margin-right: 8px;
    border-radius: 4px;
  }

  .footer__lang-btn span {
    color: var(--highlight);
    font-size: var(--size);
    line-height: 20px;
    font-weight: 400;
    transition: color 0.4s ease;
  }

  .footer__lang-btn svg {
    width: 12px;
    height: 12px;
    stroke: var(--highlight);
    margin-left: 2px;
    margin-top: 2px;
    transition: 0.4s ease;
  }

  .footer__lang-btn:hover span {
    color: var(--primary);
  }

  .footer__lang-btn:hover svg {
    stroke: var(--primary);
  }

  .footer__lang-btn[aria-expanded="true"] span {
    color: var(--primary);
  }

  .footer__lang-btn[aria-expanded="true"] svg {
    stroke: var(--primary);
    transform: rotate(180deg);
  }

.footer__lang-dropdown {
  position: absolute;
  background-color: var(--dark-light);
  padding: 15px 20px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  min-width: 140px;
  border-radius: 8px;
  border: none;
}

  .footer__lang-dropdown li {
    margin-bottom: 15px;
    width: 100%;
  }

    .footer__lang-dropdown li:last-child {
      margin-bottom: 0;
    }

  .footer__lang-dropdown a {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    font-size: var(--size);
    line-height: 24px;
    color: var(--text);
    font-weight: 400;
  }

    .footer__lang-dropdown a img {
      width: 20px;
      height: auto;
      margin-right: 8px;
      border-radius: 4px;
    }

    .footer__lang-dropdown a:hover {
      color: var(--primary);
    }

  .footer__lang-dropdown.show {
    display: flex;
  }

.footer__btns {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: 10px;
}

.footer__btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 156px;
  height: 46px;
  border-radius: 24px;
  font-size: var(--size);
  font-weight: 500;
  color: var(--dark);
  background-color: var(--light);
  text-transform: uppercase;
  margin-right: 20px;
  margin-bottom: 20px;
}

  .footer__btn svg {
    width: 24px;
    height: 24px;
    margin-right: 8px;
    stroke: var(--dark);
  }

  .footer__btn:last-child {
    margin-right: 0;
  }

.footer__btn--app:hover {
  background-color: #11bbfa;
}

.footer__btn--play:hover {
  background-color: #4889f4;
}

@media (min-width: 768px) {
  .footer {
    padding: 48px 4px 0;
    margin-top: 48px;
  }

  .footer__content {
    margin-top: 18px;
    padding: 0;
    height: 80px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  .footer__social {
    width: auto;
    order: 2;
  }

    .footer__social a {
      margin-top: 0;
    }

  .footer__copyright {
    margin-top: 0;
    order: 1;
  }

  .footer__lang {
    margin-bottom: 30px;
  }
}

@media (min-width: 1200px) {
  .footer {
    padding: 56px 40px 0;
    margin-top: 56px;
  }

  .footer__lang {
    margin-bottom: 0;
  }

  .footer__content {
    margin-top: 56px;
  }
}
/*==============================
	Botbar
==============================*/
.botbar {
  position: fixed;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  top: auto;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  padding: 0 8px;
  overflow: hidden;
  z-index: 101;
  background-color: var(--dark);
  border-top: 1px solid var(--dark-light);
}

.botbar__btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  width: 64px;
  height: auto;
}

  .botbar__btn svg {
    width: 20px;
    height: 20px;
    stroke: var(--highlight);
  }

  .botbar__btn span {
    margin-top: 8px;
    font-size: 12px;
    line-height: 100%;
    font-weight: 500;
    text-align: center;
    color: var(--text);
    width: 100%;
  }

  .botbar__btn.active svg {
    stroke: var(--primary);
  }

@media (min-width: 576px) {
  .botbar {
    padding-left: calc((100vw - 516px) / 2);
    padding-right: calc((100vw - 516px) / 2);
  }
}

@media (min-width: 768px) {
  .botbar {
    display: none;
  }
}
/*==============================
	Multisearch
==============================*/
.multisearch {
  position: fixed;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  top: 70px;
  left: 0;
  bottom: 60px;
  background-color: var(--dark);
  z-index: 98;
  width: 100vw;
  transform: translate3d(-100vw, 0, 0);
  transition: transform 0.4s ease;
}

.multisearch__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  background-color: var(--dark);
}

.multisearch__form {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 70px;
  padding: 0 16px;
  border-bottom: 1px solid var(--dark-light);
}

.multisearch__dropdown {
  position: relative;
  width: 130px;
  flex-shrink: 0;
  margin-right: 8px;
}

.multisearch__dropdown-btn {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 46px;
  border-radius: 24px;
  background-color: var(--dark-light);
  padding: 0 16px;
  font-size: var(--size);
  color: var(--text);
}

  .multisearch__dropdown-btn svg {
    width: 14px;
    height: 14px;
    stroke: var(--highlight);
    margin-left: auto;
  }

  .multisearch__dropdown-btn:hover svg,
  .multisearch__dropdown-btn.show svg {
    stroke: var(--primary);
  }

.multisearch__dropdown-menu {
  border-radius: 16px;
  width: 100%;
  min-width: 100%;
  padding: 16px;
  border: 1px solid var(--dark-light);
  background: var(--dark);
  box-shadow: none;
  overflow: hidden;
}

.multisearch__dropdown-list {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-height: 252px;
  overflow-y: auto;
  padding-right: 8px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--dark-light);
  margin-bottom: 8px;
}

  .multisearch__dropdown-list:last-child {
    padding-bottom: 0;
    border-bottom: none;
    margin-bottom: 0;
  }

  .multisearch__dropdown-list::-webkit-scrollbar {
    width: 4px;
    height: 4px;
  }

  .multisearch__dropdown-list::-webkit-scrollbar-button {
    display: none;
  }

  .multisearch__dropdown-list::-webkit-scrollbar-thumb {
    background: rgba(var(--primary-rgba),0.4);
    outline: 0 solid var(--text);
    border-radius: 4px;
  }

    .multisearch__dropdown-list::-webkit-scrollbar-thumb:hover {
      background: var(--primary);
    }

  .multisearch__dropdown-list::-webkit-scrollbar-track {
    background: var(--dark-light);
    border-radius: 4px;
  }

  .multisearch__dropdown-list li {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 16px;
    cursor: pointer;
  }

    .multisearch__dropdown-list li:last-child {
      margin-bottom: 0;
    }

    .multisearch__dropdown-list li:hover span {
      color: var(--primary);
    }

    .multisearch__dropdown-list li.active {
      display: none;
    }

  .multisearch__dropdown-list span {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    font-size: var(--size);
    line-height: 20px;
    color: var(--text);
    transition: color 0.4s ease;
  }

    .multisearch__dropdown-list span img,
    .multisearch__dropdown-list span svg {
      width: 20px;
      height: 20px;
      margin-right: 8px;
    }

.multisearch__input {
  position: relative;
  width: 100%;
  height: 46px;
  background-color: var(--dark-light);
  padding: 0 16px;
  border-radius: 24px;
  border: none;
  font-size: var(--size);
  color: var(--text);
}

.multisearch__close {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 46px;
  flex-shrink: 0;
  margin-left: 8px;
}

  .multisearch__close svg {
    width: 20px;
    height: 20px;
    stroke: var(--highlight);
  }

  .multisearch__close:hover svg {
    stroke: var(--tertiary);
  }

.multisearch__tags {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 70px;
  padding: 0 16px;
  border-bottom: 1px solid var(--dark-light);
  overflow-x: auto;
  overflow-y: hidden;
}

  .multisearch__tags::-webkit-scrollbar {
    width: 4px;
    height: 4px;
  }

  .multisearch__tags::-webkit-scrollbar-button {
    display: none;
  }

  .multisearch__tags::-webkit-scrollbar-thumb {
    background: rgba(var(--primary-rgba),0.4);
    outline: 0 solid var(--text);
    border-radius: 0;
  }

    .multisearch__tags::-webkit-scrollbar-thumb:hover {
      background: var(--primary);
    }

  .multisearch__tags::-webkit-scrollbar-track {
    background: var(--tf-border);
    border-radius: 0;
  }

.multisearch__tag {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: auto;
  height: 40px;
  padding: 0 16px;
  margin-right: 8px;
  position: relative;
}

  .multisearch__tag:before {
    content: '';
    position: absolute;
    z-index: 2;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(255,255,255,0.01);
    border: 1px solid rgba(255,255,255,0.03);
    backdrop-filter: blur(16px);
    border-radius: 20px;
  }

  .multisearch__tag:after {
    content: '';
    position: absolute;
    z-index: 1;
    top: 18px;
    bottom: 18px;
    left: 16px;
    right: 16px;
    background-color: var(--primary);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease;
  }

  .multisearch__tag span {
    position: relative;
    z-index: 3;
    font-size: var(--size);
    font-weight: 400;
    color: var(--highlight);
    white-space: nowrap;
    transition: color 0.4s ease;
  }

  .multisearch__tag:last-child {
    margin-right: 0;
  }

  .multisearch__tag:hover span {
    color: var(--primary);
  }

  .multisearch__tag.active span {
    color: var(--primary);
  }

  .multisearch__tag.active:after {
    opacity: 0.8;
  }

.multisearch__results {
  width: 100%;
  max-height: calc(100% - 140px);
  overflow-y: auto;
  padding: 16px;
}

  .multisearch__results::-webkit-scrollbar {
    width: 4px;
    height: 4px;
  }

  .multisearch__results::-webkit-scrollbar-button {
    display: none;
  }

  .multisearch__results::-webkit-scrollbar-thumb {
    background: rgba(var(--primary-rgba),0.4);
    outline: 0 solid var(--text);
    border-radius: 0;
  }

    .multisearch__results::-webkit-scrollbar-thumb:hover {
      background: var(--primary);
    }

  .multisearch__results::-webkit-scrollbar-track {
    background: var(--tf-border);
    border-radius: 0;
  }

.multisearch--active {
  transform: translate3d(0, 0, 0);
}

@media (min-width: 576px) {
  .multisearch__form,
  .multisearch__tags,
  .multisearch__results {
    padding-left: calc((100vw - 516px) / 2);
    padding-right: calc((100vw - 516px) / 2);
  }
}

@media (min-width: 768px) {
  .multisearch {
    z-index: 100;
    transform: translate3d(0, 0, 0);
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0,0,0,0.7);
    width: auto;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.2s ease;
  }

  .multisearch__content {
    width: 696px;
    height: auto;
    border: 1px solid var(--dark-light);
    border-radius: 16px;
    transform: scale(0.9);
    transition: transform 0.6s ease;
    will-change: transform;
  }

  .multisearch__form,
  .multisearch__tags {
    padding-left: 16px;
    padding-right: 16px;
  }

  .multisearch__results {
    height: auto;
    max-height: 60vh;
    padding-left: 16px;
    padding-right: 16px;
  }

  .multisearch--active {
    visibility: visible;
    opacity: 1;
  }

    .multisearch--active .multisearch__content {
      transform: scale(1);
    }
}

@media (min-width: 1200px) {
  .multisearch__content {
    width: 1100px;
  }
}
/*==============================
	Sign
==============================*/
.sign {
  display: block;
  position: relative;
  width: 100%;
}

  .sign .container {
    position: relative;
    z-index: 2;
  }

.sign__content {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 100svh;
  padding: 40px 0;
}

.sign__form {
  background: var(--dark);
  border: 1px solid var(--dark-light);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 30px 20px;
  position: relative;
  width: 100%;
  max-width: 400px;
}

.sign__form--full {
  max-width: 100%;
  margin-top: 16px;
}

.sign__form--comments {
  max-width: 100%;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 16px;
  margin-top: 24px;
}

  .sign__form--comments .sign__group:first-child {
    margin-top: 0;
  }

.sign__form--reviews {
  max-width: 100%;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0 16px 24px;
  margin-top: 24px;
}

.sign__form--bg {
  background: var(--dark-light);
}

.sign__logo {
  display: block;
  margin-bottom: 10px;
}

  .sign__logo a {
    max-width: 100%;
    width: auto;
  }

  .sign__logo img {
    width: auto;
    height: 24px;
    display: block;
  }

.sign__title {
  display: block;
  width: 100%;
  position: relative;
  font-size: 20px;
  line-height: 24px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0;
}

.sign__title--center {
  text-align: center;
}

.sign__label {
  font-size: var(--size);
  line-height: 100%;
  font-weight: 400;
  height: 14px;
  color: var(--highlight);
  width: 100%;
  margin-bottom: 10px;
  padding-left: 16px;
  display: inline-block;
}

  .sign__label b {
    color: var(--tertiary);
    font-weight: 500;
  }

.sign__label--pl {
  padding-left: 0;
}

.sign__label--max {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}

  .sign__label--max b {
    margin-left: 4px;
  }

  .sign__label--max span {
    margin-left: auto;
  }

.sign__label + .sign__radio {
  margin-top: 5px;
}

.sign__input {
  width: 100%;
  background-color: var(--dark-light);
  border: 1px solid transparent;
  height: 46px;
  position: relative;
  color: var(--text);
  font-size: var(--size);
  width: 100%;
  border-radius: 24px;
  padding: 0 16px;
}

  .sign__input:focus {
    border-color: var(--primary);
  }

.sign__textarea {
  border: 1px solid transparent;
  height: 140px;
  position: relative;
  color: var(--text);
  font-size: var(--size);
  width: 100%;
  padding: 16px;
  resize: none;
  background-color: var(--dark-light);
  border-radius: 16px;
}

  .sign__textarea:focus {
    border-color: var(--primary);
  }

.sign__select {
  background: url("../img/angle-down.svg") no-repeat center right 20px var(--dark-light);
  background-size: 20px auto;
  border: 1px solid transparent;
  border-radius: 24px;
  height: 46px;
  position: relative;
  color: var(--text);
  font-size: var(--size);
  width: 100%;
  padding: 0 16px;
  cursor: pointer;
}

  .sign__select:focus {
    border-color: var(--primary);
  }

.sign__group {
  position: relative;
  margin-top: 20px;
  width: 100%;
}

.sign__group--checkbox {
  width: 100%;
  text-align: left;
}

  .sign__group--checkbox input:not(:checked),
  .sign__group--checkbox input:checked {
    position: absolute;
    left: -9999px;
  }

    .sign__group--checkbox input:not(:checked) + label,
    .sign__group--checkbox input:checked + label {
      font-size: var(--size);
      color: var(--highlight);
      font-weight: normal;
      position: relative;
      cursor: pointer;
      padding-left: 34px;
      line-height: 24px;
      margin: 0;
      transition: color 0.4s ease;
    }

      .sign__group--checkbox input:not(:checked) + label a,
      .sign__group--checkbox input:checked + label a {
        color: var(--primary);
      }

        .sign__group--checkbox input:not(:checked) + label a:hover,
        .sign__group--checkbox input:checked + label a:hover {
          color: var(--primary);
          text-decoration: underline;
        }

      .sign__group--checkbox input:not(:checked) + label:before,
      .sign__group--checkbox input:checked + label:before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 24px;
        height: 24px;
        background-color: var(--dark-light);
        border-radius: 50%;
      }

      .sign__group--checkbox input:not(:checked) + label:after,
      .sign__group--checkbox input:checked + label:after {
        content: '';
        position: absolute;
        left: 8px;
        top: 8px;
        width: 8px;
        height: 8px;
        transition: 0.4s ease;
        background-color: var(--primary);
        border-radius: 50%;
      }

      .sign__group--checkbox input:not(:checked) + label:after {
        opacity: 0;
        transform: scale(0);
      }

    .sign__group--checkbox input:checked + label {
      color: var(--text);
    }

      .sign__group--checkbox input:checked + label:after {
        opacity: 1;
        transform: scale(1);
      }

  .sign__group--checkbox label::-moz-selection {
    background: transparent;
    color: var(--highlight);
  }

  .sign__group--checkbox label::selection {
    background: transparent;
    color: var(--highlight);
  }

.sign__switch {
  position: relative;
  margin-top: 20px;
  width: 100%;
  min-height: 24px;
  overflow: hidden;
}

  .sign__switch label {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    margin-bottom: 0;
  }

    .sign__switch label span:first-child {
      font-size: var(--size);
      line-height: 24px;
      color: var(--text);
      margin-bottom: 0;
    }

    .sign__switch label span:nth-child(2) {
      font-size: 12px;
      line-height: 16px;
      color: var(--highlight);
      margin-top: 4px;
    }

.sign__switch-input {
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer;
  opacity: 0;
}

  .sign__switch-input + label {
    position: relative;
    padding-left: 60px;
    cursor: pointer;
  }

    .sign__switch-input + label:before {
      content: '';
      box-sizing: border-box;
      position: absolute;
      left: 0;
      width: 44px;
      height: 24px;
      border-radius: 12px;
      background-color: var(--dark-light);
    }

    .sign__switch-input + label:after {
      content: '';
      position: absolute;
      top: 2px;
      left: 2px;
      width: 20px;
      height: 20px;
      margin: auto;
      transform: translate(0, 0);
      border-radius: 50%;
      background-color: rgba(var(--primary-rgba),0.36);
      cursor: pointer;
      transition: 0.4s ease;
    }

  .sign__switch-input:checked + label:after {
    transform: translate(20px, 0);
    background-color: var(--primary);
  }

.sign__radio {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
}

  .sign__radio li {
    position: relative;
    overflow: hidden;
    margin-bottom: 12px;
  }

    .sign__radio li:last-child {
      margin-bottom: 0;
    }

  .sign__radio input:not(:checked),
  .sign__radio input:checked {
    position: absolute;
    left: -9999px;
  }

  .sign__radio label {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    width: auto;
    margin: 0;
    position: relative;
    font-weight: 400;
    cursor: pointer;
    font-size: var(--size);
    color: var(--highlight);
    line-height: 24px;
    padding-left: 30px;
    transition: color 0.4s ease;
  }

    .sign__radio label img {
      width: 20px;
      height: 20px;
      margin-left: 8px;
    }

    .sign__radio label span {
      display: flex;
      flex-direction: row;
      justify-content: flex-start;
      align-items: center;
      width: auto;
      font-size: var(--sec-size);
      line-height: 24px;
      font-weight: 600;
      color: var(--highlight);
      margin-left: 16px;
      transition: color 0.4s ease;
    }

      .sign__radio label span img {
        width: 20px;
        height: 20px;
        margin-right: 8px;
        opacity: 0.8;
        transition: opacity 0.4s ease;
      }

    .sign__radio label:before {
      content: '';
      display: block;
      position: absolute;
      width: 20px;
      height: 20px;
      border: 5px solid var(--dark-light);
      background-color: transparent;
      border-radius: 50%;
      left: 0;
      top: 2px;
      transition: border-color 0.4s ease;
    }

    .sign__radio label:hover {
      color: var(--text);
    }

  .sign__radio input:checked + label {
    color: var(--text);
  }

    .sign__radio input:checked + label span {
      color: var(--text);
    }

      .sign__radio input:checked + label span img {
        opacity: 1;
      }

    .sign__radio input:checked + label:before {
      border-color: var(--primary);
    }

.sign__gallery {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 46px;
  overflow: hidden;
  border-radius: 24px;
}

  .sign__gallery input {
    position: absolute;
    left: -9999px;
    opacity: 0;
    z-index: 1;
  }

  .sign__gallery label {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    z-index: 2;
    height: 46px;
    color: var(--text);
    padding: 0 52px 0 16px;
    background-color: var(--dark-light);
    border: 1px solid transparent;
    font-weight: 400;
    margin: 0;
    width: 100%;
    font-size: var(--size);
    cursor: pointer;
    transition: 0.4s ease;
    border-radius: 24px;
  }

    .sign__gallery label:before {
      content: '';
      background: url("../img/photo.svg") no-repeat center;
      background-size: 20px 20px;
      pointer-events: none;
      position: absolute;
      right: 20px;
      top: 0;
      display: flex;
      flex-direction: row;
      justify-content: center;
      align-items: center;
      height: 46px;
      width: 20px;
    }

    .sign__gallery label:focus {
      border-color: var(--primary);
    }

.sign__attachment {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 46px;
  overflow: hidden;
  border-radius: 24px;
}

  .sign__attachment input {
    position: absolute;
    left: -9999px;
    opacity: 0;
    z-index: 1;
  }

  .sign__attachment label {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    z-index: 2;
    height: 46px;
    color: var(--text);
    padding: 0 52px 0 16px;
    background-color: var(--dark-light);
    border: 1px solid transparent;
    font-weight: 400;
    margin: 0;
    width: 100%;
    font-size: var(--size);
    cursor: pointer;
    transition: 0.4s ease;
    border-radius: 24px;
  }

    .sign__attachment label:before {
      content: '';
      background: url("../img/paperclip.svg") no-repeat center;
      background-size: 20px 20px;
      pointer-events: none;
      position: absolute;
      right: 20px;
      top: 0;
      display: flex;
      flex-direction: row;
      justify-content: center;
      align-items: center;
      height: 46px;
      width: 20px;
    }

    .sign__attachment label:focus {
      border-color: var(--primary);
    }

.sign__btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 48px;
  width: 100%;
  border-radius: 24px;
  background-color: var(--light);
  margin-top: 30px;
  position: relative;
  overflow: hidden;
}

.sign__btn--modal {
  width: 160px;
  margin: 30px auto 0;
}

.sign__btn:before {
  content: '';
  position: absolute;
  z-index: 1;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  margin: -10px 0 0 -10px;
  background-color: var(--primary);
  transition: 0.4s ease;
  transition-property: transform, opacity;
  transform: scale(1);
  opacity: 0;
  transform-origin: center;
  will-change: transform;
  pointer-events: none;
}

.sign__btn span {
  position: relative;
  z-index: 2;
  font-size: var(--size);
  line-height: 20px;
  font-weight: 500;
  color: var(--dark);
  text-transform: uppercase;
  transition: color 0.4s ease;
}

.sign__btn:hover:before {
  opacity: 1;
  transform: scale(8.2);
}

.sign__btn:hover span {
  color: var(--text);
}

.sign__btn--big:hover:before {
  transform: scale(14.2);
}

.sign__text {
  display: block;
  margin-top: 15px;
  font-size: var(--size);
  line-height: 24px;
  color: var(--highlight);
  width: 100%;
  text-align: center;
  margin-bottom: 0;
}

  .sign__text a {
    position: relative;
    color: var(--primary);
  }

    .sign__text a:hover {
      color: var(--primary);
      text-decoration: underline;
    }

.sign__text--left {
  text-align: left;
}

.sign__delimiter {
  font-size: var(--size);
  color: var(--highlight);
  line-height: 100%;
  margin-top: 15px;
}

.sign__social {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 15px;
}

  .sign__social a {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-top: 15px;
    height: 46px;
    width: 100%;
    border-radius: 24px;
    color: var(--text);
    font-size: var(--size);
  }

    .sign__social a svg {
      width: 20px;
      height: 20px;
      margin-left: 8px;
      stroke: var(--text);
    }

    .sign__social a.fb {
      background-color: #3b5999;
    }

    .sign__social a.gl {
      background-color: #df4a32;
    }

    .sign__social a.tw {
      background-color: #1da1f2;
    }

    .sign__social a:hover {
      background-color: var(--text);
    }

      .sign__social a:hover.fb {
        color: #3b5999;
      }

        .sign__social a:hover.fb svg {
          stroke: #3b5999;
        }

      .sign__social a:hover.gl {
        color: #df4a32;
      }

        .sign__social a:hover.gl svg {
          stroke: #df4a32;
        }

      .sign__social a:hover.tw {
        color: #1da1f2;
      }

        .sign__social a:hover.tw svg {
          stroke: #1da1f2;
        }

.sign__dropdown {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin-bottom: 0;
  margin-top: 20px;
}

.sign__dropdown--exchange {
  max-width: 120px;
  margin-top: 0;
}

  .sign__dropdown--exchange .sign__dropdown-btn {
    border-radius: 0 24px 24px 0;
  }

  .sign__dropdown--exchange .sign__dropdown-menu {
    min-width: 120px;
  }

.sign__dropdown-btn {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  width: 100%;
  height: 46px;
  background-color: var(--dark-light);
  border: 1px solid transparent;
  border-left: 1px solid var(--dark);
  border-radius: 24px;
  padding: 0 16px;
}

  .sign__dropdown-btn img {
    width: 20px;
    height: 20px;
    margin-right: 8px;
  }

  .sign__dropdown-btn span {
    font-size: var(--size);
    font-weight: 500;
    color: var(--text);
    margin-right: 8px;
  }

  .sign__dropdown-btn svg {
    margin-left: auto;
    width: 14px;
    height: 14px;
    stroke: var(--highlight);
  }

  .sign__dropdown-btn.show {
    border-color: var(--primary);
  }

    .sign__dropdown-btn.show svg {
      stroke: var(--primary);
    }

  .sign__dropdown-btn:hover svg {
    stroke: var(--primary);
  }

.sign__dropdown-menu {
  position: absolute;
  background-color: var(--dark);
  padding: 16px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  min-width: 160px;
  border-radius: 16px;
  border: 1px solid var(--dark-light);
  box-shadow: none;
  height: auto;
}

.sign__currencies {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-height: 164px;
  overflow-y: auto;
  padding-right: 8px;
}

  .sign__currencies::-webkit-scrollbar {
    width: 4px;
    height: 4px;
  }

  .sign__currencies::-webkit-scrollbar-button {
    display: none;
  }

  .sign__currencies::-webkit-scrollbar-thumb {
    background: rgba(var(--primary-rgba),0.4);
    outline: 0 solid var(--text);
    border-radius: 4px;
  }

    .sign__currencies::-webkit-scrollbar-thumb:hover {
      background: var(--primary);
    }

  .sign__currencies::-webkit-scrollbar-track {
    background: var(--dark);
    border-radius: 4px;
  }

  .sign__currencies li {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    margin-bottom: 16px;
    cursor: pointer;
  }

    .sign__currencies li:last-child {
      margin-bottom: 0;
    }

    .sign__currencies li:hover span,
    .sign__currencies li.active span {
      color: var(--primary);
    }

  .sign__currencies img {
    width: 20px;
    height: 20px;
    margin-right: 8px;
  }

  .sign__currencies span {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    width: auto;
    font-size: var(--size);
    font-weight: 500;
    line-height: 20px;
    color: var(--text);
    transition: color 0.4s ease;
  }

    .sign__currencies span:first-child {
      color: var(--text);
    }

    .sign__currencies span + span {
      margin-left: auto;
    }

.sign__wallet {
  position: relative;
  width: 100%;
}

  .sign__wallet .sign__input {
    padding: 0 52px 0 16px;
  }

.sign__actions {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  position: absolute;
  top: 0;
  right: 16px;
}

  .sign__actions button {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 46px;
    margin-right: 16px;
  }

    .sign__actions button svg {
      width: 20px;
      height: 20px;
      stroke: var(--highlight);
    }

    .sign__actions button:last-child {
      margin-right: 0;
    }

    .sign__actions button:hover svg {
      stroke: var(--primary);
    }

.sign__amount {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  position: relative;
}

  .sign__amount .sign__input {
    width: calc(100% - 70px);
    border-radius: 24px 0 0 24px;
    padding: 0 52px 0 16px;
    border-right: 1px solid var(--dark);
  }

    .sign__amount .sign__input:focus {
      border-color: var(--primary);
    }

.sign__exchange {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  position: relative;
}

  .sign__exchange .sign__input {
    width: calc(100% - 120px);
    border-radius: 24px 0 0 24px;
    border-right: 1px solid var(--dark);
  }

    .sign__exchange .sign__input:focus {
      border-color: var(--primary);
    }

.sign__coin {
  width: 20px;
  height: auto;
  position: absolute;
  right: 86px;
  z-index: 1;
}

.sign__max {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 46px;
  font-size: var(--size);
  font-weight: 500;
  color: var(--highlight);
  background-color: var(--dark-light);
  border-left: 1px solid var(--dark);
  border-radius: 0 24px 24px 0;
}

  .sign__max:hover {
    color: var(--primary);
  }

@media (min-width: 768px) {
  .sign__form {
    padding: 40px 60px;
  }

  .sign__form--full {
    padding: 32px;
  }

  .sign__form--comments {
    padding: 30px;
    margin-top: 30px;
  }

  .sign__form--reviews {
    padding: 6px 30px 30px;
    margin-top: 30px;
  }

  .sign__logo {
    margin-bottom: 20px;
  }

  .sign__btn--small {
    width: 160px;
  }
}

@media (min-width: 1400px) {
  .sign__form--full {
    min-height: calc(100% - 16px);
  }
}
/*==============================
	Error
==============================*/
.error {
  display: block;
  position: relative;
  width: 100%;
}

  .error .container {
    position: relative;
    z-index: 2;
  }

.error__wrap {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 100svh;
  padding: 24px 0;
}

.error__content {
  background: var(--dark);
  border: 1px solid var(--dark-light);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px 20px;
  position: relative;
  width: 100%;
  max-width: 400px;
}

.error__title {
  position: relative;
  color: var(--primary);
  line-height: 100%;
  font-size: 120px;
  margin-bottom: 8px;
  font-weight: 800;
}

.error__text {
  text-align: center;
  display: block;
  width: 100%;
  font-size: var(--size);
  line-height: 24px;
  color: var(--highlight);
  margin-bottom: 20px;
}

.error__btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 48px;
  width: 100%;
  border-radius: 24px;
  background-color: var(--light);
  margin-top: 10px;
  position: relative;
  overflow: hidden;
}

  .error__btn:before {
    content: '';
    position: absolute;
    z-index: 1;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    margin: -10px 0 0 -10px;
    background-color: var(--primary);
    transition: 0.4s ease;
    transition-property: transform, opacity;
    transform: scale(1);
    opacity: 0;
    transform-origin: center;
    will-change: transform;
    pointer-events: none;
  }

  .error__btn span {
    position: relative;
    z-index: 2;
    font-size: var(--size);
    line-height: 20px;
    font-weight: 500;
    color: var(--dark);
    text-transform: uppercase;
    transition: color 0.4s ease;
  }

  .error__btn:hover:before {
    opacity: 1;
    transform: scale(14.2);
  }

  .error__btn:hover span {
    color: var(--text);
  }

@media (min-width: 768px) {
  .error__content {
    padding: 40px 60px;
  }
}
/*==============================
	Modal
==============================*/
.modal .modal-content {
  margin: 0 auto;
  max-width: 420px;
  background-color: transparent;
  border: none;
  border-radius: 16px;
}

.modal .modal-dialog {
  max-width: 420px;
}

.modal__content {
  position: relative;
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 420px;
  padding: 30px 20px;
  border-radius: 16px;
  background: var(--dark);
  border: 1px solid var(--dark-light);
}

.modal__form {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
}

.modal__title {
  font-weight: 400;
  color: var(--text);
  font-size: 24px;
  line-height: 24px;
  margin-bottom: 10px;
}

.modal__text {
  color: var(--highlight);
  font-size: var(--size);
  line-height: 22px;
  margin-bottom: 10px;
  margin-top: 10px;
}

  .modal__text b {
    font-weight: 600;
    color: var(--highlight);
  }

  .modal__text a {
    color: var(--primary);
  }

    .modal__text a:hover {
      color: var(--primary);
      text-decoration: underline;
    }

  .modal__text:last-child {
    margin-bottom: 0;
  }

.modal__list {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 10px;
  margin-top: 10px;
}

  .modal__list li {
    color: var(--highlight);
    font-size: var(--size);
    line-height: 24px;
    margin-bottom: 10px;
  }

    .modal__list li b {
      font-weight: 600;
      color: var(--highlight);
    }

    .modal__list li a {
      color: var(--primary);
    }

      .modal__list li a:hover {
        color: var(--primary);
        text-decoration: underline;
      }

    .modal__list li:last-child {
      margin-bottom: 0;
    }

  .modal__list:last-child {
    margin-bottom: 0;
  }

.modal__close {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 30px;
  right: 20px;
  width: 24px;
  height: 24px;
  z-index: 1;
}

  .modal__close svg {
    width: 20px;
    height: 20px;
    stroke: var(--highlight);
  }

  .modal__close:hover svg {
    stroke: var(--tertiary);
  }

.modal__tabs-nav {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: relative;
  flex-wrap: nowrap;
  width: 100%;
  height: 46px;
  padding: 0 20px;
  border-radius: 24px;
  background: var(--dark-light);
  overflow-x: auto;
  border: none;
  margin-top: 20px;
  margin-bottom: 10px;
}

  .modal__tabs-nav::-webkit-scrollbar {
    width: 4px;
    height: 4px;
  }

  .modal__tabs-nav::-webkit-scrollbar-button {
    display: none;
  }

  .modal__tabs-nav::-webkit-scrollbar-thumb {
    background: rgba(var(--primary-rgba),0.4);
    outline: 0 solid var(--text);
    border-radius: 4px;
  }

    .modal__tabs-nav::-webkit-scrollbar-thumb:hover {
      background: var(--primary);
    }

  .modal__tabs-nav::-webkit-scrollbar-track {
    background: var(--dark);
    border-radius: 4px;
  }

  .modal__tabs-nav li {
    margin-right: 20px;
  }

    .modal__tabs-nav li:last-child {
      margin-right: 0;
    }

  .modal__tabs-nav button {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    width: auto;
    height: 46px;
    color: var(--highlight);
    position: relative;
    font-size: var(--size);
    font-weight: 500;
    white-space: nowrap;
  }

    .modal__tabs-nav button:hover {
      color: var(--text);
    }

    .modal__tabs-nav button:before {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 0;
      display: block;
      background: var(--primary);
      box-shadow: none;
      transition: 0.4s ease;
      border-radius: 2px 2px 0 0;
    }

    .modal__tabs-nav button.active {
      color: var(--text);
    }

      .modal__tabs-nav button.active:before {
        height: 2px;
      }

.modal__tabs-content {
  position: relative;
  width: 100%;
}

@media (min-width: 576px) {
  .modal__tabs-nav li {
    margin-right: 24px;
  }

    .modal__tabs-nav li:last-child {
      margin-right: 0;
    }
}

@media (min-width: 768px) {
  .modal__content {
    padding: 30px;
  }

  .modal__close {
    right: 30px;
  }
}

.modal-dialog {
  padding-right: 8px;
  padding-left: 8px;
}

.modal-backdrop {
  background: rgba(0,0,0,0.7);
}

  .modal-backdrop.show {
    opacity: 1;
  }
/*==============================
	Splide customization
==============================*/
.splide.is-focus-in .splide__arrow:focus {
  outline: none;
  outline-offset: 0;
}

.splide__list {
  transform-style: flat;
}

.splide--items .splide__arrows,
.splide--partners .splide__arrows,
.splide--contests .splide__arrows,
.splide--online .splide__arrows,
.splide--news .splide__arrows,
.splide--roadmap .splide__arrows {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: auto;
}

.splide--items .splide__arrow,
.splide--partners .splide__arrow,
.splide--contests .splide__arrow,
.splide--online .splide__arrow,
.splide--news .splide__arrow,
.splide--roadmap .splide__arrow {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--dark-light);
  border: none;
  opacity: 1 !important;
  transform: translateY(0);
}

  .splide--items .splide__arrow svg,
  .splide--partners .splide__arrow svg,
  .splide--contests .splide__arrow svg,
  .splide--online .splide__arrow svg,
  .splide--news .splide__arrow svg,
  .splide--roadmap .splide__arrow svg {
    width: 20px;
    height: 20px;
    stroke: var(--text);
    fill: none;
  }

.splide--items .splide__arrow--next,
.splide--partners .splide__arrow--next,
.splide--contests .splide__arrow--next,
.splide--online .splide__arrow--next,
.splide--news .splide__arrow--next,
.splide--roadmap .splide__arrow--next {
  right: auto;
}

  .splide--items .splide__arrow--next svg,
  .splide--partners .splide__arrow--next svg,
  .splide--contests .splide__arrow--next svg,
  .splide--online .splide__arrow--next svg,
  .splide--news .splide__arrow--next svg,
  .splide--roadmap .splide__arrow--next svg {
    margin-left: 1px;
  }

.splide--items .splide__arrow--prev,
.splide--partners .splide__arrow--prev,
.splide--contests .splide__arrow--prev,
.splide--online .splide__arrow--prev,
.splide--news .splide__arrow--prev,
.splide--roadmap .splide__arrow--prev {
  left: auto;
  margin-right: 8px;
}

  .splide--items .splide__arrow--prev svg,
  .splide--partners .splide__arrow--prev svg,
  .splide--contests .splide__arrow--prev svg,
  .splide--online .splide__arrow--prev svg,
  .splide--news .splide__arrow--prev svg,
  .splide--roadmap .splide__arrow--prev svg {
    transform: scaleX(1);
    margin-right: 1px;
  }

.splide--timetable {
  width: calc(100% - 80px);
  margin: 0 auto;
}

  .splide--timetable .splide__arrow {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    border: none;
    border-radius: 50%;
    background-color: var(--light);
    opacity: 1;
    top: 36%;
  }

    .splide--timetable .splide__arrow span {
      display: none;
    }

    .splide--timetable .splide__arrow svg {
      width: 20px;
      height: 20px;
      stroke: var(--dark);
      fill: none;
    }

  .splide--timetable .splide__arrow--prev {
    left: auto;
    right: 100%;
    margin-right: 10px;
  }

    .splide--timetable .splide__arrow--prev svg {
      transform: scaleX(1);
      margin-right: 1px;
    }

  .splide--timetable .splide__arrow--next {
    right: auto;
    left: 100%;
    margin-left: 10px;
  }

    .splide--timetable .splide__arrow--next svg {
      margin-left: 1px;
    }

  .splide--timetable .splide__arrow[disabled] {
    opacity: 0.4;
  }

.splide--hero .splide__pagination,
.splide--carousel .splide__pagination {
  bottom: 0;
}

  .splide--hero .splide__pagination li,
  .splide--carousel .splide__pagination li {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 8px;
    height: 8px;
    line-height: 0;
    margin-right: 8px;
  }

    .splide--hero .splide__pagination li:last-child,
    .splide--carousel .splide__pagination li:last-child {
      margin-right: 0;
    }

.splide--hero .splide__pagination__page,
.splide--carousel .splide__pagination__page {
  background-color: rgba(var(--primary-rgba),0.2);
  margin: 0;
  opacity: 1;
  backdrop-filter: blur(4px);
  transition: background-color 0.4s ease;
}

  .splide--hero .splide__pagination__page.is-active,
  .splide--carousel .splide__pagination__page.is-active {
    transform: scale(1);
    opacity: 1;
    background-color: rgba(var(--primary-rgba),0.4);
  }

.splide--hero .splide__arrows,
.splide--carousel .splide__arrows {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 64px;
  height: 112px;
  position: absolute;
  top: 50%;
  right: 0;
  background-color: var(--dark);
  transform: translateY(-50%);
  z-index: 1;
  border-radius: 32px 0 0 32px;
  border: 1px solid var(--dark-light);
  border-right: none;
}

  .splide--hero .splide__arrows:before,
  .splide--carousel .splide__arrows:before,
  .splide--hero .splide__arrows:after,
  .splide--carousel .splide__arrows:after {
    content: '';
    position: absolute;
    display: block;
    right: 0;
    width: 32px;
    height: 32px;
    background-color: transparent;
  }

  .splide--hero .splide__arrows:before,
  .splide--carousel .splide__arrows:before {
    border-radius: 0 0 32px 0;
    bottom: 100%;
    box-shadow: 8px 8px 0 8px var(--dark);
    border-right: 1px solid var(--dark-light);
    border-bottom: 1px solid var(--dark-light);
  }

  .splide--hero .splide__arrows:after,
  .splide--carousel .splide__arrows:after {
    border-radius: 0 32px 0 0;
    top: 100%;
    box-shadow: 8px -8px 0 8px var(--dark);
    border-right: 1px solid var(--dark-light);
    border-top: 1px solid var(--dark-light);
  }

.splide--hero .splide__arrow,
.splide--carousel .splide__arrow {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--dark-light);
  border: none;
  opacity: 1 !important;
  transform: translateY(0);
  top: auto;
}

  .splide--hero .splide__arrow svg,
  .splide--carousel .splide__arrow svg {
    width: 20px;
    height: 20px;
    stroke: var(--text);
    fill: none;
  }

.splide--hero .splide__arrow--next,
.splide--carousel .splide__arrow--next {
  right: auto;
}

  .splide--hero .splide__arrow--next svg,
  .splide--carousel .splide__arrow--next svg {
    margin-left: 1px;
  }

.splide--hero .splide__arrow--prev,
.splide--carousel .splide__arrow--prev {
  left: auto;
  margin-bottom: 8px;
}

  .splide--hero .splide__arrow--prev svg,
  .splide--carousel .splide__arrow--prev svg {
    transform: scaleX(1);
    margin-right: 1px;
  }

.splide--carousel .splide__pagination {
  bottom: -24px;
}

.splide--carousel .splide__arrows {
  width: 56px;
}

@media (min-width: 768px) {
  .splide--timetable {
    width: 100%;
  }

    .splide--timetable .splide__arrow {
      display: none;
    }

  .splide--carousel .splide__arrows {
    border: none;
    align-items: flex-end;
    width: 46px;
    border-radius: 32px 0 0 32px;
  }

    .splide--carousel .splide__arrows:before,
    .splide--carousel .splide__arrows:after {
      border: none;
      width: 16px;
      height: 16px;
    }

    .splide--carousel .splide__arrows:before {
      border-radius: 0 0 16px 0;
    }

    .splide--carousel .splide__arrows:after {
      border-radius: 0 16px 0 0;
    }

  .splide--carousel .splide__track {
    border-radius: 16px;
  }
}

@media (min-width: 1200px) {
  .splide--timetable {
    width: 700px;
    margin: 0;
  }

  .splide--items .splide__arrow:hover svg,
  .splide--partners .splide__arrow:hover svg,
  .splide--hero .splide__arrow:hover svg,
  .splide--contests .splide__arrow:hover svg,
  .splide--carousel .splide__arrow:hover svg,
  .splide--online .splide__arrow:hover svg,
  .splide--news .splide__arrow:hover svg,
  .splide--roadmap .splide__arrow:hover svg {
    stroke: var(--primary);
  }
}
/*==============================
	Plyr customization
==============================*/
.plyr {
  font-family: 'Poppins Urbanist', sans-serif;
  font-weight: 400;
  border-radius: 16px;
  margin-top: 0;
}

.plyr__video-wrapper {
  background: var(--dark-light);
}

.plyr__poster {
  background-color: var(--dark-light);
}

.plyr--video {
  background: var(--dark-light);
}

.plyr__menu__container .plyr__control {
  transition: 0s ease;
}

.plyr__control.plyr__control--overlaid {
  border-radius: 50%;
}

.plyr--video .plyr__control.plyr__tab-focus,
.plyr--video .plyr__control:hover,
.plyr--video .plyr__control[aria-expanded="true"] {
  background: none;
  background-color: var(--primary);
}

.plyr--video .plyr__control--overlaid {
  box-shadow: none;
  display: flex !important;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  background-color: rgba(255,255,255,0.2);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transition: 0.4s ease;
  transition-property: opacity, background-color, color, border-color, transform;
  color: var(--text-dark);
  border: 8px solid rgba(255,255,255,0.2);
  padding: 0;
  backdrop-filter: blur(4px);
}

  .plyr--video .plyr__control--overlaid:before {
    content: '';
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: url("../img/play.svg") no-repeat center;
    background-size: 28px 28px;
    background-color: var(--dark);
    z-index: 1;
  }

  .plyr--video .plyr__control--overlaid:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: url("../img/play--hover.svg") no-repeat center;
    background-size: 28px 28px;
    background-color: transparent;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.4s ease;
  }

  .plyr--video .plyr__control--overlaid svg {
    display: none;
  }

  .plyr--video .plyr__control--overlaid:hover,
  .plyr--video .plyr__control--overlaid.plyr__tab-focus {
    background-color: rgba(255,255,255,0.2);
    border-color: rgba(var(--primary-rgba),0.3);
    color: var(--primary);
  }

    .plyr--video .plyr__control--overlaid:hover:after,
    .plyr--video .plyr__control--overlaid.plyr__tab-focus:after {
      opacity: 1;
    }

.plyr--video .plyr__progress__buffer {
  box-shadow: none;
}

.plyr__progress__buffer {
  border-radius: 0;
}

.plyr--full-ui input[type="range"] {
  color: var(--primary);
  border-radius: 0;
}

.plyr__tab-focus {
  box-shadow: none;
  outline: none;
}

.plyr__tooltip {
  font-weight: 400;
}

.plyr__control.plyr__tab-focus {
  box-shadow: none;
}

.plyr__menu__container .plyr__control[role="menuitemradio"][aria-checked="true"]::before {
  background: none;
  background-color: var(--primary);
}

.plyr__control {
  border-radius: 8px;
}

.plyr--video .plyr__control svg {
  filter: none;
}
/*==============================
	Tooltip customization
==============================*/
.tooltip {
  font-size: 12px;
  font-weight: 600;
}

  .tooltip.show {
    opacity: 1;
  }

.bs-tooltip-top .tooltip-arrow::before,
.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before {
  border-top-color: var(--light);
}

.bs-tooltip-end .tooltip-arrow::before,
.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before {
  border-right-color: var(--light);
}

.bs-tooltip-bottom .tooltip-arrow::before,
.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before {
  border-bottom-color: var(--light);
}

.bs-tooltip-start .tooltip-arrow::before,
.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before {
  border-left-color: var(--light);
}

.tooltip-inner {
  background-color: var(--light);
  color: var(--dark);
  border-radius: 8px;
}

.btn-disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.hide {
  display: none !important;
  transition: display 0.5s ease-in-out;
}

.grecaptcha-badge {
  visibility: hidden;
  opacity: 0;
}

@-moz-keyframes moveBackground {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }

  50% {
    transform: translate(10%, 10%) rotate(15deg);
  }

  100% {
    transform: translate(-10%, -10%) rotate(-15deg);
  }
}

@-webkit-keyframes moveBackground {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }

  50% {
    transform: translate(10%, 10%) rotate(15deg);
  }

  100% {
    transform: translate(-10%, -10%) rotate(-15deg);
  }
}

@-o-keyframes moveBackground {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }

  50% {
    transform: translate(10%, 10%) rotate(15deg);
  }

  100% {
    transform: translate(-10%, -10%) rotate(-15deg);
  }
}

@keyframes moveBackground {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }

  50% {
    transform: translate(10%, 10%) rotate(15deg);
  }

  100% {
    transform: translate(-10%, -10%) rotate(-15deg);
  }
}

@-moz-keyframes gradient-animation {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@-webkit-keyframes gradient-animation {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@-o-keyframes gradient-animation {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes gradient-animation {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@-moz-keyframes animStar {
  from {
    transform: translateY(0px);
  }

  to {
    transform: translateY(-1900px);
  }
}

@-webkit-keyframes animStar {
  from {
    transform: translateY(0px);
  }

  to {
    transform: translateY(-1900px);
  }
}

@-o-keyframes animStar {
  from {
    transform: translateY(0px);
  }

  to {
    transform: translateY(-1900px);
  }
}

@keyframes animStar {
  from {
    transform: translateY(0px);
  }

  to {
    transform: translateY(-1900px);
  }
}

@-moz-keyframes moveDot {
  0%, 100% {
    top: 0;
    left: 0;
  }

  25% {
    top: 0;
    left: calc(100% - 32px);
  }

  50% {
    top: calc(100% - 32px);
    left: calc(100% - 32px);
  }

  75% {
    top: calc(100% - 32px);
    left: 0;
  }
}

@-webkit-keyframes moveDot {
  0%, 100% {
    top: 0;
    left: 0;
  }

  25% {
    top: 0;
    left: calc(100% - 32px);
  }

  50% {
    top: calc(100% - 32px);
    left: calc(100% - 32px);
  }

  75% {
    top: calc(100% - 32px);
    left: 0;
  }
}

@-o-keyframes moveDot {
  0%, 100% {
    top: 0;
    left: 0;
  }

  25% {
    top: 0;
    left: calc(100% - 32px);
  }

  50% {
    top: calc(100% - 32px);
    left: calc(100% - 32px);
  }

  75% {
    top: calc(100% - 32px);
    left: 0;
  }
}

@keyframes moveDot {
  0%, 100% {
    top: 0;
    left: 0;
  }

  25% {
    top: 0;
    left: calc(100% - 32px);
  }

  50% {
    top: calc(100% - 32px);
    left: calc(100% - 32px);
  }

  75% {
    top: calc(100% - 32px);
    left: 0;
  }
}

@-moz-keyframes onlineDot {
  0%, 100% {
    opacity: 0.24;
  }

  25% {
    opacity: 0.6;
  }

  50% {
    opacity: 1;
  }

  75% {
    opacity: 0.6;
  }
}

@-webkit-keyframes onlineDot {
  0%, 100% {
    opacity: 0.24;
  }

  25% {
    opacity: 0.6;
  }

  50% {
    opacity: 1;
  }

  75% {
    opacity: 0.6;
  }
}

@-o-keyframes onlineDot {
  0%, 100% {
    opacity: 0.24;
  }

  25% {
    opacity: 0.6;
  }

  50% {
    opacity: 1;
  }

  75% {
    opacity: 0.6;
  }
}

@keyframes onlineDot {
  0%, 100% {
    opacity: 0.24;
  }

  25% {
    opacity: 0.6;
  }

  50% {
    opacity: 1;
  }

  75% {
    opacity: 0.6;
  }
}
