:root {
  --Blue: #0071FE;
  --BlueLightMedium: #EEF5FF;
  --BlueLight: #F7F8FD;
  --Black: #000000;
  --BlackLight: #797979;
  --BlackBlure: #00000089;
  --Gray: #D0D0D3;
  --GrayBlack: #3C3C3C;
  --GrayLight: #009dff85;
  --GrayLightExtra: #D0D0D3;
  --White: #FFFFFF;
  --Green: #22c55e;
  --GreenGray: #488a46;
  --GreenMedia: #07D72D;
  --Red: #FF0004;
  --RedLight: #FFDCDC;
  --RedOrange: #FF595E;
  --Yellow: #FFCA3A;
  --blueHot: #1982C4;
  --Violet: #6A4C93;
  --Shadow: 0px 0px 12px var(--BlackBlure);
}

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

body {
  background: #000000;
  font-family: Regular;
  line-height: 110%;
  font-weight: 100;
  color: var(--BlueLight);
}
@media only screen and (max-width: 500px) {
  body {
    font-size: 12px;
    background-attachment: fixed;
  }
}

input:focus,
select:focus,
textarea:focus,
button:focus,
.texteditor:focus {
  outline: none !important;
}

a {
  text-decoration: none;
  color: var(--Blue);
}
a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  max-height: 100%;
}

.flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
.flex.left {
  justify-content: flex-start;
}
.flex.right {
  justify-content: flex-end;
}
.flex.center {
  justify-content: center;
}
@media only screen and (max-width: 500px) {
  .flex.mediaFlex {
    flex-direction: column;
  }
}

.mobile {
  display: none;
}
@media only screen and (max-width: 500px) {
  .mobile {
    display: block;
  }
}

.flexColumn {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.flexColumn.left {
  justify-content: flex-start;
  align-items: flex-start;
}

.grid {
  display: grid;
  gap: 8px;
}
.grid.two {
  grid-template-columns: 1fr 1fr;
}
.grid.four {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.helpSystemBlock {
  padding: 12px;
  border-radius: 5px;
  background: var(--BlackBlure);
  font-weight: 100;
  font-size: 14px;
}

.g16 {
  gap: 16px;
}

.g24 {
  gap: 16px;
}

.red {
  color: var(--Red);
}

.greenBG {
  background: var(--GreenGray);
}

.Green {
  color: var(--Green);
}

.container {
  width: 1400px;
  margin: auto;
}
@media only screen and (max-width: 1400px) {
  .container {
    width: 1200px;
  }
}

@font-face {
  font-family: "Medium";
  src: url("../../public/css/fonts/Manrope/Manrope-Medium.ttf") format("truetype");
  font-weight: 100;
}
@font-face {
  font-family: "Bold";
  src: url("../../public/css/fonts/Manrope/Manrope-Bold.ttf") format("truetype");
  font-weight: 100;
}
@font-face {
  font-family: "SemiBold";
  src: url("../../public/css/fonts/Manrope/Manrope-SemiBold.ttf") format("truetype");
  font-weight: 100;
}
@font-face {
  font-family: "Regular";
  src: url("../../public/css/fonts/Manrope/Manrope-Regular.ttf") format("truetype");
  font-weight: 100;
}
@font-face {
  font-family: "Light";
  src: url("../../public/css/fonts/Manrope/Manrope-Light.ttf") format("truetype");
  font-weight: 100;
}
h1, h2, h3, h4, h5, h6 {
  line-height: 120%;
  font-weight: 100;
}

.h1 {
  font-family: Bold;
  font-size: 30px;
}

.h2 {
  font-family: Medium;
  font-size: 30px;
}

.h3 {
  font-family: SemiBold;
  font-size: 20px;
}

.h4 {
  font-family: Bold;
  font-size: 16px;
}

.t14m {
  font-family: Medium;
  font-size: 14px;
  line-height: 120%;
  font-weight: 100;
}

.t14r {
  font-family: Regular;
  font-size: 14px;
  line-height: 120%;
  font-weight: 100;
}

.t12m {
  font-family: Medium;
  font-size: 12px;
  line-height: 120%;
  font-weight: 100;
}

.button {
  display: flex;
  padding: 7px 20px;
  font-family: Regular;
  border-radius: 5px;
  color: var(--White);
  background: var(--blueHot);
  border: 0;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
  font-size: 12px;
  line-height: 125%;
  transition: 0.2s;
}
.button:hover {
  background: var(--Blue);
}
.button.hide {
  background: var(--Gray);
}/*# sourceMappingURL=root.css.map */