@charset "UTF-8";
.slider-container {
  position: relative;
  height: 36px;
  border-radius: 10px;
  background-color: #282828;
  margin-bottom: 2.5em;
}

.slider {
  -webkit-appearance: none;
  width: 100%;
  height: 100%;
  margin: 0;
  background-color: transparent;
  position: relative;
  z-index: 3;
}

.slider::-webkit-slider-runnable-track,
.slider::-moz-range-track {
  width: 100%;
  height: 10px;
  background-color: white;
  border-radius: 5px;
  border: none;
  margin: 0;
  padding: 0;
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  height: 36px;
  width: 50px;
  cursor: grab;
  position: relative;
  z-index: 3;
}

.slider-long::-webkit-slider-thumb {
  width: 100px;
}

.slider::-moz-range-thumb {
  height: 10px;
  width: 10px;
  background-color: #fff;
  border-radius: 50%;
  cursor: grab;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
}

.slider:focus {
  outline: none;
}

.slider-ticks {
  position: absolute;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 95%;
  bottom: -15px;
  left: 15px;
  z-index: 1;
  height: 21px;
}

.slider-tick {
  width: 4.14px;
  border-radius: 30px;
  position: relative;
  z-index: 1;
  height: calc(var(--idx) / var(--ticks) * 100%);
  min-height: 4.14px;
  top: auto;
  transform-origin: top;
  transform: scaleY(-1);
  background-color: #64A560;
}

.slider-tick:before {
  position: relative;
  height: 10px;
  background-color: #fff;
  transform-origin: bottom;
  width: 5px;
  transform: scaleY(-1);
}

.reversed {
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}

.slider-ticks-day {
  position: absolute;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 95%;
  bottom: 5px;
  left: 15px;
  z-index: 1;
  height: 21px;
}

.slider-tick-day {
  width: 4.14px;
  border-radius: 30px;
  position: relative;
  z-index: 1;
  height: calc(var(--idx) / var(--ticks) * 100%);
  min-height: 4.14px;
  top: auto;
  background-color: #64A560;
}

.slider-tick-day:before {
  position: relative;
  height: 10px;
  background-color: #fff;
  transform-origin: bottom;
  width: 5px;
}

.slider-tick-active {
  width: 5px;
  background-color: red;
  position: relative;
  z-index: 2;
}

.slider-tick-active:before {
  content: "";
  position: relative;
  height: 20px;
  background-color: #fff;
  transform: scaleY(0.5);
  transform-origin: bottom;
  width: 5px;
  z-index: 1;
}

.slider-thumb {
  background-color: #474747;
  position: absolute;
  top: 0;
  z-index: 2;
  left: calc(var(--current-tick) * 0.85% * 100 / var(--max));
  display: flex;
  justify-content: center;
  align-items: center;
  width: 86px;
  height: 40px;
  border-radius: 50px;
  user-select: none;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
}

.slider-thumb-short {
  background-color: #474747;
  position: absolute;
  top: 0;
  z-index: 2;
  left: calc((var(--current-tick) - 1) * 100% / var(--max));
  transform: translateX(-20%);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  user-select: none;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
}

.thumb-parent {
  width: 94%;
  top: -40px;
  position: relative;
}

.slider-thumb-short-new {
  background-color: #474747;
  position: relative;
  z-index: 2;
  left: var(--percentage-position);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  user-select: none;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
}

.money-input {
  left: 50px;
  border-radius: 0;
  padding: 20px 0 20px 0;
  justify-content: space-between;
  display: flex;
  align-items: center;
}

.money-input label {
  font-weight: 300;
  font-size: 28px;
  line-height: 32px;
}

.money-input span {
  width: fit-content;
}

.mi-value {
  font-size: 36px;
  background-color: transparent;
  width: 100%;
  border: None;
  line-height: 24px;
  font-weight: 400;
  text-align: right;
  color: white;
}

.mi-label {
  text-align: left;
}

.money-input > div {
  display: flex;
  flex-flow: column;
  justify-content: center;
  row-gap: 10px;
}

.money-input > div:nth-of-type(2) {
  align-items: end;
}

.money-input select {
  background-color: transparent;
  color: white;
  border: 3px solid #00C878;
  border-radius: 10px;
  height: 36px;
  width: 86px;
  text-align: center;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("assets/svg/icon-arrow-down.svg");
  background-position: right 5px center;
  background-repeat: no-repeat;
  padding-left: 20px;
}

.money-input option {
  color: black;
}

.money-input p {
  color: #B2B2B2;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

@media (max-width: 600px) {
  .money-input {
    flex-direction: column;
    align-items: initial;
    gap: 1em;
  }
}
.modal {
  max-width: 520px;
  width: auto;
  background-color: #2C2C2C;
  border-radius: 20px;
  border: 0;
  box-sizing: border-box;
  color: #D9D9D9;
  display: none;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
  z-index: 1;
  text-align: center;
  position: absolute;
  top: 20%;
}
.modal h1 {
  margin-bottom: 0.5em;
}
.modal .action-button-modal {
  position: relative;
}
.modal .loader-timer {
  right: 15px;
  position: absolute;
  bottom: 15px;
}
.modal .grey-container {
  text-align: left;
  line-height: 26px;
  display: flex;
  padding: 25px;
  margin-bottom: 3px;
}
.modal .grey-container img {
  width: 24px;
  margin-right: 1.5em;
}
.modal .grey-container input {
  background-color: transparent;
  border: none;
  color: #D9D9D9;
  font-size: 16px;
  width: 100%;
}
.modal .grey-container .accept-checkbox {
  background-color: transparent;
  border: none;
  color: #D9D9D9;
  font-size: 16px;
  width: 15px;
  margin-left: 5px;
}
.modal .grey-container a {
  text-decoration: none;
  color: #64A560;
}
.modal .value-container {
  color: #64A560;
  border: 1px solid #474747;
  border-radius: 12px;
  text-align: left;
  line-height: 35px;
  display: flex;
  padding: 25px;
  display: flex;
  justify-content: space-between;
}
.modal .value-container .icon-container {
  display: flex;
  gap: 1em;
}
.modal .value-container .icon-bg {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7px;
  background-color: #474747;
  border-radius: 20%;
  cursor: pointer;
}
.modal .value-container .icon-bg img {
  height: 20px;
  width: 20px;
}

.tou-container {
  max-width: 450px;
  max-height: 650px;
  overflow-y: auto;
  overflow-x: hidden;
}
.tou-container p {
  margin: 20px 0;
  line-height: 1.2;
  font-weight: 300;
}
.tou-container .point {
  font-weight: bold;
}
.tou-container li {
  margin: 20px 0;
}

.modal[open] {
  display: flex;
}

.close-container {
  display: flex;
  justify-content: space-between;
}

.modal-close {
  cursor: pointer;
  width: 24px;
  height: 24px;
}

.modal-close:hover,
.modal-close:focus {
  cursor: pointer;
  text-decoration: none;
}

.space-between {
  display: flex;
  justify-content: space-between;
}

.space-around {
  display: flex;
  justify-content: space-around;
}

.space-around img {
  width: 128px;
  height: 128px;
}

::backdrop {
  background: rgba(0, 0, 0, 0.7);
}

.transaction-data {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.current-step-icon {
  position: fixed;
  top: 50px;
  left: 0;
  right: 0;
  margin: 0 auto;
  transform: translateY(-50%);
  background: #64A560;
  width: 60px;
  line-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 10px;
  z-index: 10;
}

.order-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1em;
}
.order-success p {
  width: 50%;
}

.icon-success {
  width: 25%;
}

.checkbox-container {
  display: flex;
  flex-direction: column;
}

@media (max-width: 500px) {
  .transaction-data > div p:nth-child(1) {
    font-size: 20px;
  }
  .transaction-data > div p:nth-child(2) {
    font-size: 28px;
  }
  .step-arrow-container {
    padding: 0 10px;
  }
}
@media (max-height: 680px) {
  .modal {
    max-width: 470px;
    padding: 15px;
    max-height: 580px;
  }
  .modal .value-container {
    padding: 15px;
  }
  .modal .grey-container {
    padding: 15px;
  }
}
.modal[open] {
  z-index: 8;
}

.open-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 6;
  display: block;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s linear 0.3s, opacity 0.3s linear;
}

.modal-open {
  visibility: visible;
  opacity: 1;
  transition: visibility 0s 0s, opacity 0.3s linear;
}

@media (max-width: 600px) {
  .action-button-modal span {
    font-size: 22px;
  }
}
.card {
  box-sizing: border-box;
  padding: 10px 10px;
  background-color: #2C2C2C;
  border-radius: 12px;
  font-size: 16px;
  color: #D9D9D9;
  margin: 0.2em;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  box-shadow: 0px 10px 30px -5px #4a5a3d, 0px 10px 60px -5px #424c35, 0px 10px 1000px 0px #38462d;
  max-width: 100%;
  margin-bottom: 20px;
}

h1 {
  font-size: 24px;
}
h1 span {
  color: #64A560;
}

.competition {
  white-space: nowrap;
  scroll-behavior: smooth;
  height: 110px;
  width: 496px;
  margin: 15px 0;
  background-color: #474747;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  max-width: 100%;
}

.competition-container {
  max-width: 450px;
  height: auto;
  display: flex;
  padding: 10px 0px;
  gap: 5px;
  overflow-x: auto;
  position: relative;
}

.arrow-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.arrow-container.left {
  position: relative;
  float: left;
  height: 100%;
}

.arrow-container.right {
  position: relative;
  float: right;
  height: 100%;
}

.box-container {
  display: flex;
  gap: 5px;
}

.competition-container::-webkit-scrollbar {
  display: none;
}

.grey-container {
  position: relative;
  background-color: #474747;
  padding: 15px;
  border-radius: 12px;
}

@media (max-width: 700px) {
  .connect-wallet,
  .connect-wallet > div {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .connect-wallet > h1 {
    text-align: center;
  }
}
@media (max-width: 600px) {
  .dex {
    width: 100%;
    padding: 20px;
  }
}
@media (max-width: 1400px) {
  .competition {
    max-height: 90px;
    width: 446px;
  }
  .competition-container {
    padding: 5px 0px;
  }
}
@media (max-height: 680px) {
  .competition {
    width: 400px;
  }
}
@media (max-height: 650px) {
  .competition {
    width: 330px;
  }
}
@font-face {
  font-family: "Bahnschrift";
  src: url("assets/fonts/bahnschrift/BAHNSCHRIFT.TTF") format("truetype");
  font-style: normal;
  font-weight: 300;
}
@font-face {
  font-family: "Bahnschrift";
  src: url("assets/fonts/bahnschrift/BAHNSCHRIFT.TTF") format("truetype");
  font-style: italic;
  font-weight: 300;
}
@font-face {
  font-family: "Bahnschrift";
  src: url("assets/fonts/bahnschrift/BAHNSCHRIFT.TTF") format("truetype");
  font-style: normal;
  font-weight: 100;
}
@font-face {
  font-family: "Bahnschrift";
  src: url("assets/fonts/bahnschrift/BAHNSCHRIFT.TTF") format("truetype");
  font-style: italic;
  font-weight: 100;
}
div.switch-container {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}

div.switch-container i {
  display: inline-block;
  position: relative;
  top: -9px;
}

label.switch {
  font-size: 20px;
  color: #B2B2B2;
  font-weight: 500;
}

.btn-switch {
  display: inline-block;
  margin: 0px;
  position: relative;
}

.btn-switch > label.btn-switch-inner {
  margin: 0px;
  width: 168px;
  height: 44px;
  background: #282828;
  border-radius: 50px;
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
  /*box-shadow: 0px 0px 8px 0px rgba(17, 17, 17, 0.34) inset;*/
  display: block;
  cursor: pointer;
}

.btn-switch > label.btn-switch-inner:before {
  content: attr(data-on);
  position: absolute;
  font-size: 20px;
  font-weight: 500;
  top: 10px;
  right: 20px;
}

.btn-switch > label.btn-switch-inner:after {
  content: attr(data-off);
  width: 80px;
  height: 36px;
  background: #474747;
  color: #D9D9D9;
  border-radius: 26px;
  position: absolute;
  left: 4px;
  top: 4px;
  transition: all 0.3s ease;
  box-shadow: 0px 0px 6px -2px #111;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-switch input[type=checkbox] {
  width: 50px;
  height: 25px;
  opacity: 0;
  position: absolute;
  top: 0;
  z-index: 1;
  margin: 0px;
  cursor: pointer;
}

.btn-switch input[type=checkbox]:checked + label.btn-switch-inner:after {
  content: attr(data-on);
  left: 84px;
}

.btn-switch input[type=checkbox]:checked + label.btn-switch-inner:before {
  content: attr(data-off);
  right: auto;
  left: 20px;
}

.history {
  max-width: 100%;
}

.history-filter {
  display: flex;
  justify-content: space-between;
  margin: 1.5em;
}

.header {
  color: #B2B2B2;
}

.table {
  width: 100%;
  margin-bottom: 1em;
  overflow-x: auto;
}

.row {
  display: table-row;
}

.cell {
  display: table-cell;
  text-align: center;
  padding: 2em 0.5em;
  border-bottom: 2px solid #474747;
}

.table-icon {
  margin: 0 0.75em;
  scale: 1.2;
}

.logout-container {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #474747;
  padding: 0 10px;
  border-radius: 10px;
  height: 35px;
}
.logout-container span {
  display: block;
  cursor: pointer;
  color: #ffffff;
}

@media (max-width: 400px) {
  h1 {
    font-size: 22px;
  }
  p {
    margin-top: 20px;
  }
  p .logout-icon {
    margin-right: 0;
  }
}
.logout-window-container {
  color: #ffffff;
  max-width: 400px;
  min-width: 300px;
  max-height: 300px;
  background-color: #2c2c2c;
  border-radius: 5%;
  padding: 20px;
  margin: 20px;
}
.logout-window-container .logout-infographic {
  height: 150px;
}
.logout-window-container p {
  margin: 10px 0;
}
.logout-window-container img {
  max-height: 120px;
}

.win-btn {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}
.win-btn button {
  margin: 0 20px;
}

.logout-icon {
  width: 25px;
  cursor: pointer;
  margin-right: 10px;
}

@media (max-width: 1200px) {
  .logout-container {
    position: relative;
    top: 4px;
  }
}
@media (max-width: 1100px) {
  .logout-container {
    position: relative;
    top: 6px;
  }
}
textarea {
  color: white;
  background-color: #282828;
  border: 2px solid #64A560;
  border-radius: 10px;
  padding: 1em;
  resize: vertical;
  height: 10em;
  width: 30em;
}

.remove-wallet-icon {
  margin-left: 1em;
}

ul {
  margin: 0;
  line-height: 1.5em;
}

li.valid-wallet {
  list-style-type: "✔️";
}
li.valid-wallet > span {
  display: flex;
  justify-content: space-between;
}

li.invalid-wallet {
  list-style-type: "❌";
}

.whitelist div {
  display: flex;
  justify-content: space-between;
  gap: 1em;
}

.side-wallet {
  width: 400px;
  height: 93vh;
  position: fixed;
  top: 0.5vh;
  right: 0px;
  border-radius: 20px;
  padding: 3vh 30px;
  transition: 1s right;
  z-index: 5;
  background-color: rgba(47, 63, 50, 0.4);
  cursor: pointer;
}
.side-wallet:hover {
  background-color: rgba(47, 63, 50, 0.2);
}

button[data-testid=wallet-button] {
  transition: 0.85s;
  transition-delay: 0.2s;
  position: fixed;
  right: 240px;
  top: 34px;
}

.closed button[data-testid=wallet-button] {
  transition: 0.8s;
  transition-delay: 0s;
  right: 40px;
}

.side-wallet-inner {
  background: #282828;
  height: 93vh;
  width: 390px;
  position: fixed;
  top: 0.5vh;
  right: 0px;
  border-radius: 20px;
  padding: 3vh 10px 3vh 30px;
  transition: 1s right;
  z-index: 5;
  cursor: default;
}
.side-wallet-inner > .tabs {
  display: inline-flex;
  padding: 15px 0;
}
.side-wallet-inner > .tabs :hover {
  cursor: pointer;
}
.side-wallet-inner > .tabs > .tab {
  margin: 10px;
}
.side-wallet-inner > .tabs > .tab.active {
  color: #64A560;
}
.side-wallet-inner > .tab.container {
  min-height: 30vh;
}

.closed {
  right: -430px;
}

.wallet-balance {
  font-size: 32px;
  font-weight: 100;
  line-height: 1em;
  margin: 1em 0 1.5em 0;
}
.wallet-balance img {
  height: 24px;
  margin-right: 12px;
}
.wallet-balance div:nth-of-type(2) {
  font-size: 16px;
}
.wallet-balance .price-change-icon {
  height: 12px;
}

.token-list {
  gap: 1em;
  display: flex;
  flex-direction: column;
}

.token-container {
  color: #d9d9d9;
  display: flex;
  gap: 1em;
  align-items: center;
}
.token-container p {
  line-height: 20px;
}
.token-container p:nth-of-type(2) {
  font-size: 14px;
  font-weight: 100;
}
.token-container img {
  height: 50px;
}

.choose-wallet {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}
.choose-wallet h3 {
  margin-bottom: 1em;
}

.wallet-type {
  border-radius: 10px;
  background-color: #474747;
  color: #ffffff;
  border: 2px solid transparent;
  box-sizing: border-box;
  padding: 10px;
  cursor: pointer;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  height: 67px;
  width: 100%;
  font-size: 20px;
  display: inline-flex;
  align-items: center;
}

.wallet-type * {
  padding: 10px;
}

.close-side {
  transition: left 0.5s ease-in-out;
  position: absolute;
  left: 8px;
  top: 37px;
  opacity: 20%;
}
.close-side img {
  height: 16px;
}

.close-side-closed {
  transition: left 0.5s ease-in-out;
  position: absolute;
  left: -210px;
  top: 35px;
  opacity: 20%;
}
.close-side-closed img {
  height: 16px;
}

@media (max-width: 600px) {
  .closed {
    top: 96%;
    right: 0;
  }
  .side-wallet {
    transition: 1s top;
    display: flex;
    flex-direction: column;
    padding: 0;
    border-radius: 0px;
    width: 100%;
  }
  .side-wallet-inner {
    transition: 1s top;
    width: 90%;
    margin-top: 20px;
    padding: 20px;
  }
  .close-side {
    transition: bottom 0.5s ease-in-out;
    position: absolute;
    left: 50%;
    top: 0px;
    transform: translateX(-50%) rotate(270deg);
    opacity: 0.2;
  }
  .close-side-closed {
    transition: bottom 0.5s ease-in-out;
  }
  .close-side img {
    height: 16px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }
  button[data-testid=wallet-button] {
    position: absolute;
    right: 220px;
    transition: none;
    top: 28px;
  }
  .reversed {
    transform: rotate(-90deg) scale(1.2);
  }
  .closed button[data-testid=wallet-button] {
    right: 220px;
  }
  button[data-testid=wallet-button] {
    transition: none;
    position: absolute;
    right: 220px;
  }
}
@media (max-width: 391px) {
  button[data-testid=wallet-button] {
    right: 190px;
    top: 25px;
  }
}
@media (max-height: 700px) {
  .side-wallet-inner {
    overflow-y: auto;
  }
}
.campaign-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 0.5em;
  width: 95%;
  height: 13.5em;
  overflow-y: auto;
  margin-bottom: 2em;
}

.scroll-campaign > .campaign-container {
  background-color: #282828;
}
.scroll-campaign > .campaign-container .campaign-status {
  background-color: #474747;
}

.campaign-container {
  background-color: #474747;
  color: #ffffff;
  font-weight: 100;
  font-size: 9px;
  position: relative;
  padding: 10px 40px;
  border-radius: 15px;
  width: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.3em;
  cursor: pointer;
}
.campaign-container.main-campaign {
  background-color: #64A560;
}
.campaign-container h3 {
  font-weight: 300;
  align-self: flex-start;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.campaign-text-container {
  display: flex;
  align-items: center;
}

.campaign-status {
  background-color: #282828;
  position: absolute;
  top: 5px;
  right: 10px;
  border-radius: 20px;
  padding: 3px;
}
.campaign-status.ongoing {
  background-color: #2F3F32;
  color: #64A560;
}

.configuration {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.campaign-list::-webkit-scrollbar {
  width: 5px;
}

.campaign-list::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.campaign-list::-webkit-scrollbar-thumb {
  background: #888;
}

.campaign-list::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.campaign-list {
  scrollbar-width: thin;
  scrollbar-color: #888 #f1f1f1;
}

@media (max-width: 480px) {
  .campaign-list {
    height: 7em;
  }
  .campaign-list .campaign-container {
    background-color: #474747;
    color: #ffffff;
    font-weight: 100;
    font-size: 9px;
    position: relative;
    padding: 10px 45px;
    border-radius: 15px;
    width: 85px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.3em;
    cursor: pointer;
    height: 70px;
  }
}
.rank {
  background-color: #474747;
  color: #ffffff;
  font-size: 12px;
  font-weight: 100;
  padding: 15px 20px;
  border-radius: 10px;
  min-height: 30px;
  display: flex;
  position: relative;
  justify-content: space-between;
  align-items: center;
}
.rank div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 85%;
}
.rank [data-tooltip]::before {
  content: attr(data-tooltip);
  position: absolute;
  transform: translateX(-50%);
  background-color: #333;
  color: white;
  padding: 5px 10px;
  border-radius: 4px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  white-space: nowrap;
  z-index: 10;
}
.rank [data-tooltip]:hover::before {
  opacity: 1;
  z-index: 10;
}

.own-rank {
  background-color: #64A560;
}

.ranking {
  display: flex;
  flex-direction: column;
  gap: 0.2em;
}

.lambo {
  display: flex;
  gap: 1px;
}
.lambo img {
  height: 50px;
}

.gift-icon {
  height: 14px;
  margin-right: 0.5em;
}

.menu-competition {
  display: flex;
}

.tabs {
  font: normal normal 300 18px/16px Bahnschrift;
  display: flex;
  gap: 20px;
  font-size: 18px;
  cursor: pointer;
  margin: 0.5em 0;
}
.tabs > .tab.active {
  color: #64A560;
}

.tab-container {
  max-height: 450px;
  max-width: 496px;
  margin-bottom: 5px;
}

.user-ranking {
  max-height: 330px;
  overflow-y: auto;
}

.rules-container {
  max-width: 460px;
  max-height: 410px;
  justify-content: center;
  align-items: center;
  text-align: center;
  display: grid;
  background-color: #474747;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 0.2em;
  overflow-y: auto;
  grid-template-columns: repeat(1, 1fr);
}
.rules-container p {
  text-align: justify;
}
.rules-container a {
  position: relative;
  margin-top: 30px;
  color: #64A560;
}
.rules-container h1,
.rules-container p {
  margin-bottom: 20px;
}
.rules-container h2 {
  margin-top: 60px;
  margin-bottom: 30px;
}

.places-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.reward-container {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  text-align: center;
  gap: 10px;
}

.small-points {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 30px;
  text-align: justify;
}
.small-points span {
  font-weight: 600;
}

.reward-container span:first-child {
  color: #64A560;
}

.infographic-container {
  max-width: 100%;
  height: 450px;
  display: flex;
  justify-content: center;
}
.infographic-container img {
  width: 95%;
  height: auto;
}

.ranking-container {
  overflow-y: auto;
  height: 450px;
  max-width: 496px;
}

.rules-container::-webkit-scrollbar {
  display: none;
}

.ranking-container::-webkit-scrollbar {
  display: none;
}

.user-ranking::-webkit-scrollbar {
  display: none;
}

@media (max-width: 1600px) {
  .tab-container {
    max-height: 350px;
  }
  .infographic-container {
    max-width: 100%;
    max-height: 350px;
  }
  .competition-container {
    max-width: 400px;
  }
  .rules-container {
    max-width: 405px;
    max-height: 420px;
  }
  .ranking-container {
    max-height: 400px;
  }
  .user-ranking {
    max-height: 190px;
    overflow-y: auto;
  }
}
@media (max-width: 1100px) {
  .user-ranking {
    max-height: 150px;
  }
}
@media (max-width: 600px) {
  .infographic-container {
    max-height: 300px;
  }
}
@media (max-height: 680px) {
  .tab-container {
    max-height: 300px;
  }
  .infographic-container {
    max-height: 300px;
  }
  .ranking-container {
    max-height: 300px;
    max-width: 400px;
  }
  .user-ranking {
    max-height: 120px;
  }
}
@media (max-width: 500px) {
  .user-ranking {
    max-height: 250px;
  }
}
@media (max-height: 700px) {
  .infographic-container {
    max-height: 240px;
  }
}
@media (max-height: 610px) {
  .infographic-container {
    max-height: 220px;
  }
}
@media (max-height: 600px) {
  .infographic-container {
    max-height: 190px;
  }
}
.infographic {
  width: 300px;
  max-height: 450px;
  display: flex;
  justify-content: center;
}
.infographic img {
  width: 95%;
  height: auto;
}

.side-nav {
  height: 100vh;
  width: 250px;
  background-color: #474747;
  position: absolute;
  left: 0;
  z-index: 1000;
}
.side-nav ul {
  list-style: none;
  padding: 0;
}
.side-nav li {
  padding: 30px 20px;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.side-nav li:hover {
  background-color: #64A560;
}
.side-nav li img {
  margin-right: 20px;
  height: 25px;
}

.input-wrapper {
  position: relative;
  background-color: #474747;
  padding: 5px;
  width: 350px;
  margin-left: auto;
  border: none;
  border-radius: 5px;
}

input {
  background-color: transparent;
  border: none;
  padding: 5px;
  padding-left: 25px;
  max-width: 100%;
  box-sizing: border-box;
  color: white;
}

img.icon {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  height: 20px;
  margin-right: 10px;
}

.edit-window {
  position: absolute;
  left: 30%;
  top: 20%;
}

.create-window {
  position: absolute;
  left: 48%;
  top: 20%;
}
.create-window .create-container {
  padding: 20px;
}
.create-window .create-input {
  background-color: #474747;
  border: none;
  padding: 5px;
  border-radius: 5px;
  width: 300px;
  box-sizing: border-box;
  color: white;
  margin-top: 30px;
  height: 25px;
}

.create-section {
  margin-top: 30px;
}

.title-container {
  display: flex;
  align-items: center;
}
.title-container img {
  height: 20px;
  margin-left: 10px;
}

.edit-input {
  background-color: #474747;
  border: none;
  padding: 5px;
  border-radius: 5px;
  width: 200px;
  box-sizing: border-box;
  color: white;
  margin-top: 40px;
}

.edit-container {
  display: flex;
  gap: 40px;
  padding: 20px;
}
.edit-container select {
  background-color: #474747;
  border: none;
  padding: 5px;
  border-radius: 5px;
  width: 200px;
  box-sizing: border-box;
  color: white;
  margin-top: 40px;
}

.close-window {
  height: 25px;
  cursor: pointer;
}

.trash-icon {
  cursor: pointer;
}

.rows-container {
  display: flex;
  gap: 10px;
  font-size: 15px;
  font-weight: 300;
}
.rows-container .row {
  display: flex;
  background-color: #474747;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 3px;
  width: 70vw;
}
.rows-container .cell {
  flex: 0 0 150px;
  text-align: center;
  padding: 2em 0.6em;
  white-space: normal;
  word-wrap: break-word;
  overflow: hidden;
  border-bottom: none;
}

.affiliates-container {
  margin-left: 220px;
}
.affiliates-container .row {
  display: flex;
  padding: 5px 15px;
  border-radius: 10px;
  margin-bottom: 3px;
  width: 70vw;
}
.affiliates-container .row:hover {
  background-color: #B2B2B2;
}
.affiliates-container .cell {
  flex: 0 0 150px;
  text-align: center;
  padding: 2em 0.5em;
  white-space: normal;
  word-wrap: break-word;
  overflow: hidden;
  border-bottom: none;
}

.plans-container {
  margin-left: 300px;
}
.plans-container .row {
  display: flex;
  padding: 5px 15px;
  border-radius: 10px;
  margin-bottom: 3px;
  width: 35vw;
}
.plans-container .cell {
  flex: 0 0 200px;
  text-align: center;
  padding: 2em 0.5em;
  white-space: normal;
  word-wrap: break-word;
  overflow: hidden;
  border-bottom: none;
}

.users-container {
  margin-left: 220px;
}
.users-container .row {
  display: flex;
  padding: 5px 15px;
  border-radius: 10px;
  margin-bottom: 3px;
  width: 70vw;
}
.users-container .cell {
  flex: 0 0 200px;
  text-align: center;
  padding: 2em 0.5em;
  white-space: normal;
  word-wrap: break-word;
  overflow: hidden;
  border-bottom: none;
}

.scroll-container {
  overflow-y: auto;
  max-height: 70vh;
  overflow-x: hidden;
}

.scroll-container::-webkit-scrollbar {
  display: none;
}

.notification {
  cursor: pointer;
  padding: 0.8em;
  border-radius: 0.5em;
  display: flex;
  flex-direction: column;
  gap: 0.2em;
  border: 2px solid transparent;
  max-width: 350px;
}

span {
  word-break: break-word;
  overflow-wrap: break-word;
}

.notification > .time {
  font-size: 0.7em;
  color: #D9D9D9;
}

.notification > .notification-title {
  font-weight: bold;
  white-space: normal;
  word-break: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
}

.error {
  background-color: rgb(255, 60, 100);
  background-image: url("/assets/svg/icon-error-error.svg");
  background-position: left 7px center;
  background-repeat: no-repeat;
  background-size: contain;
  padding-left: 65px;
  background-size: 40px;
}

.warn {
  background-color: #ff6e40;
  background-image: url("/assets/svg/icon-error-warn.svg");
  background-position: left 7px center;
  background-repeat: no-repeat;
  background-size: contain;
  padding-left: 65px;
  background-size: 40px;
}

.info {
  background-color: #3acb7e;
  background-image: url("/assets/svg/icon-error-info.svg");
  background-position: left 7px center;
  background-repeat: no-repeat;
  background-size: contain;
  padding-left: 65px;
  background-size: 40px;
}

.paused {
  background-color: #3cbbff;
  background-image: url("/assets/svg/icon-error-pause.svg");
  background-position: left 7px center;
  background-repeat: no-repeat;
  background-size: contain;
  padding-left: 65px;
  background-size: 40px;
}

.notifications {
  position: fixed;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}

.notifications-provider-bottom-right {
  right: 2em;
  bottom: 2em;
  z-index: 1000 !important;
}

.notifications-provider-top-right {
  right: 2em;
  top: 2em;
}

.notifications-provider-bottom-left {
  left: 2em;
  bottom: 2em;
}

.notifications-provider-top-left {
  left: 2em;
  top: 2em;
}

.wc-bg {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9;
}

.wc-card {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 360px;
  width: calc(100% - 20px);
  max-height: 90vh;
  outline: 0;
  border-radius: 8px 8px 30px 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 10;
  box-sizing: border-box;
}
.wc-card a {
  text-decoration: none;
  color: inherit;
}

.wc-inside {
  width: 360px;
  max-height: 620px;
  position: relative;
  border-radius: 30px;
  border: 1px solid rgb(39, 42, 42);
  overflow: hidden;
  box-shadow: 0 6px 14px -6px rgba(10, 16, 31, 0.12), 0 10px 32px -4px rgba(10, 16, 31, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.1);
  background-color: rgb(20, 20, 20);
  color: rgb(228, 231, 231);
  top: 50px;
  z-index: 10;
  transition: opacity 0.5s ease-in-out;
}

.top-container {
  display: flex;
  width: 318px;
  height: 25px;
  padding: 20px;
  font-size: 21px;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-bottom: 1px solid rgb(39, 42, 42);
  margin-bottom: 20px;
}

.top-container img {
  height: 25px;
  padding: 15px 20px;
  position: absolute;
  right: 0;
  cursor: pointer;
}

.top-container img path {
  transition: fill 0.3s ease;
}

.top-container img:hover path {
  fill: red;
}

.mid-container {
  padding: 0px 20px 20px;
  display: flex;
  flex-direction: column;
}

.mobile {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 20px;
}
.mobile img {
  height: 16px;
  margin-right: 6px;
}
.mobile > div {
  display: flex;
  align-items: flex-start;
}
.mobile > div:first-child {
  color: #3396ff;
}
.mobile > div:nth-child(2) {
  color: rgb(148, 158, 158);
}

.top-container-loader {
  display: flex;
  height: 25px;
  padding: 20px;
  font-size: 21px;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 5px;
  position: relative;
}

.top-container-loader img {
  height: 25px;
  padding: 15px 20px;
  position: absolute;
  cursor: pointer;
}

.top-container-loader img:nth-child(2) {
  right: 20px;
}

.top-container-loader img:last-child {
  left: 20px;
  height: 18px;
  width: 10px;
}

.qr-code {
  background-color: rgb(255, 255, 255);
  border-radius: 30px;
  box-shadow: rgb(0, 0, 0) 0px 2px 5px;
  position: relative;
  width: 318px;
  height: 318px;
  align-self: center;
}

.qr-container {
  position: relative;
  width: 318px;
  height: 318px;
}

.qr-container svg {
  width: 100%;
  height: 100%;
}

.qr-container img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 96px;
  height: 96px;
  transform: translate(-50%, -50%);
  background-color: white;
}

.bottom-container {
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: inherit;
  justify-content: inherit;
  border-top: 1px solid rgb(39, 42, 42);
}
.bottom-container > :first-child {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  padding: 0px 10px;
  color: #3396ff;
}
.bottom-container > :first-child img {
  height: 16px;
  margin-right: 6px;
}
.bottom-container .icons {
  display: grid;
  grid-template-columns: repeat(4, 80px);
  justify-content: space-between;
}
.bottom-container .icons img {
  border-radius: 10px;
}
.bottom-container .icons button {
  border-radius: 10px;
  background-color: transparent;
  color: #ffffff;
  border: 2px solid transparent;
  cursor: pointer;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
  height: 100%;
  padding: 0;
  transition: all 0.2s ease 0s;
}
.bottom-container .icons button:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.bottom-container .icons > div {
  width: 80px;
  padding: 5px 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.bottom-container .icons p {
  font-size: 10px;
  margin-top: 10px;
}

.more-wallets {
  display: flex;
  align-items: center;
  justify-content: center;
}
.more-wallets > div {
  border: 1px solid rgb(39, 42, 42);
  border-radius: 10px;
  cursor: pointer;
}
.more-wallets > div img {
  height: 20px;
  width: 20px;
}
.more-wallets button {
  border-radius: 10px;
  background-color: transparent;
  color: #ffffff;
  border: 2px solid transparent;
  cursor: pointer;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
  height: 100%;
  padding: 0;
  transition: all 0.2s ease 0s;
}
.more-wallets button:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.more-wallets-container {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.more-wallet-inside {
  width: 53px;
  height: 53px;
  display: flex;
  flex-wrap: wrap;
  padding: 7px;
  border-radius: 15px;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5px;
  background-color: rgb(39, 42, 42);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}
.more-wallet-inside img {
  height: 20px;
  margin-bottom: 2px;
}

.wc-blue {
  background-color: #3396ff;
  height: 100px;
  width: 100%;
  z-index: 1;
  border-radius: 8px;
  position: absolute;
}
.wc-blue .wc-logo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 38px;
  padding: 5px 15px 5px 5px;
}
.wc-blue .wc-logo img {
  width: 170px;
}
.wc-blue button {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  background-color: rgb(20, 20, 20);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1);
  padding: 0;
}
.wc-blue button img {
  height: 12px;
}
.wc-blue button::after {
  content: "";
  position: absolute;
  inset: 0px;
  transition: background-color 0s ease 0s, all 0.2s ease 0s;
}

.wallets-container {
  overflow-y: auto;
  height: 600px;
  padding: 10px;
  justify-content: center;
}
.wallets-container > div {
  display: grid;
  grid-template-columns: repeat(4, 80px);
  justify-content: space-between;
  margin: -15px 10px;
  padding-top: 20px;
  padding-bottom: 80px;
}
.wallets-container > div p {
  font-size: 12px;
  margin-top: 10px;
}
.wallets-container button {
  border-radius: 10px;
  background-color: transparent;
  color: #ffffff;
  border: 2px solid transparent;
  cursor: pointer;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
  height: 100%;
  padding: 0;
  transition: all 0.2s ease 0s;
}
.wallets-container button:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.wallets-container::-webkit-scrollbar {
  display: none;
}

.wallets-container {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.go-back {
  height: 18px;
  width: 10px;
}

.search {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  position: relative;
}
.search button {
  background-color: transparent;
  height: 30px;
  width: 30px;
  padding: 0;
  position: absolute;
  left: 20px;
}

.search-input {
  position: relative;
}
.search-input input {
  background-color: rgb(59, 64, 64);
  border: none;
  border-radius: 30px;
  color: white;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  line-height: 28px !important;
  font-feature-settings: "case";
  caret-color: #3396ff;
  font-weight: 600;
  padding: 0px 10px 0px 34px;
}
.search-input img {
  left: 10px;
  top: 4px;
  pointer-events: none;
  position: absolute;
  width: 20px;
  height: 20px;
}

.wc-wallet-name {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 10px;
  cursor: pointer;
  width: 80px;
  padding: 5px 0px;
}
.wc-wallet-name img {
  border-radius: 10px;
  height: 60px;
  width: 60px;
}

.mid-container-load {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 60px 0;
}
.mid-container-load img {
  height: 100px;
  width: 100px;
  border-radius: 10px;
}
.mid-container-load > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.mid-container-load > div p {
  margin-top: 20px;
}

.bottom-container-load {
  padding: 0 20px;
  padding-bottom: 20px;
  padding-top: 20px;
  background-color: rgb(40, 42, 42);
  text-align: center;
  bottom: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.bottom-container-load p {
  color: rgb(148, 158, 158);
}

.loader {
  height: 120px;
  width: 120px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 30%;
}

.loader::before {
  content: "";
  background-image: conic-gradient(#3396ff 20deg, transparent 120deg);
  width: 150%;
  height: 150%;
  position: absolute;
  animation: rotate 2s linear infinite;
  border-radius: 30%;
}

.loader::after {
  content: "";
  width: 115px;
  height: 115px;
  background-color: rgb(20, 20, 20);
  position: absolute;
  border-radius: 30%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.loader img {
  z-index: 3;
  border-radius: 30%;
}

.wc-btn-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 35px;
  gap: 20px;
}

.wc-btn-container button {
  background-color: #3396ff;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 15px;
  height: 35px;
  font-size: 14px;
  font-weight: 600;
}

.wc-btn-container button img {
  height: 14px;
  margin-left: 3px;
}

.wc-btn-container button:nth-of-type(2) {
  border: 1px solid rgb(39, 42, 42);
  box-shadow: 0 6px 14px -6px rgba(10, 16, 31, 0.12), 0 10px 32px -4px rgba(10, 16, 31, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.1);
  background-color: rgb(20, 20, 20);
  color: #3396ff;
}

.qr-code-scan {
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@media (max-width: 430px) {
  .wc-card {
    top: auto;
    bottom: 5%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 420px;
  }
  .wc-inside {
    width: 100%;
  }
  .wallets-container {
    height: 440px;
  }
  .wallets-container > div {
    padding-bottom: 140px;
  }
}
.top-container-mobile {
  display: flex;
  height: 25px;
  padding: 20px;
  font-size: 21px;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 5px;
  position: relative;
}

.scan-me {
  right: 20px;
  height: 20px;
}

.top-container-mobile img {
  height: 25px;
  padding: 15px 20px;
  position: absolute;
  cursor: pointer;
  left: 20px;
}

.top-container-qr {
  display: flex;
  height: 25px;
  padding: 20px;
  font-size: 21px;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 5px;
  position: relative;
}

.top-container-qr img {
  height: 25px;
  padding: 15px 20px;
  position: absolute;
  cursor: pointer;
}

.top-container-qr img:nth-child(2) {
  right: 20px;
}

.top-container-qr img:last-child {
  left: 20px;
  height: 18px;
  width: 10px;
}

.wc-inside-mobile {
  width: 100%;
  min-height: 300px;
  position: relative;
  border-radius: 30px 30px 0 0;
  overflow: hidden;
  box-shadow: 0 6px 14px -6px rgba(10, 16, 31, 0.12), 0 10px 32px -4px rgba(10, 16, 31, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.1);
  background-color: rgb(20, 20, 20);
  color: rgb(228, 231, 231);
  position: absolute;
  top: 50px;
  z-index: 10;
  transition: height 1s ease, opacity 1s ease;
}

.bottom-container-mobile {
  padding: 0 20px;
  padding-bottom: 40px;
  padding-top: 30px;
  background-color: rgb(40, 42, 42);
  text-align: center;
  position: absolute;
  bottom: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.bottom-container-mobile p {
  color: rgb(148, 158, 158);
}

.mobil-wallets-container {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 80px);
  justify-content: space-between;
}
.mobil-wallets-container p {
  font-size: 14px;
}
.mobil-wallets-container img {
  border-radius: 10px;
}
.mobil-wallets-container button {
  border-radius: 10px;
  background-color: transparent;
  color: #ffffff;
  border: 2px solid transparent;
  cursor: pointer;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
  height: 100%;
  margin-bottom: 10px;
  padding: 0;
  transition: all 0.2s ease 0s;
}
.mobil-wallets-container button:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.mid-container-mobile {
  padding: 0px 20px 20px;
}

.wallets-container-mobile {
  overflow-y: auto;
  height: 400px;
  padding: 10px;
  justify-content: center;
}
.wallets-container-mobile > div {
  display: grid;
  grid-template-columns: repeat(4, 80px);
  justify-content: space-between;
  margin: -15px 10px;
  padding-top: 20px;
  padding-bottom: 80px;
}
.wallets-container-mobile > div p {
  font-size: 12px;
  margin-top: 10px;
}
.wallets-container-mobile button {
  border-radius: 10px;
  background-color: transparent;
  color: #ffffff;
  border: 2px solid transparent;
  cursor: pointer;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
  height: 100%;
  padding: 0;
  transition: all 0.2s ease 0s;
}
.wallets-container-mobile button:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.wallets-container-mobile::-webkit-scrollbar {
  display: none;
}

.wallets-container-mobile {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.mobile-wallets {
  display: flex;
  align-items: center;
  justify-content: center;
}

.mid-container-qr {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 0px 20px 20px;
}

.vesting-container {
  max-width: 400px;
  min-width: 400px;
}
.vesting-container p {
  color: #B2B2B2;
  font-size: 12px;
  font-weight: 300;
}
.vesting-container .grey-container {
  margin-bottom: 3px;
}
.vesting-container .green {
  color: #64A560;
}
.vesting-container .bought {
  display: flex;
}
.vesting-container .date-container {
  display: flex;
  flex-direction: column;
  align-items: end;
}

.bri-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.claim-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.title-vesting {
  display: flex;
  align-items: self-start;
  justify-content: space-between;
}
.title-vesting > div {
  display: flex;
  gap: 5px;
  align-items: center;
}
.title-vesting span {
  font-size: 16px;
}
.title-vesting p {
  font-size: 12px;
  color: #B2B2B2;
}
.title-vesting .available {
  font-size: 24px;
}

.close-date {
  font-size: 12px;
}

.amount {
  color: #B2B2B2;
}

.loader-bar {
  margin: 10px 0;
  width: 100%;
  height: 20px;
  background-color: #282828;
  border-radius: 5px;
  padding: 3px;
}
.loader-bar > div {
  background-color: #64A560;
  width: 60%;
  height: 100%;
  border-radius: 5px;
}

.vesting .vesting-container {
  min-width: 300px;
}
.vesting .bright-action-button > button span:nth-child(2) {
  font-size: 24px;
}
.vesting .bright-action-button > button span:nth-child(1) {
  font-size: 24px;
}

@media (max-width: 600px) {
  .title-claim > div {
    display: flex;
    flex-direction: column;
    align-items: start;
  }
  .vesting .bright-action-button > button span:nth-child(2) {
    font-size: 20px;
  }
  .vesting .bright-action-button > button span:nth-child(1) {
    font-size: 20px;
  }
  .vesting .bought {
    flex-direction: column;
  }
}
@media (max-width: 400px) {
  .claim-container {
    display: flex;
    justify-content: start;
    flex-direction: column;
  }
}
@font-face {
  font-family: "Bahnschrift";
  src: url("../assets/fonts/bahnschrift/BAHNSCHRIFT.TTF") format("truetype");
}
html {
  font-family: "Bahnschrift";
  color: #D9D9D9;
  background: black;
}

body {
  background: radial-gradient(circle at center, #0f0f0f, #1a1a1a 80%);
  padding: 0;
  margin: 0;
  height: 100vh;
  overflow-x: hidden;
  overflow-y: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

input:focus,
textarea:focus,
select:focus,
button:focus {
  outline: none;
}

p,
span,
h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0;
  margin: 0;
}

.main-container {
  width: 100vw;
  height: 100vh;
}

.navbar {
  padding: 20px;
  width: 100%;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  height: 70px;
}
.navbar img {
  height: 25px;
}

.navbar-menu {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  text-align: left;
  padding: 20px;
}

.navbar-start {
  display: flex;
}

.navbar-item {
  padding: 20px;
  color: #64A560;
  text-decoration: none;
}

.navbar-right {
  padding: 0 30px;
  text-align: right;
}

.spacer {
  width: 100%;
}

@media (max-width: 1200px) {
  .navbar {
    top: 0;
    left: 0;
    width: 15%;
    flex-flow: row nowrap;
    align-items: center;
  }
  .navbar-menu {
    flex-flow: row nowrap;
    align-items: flex-start;
    text-align: left;
    flex-direction: column;
  }
  .navbar-start {
    display: flex;
    flex-direction: column;
  }
  .navbar-item {
    margin-top: 20px;
    padding: 5px;
    color: #64A560;
    text-decoration: none;
  }
  .navbar-right {
    padding: 0 30px;
    text-align: right;
  }
  .spacer {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .navbar {
    width: 100%;
    padding: 0;
    padding-top: 10px;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    z-index: 5;
    height: 50px;
  }
  .navbar-menu {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    text-align: left;
    padding-top: 0;
  }
  .navbar-item {
    margin: 0;
    padding: 20px;
    color: #64A560;
    text-decoration: none;
  }
  .navbar-right {
    padding: 0 30px;
    text-align: right;
  }
  .spacer {
    width: 100%;
  }
  .navbar-start {
    display: flex;
    flex-direction: row;
  }
  .navbar-logo img {
    height: 20px;
  }
}
@media (max-height: 650px) {
  .navbar {
    height: auto;
  }
}
@media (max-height: 580px) {
  .navbar {
    height: 40px;
  }
}
main {
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-flow: column;
  align-items: center;
  align-content: center;
  row-gap: 20px;
  flex: 1;
}

@media (max-width: 600px) {
  main {
    padding: 8px;
  }
}
.main-title {
  font-size: 32px;
}

.bright-button {
  display: flex;
  flex-direction: column;
}

button:disabled {
  color: #D9D9D9;
  background-color: #282828;
  cursor: not-allowed;
}

.choose-wallet > button:disabled {
  display: none;
}

button {
  border-radius: 10px;
  background-color: #64A560;
  color: #D9D9D9;
  border: 2px solid transparent;
  box-sizing: border-box;
  padding: 0 40px;
  cursor: pointer;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  height: 35px;
  font-size: 14px;
}

.bright-action-button > button {
  background-color: #2F3F32;
  color: #64A560;
  height: 2.5em;
  width: 100%;
  border-radius: 12px;
  font: normal normal bold 29px/41px Bahnschrift;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.25em;
}
.bright-action-button > button span:nth-child(1) {
  color: #64A560;
  position: relative;
  top: 3px;
}
.bright-action-button > button span:nth-child(2) {
  color: #D9D9D9;
  position: relative;
  top: 3px;
}
.bright-action-button > button:disabled {
  color: #D9D9D9;
  background-color: #282828;
  cursor: not-allowed;
}

.wallet_type {
  border-radius: 10px;
  background-color: #282828;
  color: white;
  border: 2px solid transparent;
  box-sizing: border-box;
  margin: 14px;
  padding: 10px;
  cursor: pointer;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  height: 67px;
  width: 225px;
  font-size: 20px;
  display: inline-flex;
  justify-content: space-evenly;
  align-items: center;
}

.wallet_type * {
  padding: 10px;
}

.footer {
  width: 100%;
  box-sizing: border-box;
  padding: 16px;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.field {
  position: relative;
}

info {
  position: relative;
}

info:not([data-tooltip=""])::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 1.25em;
  height: 1.25em;
  margin-left: 0.25em;
  margin-right: 0.25em;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  transform: translateY(-20%);
  float: right;
}

info::after {
  content: attr(data-tooltip);
  display: none;
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.5em;
  background-color: #000;
  color: #fff;
  border-radius: 0.25em;
  font-size: 0.8em;
  white-space: nowrap;
}

info:not([data-tooltip=""]):hover::after {
  display: block;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #474747;
  border-radius: 8px;
}

::-webkit-scrollbar-thumb {
  border: 2px solid #474747;
  border-radius: 8px;
  background: #2C2C2C;
}

.timer {
  animation: rotation 1s infinite linear;
}

@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
.grey-container {
  position: relative;
  background-color: #474747;
  padding: 15px;
  border-radius: 12px;
}

.tou-container {
  max-width: 450px;
  max-height: 650px;
  overflow-y: auto;
}
.tou-container p {
  margin: 20px 0;
  line-height: 1.2;
  font-weight: 300;
}
.tou-container .point {
  font-weight: bold;
}
.tou-container .ammendment p {
  margin: 2px 0;
}
.tou-container a {
  color: inherit;
  cursor: pointer;
}

.letters-space {
  letter-spacing: 3px;
}

.paragraph-space {
  margin-right: 2px;
}

.logout-window {
  display: flex;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.green {
  color: #64A560;
}

@media (max-height: 680px) {
  .bright-action-button > button {
    max-height: 65px;
  }
  .bright-action-button > button span:nth-child(1) {
    color: #64A560;
    font-size: 22px;
  }
  .bright-action-button > button span:nth-child(2) {
    color: #D9D9D9;
    font-size: 22px;
  }
}

/*# sourceMappingURL=data:application/json;charset=utf-8,%7B%22version%22:3,%22sourceRoot%22:%22%22,%22sources%22:%5B%22../../style/input-range.scss%22,%22../../style/variables.scss%22,%22../../style/input-money.scss%22,%22../../style/modal.scss%22,%22../../style/card.scss%22,%22../../style/fonts.scss%22,%22../../style/switch.scss%22,%22../../style/history.scss%22,%22../../style/logout.scss%22,%22../../style/input-text.scss%22,%22../../style/import-user.scss%22,%22../../style/side-wallet.scss%22,%22../../style/campaigns.scss%22,%22../../style/ranking.scss%22,%22../../style/competition-menu.scss%22,%22../../style/infographic.scss%22,%22../../style/admin-panel.scss%22,%22../../style/admin-table.scss%22,%22../../style/notification.scss%22,%22../../style/notifications_provider.scss%22,%22../../style/wc-desktop.scss%22,%22../../style/wc-mobile.scss%22,%22../../style/vesting.scss%22,%22../../style/main.scss%22%5D,%22names%22:%5B%5D,%22mappings%22:%22;AAEA;EACE;EACA;EACA;EACA,kBCHQ;EDIR;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGF;AAAA;EAEE;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;;AAEF;EACE;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGF;EACE;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGF;EACE;EAIA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA,kBCnFc;;;ADsFhB;EACE;EACA;EACA;EACA;EACA;EACA;;;AAGF;EACE;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA,kBCzHc;;;AD4HhB;EACE;EACA;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGF;EACE,kBClJK;EDmJL;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGF;EACE,kBClKK;EDmKL;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;;;AAGF;EACE,kBCzLK;ED0LL;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AEzMF;EACE;EACA;EACA;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;;;AAGF;EACE;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGF;EACE;;;AAGF;EACE;EACA;EACA;EACA;;;AAGF;EACE;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGF;EACE;;;AAGF;EACE,ODhEW;;;ACmEb;AAAA;EAEE;EACA;;;AAGF;EACE;IACE;IACA;IACA;;;ACjFJ;EACE;EACA;EACA,kBFDa;EEEb;EACA;EACA;EACA,OFPW;EEQX;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;;AAGF;EACE;;AAGF;EACE;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;;AACA;EACE;EACA;;AAEF;EACE;EACA;EACA,OF5CO;EE6CP;EACA;;AAEF;EACE;EACA;EACA,OFnDO;EEoDP;EACA;EACA;;AAEF;EACE;EACA,OFzDU;;AE6Dd;EACE,OF9DY;EE+DZ;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA,kBF7EC;EE8ED;EACA;;AAEA;EACE;EACA;;;AAMR;EACE;EACA;EACA;EACA;;AACA;EACE;EACA;EACA;;AAEF;EACE;;AAEF;EACE;;;AAIJ;EACE;;;AAGF;EACE;EACA;;;AAGF;EACE;EACA;EACA;;;AAGF;AAAA;EAEE;EACA;;;AAGF;EACE;EACA;;;AAGF;EACE;EACA;;;AAGF;EACE;EACA;;;AAGF;EACE;;;AAGF;EACE;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA,YFrKc;EEsKd;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;;AACA;EACE;;;AAIJ;EACE;;;AAGF;EACE;EACA;;;AAGF;EACE;IACE;;EAGF;IACE;;EAGF;IACE;;;AAIJ;EACE;IACE;IACA;IACA;;EAEA;IACE;;EAGF;IACE;;;AAKN;EACE;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;;;AAEF;EAEI;IACE;;;AC5PN;EACE;EACA;EACA,kBHDa;EGEb;EACA;EACA,OHNW;EGOX;EACA;EACA;EACA;EACA;EAEA;EACA;;;AAGF;EACE;;AACA;EACE,OHnBY;;;AGuBhB;EACE;EACA;EACA;EACA;EACA;EACA,kBHxBK;EGyBL;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;;;AAGF;EACE;EACA;EACA;;;AAGF;EACE;EACA;;;AAGF;EACE;;;AAGF;EACE;EACA,kBHvEK;EGwEL;EACA;;;AAGF;EACE;AAAA;IAEE;IACA;IACA;;EAEF;IACE;;;AAIJ;EACE;IACE;IACA;;;AAGJ;EACE;IACE;IACA;;EAEF;IACE;;;AAKJ;EACE;IACE;;;AAIJ;EACE;IACE;;;ACrHJ;EACE;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;;AC3BF;EACE;EACA;EACA;;;AAGF;EACE;EACA;EACA;;;AAGF;EACE;EACA,OLVW;EKWX;;;AAGF;EACE;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA,YLzBQ;EK0BR;EACA;EACA;EACA;AACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA,YL7CK;EK8CL,OLpDW;EKqDX;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGF;EACE;EACA;;;AAGF;EACE;EACA;EACA;;;ACnFF;EACE;;;AAGF;EACE;EACA;EACA;;;AAGF;EACE,ONPW;;;AMUb;EACE;EACA;EACA;;;AAGF;EACE;;;AAGF;EACE;EACA;EACA;EACA;;;AAGF;EACE;EACA;;;AC9BF;EACE;EACA;EACA;EACA;EACA,kBPFK;EOGL;EACA;EACA;;AAEA;EACE;EACA;EACA,OAfS;;;AAkBb;EACE;IACE;;EAEF;IACE;;EACA;IACE;;;AAIN;EACE,OA9BW;EA+BX;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;;AAEF;EACE;;AAEF;EACE;;;AAIJ;EACE;EACA;EACA;;AAEA;EACE;;;AAIJ;EACE;EACA;EACA;;;AAGF;EACE;IACE;IACA;;;AAIJ;EACE;IACE;IACA;;;AC7EJ;EACI;EACA,kBRCM;EQAN;EACA;EACA;EACA;EACA;EACA;;;ACRJ;EACI;;;AAEJ;EACI;EACA;;;AAGJ;EACI;;AACA;EACI;EACA;;;AAIR;EACI;;;AAGJ;EACI;EACA;EACA;;;ACvBJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;;;AAIJ;EACE;EACA;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;;;AAGF;EACE,YV9BQ;EU+BR;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;;AAEA;EACE;;AAGF;EACE;;AAGF;EACE,OVzDU;;AU6Dd;EACE;;;AAIJ;EACE;;;AAGF;EACE;EACA;EACA;EACA;;AAEA;EACE;EACA;;AAGF;EACE;;AAGF;EACE;;;AAIJ;EACE;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;;AAEA;EACE;;AAGF;EACE;EACA;;AAGF;EACE;;;AAIJ;EACE;EACA;EACA;;AAEA;EACE;;;AAIJ;EACE;EACA,kBV3HK;EU4HL,OHjIW;EGkIX;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGF;EACE;;;AAGF;EACE;EACA;EACA;EACA;EACA;;AAEA;EACE;;;AAIJ;EACE;EACA;EACA;EACA;EACA;;AAEA;EACE;;;AAIJ;EACE;IACE;IACA;;EAEF;IACE;IACA;IACA;IACA;IACA;IACA;;EAEF;IACE;IACA;IACA;IACA;;EAEF;IACE;IACA;IACA;IACA;IACA;IACA;;EAEF;IACE;;EAGF;IACE;IACA;IACA;IACA;;EAEF;IACE;IACA;IACA;IACA;;EAEF;IACE;;EAEF;IACE;;EAGF;IACE;IACA;IACA;;;AAIJ;EACE;IACE;IACA;;;AAIJ;EACE;IACE;;;AC/OJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGF;EACE,kBXRQ;;AWSR;EACE,kBXPG;;;AWWP;EACE,kBXZK;EWaL,OJlBW;EImBX;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AACA;EACE,kBXhCY;;AWkCd;EACE;EACA;EACA;EACA;;;AAIJ;EACE;EACA;;;AAGF;EACE,kBX9CQ;EW+CR;EACA;EACA;EACA;EACA;;AACA;EACE,kBXjDe;EWkDf,OXxDY;;;AW4DhB;EACE;EACA;EACA;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;EACA;;;AAGF;EACE;IACE;;EAEA;IACE;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;;AC3GN;EACE,kBZKK;EYJL,OLDW;EKEX;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AACA;EACE;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;;;AAIJ;EACE,kBZxCc;;;AY2ChB;EACE;EACA;EACA;;;AAGF;EACE;EACA;;AACA;EACE;;;AAIJ;EACE;EACA;;;AC5DF;EACE;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;;AACA;EACE,ObXY;;;AaehB;EACE;EACA;EACA;;;AAEF;EACE;EACA;;;AAEF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AACA;EACE;;AAEF;EACE;EACA;EACA,Ob3CY;;Aa8Cd;AAAA;EAEE;;AAGF;EACE;EACA;;;AAGJ;EACE;EACA;EACA;;;AAEF;EACE;EACA;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;;AAEA;EACE;;;AAIJ;EACE,OblFc;;;AaqFhB;EACE;EACA;EACA;EACA;;AACA;EACE;EACA;;;AAIJ;EACE;EACA;EACA;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAGF;EACE;IACE;;EAGF;IACE;IACA;;EAEF;IACE;;EAGF;IACE;IACA;;EAGF;IACE;;EAGF;IACE;IACA;;;AAIJ;EACE;IACE;;;AAIJ;EACE;IACE;;;AAIJ;EACE;IACE;;EAEF;IACE;;EAEF;IACE;IACA;;EAEF;IACE;;;AAIJ;EACE;IACE;;;AAIJ;EACE;IACE;;;AAIJ;EACE;IACE;;;AAIJ;EACE;IACE;;;AC5LJ;EACC;EACC;EACA;EACA;;AACA;EACE;EACA;;;ACLJ;EACE;EACA;EACA,kBfCK;EeAL;EACA;EACA;;AAEA;EACE;EACA;;AAEF;EACE;EACA;EACA;EACA;;AAEA;EACE,kBfpBU;;AesBZ;EACE;EACA;;;AAKN;EACE;EACA,kBf1BK;Ee2BL;EACA;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;;;AAEF;EACE;EACA;EACA;;AAEA;EACE;;AAGF;EACE,kBfpEG;EeqEH;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAIJ;EACE;;;AAGF;EACE;EACA;;AAEA;EACE;EACA;;;AAGJ;EACE,kBf9FK;Ee+FL;EACA;EACA;EACA;EACA;EACA;EACA;;;AAEF;EACE;EACA;EACA;;AAEA;EACE,kBf7GG;Ee8GH;EACA;EACA;EACA;EACA;EACA;EACA;;;AAIJ;EACE;EACA;;;AAEF;EACE;;;ACnIF;EACE;EACA;EACA;EACA;;AACA;EACE;EACA,kBhBDG;EgBEH;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGJ;EACE;;AACA;EACE;EACA;EACA;EACA;EACA;;AAEA;EACE,kBhB9BO;;AgBkCX;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGJ;EACE;;AAEA;EACE;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;;AAIJ;EACE;;AACA;EACE;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGJ;EACE;EACA;EACA;;;AAEF;EACE;;;AChGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGF;EACE;EACA;;;AAGF;EACE;EACA,OjBlBW;;;AiBqBb;EACE;EACA;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;;AClEF;EACI;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;;;AAGF;EACE;EACA;;;AAGF;EACE;EACA;;;AAGF;EACE;EACA;;;ACzBJ;EACE;EACA;EACA;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;;;AAIJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EAEA;EACA;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;;AAEA;EACE;EACA;;AAGF;EACE;EACA;;AAEA;EACE;;AAGF;EACE;;;AAKN;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;;;AAGF;EACE;;;AAGF;EACE;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;;AAEF;EACE;EACA;EACA;;;AAGF;EACE;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;;AAIJ;EACE;EACA;EACA;;AAEA;EACE;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;;AAGJ;EACE;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;;;AAKN;EACE;EACA;EACA;;AACA;EACE;EACA;EACA;;AACA;EACE;EACA;;AAGJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;;;AAKN;EACE;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AACA;EACE;EACA;;;AAGJ;EACE;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;EACA;;AAEA;EACE;;AAIJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;;AAIJ;EACE;EACA;EACA;EACA;;;AAKJ;EACE;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;;AAGJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;;;AAKN;EACE;;;AAGF;EACE;EACA;;;AAGF;EACE;EACA;;;AAEF;EACE;EACA;EACA;EACA;EACA;;AACA;EACE;EACA;EACA;EACA;EACA;EACA;;;AAIJ;EACE;;AACA;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;;;AAIJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;;;AAIJ;EACE;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;;AAEA;EACE;;;AAKN;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;;;AAIJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAEF;EACE;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGF;EACE;EACA;;;AAGF;EACE;EACA;EAEA;EACA;;;AAGF;EACE;EACA;EACA;;;AAEF;EACE;IACE;;EAEF;IACE;;;AAIJ;EACE;IACE;IACA;IACA;IACA;IACA;;EAGF;IACE;;EAGF;IACE;;EAEA;IACE;;;ACpkBN;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAEF;EACE;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;;;AAGF;EACE;;;AAGF;EACE;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EAEA;EACA;EACA;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;;;AAIJ;EACE;EACA;EACA;EACA;;AAEA;EACE;;AAGF;EACE;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;;;AAKN;EACE;;;AAGF;EACE;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;;AAGJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;;;AAMN;EACE;;;AAGF;EACE;EACA;;;AAGF;EACE;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;;;ACxLF;EACI;EACA;;AAEA;EACI,OrBDK;EqBEL;EACA;;AAGJ;EACI;;AAGJ;EACI,OrBdQ;;AqBiBZ;EACI;;AAGJ;EACI;EACA;EACA;;;AAIR;EACI;EACA;EACA;;;AAGJ;EACI;EACA;EACA;;;AAGJ;EACI;EACA;EACA;;AAEA;EACI;EACA;EACA;;AAGJ;EACI;;AAGJ;EACI;EACA,OrBtDK;;AqByDT;EACI;;;AAIR;EACI;;;AAGJ;EACI,OrBnES;;;AqBsEb;EACI;EACA;EACA;EACA,kBrB3EM;EqB4EN;EACA;;AAEA;EACI,kBrBlFQ;EqBmFR;EACA;EACA;;;AAKJ;EACI;;AAGJ;EACI;;AAGJ;EACI;;;AAIR;EAEQ;IACI;IACA;IACA;;EAKJ;IACI;;EAGJ;IACI;;EAGJ;IACI;;;AAKZ;EACI;IACI;IACA;IACA;;;AC5GR;EACE;EACA;;AAGF;EACE;EACA,OtB/BW;EsBgCX;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGF;AAAA;AAAA;AAAA;EAIE;;;AAGF;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;EAQE;EACA;;;AAGF;EACE;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;;;AAIJ;EACE;EACA;EACA;EACA;EACA;;;AAGF;EACE;;;AAGF;EACE;EACA,OtBjGc;EsBkGd;;;AAGF;EACE;EACA;;;AAGF;EACE;;;AAGF;EACE;IACE;IACA;IACA;IACA;IACA;;EAGF;IACE;IACA;IACA;IACA;;EAGF;IACE;IACA;;EAGF;IACE;IACA;IACA,OtBtIY;IsBuIZ;;EAGF;IACE;IACA;;EAGF;IACE;;;AAIJ;EACE;IACE;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;EAGF;IACE;IACA;IACA;IACA;IACA;;EAGF;IACE;IACA;IACA,OtB3KY;IsB4KZ;;EAGF;IACE;IACA;;EAGF;IACE;;EAGF;IACE;IACA;;EAIA;IACE;;;AAKN;EACE;IACE;;;AAIJ;EACE;IACE;;;AAIJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGF;EACE;IACE;;;AAIJ;EACE;;;AAGF;EACE;EACA;;;AAGF;EACE,OtB5OW;EsB6OX,kBtB1OQ;EsB2OR;;;AAIA;EACE;;;AAIJ;EACE;EACA,kBtBxPc;EsByPd,OtB1PW;EsB2PX;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGF;EACE,kBtBhQiB;EsBiQjB,OtBvQc;EsBwQd;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE,OtBlRY;EsBmRZ;EACA;;AAGF;EACE,OtBzRS;EsB0RT;EACA;;AAGF;EACE,OtB/RS;EsBgST,kBtB7RM;EsB8RN;;;AAIJ;EACE;EACA,kBtBpSQ;EsBqSR;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGF;EACE;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE,YtB/WK;EsBgXL;;;AAGF;EACE;EACA;EACA,YtB1Xa;;;AsB6Xf;EACE;;;AAGF;EACE;IACE;;EAGF;IACE;;;AAIJ;EACE;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;;AAEA;EACE;EACA;EACA;;AAGF;EACE;;AAKA;EACE;;AAGJ;EACE;EACA;;;AAIJ;EACE;;;AAGF;EACE;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;;;AAGF;EACE,OtBhcc;;;AsBmchB;EACE;IACE;;EAEA;IACE,OtBxcU;IsBycV;;EAGF;IACE,OtB9cO;IsB+cP%22,%22file%22:%22main.css%22%7D */
