.slider-container {
  position: relative;
  height: 27px;
  border-radius: 10px;
  background-color: #2B2B2B;
  margin-top: 18px;
  margin-bottom: 1em;
}

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

.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-runnable-track .slider-disabled,
.slider::-moz-range-track .slider-disabled {
  cursor: default;
}

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

.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: #B2B2B2;
}

.slider-tick-day.disabled {
  background-color: #B2B2B2;
}

.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: -32px;
  position: relative;
}
.thumb-parent > div {
  color: #d0d0d0;
  background-color: #a2a2a2;
}

.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: 25px;
  height: 25px;
  border-radius: 50px;
  user-select: none;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
  z-index: 5;
  transition: 1s;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.slider-thumb-short-new:hover {
  width: 260px;
}
.slider-thumb-short-new:hover .lock-style-two {
  display: none;
}
.slider-thumb-short-new:hover .lock-style-one {
  display: none;
}
.slider-thumb-short-new:hover .thumb-info {
  display: block;
  position: absolute;
  color: #2C2C2C;
}
.slider-thumb-short-new:hover span {
  display: none;
}

.thumb-info {
  display: none;
  position: absolute;
}

.lock-style-one {
  height: 10px;
  margin-left: 2px;
}

.lock-style-two {
  height: 15px;
}

.slider-disabled::-webkit-slider-thumb {
  cursor: default;
}

.slider-disabled::-moz-range-thumb {
  cursor: default;
}

@media (max-width: 600px) {
  .slider-thumb-short-new:hover {
    width: 25px;
  }
  .slider-thumb-short-new:hover .lock-style-two {
    display: block;
  }
  .slider-thumb-short-new:hover .lock-style-one {
    display: block;
  }
  .slider-thumb-short-new:hover .thumb-info {
    display: none;
  }
  .slider-thumb-short-new:hover span {
    display: block;
  }
}
@media (max-height: 650px) {
  .slider-container {
    margin-bottom: 0.5em;
  }
}
@media (max-height: 580px) {
  .slider-container {
    margin-bottom: 0em;
  }
}
.money-input {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.money-input label {
  font-weight: 300;
  font-size: 20px;
}

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

.mi-value {
  font-size: 24px;
  background-color: transparent;
  width: 100%;
  border: None;
  line-height: 24px;
  font-weight: 400;
  color: #D9D9D9;
  padding-left: 0;
}

.mi-value:disabled {
  color: #B2B2B2;
}

.mi-value-unchanged {
  font-size: 24px;
  background-color: transparent;
  width: 100%;
  border: None;
  line-height: 24px;
  font-weight: 400;
  color: #A2A2A2;
  padding-left: 0;
}

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

.help-cursor {
  cursor: help;
}

.default-cursor {
  cursor: default;
}

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

.money-input > div:nth-of-type(2) {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.money-input select {
  background-color: #2C2C2C;
  color: white;
  border: none;
  border-radius: 30px;
  height: 30px;
  max-width: 100px;
  min-width: 100px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: var(--url) left 2px center, #2C2C2C;
  background-size: 25px, auto, auto;
  background-repeat: no-repeat;
  padding-left: 35px;
}

.money-input option {
  color: black;
}

.money-input p {
  color: #B2B2B2;
  font-size: 12px;
  margin-left: 5px;
}

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

@media (max-height: 660px) {
  .money-input {
    flex-direction: column;
    align-items: initial;
    gap: 0.2em;
  }
}
@media (max-width: 600px) {
  .money-input {
    flex-direction: column;
    align-items: initial;
  }
  .mi-value {
    text-align: left;
    font-size: 24px;
  }
  .mi-label {
    font-size: 15px;
  }
  .info:not([data-tooltip=""]):hover::after {
    position: relative;
    left: 120px;
  }
  .money-input > div {
    text-align: left;
    align-items: left;
  }
  .money-input label {
    font-size: 20px;
  }
}
@media (max-height: 650px) {
  .mi-value {
    text-align: left;
    font-size: 23px;
  }
  .money-input label {
    font-size: 18px;
  }
}
.price-wrap {
  display: flex;
  width: auto;
  justify-content: flex-start;
  align-items: center;
}
.price-wrap #price_value {
  width: 100px;
  white-space: nowrap;
  cursor: help;
}
.price-wrap .lock {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 25px;
  width: 25px;
  background-color: #A2A2A2;
  border-radius: 50%;
  margin-top: -3px;
}
.price-wrap .lock img {
  height: 15px;
  width: 15px;
}
.price-wrap info[data-tooltip-input-price]::after {
  content: attr(data-tooltip-input-price);
  display: none;
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-40%);
  padding: 0.5em;
  background-color: #000;
  color: #fff;
  border-radius: 0.25em;
  white-space: nowrap;
  font-size: 12px;
}
@media screen and (max-width: 600px) {
  .price-wrap info[data-tooltip-input-price]::after {
    white-space: pre-wrap;
    min-width: 104%;
  }
}

.modal {
  max-width: 505px;
  width: auto;
  background-color: #2C2C2C;
  border-radius: 20px;
  border: 0;
  box-sizing: border-box;
  color: #D9D9D9;
  display: none;
  flex-direction: column;
  font-size: 20px;
  line-height: 32px;
  justify-content: center;
  padding: 10px;
  z-index: 1;
  gap: 1em;
  text-align: center;
}
.modal .grey-container {
  text-align: left;
  padding: 10px 15px;
  height: 3em;
  line-height: 26px;
}
.modal .grey-container > div > p:last-child {
  font-size: 25px;
}
.modal .grey-container > div > p:first-child {
  font-size: 15px;
}
.modal .grey-container img {
  height: 36px;
  align-self: center;
}
.modal .bright-button > button {
  background-color: #2F3F32;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64A560;
  font-weight: bold;
  font-size: 28px;
  height: 2.5em;
  padding: 20px;
  border-radius: 12px;
}

.modal[open] {
  display: flex;
  z-index: 8;
}

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

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

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

.top-buttons {
  display: flex;
  justify-content: space-between;
  position: relative;
  height: 50px;
  width: 100%;
  margin-bottom: 25px;
}

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

.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;
}

.modal-green {
  color: #64A560;
}

.current-step-icon {
  position: absolute;
  top: 0;
  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;
}
.current-step-icon img {
  height: 40px;
  padding: 10px;
}

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

.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;
}

.icon-success {
  width: 25%;
}

@media (max-width: 500px) {
  .transaction-data > div p:nth-child(1) {
    font-size: 20px;
  }
  .transaction-data > div p:nth-child(2) {
    font-size: 20px;
  }
  .step-arrow-container {
    padding: 0 10px;
  }
}
@media (max-height: 900px) {
  .modal {
    max-width: 450px;
    max-height: 600px;
    gap: 0.2em;
  }
  .modal h2 {
    font-size: 1em;
  }
  .modal .grey-container {
    height: 50px;
  }
  .modal .grey-container > div > p:last-child {
    font-size: 20px;
  }
  .modal .grey-container > div > p:first-child {
    font-size: 14px;
  }
  .current-step-icon {
    width: 40px;
    height: 40px;
  }
  .transaction-data {
    display: flex;
    flex-direction: column;
    gap: 3px;
  }
}
@media (max-height: 680px) {
  .modal {
    max-width: 400px;
    max-height: 560px;
    gap: 0.2em;
  }
  .modal .infographic .step-number {
    line-height: 1em;
    font-size: 18px;
  }
  .modal h2 {
    font-size: 1em;
  }
  .modal .grey-container {
    height: 42px;
  }
  .modal .grey-container > div > p:last-child {
    font-size: 20px;
  }
  .modal .grey-container > div > p:first-child {
    font-size: 14px;
  }
  .current-step-icon {
    width: 40px;
    height: 40px;
  }
  .transaction-data {
    display: flex;
    flex-direction: column;
    gap: 3px;
  }
}
@media (max-height: 660px) {
  .modal[open] {
    margin-bottom: 50px;
  }
}
.card {
  box-sizing: border-box;
  padding: 32px 50px;
  background-color: #2C2C2C;
  border-radius: 12px;
  font-size: 16px;
  color: #D9D9D9;
  margin: 6em;
  display: flex;
  flex-direction: column;
}

.card-vesting {
  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: 340px;
  min-width: 340px;
  margin-bottom: 20px;
}
.card-vesting .bright-action-button > button {
  width: 320px;
}

.card h1 {
  text-transform: uppercase;
  font: normal normal normal 29px/41px Bahnschrift;
}

.waiting-for-wallet .card {
  padding: 0;
}

.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;
  cursor: pointer;
}
.bright-action-button > button span {
  color: #64A560;
}
.bright-action-button > button div span {
  color: #D9D9D9 !important;
  cursor: pointer !important;
}

.dex {
  padding: 10px 10px 10px 10px;
  gap: 5px;
  margin-top: 0em;
  box-shadow: 0px 10px 30px -5px #4a5a3d, 0px 10px 60px -5px #424c35, 0px 10px 1000px 0px #38462d;
  width: 430px;
}

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

.currency-msg {
  position: absolute;
  right: 60px; /* adjust as necessary */
  top: 20%;
  transform: translateY(-50%);
  background-color: #282828;
  padding: 10px;
  border-radius: 5px 5px 0px 5px;
  margin-right: 25px;
}

.value-container {
  color: #64A560;
  border: 1px solid #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: 10px;
  }
}
@media (max-width: 400px) {
  .card {
    position: relative;
    top: 0px;
  }
  .card h1 {
    text-transform: uppercase;
    font: normal normal normal 25px/37px Bahnschrift;
  }
  .card h1 .green {
    font: normal normal normal 25px/37px Bahnschrift;
  }
}
@media (max-width: 600px) {
  .bright-action-button > button {
    max-height: 65px;
  }
  .bright-action-button > button span:nth-child(1) {
    color: #64A560;
    font-size: 24px;
  }
  .bright-action-button > button span:nth-child(2) {
    color: #D9D9D9;
    font-size: 24px;
  }
}
@media (max-width: 370px) {
  .card {
    max-width: 350px;
  }
}
@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;
  }
}
@media (max-height: 650px) {
  .dex {
    gap: 3px;
  }
  .card h1 {
    text-transform: uppercase;
    font: normal normal normal 22px/34px Bahnschrift;
  }
  .card h1 .green {
    font: normal normal normal 22px/34px Bahnschrift;
  }
  .card h1 .grey-container {
    padding: 6px;
  }
  .value-container {
    padding: 12px;
    font-size: 14px;
  }
}
.disabled-summary {
  opacity: 0;
  visibility: hidden;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.5s, max-height 0.5s, visibility 0.5s step-end;
  padding: 0;
  border: 0;
  margin: -2px;
}

.summary {
  opacity: 1;
  visibility: visible;
  max-height: 51px;
  transition: opacity 2s, max-height 1s, visibility 0.5s step-start;
}

.safari-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.safari-modal-content {
  background-color: #2C2C2C;
  border-radius: 5px;
  width: 60vw;
  height: 40vh;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
}
@media (max-width: 600px) {
  .safari-modal-content {
    width: 90vw;
    height: 40vh;
  }
}

.safari-modal-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.safari-modal-header {
  display: flex;
  justify-content: space-between;
}
.safari-modal-header h1 {
  padding: 10px;
  color: #D9D9D9;
  text-transform: uppercase;
  font: normal normal normal 24px/33px Bahnschrift;
}
.safari-modal-header h1 span {
  color: #64A560;
  word-break: break-word;
  overflow-wrap: break-word;
}

.safari-modal-close {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  width: 24px;
  height: 24px;
  padding: 10px;
}

.safari-modal-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
  color: #FBFBFB;
  font-size: 18px;
  height: 100%;
}
.safari-modal-body p {
  color: #64A560;
}

@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;
  background: #474747;
  border-radius: 8px;
  height: 30px;
  padding: 0 2px;
}

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

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

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

.btn-switch > label.btn-switch-inner {
  margin: 0px;
  width: 130px;
  height: 30px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  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;
  top: 2px;
}

.btn-switch > label.btn-switch-inner:before {
  content: attr(data-on);
  position: absolute;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 500;
  top: 4px;
  right: 17px;
}

.btn-switch > label.btn-switch-inner:after {
  content: attr(data-off);
  width: 60px;
  height: 25px;
  background-color: #64a560;
  border-radius: 8px;
  position: absolute;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0.5px;
}

.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: 70px;
}

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

@media (max-height: 650px) {
  .btn-switch input[type=checkbox]:checked + label.btn-switch-inner:before {
    content: attr(data-off);
    left: 17px;
    top: 2px;
  }
  .btn-switch > label.btn-switch-inner:before {
    top: 2px;
    right: 17px;
  }
  .btn-switch > label.btn-switch-inner:after {
    content: attr(data-off);
    width: 60px;
    height: 22px;
    border-radius: 5px;
    top: 0.5px;
  }
  div.switch-container {
    border-radius: 8px;
    height: 27px;
    padding: 0 2px;
  }
}
.history {
  max-width: 100%;
}
.history h3 {
  font-weight: 200;
}
.history ::-webkit-scrollbar {
  width: 6px;
}
.history ::-webkit-scrollbar-track {
  background: #474747;
  border-radius: 6px;
}
.history ::-webkit-scrollbar-thumb {
  border-radius: 6px;
  background: #B2B2B2;
}
.history ::-webkit-scrollbar-thumb:hover {
  background: #A2A2A2;
}
.history [data-tooltip-right]::before,
.history [data-tooltip-active]::before,
.history [data-tooltip-created]::before,
.history [data-tooltip-rejected]::before,
.history [data-tooltip-status]::before,
.history [data-tooltip-date]::before,
.history [data-tooltip]::before {
  position: absolute;
  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;
}
.history [data-tooltip-right]:hover::before,
.history [data-tooltip-active]:hover::before,
.history [data-tooltip-created]:hover::before,
.history [data-tooltip-rejected]:hover::before,
.history [data-tooltip-status]:hover::before,
.history [data-tooltip-date]:hover::before,
.history [data-tooltip]:hover::before {
  opacity: 1;
  z-index: 10;
}
.history [data-tooltip-right]::before {
  transform: translateX(-70%);
  content: attr(data-tooltip-right);
}
.history [data-tooltip-active]::before {
  transform: translateX(-63%);
  content: attr(data-tooltip-active);
}
.history [data-tooltip-rejected]::before {
  transform: translateX(-65%);
  content: attr(data-tooltip-rejected);
}
.history [data-tooltip-status]::before {
  transform: translateX(-40%);
  content: attr(data-tooltip-status);
  width: 200px;
  white-space: normal;
}
.history [data-tooltip-created]::before {
  transform: translateX(-63%);
  content: attr(data-tooltip-created);
  width: 200px;
  white-space: normal;
}
.history [data-tooltip]::before {
  transform: translateX(30%);
  content: attr(data-tooltip);
  width: 180px;
  white-space: normal;
}
.history [data-tooltip-date]::before {
  transform: translateX(30%);
  content: attr(data-tooltip-date);
}

.history-filter {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.history-filter .switch-container {
  transform: scale(0.7);
}
.history-filter .btn-switch > label.btn-switch-inner {
  width: 140px;
}
.history-filter .btn-switch input[type=checkbox] {
  width: 70px;
}
.history-filter .btn-switch > label.btn-switch-inner:after {
  content: attr(data-off);
  width: 50px;
  height: 35px;
}
.history-filter .btn-switch input[type=checkbox]:checked + label.btn-switch-inner:before {
  content: attr(data-off);
  right: auto;
  left: 0px;
}
.history-filter label.switch {
  font-size: 18px;
}
.history-filter .btn-switch > label.btn-switch-inner:before {
  content: attr(data-on);
  font-size: 18px;
}
.history-filter .btn-switch input[type=checkbox]:checked + label.btn-switch-inner:after {
  content: attr(data-on);
  left: 72px;
}

.table {
  overflow-y: scroll;
  overflow-x: hidden;
  font-size: 12px;
  font-weight: 100;
  height: 35vh;
}

.table::-webkit-scrollbar {
  display: none;
}

.row {
  display: table-row;
  background-color: #474747;
}
.row > div:first-child {
  border-radius: 10px 0 0 10px;
}
.row > div:last-child {
  border-radius: 0 10px 10px 0;
}

.cell {
  display: table-cell;
  vertical-align: middle;
  border-bottom: 2px solid #2B2B2B;
  padding: 0.8em 1.35em;
  height: 50px;
  white-space: nowrap;
  color: #D9D9D9;
  box-sizing: border-box;
}
.cell .currency-change {
  background-color: #474747;
  border-radius: 20px;
  padding: 2px;
  width: 80px;
}
.cell .currency-icon {
  height: 18px;
}
.cell div {
  display: flex;
  gap: 0.2em;
  align-items: center;
  justify-content: space-evenly;
  position: relative;
}

.header {
  color: #D9D9D9;
  position: sticky;
  top: 0;
  z-index: 11;
  font-size: 14px;
}
.header .cell {
  width: 150px;
}

.status-icon {
  height: 20px;
}

@media (max-width: 1800px) {
  .table {
    height: 30vh;
  }
}
@media (max-width: 1200px) {
  .table {
    height: 30vh;
  }
}
@media (max-width: 600px) {
  .table {
    height: 30vh;
  }
}
@media (max-height: 450px) {
  #transactionHistoryDesktop {
    display: none;
  }
  #transactionHistoryTab {
    display: block;
    height: 30vh;
  }
}
.flex-history {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  max-width: 100%;
  background: #2B2B2B;
  height: 25vh;
  font-size: 12px;
  color: #D9D9D9;
  font-weight: 100;
}
.flex-history ::-webkit-scrollbar {
  width: 0px;
}
.flex-history ::-webkit-scrollbar-track {
  background: #474747;
  border-radius: 0px;
}
.flex-history ::-webkit-scrollbar-thumb {
  border-radius: 0px;
  background: #B2B2B2;
}
.flex-history ::-webkit-scrollbar-thumb:hover {
  background: #A2A2A2;
}
.flex-history [data-tooltip-right]::before,
.flex-history [data-tooltip-active]::before,
.flex-history [data-tooltip-created]::before,
.flex-history [data-tooltip-rejected]::before,
.flex-history [data-tooltip-status]::before,
.flex-history [data-tooltip-date]::before,
.flex-history [data-tooltip]::before {
  position: absolute;
  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;
}
.flex-history [data-tooltip-right]:hover::before,
.flex-history [data-tooltip-active]:hover::before,
.flex-history [data-tooltip-created]:hover::before,
.flex-history [data-tooltip-rejected]:hover::before,
.flex-history [data-tooltip-status]:hover::before,
.flex-history [data-tooltip-date]:hover::before,
.flex-history [data-tooltip]:hover::before {
  opacity: 1;
  z-index: 10;
}
.flex-history [data-tooltip-right]::before {
  transform: translateX(-70%);
  content: attr(data-tooltip-right);
}
.flex-history [data-tooltip-active]::before {
  transform: translateX(-63%);
  content: attr(data-tooltip-active);
}
.flex-history [data-tooltip-rejected]::before {
  transform: translateX(-65%);
  content: attr(data-tooltip-rejected);
}
.flex-history [data-tooltip-status]::before {
  transform: translateX(-40%);
  content: attr(data-tooltip-status);
  width: 200px;
  white-space: normal;
}
.flex-history [data-tooltip-created]::before {
  transform: translateX(-63%);
  content: attr(data-tooltip-created);
  width: 200px;
  white-space: normal;
}
.flex-history [data-tooltip]::before {
  transform: translateX(30%);
  content: attr(data-tooltip);
  width: 180px;
  white-space: normal;
}
.flex-history [data-tooltip-date]::before {
  transform: translateX(30%);
  content: attr(data-tooltip-date);
}

.flex-row-header {
  width: 100%;
  margin-bottom: 2px;
}

.flex-row-header {
  display: flex;
  justify-content: flex-start;
  height: 41.38px;
  position: sticky;
  font-size: 14px;
  top: 0;
  z-index: 11;
}
.flex-row-header > div:first-child {
  border-radius: 10px 0 0 10px;
}
.flex-row-header > div:last-child {
  border-radius: 0 10px 10px 0;
}

.flex-header-cell {
  background-color: #474747;
  padding: 0.8em 1.35em;
  width: 25%;
}

.flex-rows {
  min-width: 100%;
  width: 100%;
  margin-bottom: 2px;
  height: 20vh;
  overflow-y: auto;
  overflow-x: hidden;
}

.bg-grey {
  background-color: #474747;
}

.bg-dark-grey {
  background-color: #3D3D3D;
}

.flex-row {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  min-width: 100%;
  margin-bottom: 2px;
}
.flex-row > div:first-child {
  border-radius: 10px 0 0 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-left: 3%;
}
.flex-row > div:nth-child(2) {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  overflow: initial;
  padding-left: 3%;
}
.flex-row > div:nth-child(3) {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  overflow: initial;
  padding-left: 5%;
}
.flex-row > div:last-child {
  border-radius: 0 10px 10px 0;
  align-items: center;
  justify-content: center;
}

.flex-row-cell {
  height: 50px;
  width: 100%;
  display: flex;
  align-items: center;
  color: #FFFFFF;
}
.flex-row-cell .currency-change {
  border-radius: 20px;
  padding: 2px;
  width: 80px;
}
.flex-row-cell .currency-icon {
  height: 18px;
}
.flex-row-cell div {
  display: flex;
  gap: 0.2em;
  align-items: center;
  justify-content: space-evenly;
  position: relative;
}
.flex-row-cell span {
  white-space: nowrap;
}

.flex-row-logo {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  min-width: 100%;
  margin-bottom: 2px;
}
.flex-row-logo > div:first-child {
  border-radius: 10px 0 0 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.flex-row-logo > div:nth-child(2) {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  overflow: initial;
}
.flex-row-logo > div:last-child {
  border-radius: 0 10px 10px 0;
  align-items: center;
  justify-content: center;
}

.flex-row-cell-double {
  height: 50px;
  width: 100%;
  display: flex;
  align-items: center;
  color: #FFFFFF;
}
.flex-row-cell-double .order-reward {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  font-size: 12px;
  overflow: hidden;
}
.flex-row-cell-double .order-reward div {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  white-space: nowrap;
}
.flex-row-cell-double .currency-change {
  border-radius: 20px;
  padding: 2px;
  width: 80px;
}
.flex-row-cell-double .currency-icon {
  height: 18px;
}
.flex-row-cell-double div {
  display: flex;
  gap: 0.2em;
  align-items: center;
  justify-content: space-evenly;
  position: relative;
}
.flex-row-cell-double span {
  white-space: nowrap;
}

.no-wrap {
  white-space: nowrap;
}

.logout-container {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #474747;
  padding: 0 10px;
  border-radius: 10px;
  height: 35px;
  top: 34px;
  position: fixed;
  right: 10px;
  transition: 0.8s;
  transition-delay: 0.2s;
}
.logout-container[data-language=ja] span {
  font-size: x-small;
}
.logout-container span {
  display: block;
  cursor: pointer;
  color: #ffffff;
}

@media (max-width: 430px) {
  h1 {
    font-size: 22px;
  }
  p {
    margin-top: 20px;
  }
  p .logout-icon {
    margin-right: 0;
  }
}
.closed .logout-container {
  top: 34px;
  right: -200px;
  transition: 0.8s;
  transition-delay: 0s;
}

.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;
}

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

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

.reflink-container {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.reflink-container h2 {
  font-size: 30px;
  text-align: center;
}
.reflink-container > div:first-child {
  text-align: center;
  display: flex;
  justify-content: center;
}
.reflink-container > div {
  background-color: #474747;
  padding: 15px;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.reflink-container > div > div {
  display: flex;
  align-items: flex-end;
}
.reflink-container > div img {
  height: 20px;
  width: 20px;
  margin-right: 15px;
  cursor: pointer;
  filter: brightness(0) saturate(100%) invert(56%) sepia(30%) saturate(588%) hue-rotate(69deg) brightness(98%) contrast(89%);
}
.reflink-container p {
  font-size: 12px;
  font-weight: 100;
}

.copy-reflink {
  cursor: pointer;
}

@media (max-height: 800px) {
  .reflink-container {
    gap: 3px;
  }
  .reflink-container > div {
    padding: 12px;
  }
}
.infographic img {
  width: 40%;
  height: auto;
}
.infographic .step-svg-container {
  display: flex;
  justify-content: center;
}
.infographic .step-icon {
  height: 90px;
  position: relative;
  top: -1em;
}
.infographic .step-number {
  line-height: 1em;
  font-size: 24px;
}
.infographic .step-number p:nth-child(1) {
  font-size: 14px;
  font-weight: 100;
}
.infographic .active {
  filter: brightness(0) saturate(100%) invert(56%) sepia(30%) saturate(588%) hue-rotate(69deg) brightness(98%) contrast(89%);
}
.infographic .step-even,
.infographic .step-odd {
  position: relative;
}
.infographic .step-even .step-description,
.infographic .step-odd .step-description {
  font-size: 18px;
  width: 30%;
  line-height: 1.5em;
  position: absolute;
  top: 1.5em;
  text-align: left;
}
.infographic .step-even .step-svg-container > img:nth-of-type(1),
.infographic .step-odd .step-svg-container > img:nth-of-type(1) {
  position: relative;
}
.infographic .step-odd .step-description {
  left: 2.8em;
}
@media screen and (max-width: 340px) {
  .infographic .step-odd .step-description {
    left: 2.5em;
  }
}
@media screen and (max-width: 300px) {
  .infographic .step-odd .step-description {
    left: 2.2em;
  }
}
@media screen and (max-width: 280px) {
  .infographic .step-odd .step-description {
    left: 1.5em;
  }
}
.infographic .step-odd .step-svg-container > img:nth-of-type(1) {
  left: 3px;
}
.infographic .step-even .step-description {
  right: 3em;
}
@media screen and (max-width: 340px) {
  .infographic .step-even .step-description {
    right: 2.5em;
  }
}
@media screen and (max-width: 300px) {
  .infographic .step-even .step-description {
    right: 2.2em;
  }
}
@media screen and (max-width: 280px) {
  .infographic .step-even .step-description {
    right: 1.5em;
  }
}
.infographic .step-even .step-svg-container {
  display: flex;
  justify-content: center;
  flex-direction: row-reverse;
}
.infographic .step-even .step-svg-container > img:nth-of-type(1) {
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}
.infographic .step-even .step-svg-container > img:nth-of-type(1) {
  right: 3px;
}

.svg-active {
  filter: brightness(0) saturate(100%) invert(56%) sepia(30%) saturate(588%) hue-rotate(69deg) brightness(98%) contrast(89%);
  height: 90px;
  position: relative;
  top: -1em;
}

.animation-container {
  position: relative;
  width: 194px;
  position: relative;
  width: 40%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.animation-container img {
  height: 50px;
}

.flip-coin {
  position: absolute;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  animation: flipCoin 8s linear infinite;
}

.front,
.back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
}

.back {
  transform: rotateY(180deg);
  top: 0;
  z-index: 1;
}

.front {
  z-index: 20;
}

.front .step-icon,
.back .step-icon {
  position: absolute;
  top: -1em;
  left: 60px;
  height: 90px;
}

.front .step-icon:nth-child(2),
.back .step-icon:nth-child(2) {
  left: 60px;
  height: 20px;
  top: 10px;
}

.animated {
  animation: rotateClock 2s linear infinite;
  transform-origin: 50% 70%;
}

@media (max-height: 900px) {
  .infographic .step-number {
    line-height: 1.4em;
    font-size: 18px;
  }
  .infographic .step-icon {
    height: 60px;
    position: relative;
    top: -1em;
    width: 40%;
    max-width: 194px;
    aspect-ratio: 1;
  }
  .infographic .step-even .step-description,
  .infographic .step-odd .step-description {
    font-size: 14px;
    line-height: 1.5em;
    position: absolute;
    width: 31%;
    top: 1.5em;
    text-align: left;
  }
  .front .step-icon,
  .back .step-icon {
    position: absolute;
    top: -1em;
    left: 50px;
    height: 60px;
  }
  .front .step-icon:nth-child(2),
  .back .step-icon:nth-child(2) {
    top: 0;
    left: 50px;
    height: 15px;
  }
}
@keyframes rotateClock {
  to {
    transform: rotate(360deg);
  }
}
@keyframes flipCoin {
  0%, 25% {
    transform: rotateY(0deg);
    /* Stay on the front for the first 25% of the time */
  }
  50% {
    transform: rotateY(180deg);
    /* Flip to the back at the midpoint */
  }
  50%, 75% {
    transform: rotateY(180deg);
    /* Stay on the back for the next 25% of the time */
  }
  100% {
    transform: rotateY(360deg);
    /* Flip back to the front at the end */
  }
}
@media (max-height: 660px) {
  .infographic .step-even .step-description,
  .infographic .step-odd .step-description {
    font-size: 14px;
    line-height: 1.5em;
    position: absolute;
    width: 35%;
    top: 1.5em;
    text-align: left;
    right: 25px;
  }
  .step-odd .step-description {
    left: 3em;
  }
  .step-odd .step-svg-container > img:nth-of-type(1) {
    left: 3px;
  }
}
.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: 125px;
  top: 34px;
}

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

.wallet-balance {
  font-size: 32px;
  font-weight: 100;
  line-height: 1em;
  margin: 2em 0 1em 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;
}

@media (max-height: 450px) {
  .wallet-balance {
    margin: 3em 0 0 0;
  }
}
.side-wallet-inner {
  background: #2B2B2B;
  height: 93vh;
  width: 390px;
  position: fixed;
  top: 0.5vh;
  right: 0px;
  border-radius: 20px;
  padding: 3vh 10px 3vh 30px;
  transition: 1s right;
  cursor: default;
  z-index: 5;
}
.side-wallet-inner .wallet-section {
  border: 2px solid #474747;
  border-radius: 12px;
  padding: 8px;
  margin-bottom: 25px;
}
@media screen and (min-width: 600px) {
  .side-wallet-inner .wallet-section {
    margin-right: 20px;
  }
}
.side-wallet-inner .wallet-section > .second-tab {
  margin-top: 80px;
}
.side-wallet-inner .wallet-section > .tabs {
  display: inline-flex;
  background: #474747;
  margin-bottom: 25px;
  border-radius: 6px;
}
.side-wallet-inner .wallet-section > .tabs :hover {
  cursor: pointer;
}
.side-wallet-inner .wallet-section > .tabs > .tab {
  padding: 5px;
  margin: 5px;
}
.side-wallet-inner .wallet-section > .tabs > .tab.active {
  background-color: #64a560;
  padding: 5px;
  border-radius: 5px;
}
.side-wallet-inner .wallet-section > .tab.container {
  min-height: 30vh;
  margin-bottom: 20px;
}
.side-wallet-inner .wallet-section > .tabs-full-width {
  display: inline-flex;
  background: #474747;
  margin-bottom: 25px;
  border-radius: 6px;
  width: 100%;
}
.side-wallet-inner .wallet-section > .tabs-full-width :hover {
  cursor: pointer;
}
.side-wallet-inner .wallet-section > .tabs-full-width > .tab {
  padding: 5px;
  margin: 5px;
  width: 33.3%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.side-wallet-inner .wallet-section > .tabs-full-width > .tab.active {
  background-color: #64a560;
  padding: 5px;
  border-radius: 5px;
}

button[data-testid=network-button] {
  width: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #474747;
  transition: 0.85s;
  transition-delay: 0.2s;
  position: fixed;
  right: 325px;
  padding-left: 10px;
  top: 20px;
}
button[data-testid=network-button] img {
  height: 25px;
}
button[data-testid=network-button] img:nth-child(2) {
  margin-left: 5px;
  height: 20px;
}

.closed button[data-testid=network-button] {
  width: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #474747;
  transition: 0.8s;
  transition-delay: 0s;
  padding-left: 10px;
  top: 34px;
  right: 250px;
}
.closed button[data-testid=network-button] img {
  height: 25px;
}
.closed button[data-testid=network-button] img:nth-child(2) {
  margin-left: 5px;
  height: 20px;
}

button[data-testid=language-button] {
  width: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #474747;
  transition: 0.85s;
  transition-delay: 0.2s;
  position: fixed;
  right: 325px;
  padding-left: 10px;
  top: 60px;
}
button[data-testid=language-button] img {
  height: 25px;
}
button[data-testid=language-button] img:nth-child(2) {
  margin-left: 5px;
  height: 20px;
}

button[data-testid=wallet-language-button] {
  width: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #474747;
  transition: 0.85s;
  transition-delay: 0.2s;
  position: fixed;
  right: 10px;
  padding-left: 10px;
  top: 20px;
}
button[data-testid=wallet-language-button] img {
  height: 25px;
}
button[data-testid=wallet-language-button] img:nth-child(2) {
  margin-left: 5px;
  height: 20px;
}

.closed button[data-testid=network-button] {
  width: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #474747;
  transition: 0.8s;
  transition-delay: 0s;
  padding-left: 10px;
  top: 34px;
  right: 250px;
}
@media screen and (max-width: 600px) {
  .closed button[data-testid=network-button] {
    top: 90px;
    left: 20px;
  }
}
.closed button[data-testid=network-button] img {
  height: 25px;
}
.closed button[data-testid=network-button] img:nth-child(2) {
  margin-left: 5px;
  height: 20px;
}

.closed button[data-testid=language-button] {
  width: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #474747;
  transition: 0.8s;
  transition-delay: 0s;
  padding-left: 10px;
  top: 34px;
  right: 330px;
}
@media screen and (max-width: 600px) {
  .closed button[data-testid=language-button] {
    top: 30px;
    right: 150px;
  }
}
.closed button[data-testid=language-button] img {
  height: 25px;
}
.closed button[data-testid=language-button] img:nth-child(2) {
  margin-left: 5px;
  height: 20px;
}

.closed button[data-testid=wallet-language-button] {
  width: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #474747;
  transition: 0.8s;
  transition-delay: 0s;
  padding-left: 10px;
  top: 34px;
  right: 50px;
}
@media screen and (max-width: 600px) {
  .closed button[data-testid=wallet-language-button] {
    top: 30px;
    right: 150px;
  }
}
.closed button[data-testid=wallet-language-button] img {
  height: 25px;
}
.closed button[data-testid=wallet-language-button] img:nth-child(2) {
  margin-left: 5px;
  height: 20px;
}

.closed {
  right: -430px;
}

.token-list {
  gap: 1em;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  max-height: 30vh;
}

.active-tokens-container {
  gap: 1em;
  display: flex;
  flex-direction: column;
}

.token-container {
  color: #d9d9d9;
  display: flex;
  gap: 1em;
  align-items: center;
  position: relative;
}
.token-container info {
  cursor: help;
}
.token-container info[data-tooltip-asset]::after {
  content: attr(data-tooltip-asset);
  display: none;
  position: absolute;
  bottom: 100%;
  left: 30px;
  transform: translateX(10px);
  padding: 0.5em;
  background-color: #000;
  color: #fff;
  border-radius: 0.25em;
  white-space: nowrap;
  font-size: 12px;
}
@media screen and (max-width: 600px) {
  .token-container info[data-tooltip-asset]::after {
    white-space: pre-wrap;
    min-width: 80%;
  }
}
.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;
}

.meta-icon {
  background-color: #64a560;
  padding: 3px;
  position: absolute;
  height: 20px;
  width: 20px;
  right: 30px;
  border-radius: 2px;
  cursor: pointer;
  transition: 0.5s;
}
.meta-icon img {
  height: 20px;
  width: 20px;
}
.meta-icon:hover {
  transform: scale(1.2);
}

.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-container {
  width: 100%;
  position: relative;
}

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

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

.select-container {
  position: relative;
}

.network-container {
  position: fixed;
  width: 230px;
  max-height: 200px;
  background-color: #474747;
  border-radius: 10px;
  padding: 5px;
  z-index: 10;
  transition: 0.8s;
  transition-delay: 0.2s;
  margin-top: 5px;
  top: 54px;
  right: 155px;
}

.language-container {
  position: fixed;
  width: 105px;
  max-height: 200px;
  background-color: #474747;
  border-radius: 10px;
  padding: 5px;
  z-index: 10;
  transition: 0.8s;
  transition-delay: 0.2s;
  margin-top: 5px;
  right: 280px;
  top: 93px;
}

.wallet-language-container {
  position: fixed;
  width: 105px;
  max-height: 200px;
  background-color: #474747;
  border-radius: 10px;
  padding: 5px;
  z-index: 10;
  transition: 0.8s;
  transition-delay: 0.2s;
  margin-top: 5px;
  right: 10px;
  top: 55px;
}

.closed .network-container {
  position: absolute;
  right: 480px;
  width: 230px;
  max-height: 200px;
  background-color: #474747;
  border-radius: 10px;
  padding: 5px;
  z-index: 10;
  transition: 0.8s;
  transition-delay: 0s;
  margin-top: 5px;
  top: 50px;
}

.closed .language-container {
  position: absolute;
  right: 485px;
  width: 105px;
  max-height: 200px;
  background-color: #474747;
  border-radius: 10px;
  padding: 5px;
  z-index: 10;
  transition: 0.8s;
  transition-delay: 0s;
  margin-top: 5px;
  top: 40px;
}

.closed .wallet-language-container {
  position: absolute;
  right: 470px;
  width: 105px;
  max-height: 200px;
  background-color: #474747;
  border-radius: 10px;
  padding: 5px;
  z-index: 10;
  transition: 0.8s;
  transition-delay: 0s;
  margin-top: 5px;
  top: 0px;
}

.network-tab {
  display: flex;
  align-items: center;
  padding: 10px;
  cursor: pointer;
  border-radius: 10px;
  transition: 0.2s;
}
.network-tab:hover {
  background-color: lightgrey;
  border-radius: 10px;
  color: #2c2c2c;
}
.network-tab img {
  height: 20px;
  margin-right: 8px;
}

.language-tab {
  display: flex;
  align-items: center;
  padding: 10px;
  cursor: pointer;
  border-radius: 10px;
  transition: 0.2s;
}
.language-tab:hover {
  background-color: lightgrey;
  border-radius: 10px;
  color: #2c2c2c;
}
.language-tab img {
  height: 20px;
  margin-right: 8px;
}

.wallet-language-tab {
  display: flex;
  align-items: center;
  padding: 10px;
  cursor: pointer;
  border-radius: 10px;
  transition: 0.2s;
}
.wallet-language-tab:hover {
  background-color: lightgrey;
  border-radius: 10px;
  color: #2c2c2c;
}
.wallet-language-tab img {
  height: 20px;
  margin-right: 8px;
}

.count-down-container {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #474747;
  display: flex;
  align-items: center;
  border-top: 1px solid black;
  border-left: 1px solid black;
  border-right: 1px solid white;
  border-bottom: 1px solid white;
  padding: 5px;
  margin: 5px;
  width: 70px;
}
.count-down-container span {
  font-size: 16px;
}

.countdown-dots-container {
  display: flex;
  align-items: center;
}

.countdown-text {
  display: flex;
  align-items: self-end;
}
.countdown-text span {
  font-size: 14px;
}

.timer-dot {
  border-radius: 100%;
  border: 1px solid white;
  margin: 3px;
}

.timer-dot:nth-child(1) {
  animation: preloader 0.6s ease-in-out alternate infinite;
}

.timer-dot:nth-child(2) {
  animation: preloader 0.6s ease-in-out alternate 0.2s infinite;
}

.timer-dot:nth-child(3) {
  animation: preloader 0.6s ease-in-out alternate 0.4s infinite;
}

@keyframes preloader {
  100% {
    transform: scale(2);
  }
}
@media (max-width: 1000px) {
  .closed button[data-testid=network-button] {
    right: 40px;
    top: 100px;
  }
  .closed button[data-testid=language-button] {
    right: 40px;
    top: 145px;
  }
  .closed button[data-testid=wallet-language-button] {
    right: 40px;
    top: 34px;
  }
  .closed .network-container {
    position: fixed;
    top: 90%;
    width: 100vw;
    max-height: 300px;
    background-color: #474747;
    border-radius: 10px;
    padding: 15px;
    z-index: 10;
    transition: 0.8s;
    transition-delay: 0s;
    left: 50%;
    transform: translateX(-50%);
  }
  .closed .language-container {
    position: fixed;
    top: calc(100% - 112px);
    width: 100vw;
    height: 112px;
    background-color: #474747;
    border-radius: 10px;
    padding: 15px;
    z-index: 10;
    transition: 0.8s;
    transition-delay: 0s;
    left: 50%;
    transform: translateX(-50%);
  }
  .closed .wallet-language-container {
    position: fixed;
    top: calc(100% - 112px);
    width: 100vw;
    height: 112px;
    background-color: #474747;
    border-radius: 10px;
    padding: 15px;
    z-index: 10;
    transition: 0.8s;
    transition-delay: 0s;
    left: 50%;
    transform: translateX(-50%);
  }
  .tabs {
    display: inline-flex;
    background: #474747;
    margin-bottom: 25px;
    border-radius: 6px;
    font-size: 13px;
  }
}
@media (max-width: 600px) {
  .closed {
    top: 96%;
    right: 0;
  }
  .closed .network-container {
    position: fixed;
    top: 90%;
    width: 100vw;
    max-height: 300px;
    background-color: #474747;
    border-radius: 10px;
    padding: 15px;
    z-index: 10;
    transition: 0.8s;
    transition-delay: 0s;
    left: 50%;
    transform: translateX(-50%);
  }
  .closed .network-container .network-tab {
    padding: 10px;
  }
  .closed .network-container .network-tab img {
    height: 30px;
  }
  .closed .language-container {
    position: fixed;
    top: 83%;
    width: 100vw;
    max-height: 300px;
    background-color: #474747;
    border-radius: 10px;
    padding: 15px;
    z-index: 10;
    transition: 0.8s;
    transition-delay: 0s;
    left: 50%;
    transform: translateX(-50%);
  }
  .closed .language-container .language-tab {
    padding: 10px;
  }
  .closed .wallet-language-container {
    position: fixed;
    top: 83%;
    width: 100vw;
    max-height: 300px;
    background-color: #474747;
    border-radius: 10px;
    padding: 15px;
    z-index: 10;
    transition: 0.8s;
    transition-delay: 0s;
    left: 50%;
    transform: translateX(-50%);
  }
  .closed .wallet-language-container .wallet-language-tab {
    padding: 10px;
  }
  .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);
  }
  .close-side-closed {
    transition: bottom 0.5s ease-in-out;
  }
  button[data-testid=network-button] {
    width: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #474747;
    position: fixed;
    padding-left: 10px;
    top: 30px;
    left: 7%;
  }
  button[data-testid=language-button] {
    width: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #474747;
    position: fixed;
    padding-left: 10px;
    top: 70px;
    left: 7%;
  }
  button[data-testid=wallet-language-button] {
    width: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #474747;
    position: fixed;
    padding-left: 10px;
    top: 40px;
    right: 5%;
  }
  .closed button[data-testid=language-button] {
    width: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #474747;
    transition: 0.8s;
    transition-delay: 0s;
    left: 70%;
    padding-left: 10px;
    top: 30px;
    position: fixed;
  }
}
@media (max-width: 600px) and (min-width: 200px) and (max-width: 300px) {
  .closed button[data-testid=language-button] {
    left: calc(55% - 80px);
  }
}
@media (max-width: 600px) and (min-width: 300px) and (max-width: 400px) {
  .closed button[data-testid=language-button] {
    left: calc(60% - 80px);
  }
}
@media (max-width: 600px) and (min-width: 400px) and (max-width: 500px) {
  .closed button[data-testid=language-button] {
    left: calc(65% - 80px);
  }
}
@media (max-width: 600px) and (min-width: 500px) and (max-width: 600px) {
  .closed button[data-testid=language-button] {
    left: calc(70% - 80px);
  }
}
@media (max-width: 600px) {
  .closed button[data-testid=wallet-language-button] {
    width: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #474747;
    transition: 0.8s;
    transition-delay: 0s;
    left: 70%;
    padding-left: 10px;
    top: 30px;
    position: fixed;
  }
}
@media (max-width: 600px) and (min-width: 200px) and (max-width: 300px) {
  .closed button[data-testid=wallet-language-button] {
    left: calc(55% - 80px);
  }
}
@media (max-width: 600px) and (min-width: 300px) and (max-width: 400px) {
  .closed button[data-testid=wallet-language-button] {
    left: calc(60% - 80px);
  }
}
@media (max-width: 600px) and (min-width: 400px) and (max-width: 500px) {
  .closed button[data-testid=wallet-language-button] {
    left: calc(65% - 80px);
  }
}
@media (max-width: 600px) and (min-width: 500px) and (max-width: 600px) {
  .closed button[data-testid=wallet-language-button] {
    left: calc(70% - 80px);
  }
}
@media (max-width: 600px) {
  .closed button[data-testid=network-button] {
    width: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #474747;
    transition: 0.8s;
    transition-delay: 0s;
    left: 70%;
    padding-left: 10px;
    top: 30px;
    position: fixed;
  }
}
@media (max-width: 600px) and (min-width: 200px) and (max-width: 300px) {
  .closed button[data-testid=network-button] {
    left: 55%;
  }
}
@media (max-width: 600px) and (min-width: 300px) and (max-width: 400px) {
  .closed button[data-testid=network-button] {
    left: 60%;
  }
}
@media (max-width: 600px) and (min-width: 400px) and (max-width: 500px) {
  .closed button[data-testid=network-button] {
    left: 65%;
  }
}
@media (max-width: 600px) and (min-width: 500px) and (max-width: 600px) {
  .closed button[data-testid=network-button] {
    left: 70%;
  }
}
@media (max-width: 600px) {
  .closed button[data-testid=language-button] {
    width: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #474747;
    transition: 0.8s;
    transition-delay: 0s;
    left: 70%;
    padding-left: 10px;
    top: 30px;
    position: fixed;
  }
}
@media (max-width: 600px) and (min-width: 200px) and (max-width: 300px) {
  .closed button[data-testid=language-button] {
    left: calc(55% - 80px);
  }
}
@media (max-width: 600px) and (min-width: 300px) and (max-width: 400px) {
  .closed button[data-testid=language-button] {
    left: calc(60% - 80px);
  }
}
@media (max-width: 600px) and (min-width: 400px) and (max-width: 500px) {
  .closed button[data-testid=language-button] {
    left: calc(65% - 80px);
  }
}
@media (max-width: 600px) and (min-width: 500px) and (max-width: 600px) {
  .closed button[data-testid=language-button] {
    left: calc(70% - 80px);
  }
}
@media (max-width: 600px) {
  .closed button[data-testid=wallet-language-button] {
    width: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #474747;
    transition: 0.8s;
    transition-delay: 0s;
    left: 70%;
    padding-left: 10px;
    top: 30px;
    position: fixed;
  }
}
@media (max-width: 600px) and (min-width: 200px) and (max-width: 300px) {
  .closed button[data-testid=wallet-language-button] {
    left: calc(55% - 0px);
  }
}
@media (max-width: 600px) and (min-width: 300px) and (max-width: 400px) {
  .closed button[data-testid=wallet-language-button] {
    left: calc(60% - 0px);
  }
}
@media (max-width: 600px) and (min-width: 500px) and (max-width: 600px) {
  .closed button[data-testid=wallet-language-button] {
    left: calc(75% - 0px);
  }
}
@media (max-width: 600px) {
  .reversed {
    transform: rotate(-90deg) scale(1.2);
  }
  .close-side img {
    height: 16px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }
  button[data-testid=wallet-button] {
    transition: none;
    position: absolute;
    top: 0;
    left: 25%;
    padding: 0 20px;
  }
  .network-container {
    position: fixed;
    left: 7%;
    top: 64px;
    width: 230px;
    max-height: 200px;
    background-color: #474747;
    border-radius: 10px;
    padding: 5px;
    z-index: 10;
    transition: 0.8s;
    transition-delay: 0.2s;
  }
  .network-container .network-tab {
    padding: 15px 5px;
  }
  .network-container .network-tab img {
    height: 20px;
  }
  .language-container {
    position: fixed;
    left: 7%;
    top: 104px;
    width: 230px;
    max-height: 200px;
    background-color: #474747;
    border-radius: 10px;
    padding: 5px;
    z-index: 10;
    transition: 0.8s;
    transition-delay: 0.2s;
  }
  .language-container .language-tab {
    height: 30px;
    padding: 15px 5px;
  }
  .language-container .language-tab span:hover {
    background-color: #db1010;
  }
  .language-container .language-tab img {
    height: 20px;
  }
  .wallet-language-container {
    position: fixed;
    right: 4.5%;
    top: 74px;
    width: 230px;
    max-height: 200px;
    background-color: #474747;
    border-radius: 10px;
    padding: 5px;
    z-index: 10;
    transition: 0.8s;
    transition-delay: 0.2s;
  }
  .wallet-language-container .wallet-language-tab {
    height: 30px;
    padding: 15px 5px;
  }
  .wallet-language-container .wallet-language-tab span:hover {
    background-color: #db1010;
  }
  .wallet-language-container .wallet-language-tab img {
    height: 20px;
  }
  .logout-container {
    top: 0;
    position: absolute;
  }
}
@media (max-width: 400px) {
  button[data-testid=wallet-button] {
    right: 115px;
  }
  button[data-testid=network-button] {
    right: 310px;
  }
}
@media (max-height: 680px) {
  .token-container img {
    height: 40px;
  }
  .meta-icon img {
    height: 20px;
  }
}
@media (max-height: 670px) {
  .side-wallet-inner {
    overflow-y: auto;
  }
  .side-wallet-inner::-webkit-scrollbar {
    display: none;
  }
}
.option-arbitrum-goerli-testnet {
  background-image: url("/assets/svg/networks/icon-arbitrum-goerli-testnet.svg");
}

.language-button-container {
  position: relative;
  z-index: 10;
}

.wallet-language-button-container {
  position: relative;
  z-index: 10;
}

.dashboard {
  min-width: 550px;
  margin: 0 30px;
  position: relative;
  top: 0;
}
.dashboard .grey-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 10px 15px 20px 15px;
}
.dashboard .grey-container p:nth-of-type(1) {
  margin-bottom: 0.2em;
}
.dashboard .grey-container p:nth-of-type(2) {
  font-size: 10px;
  color: #B2B2B2;
  white-space: pre-wrap;
}
.dashboard .grey-container span {
  font-size: 24px;
  color: #B2B2B2;
}
.dashboard .grey-container-japan {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 10px 15px 20px 15px;
  background-color: #474747;
  border-radius: 12px;
}
.dashboard .grey-container-japan p:nth-of-type(1) {
  margin-bottom: 0.2em;
}
.dashboard .grey-container-japan p:nth-of-type(2) {
  font-size: 10px;
  color: #B2B2B2;
  white-space: nowrap;
}
.dashboard .grey-container-japan span {
  font-size: 24px;
  color: #B2B2B2;
}
.dashboard .grey-container-halving {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 10px 15px 20px 15px;
  background-color: #474747;
  padding: 15px 10px;
  border-radius: 12px;
}
.dashboard .grey-container-halving p:nth-of-type(1) {
  margin-bottom: 0.2em;
}
.dashboard .grey-container-halving p:nth-of-type(2) {
  font-size: 10px;
  color: #B2B2B2;
  white-space: pre-wrap;
}
.dashboard .grey-container-halving span {
  font-size: 24px;
  color: #B2B2B2;
}
.dashboard .grey-container-halving img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 440px) {
  .dashboard {
    max-width: 400px;
    min-width: 300px;
  }
  .dashboard .grey-container span {
    font-size: 20px;
  }
}
@media (max-height: 670px) {
  .dashboard h1 {
    font-size: 20px;
  }
  .dashboard h1 span {
    font-size: 20px;
  }
  .dashboard .grey-container {
    padding: 5px 10px 15px 10px;
  }
  .dashboard .grey-container p:nth-of-type(1) {
    margin-bottom: 0.3em;
  }
  .dashboard .grey-container span {
    font-size: 16px;
  }
}
@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;
}
.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: #ffffff;
}

.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;
}

.promo {
  position: absolute;
  top: 240px;
  left: 48%;
  transform: translate(-50%, -50%);
  max-width: 500px;
  max-height: 450px;
  text-align: center;
  z-index: 7;
}
.promo .description {
  text-align: center;
  margin: 20px 0;
  font-size: 25px;
}
.promo .description p {
  margin: 5px 0;
}
.promo .title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.promo .title > :first-child {
  font-size: 30px;
  font-weight: bold;
}
.promo .title > :nth-child(2) {
  font-size: 50px;
  font-weight: bold;
}
.promo .close-btn {
  position: absolute;
  top: 0;
  left: 0;
  height: 30px;
  padding: 10px;
  cursor: pointer;
}
.promo img {
  height: 140px;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.9) 30%, rgba(0, 0, 0, 0.5) 70%);
  z-index: 6;
}

.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;
}

.execution-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}
.execution-container .title {
  display: flex;
  flex-flow: column;
  justify-content: center;
  row-gap: 3px;
}
.execution-container span {
  width: fit-content;
}
.execution-container span label {
  font-weight: 300;
  font-size: 20px;
}

.execution-select {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: 8px;
  margin-bottom: 10px;
  font-size: 24px;
  width: 100%;
}
.execution-select > div {
  display: flex;
  gap: 8px;
  align-items: center;
}
.execution-select > div div {
  height: 22px;
  width: 2px;
  background-color: #ffffff;
}
.execution-select > div span:nth-child(2) {
  font-weight: 300;
  font-size: 18px;
}
.execution-select select {
  color: white;
  border: none;
  border-radius: 30px;
  height: 30px;
  width: 100px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: url("../assets/svg/icon-execution-clock.svg") no-repeat left 2px center, url("../assets/svg/icon-arrow-down.svg") no-repeat right 10px center, #2C2C2C;
  background-size: 25px, 15px auto, auto;
  background-repeat: no-repeat;
  padding-left: 30px;
}
.execution-select option {
  padding-top: 20px;
}

.loading-bg {
  background: #000;
  display: flex;
  height: 100vh;
  width: 100vw;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  z-index: 100;
}

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

.switcher {
  display: flex;
  position: relative;
  border: 2px solid #fff;
  height: 80px;
  width: 200px;
  border-radius: 40px;
  z-index: 0;
  cursor: pointer;
  overflow: hidden;
}

.f-ball,
.s-ball {
  position: absolute;
  border-radius: 50%;
  animation-duration: 4s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

.f-ball {
  height: 78px;
  width: 78px;
  border: 2px solid #fff;
  background-color: black;
  right: 0;
  animation-name: moveLeft;
}

.s-ball {
  height: 80px;
  width: 80px;
  background-color: #fff;
  left: 0;
  animation-name: moveRight;
}

@keyframes moveRight {
  0%, 100% {
    left: 0;
  }
  25%, 75% {
    left: 120px;
  }
}
@keyframes moveLeft {
  0%, 100% {
    right: 0;
  }
  25%, 75% {
    right: 120px;
  }
}
.dots-container {
  display: flex;
  align-items: center;
}

.dots-text {
  display: flex;
  align-items: self-end;
  margin-top: 30px;
}
.dots-text span {
  font-size: 20px;
}

.dot {
  border-radius: 100%;
  border: 1px solid white;
  margin: 5px;
}

.dot:nth-child(1) {
  animation: preloader 0.6s ease-in-out alternate infinite;
}

.dot:nth-child(2) {
  animation: preloader 0.6s ease-in-out alternate 0.2s infinite;
}

.dot:nth-child(3) {
  animation: preloader 0.6s ease-in-out alternate 0.4s infinite;
}

@keyframes preloader {
  100% {
    transform: scale(2);
  }
}
.switcher-logo {
  display: flex;
  position: relative;
  border: 1px solid #fff;
  background: black;
  height: 15px;
  width: 35px;
  border-radius: 10px;
  z-index: 0;
  cursor: pointer;
  overflow: hidden;
}

.black-ball,
.white-ball {
  position: absolute;
  border-radius: 50%;
  height: 15px;
  width: 15px;
}

.black-ball {
  border: 1px solid #fff;
  background-color: black;
  right: 0;
}

.white-ball {
  background-color: #fff;
  left: 0;
}

.switcher-logo:hover .black-ball {
  animation: moveLeft 4s ease-in-out infinite;
}

.switcher-logo:hover .white-ball {
  animation: moveRight 4s ease-in-out infinite;
}

@keyframes moveRight {
  0%, 100% {
    left: 0;
  }
  25%, 75% {
    left: 20px;
  }
}
@keyframes moveLeft {
  0%, 100% {
    right: 0;
  }
  25%, 75% {
    right: 20px;
  }
}
.vesting-container {
  max-width: 320px;
  min-width: 320px;
}
.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: #2B2B2B;
  border-radius: 5px;
  padding: 3px;
}
.loader-bar > div {
  background-color: #64A560;
  width: 60%;
  height: 100%;
  border-radius: 5px;
}

.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;
  }
}
@keyframes blinker {
  50% {
    opacity: 0;
  }
}
ol {
  text-align: left;
}

li {
  color: grey;
}

.future {
  color: grey;
}

.done {
  color: #64A560;
}

.waiting {
  color: #64A560;
  animation: blinker 2s linear infinite;
}

@media (max-width: 600px) {
  .hamburger-button-container .hamburger-button {
    display: flex;
    margin: 10px;
    padding: 0;
    padding-top: 5px;
    padding-bottom: 2px;
    padding-left: 5px;
    padding-right: 5px;
    background-color: transparent;
  }
}
@media (min-width: 601px) {
  .hamburger-button-container .hamburger-button {
    display: none;
  }
}
.hamburger-button-container .hamburger-button .ham-button-img {
  height: 20px;
  width: 26px;
}

@media (max-width: 600px) {
  .hamburger-dialog {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 100;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    flex-direction: column;
    font-size: 48px;
    color: white;
  }
  .hamburger-dialog .nav-menu-ham-wrapper {
    margin-top: 20px;
    scrollbar-width: none;
    background-color: #2C2C2C;
    width: 80%;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-bottom: 10px;
    overflow-y: auto;
    overflow-x: hidden;
    transform: translateX(100%);
    animation: slide-in 0.5s forwards;
  }
  .hamburger-dialog .nav-menu-ham-wrapper.closing {
    animation: slide-out 0.5s forwards;
  }
  @keyframes slide-in {
    from {
      transform: translateX(100%);
    }
    to {
      transform: translateX(0);
    }
  }
  @keyframes slide-out {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(100%);
    }
  }
  @keyframes fade-out {
    from {
      opacity: 1;
    }
    to {
      opacity: 0;
    }
  }
  .hamburger-dialog .nav-menu-ham-wrapper .nav-menu-header {
    position: sticky;
    top: 0;
    background-color: #2C2C2C;
    width: 90%;
    padding: 10px 0;
    padding-top: 20px;
    text-align: start;
    z-index: 10;
  }
  .hamburger-dialog .nav-menu-ham-wrapper .nav-menu-header h1 {
    color: #D9D9D9;
    text-transform: uppercase;
    font: normal normal normal 24px/33px Bahnschrift;
  }
  .hamburger-dialog .nav-menu-ham-wrapper .nav-menu-header h1 span {
    color: #64A560;
    word-break: break-word;
    overflow-wrap: break-word;
  }
  .hamburger-dialog .nav-menu-ham-wrapper .ham-close-container {
    position: absolute;
    top: 0px;
    right: 0px;
    background-color: #2C2C2C;
    z-index: 10;
    background-color: transparent;
    width: 10%;
    height: 100%;
  }
  .hamburger-dialog .nav-menu-ham-wrapper .ham-close-container .ham-modal-close {
    width: 24px;
    height: 24px;
    cursor: pointer;
    text-decoration: none;
    color: #D9D9D9;
    font-size: 20px;
    text-align: center;
    display: flex;
    align-items: flex-start;
    justify-items: flex-start;
    margin-top: 10px;
  }
  .hamburger-dialog .nav-menu-ham-wrapper .menu-list {
    width: 90%;
    display: flex;
    flex-direction: column;
  }
  .hamburger-dialog .nav-menu-ham-wrapper .menu-list .navbar-item-ham-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 12px;
    margin: 5px 0;
    padding: 15px;
    background-color: #474747;
  }
  .hamburger-dialog .nav-menu-ham-wrapper .menu-list .navbar-item-ham-wrapper .navbar-item-ham {
    color: #64A560;
    background-color: #474747;
    min-width: 100%;
    font-size: 24px;
  }
}

.volatilities-container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.volatilities-container .volatilities-wrap {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 70%;
}
@media screen and (max-width: 600px) {
  .volatilities-container .volatilities-wrap {
    width: 95%;
  }
}
.volatilities-container .volatilities-wrap .row {
  background-color: #474747;
  padding: 15px;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #2B2B2B;
}
.volatilities-container .volatilities-wrap .row .row-index {
  width: 10px;
  color: #64A560;
}
.volatilities-container .volatilities-wrap .row h3 {
  width: 150px;
  color: #64A560;
}
@media screen and (max-width: 1050px) {
  .volatilities-container .volatilities-wrap .row h3 {
    width: 15%;
  }
}
.volatilities-container .volatilities-wrap .row h3.rate {
  color: rgb(95, 41, 41);
}
.volatilities-container .volatilities-wrap .row input {
  font-size: 24px;
  background-color: transparent;
  width: 150px;
  border-radius: 12px;
  border: 1px solid #474747;
  line-height: 24px;
  font-weight: 400;
  color: #ffffff;
  padding: 5px;
  padding-left: 8px;
}
@media screen and (max-width: 1300px) {
  .volatilities-container .volatilities-wrap .row input {
    width: 80%;
  }
}
.volatilities-container .volatilities-wrap .rate-row {
  background-color: #474747;
  padding: 15px;
  border-radius: 10px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background-color: #2B2B2B;
}
.volatilities-container .volatilities-wrap .rate-row h3 {
  width: 150px;
  color: #64A560;
}
@media screen and (max-width: 1050px) {
  .volatilities-container .volatilities-wrap .rate-row h3 {
    width: 15%;
  }
}
.volatilities-container .volatilities-wrap .rate-row h3.rate {
  color: rgb(95, 41, 41);
}
.volatilities-container .volatilities-wrap .rate-row input {
  font-size: 24px;
  background-color: transparent;
  width: 100%;
  border-radius: 12px;
  border: 1px solid #474747;
  line-height: 24px;
  font-weight: 400;
  color: #ffffff;
  padding: 5px;
  padding-left: 8px;
}
.volatilities-container .red-message {
  color: rgb(165, 41, 41);
  font-weight: bold;
  font-size: 24px;
  margin-top: 10px;
  margin-bottom: 10px;
  text-align: center;
  width: 100%;
}
.volatilities-container .green-message {
  color: #64A560;
  font-weight: bold;
  font-size: 24px;
  margin-top: 10px;
  margin-bottom: 10px;
  text-align: center;
  width: 100%;
}
@keyframes blink {
  0% {
    opacity: 0.2;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.2;
  }
}
.volatilities-container .white-message {
  color: white;
  font-weight: bold;
  font-size: 24px;
  margin-top: 10px;
  margin-bottom: 10px;
  text-align: center;
  width: 100%;
  animation: blink 2s infinite;
}

@font-face {
  font-family: "Bahnschrift";
  src: url("../assets/fonts/bahnschrift/BAHNSCHRIFT.TTF") format("truetype");
}
html {
  font-family: "Bahnschrift";
  color: #ffffff;
  background-color: #4f7d4a;
  overflow: hidden;
}

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;
}

body::-webkit-scrollbar {
  display: none;
}

a {
  color: #64A560;
  text-decoration: none;
}

.login-view-container {
  height: 100vh;
}

.navbar-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: help;
  margin-top: 4px;
}
@media screen and (max-width: 600px) {
  .navbar-logo {
    margin-left: 10px;
  }
}
.navbar-logo img {
  height: 35px;
}
.navbar-logo .beta {
  position: relative;
  top: -2px;
  left: 10px;
  width: 50px;
  color: #FFFFFF;
  cursor: help;
}

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

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

.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;
  z-index: 4;
}
@media (min-width: 601px) and (max-width: 1199px) {
  .navbar-menu {
    flex-flow: row nowrap;
    align-items: flex-start;
    text-align: left;
    flex-direction: column;
    position: absolute;
    top: 25px;
  }
}
@media (max-width: 600px) {
  .navbar-menu {
    justify-content: space-between;
    width: 100%;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    text-align: left;
    padding-top: 0;
  }
}

.navbar-start {
  display: flex;
  overflow: visible;
}

.navbar-item-container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
@media (min-width: 601px) and (max-width: 1200px) {
  .navbar-item-container {
    flex-direction: column;
  }
}
@media (max-width: 600px) {
  .navbar-item-container {
    display: none;
  }
}

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

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

.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 .beta {
    display: flex;
    align-items: flex-end;
    height: 40px;
    margin-bottom: 20px;
  }
  .navbar-start {
    display: flex;
    flex-direction: column;
  }
  .navbar-item {
    margin-top: 20px;
    padding: 5px;
    color: #64A560;
    text-decoration: none;
  }
}
@media (max-width: 1200px) and (min-width: 601px) and (max-width: 1200px) {
  .navbar-item {
    width: 100%;
  }
}
@media (max-width: 1200px) {
  .navbar-item-logo {
    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;
  }
  .navbar-item {
    margin: 0;
    padding: 20px;
    color: #64A560;
    text-decoration: none;
  }
  .navbar-right {
    padding: 0 30px;
    text-align: right;
  }
  .spacer {
    width: 0%;
  }
  .navbar-start {
    display: flex;
    flex-direction: row;
  }
  .navbar-logo img {
    height: 20px;
  }
}
@media (max-height: 650px) {
  .navbar {
    height: 50px;
  }
}
@media (max-height: 580px) {
  .navbar {
    height: 40px;
  }
}
main {
  width: 100%;
  box-sizing: border-box;
  padding: 32px 15px;
  display: flex;
  flex-flow: column;
  align-items: center;
  align-content: center;
  row-gap: 20px;
  flex: 1;
  position: relative;
}

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

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

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

button:disabled {
  color: #ffffff;
  background-color: #2B2B2B;
  cursor: not-allowed;
}

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

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

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

.field {
  position: relative;
}

info {
  position: relative;
}

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;
  white-space: nowrap;
  font-size: 12px;
}

info[data-tooltip-traffic]::after {
  content: attr(data-tooltip-traffic);
  display: none;
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(5%);
  padding: 0.5em;
  background-color: #000;
  color: #fff;
  border-radius: 0.25em;
  white-space: wrap;
  font-size: 12px;
  min-width: 250px;
  z-index: 100;
}
@media screen and (max-width: 600px) {
  info[data-tooltip-traffic]::after {
    white-space: wrap;
  }
}

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

info[data-tooltip-special]::after {
  content: attr(data-tooltip-special);
  display: none;
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.5em;
  background-color: #1e1e1e;
  color: #fff;
  border-radius: 0.25em;
  white-space: normal;
  font-size: 12px;
  width: 250px;
}

info[data-tooltip-special]:hover::after {
  display: block;
}

info[data-tooltip-exec]::after {
  content: attr(data-tooltip-exec);
  display: none;
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.5em;
  background-color: #1e1e1e;
  color: #fff;
  border-radius: 0.25em;
  white-space: normal;
  font-size: 12px;
  width: 200px;
}

info[data-tooltip-exec]:hover::after {
  display: block;
}

info[data-tooltip-left]::after {
  content: attr(data-tooltip-left);
  display: none;
  position: absolute;
  top: 20%;
  min-height: 10px;
  left: auto;
  right: 100%;
  transform: translate(-5%, -50%);
  margin-right: 0.5em;
  padding: 0.5em;
  background-color: #000;
  color: #fff;
  border-radius: 0.25em;
  font-size: 0.8em;
  white-space: nowrap;
  word-wrap: break-word;
  font-size: 10px;
}

info[data-tooltip-left]:hover::after {
  display: block;
}

[data-tooltip-right],
[data-tooltip] {
  position: relative;
  cursor: help;
}

[data-tooltip-right]:hover::before,
[data-tooltip]:hover::before {
  opacity: 1;
  z-index: 10;
}

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

::-webkit-scrollbar-track {
  background: #1e1e1e;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: #474747;
}

::-webkit-scrollbar-thumb:hover {
  background: #B2B2B2;
}

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

@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
.logout-window {
  display: flex;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.green {
  color: #64A560;
}

@media (max-width: 500px) {
  info[data-tooltip]:not([data-tooltip-left]):hover::after {
    position: absolute;
    left: 50%;
    transform: translateX(15px);
  }
  info[data-tooltip-special]::after {
    left: 80%;
  }
  info[data-tooltip-exec]::after {
    left: 100%;
  }
  info[data-tooltip-beta]::after {
    left: 100%;
  }
}
.info-logo-beta {
  position: relative;
  width: 130px;
  display: flex;
  align-items: center;
}
.info-logo-beta::after {
  content: attr(data-tooltip);
  display: none;
  position: absolute;
  bottom: 100%;
  left: 100%;
  transform: translateX(-10%);
  transform: translateY(0px);
  padding: 0.5em;
  background-color: #000;
  color: #fff;
  border-radius: 0.25em;
  white-space: nowrap;
  font-size: 12px;
  z-index: 10;
}
@media (max-width: 1200px) {
  .info-logo-beta::after {
    transform: translateX(0%);
    transform: translateY(20px);
  }
}
.info-logo-beta:hover::after {
  display: block;
}

.info-logo-beta-left-adjust::after {
  left: calc(50% - 50px);
}

.language-button-container {
  position: relative;
  top: 10px;
  background-color: #474747;
}

.wallet-language-button-container {
  position: relative;
  top: 10px;
  background-color: #474747;
}

/*# 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/progress.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/reflink-view.scss%22,%22../../style/infographic.scss%22,%22../../style/side-wallet.scss%22,%22../../style/dashboard.scss%22,%22../../style/notification.scss%22,%22../../style/notifications_provider.scss%22,%22../../style/promo_window.scss%22,%22../../style/wc-desktop.scss%22,%22../../style/wc-mobile.scss%22,%22../../style/execution-selector.scss%22,%22../../style/loading-animation.scss%22,%22../../style/logo-animation.scss%22,%22../../style/vesting.scss%22,%22../../style/buy-progress.scss%22,%22../../style/hamburger-menu.scss%22,%22../../style/volatilities-view.scss%22,%22../../style/main.scss%22%5D,%22names%22:%5B%5D,%22mappings%22:%22AAAA;EACE;EACA;EACA;EACA,kBCDQ;EDER;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;AACA;EACE;;;AAIJ;AAAA;EAEE;EACA;EACA;EACA;EACA;EACA;EACA;;AACA;AAAA;EACE;;;AAIJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AACA;EACE;;;AAGJ;EACE;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGF;EACE;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA,kBCzFc;;;AD4FhB;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,kBC3HW;;;AD8Hb;EACE,kBC/HW;;;ADkIb;EACE;EACA;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGF;EACE,kBC3JK;ED4JL;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGF;EACE,kBC3KK;ED4KL;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;;AACA;EACE;EACA;;;AAIJ;EACE,kBCtMK;EDuML;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AACA;EACE;;AAEA;EACE;;AAEF;EACE;;AAEF;EACE;EACA;EACA,OCxOS;;AD0OX;EACE;;;AAKN;EACE;EACA;;;AAGF;EACE;EACA;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;IACE;;EAEA;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;;AAKN;EACE;IACE;;;AAKJ;EACE;IACE;;;AEpSJ;EACE;EACA;EACA;;;AAGF;EACE;EACA;;;AAGF;EACE;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA,ODtBW;ECuBX;;;AAGF;EACE,ODtBW;;;ACyBb;EACE;EACA;EACA;EACA;EACA;EACA;EACA,OD/Ba;ECgCb;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;;;AAGF;EACE,kBDlEa;ECmEb;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGF;EACE;;;AAGF;EACE,ODpFW;ECqFX;EACA;;;AAGF;AAAA;EAEE;EACA;;;AAEF;EACE;IACE;IACA;IACA;;;AAIJ;EACE;IACE;IACA;;EAEF;IACE;IACA;;EAEF;IACE;;EAEF;IACE;IACA;;EAEF;IACE;IACA;;EAGF;IACE;;;AAMJ;EACE;IACE;IACA;;EAEF;IACE;;;AAIJ;EACI;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA,kBD7JS;EC8JT;EACA;;AAEA;EACE;EACA;;AAIN;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EAdF;IAeI;IACA;;;;AC7LN;EACE;EACA;EACA,kBFDa;EEEb;EACA;EACA;EACA,OFPW;EEQX;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;;AAEA;EACE;;AAGF;EACE;;AAGF;EACE;EACA;;AAIJ;EACE,kBF/Be;EEgCf;EACA;EACA;EACA,OF1CY;EE2CZ;EACA;EACA;EACA;EACA;;;AAIJ;EACE;EACA;;;AAGF;EACE;EACA;;;AAGF;EACE;EACA;EACA;;;AAGF;AAAA;EAEE;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;;;AAGF;EACE;EACA;;;AAGF;EACE;EACA;;;AAGF;EACE;;;AAGF;EACE;EACA;EACA;;;AAGF;EACE,OF7Gc;;;AEgHhB;EACE;EACA;EACA;EACA;EACA;EACA;EACA,YFvHc;EEwHd;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;;;AAIJ;EACE;EACA;EACA;EACA;;AAEA;EACE;;;AAIJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;;;AAGF;EACE;;;AAGF;EACE;IACE;;EAGF;IACE;;EAGF;IACE;;;AAIJ;EACE;IACE;IACA;IACA;;EAEA;IACE;;EAIJ;IACE;;EAGF;IACE;;EAGF;IACE;;EAGF;IACE;IACA;;EAGF;IACE;IACA;IACA;;;AAIJ;EACE;IACE;IACA;IACA;;EAEA;IACE;IACA;;EAGF;IACE;;EAIJ;IACE;;EAGF;IACE;;EAGF;IACE;;EAGF;IACE;IACA;;EAGF;IACE;IACA;IACA;;;AAIJ;EACE;IACE;;;ACtQJ;EACE;EACA;EACA,kBHDa;EGEb;EACA;EACA,OHNW;EGOX;EACA;EACA;;;AAGF;EACI;EACA;EACA,kBHbW;EGcX;EACA;EACA,OHlBS;EGmBT;EACA;EACA;EACA;EACA;EAEA;EACA;EACA;;AACA;EACE;;;AAIN;EACE;EACA;;;AAIA;EACE;;;AAIJ;EACE,kBHrCiB;EGsCjB,OH7Cc;EG8Cd;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE,OHzDY;;AG6DZ;EACE;EACA;;;AAKN;EACE;EACA;EACA;EACA;EAEA;;;AAGF;EACE;EACA,kBHzEK;EG0EL;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGF;EACE,OHhGc;EGiGd;EACA;EACA;;;AAGF;EACE;AAAA;IAEE;IACA;IACA;;EAEF;IACE;;;AAIJ;EACE;IACE;IACA;;;AAIJ;EACE;IACE;IACA;;EAEF;IACE;IACA;;EAEA;IACE;;;AAKN;EACE;IACE;;EAEA;IACE,OH7IU;IG8IV;;EAGF;IACE,OHnJO;IGoJP;;;AAKN;EACE;IACE;;;AAIJ;EACE;IACE;;EAEA;IACE,OHnKU;IGoKV;;EAGF;IACE,OHzKO;IG0KP;;;AAKN;EACE;IACE;;EAEF;IACE;IACA;;EAEA;IACE;;EAEF;IACE;;EAGJ;IACE;IACA;;;AAGJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAIF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AACA;EATF;IAUI;IACA;;;;AAIJ;EACE;EACA;EACA;;;AAGF;EACE;EACA;;AAEA;EACE;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;;;AAMN;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AACA;EACE;;;AC9RJ;EACE;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;;AC3BF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;;;AAGF;EACE;EACA,OLbW;EKcX;;;AAGF;EACE;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;AACA;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGF;EACE;EACA;;;AAGF;EACE;EACA;EACA;EACA;;;AAIF;EACE;IACE;IACA;IACA;;EAGF;IACE;IACA;;EAEF;IACE;IACA;IACA;IACA;IACA;;EAEF;IACE;IACA;IACA;;;AC9GJ;EACE;;AAEA;EACE;;AAGF;EACE;;AAGF;EACE,YNTG;EMUH;;AAGF;EACE;EACA,YNjBS;;AMoBX;EACE,YNpBW;;AM8BX;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;EACE;EACA;EACA;EACA;EACA;EACA,SAzCmB;EA0CnB;EACA,YA1CsB;EA2CtB;EACA;;AAGF;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;EACE;EACA;;AAIJ;EACE;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;;AAGF;EACE,WArFuB;EAsFvB;EACA;EACA;;AAGF;EACE,WA5FuB;EA6FvB;;;AAKJ;EACE;EACA;EACA;;AAEA;EACE;;AAGF;EACE;;AAGF;EACE;;AAGF;EACE;EACA;EACA;;AAGF;EACE;EACA;EACA;;AAGF;EACE;;AAGF;EACE;EACA;;AAGF;EACE;EACA;;;AAIJ;EACE;EACA;EACA;EACA;EACA;;;AAGF;EACE;;;AAGF;EACE;EACA,kBNrJK;;AMuJL;EACE;;AAGF;EACE;;;AAIJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA,ON9KW;EM+KX;;AAEA;EACE,kBN3KG;EM4KH;EACA;EACA;;AAGF;EACE;;AAGF;EACE;EACA;EACA;EACA;EACA;;;AAIJ;EACE,ONtMW;EMuMX;EACA;EACA;EACA;;AAEA;EACE;;;AAIJ;EACE;;;AAGF;EACE;IACE;;;AAIJ;EACE;IACE;;;AAIJ;EACE;IAEE;;;AAIJ;EACE;IACE;;EAGF;IACE;IACA;;;AAGJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AACA;EACE;;AAGF;EACE,YN1PG;EM2PH;;AAGF;EACE;EACA,YNlQS;;AMqQX;EACE,YNrQW;;AM8QX;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;EACE;EACA;EACA;EACA;EACA;EACA,SAzRmB;EA0RnB;EACA,YA1RsB;EA2RtB;EACA;;AAGF;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;EACE;EACA;;AAIJ;EACE;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;;AAGF;EACE,WArUuB;EAsUvB;EACA;EACA;;AAGF;EACE,WA5UuB;EA6UvB;;;AAIJ;EACE;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;AACA;EACE;;AAGF;EACE;;;AAIJ;EACE;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;;;AAGF;EACE,kBNhXK;;;AMmXP;EACE,kBNvXU;;;AM0XZ;EACE;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;;;AAMJ;EACE;EACA;EACA;EACA;EACA;;AAGA;EACE;EACA;EACA;;AAGF;EACE;;AAGF;EACE;EACA;EACA;EACA;EACA;;AAGF;EACE;;;AAIJ;EACE;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;;;AAKJ;EACE;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;EACA;;AAIJ;EACE;EACA;EACA;;AAGF;EACE;;AAGF;EACE;EACA;EACA;EACA;EACA;;AAGF;EACE;;;AAIJ;EACE;;;ACphBF;EACE;EACA;EACA;EACA;EACA,kBPDK;EOEL;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGE;EACE;;AAIJ;EACE;EACA;EACA,OA1BS;;;AA6Bb;EACE;IACE;;EAEF;IACE;;EACA;IACE;;;AAKN;EACE;EACA;EACA;EACA;;;AAGF;EACE,OAjDW;EAkDX;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;;AAEF;EACE;;;AAIJ;EACE;EACA;EACA;;AAEA;EACE;;;AAIJ;EACE;EACA;EACA;;;AChFF;EACE;EACA;EACA;;AACA;EACE;EACA;;AAEF;EACE;EACA;EACA;;AAGF;EACE,kBRRG;EQSH;EACA;EACA;EACA;EACA;;AACA;EACE;EACA;;AAEF;EACE;EACA;EACA;EACA;EACA;;AAIJ;EACE;EACA;;;AAIJ;EACE;;;AAGF;EACE;IACE;;EAEA;IACE;;;AChDJ;EACE;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;EACA;;AAGF;EACE;EACA;;AAEA;EACE;EACA;;AAIJ;EACE;;AAGF;AAAA;EAEE;;AAEA;AAAA;EACE;EACA;EACA;EACA;EACA;EACA;;AAGF;AAAA;EACE;;AAKF;EACE;;AAEA;EAHF;IAII;;;AAGF;EAPF;IAQI;;;AAGF;EAXF;IAYI;;;AAIJ;EACE;;AAKF;EACE;;AAEA;EAHF;IAII;;;AAGF;EAPF;IAQI;;;AAGF;EAXF;IAYI;;;AAIJ;EACE;EACA;EACA;;AAGF;EACE;EACA;;AAGF;EACE;;;AAKN;EACE;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;;;AAIJ;EACE;EACA;EACA;EACA;EACA;;;AAGF;AAAA;EAEE;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;;;AAGF;EACE;;;AAGF;AAAA;EAEE;EACA;EACA;EACA;;;AAGF;AAAA;EAEE;EACA;EACA;;;AAGF;EACE;EACA;;;AAGF;EACE;IACE;IACA;;EAGF;IACE;IACA;IACA;IACA;IACA;IACA;;EAGF;AAAA;IAEE;IACA;IACA;IACA;IACA;IACA;;EAGF;AAAA;IAEE;IACA;IACA;IACA;;EAGF;AAAA;IAEE;IACA;IACA;;;AAIJ;EACE;IACE;;;AAIJ;EAEE;IAEE;AACA;;EAGF;IACE;AACA;;EAGF;IAEE;AACA;;EAGF;IACE;AACA;;;AAIJ;EAEE;AAAA;IAEE;IACA;IACA;IACA;IACA;IACA;IACA;;EAIA;IACE;;EAGF;IACE;;;ACvQN;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;EACA;EACA;EACA;;AAEA;EACE;EACA;;AAGF;EACE;;AAGF;EACE;;;AAIJ;EACE;IACE;;;AAIJ;EACE,YVxDQ;EUyDR;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;;AAEA;EANF;IAOI;;;AAGF;EACE;;AAGF;EACE;EACA;EACA;EACA;;AAEA;EACE;;AAGF;EACE;EACA;;AAGF;EACE;EACA;EACA;;AAIJ;EACE;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;;AAEA;EACE;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;;;AAMR;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;;AAGF;EACE;EACA;;;AAIJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;;AAGF;EACE;EACA;;;AAIJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGA;EACE;;AAGF;EACE;EACA;;;AAIJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGA;EACE;;AAGF;EACE;EACA;;;AAIJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGA;EAbF;IAcI;IACA;;;AAGF;EACE;;AAGF;EACE;EACA;;;AAIJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EAZF;IAaI;IACA;;;AAGF;EACE;;AAGF;EACE;EACA;;;AAIJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EAZF;IAaI;IACA;;;AAGF;EACE;;AAGF;EACE;EACA;;;AAIJ;EACE;;;AAGF;EACE;EACA;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;;AAEA;EACE;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EAdF;IAeI;IACA;;;AAIJ;EACE;;AAGF;EACE;EACA;;AAGF;EACE;;;AAIJ;EACE;EACA;EACA;;AAEA;EACE;;;AAKJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;;AAGF;EACE;;;AAIJ;EACE;EACA,kBVtZK;EUuZL,OH7ZW;EG8ZX;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGF;EACE;;;AAGF;EACE;EACA;;;AAGF;EACE;EACA;EACA;EACA;;AAEA;EACE;;;AAIJ;EACE;EACA;EACA;EACA;;AAEA;EACE;;;AAIJ;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;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;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;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;;AAGF;EACE;EACA;;;AAIJ;EACE;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;;AAGF;EACE;EACA;;;AAIJ;EACE;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;;AAGF;EACE;EACA;;;AAIJ;EACE;EACA;EACA;EACA,kBVnmBK;EUomBL;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;;;AAIJ;EACE;EACA;;;AAGF;EACE;EACA;;AAEA;EACE;;;AAIJ;EACE;EACA;EACA;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;IACE;;;AAKJ;EACE;IACE;IACA;;EAGF;IACE;IACA;;EAGF;IACE;IACA;;EAGF;IACE;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;EAGF;IACE;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;EAGF;IACE;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;EAGF;IACE;IACA;IACA;IACA;IACA;;;AAIJ;EACE;IACE;IACA;;EAGF;IACE;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;EAEA;IACE;;EAEA;IACE;;EAKN;IACE;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;EAEA;IACE;;EAOJ;IACE;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;EAEA;IACE;;EAOJ;IACE;IACA;IACA;IACA;IACA;IACA;;EAGF;IACE;IACA;IACA;IACA;;EAGF;IACE;IACA;IACA;IACA;IACA;;EAGF;IACE;;EAGF;IACE;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;EAGF;IACE;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;EAGF;IACE;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;EAGF;IACE;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;;AACA;EAZF;IAaI;;;AAEF;EAfF;IAgBI;;;AAEF;EAlBF;IAmBI;;;AAEF;EArBF;IAsBI;;;AA/JN;EAmKE;IACE;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;;AACA;EAZF;IAaI;;;AAEF;EAfF;IAgBI;;;AAEF;EAlBF;IAmBI;;;AAEF;EArBF;IAsBI;;;AAzLN;EA6LE;IACE;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;;AACA;EAZF;IAaI;;;AAEF;EAfF;IAgBI;;;AAEF;EAlBF;IAmBI;;;AAEF;EArBF;IAsBI;;;AAnNN;EAuNE;IACE;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;;AACA;EAZF;IAaI;;;AAEF;EAfF;IAgBI;;;AAEF;EAlBF;IAmBI;;;AAEF;EArBF;IAsBI;;;AA7ON;EAiPE;IACE;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;;AACA;EAZF;IAaI;;;AAEF;EAfF;IAgBI;;;AAIF;EApBF;IAqBI;;;AAtQN;EA0QE;IACE;;EAGF;IACE;IACA;IACA;IACA;;EAGF;IACE;IACA;IACA;IACA;IACA;;EAGF;IACE;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;EAEA;IACE;;EAEA;IACE;;EAKN;IACE;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;EAEA;IACE;IACA;;EAGE;IACE;;EAIJ;IACE;;EAKN;IACE;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;EAEA;IACE;IACA;;EAGE;IACE;;EAIJ;IACE;;EAKN;IACE;IACA;;;AAIJ;EACE;IACE;;EAGF;IACE;;;AAIJ;EACE;IACE;;EAIA;IACE;;;AAKN;EACE;IACE;;EAGF;IACE;;;AAIJ;EACE;;;AAGF;EACE;EACA;;;AAGF;EACE;EACA;;;ACroCF;EACE;EACA;EACA;EACA;;AACA;EACE;EACA;EACA;EACA;;AACA;EACE;;AAEF;EACE;EACA,OXVO;EWWP;;AAEF;EACE;EACA,OXfO;;AWmBX;EACE;EACA;EACA;EACA;EACA;EACA;;AACA;EACE;;AAEF;EACE;EACA,OX/BO;EWgCP;;AAEF;EACE;EACA,OXpCO;;AWwCX;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;AACA;EACE;;AAEF;EACE;EACA,OXrDO;EWsDP;;AAEF;EACE;EACA,OX1DO;;AW4DT;EACE;EACA;EACA;;;AAIN;EACE;IACE;IACA;;EAGE;IACE;;;AAMR;EAEI;IACE;;EAEA;IACE;;EAIJ;IACE;;EAEA;IACE;;EAGF;IACE;;;APrGR;EACE;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;;AQ3BF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGF;EACE;EACA;;;AAGF;EACE;EACA,OLjBW;;;AKoBb;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;EACA;EACA;;AAEA;EACE;EACA;EACA;;AACA;EACE;;AAIJ;EACE;EACA;EACA;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;;AAGF;EACE;;;AAIJ;EACE;EACA;EACA;EACA;EACA;EACA;EAKA;;;AC7DF;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;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;;AAGJ;EACI;;AAEA;EACI;EACA;;;AAKZ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;;AAEA;EACI;EACA;EACA,kBVxCC;;AU4CD;EACI;EACA;;AAKZ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EAGA;EACA;EACA;;AAGJ;EACI;;;ACtER;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGJ;EACI;EACA;EACA;;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGJ;AAAA;EAEI;EACA;EACA;EACA;EACA;;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;;;AAGJ;EACI;EACA;EACA;EACA;EACA;;;AAGJ;EAEI;IAEI;;EAGJ;IAEI;;;AAIR;EAEI;IAEI;;EAGJ;IAEI;;;AAIR;EACI;EACA;;;AAGJ;EACI;EACA;EACA;;AAEA;EACI;;;AAIR;EACI;EACA;EACA;;;AAGJ;EACI;;;AAGJ;EACI;;;AAGJ;EACI;;;AAGJ;EACI;IACI;;;ACrHR;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGJ;AAAA;EAEI;EACA;EACA;EACA;;;AAGJ;EACI;EACA;EACA;;;AAGJ;EACI;EACA;;;AAGJ;EACI;;;AAGJ;EACI;;;AAGJ;EACI;IAAW;;EACX;IAAW;;;AAGf;EACI;IAAW;;EACX;IAAW;;;AC/Cf;EACI;EACA;;AAEA;EACI;EACA;EACA;;AAGJ;EACI;;AAGJ;EACI,OpBdQ;;AoBiBZ;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,OpBrDK;;AoBwDT;EACI;;;AAIR;EACI;;;AAGJ;EACI,OpBlES;;;AoBqEb;EACI;EACA;EACA;EACA,kBpB3EM;EoB4EN;EACA;;AAEA;EACI,kBpBlFQ;EoBmFR;EACA;EACA;;;AASJ;EACI;;AAGJ;EACI;;;AAIR;EAEQ;IACI;IACA;IACA;;EAKJ;IACI;;EAGJ;IACI;;EAGJ;IACI;;;AAKZ;EACI;IACI;IACA;IACA;;;ACpIR;EACE;IACE;;;AAIJ;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE,OrBlBc;;;AqBqBhB;EACE,OrBtBc;EqBuBd;;;ACtBE;EADF;IAEI;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;;AAGF;EAZF;IAaI;;;AAGF;EACE;EACA;;;AAQJ;EADF;IAEI;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;EAEA;IACE;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;EAEA;IACE;;EAGF;IACE;MACE;;IAEF;MACE;;;EAIJ;IACE;MACE;;IAEF;MACE;;;EAIJ;IACE;MACE;;IAEF;MACE;;;EAIJ;IACE;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;EAEA;IACE;IACA;IACA;;EAEA;IACE;IACA;IACA;;EAKN;IACE;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;EAEA;IACE;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;EAIJ;IACE;IACA;IACA;;EACF;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;EAEA;IACE;IACA;IACA;IACA;;;;AC3JR;EACE;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;;AACA;EALF;IAMI;;;AAGF;EACE,kBvBTG;EuBUH;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA,OvBzBU;;AuB4BZ;EACE;EACA,OvB9BU;;AuB+BV;EAHF;IAII;;;AAKJ;EACE;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA,OhBjDO;EgBkDP;EACA;;AACA;EAXF;IAYI;;;AAMN;EACE,kBvBtDG;EuBuDH;EACA;EACA;EACA;EACA;EACA;;AAGA;EACE;EACA,OvBvEU;;AuBwEV;EAHF;IAII;;;AAKJ;EACE;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA,OhB1FO;EgB2FP;EACA;;AAMN;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;AAGF;EACE,OvB7Gc;EuB8Gd;EACA;EACA;EACA;EACA;EACA;;AAGF;EACE;IACE;;EAEF;IACE;;EAEF;IACE;;;AAIJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AChHF;EACE;EACA;;AAGF;EACE;EACA,OjBjCW;EiBkCX;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGF;EACE;;;AAGF;EACE,OxBvDc;EwBwDd;;;AAGF;EACE;;;AAGF;EACE;EACA;EACA;EACA;EACA;;AAEA;EAPF;IAQI;;;AAGF;EACE;;AAEF;EACE;EACA;EACA;EACA;EACA;EACA;;;AAIJ;AAAA;AAAA;AAAA;EAIE;;;AAGF;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;EAQE;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;;;AAIJ;EACE;EACA;EACA;EACA;EACA;;AAEA;EAPF;IAQI;IACA;IACA;IACA;IACA;IACA;;;AAGF;EAhBF;IAiBI;IACA;IACA;IACA;IACA;IACA;IACA;;;;AAIJ;EACE;EACA;;;AAIF;EACI;EACA;EACA;;AAKF;EARF;IASI;;;AAGF;EAZF;IAaI;;;;AAKJ;EACE;EACA,OxB5Kc;EwB6Kd;;;AAGF;EACE;EACA,OxBlLc;EwBmLd;EACA;;;AAGF;EACE;EACA;;;AAGF;EACE;;;AAGF;EACE;IACE;IACA;IACA;IACA;IACA;;EACA;IACE;IACA;IACA;IACA;;EAKJ;IACE;IACA;;EAGF;IACE;IACA;IACA,OxBxNY;IwByNZ;;;AAEA;EANF;IAOI;;;AA5BN;EAgCE;IACE;IACA;IACA,OxBnOY;IwBoOZ;;EAGF;IACE;IACA;;EAGF;IACE;;;AAIJ;EACE;IACE;IACA;IACA;IACA;IACA;IACA;IACA;;EAGF;IACE;IACA;IACA,OxB/PY;IwBgQZ;;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;EACA;EACA;;;AAGF;EACE;EACA;;;AAGF;EACE;IACE;;;AAIJ;EACE;;;AAGF;EACE;EACA;;;AAGF;EACE,OjBtUW;EiBuUX,kBxBrUQ;EwBsUR;;;AAIA;EACE;;;AAIJ;EACE;EACA,kBxBnVc;EwBoVd,OjBpVW;EiBqVX;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;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;EACA;EACA;;AAEA;EAhBF;IAiBI;;;;AAIJ;EACE;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA,kBjBjaa;EiBkab;EACA;EACA;EACA;EACA;;;AAGF;EACE;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA,kBjBrba;EiBsbb;EACA;EACA;EACA;EACA;;;AAGF;EACE;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGF;EACE;;;AAIF;AAAA;EAEE;EACA;;;AAGF;AAAA;EAEE;EACA;;;AAGF;EACE;;;AAGF;EACE,YjB3ea;EiB4eb;;;AAGF;EACE;EACA,YxB1eK;;;AwB6eP;EACE,YxBhfW;;;AwBmfb;EACE;;;AAGF;EACE;IACE;;EAGF;IACE;;;AAIJ;EACE;EACA;EACA;EACA;EACA;EACA;;;AAGF;EACE,OxB/gBc;;;AwBkhBhB;EACE;IACE;IACA;IACA;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;;AAIJ;EACE;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AACA;EAfF;IAgBI;IACA;;;AAIJ;EACE;;;AAKF;EACE;;;AAIJ;EACE;EACA;EACA;;;AAGF;EACE;EACA;EACA%22,%22file%22:%22main.css%22%7D */
