/*!**************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[0].use[1]!./static/css/404.css ***!
  \**************************************************************************************************/
.fourzerofour-main {
  padding: 0 2%;
}

.fourzerofour-title {
  margin: 1em 0;
  font-weight: 400;
  font-size: 3em;
  line-height: 1.1;
  user-select: none;
}

.fourzerofour-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2em;
}

.fourzerofour-image {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 300px;
  border-radius: 10px;
}

.fourzerofour-back {
  font-size: 5em;
}

@media (max-width: 600px) {
  .fourzerofour-title {
    font-size: 2em;
  }

  .fourzerofour-container {
    flex-direction: column-reverse;
    align-items: flex-start;
  }
}
/*!***********************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[0].use[1]!./static/css/base_article.css ***!
  \***********************************************************************************************************/
/* Стандартные стили для общих статей. 
Не стоит шатать, это нечто стабильное */

.base-main {
  max-width: 1280px;
  margin: 2rem auto 0 auto;
  padding: 0 2%;
}

.base-title {
  margin: 2em 0 0.5em 0;
  font-size: 2em;
  line-height: 1;
}

.base-subtitle {
  margin: 2em 0 0.5em 0;
  font-size: 1.5em;
  line-height: 1;
}

.base-main p {
  width: 78.75%;
  margin: 0 0 0.5em 0;
  word-wrap: break-word;
}

.base-main p+p,
.base-main p+blockquote,
.base-main p+ul,
.base-main p+ol {
  margin-top: 1em;
}

.base-main ul,
.base-main ol {
  box-sizing: border-box;
  width: 78.75%;
  margin: 0 0 0.5em 0;
  padding-left: 2em;
  letter-spacing: -0.003em;
}

.base-main ul+p,
.base-main ol+p,
.base-main ul+blockquote,
.base-main ol+blockquote {
  margin-top: 1em;
}

/* Зачеркивание */
.base-main strike {
  position: relative;
  padding: 0 0.15em;
  color: #999;
  text-decoration: none;
}

.base-main strike::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 0.07em;
  background-color: #000;
}

.base-image {
  box-sizing: border-box;
  width: fit-content;
  margin-bottom: 2em;
  border: 1px solid #eeeeee;
  border-radius: 10px;
  overflow: hidden;
}

.base-image img {
  display: block;
  max-width: 100%;
  height: auto;
}

.base-image+.base-image {
  margin-top: -1em;
}

@media screen and (max-width: 900px) {

  .base-main p,
  .base-main ul,
  .base-main ol {
    width: 100%;
  }
}
/*!*****************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[0].use[1]!./static/css/header.css ***!
  \*****************************************************************************************************/
.header {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid #cfcfcf;
  background-color: var(--header-bg-color);
  position: relative;
}

.header__nav {
  flex: 1;
  margin: 0 0 0 2%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.header__nav::-webkit-scrollbar {
  display: none;
}

.header__nav-logo {
  height: 2em;
}

.header__nav-logo img {
  width: 2em;
  height: 2em;
  margin-right: 0.5em;
}

.header__nav-crumbs {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  margin: 0;
  padding: 0;
  list-style: none;
}

.header__nav-crumb {
  display: flex;
  flex-shrink: 0;
  align-items: stretch;
}

.header__nav-crumb:last-child {
  padding-right: .35em;
}

.header__nav-crumb:first-child .header__nav-link {
  padding-left: 0;
}

.header__nav-link {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  padding-left: .35em;
  text-decoration: none;
  transition: 0.2s linear;
  transition-property: border-bottom, border-color, background, color, fill;
  white-space: nowrap;
}

.header__nav-link[href]::after {
  content: '/';
  padding-left: .35em;
  /* 30% от черного */
  color: rgb(179, 179, 179);
}

.header__nav-link[href] {
  color: var(--linkColor);
}

.header__nav-link[href]:hover {
  color: var(--linkHoverColor);
}

@media only screen and (max-width: 600px) {
  .header__nav {
    margin: 0;
  }

  .header__nav-crumbs {
    font-size: 1.2em;
  }
}
/*!*****************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[0].use[1]!./static/css/footer.css ***!
  \*****************************************************************************************************/
.footer {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75em 1.5em;
  margin-top: 2em;
  border-top: 1px solid #cfcfcf;
  padding: 1em 2%;
  font-size: 1rem;
  line-height: 1;
}

.footer__logo {
  width: auto;
  max-height: 1.5em;
}

.footer__link {
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgba(0, 0, 0, 0.2);
  color: #000;
  text-decoration: none;
  transition: 0.2s linear;
  transition-property: border-bottom, border-color, background, color, fill;
}

.footer__link:hover {
  border-bottom-color: var(--linkHoverUnderlineColor);
  color: var(--linkHoverColor);
}

@media (max-width: 900px) {
  .footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75em 0.85em;
  }
}
/*!****************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[0].use[1]!./static/css/basic.css ***!
  \****************************************************************************************************/
/* Переменные и стили для всех */

:root {
  --linkColor: #327fe5;
  --linkUnderlineColor: rgba(0, 96, 160, 0.15);
  --linkColorVisited: #b4d1f6;
  --linkUnderlineColorVisited: rgba(112, 160, 176, 0.15);
  --linkHoverColor: #ff1515;
  --linkHoverUnderlineColor: rgba(176, 48, 0, 0.15);
  --header-bg-color: #fff;
}

[data-theme="dark"] {
  --linkColor: #55baf5;
  --header-bg-color: rgba(0, 0, 0, 0.7);
  
  .footer__logo {
    filter: invert(1);
  }

  .footer__link {
    border-bottom-color: rgba(255, 255, 255, 0.2);
    color: #fff;
  }
}

body {
  margin: 0px;
  font-family: Helvetica, Arial, sans-serif;
}

.standard-body {
  font-size: 1.2rem;
  line-height: 1.4;
  margin: 0;
}

.link {
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: var(--linkUnderlineColor);
  color: var(--linkColor);
  text-decoration: none;
  transition: 0.2s linear;
  transition-property: border-bottom, border-color, background, color, fill;
}

.link:visited {
  border-bottom-color: var(--linkUnderlineColorVisited);
  color: var(--linkColorVisited);
}

.link:hover {
  border-bottom-color: var(--linkHoverUnderlineColor);
  color: var(--linkHoverColor);
}

.link--no-visited {
  border-bottom-color: var(--linkUnderlineColor);
  color: var(--linkColor);
}

.link--no-visited:visited {
  border-bottom-color: var(--linkUnderlineColor);
  color: var(--linkColor);
}

.link--no-visited:hover {
  border-bottom-color: var(--linkHoverUnderlineColor);
  color: var(--linkHoverColor);
}

@media only screen and (max-width: 600px) {
  .standard-body {
    font-size: 1rem;
  }

  .link:hover {
    border-bottom-color: var(--linkUnderlineColor);
    color: var(--linkColor);
  }
}
/*!****************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[0].use[1]!./static/css/index.css ***!
  \****************************************************************************************************/
.index-maybe-too-small-body {
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
}

.index-maybe-too-small-body .footer {
  margin-top: auto;
}

.index-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  gap: 20px;
  box-sizing: border-box;
  width: 100%;
  max-width: 1280px;
  margin: 3em auto 2em auto;
  padding: 0 2%;
}

.index-links {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 50%;
  margin: 0;
  padding: 0 2% 0 0;
  font-size: 2.5em;
  line-height: 1;
  list-style: none;
}

.index-new {
  color: #1fbb4a;
  flex-shrink: 0;
  white-space: nowrap;
  margin-right: 2%;
  font-size: 1.2rem;
}

.index-new .link {
  color: #1fbb4a;
  border-bottom-color: rgba(11, 160, 0, 0.15);
}

.index-new .link--no-visited:hover {
  border-bottom-color: var(--linkHoverUnderlineColor);
  color: var(--linkHoverColor);
}

.index-new-symbol {
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
}

.index-new-symbol svg{
  margin-top: -0.15em;
  height: 0.75em;
}

.index-links__aneks {
  position: relative;
}

.index-links__aneks .link {
  position: relative;
  z-index: 2;
  margin-left: -1px;
  border-top: 1px solid transparent;
  border-right: 1px solid transparent;
  border-left: 1px solid transparent;
  background-color: #fff;
}

.index-links__aneks .link:hover {
  border-top: 1px solid var(--linkHoverUnderlineColor);
  border-right: 1px solid var(--linkHoverUnderlineColor);
  border-left: 1px solid var(--linkHoverUnderlineColor);
}

.index-links__aneks-haha {
  position: absolute;
  z-index: 1;
  margin: 0;
  opacity: 0;
  font-size: 0.8em;
  transition: 0.2s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  pointer-events: none;
  user-select: none;
}

#ha {
  top: 0;
  left: 0;
  transition-delay: 0s;
  transform: rotate(339deg) translate(57%, 30%);
  transform-origin: right top;
}

#haha {
  right: 0;
  bottom: 50%;
  transition-delay: 0.1s;
  transform: rotate(34deg) translate(24%, 89%);
}

#hahaha {
  top: 0;
  right: 0;
  transition-delay: 0.2s;
  transform: rotate(-15deg) translate(0%, 0%);
}

#hahahaha {
  bottom: 0px;
  left: 0px;
  transition-delay: 0.3s;
  transform: rotate(22deg) translate(38%, -60%);
  transform-origin: right bottom;
}

#hahahahaha {
  top: 0;
  left: 50%;
  transition-delay: 0.4s;
  transform: rotate(-90deg) translate(-10%, -50%);
}

.index-links__aneks:hover #ha {
  opacity: 1;
  transform: rotate(339deg) translate(0%, 30%);
}

.index-links__aneks:hover #haha {
  opacity: 1;
  transform: rotate(34deg) translate(50%, 89%);
}

.index-links__aneks:hover #hahaha {
  opacity: 1;
  transform: rotate(-15deg) translate(93%, 0%);
}

.index-links__aneks:hover #hahahaha {
  opacity: 1;
  transform: rotate(22deg) translate(-8%, -60%);
}

.index-links__aneks:hover #hahahahaha {
  opacity: 1;
  transform: rotate(-90deg) translate(80%, -50%);
}

.index-intro {
  box-sizing: border-box;
  width: 60%;
  border: 1px solid #000;
  border-radius: 7px;
  padding: 0 20px;
  background-color: #fff;
}

.index-intro__subsribe {
  display: inline-block;
  box-sizing: border-box;
  margin-top: 0.2em;
  border: 1px solid #8e8e8e;
  border-radius: 5px;
  padding: 0em 0.3em;
  color: #000;
  text-align: center;
  text-decoration: none;
  transition: 0.1s linear border;
}

.index-intro__subsribe:hover {
  border: 1px solid #000;
}



@media (max-width: 1000px) {
  .index-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 4em;
    margin-top: 2em;
  }

  .index-links {
    gap: 0.5em;
    width: 100%;
    font-size: 2em;
  }

  .index-intro {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .index-links__aneks .link:hover {
    border-top: 1px solid transparent;
    border-right: 1px solid transparent;
    border-left: 1px solid transparent;
  }

  .index-links__aneks-haha {
    display: none;
  }
}
/*!************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[0].use[1]!./static/css/design/design.css ***!
  \************************************************************************************************************/
.design-main {
  padding: 0 2%;
}

.design-title {
  margin: 1em 0;
  font-weight: 400;
  font-size: 3em;
  line-height: 1.1;
}

.design-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0 2%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.design-item {
  position: relative;
  flex-grow: 1;
  flex-basis: 49%;
  box-sizing: border-box;
  margin-bottom: 2%;
  border: 1.5px solid #eeeeee;
  border-radius: 30px 30px 30px 0px;
  overflow: hidden;
  background-color: #fff;
  transition-duration: 0.2s;
  transition-timing-function: ease-out;
}

.design-item:hover {
  border: 1.5px solid #363636;
}

.design-item a {
  text-decoration: none;
}

.design-item__title {
  margin: 0;
  padding: 10px;
  color: #000;
  font-size: 1.65rem;
  text-decoration: none;
}

.design-item img {
  display: block;
  width: 100%;
  height: auto;
}

.design-item video {
  display: block;
  width: 100%;
  height: auto;
}

/*Космический буклет*/
.infiniti-space-preview {
  flex-basis: 100%;
  border-radius: 0;
}

.infiniti-space-preview__stars {
  /*16:9 и 80% от размера экрана*/
  display: block;
  width: 100%;
  height: calc(0.5625*0.8*100vw + 42px);
  background-image: url(/static/images/labels/design/stars.jpg);
  background-size: contain;
  transition: 0.2s linear;
  animation: moveStars 100s linear;
  animation-iteration-count: infinite;
}

.infiniti-space-preview__rocket {
  position: absolute;
  top: 0;
  /*16:9 и 80% от размера экрана*/
  left: 60%;
  z-index: 900;
  width: 100%;
  height: calc(0.5625*0.8*100vw);
  background-repeat: no-repeat;
  background-size: contain;
  transform: translateX(-50%);
  animation: rocketFlame 0.4s cubic-bezier(1, 0, 1, 0);
  animation-iteration-count: infinite;
}

@keyframes moveStars {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: -1000% calc(0.5625*0.8*10*100vw);
  }
}

@keyframes rocketFlame {
  from {
    background-image: url(/static/images/labels/design/rocket/1.svg);
  }

  12.5% {
    background-image: url(/static/images/labels/design/rocket/2.svg);
  }

  25% {
    background-image: url(/static/images/labels/design/rocket/3.svg);
  }

  37.5% {
    background-image: url(/static/images/labels/design/rocket/4.svg);
  }

  50% {
    background-image: url(/static/images/labels/design/rocket/5.svg);
  }

  62.5% {
    background-image: url(/static/images/labels/design/rocket/6.svg);
  }

  75% {
    background-image: url(/static/images/labels/design/rocket/7.svg);
  }

  87.5% {
    background-image: url(/static/images/labels/design/rocket/8.svg);
  }

  100% {
    background-image: url(/static/images/labels/design/rocket/9.svg);
  }
}

.yumsh-eight-march-preview {
  position: relative;
  width: 100%;
  height: calc(0.5625*0.8*100vw);
  margin-bottom: 50px;
  border-radius: 0;
  overflow: hidden;
  background-color: #ff9797;
}

.yumsh-eight-march-preview:hover .yumsh-eight-march-preview__text {
  color: #f00;
}

.yumsh-eight-march-preview__gradient {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, #ff9797 0%, rgba(9, 9, 121, 0) 45%, rgba(6, 84, 170, 0) 55%, #ff9797 100%);
  pointer-events: none;
}

.yumsh-eight-march-preview__text {
  margin: 0;
  color: #fff;
  font-size: 10vw;
  text-align: center;
  transition: color 0.2s linear;
  transform: translateY(-90%);
  animation: translate_text_yumsh_eight_march 110s infinite linear;
}

@keyframes translate_text_yumsh_eight_march {
  to {
    transform: translateY(0);
  }
}

@media (max-width: 900px) {

  .design-item {
    flex-basis: 100%;
  }

  .design-item__title {
    font-size: 1em;
  }
}

@media (max-width: 600px) {
  .design-title {
    font-size: 2em;
  }
}
/*!********************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[0].use[1]!./static/css/design/design_article.css ***!
  \********************************************************************************************************************/
.design-article {
  max-width: 1920px;
  margin: 0px auto 0 auto;
}

.design-article__title {
  margin: 1em 0 0 0;
  border-bottom: 1px solid #dadada;
  padding: 0 2% 1em 2%;
  font-weight: 400;
  font-size: 3em;
  line-height: 1.1;
}

.design-article__text {
  width: 63%;
  max-width: 900px;
  margin: 1rem 0 1rem 0;
  padding: 0 2%;
  box-sizing: border-box;
}

.design-article img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
}

.design-article video {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
}

.design-article time {
  display: block;
  margin: 1rem 0 1rem 2%;
  color: #a6a6a6;
  font-size: 0.9em;
}

@media (max-width: 600px) {
  .design-article__title {
    font-size: 2em;
  }

  .design-article__text {
    width: 100%;
  }
}
/*!***************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[0].use[1]!./static/css/design/infiniti/buklet_forum.css ***!
  \***************************************************************************************************************************/
.infiniti-buklet__main img {
  z-index: 2;
  position: relative;
}

.infiniti-buklet__circle {
    pointer-events: none;
    position: absolute;
    top: -300px;
    left: 0px;
    width: 400px;
    height: 400px;
    border: 1px #000 solid;
    border-radius: 50%;
}

.infiniti-buklet__sidetext {
  margin: 0;
  position: fixed;
  top: 0;
  left: 98%;
  z-index: 1;
  display: inline-block;
  font-weight: 100;
  font-size: 1.5em;
  text-transform: uppercase;
  transform: rotate(90deg) translateX(-90%);
  transform-origin: 0 0;
  animation: infinitiBukletFloatText 110s infinite linear;
  white-space: nowrap;
}

.infiniti-buklet-block {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  width: 100%;
  box-sizing: border-box;
  margin: 0 0 50px 0;
  padding-left: 2%;
  overflow: hidden;
}

.infiniti-buklet-block__text {
  font-size: 1.2rem;
  margin: 0;
}

.infiniti-buklet-block__clock-container {
  display: flex;
}

.infiniti-buklet-block__clock {
  margin: 1rem 10px 1rem 0;
  font-weight: 600;
  margin-right: 10px;
  font-size: 2em;
}


.infiniti-buklet-block i {
  color: #959595;
}

.infiniti-buklet-block__pin {
  position: absolute;
  right: 20px;
  bottom: 0;
  border: 1.5px #000 solid;
  border-radius: 20px;
  padding: 2px 15px 2px 15px;
  background-color: #fff;
}

.infiniti-buklet-block__dash {
  flex: auto;
  height: 4px;
  margin: auto 0 auto 0;
  background-color: #000;
}

@keyframes infinitiBukletFloatText {
  to {
    transform: rotate(90deg) translateX(0);
  }
}

@media (max-width: 500px) {
  .infiniti-buklet__circle {
    display: none;
  }
}
/*!****************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[0].use[1]!./static/css/design/infiniti/buklet_kosmos.css ***!
  \****************************************************************************************************************************/
.infiniti-space-body {
  background-image: url(/static/images/design/infiniti/buklet_kosmos/stars.jpg);
  background-repeat: repeat;
  background-size: contain;
  color: #fff;
  background-color: #000;
}

.infiniti-space-body .design-article__title {
  border-bottom: 1px solid #272727;
}

article {
  overflow-x: hidden;
}

.infiniti-space-rocket-container {
  position: relative;
  width: 100%;
  max-width: 1920px;
  /*16:9*/
  height: calc(0.5625*100vw);
  margin: 0 auto 0 auto;
}

.infiniti-space-rocket__one {
  position: absolute;
  z-index: 900;
  width: 100%;
  height: calc(0.5625*0.8*100vw);
  background-repeat: no-repeat;
  background-size: contain;
  /*16:9 и 80% от размера экрана*/
  animation: infinitiSpaceFlame 0.4s cubic-bezier(1, 0, 1, 0), infinitiSpaceMoveRocket 8s linear;
  animation-delay: -2s;
  animation-iteration-count: infinite;
}

.infiniti-space-rocket__two {
  position: absolute;
  z-index: 900;
  width: 100%;
  height: calc(0.5625*0.3*100vw);
  background-repeat: no-repeat;
  background-size: contain;
  transform: scale(-1, 1);
  /*16:9 и 80% от размера экрана*/
  animation: infinitiSpaceFlame 0.4s cubic-bezier(1, 0, 1, 0), infinitiSpaceMoveRocketTwo 8s linear;
  animation-iteration-count: infinite;
}

.infiniti-space-rocket-container img {
  height: 100%;
}

@keyframes infinitiSpaceMoveRocket {
  from {
    bottom: -100%;
    left: -100%;
  }

  50% {
    bottom: 0;
    left: 0;
  }

  100% {
    bottom: 100%;
    left: 100%;
  }
}

@keyframes infinitiSpaceMoveRocketTwo {
  from {
    right: -100%;
    bottom: -100%;
  }

  50% {
    right: 0;
    bottom: 0;
  }

  100% {
    right: 100%;
    bottom: 100%;
  }
}

@keyframes infinitiSpaceFlame {
  from {
    background-image: url(/static/images/design/infiniti/buklet_kosmos/1.svg);
  }

  12.5% {
    background-image: url(/static/images/design/infiniti/buklet_kosmos/2.svg);
  }

  25% {
    background-image: url(/static/images/design/infiniti/buklet_kosmos/3.svg);
  }

  37.5% {
    background-image: url(/static/images/design/infiniti/buklet_kosmos/4.svg);
  }

  50% {
    background-image: url(/static/images/design/infiniti/buklet_kosmos/5.svg);
  }

  62.5% {
    background-image: url(/static/images/design/infiniti/buklet_kosmos/6.svg);
  }

  75% {
    background-image: url(/static/images/design/infiniti/buklet_kosmos/7.svg);
  }

  87.5% {
    background-image: url(/static/images/design/infiniti/buklet_kosmos/8.svg);
  }

  100% {
    background-image: url(/static/images/design/infiniti/buklet_kosmos/9.svg);
  }
}
/*!******************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[0].use[1]!./static/css/design/yumsh/8_2021.css ***!
  \******************************************************************************************************************/
.yumsh-eight-march-names {
  position: relative;
  width: 90%;
  height: 8vw;
  margin: 0 auto 0 2%;
  overflow: hidden;
}

.yumsh-eight-march-names p {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  margin: 0;
  font-size: 6vw;
  line-height: 8vw;
  transition: transform 1s ease-in-out;
}

.yumsh-eight-march-outside-gradient {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(9, 9, 121, 0) 1vw, rgba(6, 84, 170, 0) 7vw, rgba(255, 255, 255, 1) 100%);
  pointer-events: none;
}

@media (max-width: 500px) {
  .yumsh-eight-march-names {
    margin: 0 auto 0 10px;
  }
}
/*!***********************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[0].use[1]!./static/css/design/yumsh/notebook_60.css ***!
  \***********************************************************************************************************************/
.yumsh-notebook__block-scroll {
    position: fixed;
    width: 100%;
    overflow: hidden;
    overflow-y: scroll;
}

.yumsh-notebook__article {
    position: relative;
}

.yumsh-notebook__preloader {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 994;
    display: flex;
    align-content: center;
    width: 100%;
    height: 100%;
    background-color: white;
    transition: 0.4s linear;
}

.yumsh-notebook__preloader div {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    color: #000;
    line-height: 300px;
    text-align: center;
    transform: translate(-50%, -50%);
}

.yumsh-notebook__preloader div p {
    margin: 0;
    font-size: 24px;
    text-transform: uppercase;
}

.yumsh-notebook__preloader img {
    position: absolute;
    top: 0;
    left: 0;
    width: 300px;
    height: 300px;
    animation: yumshNotebookSpin 6s linear infinite;
}

.yumsh-notebook__frames {
    position: absolute;
    left: 50%;
    z-index: 1;
    width: 100%;
    max-width: 632px;
    max-height: 100vh;
    margin-top: -90px;
    transform: translateX(-50%);
    animation: unset;
    pointer-events: none;
}

.yumsh-notebook__frame {
    max-width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    width: auto;
    height: auto;
    opacity: 0;
    visibility: hidden;
}

.yumsh-notebook__frame--visible {
    opacity: 1;
    visibility: visible;
}

.yumsh-notebook__frames--fixed {
    position: fixed;
    top: 55%;
    left: 50%;
    margin-top: 0vh;
    transform: translate(-50%, -50%);
}

.yumsh-notebook__img {
    position: relative;
    z-index: 2;
}

.yumsh-notebook__addsomespace {
    margin-top: 3000px;
}

.yumsh-notebook__descriptions {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    margin: 35px 0 0 0;
    padding: 0 2%;
    list-style: none;
}

.yumsh-notebook__descriptions li {
    display: flex;
    flex-direction: column;
    flex-basis: calc(25% - 25px);
    align-items: flex-start;
    min-width: 250px;
}

.yumsh-notebook__descriptions-circle {
    width: 100%;
    max-width: 200px;
    height: auto;
    max-height: 200px;
    margin-bottom: 1rem;
    border-radius: 50%;
    overflow: hidden;
}

@keyframes yumshNotebookSpin {
    100% {
        -webkit-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }
}

@media (max-width: 1100px) {
    .yumsh-notebook__descriptions li {
        flex-basis: calc(50% - 10px);
        min-width: unset;
    }
}
/*!*********************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[0].use[1]!./static/css/design/yumsh/lager2025.css ***!
  \*********************************************************************************************************************/
.lager2025__text-image {
  display: inline-block !important;
  height: 1.2em !important;
  width: auto !important;
  vertical-align: middle;
}

.lager2025__animation-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

.lager2025__animation-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lager2025__logo {
    position: absolute;
}

#lager2025__clipRectHide {
    animation: lager2025-wipe-out-animation 3.5s infinite alternate ease-in-out;
}
#lager2025__clipRectReveal {
    transform-origin: left center;
    animation: lager2025-wipe-in-animation 3.5s infinite alternate ease-in-out;
}

@keyframes lager2025-wipe-out-animation {
    0%, 20% {
        transform: translateX(0);
    }
    80%, 100% {
        transform: translateX(100%);
    }
}

@keyframes lager2025-wipe-in-animation {
    0%, 20% {
        transform: scaleX(0);
    }
    80%, 100% {
        transform: scaleX(1);
    }
}

.lager2025__mug-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 100vh;
  cursor: grab;
  margin: 0 auto;
  border-top: 1px solid #dadada;
  border-bottom: 1px solid #dadada;
}

@media screen and (max-width: 900px) {
  .lager2025__mug-container {
    aspect-ratio: 1 / 1;
  }
}
/*!****************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[0].use[1]!./static/css/other/definitions.css ***!
  \****************************************************************************************************************/
.definitions-body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
  overflow-y: scroll;
  font-family: Helvetica, sans-serif;
  font-size: 19px;
  counter-reset: section;
}

.definitions-body * {
  box-sizing: border-box;
}

.definitions-main {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  align-items: center;
  padding: 0 10px 0 10px;
}

.definitions-main p {
  margin: 0;
}

.definitions-main input::placeholder {
  color: #c7c7c7;
}

.definitions-rules {
  position: fixed;
  inset: 0;
  z-index: 997;
  display: block;
  overflow-y: hidden;
  background-color: rgba(0, 0, 0, 0.6);
}

.definitions-rules__close-button {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  border: none;
  background-color: transparent;
  background-image: url(/static/images/close.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  cursor: pointer;
}

.definitions-rules__text-container {
  width: 100%;
  max-width: 710px;
  max-height: calc(100dvh - 15px);
  margin: 5px auto 0 auto;
  border-radius: 10px;
  padding: 25px 20px 20px 30px;
  overflow-y: auto;
  background-color: #fff;
}

.definitions-rules__text-container h2 {
  margin: 0 0 10px 0;
}

.definitions-rules__text-container h3 {
  margin-bottom: 0;
}

.definitions-rules__text-container p {
  margin-bottom: 15px;
  line-height: 1.4;
}

.definitions-rules__download {
  display: inline-block;
  width: 1rem;
  height: 1rem;
  background-image: url(/static/images/download.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  cursor: pointer;
}

.definitions-rules__ok {
  display: block;
  margin: 20px auto 0 auto;
  border: 1px solid #000;
  border-radius: 5px;
  padding: 10px 30px 10px 30px;
  font-size: 20px;
  background-color: transparent;
  cursor: pointer;
}

.definitions-rules__ok:hover {
  color: #fff;
  background-color: #000;
}

.definitions-title {
  width: 100%;
  margin: 90px 0 10px 0;
  font-weight: 400;
  font-size: 50px;
  text-align: center;
}


.definitions__default-button {
  display: block;
  border: 1px solid #000;
  border-radius: 5px;
  padding: 5px;
  font-size: 17px;
  background-color: transparent;
  cursor: pointer;
}

.definitions__default-button:hover {
  color: #fff;
  background-color: #000;
}

.definitions__default-button--disabled {
  border-color: #c7c7c7 !important;
  color: #c7c7c7;
  cursor: default !important;
}

.definitions__default-button--disabled:hover {
  border-color: #c7c7c7 !important;
  color: #c7c7c7 !important;
  background-color: transparent !important;
}

.definitions-controls {
  width: 100%;
  max-width: 700px;
  margin-top: 50px;
  font-weight: 400;
  line-height: 27px;
}

.definitions-custom-word-input {
  width: 150px;
}

.definitions-controls__container {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  border-bottom: 1px solid #c7c7c7;
  padding-bottom: 20px;
}

.definitions-controls__container input {
  width: 3ch;
}

.definitions-controls__vertical-container {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
}

.definitions__list {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  list-style: none;
}

.definitions__list li {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: baseline;
  width: 100%;
  padding: 10px 0 10px 5px;
  font-size: 1.3rem;
}

.definitions__list li button {
  width: 50px;
  margin-left: 5px;
  border: 1px solid #000;
  border-radius: 10px;
  font-size: 18px;
  background-color: transparent;
  cursor: pointer;
}

.definitions__list li::before {
  content: counter(section) ".  ";
  position: absolute;
  left: -1.5em;
  margin: 0;
  color: #c7c7c7;
  line-height: 1.5;
  user-select: none;
  counter-increment: section;
}

.definitions-custom-words {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-content: baseline;
}

.definitions-list-of-words-buttons {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  vertical-align: middle;
  user-select: none;
}

.definitions-custom-word button {
  width: 200px;
  height: 30px;
}

.definitions-regular_word p:hover::before {
  color: #fff;
}

.definitions-body input {
  border-top: unset;
  border-right: unset;
  border-bottom: 1px solid #c7c7c7;
  border-left: unset;
  padding-bottom: 0;
  outline: none;
  font-size: 20px;
  transition: all 0.3s ease;
}

.definitions-body input:focus {
  border-radius: 2px;
  border-bottom: 1px solid #000;
}

.definitions-body textarea {
  border-top: unset;
  border-right: unset;
  border-bottom: 1px solid #000;
  border-left: unset;
  outline: none;
  font-family: Helvetica, sans-serif;
  font-size: 20px;
  font-size: 19px;
  resize: none;
}

.definitions-custom-definition-input {
  width: 200px;
}

.definitions-list-of-words-custom-container button {
  width: 50px;
  margin-left: 5px;
  border: 1px solid #000;
  border-radius: 10px;
  font-size: 18px;
  background-color: transparent;
  cursor: pointer;
}

.definitions__add-word-button {
  margin-bottom: 10px;
  /* border: 1px solid #000; */
  border: unset;
  border-radius: 5px;
  padding: 5px 10px 5px 10px;
  color: #c7c7c7;
  font-size: 19px;
  background-color: transparent;
  cursor: pointer;
}

.definitions__add-word-button:hover {
  color: #000;
}

.definitions__amount-of-teams {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  padding-bottom: 10px;
}

.definitions__amount-of-teams p {
  margin-right: 5px;
}

.definitions__amount-of-teams input {
  width: 3ch;
}

.definitions-horizontal-container {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 10px;
}

.definitions-body input::-webkit-outer-spin-button,
.definitions-body input::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none;
}

/* Firefox */
.definitions-body input[type=number] {
  -moz-appearance: textfield;
}

.definitions-custom-definition {
  display: block;
  width: 100%;
  width: 100%;
  max-width: 50%;
  /* resize: both; */
  min-height: 1rem;
  border-bottom: 1px solid #c7c7c7;
  outline: none;
  overflow: hidden;
  line-height: 20px;
  cursor: text;
}

.definitions-custom-definition:focus {
  border-bottom: 1px solid #000;
}

.definitions-custom-definition[contenteditable]:empty::before {
  content: "определение";
  color: #c7c7c7;
}

.definitions-custom-word input {
  width: 100%;
  max-width: 25%;
  padding-right: 5px;
}

.definitions-custom-word span {
  width: 100%;
  max-width: 65%;
  padding: 0 0 3px 5px;
}

.definitions-custom-word p {
  width: 100%;
  max-width: 6ch;
}

/* Footer */
.definitions-footer {
  padding: 90px 10px 20px 10px;
  opacity: 0.6;
  text-align: center;
  transition: 0.2s ease;
}

.definitions-footer:hover {
  opacity: 1;
}

@media only screen and (max-width: 800px) {

  .definitions-controls__container {
    flex-direction: column;
    align-items: center;
  }

  .definitions__list li::before {
    display: none;
  }

  .definitions-list-of-words-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .definitions-title {
    font-size: 20px;
  }

  .definitions-rules__close-button {
    filter: invert();
  }

  .definitions-rules__text-container {
    max-height: 100dvh;
    margin: 0 auto 0 auto;
    border-radius: 0;
  }
}
/*!***********************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[0].use[1]!./static/css/other/friday.css ***!
  \***********************************************************************************************************/
.friday-container {
    width: 63%;
    margin: 0px auto 0 auto;
}

.friday-title {
    width: 100%;
    height: 200px;
    font-size: 6vw;
    line-height: 200px;
    text-align: center;
    user-select: none;
}

.friday {
    position: relative;
    width: 100%;
    height: auto;
    margin-bottom: 10px;
    border: 1px #dadada solid;
    border-radius: 20px;
    overflow: hidden;
}

.friday img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    max-height: 500px;
    margin: 0 auto 0 auto;
    user-select: none;
}

.friday h2 {
    margin-left: 20px;
}

.friday p {
    margin: 0.5rem 0 0.5rem 20px;
    color: #a0acb6;
}

/*addaptive*/
@media (max-width: 1050px) {
    .friday-container {
        width: 100%;
    }

    .friday {
        box-sizing: border-box;
        border-radius: unset;
    }
}
/*!*********************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[0].use[1]!./static/css/other/jizn.css ***!
  \*********************************************************************************************************/
.jizn-container {
  width: 100%;
  text-align: center;
}

.jizn-container img {
  display: block;
  max-width: calc(100% - 2px);
  margin: 10px auto 10px auto;
  border: 1px solid #000;
}

.jizn-center {
  width: 100%;
  margin: 0;
  font-size: 2vw;
  line-height: 3vw;
  text-align: center;
}
/*!********************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[0].use[1]!./static/css/other/log.css ***!
  \********************************************************************************************************/
.log-main ol {
  box-sizing: border-box;
  width: 100%;
  margin: 0 auto 50px auto;
}

.log-main ol li {
  margin-top: 3rem;
  padding-right: 1rem;
}

.log-main ol li p {
  margin: 0;
  max-width: 78.75%;
}

.log-main ol li img {
  display: block;
  width: 100%;
  height: auto;
  margin: 1rem 0 0 0;
  border: 1px solid #eeeeee;
}

.log-main time {
  color: #dadada;
  font-style: italic;
}

.log-main {
  max-width: 1280px;
  margin: 2rem auto 0 auto;
  padding: 0 2%;
}

.log-title {
  margin: 2em 0 0.5em 0;
  font-size: 2em;
  line-height: 1;
}

.log-main ul,
.log-main ol {
  box-sizing: border-box;
  width: 100%;
  margin: 0 0 0.5em 0;
  padding-left: 2em;
  letter-spacing: -0.003em;
}
/*!**********************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[0].use[1]!./static/css/other/mimic.css ***!
  \**********************************************************************************************************/
.mimic-body {
    max-width: 1920px;
    font-family: "Droid Sans", sans-serif !important;
}

.mimic-main {
    padding: 0 2%;
}

.mimic-input {
    position: relative;
    z-index: 900;
    display: block;
    box-sizing: border-box;
    width: 80%;
    max-width: 700px;
    height: 50vh;
    min-height: 300px;
    margin: 0;
    border-radius: 10px;
    padding: 7px;
    outline: 0;
    font-size: 16px;
    background-color: #fff;
    resize: none;
}

.mimic-button-container {
    width: 100%;
    margin-top: 20px;
}

.mimic-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    width: 3000px;
    height: 3000px;
    opacity: 0.03;
    overflow: hidden;
    font-size: 90px;
    word-wrap: break-word;
    transform: translate(-50%, -50%) rotate(320deg);
    transform-origin: center;
    user-select: none;
}

.mimic-bgcontainer {
    pointer-events: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-sizing: border-box;
    height: 100%;
    overflow: hidden;
}

.mimic-standart-button {
    position: relative;
    z-index: 900;
    display: inline-block;
    width: auto;
    height: 40px;
    margin-bottom: 10px;
    border: 1px solid #000;
    border-radius: 10px;
    padding: 0 20px 0 20px;
    font-size: 18px;
    line-height: 40px;
    background-color: #fff;
    transition: 0.2s color linear, background-color 0.2s linear;
}
.mimic-standart-button:not([disabled]) {
    cursor: pointer;
}

.mimic-standart-button:not([disabled]):hover {
    color: #fff;
    background-color: #000;
}

.mimic-copy-button {
    display: none;
    margin-left: 10px;
    cursor: pointer;
}

.mimic-title {
    margin: 1em 0;
    font-weight: 400;
    font-size: 3em;
    line-height: 1.1;
}

.mimic-standart-button--copied {
    border: 1px #6abf69 solid !important;
    color: #fff !important;
    background-color: #6abf69 !important;
}

@media only screen and (max-width: 700px) {
    .mimic-standart-button {
        font-size: 12px;
    }

    .mimic-title {
        font-size: 20px;
    }
}
/*!*********************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[0].use[1]!./static/css/other/news.css ***!
  \*********************************************************************************************************/
.news-body .footer {
  display: none;
}

.news-hello {
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 900;
  width: 100%;
  height: 100%;
}

.news-hello * {
  pointer-events: all !important;
}

.news-hello p {
  max-width: 500px;
  margin: 160px auto 0 auto !important;
}

.news-hello button {
  width: 100%;
  height: 50px;
  margin: 50px auto 0 auto;
  border: 1px #dadada solid;
  background-color: unset;
  cursor: pointer;
}

.news-hello button:hover {
  background-color: #000;
}

.news-news-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.news-news-container * {
  pointer-events: all !important;
}

.news-main a {
  border-bottom-style: none;
  text-decoration: none;
}

.news-main .wrapper {
  display: flex;
}

.news-main p {
  margin: 0;
}

.news-main h3 {
  margin: 0;
}

.news-main h2 {
  margin: 0;
}

.news-main .new1 {
  position: absolute;
  width: 300px;
  border: 1px #dadada solid;
  padding: 10px;
  background-color: #fff;
}

.news-main .new1_header p {
  display: inline-block;
  margin-right: 5px;
  vertical-align: middle;
  color: #c33;
  line-height: 20px;
  white-space: normal;
}

.news-main .new1_header span {
  display: inline-block;
  margin-right: .5em;
  vertical-align: middle;
  color: #959595;
  font-family: PT Sans, Helvetica Neue, Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 12px;
  white-space: nowrap;
}

.news-main .new1 a {
  color: #000;
}

.news-main .new1:hover .new1_title {
  color: #c33;
}

.news-main .new1_img {
  max-width: 100%;
  height: auto;
  margin: 5px 0 5px 0;
}

.news-main .new1_title {
  transition: 0.2s linear;
}

.news-main .new1_descr {
  margin-top: 5px;
  font-family: "PT Serif", Georgia, Times New Roman, Times, serif;
  font-size: 14px;
  line-height: 20px;
}

.news-main .new2 {
  position: absolute;
  max-width: 700px;
  margin-bottom: 10px;
  border-radius: 2px;
  padding: 20px;
  box-shadow: rgb(0 0 0 / 10%) 0px 1px 2px;
  font-family: "NotoSans", Arial, sans-serif;
  background: #fff;
  background-color: #fff;
}

.news-main .new2_img {
  position: relative;
  display: block;
  float: right;
  float: right;
  width: 218px;
  height: auto;
  margin: 0 0 0 10px;
}

.news-main .new2_title {
  display: flex;
  max-width: 750px;
}

.news-main .new2_title a {
  color: #000;
}

.news-main .new2_a {
  display: block;
  color: #000;
  font-family: "NotoSans", Arial, sans-serif;
  font-size: 20px;
  line-height: 27px;
  transition: unset;
}

.news-main .new2_a:hover {
  color: #0075FF;
}

.news-main .new2_bottom {
  margin-top: 10px;
  color: #767676;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 14px;
  line-height: 20px;
}

.news-main .new2_date {
  display: inline-block;
  margin-right: 15px;
  vertical-align: top;
}

.news-main .new2_views {
  display: inline-block;
  vertical-align: top;
  text-align: right;
}

.news-main .new2_icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 2px;
  vertical-align: top;
}

.news-main .new2_icon svg {
  width: 100%;
  height: 100%;
  fill: #ADADAD;
}

.news-main .new2_views_text {
  display: inline-block;
  margin-right: 2px;
  vertical-align: top;
}

.news-main .new2_item {
  display: inline-block;
  margin-left: 15px;
  vertical-align: top;
}

.news-main .new2_item span {
  display: inline-block;
  width: 24px;
  height: 24px;
  margin: -2px 2px -2px 0;
  vertical-align: top;
}

.news-main .new2_item span svg {
  width: 100%;
  height: 100%;
  fill: #FF9600;
}

.news-main .new2_bottom a {
  display: block;
  float: left;
  width: 26px;
  height: 26px;
}

.news-main .new2_bottom a svg {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0.65;
  fill: #666;
}

.news-main .new2_bottom a:hover {
  fill: #000;
}

.news-main .new2_link {
  display: block;
  float: right;
}


.news-main .new3 {
  position: absolute;
  max-width: 700px;
  border: 1.5px solid #eeeeee;
  border-radius: 10px;
  padding: 20px;
  font-family: PF Regal, PF Regal Text Pro, Georgia, serif;
  background-color: #fff;
}

.news-main .new3 a {
  color: #000 !important;
}

.news-main .new3 h2 {
  margin-bottom: 18px;
  font-family: PF Regal, PF Regal Text Pro, Georgia, serif;
  font-weight: 400;
  font-size: 27px;
  line-height: 33px;
}

.news-main .new3_bottom {
  margin-top: auto;
  color: grey;
  fill: #b88b58;
  font-size: 12px;
  line-height: 1;
}

.news-main .hiddenclose {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 90;
  width: 20px;
  height: 20px;
  opacity: 0.3;
  cursor: pointer !important;
}

.news-main .hiddenclose:hover {
  opacity: 1;
}

.news-main .hiddenclose:before,
.news-main .hiddenclose:after {
  content: ' ';
  position: absolute;
  left: 10px;
  width: 2px;
  height: 20px;
  background-color: #000;
}

.news-main .hiddenclose:before {
  transform: rotate(45deg);
}

.news-main .hiddenclose:after {
  transform: rotate(-45deg);
}


.news-main .new4 {
  position: absolute;
  max-width: 300px;
  border: 1px #000 solid;
  padding: 10px;
  background-color: #fff;
}

.news-main .new4_img {
  max-width: 100%;
  height: auto;
}

.news-main .new4_pol {
  display: inline-block;
  margin: 10px 0 1rem 5px;
  border: 1px solid rgb(225, 228, 230);
  padding: 4px 4px 2px;
  vertical-align: top;
  color: rgb(5, 102, 199);
  font-family: Roboto, Tahoma, sans-serif;
  font-weight: 500;
  font-size: 9px;
  line-height: 11px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.news-main .new4_title {
  display: block;
  color: rgb(34, 34, 34);
  font-family: Alegreya, Georgia, serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.15;
  text-decoration: none;
  font-feature-settings: "tnum", "lnum";
}

.news-main .new4_descr {
  display: block;
  margin-top: 12px;
  color: rgb(98, 98, 98);
  font-family: Alegreya, Georgia, serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.17;
  text-decoration: none;
  font-feature-settings: "tnum", "lnum";
}

.news-main .new4_time {
  display: block;
  margin: 10px 0px 0px;
  color: rgb(147, 147, 147);
  font-family: Alegreya, Georgia, serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 18px;
  font-feature-settings: "tnum", "lnum";
}

.news-main .new5 {
  position: absolute;
  width: 300px;
  border: 1px #dadada solid;
  border-radius: 10px;
  padding: 10px;
  font: 15px 'pr', 'helvetica neue', Arial, helvetica, sans-serif !important;
  background-color: #fff;
}

.news-main .new5_title {
  color: #00848c;
  font-size: 14px;
  text-transform: uppercase;
}

.news-main .new5_descr {
  margin-top: 9px;
  color: #1f2829;
  font-weight: normal;
  font-size: 17px;
  line-height: 21px;
}

.news-main .animation0 {
  animation: 0.3s ease moveleft;
}

.news-main .animationpos0 {
  top: 51px;
  left: 2%;
}

@-webkit-keyframes moveleft {
  from {
    top: 51px;
    left: -100%;
  }

  to {
    top: 51px;
    left: 2%;
  }
}

.news-main .animation1 {
  animation: 0.3s ease moveright;
}

.news-main .animationpos1 {
  top: 51px;
  right: 2%;
}

@-webkit-keyframes moveright {
  from {
    top: 51px;
    right: -100%;
  }

  to {
    top: 51px;
    right: 2%;
  }
}

.news-main .animation2 {
  animation: 0.3s ease movetop;
}

.news-main .animationpos2 {
  top: 50%;
  right: 5%;
}

@-webkit-keyframes movetop {
  from {
    top: -100%;
    right: 5%;
  }

  to {
    top: 50%;
    right: 5%;
  }
}


.news-main .animation3 {
  animation: 0.3s ease movebottom;
}

.news-main .animationpos3 {
  bottom: 30%;
  left: 10%;
}

@-webkit-keyframes movebottom {
  from {
    bottom: -100%;
    left: 10%;
  }

  to {
    bottom: 30%;
    left: 10%;
  }
}

.news-main .animation4 {
  animation: 0.3s ease scales;
}

.news-main .animationpos4 {
  top: 100px;
  left: 50%;
}

@-webkit-keyframes scales {
  from {
    transform: scale(0);
  }

  to {
    transform: scale(1);
  }
}

.news-main .animation5 {
  animation: 0.3s ease scales2;
}

.news-main .animationpos5 {
  top: 200px;
  left: 30%;
  transform: scale(2) rotate(0deg);
}

@-webkit-keyframes scales2 {
  from {
    transform: rotate(-180deg) scale(0);
  }

  to {
    transform: rotate(0deg) scale(2);
  }
}

.news-main .animation6 {
  animation: 0.3s ease scew1;
}

.news-main .animationpos6 {
  bottom: 0;
  left: 0;
  transform: rotateZ(0deg);
}

@-webkit-keyframes scew1 {
  from {
    transform: rotateZ(90deg);

  }

  to {
    transform: rotateZ(0deg);

  }
}



.news-bg {
  pointer-events: none;
  position: fixed;
  top: -50%;
  right: -50%;
  bottom: -50%;
  left: -50%;
  z-index: 1;
  visibility: visible;
  width: 200%;
  height: 200vh;
  opacity: 0.5;
  background: transparent url('/static/images/other/news/noise.png') repeat 0 0;
  background-repeat: repeat;
  animation: news-bg-animation .2s infinite;
}

@keyframes news-bg-animation {
  0% {
    transform: translate(0, 0);
  }

  10% {
    transform: translate(-5%, -5%);
  }

  20% {
    transform: translate(-10%, 5%);
  }

  30% {
    transform: translate(5%, -10%);
  }

  40% {
    transform: translate(-5%, 15%);
  }

  50% {
    transform: translate(-10%, 5%);
  }

  60% {
    transform: translate(15%, 0);
  }

  70% {
    transform: translate(0, 10%);
  }

  80% {
    transform: translate(-15%, 0);
  }

  90% {
    transform: translate(10%, 5%);
  }

  100% {
    transform: translate(5%, 0);
  }
}


@media only screen and (max-width: 850px) {
  .news-hello p {
    margin: 160px 7px 0 7px;
  }
}

.news-main #add {
  position: fixed;
  top: 51px;
  right: 0;
}
/*!**********************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[0].use[1]!./static/css/other/other.css ***!
  \**********************************************************************************************************/
.other-main {
  padding: 0 2%;
}

.other-title {
  margin: 1em 0;
  font-weight: 400;
  font-size: 3em;
  line-height: 1.1;
}

@media (max-width: 600px) {
  .other-title {
    font-size: 2em;
  }
}

.other-log-link {
  display: block;
  width: fit-content;
  max-width: 100%;
  margin-bottom: 70px;
  color: #000;
  text-decoration: none;
}

.other-log-container {
  position: relative;
  width: fit-content;
  max-width: 100%;
  border: 1px solid #8e8e8e;
  border-radius: 10px;
  overflow: hidden;
  transition: 0.1s linear border;
}

.other-log-container:hover {
  border: 1px solid #000;
}

.other-log-title {
  box-sizing: border-box;
  width: fit-content;
  max-width: 100%;
  margin: 0;
  padding: 0.45em 5em 0.45em 0.5em;
  font-size: 3em;
  line-height: 1.1;
}

.other-log-list {
  position: absolute;
  top: -0.5em;
  right: 0;
  box-sizing: border-box;
  margin: 0;
  list-style: decimal;
  transform: translateX(60%);
}

.other-log-item p {
  margin: 0;
}

.other-log-item time {
  color: #dadada;
  font-style: italic;
}

.other-wrapper_middle {
  position: relative;
  max-width: 60%;
}

.other-wrapper_middle a {
  text-decoration: none;
}

#other-news {
  position: relative;
  width: 100%;
  height: 400px;
  margin: 100px 0 50px 0;
  border: 3px #000 solid;
  border-radius: 10%;
  overflow: hidden;
  background-color: #dadada;
}

#other-news p {
  position: relative;
  z-index: 2;
  margin: 0;
  opacity: 1;
  color: #000;
  font-size: 5vw;
  line-height: 400px;
  text-align: center;
  transition: 5s cubic-bezier(0, 1.02, 0, 1.03) opacity;
}

#other-news:hover p {
  opacity: 0;
}

#other-rozhki {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100px;
  height: 100px;
  transform: translate(-50%, -50%);
}

#other-rozhki:before,
#other-rozhki:after {
  content: ' ';
  position: absolute;
  top: -20px;
  left: 48px;
  width: 6px;
  height: 140px;
  background-color: #000;
}

#other-rozhki:before {
  transform: rotate(45deg);
}

#other-rozhki:after {
  transform: rotate(-45deg);
}

#other-news_bg {
  position: absolute;
  top: -50%;
  right: -50%;
  bottom: -50%;
  left: -50%;
  z-index: 1;
  visibility: visible;
  width: 200%;
  height: 200vh;
  opacity: 0.5;
  background: transparent url('/static/images/other/news/noise.png') repeat 0 0;
  background-repeat: repeat;
  animation: other-news-bg-animation .2s infinite;
}

@keyframes other-news-bg-animation {
  0% {
    transform: translate(0, 0);
  }

  10% {
    transform: translate(-5%, -5%);
  }

  20% {
    transform: translate(-10%, 5%);
  }

  30% {
    transform: translate(5%, -10%);
  }

  40% {
    transform: translate(-5%, 15%);
  }

  50% {
    transform: translate(-10%, 5%);
  }

  60% {
    transform: translate(15%, 0);
  }

  70% {
    transform: translate(0, 10%);
  }

  80% {
    transform: translate(-15%, 0);
  }

  90% {
    transform: translate(10%, 5%);
  }

  100% {
    transform: translate(5%, 0);
  }
}

/*Жизнь*/
#other-jizn {
  position: relative;
  z-index: 2;
  width: 100%;
  margin-bottom: 200px;
  color: #fff;
  font-size: 3vw;
  text-align: center;
  background: #000;
  transition: color 0.2s linear, background-color 0.2s linear;
}

#other-jizn p {
  position: relative;
  z-index: 2;
  display: inline-block;
  border: 1px #fff solid;
  padding: 30px;
  backdrop-filter: blur(5px);
}

#other-jizn pik {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  opacity: 0;
  background-image: url("/static/images/other/jizn/duran.png");
  background-repeat: repeat;
  background-size: 26px 26px;
  transition: 0.2s linear;
}

#other-jizn:hover {
  color: #000;
  background: none;
}

#other-jizn:hover p {
  border: 1px #000 solid;
}

#other-jizn:hover pik {
  opacity: 1;
}

/*Дефинишнс definitions */
#other-definitions {
  display: block;
  max-width: 60%;
  margin: 60px 0 60px 0;
  border: 1px solid #000;
  border-radius: 10px;
  padding: 20px;
  color: #000;
  font-size: 2vw;
  text-decoration: none;
  transition: 0.3s ease;
}

#other-definitions span {
  margin-bottom: 10px;
  font-size: 1.5vw;
}

#other-definitions:hover {
  filter: drop-shadow(24px 19px 3px #3066d2);
}

/*Мимик mimic*/
#other-mimic {
  width: clamp(200px, 30vw, 500px);
  height: clamp(200px, 30vw, 500px);
  margin: 0 0 70px 0;
  font-size: clamp(2em, 6vw, 6vw);
  line-height: clamp(200px, 30vw, 500px);
  text-align: center;
  background-color: #fff;
  animation: 10s cubic-bezier(0, 1, 0.33, 1.0) other_mimic_bg infinite;
}

#other-mimic a {
  text-decoration: none;
}

#other-mimic_text {
  color: #DBD73D;
  animation: 10s cubic-bezier(0, 1, 0.33, 1.0) other_mimic_color infinite;
  animation-delay: 1s;
}

@keyframes other_mimic_bg {
  from {
    background-color: #DBD73D;
  }

  10% {
    background-color: #FF4040;
  }

  25% {
    background-color: #FF4040;
  }

  35% {
    background-color: #4312AE;
  }

  50% {
    background-color: #4312AE;
  }

  60% {
    background-color: #FF8973;
  }

  75% {
    background-color: #FF8973;
  }

  85% {
    background-color: #DBD73D;
  }

  100% {
    background-color: #DBD73D;
  }
}

@keyframes other_mimic_color {
  from {
    color: #DBD73D;
  }

  10% {
    color: #FF4040;
  }

  25% {
    color: #FF4040;
  }

  35% {
    color: #4312AE;
  }

  50% {
    color: #4312AE;
  }

  60% {
    color: #FF8973;
  }

  75% {
    color: #FF8973;
  }

  85% {
    color: #DBD73D;
  }

  100% {
    color: #DBD73D;
  }
}

/*ПЯТНИЦА*/
#other-friday {
  position: relative;
  width: 100%;
  height: 400px;
  margin-bottom: 10px;
  border: 1px solid #000;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  overflow: hidden;
  transition: all 1s ease-in-out;
  animation: other-morph 8s ease-in-out infinite;
}

#other-friday p {
  width: 120%;
  margin: 0;
  color: #000;
  font-size: 2.5vw;
  word-break: break-all;
}

#other-friday_big_text {
  position: absolute;
  top: 50%;
  left: 50%;
  display: none;
  font-size: 8vw;
  transform: translate(-50%, -35%);
  animation: other_colorRotate 2.5s linear;
  animation-iteration-count: infinite;
  white-space: nowrap;
}

#other-friday_big_text span {
  display: inline-block;
  animation-name: other-wave;
  animation-direction: alternate;
  animation-iteration-count: infinite;
  white-space: pre;
  animation-duration: 0.5s;
}

#other-friday_middle_wrapper {
  max-width: 60%;
}

/*анимация радуги*/
@keyframes other_colorRotate {
  from {
    color: #6666ff;
  }

  10% {
    color: #0099ff;
  }

  50% {
    color: #00ff00;
  }

  75% {
    color: #ff3399;
  }

  100% {
    color: #6666ff;
  }
}

@keyframes other-wave {
  from {
    transform: translateY(0px);
  }

  to {
    transform: translateY(-50px);
  }
}

/*анимация шара*/
@keyframes other-morph {
  0% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }

  50% {
    border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
  }

  100% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }
}

/*adaptive*/
@media only screen and (max-width: 850px) {


  @keyframes other-wave {
    from {
      transform: translateY(0px);
    }

    to {
      transform: translateY(-20px);
    }
  }

  .other-log-link {
    margin: 0 auto 70px auto;
  }

  .other-log-title {
    padding: 0.4em 7em 0.4em 0.3em;
    font-size: 2em;
  }

  #other-mimic_middle_wrapper {
    width: fit-content;
    margin: 0 auto;
  }

  #other-friday_middle_wrapper {
    margin-right: auto;
    margin-left: auto;
  }

  #other-friday {
    height: 200px;
  }

  #other-friday p {
    font-size: 20px;
  }

  .other-wrapper_middle {
    max-width: 95%;
  }

  #other-jizn {
    font-size: 1.5rem;
  }

  #other-news {
    height: 200px;
  }

  #other-news p {
    line-height: 200px;
  }

  #other-definitions {
    max-width: 100%;
    font-size: 16px;
  }

  #other-definitions span {
    font-size: 14px;
  }

  #other-rozhki:before,
  #other-rozhki:after {
    width: 3px;
  }
}
/*!*************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[0].use[1]!./static/css/travel/article.css ***!
  \*************************************************************************************************************/
/*Заголовок рассказов с картинкой, датой и эмодзи*/
.article-title {
  position: relative;
  box-sizing: border-box;
  width: 80%;
  max-width: 1280px;
  /* 2em - высота шапки (ее растягивает лого), 1px - ее бордер */
  max-height: calc(95vh - 2em - 1px);
  margin: 0 auto 8em auto;
  border: 1px solid #eeeeee;
  border-radius: 0 0 10px 10px;
  border-top: unset;
  overflow: hidden;
}

.article-title__image {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: auto;
  object-fit: contain;
  background-color: #eeeeee;
  transform: translate(-50%, -50%);
}

.article-title__image-hidden {
  visibility: hidden;
  display: block;
  width: 100%;
  height: auto;
}

.article-title__header {
  position: absolute;
  bottom: 0px;
  left: 10px;
  padding: 0 10px 10px 10px;
}

.article-title__heading {
  margin: 0 0 4px 0;
  border-radius: 7px 7px 0 0;
  padding: 7px 10px;
  font-size: 3em;
  line-height: 1;
  word-wrap: break-word;
  background-color: rgba(255, 255, 255, 0.5);
}

.article-title__selected-star {
  font-size: 0.8em;
  user-select: none;
}

.article-title__date {
  display: block;
  float: left;
  margin-right: 4px;
  border-radius: 0 0 0 7px;
  padding: 3px 10px 3px 10px;
  color: #333;
  background-color: rgba(255, 255, 255, 0.5);
}

.article-title__emojis {
  /* min-width: fit-content; */
  display: inline-flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 4px;
}

.article-title__emoji {
  display: block;
  padding: 3px;
  color: #333;
  background-color: rgba(255, 255, 255, 0.5);
}

.article-title__emoji:last-child {
  border-radius: 0 0 7px 0;
  padding-right: 5px;
}

/*тело статьи*/
.article {
  width: 80%;
  max-width: 1280px;
  margin: 0 auto 0 auto;
}

.article p {
  width: 78.75%;
  margin: 0 0 0.5em 0;
  word-wrap: break-word;
  animation: 0.7s cubic-bezier(0, 0, 0, 1) 1 unclench;
}

.article p+p,
.article p+blockquote,
.article p+ul,
.article p+ol {
  margin-top: 1em;
}

.article blockquote {
  box-sizing: border-box;
  width: 78.75%;
  margin: 0 0 0.5em 0;
  border-left: 2px solid #999;
  padding: 0 0 0 1em;
  color: #999;
  word-wrap: break-word;
  animation: 0.7s cubic-bezier(0, 0, 0, 1) 1 unclench;
}

.article blockquote+p,
.article blockquote+ul,
.article blockquote+ol {
  margin-top: 1em;
}

.article li {
  animation: 0.7s cubic-bezier(0, 0, 0, 1) 1 unclench;
}

.article ul,
.article ol {
  box-sizing: border-box;
  width: 78.75%;
  margin: 0 0 0.5em 0;
  padding-left: 2em;
  letter-spacing: -0.003em;
}

.article ul+p,
.article ol+p,
.article ul+blockquote,
.article ol+blockquote {
  margin-top: 1em;
}

/*Подзаголовок с названиями городов*/
.article-subtitle {
  margin: 2em 0 0.5em 0;
  font-size: 2em;
  line-height: 1;
}

/*картинки в рассказе*/
.article-image {
  box-sizing: border-box;
  width: fit-content;
  margin-bottom: 2em;
  border: 1px solid #eeeeee;
  border-radius: 10px;
  overflow: hidden;
}

.article-image img {
  display: block;
  max-width: 100%;
  height: auto;
}

.article-image+.article-image {
  margin-top: -1em;
}

/*карусель*/
.article-carousel {
  width: 100%;
  margin-bottom: 2em;
}

.article-carousel img {
  display: block;
  width: 100%;
  height: auto;
}

.article-carousel__swiper {
  position: relative;
  border: 1px solid #eeeeee;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
}

.article-carousel__pagination {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  margin-top: 8px;
}

.article-carousel__pagination-bullet {
  position: relative;
  width: 10px;
  height: 10px;
  /* Увеличиваем область нажатия на кружок */
  border: 5px solid transparent;
  border-radius: 50%;
  background-color: #c0c0c0;
  background-clip: padding-box;
  transition: 0.2s linear;
  cursor: pointer;
}

.article-carousel__pagination-bullet-active {
  background-color: #327fe5;
  transform: scale(1.2);
  cursor: default;
}

/*всё для видео*/
.article-video {
  display: block;
  box-sizing: border-box;
  width: fit-content;
  height: auto;
  margin-bottom: 2em;
  border: 1px solid #eeeeee;
  border-radius: 10px;
  overflow: hidden;
}

.article-video video {
  display: block;
  width: fit-content;
  max-width: 100%;
  height: auto;
  max-height: 95vh;
}

/*Блок со сдвоенными картинками*/
.article-pair {
  display: flex;
  gap: 1%;
  margin-bottom: 2em;
}

.article-pair__item {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  flex: 1;
  justify-content: flex-end;
  align-items: center;
}

.article-pair__text {
  width: 100%;
  text-align: center;
}

.article-pair__image {
  box-sizing: border-box;
  max-width: 100%;
  border: 1px solid #eeeeee;
  overflow: hidden;
}

.article-pair__image img {
  display: block;
  max-width: 100%;
  height: auto;
}

.article-pair__item:first-child .article-pair__image {
  border-radius: 10px 0 0 10px;
}

.article-pair__item:last-child .article-pair__image {
  border-radius: 0 10px 10px 0;
}

/* Зачеркивание */
.article strike {
  position: relative;
  padding: 0 0.15em;
  color: #999;
  text-decoration: none;
}

.article strike::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 0.07em;
  background-color: #000;
}

.article-correction {
  color: #fff;
  font-size: 1.2em;
  background-color: #000;
}

/*футер, блок перемещения между рассказами*/
.article-subscribe {
  display: block;
  box-sizing: border-box;
  width: 80%;
  max-width: 1280px;
  margin: 200px auto 200px auto;
  border: 1px solid #8e8e8e;
  border-radius: 10px;
  padding: 0.5em 0;
  color: #000;
  font-size: 2.5em;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  transition: 0.1s linear border;
}

.article-subscribe:hover {
  border: 1px solid #000;
}

.article-navigation {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  box-sizing: border-box;
  width: 80%;
  max-width: 1280px;
  margin: 0 auto;
}

.article-navigation__container {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  font-size: 1.75em;
}

.article-navigation__item {
  position: relative;
  display: block;
  display: flex;
  flex: 1;
  justify-content: center;
  align-items: center;
  border: 1px solid #eeeeee;
  overflow: hidden;
  text-decoration: none;
  background-color: #202124;
}

.article-navigation__item:first-child {
  border-radius: 10px 0 0 10px;
  border-right: unset;
}

.article-navigation__item:last-child {
  border-radius: 0 10px 10px 0;
}

.article-navigation__text {
  position: relative;
  z-index: 2;
  padding: 0.5em 10px;
  color: #fff;
  line-height: 1.1;
  text-align: center;
  filter: drop-shadow(0 0 10px #000);
}

.article-navigation__image {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  display: block;
  max-width: 100%;
  transition: 0.2s linear;
  transform: translate(-50%, -50%);
}

.article-navigation__item:hover .article-navigation__image {
  filter: invert(100%);
  transform: translate(-50%, -50%) scale(1.05);
}

.article-navigation__item--no-link {
  background-color: unset;
}

.article-navigation__item--no-link .article-navigation__text {
  color: #000;
  filter: unset;
}

.article-navigation__hint {
  margin: 0;
  text-align: center;
}

.article-navigation__hint-hidden-arrow {
  visibility: hidden;
}

/* АНИМАЦИИ */
/*повяление текста при загрузке страницы*/
@keyframes unclench {
  0% {
    opacity: 0;
    transform: scale(1, 0);
  }

  100% {
    opacity: 1;
    transform: scale(1, 1);
  }
}

/*радуга*/
rainbow {
  animation: colorRotate 2.5s linear;
  animation-iteration-count: infinite;
  white-space: nowrap;
}

rainbow span {
  display: inline-block;
  animation-name: wave;
  animation-direction: alternate;
  animation-iteration-count: infinite;
  white-space: pre;
  animation-duration: 0.5s;
}

@keyframes colorRotate {
  from {
    color: #6666ff;
  }

  10% {
    color: #0099ff;
  }

  50% {
    color: #00ff00;
  }

  75% {
    color: #ff3399;
  }

  100% {
    color: #6666ff;
  }
}

@keyframes wave {
  from {
    transform: translateY(0px);
  }

  to {
    transform: translateY(-3px);
  }
}

/*злой*/
angry {
  white-space: nowrap;
}

angry span {
  display: inline-block;
  color: red;
  animation-name: angry;
  animation-direction: alternate;
  animation-iteration-count: infinite;
  white-space: pre;
  animation-duration: 0.6s;
}

@keyframes angry {
  0% {
    transform: translate(0px, 0px);
  }

  3.33333% {
    transform: translate(-0.18923px, 1.45485px);
  }

  6.66667% {
    transform: translate(-0.84296px, -1.32524px);
  }

  10% {
    transform: translate(0.67971px, 1.00422px);
  }

  13.3333% {
    transform: translate(-0.5056px, 0.83616px);
  }

  16.6667% {
    transform: translate(1.31368px, -0.51401px);
  }

  20% {
    transform: translate(-1.21184px, 1.49193px);
  }

  23.3333% {
    transform: translate(1.09065px, -0.21259px);
  }

  26.6667% {
    transform: translate(-1.49916px, 0.56159px);
  }

  30% {
    transform: translate(1.48086px, 1.21228px);
  }

  33.3333% {
    transform: translate(-1.43889px, -1.152px);
  }

  36.6667% {
    transform: translate(1.35914px, 1.34835px);
  }

  40% {
    transform: translate(-1.42834px, 0.3091px);
  }

  43.3333% {
    transform: translate(1.47472px, -1.49889px);
  }

  46.6667% {
    transform: translate(-0.92402px, 1.4416px);
  }

  50% {
    transform: translate(1.0657px, -0.75306px);
  }

  53.3333% {
    transform: translate(-1.19035px, -1.07484px);
  }

  56.6667% {
    transform: translate(0.28828px, 0.79337px);
  }

  60% {
    transform: translate(-0.47167px, -1.42789px);
  }

  63.3333% {
    transform: translate(0.64753px, -0.09795px);
  }

  66.6667% {
    transform: translate(0.41006px, -0.26292px);
  }

  70% {
    transform: translate(-0.22477px, -1.3683px);
  }

  73.3333% {
    transform: translate(0.03588px, 0.92931px);
  }

  76.6667% {
    transform: translate(-1.01937px, -1.18398px);
  }

  80% {
    transform: translate(0.8724px, -0.60494px);
  }

  83.3333% {
    transform: translate(-0.71151px, 1.4786px);
  }

  86.6667% {
    transform: translate(1.40734px, -1.49607px);
  }

  90% {
    transform: translate(-1.33062px, 0.46957px);
  }

  93.3333% {
    transform: translate(1.23264px, 1.26738px);
  }

  96.6667% {
    transform: translate(-1.48975px, -1.03867px);
  }

  100% {
    transform: translate(0, 0);
  }
}

/*addaptive*/
@media (max-width: 900px) {
  .article {
    width: 100%;
  }

  .article p {
    box-sizing: border-box;
    width: 100%;
    padding: 0 10px 0 10px;
  }

  .article blockquote {
    box-sizing: border-box;
    width: calc(100% - 10px);
    margin-left: 10px;
    padding: 0 10px 0 10px;
  }

  .article-subtitle {
    box-sizing: border-box;
    width: 100%;
    padding: 0 10px 0 10px;
  }

  .article ul,
  .article ol {
    box-sizing: border-box;
    width: 100%;
  }

  .article ul li,
  .article ol li {
    padding-right: 10px;
  }

  .article-video {
    width: 100%;
    border-radius: 0;
    border-right: none;
    border-left: none;
  }

  .article-video video {
    width: 100%;
    max-width: unset;
  }

  .article-title {
    width: 100%;
    border-radius: unset;
    border-right: 0px;
    border-left: 0px;
  }

  .article-carousel__swiper {
    border-radius: unset;
    border-top: 1px solid #eeeeee;
    border-right: unset;
    border-bottom: 1px solid #eeeeee;
    border-left: unset;
    cursor: default;
  }

  .article-image {
    border-radius: unset;
    border-right: 0px;
    border-left: 0px;
  }

  .article-pair {
    flex-direction: column;
    gap: 2em;
  }

  .article-pair__text {
    text-align: left;
  }

  .article-pair__image {
    border-right: 0px;
    border-left: 0px;
  }

  .article-pair__item:first-child .article-pair__image {
    border-radius: unset;
  }

  .article-pair__item:last-child .article-pair__image {
    border-radius: unset;
  }

  .article-subscribe {
    width: 96%;
    margin: 100px 2% 100px 2%;
    font-size: 1.5em;
  }

  .article-navigation {
    width: 96%;
    margin: 0 2%;
  }

  .article-navigation__container {
    flex-direction: column-reverse;
    gap: 0.5em;
  }

  .article-navigation__item:first-child {
    border: 1px solid #eeeeee;
    border-radius: 10px;
  }

  .article-navigation__item:last-child {
    border: 1px solid #eeeeee;
    border-radius: 10px;
  }

  .article-navigation__hint {
    display: none;
  }
}

@media (max-width: 600px) {
  .article-title {
    border: unset;
    overflow: unset;
  }

  .article-title__heading {
    box-sizing: border-box;
    width: 100%;
    margin: 0;
    border-radius: 0;
    padding: 0;
    font-size: 2.1em;
    background: linear-gradient(rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 17%, rgba(255, 255, 255, 0.8) 77%, rgb(255, 255, 255) 100%);
    background-color: unset;
  }

  .article-title__header {
    position: relative;
    left: unset;
    box-sizing: border-box;
    width: 100%;
    padding: 0 10px 0 10px;
    /* Верх блока с текстом касается низа картинки, но залезает на нее
    на величину равную высоте строки */
    transform: translateY(-1em);
  }

  .article-title__date {
    padding-right: 4px;
    padding-left: 0;
  }

  .article-title__image-overlay {
    position: relative;
    display: inline-block;
  }

  .article-title__image-overlay::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 17%, rgba(255, 255, 255, 0.8) 77%, rgb(255, 255, 255) 100%);
    pointer-events: none;
  }

  .article-carousel__pagination {
    margin-top: 4px;
  }
}
/*!************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[0].use[1]!./static/css/travel/travel.css ***!
  \************************************************************************************************************/
.travel-maybe-too-small-body {
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
}

.travel-maybe-too-small-body .travel-main {
  flex-grow: 1;
}

.travel-main {
  padding: 0 2%;
}

.travel-title {
  margin: 1em 0;
  font-weight: 400;
  font-size: 3em;
  line-height: 1.1;
  user-select: none;
}

.travel-custom-word {
  cursor: pointer;
}

.travel-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.travel-list li {
  position: relative;
  margin: 0.3em 0;
  padding-left: 1.3em;
  font-size: 1.3em;
  line-height: 1.3em;
}

.travel-list li .link::before {
  content: attr(travel-id);
  position: absolute;
  left: 0;
  margin-top: .23em;
  color: #c2c4c3;
  font-size: 0.7em;
  line-height: 1.75em;
  pointer-events: none;
}

.travel-list li.year {
  margin: 2em 0 0 0;
  padding-left: 1.53636363636em;
  font-size: 1.1em;
}

/*::after имеет пробел + звезду.
Для каждого selected добавляется &NoBreak;, 
чтобы избежать переноса звезды на новую строку без слова.*/
.travel-list li .link.selected {
  margin-right: 1em;
}

.travel-list li .link.selected::after {
  content: "\00a0✦";
  position: absolute;
  margin-top: .09em;
  font-size: 0.8em;
}

.travel-subscribe {
  box-sizing: border-box;
  width: 100%;
  max-width: 500px;
  margin: 2em 0;
  border: 1px solid #c2c4c3;
  border-radius: 10px;
  padding: 7em 0.5em 0.5em 0.5em;
  font-size: 1.1em;
  background: url(/static/images/labels/travel/kazakhstan-1.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.travel-subscribe__title {
  display: block;
  margin: 0;
  border: 1px solid #000;
  border-radius: 7px;
  padding: 0.4em 0.6em;
  color: #000;
  text-align: center;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.85);
  transition: 0.2s linear background;
}

.travel-subscribe__title:hover {
  background: rgba(255, 255, 255, 0.95);
}

@media (max-width: 600px) {
  .travel-title {
    font-size: 2em;
  }

  .travel-custom-word {
    display: block;
    width: fit-content;
  }

  .travel-list li.year {
    padding-left: 1.8rem;
    font-size: 1.2em;
  }

  .travel-list li {
    margin: 0.4em 0 0.4em 0;
    padding-left: 1.8rem;
    font-size: 1.4em;
  }

  .travel-subscribe__title {
    background: rgba(255, 255, 255, 0.95);
  }
}
