html, body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* Prevent horizontal scroll */
  display: flex;
  justify-content: center;
  align-items: center;
}

.parent {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;

}

.parent2 {
  width: 100%;
  text-align: center;
  font-size: 14px;
  color: #000;
  word-wrap: break-word;
  word-break: break-word;
}

.block2 {
  width: auto;
  max-width: 100%;
  height: auto;
  display: inline-block;
  vertical-align: middle;
  text-align: left;
  background: #ffffff;
}

.info {
  width: auto;
  max-width: 100%;
  border: 0px solid #EF8031;
  box-sizing: border-box;
  word-wrap: break-word;
  word-break: break-word;
  margin: 20px 0; /* Add some spacing around the info box */
  margin-bottom: 5%;
}

.link-button {
  color: #0369CB; /* Цвет текста */
  font-weight: bold; /* Жирный шрифт */
  text-decoration: none; /* Убираем подчеркивание */
 /* transition: color 0.3s;  Плавное изменение цвета при наведении */
}

.link-button:hover {
  opacity: 1; /* Устанавливаем полную непрозрачность при наведении (если нужно) */
  color: #7F7F7F; /* Цвет текста при наведении */
}

.language__img {
  margin: 2px;
  cursor: pointer;
  opacity: .5;
  font-weight: bold;
}

.language__img:hover,
.language__img_active { 
  opacity: 1;
  color: #0369CB;
  font-weight: bold;
}

.skiptranslate {
  display: none !important;
  height: 0%;
}

.goog-text-highlight {
  background-color: transparent !important;
  border: none !important; 
  box-shadow: none !important;
}

/* Скрыть элементы переводчика */
.goog-te-banner-frame.skiptranslate {
  display: none !important;
}

body {
  top: 0 !important;
}

#nprogress .spinner {
  display: block;
  position: fixed;
  z-index: 1031;
  top: 15px;
  right: 15px;
}

#nprogress .spinner-icon {
  width: 18px;
  height: 18px;
  box-sizing: border-box;
  border: solid 2px transparent;
  border-top-color: #AA0000;
  border-left-color: #AA0000;
  border-radius: 50%;
  -webkit-animation: nprogress-spinner 400ms linear infinite;
  animation: nprogress-spinner 400ms linear infinite;
}

.nprogress-custom-parent {
  overflow: hidden;
  position: relative;
}

.nprogress-custom-parent #nprogress .spinner,
.nprogress-custom-parent #nprogress .bar {
  position: absolute;
}

@-webkit-keyframes nprogress-spinner {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes nprogress-spinner {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}