﻿@charset "UTF-8";
* {
  font-family: Montserrat;
  color: rgb(58, 48, 38);
  font-size: 0.83vw;
}

body {
  margin: 0;
}

.gCenteredContent {
  justify-content: center;
  align-items: center;
}

.gCenteredText {
  text-align: center;
}

.gFillContent {
  justify-content: space-between;
  align-items: center;
}

.gCenteredWidth {
  justify-content: center;
}

.gCenteredHeight {
  align-items: center;
}

.gWidth100 {
  width: 100%;
}

.gWidth50 {
  width: 50%;
}

.gHeight50 {
  height: 50%;
}

.gHeight100 {
  height: 100%;
}

.gHeight100dvh {
  height: 100dvh;
}

.gWidth0 {
  width: 0;
}

.gHeight0 {
  height: 0;
}

.gWH0 {
  width: 0;
  height: 0;
}

/*--Центровка для сетки--*/
/*--Стили сетка--*/
.gRow {
  display: inline-flex;
}

.gCollumn {
  display: flex;
  flex-flow: column;
}

.gCell {
  display: flex;
}

/*--Стили сетка--*/
.Element_Hidden {
  display: none;
}

.Element_Show {
  display: flex !important;
}

.gOverflowHidden {
  overflow: hidden;
}

.gUserNoSelect {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.gNoTextSelect {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.gAlignSelfBottom {
  margin-top: auto;
}

.gArtifactsBkg {
  position: fixed;
  top: -10px;
  width: 1px;
  height: 1px;
  z-index: -100;
}

:root {
  --gScP: 1;
}

@media (min-width: 1920px) {
  :root {
    --gScP: 0.8;
  }
}
@media (max-width: 900px) {
  :root {
    --gScP: 3;
  }
}
* {
  font-family: Montserrat;
  color: rgb(58, 48, 38);
  font-size: calc(0.83vw * var(--gScP));
}
