:root {
  --main-registro-bg: rgb(232, 225, 231);
  --input-border-color: rgb(141, 113, 135);
  --checkbox-bg: #927088;
  --link-text: #927088;
}
@font-face {
  font-family: "Avenir";
  src: url("../fonts/AvenirLTStd-Black.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Avenirl";
  src: url("../fonts/AvenirLTStd-Book.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Avenir";
  src: url("../fonts/AvenirLTStd-Roman.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "PolySans";
  src: url("../fonts/polysans/polysanstrial-slimmono.otf") format("opentype");
  font-weight: 100;
  font-style: normal;
}
@font-face {
  font-family: "PolySans";
  src: url("../fonts/polysans/PolySans-Slim.ttf") format("opentype");
  font-weight: 200;
  font-style: normal;
}
@font-face {
  font-family: "PolySans";
  src: url("../fonts/polysans/PolySans-SlimItalic.ttf") format("opentype");
  font-weight: 200;
  font-style: italic;
}
@font-face {
  font-family: "PolySans";
  src: url("../fonts/polysans/PolySans-Neutral.ttf") format("opentype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "PolySans";
  src: url("../fonts/polysans/PolySans-NeutralItalic.ttf") format("opentype");
  font-weight: 300;
  font-style: italic;
}
@font-face {
  font-family: "PolySans";
  src: url("../fonts/polysans/PolySans-Median.ttf") format("opentype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "PolySans";
  src: url("../fonts/polysans/PolySans-MedianItalic.ttf") format("opentype");
  font-weight: 400;
  font-style: italic;
}

@font-face {
  font-family: "PolySans";
  src: url("../fonts/polysans/PolySans-Bulky.ttf") format("opentype");

  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "PolySans";
  src: url("../fonts/polysans/PolySans-BulkyItalic.ttf") format("opentype");

  font-weight: 500;
  font-style: italic;
}
* {
  font-family: PolySans;
}
.hide {
  display: none !important;
}

.rg-title-text {
  font-weight: 400;
  font-size: 35px;
  line-height: 100%;
  letter-spacing: -4%;
  vertical-align: middle;
}
.rg-title-text.login {
  font-weight: 300;
}
.rg-subtitle-text {
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
}

.rg-instruction-txt {
  font-weight: 300;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: 0%;
  vertical-align: middle;
}
.rg-third-text {
  font-weight: 300;
  font-size: 12px;
  letter-spacing: -4%;
}
.rg-bold-text {
  color: #927088;
}
.input-ej-text {
  font-size: 12px;
  color: #888888;
  font-weight: 200;
}
.registro-form,
.login-data-form {
  /* background-color: var(--main-registro-bg); */
  padding: 12px;
  height: 100vh;
  font-family: PolySans;
}
.red-text {
  color: red;
}
.warning-text {
  display: none;
  font-size: 12px;
  font-weight: 200;
  color: red;
}
.warning-text.visible {
  display: block;
}
.register-logo {
  width: 200px;
  object-fit: scale-down;
  margin-bottom: 5px;
}
.rg-button-container {
  display: flex;
  flex-direction: column;
  gap: 25px;
  width: 95%;
}
.rg-button-container.login-btn {
  font-weight: 200;
  font-size: 14px;
  align-items: self-start;
}
.rg-divisor {
  width: 100%;
  height: 2px;
  background-color: var(--main-registro-bg);
}
.rg-divisor-small {
  width: 100%;
  height: 1px;
  background-color: var(--main-registro-bg);
}

#nextStep {
  background-color: var(--main-registro-bg);
  color: #bfa7ba;
  width: 250px;
  height: 50px;
  border-radius: 8px;
  align-self: flex-end;
  border: none;
  padding: 12px 24px;
  cursor: not-allowed;
  transition: background-color 0.3s ease, transform 0.2s ease;
  max-width: 60%;
}
#IniciaSesion {
  background-color: var(--main-registro-bg);
  color: #bfa7ba;
  width: 250px;
  height: 50px;
  border-radius: 8px;
  border: none;
  padding: 12px 24px;
  cursor: not-allowed;
  transition: background-color 0.3s ease, transform 0.2s ease;
  align-self: flex-start;
  max-width: 75%;
}

#nextStep.btn-active,
#IniciaSesion.btn-active {
  background-color: var(--main-button-color, #7f5d7a); /* o el color que uses */
  cursor: pointer;
  transform: scale(1.02);
  color: #fff;
}
#register-progress-bar {
  width: 100%;
  height: 15px;
  appearance: none;
  -webkit-appearance: none;
  border: none;
  border-radius: 15px;
  color: #a4849c;
}
#register-progress-bar::-webkit-progress-bar {
  background-color: var(--main-registro-bg);
  border-radius: 15px;
}
#register-progress-bar::-webkit-progress-value {
  background-color: #a4849c; /* tu color rosa */
  border-radius: 15px;
  transition: width 0.4s ease;
}
#register-progress-bar::-moz-progress-bar {
  background-color: #a4849c;
  border-radius: 15px;
  transition: width 0.4s ease;
}
.registro-form-container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row-reverse;
}

.rg-form-content {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.rg-form {
  width: 100%;
  padding: 50px 15%;
  align-self: center;
  overflow-y: auto;
  gap: 5px;
  height: 100%;
}
.login-footer {
  padding: 0 15%;
  width: 100%;
}

.rg-form.code-form {
  justify-content: start;
  height: 100%;
  align-items: center;
  padding: 50px 0;
  width: 380px;
  min-width: 380px;
  max-width: 95%;
  text-align: center;
  font-weight: 300;
}

.rg-video-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 18px;
  background-color: rgb(235, 229, 235);

  display: flex;
  align-items: center; /* centra verticalmente */
  justify-content: center; /* centra horizontalmente */
}

.rg-video-container video {
  width: 100%;
  height: auto;
  max-height: 100%; /* evita que se salga del contenedor */
  object-fit: scale-down;
  border-radius: 10px;
}

form a,
.link-tag {
  color: var(--link-text);
  text-decoration: underline;
  cursor: pointer;
}

.gray-text {
  color: #b0b0b0;
}
.center-text {
  text-align: center;
}

.rg-inputs-container {
  width: 90%;
  display: flex;
  gap: 24px;
  flex-direction: column;
  margin: 24px 0;
}
.rg-code-inputs-container {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  width: 200px;
  height: 35px;
  gap: 5px;
  margin: 20px auto 0;
}
.rg-code-inputs-container input {
  width: 100%;
  height: 100%;
  border: 1px solid #d1d1d1;
  border-radius: 5px;
  font-size: 1.5em;
  text-align: center;
  font-weight: 100;
}
.invalid-code {
  font-size: 14px;
  margin-bottom: 20px;
  color: #ff0000;
}

.rg-multiple-inputs {
  width: 100%;
  display: flex;
  gap: 12px;
  justify-content: space-between;
}

.rg-input-group img {
  position: absolute;
  right: 6px;
  top: 11px;
  height: 21px;
  object-fit: fill;
  cursor: pointer;
}
.rg-input-group {
  position: relative;
  width: 100%;
}
.rg-input-group input {
  width: 100%;
  border: 1.5px solid var(--input-border-color);
  border-radius: 8px;
  padding: 12px 30px 12px 12px;
  font-size: 12px;
  background: transparent;
  outline: none;
  transition: border-color 0.5s ease;
}
.rg-input-group input:hover {
  border-color: var(--input-border-color);
}
.rg-input-group label {
  position: absolute;
  left: 12px;
  top: 16px;
  font-size: 16px;
  color: var(--input-border-color);
  pointer-events: none;
  background: #fff;
  padding: 0 4px;
  opacity: 0;
  transform-origin: left top;
  transition: all 0.5s ease;
}
.rg-input-group input:focus + label,
.rg-input-group input:not(:placeholder-shown) + label {
  top: -8px;
  font-size: 13px;
  opacity: 1;
  transform: translateY(-4px);
}
.rg-input-group input::placeholder {
  color: var(--input-border-color);
  opacity: 0.6;
  transition: color 0.3s ease;
}
.rg-input-group input:focus::placeholder,
.rg-input-group input:not(:placeholder-shown)::placeholder {
  color: transparent !important;
}

.pass-instructions {
  display: flex;
  flex-direction: column;
}
.pass-instructions span.valid {
  color: #4caf50; /* verde */
}

.cross-icon {
  width: 1.8em;
  height: 1.8em;
  color: #888888;
  vertical-align: middle;
  transition: color 0.3s ease;
}

.politics-text-container {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 12px;
}

.politics-text-container input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  height: 65%;
  max-height: 25px;
  min-height: 20px;
  aspect-ratio: 1/1;
  border: 2px solid var(--input-border-color);
  border-radius: 4px;
  position: relative;
  cursor: pointer;
  transition: border-color 0.3s ease;
}
.politics-text-container input[type="checkbox"]::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--checkbox-bg);
  transform: scale(0);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.politics-text-container input[type="checkbox"]:checked::before {
  transform: scale(1);
  opacity: 1;
}
.politics-text-container input[type="checkbox"]::after {
  content: "";
  position: absolute;
  width: 35%; /* proporción respecto al tamaño del checkbox */
  height: 60%;
  border-right: 2px solid white;
  border-bottom: 2px solid white;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%) scale(0) rotate(45deg);
  opacity: 0;
  transition: transform 0.3s ease 0.15s, opacity 0.2s ease 0.15s;
}
.politics-text-container input[type="checkbox"]:checked::after {
  transform: translate(-50%, -60%) scale(1) rotate(45deg);
  opacity: 1;
}
.politics-text-container label {
  margin: 0;
  cursor: pointer;
  font-size: 14px;
  font-weight: 300;
}

.rg-form,
.rg-video-container > div {
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: all 0.4s ease;
  display: none;
}

.rg-form.active,
.rg-video-container > div.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  display: flex;
  flex-direction: column;
  gap: 5px;
}

/* Oculta suavemente todo el contenedor de video cuando no aplica */
.rg-video-container.hide {
  opacity: 0;
  transform: scale(0.95);
  transition: all 0.4s ease;
  pointer-events: none;
}

.rg-video-container > div {
  display: none;
}

.rg-video-container > div.active {
  display: block;
}
.phone-fieldset {
  position: relative; /* para posicionar legend encima */
  border: 1.5px solid var(--input-border-color);
  border-radius: 8px;
  padding: 0 0px 0 12px; /* espacio extra arriba para el legend */
  width: 100%;
  margin: 0;
  background: transparent;
  transition: border-color 0.2s ease, transform 0.2s ease;
  outline: none;
}

/* estilo del legend colocado encima del borde (no ocupa flujo) */
.phone-fieldset > legend {
  position: absolute;
  top: -10px;
  left: 12px;
  padding: 0 6px;
  font-size: 12px;
  color: var(--input-border-color);
  background: white;
  line-height: 1;
  pointer-events: none;
  width: auto;
}

/* wrapper flex para colocar select + input en la misma fila */
.phone-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* select estilizado para parecer parte del input */
.country-code {
  appearance: none;
  -webkit-appearance: none;
  border: none;
  background: transparent;
  font-size: 12px;
  font-weight: 400;
  padding: 0;
  cursor: pointer;
  flex: 0 0 auto; /* no crecer, no encoger */
  white-space: nowrap;
}
.select-input {
  appearance: none;
  -webkit-appearance: none;
  border: none;
  background: transparent;
  font-size: 12px;
  font-weight: 400;
  padding: 12px;
  width: 100%;
  height: 100%;
  cursor: pointer;
  flex: 0 0 auto; /* no crecer, no encoger */
  white-space: nowrap;
  color: var(--link-text);
}

/* input de teléfono: ocupa el resto */
.phone-wrapper input[type="tel"] {
  border: none;
  outline: none;
  background: transparent;
  border-radius: 8px;
  font-size: 12px;
  outline: none;
  padding: 12px;
  min-width: 0; /* important para que el flexbox lo haga encoger */
}

/* focus: resaltar border cuando se enfoque select o input */
.phone-fieldset:focus-within {
  border-color: var(--checkbox-bg);
}

/* pequeños ajustes para que las reglas globales no rompan */
.phone-fieldset .rg-input-group input,
.phone-fieldset .rg-input-group select {
  width: auto; /* evita herencia width:100% */
}

/* Oculta el legend por defecto */
.phone-fieldset > legend {
  opacity: 0;
  transform: translateY(6px);
  transition: all 0.3s ease;
}

/* Muestra el legend cuando el input o select tiene foco o texto */
.phone-fieldset:focus-within > legend,
.phone-fieldset input:not(:placeholder-shown) ~ legend,
.phone-fieldset.has-value legend {
  opacity: 1;
  transform: translateY(0);
}

.rg-legal-text {
  background-color: #f5f5f5;
  padding: 22px;
  border-radius: 15px;
}

/* dudas*/
.questions-section {
  line-height: 140%;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.question-container {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.question-container > div {
  display: flex;
  width: 100%;
  justify-content: space-between;
}
.arrow-icon {
  width: 25px;
  height: 25px;
  align-self: center;
  cursor: pointer;
}
.question-txt-f {
  font-weight: 300;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: -4%;
}

/* --- Animación de despliegue --- */
.explication-container {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.3s ease;
  background-color: #f0f0f0;
  border-radius: 8px;
  padding: 0 8px; /* empieza colapsado */
}

/* Cuando está activa, se muestra el texto */
.question-container.active .explication-container {
  max-height: none !important; /* suficiente para el texto promedio */
  opacity: 1;
  padding: 8px; /* recupera su padding original */
}

/* Rotación cuando se abre */
.question-container.active .arrow-icon {
  transform: rotate(90deg);
}

/*------------------------Select input------------------------*/

.rg-input-group.select-input {
  position: relative; /* para posicionar legend encima */
  height: auto;
  width: auto;
  padding: 0;
}
.select-input select {
  width: 100%;
  padding: 9px 12px;
  border: 1.5px solid var(--input-border-color);
  border-radius: 8px;
  font-size: 14px;
  background-color: #fff;
  color: rgb(193 176 190);
  font-size: 12px;
  appearance: none; /* quita la flecha nativa */
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg fill="black" height="24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  cursor: pointer;
}

.select-input select:focus {
  border-color: var(--input-border-color);
  outline: none;
}

.rg-input-group.select-input legend {
  position: absolute;
  top: -10px;
  left: 12px;
  padding: 0 6px;
  font-size: 12px;
  color: var(--input-border-color);
  background: white;
  line-height: 1;
  pointer-events: none;
  width: auto;
}

.select-input select option {
  background-color: #fff;
  color: #333;
  font-size: 14px;
  padding: 12px;
  border: none;
}

/* Efecto hover (solo algunos navegadores lo aplican) */
.select-input select option:hover {
  background-color: #f2f2f2;
}

/*Accionista Mayoritario*/

.am-type-selection {
  display: flex;
  position: relative;
  justify-content: space-between;
  width: 100%;
  border-bottom: 2px solid rgb(232, 225, 231); /* línea base */
  cursor: pointer;
  font-weight: 400;
  font-size: 14px;
  text-align: center;
  margin-bottom: 15px;
}

.am-type-selection span {
  flex: 1;
  padding: 12px 0;
  color: rgb(232, 225, 231);
  transition: color 0.3s ease;
  cursor: pointer;
}

.am-type-selection span.active {
  color: rgb(141, 113, 135);
}

.am-type-selection .underline {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 50%;
  height: 2px;
  background-color: rgb(141, 113, 135);
  transition: left 0.3s ease, background-color 0.3s ease;
}

/* Ocultar por defecto el contenedor de Persona Moral */

.pf-container.active,
.pm-container.active {
  display: block;
  opacity: 1;
  transform: translateX(0);
}

/* Selector visual */
.am-type-selection {
  display: flex;
  position: relative;
  justify-content: space-between;
  width: 100%;
  border-bottom: 2px solid rgb(232, 225, 231);
  cursor: pointer;
  font-weight: 400;
  font-size: 14px;
  text-align: center;
}

.am-type-selection span {
  flex: 1;
  padding: 12px 0;
  color: rgb(232, 225, 231);
  transition: color 0.3s ease;
}

.am-type-selection span.active {
  color: rgb(141, 113, 135);
}

.am-type-selection .underline {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 50%;
  height: 2px;
  background-color: rgb(141, 113, 135);
  transition: left 0.3s ease, background-color 0.3s ease;
}

.pf-container,
.pm-container {
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.pf-container[style*="display: block"],
.pm-container[style*="display: block"] {
  opacity: 1;
  transform: translateX(0);
}

/*------------------------------–---------------Switch---------------–------------------------------–*/
.checkbox-switch .tgl {
  display: none;
}
.checkbox-switch .tgl + .tgl-btn {
  outline: 0;
  display: block;
  width: 3em;
  height: 1.5em;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.checkbox-switch .tgl + .tgl-btn:after,
.checkbox-switch .tgl + .tgl-btn:before {
  position: relative;
  display: block;
  content: "";
  height: 100%;
  aspect-ratio: 1 / 1;
}
.checkbox-switch .tgl + .tgl-btn:after {
  left: 0;
}
.checkbox-switch .tgl + .tgl-btn:before {
  display: none;
}
.checkbox-switch .tgl:checked + .tgl-btn:after {
  left: 50%;
}

.checkbox-switch .tgl + .tgl-btn {
  background: #e7e7e7;
  border-radius: 2em;
  padding: 2px;
  transition: all 0.4s ease;
}
.checkbox-switch .tgl + .tgl-btn:after {
  border-radius: 50%;
  background: #b0b0b0;
  transition: all 0.2s ease;
}
.checkbox-switch .tgl:checked + .tgl-btn {
  background: #e9e1e8;
}

.checkbox-switch .tgl:checked + .tgl-btn:after {
  background: #a4849c;
}

.switch-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.rg-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  color: #4b3b47;
  font-weight: 500;
  transition: opacity 0.2s ease;
  padding: 0 15%;
}

.rg-back-btn:hover {
  opacity: 0.8;
}

.rg-legal-text:has(input[type="checkbox"]:checked) {
  background-color: #e9e1e8; /* cambia por el color que desees */
  transition: background-color 0.3s ease;
}

@media screen and (max-width: 850px) {
  .rg-form {
    padding: 50px 5%;
  }
  .login-footer {
    padding: 0 5%;
  }
}

@media screen and (max-width: 700px) {
  .rg-video-container {
    display: none !important;
  }
}

.logos-footer {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 2fr;
  align-items: center;
  height: 50px;
}

.modal-loading-overlay {
  display: flex;
  position: absolute;
  background: #32252d;
  color: #fff;
  width: 100vw;
  height: 100vh;
  z-index: 1;
  top: 0;
}

.modal-loading-overlay > img {
  width: 200px;
  position: absolute;
  top: 10px;
  left: 10px;
}
.modal-loading-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  font-weight: 300;
  width: 100%;
}
.modal-loading-content > img {
  max-width: 550px;
}

.modal-loading-content > span:nth-child(1) {
  color: #a4849c;
  font-size: 2em;
}
.modal-loading-content > span:nth-child(2) {
  font-size: 2.3em;
}
.modal-loading-content > div span:nth-child(2) {
  font-size: 12px;
}
.modal-loading-content > div {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.loader {
  font-size: 4px;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  position: relative;
  text-indent: -9999em;
  animation: mulShdSpin 1.1s infinite ease;
  transform: translateZ(0);
}
@keyframes mulShdSpin {
  0%,
  100% {
    box-shadow: 0em -2.6em 0em 0em #ffffff,
      1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2),
      2.5em 0em 0 0em rgba(255, 255, 255, 0.2),
      1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2),
      0em 2.5em 0 0em rgba(255, 255, 255, 0.2),
      -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2),
      -2.6em 0em 0 0em rgba(255, 255, 255, 0.5),
      -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.7);
  }
  12.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.7),
      1.8em -1.8em 0 0em #ffffff, 2.5em 0em 0 0em rgba(255, 255, 255, 0.2),
      1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2),
      0em 2.5em 0 0em rgba(255, 255, 255, 0.2),
      -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2),
      -2.6em 0em 0 0em rgba(255, 255, 255, 0.2),
      -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.5);
  }
  25% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.5),
      1.8em -1.8em 0 0em rgba(255, 255, 255, 0.7), 2.5em 0em 0 0em #ffffff,
      1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2),
      0em 2.5em 0 0em rgba(255, 255, 255, 0.2),
      -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2),
      -2.6em 0em 0 0em rgba(255, 255, 255, 0.2),
      -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  37.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2),
      1.8em -1.8em 0 0em rgba(255, 255, 255, 0.5),
      2.5em 0em 0 0em rgba(255, 255, 255, 0.7), 1.75em 1.75em 0 0em #ffffff,
      0em 2.5em 0 0em rgba(255, 255, 255, 0.2),
      -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2),
      -2.6em 0em 0 0em rgba(255, 255, 255, 0.2),
      -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  50% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2),
      1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2),
      2.5em 0em 0 0em rgba(255, 255, 255, 0.5),
      1.75em 1.75em 0 0em rgba(255, 255, 255, 0.7), 0em 2.5em 0 0em #ffffff,
      -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2),
      -2.6em 0em 0 0em rgba(255, 255, 255, 0.2),
      -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  62.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2),
      1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2),
      2.5em 0em 0 0em rgba(255, 255, 255, 0.2),
      1.75em 1.75em 0 0em rgba(255, 255, 255, 0.5),
      0em 2.5em 0 0em rgba(255, 255, 255, 0.7), -1.8em 1.8em 0 0em #ffffff,
      -2.6em 0em 0 0em rgba(255, 255, 255, 0.2),
      -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  75% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2),
      1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2),
      2.5em 0em 0 0em rgba(255, 255, 255, 0.2),
      1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2),
      0em 2.5em 0 0em rgba(255, 255, 255, 0.5),
      -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.7), -2.6em 0em 0 0em #ffffff,
      -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  87.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2),
      1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2),
      2.5em 0em 0 0em rgba(255, 255, 255, 0.2),
      1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2),
      0em 2.5em 0 0em rgba(255, 255, 255, 0.2),
      -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.5),
      -2.6em 0em 0 0em rgba(255, 255, 255, 0.7), -1.8em -1.8em 0 0em #ffffff;
  }
}
