:root {
  --font-family: Roboto, "Roboto", SegoeUI, "Golos Text", Arial, sans-serif;
  --font-size: 16px;
  --font-line: 23px;
  --color-green: #00b276;
  --color-blue: #2a579a;
  --color-black: #000000;
  --color-light-grey: #f4f4f4;
  --color-grey: #6c6c6c;
  --color-white: #ffffff;
}
::-webkit-scrollbar {
  background-color: var(--color-white);
  width: 5px;
  height: 8px;
}
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 1px var(--color-blue);
}
::-webkit-scrollbar-thumb,
::-webkit-scrollbar-thumb:hover {
  background: var(--color-blue);
}
html,
body {
  margin: 0;
  padding: 0;
  font: 400 var(--font-size) / var(--font-line) var(--font-family);
  font-style: normal;
  letter-spacing: 0.5px;
  font-size: 16px;
  color: #ffffff;
}
h1,
h2,
h3,
h4 {
  margin-bottom: 15px;
  font-weight: 700;
}
h4 {
  font-size: 22px;
}
a {
  text-decoration: none;
}
.btn {
  border-radius: 5px;
}
.btn-primary {
  --bs-btn-bg: #2a579a;
  --bs-btn-border-color: #2a579a;
  --bs-btn-hover-bg: #2a579a;
  --bs-btn-hover-border-color: #2a579a;
  --bs-btn-active-bg: #2a579a;
  --bs-btn-active-border-color: #2a579a;
  --bs-btn-disabled-bg: #2a579a;
  --bs-btn-disabled-border-color: #2a579a;
}
.logo_xStation {
  position: relative;
  display: block;
  width: 150px;
  height: 30px;
  background: transparent url("../img/xstation_logo_white.png") no-repeat 0% 50%;
  background-size: contain;
  margin: 10px 0;
}
.logo {
  position: relative;
  display: block;
  width: 150px;
  height: 30px;
  background: transparent url("/files/img/logo_black.svg") no-repeat 0% 50%;
  background-size: contain;
  margin: 10px 0;
}
.loading {
  position: relative;
  display: block;
  background: transparent url('/files/img/loading.gif') no-repeat 50% 50%;
  background-size: 80px;
  width: 100%;
  height: 100px;
}
header {
  position: relative;
  padding: 10px 0 10px 0;
}
form {
  position: relative;
}
form .form-group {
  margin-bottom: 15px;
}
form .form-group input[type=text],
form .form-group input[type=number],
form .form-group input[type=tel],
form .form-group input[type=email] {
  width: 100%;
  padding: 8px 5px;
}
form .form-group.form-check {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: flex-start;
  align-items: center;
}
form .form-group.form-check input {
  position: relative;
  display: block;
  margin-right: 15px;
  margin-left: -10px;
}
form .form-group.form-check label {
  text-align: left;
  width: 100%;
  display: block;
  padding: 3px 0 0 0;
  line-height: 150%;
}
form input.input-error {
  position: relative;
  border-color: red;
}
form input.input-error + span {
  position: absolute;
  top: calc(14%);
  right: 5px;
  display: block;
  width: 10px;
  height: 20px;
  text-align: center;
  color: red;
}
form input.input-error + span + label {
  border-color: red;
}
.products {
  padding: 0;
  list-style: none;
  height: auto;
}
.products:after {
  content: "";
  float: none;
  clear: both;
}
.products.mt-50 {
  margin-top: 50px;
}
.products li {
  position: relative;
  padding: 0 0px 15px 35px;
}
.products li:before {
  content: url('/files/img/icon_li_blue.png');
  position: absolute;
  left: 0;
  width: 28px;
  height: 28px;
  line-height: 28px;
  text-align: center;
}
footer {
  position: relative;
  font-size: 14px;
  line-height: 130%;
}
footer p {
  margin: 0;
  padding: 0;
  padding-bottom: 8px;
}
footer a {
  color: inherit;
}
footer .fa {
  text-decoration: none;
  color: #ccc;
  display: inline-block;
  margin-top: 15px;
}
footer .fa i {
  position: relative;
  display: flex;
  align-content: center;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  border-radius: 38px;
  font-size: 18px;
  text-align: center;
  border: 1px solid #8c8c8c;
  color: #8c8c8c;
  padding: 5px;
  margin: 0 7px 0 2px;
}
footer .fa i:hover {
  border: 1px solid var(--color-blue);
  color: var(--color-blue);
}
footer .footer-text {
  font-size: 12px;
}
.mainBanner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #203540;
  z-index: -1;
}
.mainBanner img {
  position: fixed;
  top: 0;
  right: 0;
  width: auto;
  height: 100%;
  background: #203540;
  transform: translate3d(0, 0, 0);
  transition-timing-function: linear;
  -webkit-transition-timing-function: linear;
  transition-duration: 180s;
}
.content {
  height: calc(100vh - 100px);
}
