
@import url("https://fonts.googleapis.com/css?family=Roboto&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
  font-family: roboto;
  border: 0;
}

html, body {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
}

/* скрытие полосы скроллинга */
body::-webkit-scrollbar {
  display: none;
}

footer {
  width: 100%;
  height: 100%;
}

/* типовые классы */
.hidden {
  display: none !important;
}

.div-active {
  border: solid 1.5px;
  border-color: var(--black);
}

/* 1. Классы для контейнеров */

/* стандартная настройка выравнивание содержимого контейнера */
.flex-row {
  display: flex;
  flex-direction: row;
}


.flex-row-left-nowrap {
  display: flex;
  flex-direction: row;
  justify-content: left;
  flex-wrap: nowrap;
}

.flex-row-left-vcent {
  display: flex;
  flex-direction: row;
  justify-content: left;
  align-items: center;
}

.flex-row-right {
  display: flex;
  flex-direction: row;
  justify-content: right;
}

.flex-row-right-vcent {
  display: flex;
  flex-direction: row;
  justify-content: right;
  align-items: center;
}

.flex-wrap-left {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start; /* Прижимает элементы к верху, строки не распределяются равномерно */
  justify-content: flex-start ; /* Элементы прижимаются влево */
}

.flex-gcenter {
  display: flex;
  justify-content: center;
}


.flex-row-vcent {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.flex-row-gspbtw {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.flex-col-vspbtw {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}


.flex-row-gspbtw-bottom {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: end;
}

.flex-col {
  display: flex;
  flex-direction: column;
}

.flex-col-left {
  display: flex;
  flex-direction: column;
  align-items: start;
}

.flex-col-right {
  display: flex;
  flex-direction: column;
  align-items: end;
}

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


.flex-vcent {
  display: flex;
  align-items: center;
}

.flex-vbottom {
  display: flex;
  align-items: end;
}

.flex-gright-vbottom {
  display: flex;
  justify-content: right;
  align-items: end;
}

.flex-gcent-vcent {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flex-right-vcent {
  display: flex;
  justify-content: right;
  align-items: center;
}

.gapc-5 {
  display: flex;
  gap: 0 5px;
}

.gapc-15 {
  display: flex;
  gap: 15px;
}


.gapr-5 {
  display: flex;
  gap: 5px 0;
}

.gapr-10 {
  display: flex;
  gap: 10px 0;
}


/* 2. Классы по значению */
/* ширина */

.w-50 {
  width: 50px;
}


.w-150 {
  width: 150px;
}

.w-200 {
  width: 200px;
}

.w-60pc {
  width: 60%;
}


.w-90pc {
  width: 90%;
}

.w-100pc {
  width: 100%;
}

/* высота */
.h-20 {
  height: 20px;
}

.h-25 {
  height: 25px;
}

.h-30 {
  height: 30px;
}


.h-280 {
  height: 280px;
}

/* margin сверху*/
.mrgt-5 {
  margin-top: 5px;
}

.mrgt-10 {
  margin-top: 10px;
}

.mrgt-15 {
  margin-top: 15px;
}

.mrgt-20 {
  margin-top: 20px;
}

/* margin снизу*/
.mrgb-5 {
  margin-bottom: 5px;
}

.mrgb-10 {
  margin-bottom: 10px;
}

.mrgtb-5 {
  margin: 5px 0;
}

/* margin слева*/
.mrgl-5 {
  margin-left: 5px;
}

.mrgl-10 {
  margin-left: 10px;
}

.mrgl-20 {
  margin-left: 20px;
}

/* margin справа*/
.mrgr-5 {
  margin-right: 5px;
}

/* padding ноль*/


/* padding сверху*/

/* padding cнизу*/

.pdl-10 {
  padding-left: 10px;
}

.pdr-10 {
  padding-right: 10px;
}

.pdtb-5 {
  padding: 5px 0;
}

.pdtb-10 {
  padding: 10px 0;
}

/* цвет */

/* изображения */
.wh-100-img {
  width: 100px;
  height: 100px;
  object-fit: cover; /* Обрезает изображение, сохраняя пропорции */
}

/* 3. Классы для текстов */
.txt-12-300-blue {
  font-size: 12px;
  font-weight: 300;
  color: var(--blue);
}


.txt-14-300-black {
  font-size: 14px;
  font-weight: 300;
  color: var(--black);
}

.txt-14-300-blue {
  font-size: 14px;
  font-weight: 300;
  color: var(--blue);
}

.txt-14-300-gray {
  font-size: 14px;
  font-weight: 300;
  color: var(--gray-text);
}

.txt-14-600-black {
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
}

.txt-14-600-blue {
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
}

.txt-15-600-blue {
  font-size: 15px;
  font-weight: 600;
  color: var(--blue);
}

.txt-16-300-black {
  font-size: 16px;
  font-weight: 300;
  color: var(--black);
}

.txt-16-300-gray {
  font-size: 16px;
  font-weight: 300;
  color: var(--gray-text);
}

.txt-16-300-blue {
  font-size: 16px;
  font-weight: 300;
  color: var(--blue);
}

.txt-16-600-black {
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
}

.txt-16-600-blue {
  font-size: 16px;
  font-weight: 600;
  color: var(--blue);
}

.txt-16-600-blue {
  font-size: 16px;
  font-weight: 600;
  color: var(--blue);
}

.txt-18-300-black {
  font-size: 18px;
  font-weight: 300;
  color: var(--black);
}


.txt-18-600-black {
  font-size: 18px;
  font-weight: 600;
  color: var(--black);
}

.txt-18-600-blue {
  font-size: 18px;
  font-weight: 600;
  color: var(--blue);
}


.txt-20-600-black {
  font-size: 20px;
  font-weight: 600;
  color: var(--black);
}



.txt-22-600-black {
  font-size: 22px;
  font-weight: 600;
  color: var(--black);
}

.txt-22-600-blue {
  font-size: 22px;
  font-weight: 600;
  color: var(--blue);
}

.txt-24-600-black {
  font-size: 24px;
  font-weight: 600;
  color: var(--black);
}

.brdl-05-gray215 {
  border-left: solid 0.5px var(--gray215);
}


