body {
  position: relative;
}

.artBody p {
  margin-bottom: 0.5em !important;
}

.artBody .ladillo {
  margin-top: 0.5em !important;
}

#topList,
#topList * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: inherit;
}

@keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }

  to {
    background-position: 0 0;
  }
}

@-webkit-keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }

  to {
    background-position: 0 0;
  }
}

#topList {
  width: 100%;
}

#topList {
  width: 100%;
}

#topList li {
  display: flex;
  margin-bottom: 10px;
  justify-content: space-between;
}

.topList__person {
  width: 40%;
  display: grid;
  grid-template-columns: 25px min-content 1fr;
  align-items: center;
  gap: 10px;
}

.topList__person--name {
  line-height: 1;
}

.topList__person--ava img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.topList__person--ava {
  width: 50px;
  height: 50px;
  display: block;
  border-bottom: none !important;
}

.topList__progress {
  display: flex;
  align-items: center;
  width: 50%;
}

.progressBar {
  display: block;
  height: 25px;
  margin: 0 20px !important;
  background-color: green;
  background-image: linear-gradient(
    45deg,
    rgba(0, 0, 0, 0.1) 25%,
    transparent 25%,
    transparent 50%,
    rgba(0, 0, 0, 0.1) 50%,
    rgba(0, 0, 0, 0.1) 75%,
    transparent 75%,
    transparent
  );
  background-size: 40px 40px;
  border-radius: 3px;
  animation: progress-bar-stripes 2s linear infinite;
  transition: 800ms ease-out;
  width: 40%;
}

@media screen and (max-width: 800px) {
  #topList li {
    flex-direction: column;
    margin-bottom: 12px !important;
  }

  .topList__progress {
    margin-top: 2px !important;
    margin-left: 19px !important;
  }

  .topList__person,
  .topList__progress {
    width: 95%;
  }
}

#calculator,
#calculator * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: inherit;
}

#calculator {
  width: 100%;
  margin-bottom: 16px;
}

.sliderValues {
  display: flex;
  font-size: 1.5rem;
  align-items: center;
  justify-content: space-between;
}

#slider {
  position: relative;
  appearance: none;
  width: 100%;
  height: 20px;
  background: #5cb95c;
  border-radius: 10px;
  outline: none;
  margin-top: 8px;
  z-index: 3;
}

#slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 25px;
  height: 25px;
  background: #fff;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid #3498db;
  z-index: 4;
}

.sliderValues span {
  position: relative;
}

.sliderValues span::after {
  content: "";
  display: block;
  position: relative;
  width: 1px;
  height: 6px;
  background: #000;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
  overflow: hidden;
}

.currentValue__container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  top: -6px;
  margin-bottom: 14px !important;
}

#currentValue {
  text-align: center;
  display: inline-block;
  border: 2px solid #5cb95c;
  width: 30%;
  font-size: 2rem;
  padding: 6px 0;
  margin: 0 auto;
  border-top: none;
}

@media (max-width: 576px) {
  .blindBox {
    display: none;
  }

  .endBox {
    display: none !important;
  }

  .mainContent {
    width: 100%;
  }
}

#calculator p {
  text-align: center;
  margin-bottom: 4px;
  font-size: 2rem;
}

#formBlocks form,
#form-start form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 400px;
  padding: 20px;
  border-radius: 20px;
  position: relative;
  background-color: #1a1a1a;
  color: #fff;
  border: 1px solid #333;
  margin: 0 auto;
}

.formImage svg {
  width: 300px;
  height: 300px;
}

#formBlocks,
#form-start {
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}

#formBlocks .formTitle,
#form-start .formTitle {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -1px;
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 30px;
  color: #00bfff;
  text-align: center;
}

#formBlocks .formTitle::before,
#formBlocks .formTitle::after,
#form-start .formTitle::before,
#form-start .formTitle::after {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  border-radius: 50%;
  left: 0;
  background-color: #00bfff;
}

#formBlocks .formTitle::after,
#form-start .formTitle::after {
  animation: pulse 1s linear infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.9);
    opacity: 1;
  }

  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

#form-start button:hover {
  background-color: #00bfff96;
}

#form-start button {
  border: none;
  outline: none;
  padding: 10px;
  border-radius: 10px;
  color: #fff;
  font-size: 16px;
  transition: 0.3s ease;
  background-color: #00bfff;
}

.mainComments {
  padding: 0 20px 20px 20px;
  font-family: Arial, sans-serif;
  margin-bottom: 40px;
}

.commentsHeader {
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.commentsHeader__left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.commentsHeader__left a {
  padding: 15px 0;
  color: #404040;
  border-bottom: 4px solid transparent;
}

.commentsHeader__left a:first-child {
  color: #cc0000;
  border-bottom: 4px solid #cc0000;
}

.commentsHeader__right {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
}

.commentsHeader__right img {
  width: 12px;
}

.comment {
  display: grid;
  grid-template-columns: 40px 1fr;
  grid-column-gap: 12px;
  margin-bottom: 24px;
}

.commentAvatar img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 12px;
}

.commentHeader {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.commentHeader__left {
  color: #808080;
  font-size: 12px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.commentAuthor {
  font-size: 14px;
  font-weight: 700;
  color: #404040;
}

.commentBody {
  border-bottom: 1px solid #e1e1e1;
  padding-bottom: 16px;
}

.commentBody p {
  font-size: 15px;
  color: #404040;
  line-height: 24px;
}

.like img {
  width: 17px;
  opacity: 0.5;
}

.commentFooter {
  font-size: 12px;
  color: #808080;
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 4px;
}

.commentFooter__divider {
  border-radius: 100%;
  display: inline-block;
  height: 4px;
  width: 4px;
  background: #cacaca;
}

.comment__reactions {
  display: flex;
  gap: 6px;
  background: #fff;
  border: 1px solid #e1e1e1;
  border-radius: 4px;
  padding: 2px 4px;
  width: max-content;
  font-size: 14px;
}

.comment__reactions img {
  width: 17px;
}

.comment.replied .commentBody {
  position: relative;
  border-bottom: none;
}

.comment.replied .commentBody::before {
  content: "";
  left: -33px;
  top: 42px;
  position: absolute;
  background: #d3d3d3;
  height: calc(100% - 32px);
  width: 2px;
}

.comment.reply {
  padding-left: 52px;
}

.comment.reply .commentAvatar img {
  width: 32px;
  height: 32px;
}

.comment.reply .commentAvatar {
  position: relative;
}

.comment.reply .commentAvatar::before {
  content: "";
  left: -33px;
  top: -16px;
  position: absolute;
  width: 26px;
  height: 32px;
  border-left: 2px solid #d3d3d3;
  border-bottom: 2px solid #d3d3d3;
  border-bottom-left-radius: 20px;
}

.button-link {
  background-color: #009;
  color: white !important;
  display: block;
  max-width: 100%;
  padding: 15px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  margin: 0 auto;
  margin-bottom: 1rem;
  margin-top: 1rem;
  border-radius: 5px;
  box-shadow: 1px 3px 1px 1px rgba(0, 0, 0, 0.25);
  box-shadow: 1px 4px 1px 1px rgba(0, 0, 0, 0.15);
  animation: heartbeat 3s ease-in-out 2s infinite both;
}

@keyframes heartbeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  10% {
    -webkit-transform: scale(0.91);
    transform: scale(0.91);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  17% {
    -webkit-transform: scale(0.98);
    transform: scale(0.98);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  33% {
    -webkit-transform: scale(0.87);
    transform: scale(0.87);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  45% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

.button-link:hover {
  color: #fff;
  background-color: #444;
}

.text::first-letter {
  all: unset !important;
}

.commentBody p::first-letter {
  all: unset !important;
}

@media screen and (max-width: 992px) {
  .totemBox ul {
    display: none;
  }
}

/*  popup  */

.popup-show body::after {
  opacity: 1;
}
.popup {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 30px 10px;
  transition: all 0.25s ease;
  visibility: hidden;
  pointer-events: none;
  backdrop-filter: blur(4px);
}
.popup_show {
  z-index: 150;
  visibility: visible;
  overflow: auto;
  pointer-events: auto;
}
.popup_show .popup__content {
  visibility: visible;
  -webkit-transform: scale(1);
  transform: scale(1);
}
.popup__wrapper {
  flex-direction: column;
  min-height: 100%;
  flex: 1 1 auto;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.popup__content {
  visibility: hidden;
  -webkit-transform: scale(0.95);
  transform: scale(0.95);
  opacity: 0;
  transition: all 0.25s ease;
  width: 100%;
  max-width: 440px;
  /* overflow: hidden; */
}
.popup_show .popup__content {
  visibility: visible;
  -webkit-transform: scale(1);
  transform: scale(1);
  opacity: 1;
  transition: all 0.25s ease;
}

.popup-modal {
  position: relative;
  padding: 0;
}
.popup-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: rgb(50 50 50 / 8%);
  cursor: pointer;
  transition: background 0.2s ease;
}
.popup-modal__close::before,
.popup-modal__close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  background: #000;
  transform: translate(-50%, -50%) rotate(45deg);
}
.popup-modal__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.popup-modal__close:hover {
  background: rgb(28 28 28 / 15%);
}
.popup-modal__inner {
  padding: 32px 28px 28px;
}
.popup-modal__body {
  text-align: center;
}

.video_mod {
  position: relative;
}
.video_mod .ima {
  padding-top: 46.25%;
}
.incluBox .video_mod .rtve-icons:after {
  display: none;
}

/* texto*/
.video_mod .content {
  position: absolute;
  display: flex;
  align-items: flex-end;
  height: 100%;
  bottom: 0;
  z-index: 2;
}
.video_mod .txtBox {
  padding: 0 50% 7rem 2.6rem;
}
.video_mod .txtBox * {
  color: #fff;
  font-size: 1.5rem;
  line-height: 2.1rem;
}
.video_mod .pretitle {
  display: block;
  font-size: 1.3rem;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 1pt;
  padding-bottom: 0.4rem;
}
.video_mod .maintitle {
  display: block;
  color: #fff;
  font-size: 2.8rem;
  line-height: 3.2rem;
  font-weight: 300;
  padding-bottom: 0.8rem;
}
.video_mod .txtBox p:not(.legend) {
  font-weight: 300;
  margin-bottom: 0;
}

.video_mod .ima .i_logo {
  top: auto;
  left: auto;
  bottom: 1rem;
  right: 2rem;
  width: 20%;
  max-width: 24rem;
  z-index: 2;
}
.video_mod .ima .i_prvw {
  height: 100%;
  width: auto;
  right: 0;
  left: calc(50% + 4.6rem);
  top: 50%;
  transform: translate(-50%, -50%) scale(1.25);
}
.video_mod.bkg_black .ima:before {
  content: "";
  width: 50%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  display: inline-block;
  background: rgba(17, 17, 17, 0.67);
  background: -moz-linear-gradient(
    left,
    rgba(17, 17, 17, 1) 9.6rem,
    rgba(17, 17, 17, 0) 100%
  );
  background: -webkit-linear-gradient(
    left,
    rgba(17, 17, 17, 1) 9.6rem,
    rgba(17, 17, 17, 0) 100%
  );
  background: linear-gradient(
    to right,
    rgba(17, 17, 17, 1) 9.6rem,
    rgba(17, 17, 17, 0) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#111111',endColorstr='#00111111',GradientType=1);
  z-index: 1;
}
.video_mod.bkg_color .ima:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  display: inline-block;
  z-index: 1;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: auto 100%;
  background-image: url("");
}

/*.video_mod .goto_media {z-index:2;}*/
.video_mod .goto_media .progressBar {
  position: absolute;
  display: flex;
  width: 15rem;
  height: 3.6rem;
  left: 2.6rem;
  bottom: 2rem;
  text-align: center;
  background: rgba(255, 255, 255, 1);
  border-radius: 0.3rem;
  overflow: hidden;
  opacity: 0.67;
  z-index: 1;
}
.video_mod a:hover .goto_media .progressBar {
  opacity: 1;
}
.video_mod .goto_media .progressBar em {
  position: absolute;
  top: 1.2rem;
  left: 4rem;
  font-style: normal;
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.25pt;
  font-weight: 700;
  color: #000;
}
.video_mod .goto_media .progressBar strong {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
}
.video_mod .goto_media .progressBar strong:before {
  content: "";
  background: url("") no-repeat 50%;
  background-size: 100%;
  position: absolute;
  top: 0.8rem;
  left: 0.5rem;
  width: 2rem;
  height: 2rem;
  display: inline-block;
  opacity: 0.67;
  margin: 0 0.8rem;
}

.incluBox .video_mod .goto_media .rtve-icons {
  position: absolute;
  width: 10rem;
  height: 4rem;
  top: 1.4rem;
  left: 2.8rem;
  z-index: 1;
}
.incluBox .video_mod.bkg_black .goto_media .rtve-icons {
  background: url("") no-repeat;
  background-size: 100%;
}
.incluBox .video_mod.bkg_color .goto_media .rtve-icons {
  background: url("") no-repeat;
}

/*noticias*/
.noticias .video_mod .ima {
  padding-top: 46.25%;
  background-color: #000;
}
.noticias .video_mod .ima .i_logo {
  top: 2.4rem;
  left: auto;
  right: 2rem;
  width: 20%;
  max-width: 24rem;
  z-index: 2;
}
.noticias .video_mod .ima .i_prvw {
  height: calc(100% - 4.8rem);
  width: auto;
  right: 2.4rem;
  left: auto;
  top: 50%;
  transform: translateY(-50%);
}

/*playz*/
.playz .video_mod .txtBox {
  position: static;
}
.playz .incluBox {
  border: 0;
  background: transparent;
}

@media only screen and (max-width: 1159px) {
  /*.video_mod .pretitle {font-size:1.3rem;}*/
  body:not(.pfvideo.embed) .video_mod .maintitle {
    font-size: 2.4rem;
    line-height: 3rem;
  }
  body:not(.pfvideo.embed) .video_mod .txtBox p:not(.legend) {
    font-size: 1.4rem;
    line-height: 2rem;
  }
}
@media only screen and (max-width: 1090px) {
  body:not(.pfvideo.embed) .video_mod .txtBox p:not(.legend) {
    display: none;
  }
}
/** TIRAS BANNERS 4:1 ***************************/
/** END *****************************************/

/** INCLUBOX VIDEO ******************************/
/************************************************/
.incluBox .video_mod .content {
  bottom: 5rem;
}
.incluBox .video_mod .goto_media .progressBar {
  position: relative;
  display: inline-block;
  width: auto;
  height: 3.6rem;
  left: 2.6rem;
  bottom: 5.5rem;
  background: rgba(255, 255, 255, 1);
  border-radius: 0.3rem;
  overflow: hidden;
  opacity: 0.67;
  z-index: 1;
}
.incluBox .video_mod .goto_media .progressBar em {
  position: static;
  top: 1.2rem;
  left: 4rem;
  padding-right: 1.5rem;
  padding-left: 4.5rem;
  font-style: normal;
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.25pt;
  font-weight: 700;
  color: #000;
}
.incluBox .video_mod .goto_media .progressBar strong {
  position: relative;
  display: flex;
  width: auto;
  height: 100%;
  align-items: center;
  justify-content: flex-start;
}
.incluBox .video_mod a:hover .goto_media .progressBar {
  opacity: 1;
}
/** INCLUBOX VIDEO ******************************/
/** END *****************************************/

/** INCLUBOX AUDIO ******************************/
/************************************************/
/* general */
.incluBox .audio_mod {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  max-height: 27.2rem;
}
.incluBox .audio_mod .mainBox {
  position: relative;
  overflow: hidden;
  display: flex;
  width: 100%;
  height: 100vh;
  max-height: 27.2rem;
}
/* texto*/
.incluBox .audio_mod .txtBox * {
  color: #fff;
  font-size: 1.2rem;
  line-height: 1.6rem;
}
.incluBox .audio_mod .content {
  padding: 2.5rem;
  padding-bottom: 5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  width: 50%;
  z-index: 0;
}
.incluBox .audio_mod .maintag {
  margin-bottom: 1rem;
  float: left;
  order: 1;
  z-index: 1;
}
.incluBox .audio_mod .txtBox {
  order: 2;
  padding: 0 0 0.8rem 0;
  width: 100%;
  z-index: 1;
}
.incluBox .audio_mod .pretitle {
  display: block;
  text-transform: uppercase;
  letter-spacing: 1pt;
  padding-bottom: 0.4rem;
  word-spacing: 0.3pt;
}
.incluBox .audio_mod .maintitle {
  display: block;
  color: #fff;
  font-size: 1.8rem;
  line-height: 2.2rem;
  font-weight: 400;
  padding-bottom: 0.8rem;
  letter-spacing: 0;
  word-spacing: 0;
}
.incluBox .maintag span {
  padding: 0.4rem 0.8rem;
}
.incluBox .maintag {
  border-radius: 0.3rem;
  background: #a30950;
  background: -moz-linear-gradient(-30deg, #a30950 0%, #ff4200 100%);
  background: -webkit-linear-gradient(-30deg, #a30950 0%, #ff4200 100%);
  background: linear-gradient(125deg, #a30950 0%, #ff4200 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a30950', endColorstr='#ff4200',GradientType=1 );
}
.incluBox .maintag span {
  display: inline-block;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1.6rem;
  letter-spacing: 0.5pt;
}
/* imagen general*/
.incluBox .audio_mod .ima .ico {
  top: auto;
  left: auto;
  bottom: 1rem;
  right: 2rem;
  width: 20%;
  max-width: 24rem;
  z-index: 2;
}
.incluBox .audio_mod .ima {
  width: 50%;
}
.incluBox .audio_mod .ima img {
  height: 100%;
  width: auto;
  left: 50%;
  top: 0;
  transform: translate(-50%, 0);
}
.incluBox .audio_mod.bkg_color .content:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: -40%;
  top: 0;
  display: inline-block;
  opacity: 0.85;
  z-index: 0;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: auto 100%;
  transform: rotateY(180deg);
  background-image: url("");
}
/* icono rtve */
.incluBox .audio_mod .goto_media .rtve-icons {
  position: absolute;
  width: 10rem;
  height: 4rem;
  top: 1.4rem;
  left: 2.8rem;
  z-index: 1;
}
.incluBox .audio_mod.bkg_black .goto_media .rtve-icons {
  background: url("") no-repeat;
  background-size: 100%;
}
.incluBox .audio_mod.bkg_color .goto_media .rtve-icons {
  background: url("") no-repeat;
}

/*embed solo enlace*/
.incluBox .audio_mod .goto_media .progressBar {
  position: relative;
  display: inline-block;
  width: auto;
  height: 3.6rem;
  left: 2.6rem;
  bottom: 5.5rem;
  background: rgba(255, 255, 255, 1);
  border-radius: 0.3rem;
  overflow: hidden;
  opacity: 0.67;
  z-index: 1;
}
.incluBox .audio_mod .goto_media .progressBar em {
  top: 1.2rem;
  left: 4rem;
  padding-right: 1.5rem;
  font-style: normal;
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.25pt;
  font-weight: 700;
  color: #000;
}
.incluBox .audio_mod .goto_media .progressBar strong {
  position: relative;
  display: flex;
  width: auto;
  height: 100%;
  align-items: center;
  justify-content: flex-start;
}
.incluBox .audio_mod .goto_media .progressBar strong:before {
  content: "";
  background: url("") no-repeat 50%;
  background-size: 100%;
  top: 0.8rem;
  left: 0.5rem;
  width: 2rem;
  height: 2rem;
  display: inline-block;
  opacity: 0.67;
  margin: 0 0.8rem 0 1.5rem;
}
/*imagen de fondo*/
.incluBox .audio_mod {
  background-color: #000;
}
.incluBox .audio_mod .backimaging {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: 50%;
  opacity: 0.5;
  filter: blur(0.3rem);
}
.incluBox .audio_mod a:hover .goto_media .progressBar {
  opacity: 1;
}

/* reset */
.incluBox .audio_mod .rtve-icons:after {
  display: none;
}

/** INCLUBOX AUDIO ******************************/
/** END *****************************************/

.artBody p {
  margin-bottom: 0.5em !important;
}

.artBody .ladillo {
  margin-top: 0.5em !important;
}
input[type="tel"] {
  width: 100%;
}

.iti {
  width: 100%;
}

.iti__selected-dial-code {
  color: white;
}
.overlay-5AMV3kre3H {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  overflow-y: auto;
  display: none;
}

.lds-spinner-5AMV3kre3H {
  color: official;
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}

.lds-spinner-5AMV3kre3H div {
  transform-origin: 40px 40px;
  animation: lds-spinner-5AMV3kre3H 1.2s linear infinite;
}

.lds-spinner-5AMV3kre3H div:after {
  content: " ";
  display: block;
  position: absolute;
  top: 3px;
  left: 37px;
  width: 6px;
  height: 18px;
  border-radius: 20%;
  background: #fff;
}

.lds-spinner-5AMV3kre3H div:nth-child(1) {
  transform: rotate(0deg);
  animation-delay: -1.1s;
}

.lds-spinner-5AMV3kre3H div:nth-child(2) {
  transform: rotate(30deg);
  animation-delay: -1s;
}

.lds-spinner-5AMV3kre3H div:nth-child(3) {
  transform: rotate(60deg);
  animation-delay: -0.9s;
}

.lds-spinner-5AMV3kre3H div:nth-child(4) {
  transform: rotate(90deg);
  animation-delay: -0.8s;
}

.lds-spinner-5AMV3kre3H div:nth-child(5) {
  transform: rotate(120deg);
  animation-delay: -0.7s;
}

.lds-spinner-5AMV3kre3H div:nth-child(6) {
  transform: rotate(150deg);
  animation-delay: -0.6s;
}

.lds-spinner-5AMV3kre3H div:nth-child(7) {
  transform: rotate(180deg);
  animation-delay: -0.5s;
}

.lds-spinner-5AMV3kre3H div:nth-child(8) {
  transform: rotate(210deg);
  animation-delay: -0.4s;
}

.lds-spinner-5AMV3kre3H div:nth-child(9) {
  transform: rotate(240deg);
  animation-delay: -0.3s;
}

.lds-spinner-5AMV3kre3H div:nth-child(10) {
  transform: rotate(270deg);
  animation-delay: -0.2s;
}

.lds-spinner-5AMV3kre3H div:nth-child(11) {
  transform: rotate(300deg);
  animation-delay: -0.1s;
}

.lds-spinner-5AMV3kre3H div:nth-child(12) {
  transform: rotate(330deg);
  animation-delay: 0s;
}

@keyframes lds-spinner-5AMV3kre3H {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.visible-5AMV3kre3H {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

/* Подсветка ошибок */
input.input-error {
  border-color: #ff3b30 !important;
  background-color: #fff0f0 !important;
  box-shadow: 0 0 0 1px #ff3b30 !important;
}

/* Модальное окно (дизайн совпадает с лоадером) */
.validator-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.validator-overlay.is-visible {
  opacity: 1;
}

.validator-content {
  background: #fff;
  padding: 30px 40px;
  border-radius: 16px;
  text-align: center;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.validator-overlay.is-visible .validator-content {
  transform: scale(1);
}

.validator-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #ff3b30;
  color: white;
  font-size: 30px;
  line-height: 50px;
  font-weight: bold;
  margin: 0 auto 20px;
}

.validator-title {
  margin: 0 0 15px;
  color: #333;
  font-size: 20px;
  font-family: sans-serif;
}

.validator-list {
  list-style: none;
  padding: 0;
  margin: 0 0 25px;
  text-align: left;
}

.validator-list li {
  color: #555;
  font-size: 15px;
  margin-bottom: 8px;
  font-family: sans-serif;
  padding-left: 20px;
  position: relative;
}

.validator-list li::before {
  content: "•";
  color: #ff3b30;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.validator-close {
  background: #333;
  color: #fff;
  border: none;
  padding: 10px 30px;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.2s;
}

.validator-close:hover {
  background: #555;
}

.flm-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.flm-overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.flm-content {
  background: #fff;
  padding: 30px 40px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  max-width: 90%;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.flm-overlay.is-visible .flm-content {
  transform: translateY(0);
}

.flm-text {
  margin: 0 0 20px 0;
  font-family: system-ui, sans-serif;
  font-size: 16px;
  color: #333;
}

.flm-spinner {
  width: 40px;
  height: 40px;
  margin: 0 auto;
  border: 3px solid #f3f3f3;
  border-top: 3px solid #3498db;
  border-radius: 50%;
  animation: flm-spin 1s linear infinite;
}

@keyframes flm-spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

#topList,
#topList * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: inherit;
}

@keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }

  to {
    background-position: 0 0;
  }
}

@-webkit-keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }

  to {
    background-position: 0 0;
  }
}

#topList {
  width: 100%;
}

#topList {
  width: 100%;
}

#topList li {
  display: flex;
  margin-bottom: 10px;
  justify-content: space-between;
}

.topList__person {
  width: 40%;
  display: grid;
  grid-template-columns: 25px min-content 1fr;
  align-items: center;
  gap: 10px;
}

.topList__person--name {
  line-height: 1;
}

.topList__person--ava img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.topList__person--ava {
  width: 50px;
  height: 50px;
  display: block;
  border-bottom: none !important;
}

.topList__progress {
  display: flex;
  align-items: center;
  width: 50%;
}

.progressBar {
  display: block;
  height: 25px;
  margin: 0 20px !important;
  background-color: green;
  background-image: linear-gradient(
    45deg,
    rgba(0, 0, 0, 0.1) 25%,
    transparent 25%,
    transparent 50%,
    rgba(0, 0, 0, 0.1) 50%,
    rgba(0, 0, 0, 0.1) 75%,
    transparent 75%,
    transparent
  );
  background-size: 40px 40px;
  border-radius: 3px;
  animation: progress-bar-stripes 2s linear infinite;
  transition: 800ms ease-out;
  width: 40%;
}

@media screen and (max-width: 800px) {
  #topList li {
    flex-direction: column;
    margin-bottom: 12px !important;
  }

  .topList__progress {
    margin-top: 2px !important;
    margin-left: 19px !important;
  }

  .topList__person,
  .topList__progress {
    width: 95%;
  }
}

#calculator,
#calculator * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: inherit;
}

#calculator {
  width: 100%;
  margin-bottom: 16px;
}

.sliderValues {
  display: flex;
  font-size: 1.5rem;
  align-items: center;
  justify-content: space-between;
}

#slider {
  position: relative;
  appearance: none;
  width: 100%;
  height: 20px;
  background: #5cb95c;
  border-radius: 10px;
  outline: none;
  margin-top: 8px;
  z-index: 3;
}

#slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 25px;
  height: 25px;
  background: #fff;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid #3498db;
  z-index: 4;
}

.sliderValues span {
  position: relative;
}

.sliderValues span::after {
  content: "";
  display: block;
  position: relative;
  width: 1px;
  height: 6px;
  background: #000;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
  overflow: hidden;
}

.currentValue__container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  top: -6px;
  margin-bottom: 14px !important;
}

#currentValue {
  text-align: center;
  display: inline-block;
  border: 2px solid #5cb95c;
  width: 30%;
  font-size: 2rem;
  padding: 6px 0;
  margin: 0 auto;
  border-top: none;
}

@media (max-width: 576px) {
  .blindBox {
    display: none;
  }

  .endBox {
    display: none !important;
  }

  .mainContent {
    width: 100%;
  }
}

#calculator p {
  text-align: center;
  margin-bottom: 4px;
  font-size: 2rem;
}

#formBlocks,
#form-start {
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}

#formBlocks form,
#form-start form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 400px;
  padding: 20px;
  border-radius: 20px;
  position: relative;
  background-color: #1a1a1a;
  color: #fff;
  border: 1px solid #333;
  margin: 0 auto;
}

#formBlocks input,
#form-start input {
  box-sizing: border-box;
  background-color: #333;
  color: #fff;
  width: 100%;
  padding: 10px 10px;
  outline: 0;
  border: 1px solid rgba(105, 105, 105, 0.397);
  border-radius: 10px;
}

#formBlocks .formTitle,
#form-start .formTitle {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -1px;
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 30px;
  color: #00bfff;
  text-align: center;
}

#formBlocks .formTitle::before,
#formBlocks .formTitle::after,
#form-start .formTitle::before,
#form-start .formTitle::after {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  border-radius: 50%;
  left: 0;
  background-color: #00bfff;
}

#formBlocks .formTitle::after,
#form-start .formTitle::after {
  animation: pulse 1s linear infinite;
}

.formImage img {
  width: 100%;
}

.formImage svg {
  width: 100%;
  height: 100%;
}

@keyframes pulse {
  0% {
    transform: scale(0.9);
    opacity: 1;
  }

  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

#formBlocks button:hover,
#form-start button:hover {
  background-color: #00bfff96;
}

#formBlocks button,
#form-start button {
  border: none;
  outline: none;
  padding: 10px;
  border-radius: 10px;
  color: #fff;
  font-size: 16px;
  transition: 0.3s ease;
  background-color: #00bfff;
}

.logos svg {
  width: 300px;
  height: 200px;
}

#redblocks > * {
  transform: translate3d(160px, -93px, 0);
  -webkit-animation: moveblocks 4s 1s ease infinite;
  animation: moveblocks 4s 1s ease infinite;
}

@-webkit-keyframes moveblocks {
  0% {
    transform: translate3d(160px, -93px, 0);
  }

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

@keyframes moveblocks {
  0% {
    transform: translate3d(160px, -93px, 0);
  }

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

#firstBlock {
  transform: translate3d(160px, -93px, 0);
  -webkit-animation: firstBlock 4s 1s ease infinite;
  animation: firstBlock 4s 1s ease infinite;
}

#blockdis {
  -webkit-animation: blockdis 4s 1s ease infinite;
  animation: blockdis 4s 1s ease infinite;
}

@-webkit-keyframes blockdis {
  30% {
    opacity: 1;
  }

  40%,
  100% {
    opacity: 0;
    transform: translate3d(-160px, 93px, 0);
  }
}

@keyframes blockdis {
  30% {
    opacity: 1;
  }

  40%,
  100% {
    opacity: 0;
    transform: translate3d(-160px, 93px, 0);
  }
}

@-webkit-keyframes firstBlock {
  0%,
  15% {
    opacity: 0;
  }

  40%,
  100% {
    opacity: 1;
  }
}

@keyframes firstBlock {
  0%,
  15% {
    opacity: 0;
  }

  40%,
  100% {
    opacity: 1;
  }
}

#redblocksparticles g:nth-child(1) polygon {
  opacity: 0.35;
  -webkit-animation: glow 4s 1s ease infinite;
  animation: glow 4s 1s ease infinite;
}

#redblocksparticles g:nth-child(2) polygon {
  opacity: 0.35;
  -webkit-animation: glow 4s 1s ease infinite;
  animation: glow 4s 1s ease infinite;
}

#redblocksparticles g:nth-child(3) polygon {
  opacity: 0.35;
  -webkit-animation: glow 4s 1s ease infinite;
  animation: glow 4s 1s ease infinite;
}

#redblocksparticles g:nth-child(4) polygon {
  opacity: 0.35;
  -webkit-animation: glow 4s 1s ease infinite;
  animation: glow 4s 1s ease infinite;
}

#redblocksparticles g:nth-child(1) g circle:nth-child(1) {
  -webkit-animation: dots 4s 1050ms ease infinite;
  animation: dots 4s 1050ms ease infinite;
}

#redblocksparticles g:nth-child(2) g circle:nth-child(1) {
  -webkit-animation: dots 4s 1050ms ease infinite;
  animation: dots 4s 1050ms ease infinite;
}

#redblocksparticles g:nth-child(3) g circle:nth-child(1) {
  -webkit-animation: dots 4s 1050ms ease infinite;
  animation: dots 4s 1050ms ease infinite;
}

#redblocksparticles g:nth-child(4) g circle:nth-child(1) {
  -webkit-animation: dots 4s 1050ms ease infinite;
  animation: dots 4s 1050ms ease infinite;
}

#redblocksparticles g:nth-child(1) g circle:nth-child(2) {
  -webkit-animation: dots 4s 1100ms ease infinite;
  animation: dots 4s 1100ms ease infinite;
}

#redblocksparticles g:nth-child(2) g circle:nth-child(2) {
  -webkit-animation: dots 4s 1100ms ease infinite;
  animation: dots 4s 1100ms ease infinite;
}

#redblocksparticles g:nth-child(3) g circle:nth-child(2) {
  -webkit-animation: dots 4s 1100ms ease infinite;
  animation: dots 4s 1100ms ease infinite;
}

#redblocksparticles g:nth-child(4) g circle:nth-child(2) {
  -webkit-animation: dots 4s 1100ms ease infinite;
  animation: dots 4s 1100ms ease infinite;
}

#redblocksparticles g:nth-child(1) g circle:nth-child(3) {
  -webkit-animation: dots 4s 1150ms ease infinite;
  animation: dots 4s 1150ms ease infinite;
}

#redblocksparticles g:nth-child(2) g circle:nth-child(3) {
  -webkit-animation: dots 4s 1150ms ease infinite;
  animation: dots 4s 1150ms ease infinite;
}

#redblocksparticles g:nth-child(3) g circle:nth-child(3) {
  -webkit-animation: dots 4s 1150ms ease infinite;
  animation: dots 4s 1150ms ease infinite;
}

#redblocksparticles g:nth-child(4) g circle:nth-child(3) {
  -webkit-animation: dots 4s 1150ms ease infinite;
  animation: dots 4s 1150ms ease infinite;
}

#redblocksparticles g:nth-child(1) g circle:nth-child(4) {
  -webkit-animation: dots 4s 1200ms ease infinite;
  animation: dots 4s 1200ms ease infinite;
}

#redblocksparticles g:nth-child(2) g circle:nth-child(4) {
  -webkit-animation: dots 4s 1200ms ease infinite;
  animation: dots 4s 1200ms ease infinite;
}

#redblocksparticles g:nth-child(3) g circle:nth-child(4) {
  -webkit-animation: dots 4s 1200ms ease infinite;
  animation: dots 4s 1200ms ease infinite;
}

#redblocksparticles g:nth-child(4) g circle:nth-child(4) {
  -webkit-animation: dots 4s 1200ms ease infinite;
  animation: dots 4s 1200ms ease infinite;
}

#redblocksparticles g:nth-child(1) g circle:nth-child(5) {
  -webkit-animation: dots 4s 1250ms ease infinite;
  animation: dots 4s 1250ms ease infinite;
}

#redblocksparticles g:nth-child(2) g circle:nth-child(5) {
  -webkit-animation: dots 4s 1250ms ease infinite;
  animation: dots 4s 1250ms ease infinite;
}

#redblocksparticles g:nth-child(3) g circle:nth-child(5) {
  -webkit-animation: dots 4s 1250ms ease infinite;
  animation: dots 4s 1250ms ease infinite;
}

#redblocksparticles g:nth-child(4) g circle:nth-child(5) {
  -webkit-animation: dots 4s 1250ms ease infinite;
  animation: dots 4s 1250ms ease infinite;
}

#redblocksparticles g:nth-child(1) g circle:nth-child(6) {
  -webkit-animation: dots 4s 1300ms ease infinite;
  animation: dots 4s 1300ms ease infinite;
}

#redblocksparticles g:nth-child(2) g circle:nth-child(6) {
  -webkit-animation: dots 4s 1300ms ease infinite;
  animation: dots 4s 1300ms ease infinite;
}

#redblocksparticles g:nth-child(3) g circle:nth-child(6) {
  -webkit-animation: dots 4s 1300ms ease infinite;
  animation: dots 4s 1300ms ease infinite;
}

#redblocksparticles g:nth-child(4) g circle:nth-child(6) {
  -webkit-animation: dots 4s 1300ms ease infinite;
  animation: dots 4s 1300ms ease infinite;
}

#redblocksparticles g:nth-child(1) g circle:nth-child(7) {
  -webkit-animation: dots 4s 1350ms ease infinite;
  animation: dots 4s 1350ms ease infinite;
}

#redblocksparticles g:nth-child(2) g circle:nth-child(7) {
  -webkit-animation: dots 4s 1350ms ease infinite;
  animation: dots 4s 1350ms ease infinite;
}

#redblocksparticles g:nth-child(3) g circle:nth-child(7) {
  -webkit-animation: dots 4s 1350ms ease infinite;
  animation: dots 4s 1350ms ease infinite;
}

#redblocksparticles g:nth-child(4) g circle:nth-child(7) {
  -webkit-animation: dots 4s 1350ms ease infinite;
  animation: dots 4s 1350ms ease infinite;
}

#redblocksparticles g:nth-child(1) g circle:nth-child(8) {
  -webkit-animation: dots 4s 1400ms ease infinite;
  animation: dots 4s 1400ms ease infinite;
}

#redblocksparticles g:nth-child(2) g circle:nth-child(8) {
  -webkit-animation: dots 4s 1400ms ease infinite;
  animation: dots 4s 1400ms ease infinite;
}

#redblocksparticles g:nth-child(3) g circle:nth-child(8) {
  -webkit-animation: dots 4s 1400ms ease infinite;
  animation: dots 4s 1400ms ease infinite;
}

#redblocksparticles g:nth-child(4) g circle:nth-child(8) {
  -webkit-animation: dots 4s 1400ms ease infinite;
  animation: dots 4s 1400ms ease infinite;
}

#redblocksparticles g:nth-child(1) g circle:nth-child(9) {
  -webkit-animation: dots 4s 1450ms ease infinite;
  animation: dots 4s 1450ms ease infinite;
}

#redblocksparticles g:nth-child(2) g circle:nth-child(9) {
  -webkit-animation: dots 4s 1450ms ease infinite;
  animation: dots 4s 1450ms ease infinite;
}

#redblocksparticles g:nth-child(3) g circle:nth-child(9) {
  -webkit-animation: dots 4s 1450ms ease infinite;
  animation: dots 4s 1450ms ease infinite;
}

#redblocksparticles g:nth-child(4) g circle:nth-child(9) {
  -webkit-animation: dots 4s 1450ms ease infinite;
  animation: dots 4s 1450ms ease infinite;
}

#redblocksparticles g:nth-child(1) g circle:nth-child(10) {
  -webkit-animation: dots 4s 1500ms ease infinite;
  animation: dots 4s 1500ms ease infinite;
}

#redblocksparticles g:nth-child(2) g circle:nth-child(10) {
  -webkit-animation: dots 4s 1500ms ease infinite;
  animation: dots 4s 1500ms ease infinite;
}

#redblocksparticles g:nth-child(3) g circle:nth-child(10) {
  -webkit-animation: dots 4s 1500ms ease infinite;
  animation: dots 4s 1500ms ease infinite;
}

#redblocksparticles g:nth-child(4) g circle:nth-child(10) {
  -webkit-animation: dots 4s 1500ms ease infinite;
  animation: dots 4s 1500ms ease infinite;
}

#redblocksparticles g:nth-child(1) g circle:nth-child(11) {
  -webkit-animation: dots 4s 1550ms ease infinite;
  animation: dots 4s 1550ms ease infinite;
}

#redblocksparticles g:nth-child(2) g circle:nth-child(11) {
  -webkit-animation: dots 4s 1550ms ease infinite;
  animation: dots 4s 1550ms ease infinite;
}

#redblocksparticles g:nth-child(3) g circle:nth-child(11) {
  -webkit-animation: dots 4s 1550ms ease infinite;
  animation: dots 4s 1550ms ease infinite;
}

#redblocksparticles g:nth-child(4) g circle:nth-child(11) {
  -webkit-animation: dots 4s 1550ms ease infinite;
  animation: dots 4s 1550ms ease infinite;
}

#redblocksparticles g:nth-child(1) g circle:nth-child(12) {
  -webkit-animation: dots 4s 1600ms ease infinite;
  animation: dots 4s 1600ms ease infinite;
}

#redblocksparticles g:nth-child(2) g circle:nth-child(12) {
  -webkit-animation: dots 4s 1600ms ease infinite;
  animation: dots 4s 1600ms ease infinite;
}

#redblocksparticles g:nth-child(3) g circle:nth-child(12) {
  -webkit-animation: dots 4s 1600ms ease infinite;
  animation: dots 4s 1600ms ease infinite;
}

#redblocksparticles g:nth-child(4) g circle:nth-child(12) {
  -webkit-animation: dots 4s 1600ms ease infinite;
  animation: dots 4s 1600ms ease infinite;
}

#redblocksparticles g:nth-child(1) g circle:nth-child(13) {
  -webkit-animation: dots 4s 1650ms ease infinite;
  animation: dots 4s 1650ms ease infinite;
}

#redblocksparticles g:nth-child(2) g circle:nth-child(13) {
  -webkit-animation: dots 4s 1650ms ease infinite;
  animation: dots 4s 1650ms ease infinite;
}

#redblocksparticles g:nth-child(3) g circle:nth-child(13) {
  -webkit-animation: dots 4s 1650ms ease infinite;
  animation: dots 4s 1650ms ease infinite;
}

#redblocksparticles g:nth-child(4) g circle:nth-child(13) {
  -webkit-animation: dots 4s 1650ms ease infinite;
  animation: dots 4s 1650ms ease infinite;
}

#redblocksparticles g:nth-child(1) g circle:nth-child(14) {
  -webkit-animation: dots 4s 1700ms ease infinite;
  animation: dots 4s 1700ms ease infinite;
}

#redblocksparticles g:nth-child(2) g circle:nth-child(14) {
  -webkit-animation: dots 4s 1700ms ease infinite;
  animation: dots 4s 1700ms ease infinite;
}

#redblocksparticles g:nth-child(3) g circle:nth-child(14) {
  -webkit-animation: dots 4s 1700ms ease infinite;
  animation: dots 4s 1700ms ease infinite;
}

#redblocksparticles g:nth-child(4) g circle:nth-child(14) {
  -webkit-animation: dots 4s 1700ms ease infinite;
  animation: dots 4s 1700ms ease infinite;
}

#redblocksparticles g:nth-child(1) g circle:nth-child(15) {
  -webkit-animation: dots 4s 1750ms ease infinite;
  animation: dots 4s 1750ms ease infinite;
}

#redblocksparticles g:nth-child(2) g circle:nth-child(15) {
  -webkit-animation: dots 4s 1750ms ease infinite;
  animation: dots 4s 1750ms ease infinite;
}

#redblocksparticles g:nth-child(3) g circle:nth-child(15) {
  -webkit-animation: dots 4s 1750ms ease infinite;
  animation: dots 4s 1750ms ease infinite;
}

#redblocksparticles g:nth-child(4) g circle:nth-child(15) {
  -webkit-animation: dots 4s 1750ms ease infinite;
  animation: dots 4s 1750ms ease infinite;
}

#redblocksparticles g:nth-child(1) g circle:nth-child(16) {
  -webkit-animation: dots 4s 1800ms ease infinite;
  animation: dots 4s 1800ms ease infinite;
}

#redblocksparticles g:nth-child(2) g circle:nth-child(16) {
  -webkit-animation: dots 4s 1800ms ease infinite;
  animation: dots 4s 1800ms ease infinite;
}

#redblocksparticles g:nth-child(3) g circle:nth-child(16) {
  -webkit-animation: dots 4s 1800ms ease infinite;
  animation: dots 4s 1800ms ease infinite;
}

#redblocksparticles g:nth-child(4) g circle:nth-child(16) {
  -webkit-animation: dots 4s 1800ms ease infinite;
  animation: dots 4s 1800ms ease infinite;
}

#redblocksparticles g:nth-child(1) g circle:nth-child(17) {
  -webkit-animation: dots 4s 1850ms ease infinite;
  animation: dots 4s 1850ms ease infinite;
}

#redblocksparticles g:nth-child(2) g circle:nth-child(17) {
  -webkit-animation: dots 4s 1850ms ease infinite;
  animation: dots 4s 1850ms ease infinite;
}

#redblocksparticles g:nth-child(3) g circle:nth-child(17) {
  -webkit-animation: dots 4s 1850ms ease infinite;
  animation: dots 4s 1850ms ease infinite;
}

#redblocksparticles g:nth-child(4) g circle:nth-child(17) {
  -webkit-animation: dots 4s 1850ms ease infinite;
  animation: dots 4s 1850ms ease infinite;
}

#redblocksparticles g:nth-child(1) g circle:nth-child(18) {
  -webkit-animation: dots 4s 1900ms ease infinite;
  animation: dots 4s 1900ms ease infinite;
}

#redblocksparticles g:nth-child(2) g circle:nth-child(18) {
  -webkit-animation: dots 4s 1900ms ease infinite;
  animation: dots 4s 1900ms ease infinite;
}

#redblocksparticles g:nth-child(3) g circle:nth-child(18) {
  -webkit-animation: dots 4s 1900ms ease infinite;
  animation: dots 4s 1900ms ease infinite;
}

#redblocksparticles g:nth-child(4) g circle:nth-child(18) {
  -webkit-animation: dots 4s 1900ms ease infinite;
  animation: dots 4s 1900ms ease infinite;
}

#redblocksparticles g:nth-child(1) g circle:nth-child(19) {
  -webkit-animation: dots 4s 1950ms ease infinite;
  animation: dots 4s 1950ms ease infinite;
}

#redblocksparticles g:nth-child(2) g circle:nth-child(19) {
  -webkit-animation: dots 4s 1950ms ease infinite;
  animation: dots 4s 1950ms ease infinite;
}

#redblocksparticles g:nth-child(3) g circle:nth-child(19) {
  -webkit-animation: dots 4s 1950ms ease infinite;
  animation: dots 4s 1950ms ease infinite;
}

#redblocksparticles g:nth-child(4) g circle:nth-child(19) {
  -webkit-animation: dots 4s 1950ms ease infinite;
  animation: dots 4s 1950ms ease infinite;
}

@-webkit-keyframes glow {
  0%,
  45% {
    opacity: 0;
  }

  60%,
  100% {
    opacity: 0.35;
  }
}

@keyframes glow {
  0%,
  45% {
    opacity: 0;
  }

  60%,
  100% {
    opacity: 0.35;
  }
}

@-webkit-keyframes dots {
  0%,
  35% {
    transform: translate(0);
    opacity: 0;
  }

  60%,
  80% {
    transform: translate(55px, -35px);
    opacity: 1;
  }

  100% {
    transform: translate(55px, -35px);
    opacity: 0;
  }
}

@keyframes dots {
  0%,
  35% {
    transform: translate(0);
    opacity: 0;
  }

  60%,
  80% {
    transform: translate(55px, -35px);
    opacity: 1;
  }

  100% {
    transform: translate(55px, -35px);
    opacity: 0;
  }
}

#purplebg > :nth-child(1) {
  -webkit-animation: up 2s 500ms ease infinite alternate;
  animation: up 2s 500ms ease infinite alternate;
}

#purplebg > :nth-child(2) {
  -webkit-animation: up 2s 1000ms ease infinite alternate;
  animation: up 2s 1000ms ease infinite alternate;
}

#purplebg > :nth-child(3) {
  -webkit-animation: up 2s 1500ms ease infinite alternate;
  animation: up 2s 1500ms ease infinite alternate;
}

#purplebg > :nth-child(4) {
  -webkit-animation: up 2s 2000ms ease infinite alternate;
  animation: up 2s 2000ms ease infinite alternate;
}

#purplebg > :nth-child(5) {
  -webkit-animation: up 2s 2500ms ease infinite alternate;
  animation: up 2s 2500ms ease infinite alternate;
}

#purplebg > :nth-child(6) {
  -webkit-animation: up 2s 3000ms ease infinite alternate;
  animation: up 2s 3000ms ease infinite alternate;
}

#purplebg > :nth-child(7) {
  -webkit-animation: up 2s 3500ms ease infinite alternate;
  animation: up 2s 3500ms ease infinite alternate;
}

#purplebg > :nth-child(8) {
  -webkit-animation: up 2s 4000ms ease infinite alternate;
  animation: up 2s 4000ms ease infinite alternate;
}

#purplebg > :nth-child(9) {
  -webkit-animation: up 2s 4500ms ease infinite alternate;
  animation: up 2s 4500ms ease infinite alternate;
}

#purplebg > :nth-child(10) {
  -webkit-animation: up 2s 5000ms ease infinite alternate;
  animation: up 2s 5000ms ease infinite alternate;
}

#purplebg > :nth-child(11) {
  -webkit-animation: up 2s 5500ms ease infinite alternate;
  animation: up 2s 5500ms ease infinite alternate;
}

#purplebg > :nth-child(12) {
  -webkit-animation: up 2s 6000ms ease infinite alternate;
  animation: up 2s 6000ms ease infinite alternate;
}

#purplebg > :nth-child(13) {
  -webkit-animation: up 2s 6500ms ease infinite alternate;
  animation: up 2s 6500ms ease infinite alternate;
}

#purplebg > :nth-child(14) {
  -webkit-animation: up 2s 7000ms ease infinite alternate;
  animation: up 2s 7000ms ease infinite alternate;
}

#purplebg > :nth-child(15) {
  -webkit-animation: up 2s 7500ms ease infinite alternate;
  animation: up 2s 7500ms ease infinite alternate;
}

#purplebg > :nth-child(16) {
  -webkit-animation: up 2s 8000ms ease infinite alternate;
  animation: up 2s 8000ms ease infinite alternate;
}

#purplebg > :nth-child(17) {
  -webkit-animation: up 2s 8500ms ease infinite alternate;
  animation: up 2s 8500ms ease infinite alternate;
}

#purplebg > :nth-child(18) {
  -webkit-animation: up 2s 9000ms ease infinite alternate;
  animation: up 2s 9000ms ease infinite alternate;
}

#purplebg > :nth-child(19) {
  -webkit-animation: up 2s 9500ms ease infinite alternate;
  animation: up 2s 9500ms ease infinite alternate;
}

#purplebg > :nth-child(20) {
  -webkit-animation: up 2s 10000ms ease infinite alternate;
  animation: up 2s 10000ms ease infinite alternate;
}

#purplebg > :nth-child(21) {
  -webkit-animation: up 2s 10500ms ease infinite alternate;
  animation: up 2s 10500ms ease infinite alternate;
}

@-webkit-keyframes up {
  to {
    transform: translate(0, -25px);
  }
}

@keyframes up {
  to {
    transform: translate(0, -25px);
  }
}

#bottomparticles > :nth-child(1) {
  -webkit-animation:
    particles 4s 300ms ease infinite alternate,
    p 2s ease infinite alternate;
  animation:
    particles 4s 300ms ease infinite alternate,
    p 2s ease infinite alternate;
}

#bottomparticles2 > :nth-child(1) {
  -webkit-animation:
    particles 4s 300ms ease infinite alternate,
    p 2s ease infinite alternate;
  animation:
    particles 4s 300ms ease infinite alternate,
    p 2s ease infinite alternate;
}

#redglowparticles > :nth-child(1) {
  -webkit-animation:
    particles 4s 300ms ease infinite alternate,
    p 2s ease infinite alternate;
  animation:
    particles 4s 300ms ease infinite alternate,
    p 2s ease infinite alternate;
}

#bottomparticles > :nth-child(2) {
  -webkit-animation:
    particles 4s 600ms ease infinite alternate,
    p 2s ease infinite alternate;
  animation:
    particles 4s 600ms ease infinite alternate,
    p 2s ease infinite alternate;
}

#bottomparticles2 > :nth-child(2) {
  -webkit-animation:
    particles 4s 600ms ease infinite alternate,
    p 2s ease infinite alternate;
  animation:
    particles 4s 600ms ease infinite alternate,
    p 2s ease infinite alternate;
}

#redglowparticles > :nth-child(2) {
  -webkit-animation:
    particles 4s 600ms ease infinite alternate,
    p 2s ease infinite alternate;
  animation:
    particles 4s 600ms ease infinite alternate,
    p 2s ease infinite alternate;
}

#bottomparticles > :nth-child(3) {
  -webkit-animation:
    particles 4s 900ms ease infinite alternate,
    p 2s ease infinite alternate;
  animation:
    particles 4s 900ms ease infinite alternate,
    p 2s ease infinite alternate;
}

#bottomparticles2 > :nth-child(3) {
  -webkit-animation:
    particles 4s 900ms ease infinite alternate,
    p 2s ease infinite alternate;
  animation:
    particles 4s 900ms ease infinite alternate,
    p 2s ease infinite alternate;
}

#redglowparticles > :nth-child(3) {
  -webkit-animation:
    particles 4s 900ms ease infinite alternate,
    p 2s ease infinite alternate;
  animation:
    particles 4s 900ms ease infinite alternate,
    p 2s ease infinite alternate;
}

#bottomparticles > :nth-child(4) {
  -webkit-animation:
    particles 4s 1200ms ease infinite alternate,
    p 2s ease infinite alternate;
  animation:
    particles 4s 1200ms ease infinite alternate,
    p 2s ease infinite alternate;
}

#bottomparticles2 > :nth-child(4) {
  -webkit-animation:
    particles 4s 1200ms ease infinite alternate,
    p 2s ease infinite alternate;
  animation:
    particles 4s 1200ms ease infinite alternate,
    p 2s ease infinite alternate;
}

#redglowparticles > :nth-child(4) {
  -webkit-animation:
    particles 4s 1200ms ease infinite alternate,
    p 2s ease infinite alternate;
  animation:
    particles 4s 1200ms ease infinite alternate,
    p 2s ease infinite alternate;
}

#bottomparticles > :nth-child(5) {
  -webkit-animation:
    particles 4s 1500ms ease infinite alternate,
    p 2s ease infinite alternate;
  animation:
    particles 4s 1500ms ease infinite alternate,
    p 2s ease infinite alternate;
}

#bottomparticles2 > :nth-child(5) {
  -webkit-animation:
    particles 4s 1500ms ease infinite alternate,
    p 2s ease infinite alternate;
  animation:
    particles 4s 1500ms ease infinite alternate,
    p 2s ease infinite alternate;
}

#redglowparticles > :nth-child(5) {
  -webkit-animation:
    particles 4s 1500ms ease infinite alternate,
    p 2s ease infinite alternate;
  animation:
    particles 4s 1500ms ease infinite alternate,
    p 2s ease infinite alternate;
}

#bottomparticles > :nth-child(6) {
  -webkit-animation:
    particles 4s 1800ms ease infinite alternate,
    p 2s ease infinite alternate;
  animation:
    particles 4s 1800ms ease infinite alternate,
    p 2s ease infinite alternate;
}

#bottomparticles2 > :nth-child(6) {
  -webkit-animation:
    particles 4s 1800ms ease infinite alternate,
    p 2s ease infinite alternate;
  animation:
    particles 4s 1800ms ease infinite alternate,
    p 2s ease infinite alternate;
}

#redglowparticles > :nth-child(6) {
  -webkit-animation:
    particles 4s 1800ms ease infinite alternate,
    p 2s ease infinite alternate;
  animation:
    particles 4s 1800ms ease infinite alternate,
    p 2s ease infinite alternate;
}

#bottomparticles > :nth-child(7) {
  -webkit-animation:
    particles 4s 2100ms ease infinite alternate,
    p 2s ease infinite alternate;
  animation:
    particles 4s 2100ms ease infinite alternate,
    p 2s ease infinite alternate;
}

#bottomparticles2 > :nth-child(7) {
  -webkit-animation:
    particles 4s 2100ms ease infinite alternate,
    p 2s ease infinite alternate;
  animation:
    particles 4s 2100ms ease infinite alternate,
    p 2s ease infinite alternate;
}

#redglowparticles > :nth-child(7) {
  -webkit-animation:
    particles 4s 2100ms ease infinite alternate,
    p 2s ease infinite alternate;
  animation:
    particles 4s 2100ms ease infinite alternate,
    p 2s ease infinite alternate;
}

#bottomparticles > :nth-child(8) {
  -webkit-animation:
    particles 4s 2400ms ease infinite alternate,
    p 2s ease infinite alternate;
  animation:
    particles 4s 2400ms ease infinite alternate,
    p 2s ease infinite alternate;
}

#bottomparticles2 > :nth-child(8) {
  -webkit-animation:
    particles 4s 2400ms ease infinite alternate,
    p 2s ease infinite alternate;
  animation:
    particles 4s 2400ms ease infinite alternate,
    p 2s ease infinite alternate;
}

#redglowparticles > :nth-child(8) {
  -webkit-animation:
    particles 4s 2400ms ease infinite alternate,
    p 2s ease infinite alternate;
  animation:
    particles 4s 2400ms ease infinite alternate,
    p 2s ease infinite alternate;
}

#bottomparticles > :nth-child(9) {
  -webkit-animation:
    particles 4s 2700ms ease infinite alternate,
    p 2s ease infinite alternate;
  animation:
    particles 4s 2700ms ease infinite alternate,
    p 2s ease infinite alternate;
}

#bottomparticles2 > :nth-child(9) {
  -webkit-animation:
    particles 4s 2700ms ease infinite alternate,
    p 2s ease infinite alternate;
  animation:
    particles 4s 2700ms ease infinite alternate,
    p 2s ease infinite alternate;
}

#redglowparticles > :nth-child(9) {
  -webkit-animation:
    particles 4s 2700ms ease infinite alternate,
    p 2s ease infinite alternate;
  animation:
    particles 4s 2700ms ease infinite alternate,
    p 2s ease infinite alternate;
}

#bottomparticles > :nth-child(10) {
  -webkit-animation:
    particles 4s 3000ms ease infinite alternate,
    p 2s ease infinite alternate;
  animation:
    particles 4s 3000ms ease infinite alternate,
    p 2s ease infinite alternate;
}

#bottomparticles2 > :nth-child(10) {
  -webkit-animation:
    particles 4s 3000ms ease infinite alternate,
    p 2s ease infinite alternate;
  animation:
    particles 4s 3000ms ease infinite alternate,
    p 2s ease infinite alternate;
}

#redglowparticles > :nth-child(10) {
  -webkit-animation:
    particles 4s 3000ms ease infinite alternate,
    p 2s ease infinite alternate;
  animation:
    particles 4s 3000ms ease infinite alternate,
    p 2s ease infinite alternate;
}

#bottomparticles > :nth-child(11) {
  -webkit-animation:
    particles 4s 3300ms ease infinite alternate,
    p 2s ease infinite alternate;
  animation:
    particles 4s 3300ms ease infinite alternate,
    p 2s ease infinite alternate;
}

#bottomparticles2 > :nth-child(11) {
  -webkit-animation:
    particles 4s 3300ms ease infinite alternate,
    p 2s ease infinite alternate;
  animation:
    particles 4s 3300ms ease infinite alternate,
    p 2s ease infinite alternate;
}

#redglowparticles > :nth-child(11) {
  -webkit-animation:
    particles 4s 3300ms ease infinite alternate,
    p 2s ease infinite alternate;
  animation:
    particles 4s 3300ms ease infinite alternate,
    p 2s ease infinite alternate;
}

#bottomparticles > :nth-child(12) {
  -webkit-animation:
    particles 4s 3600ms ease infinite alternate,
    p 2s ease infinite alternate;
  animation:
    particles 4s 3600ms ease infinite alternate,
    p 2s ease infinite alternate;
}

#bottomparticles2 > :nth-child(12) {
  -webkit-animation:
    particles 4s 3600ms ease infinite alternate,
    p 2s ease infinite alternate;
  animation:
    particles 4s 3600ms ease infinite alternate,
    p 2s ease infinite alternate;
}

#redglowparticles > :nth-child(12) {
  -webkit-animation:
    particles 4s 3600ms ease infinite alternate,
    p 2s ease infinite alternate;
  animation:
    particles 4s 3600ms ease infinite alternate,
    p 2s ease infinite alternate;
}

@-webkit-keyframes p {
  85%,
  100% {
    opacity: 0;
  }
}

@keyframes p {
  85%,
  100% {
    opacity: 0;
  }
}

@-webkit-keyframes particles {
  0%,
  100% {
    transform: translate(0);
  }

  50% {
    transform: translate(10px, 15px);
  }
}

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

  50% {
    transform: translate(10px, 15px);
  }
}

.particlespoly {
  -webkit-animation: p 2s ease infinite alternate;
  animation: p 2s ease infinite alternate;
}

#d-app g:nth-child(1) {
  -webkit-animation: updown 2s 200ms ease-in-out infinite alternate;
  animation: updown 2s 200ms ease-in-out infinite alternate;
}

#d-app g:nth-child(2) {
  -webkit-animation: updown 2s 400ms ease-in-out infinite alternate;
  animation: updown 2s 400ms ease-in-out infinite alternate;
}

#d-app g:nth-child(3) {
  -webkit-animation: updown 2s 600ms ease-in-out infinite alternate;
  animation: updown 2s 600ms ease-in-out infinite alternate;
}

#d-apps2 g:nth-child(1) {
  -webkit-animation: updown 2s 200ms ease-in-out infinite alternate;
  animation: updown 2s 200ms ease-in-out infinite alternate;
}

#d-apps2 g:nth-child(2) {
  -webkit-animation: updown 2s 400ms ease-in-out infinite alternate;
  animation: updown 2s 400ms ease-in-out infinite alternate;
}

#d-apps2 g:nth-child(3) {
  -webkit-animation: updown 2s 600ms ease-in-out infinite alternate;
  animation: updown 2s 600ms ease-in-out infinite alternate;
}

#d-apps2wrapper g:nth-child(3) g > circle:nth-child(1) {
  -webkit-animation: updown 2s 50ms ease infinite alternate;
  animation: updown 2s 50ms ease infinite alternate;
}

#d-apps2wrapper g:nth-child(3) g > circle:nth-child(2) {
  -webkit-animation: updown 2s 100ms ease infinite alternate;
  animation: updown 2s 100ms ease infinite alternate;
}

#d-apps2wrapper g:nth-child(3) g > circle:nth-child(3) {
  -webkit-animation: updown 2s 150ms ease infinite alternate;
  animation: updown 2s 150ms ease infinite alternate;
}

#d-apps2wrapper g:nth-child(3) g > circle:nth-child(4) {
  -webkit-animation: updown 2s 200ms ease infinite alternate;
  animation: updown 2s 200ms ease infinite alternate;
}

#d-apps2wrapper g:nth-child(3) g > circle:nth-child(5) {
  -webkit-animation: updown 2s 250ms ease infinite alternate;
  animation: updown 2s 250ms ease infinite alternate;
}

#d-apps2wrapper g:nth-child(3) g > circle:nth-child(6) {
  -webkit-animation: updown 2s 300ms ease infinite alternate;
  animation: updown 2s 300ms ease infinite alternate;
}

#d-apps2wrapper g:nth-child(3) g > circle:nth-child(7) {
  -webkit-animation: updown 2s 350ms ease infinite alternate;
  animation: updown 2s 350ms ease infinite alternate;
}

#d-apps2wrapper g:nth-child(3) g > circle:nth-child(8) {
  -webkit-animation: updown 2s 400ms ease infinite alternate;
  animation: updown 2s 400ms ease infinite alternate;
}

#d-apps2wrapper g:nth-child(3) g > circle:nth-child(9) {
  -webkit-animation: updown 2s 450ms ease infinite alternate;
  animation: updown 2s 450ms ease infinite alternate;
}

#d-apps2wrapper g:nth-child(3) g > circle:nth-child(10) {
  -webkit-animation: updown 2s 500ms ease infinite alternate;
  animation: updown 2s 500ms ease infinite alternate;
}

#d-apps2wrapper g:nth-child(3) g > circle:nth-child(11) {
  -webkit-animation: updown 2s 550ms ease infinite alternate;
  animation: updown 2s 550ms ease infinite alternate;
}

#d-apps2wrapper g:nth-child(3) g > circle:nth-child(12) {
  -webkit-animation: updown 2s 600ms ease infinite alternate;
  animation: updown 2s 600ms ease infinite alternate;
}

#d-apps2wrapper g:nth-child(3) g > circle:nth-child(13) {
  -webkit-animation: updown 2s 650ms ease infinite alternate;
  animation: updown 2s 650ms ease infinite alternate;
}

#d-apps2wrapper g:nth-child(3) g > circle:nth-child(14) {
  -webkit-animation: updown 2s 700ms ease infinite alternate;
  animation: updown 2s 700ms ease infinite alternate;
}

#d-apps2wrapper g:nth-child(3) g > circle:nth-child(15) {
  -webkit-animation: updown 2s 750ms ease infinite alternate;
  animation: updown 2s 750ms ease infinite alternate;
}

#d-apps2wrapper g:nth-child(3) g > circle:nth-child(16) {
  -webkit-animation: updown 2s 800ms ease infinite alternate;
  animation: updown 2s 800ms ease infinite alternate;
}

#d-apps2wrapper g:nth-child(3) g > circle:nth-child(17) {
  -webkit-animation: updown 2s 850ms ease infinite alternate;
  animation: updown 2s 850ms ease infinite alternate;
}

#d-apps2wrapper g:nth-child(3) g > circle:nth-child(18) {
  -webkit-animation: updown 2s 900ms ease infinite alternate;
  animation: updown 2s 900ms ease infinite alternate;
}

#d-apps2wrapper g:nth-child(3) g > circle:nth-child(19) {
  -webkit-animation: updown 2s 950ms ease infinite alternate;
  animation: updown 2s 950ms ease infinite alternate;
}

#d-appswrapper g:nth-child(2) g > circle:nth-child(1) {
  -webkit-animation: updown 2s 50ms ease infinite alternate;
  animation: updown 2s 50ms ease infinite alternate;
}

#d-appswrapper g:nth-child(2) g > circle:nth-child(2) {
  -webkit-animation: updown 2s 100ms ease infinite alternate;
  animation: updown 2s 100ms ease infinite alternate;
}

#d-appswrapper g:nth-child(2) g > circle:nth-child(3) {
  -webkit-animation: updown 2s 150ms ease infinite alternate;
  animation: updown 2s 150ms ease infinite alternate;
}

#d-appswrapper g:nth-child(2) g > circle:nth-child(4) {
  -webkit-animation: updown 2s 200ms ease infinite alternate;
  animation: updown 2s 200ms ease infinite alternate;
}

#d-appswrapper g:nth-child(2) g > circle:nth-child(5) {
  -webkit-animation: updown 2s 250ms ease infinite alternate;
  animation: updown 2s 250ms ease infinite alternate;
}

#d-appswrapper g:nth-child(2) g > circle:nth-child(6) {
  -webkit-animation: updown 2s 300ms ease infinite alternate;
  animation: updown 2s 300ms ease infinite alternate;
}

#d-appswrapper g:nth-child(2) g > circle:nth-child(7) {
  -webkit-animation: updown 2s 350ms ease infinite alternate;
  animation: updown 2s 350ms ease infinite alternate;
}

#d-appswrapper g:nth-child(2) g > circle:nth-child(8) {
  -webkit-animation: updown 2s 400ms ease infinite alternate;
  animation: updown 2s 400ms ease infinite alternate;
}

#d-appswrapper g:nth-child(2) g > circle:nth-child(9) {
  -webkit-animation: updown 2s 450ms ease infinite alternate;
  animation: updown 2s 450ms ease infinite alternate;
}

#d-appswrapper g:nth-child(2) g > circle:nth-child(10) {
  -webkit-animation: updown 2s 500ms ease infinite alternate;
  animation: updown 2s 500ms ease infinite alternate;
}

#d-appswrapper g:nth-child(2) g > circle:nth-child(11) {
  -webkit-animation: updown 2s 550ms ease infinite alternate;
  animation: updown 2s 550ms ease infinite alternate;
}

#d-appswrapper g:nth-child(2) g > circle:nth-child(12) {
  -webkit-animation: updown 2s 600ms ease infinite alternate;
  animation: updown 2s 600ms ease infinite alternate;
}

#d-appswrapper g:nth-child(2) g > circle:nth-child(13) {
  -webkit-animation: updown 2s 650ms ease infinite alternate;
  animation: updown 2s 650ms ease infinite alternate;
}

#d-appswrapper g:nth-child(2) g > circle:nth-child(14) {
  -webkit-animation: updown 2s 700ms ease infinite alternate;
  animation: updown 2s 700ms ease infinite alternate;
}

#d-appswrapper g:nth-child(2) g > circle:nth-child(15) {
  -webkit-animation: updown 2s 750ms ease infinite alternate;
  animation: updown 2s 750ms ease infinite alternate;
}

#d-appswrapper g:nth-child(2) g > circle:nth-child(16) {
  -webkit-animation: updown 2s 800ms ease infinite alternate;
  animation: updown 2s 800ms ease infinite alternate;
}

#d-appswrapper g:nth-child(2) g > circle:nth-child(17) {
  -webkit-animation: updown 2s 850ms ease infinite alternate;
  animation: updown 2s 850ms ease infinite alternate;
}

#d-appswrapper g:nth-child(2) g > circle:nth-child(18) {
  -webkit-animation: updown 2s 900ms ease infinite alternate;
  animation: updown 2s 900ms ease infinite alternate;
}

#d-appswrapper g:nth-child(2) g > circle:nth-child(19) {
  -webkit-animation: updown 2s 950ms ease infinite alternate;
  animation: updown 2s 950ms ease infinite alternate;
}

@-webkit-keyframes updown {
  100% {
    transform: translate(0, -20px);
  }
}

@keyframes updown {
  100% {
    transform: translate(0, -20px);
  }
}

#Layer_1 > g:nth-child(2) > g:nth-child(18) > g:nth-child(12) {
  -webkit-animation:
    arrows 1s ease-in-out infinite alternate,
    p 2s ease infinite alternate;
  animation:
    arrows 1s ease-in-out infinite alternate,
    p 2s ease infinite alternate;
}

@-webkit-keyframes arrows {
  to {
    transform: translate(25px, 25px);
  }
}

@keyframes arrows {
  to {
    transform: translate(25px, 25px);
  }
}

#Layer_1 > g:nth-child(2) > g:nth-child(17) > g:nth-child(13) {
  -webkit-animation:
    arrows2 1s ease-in-out infinite alternate,
    p 2s ease infinite alternate;
  animation:
    arrows2 1s ease-in-out infinite alternate,
    p 2s ease infinite alternate;
}

@-webkit-keyframes arrows2 {
  to {
    transform: translate(-25px, -25px);
  }
}

@keyframes arrows2 {
  to {
    transform: translate(-25px, -25px);
  }
}

#Layer_1 > g:nth-child(2) > g:nth-child(17) > g:nth-child(12) {
  -webkit-animation:
    arrows 1s ease-in-out infinite alternate,
    p 2s ease infinite alternate;
  animation:
    arrows 1s ease-in-out infinite alternate,
    p 2s ease infinite alternate;
}

.mainComments {
  padding: 0 20px 20px 20px;
  font-family: Arial, sans-serif;
  margin-bottom: 40px;
}

.commentsHeader {
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.commentsHeader__left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.commentsHeader__left a {
  padding: 15px 0;
  color: #404040;
  border-bottom: 4px solid transparent;
}

.commentsHeader__left a:first-child {
  color: #cc0000;
  border-bottom: 4px solid #cc0000;
}

.commentsHeader__right {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
}

.commentsHeader__right img {
  width: 12px;
}

.comment {
  display: grid;
  grid-template-columns: 40px 1fr;
  grid-column-gap: 12px;
  margin-bottom: 24px;
}

.commentAvatar img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 12px;
}

.commentHeader {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.commentHeader__left {
  color: #808080;
  font-size: 12px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.commentAuthor {
  font-size: 14px;
  font-weight: 700;
  color: #404040;
}

.commentBody {
  border-bottom: 1px solid #e1e1e1;
  padding-bottom: 16px;
}

.commentBody p {
  font-size: 15px;
  color: #404040;
  line-height: 24px;
}

.like img {
  width: 17px;
  opacity: 0.5;
}

.commentFooter {
  font-size: 12px;
  color: #808080;
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 4px;
}

.commentFooter__divider {
  border-radius: 100%;
  display: inline-block;
  height: 4px;
  width: 4px;
  background: #cacaca;
}

.comment__reactions {
  display: flex;
  gap: 6px;
  background: #fff;
  border: 1px solid #e1e1e1;
  border-radius: 4px;
  padding: 2px 4px;
  width: max-content;
  font-size: 14px;
}

.comment__reactions img {
  width: 17px;
}

.comment.replied .commentBody {
  position: relative;
  border-bottom: none;
}

.comment.replied .commentBody::before {
  content: "";
  left: -33px;
  top: 42px;
  position: absolute;
  background: #d3d3d3;
  height: calc(100% - 32px);
  width: 2px;
}

.comment.reply {
  padding-left: 52px;
}

.comment.reply .commentAvatar img {
  width: 32px;
  height: 32px;
}

.comment.reply .commentAvatar {
  position: relative;
}

.comment.reply .commentAvatar::before {
  content: "";
  left: -33px;
  top: -16px;
  position: absolute;
  width: 26px;
  height: 32px;
  border-left: 2px solid #d3d3d3;
  border-bottom: 2px solid #d3d3d3;
  border-bottom-left-radius: 20px;
}

.button-link {
  background-color: #009;
  color: white !important;
  display: block;
  max-width: 100%;
  padding: 15px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  margin: 0 auto;
  margin-bottom: 1rem;
  margin-top: 1rem;
  border-radius: 5px;
  box-shadow: 1px 3px 1px 1px rgba(0, 0, 0, 0.25);
  box-shadow: 1px 4px 1px 1px rgba(0, 0, 0, 0.15);
  animation: heartbeat 3s ease-in-out 2s infinite both;
}

@keyframes heartbeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  10% {
    -webkit-transform: scale(0.91);
    transform: scale(0.91);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  17% {
    -webkit-transform: scale(0.98);
    transform: scale(0.98);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  33% {
    -webkit-transform: scale(0.87);
    transform: scale(0.87);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  45% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

.button-link:hover {
  color: #fff;
  background-color: #444;
}

.text::first-letter {
  all: unset !important;
}

.commentBody p::first-letter {
  all: unset !important;
}

@media screen and (max-width: 992px) {
  .totemBox ul {
    display: none;
  }
}

/*  popup  */

.popup-show body::after {
  opacity: 1;
}
.popup {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 30px 10px;
  transition: all 0.25s ease;
  visibility: hidden;
  pointer-events: none;
  backdrop-filter: blur(4px);
}
.popup_show {
  z-index: 150;
  visibility: visible;
  overflow: auto;
  pointer-events: auto;
}
.popup_show .popup__content {
  visibility: visible;
  -webkit-transform: scale(1);
  transform: scale(1);
}
.popup__wrapper {
  flex-direction: column;
  min-height: 100%;
  flex: 1 1 auto;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.popup__content {
  visibility: hidden;
  -webkit-transform: scale(0.95);
  transform: scale(0.95);
  opacity: 0;
  transition: all 0.25s ease;
  width: 100%;
  max-width: 440px;
  /* overflow: hidden; */
}
.popup_show .popup__content {
  visibility: visible;
  -webkit-transform: scale(1);
  transform: scale(1);
  opacity: 1;
  transition: all 0.25s ease;
}
.lock .popup__content {
  visibility: visible;
}

.popup-modal {
  position: relative;
  padding: 0;
}
.popup-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: rgb(50 50 50 / 8%);
  cursor: pointer;
  transition: background 0.2s ease;
}
.popup-modal__close::before,
.popup-modal__close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  background: #000;
  transform: translate(-50%, -50%) rotate(45deg);
}
.popup-modal__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.popup-modal__close:hover {
  background: rgb(28 28 28 / 15%);
}
.popup-modal__inner {
  padding: 32px 28px 28px;
}
.popup-modal__brand {
  text-align: center;
  margin-bottom: 24px;
}
.popup-modal__logo {
  max-width: 80px;
  height: auto;
  opacity: 0.95;
}
.popup-modal__body {
  text-align: center;
}
.popup-modal__title {
  font-family: Unbounded, sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.35;
  color: #000;
  margin: 0 0 6px;
  margin-top: 40px;
}
.popup-modal__lead {
  font-size: 0.9rem;
  color: #000;
  margin: 0 0 22px;
}
.popup-modal__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.popup-modal__field {
  margin: 0;
}
.popup-modal__input {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  font-family: Comfortaa, sans-serif;
  font-size: 1rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
  box-sizing: border-box;
}
.popup-modal__input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}
.popup-modal__input:hover {
  border-color: rgba(255, 255, 255, 0.25);
}
.popup-modal__input:focus {
  outline: none;
  border-color: #009dff;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(0, 157, 255, 0.2);
}
.popup-modal__field .iti input {
  padding-left: 52px;
}
.popup-modal__field .iti {
  width: 100%;
}
.popup-modal__btn {
  margin-top: 8px;
  width: 100%;
  height: 50px;
  font-family: Unbounded, sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  color: #fff;
  background: linear-gradient(180deg, #009dff 0%, #005e98 100%);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition:
    box-shadow 0.2s ease,
    transform 0.15s ease;
}
.popup-modal__btn:hover {
  box-shadow: 0 6px 20px rgba(0, 157, 255, 0.4);
}
.popup-modal__btn:active {
  transform: scale(0.98);
}
.input {
  border-radius: 3px;
  border: 1px solid #c9c9c9;
}
.close-form-start {
  position: absolute;
}

body.lock {
  overflow: hidden;
}

html {
  scroll-behavior: smooth;
  scroll-padding: 20vh;
}

#sm-img {
  max-width: 340px;
  width: 100%;
}