:root {
  --Blue: #0071FE;
  --BlueLightMedium: #EEF5FF;
  --BlueLight: #F7F8FD;
  --Black: #000000;
  --BlackLight: #797979;
  --BlackBlure: #0000001c;
  --Gray: #D0D0D3;
  --GrayBlack: #3C3C3C;
  --GrayLight: #EBEDF0;
  --GrayLightExtra: #D0D0D3;
  --White: #FFFFFF;
  --Green: #8AC926;
  --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: var(--BlueLight);
  font-family: InterRegular;
  line-height: 110%;
}
@media only screen and (max-width: 500px) {
  body {
    font-size: 12px;
  }
}

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

.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(--BlueLightMedium);
  font-weight: 100;
  font-size: 14px;
}

.g16 {
  gap: 16px;
}

.g24 {
  gap: 16px;
}

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

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

.container {
  max-width: 1600px;
  margin: auto;
}

@font-face {
  font-family: "InterBold";
  src: url("../../public/css/fonts/Inter-Bold.otf") format("truetype");
  font-weight: 100;
}
@font-face {
  font-family: "InterMedium";
  src: url("../../public/css/fonts/Inter-Medium.otf") format("truetype");
  font-weight: 100;
}
@font-face {
  font-family: "InterSemiBold";
  src: url("../../public/css/fonts/Inter-SemiBold.otf") format("truetype");
  font-weight: 100;
}
@font-face {
  font-family: "InterSemiBold";
  src: url("../../public/css/fonts/Inter-SemiBold.otf") format("truetype");
  font-weight: 100;
}
@font-face {
  font-family: "InterSemiBold";
  src: url("../../public/css/fonts/Inter-SemiBold.otf") format("truetype");
  font-weight: 100;
}
@font-face {
  font-family: "InterRegular";
  src: url("../../public/css/fonts/Inter-Regular.otf") format("truetype");
  font-weight: 100;
}
.h1 {
  font-family: InterBold;
  font-size: 30px;
  line-height: 120%;
  font-weight: 100;
}

.h2 {
  font-family: InterMedium;
  font-size: 30px;
  line-height: 120%;
  font-weight: 100;
}

.h3 {
  font-family: InterSemiBold;
  font-size: 20px;
  line-height: 120%;
  font-weight: 100;
}

.h4 {
  font-family: InterBold;
  font-size: 16px;
  line-height: 120%;
  font-weight: 100;
}

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

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

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

.button {
  display: flex;
  padding: 7px 20px;
  font-family: InterRegular;
  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 */