@font-face {
  font-family: 'roboto';
  src: url('/fonts/roboto.ttf');
}

@font-face {
  font-family: 'roboto-bold';
  src: url('/fonts/roboto-bold.ttf');
}

@font-face {
  font-family: 'roboto-light';
  src: url('/fonts/roboto-light.ttf');
}

@font-face {
  font-family: 'roboto-medium';
  src: url('/fonts/roboto-medium.ttf');
}

@font-face {
  font-family: 'ubuntumono';
  src: url('/fonts/ubuntumono.ttf');
}

@font-face {
  font-family: 'helveticaneue-medium';
  src: url('/fonts/helveticaneue-medium.ttf');
}

@font-face {
  font-family: 'helveticaneue-bold';
  src: url('/fonts/helveticaneue-bold.ttf');
}

@font-face {
  font-family: 'helveticaneue-light';
  src: url('/fonts/helveticaneue-light.ttf');
}

@font-face {
  font-family: 'helveticaneue-thin';
  src: url('/fonts/helveticaneue-thin.ttf');
}

@font-face {
  font-family: 'excluded';
  src: url('/fonts/excluded.ttf');
}

@font-face {
  font-family: 'excluded-italic';
  src: url('/fonts/excluded-italic.ttf');
}

@font-face {
  font-family: 'montserrat-semibold';
  src: url('/fonts/montserrat-semibold.ttf');
}

@font-face {
  font-family: 'montserrat-regular';
  src: url('/fonts/montserrat-regular.ttf');
}

@font-face {
  font-family: 'montserrat-light';
  src: url('/fonts/montserrat-light.ttf');
}

@font-face {
  font-family: 'montserrat-medium';
  src: url('/fonts/montserrat-medium.ttf');
}

@font-face {
  font-family: 'montserrat-extrabold';
  src: url('/fonts/montserrat-extrabold.ttf');
}

@font-face {
  font-family: 'montserrat-bold';
  src: url('/fonts/montserrat-bold.ttf');
}

/* @font-face {
  font-family: 'aquire-bold';
  src: url('/fonts/aquire-bold.otf');
} */
::-webkit-scrollbar-button {
  width: 5px;
  height: 0;
  background-image: url('');
  background-repeat: no-repeat;
}

::-webkit-scrollbar-track {
  background-color: rgb(40, 40, 40);
}

::-webkit-scrollbar-thumb {
  -webkit-border-radius: 0;
  border-radius: 0;
  background-color: white;
  border-radius: 2px;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #56999f;
}

::-webkit-resizer {
  width: 4px;
  height: 0;
  background-image: url('');
  background-repeat: no-repeat;
}

::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

.g-recaptcha {
  display: none;
}

/**
* Reinstate scrolling for non-JS clients
*/
.simplebar-content-wrapper {
  overflow: auto;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

body {
  margin: 0;
  padding: 0;
  /* overflow-y: hidden; */
  /* overflow-x: hidden; */
}

button, a.button {
  color: white;
  border: 2px rgb(51, 255, 0) solid;
  border-radius: 3px;
  margin-top: 5px;
  background-color: rgb(40, 40, 40);
  /* font-family: 'roboto-bold'; */
  font-family: 'montserrat-bold';
  height: 30px;
  cursor: pointer;
  font-size: 12px;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 6px;
  padding-right: 6px;
  display: inline-block;
}

a.button {
  text-decoration: none;
  text-align: center;
  line-height: 30px;
}

button:hover,
a.button:hover {
  opacity: 0.75;
}

button:focus,
a.button:focus {
  outline: none;
}

a.light,
button.light {
  display: inline-block;
  height: 40px;
  color: white;
  font-family: 'montserrat-semibold';
  border-radius: 5px;
  border: 2px #5383ff solid;
  line-height: 36px;
  text-align: center;
  text-decoration: none;
  box-sizing: border-box;
  backdrop-filter: blur(2px);
  font-size: 16px;
  box-shadow: 0 0 10px black;
  padding-left: 10px;
  padding-right: 10px;
  background-color: transparent;
}

button.light{
  line-height: normal;
}

a.light:hover,
button.light:hover {
  opacity: 1;
  box-shadow: 0 0 1px 2px #5383ff33;
}


.button--rainbow-border{
  text-align: center;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  padding: 2px;
  height: 50px;
  display: inline-block;
  text-decoration: none;
}

.button--rainbow-border::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 100%;
  background: linear-gradient(115deg, #4fcf70, #fad648, #a767e5, #12bcfe, #44ce7b);
  background-size: 50% 100%;
}

.button--rainbow-border:hover::before{
  animation: gradient-translate-x 0.75s linear infinite;
}

@keyframes gradient-translate-x {
  to {
    transform: translateX(-50%);
  }
}

.button--rainbow-border>span{
  color: white;
  position: relative;
  background: #000;
  border-radius: 4px;
  display: block;
  height: 100%;
  font-family: 'montserrat-regular';
  padding-inline: 10px;
  /* line-height: calc(50px - 2px*2); */
  line-height: 50px;
}

input:not([type='checkbox']):not([type='radio']):not([type='file']) {
  width: 100%;
  border-radius: 3px;
  height: 25px;
  background-color: rgb(40, 40, 40);
  border: 2px white solid;
  box-sizing: border-box;
  padding: 0;
  padding-left: 5px;
  padding-right: 5px;
  color: white;
  /* font-family: 'roboto-bold'; */
  font-family: 'roboto';
  font-size: 12px;
  margin-top: 5px;
}

input:not([type='checkbox']):not([type='radio']):not([type='file']):focus {
  outline: none;
  border: 2px rgb(10, 191, 254) solid;
  box-shadow: 0 0 5px rgb(10, 191, 254);
}

input:not([type='checkbox']):not([type='radio']):not([type='file'])::placeholder {
  color: white;
}

div.input_wrapper {
  position: relative;
  margin-top: 5px;
  display: flex;
}

div.input_wrapper>input {
  margin: 0 !important;
}

.box_show_animate_rotation {
  animation: box_show_animate_rotation 0.5s ease;
  transform-origin: top;
}

@keyframes box_show_animate_rotation {
  0% {
    transform: perspective(800px) rotateX(15deg) translate(-50%, -50%);
  }

  100% {
    transform: translate(-50%, -50%);
  }
}

.box_show_animate_opacity {
  animation: box_show_animate_opacity 0.15s ease;
}

@keyframes box_show_animate_opacity {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.box_show_animate_move {
  animation: box_show_animate_move 0.5s ease;
  margin-top: 0;
}

@keyframes box_show_animate_move {
  0% {
    margin-top: -20px;
  }

  100% {
    margin-top: 0;
  }
}

.box_show_animate_transform_move {
  animation: box_show_animate_transform_move 0.5s ease;
  transform: translateY(0);
}

@keyframes box_show_animate_transform_move {
  0% {
    transform: translateY(-20px);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes pulse_green {
  0% {
    box-shadow: 0 0 0 0 rgba(146, 191, 36, 1);
  }

  70% {
    box-shadow: 0 0 0 7.5px rgba(146, 191, 36, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(146, 191, 36, 0);
  }
}

@keyframes pulse_blue {
  0% {
    box-shadow: 0 0 0 0 rgba(10, 191, 254, 1);
  }

  70% {
    box-shadow: 0 0 0 7.5px rgba(10, 191, 254, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(10, 191, 254, 0);
  }
}

@keyframes pulse_yellow {
  0% {
    box-shadow: 0 0 0 0 rgba(51, 255, 0, 1);
  }

  70% {
    box-shadow: 0 0 0 7.5px rgba(51, 255, 0, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(51, 255, 0, 0);
  }
}

/* Badges */

.badge {
  border: 1px rgb(51, 255, 0) solid;
  box-shadow: 0 0 10px black;
  background-color: rgba(51, 255, 0, 0.05);
  display: flex;
  align-items: center;
  padding: 10px;
  backdrop-filter: blur(1.5px);
  gap: 10px;
  box-shadow: 5px -5px 10px rgba(0, 0, 0, 0.25);
}

.badge--fixed {
  display: none;
  border-top-right-radius: 10px;
  border-left: none;
  border-bottom: none;
  position: fixed;
  z-index: 999999999;
  left: -10;
  bottom: 0;
  transform: perspective(600px) rotateY(20deg) !important
}

.badge__img{
  width: 40px;
}

/*TODO: make according to BEM*/
.badge__img>img{
  width: inherit;
}

.badge__text{
  color: white;
  font-family: 'montserrat-bold';
}