.number:nth-child(1) {
  transform: rotateZ(9.72972973deg);
}
.number:nth-child(2) {
  transform: rotateZ(19.45945946deg);
}
.number:nth-child(3) {
  transform: rotateZ(29.18918919deg);
}
.number:nth-child(4) {
  transform: rotateZ(38.91891892deg);
}
.number:nth-child(5) {
  transform: rotateZ(48.64864865deg);
}
.number:nth-child(6) {
  transform: rotateZ(58.37837838deg);
}
.number:nth-child(7) {
  transform: rotateZ(68.10810811deg);
}
.number:nth-child(8) {
  transform: rotateZ(77.83783784deg);
}
.number:nth-child(9) {
  transform: rotateZ(87.56756757deg);
}
.number:nth-child(10) {
  transform: rotateZ(97.2972973deg);
}
.number:nth-child(11) {
  transform: rotateZ(107.02702703deg);
}
.number:nth-child(12) {
  transform: rotateZ(116.75675676deg);
}
.number:nth-child(13) {
  transform: rotateZ(126.48648649deg);
}
.number:nth-child(14) {
  transform: rotateZ(136.21621622deg);
}
.number:nth-child(15) {
  transform: rotateZ(145.94594595deg);
}
.number:nth-child(16) {
  transform: rotateZ(155.67567568deg);
}
.number:nth-child(17) {
  transform: rotateZ(165.40540541deg);
}
.number:nth-child(18) {
  transform: rotateZ(175.13513514deg);
}
.number:nth-child(19) {
  transform: rotateZ(184.86486486deg);
}
.number:nth-child(20) {
  transform: rotateZ(194.59459459deg);
}
.number:nth-child(21) {
  transform: rotateZ(204.32432432deg);
}
.number:nth-child(22) {
  transform: rotateZ(214.05405405deg);
}
.number:nth-child(23) {
  transform: rotateZ(223.78378378deg);
}
.number:nth-child(24) {
  transform: rotateZ(233.51351351deg);
}
.number:nth-child(25) {
  transform: rotateZ(243.24324324deg);
}
.number:nth-child(26) {
  transform: rotateZ(252.97297297deg);
}
.number:nth-child(27) {
  transform: rotateZ(262.7027027deg);
}
.number:nth-child(28) {
  transform: rotateZ(272.43243243deg);
}
.number:nth-child(29) {
  transform: rotateZ(282.16216216deg);
}
.number:nth-child(30) {
  transform: rotateZ(291.89189189deg);
}
.number:nth-child(31) {
  transform: rotateZ(301.62162162deg);
}
.number:nth-child(32) {
  transform: rotateZ(311.35135135deg);
}
.number:nth-child(33) {
  transform: rotateZ(321.08108108deg);
}
.number:nth-child(34) {
  transform: rotateZ(330.81081081deg);
}
.number:nth-child(35) {
  transform: rotateZ(340.54054054deg);
}
.number:nth-child(36) {
  transform: rotateZ(350.27027027deg);
}
body {
  font-family: 'Roboto', sans-serif;
  background: radial-gradient(hsl(0, 100%, 27%) 4%, hsl(0, 100%, 18%) 9%, hsla(0, 100%, 20%, 0) 9%) 0 0, radial-gradient(hsl(0, 100%, 27%) 4%, hsl(0, 100%, 18%) 8%, hsla(0, 100%, 20%, 0) 10%) 50px 50px, radial-gradient(hsla(0, 100%, 30%, 0.8) 20%, hsla(0, 100%, 20%, 0)) 50px 0, radial-gradient(hsla(0, 100%, 30%, 0.8) 20%, hsla(0, 100%, 20%, 0)) 0 50px, radial-gradient(hsl(0, 100%, 20%) 35%, hsla(0, 100%, 20%, 0) 60%) 50px 0, radial-gradient(hsl(0, 100%, 20%) 35%, hsla(0, 100%, 20%, 0) 60%) 100px 50px, radial-gradient(hsla(0, 100%, 15%, 0.7), hsla(0, 100%, 20%, 0)) 0 0, radial-gradient(hsla(0, 100%, 15%, 0.7), hsla(0, 100%, 20%, 0)) 50px 50px, linear-gradient(45deg, hsla(0, 100%, 20%, 0) 49%, hsl(0, 0%, 0%) 50%, hsla(0, 100%, 20%, 0) 70%) 0 0, linear-gradient(-45deg, hsla(0, 100%, 20%, 0) 49%, hsl(0, 0%, 0%) 50%, hsla(0, 100%, 20%, 0) 70%) 0 0;
  background-color: #300;
  background-size: 100px 100px;
}
.main {
  width: 374px;
  margin: 0 auto;
}
.plate {
  background-color: gray;
  width: 350px;
  height: 350px;
  margin: 12px;
  border-radius: 50%;
  position: relative;
  -webkit-animation: rotate 24s infinite linear;
          animation: rotate 24s infinite linear;
}
.plate:after,
.plate:before {
  content: '';
  display: block;
  position: absolute;
  border-radius: 50%;
}
.plate:after {
  top: -6px;
  right: -6px;
  bottom: -6px;
  left: -6px;
  border: 6px solid gold;
  box-shadow: inset 0px 0px 0px 2px #b39700, 0px 0px 0px 2px #ffeb80;
}
.plate:before {
  background: rgba(0, 0, 0, 0.65);
  border: 1px solid silver;
  box-shadow: inset 0px 0px 0px 2px #808080;
  top: 12%;
  left: 12%;
  right: 12%;
  bottom: 12%;
  z-index: 1;
}
.number {
  width: 32px;
  height: 175px;
  display: inline-block;
  text-align: center;
  position: absolute;
  top: 0;
  left: calc(50% - (32px/2));
  transform-origin: 50% 100%;
  background-color: transparent;
  border-left: 16px solid transparent;
  border-right: 16px solid transparent;
  border-top: 175px solid black;
  box-sizing: border-box;
}
.number:nth-child(odd) {
  border-top-color: red;
}
.number:nth-child(37) {
  border-top-color: green;
}
.pit {
  color: #fff;
  padding-top: 12px;
  width: 32px;
  display: inline-block;
  font-size: 12px;
  transform: scale(1, 1.8);
  position: absolute;
  top: -175px;
  left: -16px;
}
.inner {
  display: block;
  height: 350px;
  width: 300px;
  position: relative;
}
.inner:after,
.inner:before {
  content: '';
  display: block;
  position: absolute;
  border-radius: 50%;
}
.inner:after {
  z-index: 3;
  top: 24%;
  right: 24%;
  bottom: 24%;
  left: 24%;
  border-radius: 50%;
  background-color: #4d4d4d;
  border: 2px solid #808080;
}
.inner:before {
  top: 24%;
  bottom: 21%;
  left: 24%;
  right: 22%;
  content: '';
  color: #fff;
  font-size: 60px;
  z-index: 5;
  border-radius: 0;
}
.inner[data-spinto='1']:before {
  transform: rotateZ(-2602deg);
  transition: transform 9s ease-out;
  content: '\2022';
}
.inner[data-spinto='2']:before {
  transform: rotateZ(-2774deg);
  transition: transform 9s ease-out;
  content: '\2022';
}
.inner[data-spinto='3']:before {
  transform: rotateZ(-2850deg);
  transition: transform 9s ease-out;
  content: '\2022';
}
.inner[data-spinto='4']:before {
  transform: rotateZ(-2793deg);
  transition: transform 9s ease-out;
  content: '\2022';
}
.inner[data-spinto='5']:before {
  transform: rotateZ(-2642deg);
  transition: transform 9s ease-out;
  content: '\2022';
}
.inner[data-spinto='6']:before {
  transform: rotateZ(-2734deg);
  transition: transform 9s ease-out;
  content: '\2022';
}
.inner[data-spinto='7']:before {
  transform: rotateZ(-2526deg);
  transition: transform 9s ease-out;
  content: '\2022';
}
.inner[data-spinto='8']:before {
  transform: rotateZ(-2673deg);
  transition: transform 9s ease-out;
  content: '\2022';
}
.inner[data-spinto='9']:before {
  transform: rotateZ(-2564deg);
  transition: transform 9s ease-out;
  content: '\2022';
}
.inner[data-spinto='10']:before {
  transform: rotateZ(-2652deg);
  transition: transform 9s ease-out;
  content: '\2022';
}
.inner[data-spinto='11']:before {
  transform: rotateZ(-2693deg);
  transition: transform 9s ease-out;
  content: '\2022';
}
.inner[data-spinto='12']:before {
  transform: rotateZ(-2868deg);
  transition: transform 9s ease-out;
  content: '\2022';
}
.inner[data-spinto='13']:before {
  transform: rotateZ(-2714deg);
  transition: transform 9s ease-out;
  content: '\2022';
}
.inner[data-spinto='14']:before {
  transform: rotateZ(-2582deg);
  transition: transform 9s ease-out;
  content: '\2022';
}
.inner[data-spinto='15']:before {
  transform: rotateZ(-2813deg);
  transition: transform 9s ease-out;
  content: '\2022';
}
.inner[data-spinto='16']:before {
  transform: rotateZ(-2622deg);
  transition: transform 9s ease-out;
  content: '\2022';
}
.inner[data-spinto='17']:before {
  transform: rotateZ(-2755deg);
  transition: transform 9s ease-out;
  content: '\2022';
}
.inner[data-spinto='18']:before {
  transform: rotateZ(-2545deg);
  transition: transform 9s ease-out;
  content: '\2022';
}
.inner[data-spinto='19']:before {
  transform: rotateZ(-2803deg);
  transition: transform 9s ease-out;
  content: '\2022';
}
.inner[data-spinto='20']:before {
  transform: rotateZ(-2592deg);
  transition: transform 9s ease-out;
  content: '\2022';
}
.inner[data-spinto='21']:before {
  transform: rotateZ(-2784deg);
  transition: transform 9s ease-out;
  content: '\2022';
}
.inner[data-spinto='22']:before {
  transform: rotateZ(-2554deg);
  transition: transform 9s ease-out;
  content: '\2022';
}
.inner[data-spinto='23']:before {
  transform: rotateZ(-2662deg);
  transition: transform 9s ease-out;
  content: '\2022';
}
.inner[data-spinto='24']:before {
  transform: rotateZ(-2632deg);
  transition: transform 9s ease-out;
  content: '\2022';
}
.inner[data-spinto='25']:before {
  transform: rotateZ(-2764deg);
  transition: transform 9s ease-out;
  content: '\2022';
}
.inner[data-spinto='26']:before {
  transform: rotateZ(-2840deg);
  transition: transform 9s ease-out;
  content: '\2022';
}
.inner[data-spinto='27']:before {
  transform: rotateZ(-2724deg);
  transition: transform 9s ease-out;
  content: '\2022';
}
.inner[data-spinto='28']:before {
  transform: rotateZ(-2877deg);
  transition: transform 9s ease-out;
  content: '\2022';
}
.inner[data-spinto='29']:before {
  transform: rotateZ(-2535deg);
  transition: transform 9s ease-out;
  content: '\2022';
}
.inner[data-spinto='30']:before {
  transform: rotateZ(-2684deg);
  transition: transform 9s ease-out;
  content: '\2022';
}
.inner[data-spinto='31']:before {
  transform: rotateZ(-2573deg);
  transition: transform 9s ease-out;
  content: '\2022';
}
.inner[data-spinto='32']:before {
  transform: rotateZ(-2822deg);
  transition: transform 9s ease-out;
  content: '\2022';
}
.inner[data-spinto='33']:before {
  transform: rotateZ(-2612deg);
  transition: transform 9s ease-out;
  content: '\2022';
}
.inner[data-spinto='34']:before {
  transform: rotateZ(-2745deg);
  transition: transform 9s ease-out;
  content: '\2022';
}
.inner[data-spinto='35']:before {
  transform: rotateZ(-2499deg);
  transition: transform 9s ease-out;
  content: '\2022';
}
.inner[data-spinto='36']:before {
  transform: rotateZ(-2703deg);
  transition: transform 9s ease-out;
  content: '\2022';
}
.inner[data-spinto='0']:before {
  transform: rotateZ(-2831deg);
  transition: transform 9s ease-out;
  content: '\2022';
}
.inner.rest:before {
  transition: top 0.5s ease-in, right 0.5s ease-in, bottom 0.5s ease-in, left 0.5s ease-in;
  top: 25%;
  right: 25%;
  bottom: 24%;
  left: 25%;
}
.btn {
  background: green;
  border: 1px solid #000000;
  border-top-color: #00b300;
  border-left-color: #00b300;
  padding: 0;
  margin: 0;
  display: inline-block;
  font-size: 15px;
  width: 120px;
  padding: 12px;
  margin: 12px;
  cursor: pointer;
  color: #fff;
  font-family: 'Roboto', sans-serif;
  border-radius: 3px;
}
.btn .btn-label {
  padding: 2px;
  white-space: nowrap;
}
.btn.btn-reset {
  background: darkgreen;
  border: 1px solid #000000;
  border-top-color: #009700;
  border-left-color: #009700;
}
.btn.disabled {
  opacity: 0.2;
  transition: opacity 0.24s linear;
  cursor: not-allowed;
}

.btnApostar {
  background: green;
  border: 1px solid #000000;
  border-top-color: #00b300;
  border-left-color: #00b300;
  padding: 0;
  margin: 0;
  display: inline-block;
  font-size: 15px;
  width: 80px;
  padding: 12px;
  margin: 12px;
  cursor: pointer;
  color: #fff;
  font-family: 'Roboto', sans-serif;
  border-radius: 3px;
}
.btnApostar .btnApostar-label {
  padding: 2px;
  white-space: nowrap;
}
.btnApostar.btnApostar-reset {
  background: darkgreen;
  border: 1px solid #000000;
  border-top-color: #009700;
  border-left-color: #009700;
}
.btnApostar.disabled {
  opacity: 0.2;
  transition: opacity 0.24s linear;
  cursor: not-allowed;
}





@-webkit-keyframes rotate {
  0% {
    transform: rotateZ(0deg);
  }
  100% {
    transform: rotateZ(360deg);
  }
}
@keyframes rotate {
  0% {
    transform: rotateZ(0deg);
  }
  100% {
    transform: rotateZ(360deg);
  }
}
.data {
  display: block;
  position: absolute;
  top: 30%;
  right: 30%;
  bottom: 30%;
  left: 30%;
  border-radius: 50%;
  animation: rotate 24s reverse linear infinite;
  perspective: 2000px;
  z-index: 100;
}
.data .data-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.72s;
  transform-style: preserve-3d;
}
.data.reveal .data-inner {
  transform: rotateY(180deg);
}
.data .mask,
.data .result {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  position: absolute;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  border-radius: 50%;
  overflow: hidden;
  display: inline-block;
}
.data .mask {
  color: #fff;
  font-size: 24px;
  margin: auto;
  line-height: 1.4;
  padding-top: 36px;
}
.data .result {
  background-color: green;
  color: white;
  transform: rotateY(180deg);
  align-items: center;
  color: #fff;
}
.data .result-number {
  font-size: 72px;
  font-weight: 500;
  line-height: 1.2;
  margin-top: 12px;
}
.data .result-color {
  text-transform: uppercase;
  font-size: 21px;
  line-height: 1;
}
.previous-results {
  max-width: 350px;
  max-height: 300px;
  margin: 24px 12px;
  overflow-y: scroll;
  
}
.previous-list {
  perspective: 2000;
}
.previous-result {
  display: flex;
  margin: 1px;
  padding: 12px;
  color: #fff;
}
.previous-result:first-child {
  -webkit-animation: flipin 0.48s ease-out;
          animation: flipin 0.48s ease-out;
}
.previous-result .previous-number {
  flex: 1;
}
.color-green {
  background-color: green;
}
.color-black {
  background-color: black;
}
.color-red {
  background-color: red;
}
.visuallyhidden {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}
@-webkit-keyframes flipin {
  0% {
    transform: rotateX(90deg);
  }
  100% {
    transform: rotateX(0deg);
  }
}
@keyframes flipin {
  0% {
    transform: rotateX(90deg);
  }
  100% {
    transform: rotateX(0deg);
  }
}

input[type=text]{
  width:60%;
  border:2px solid #aaa;
  border-radius:4px;
  margin:8px 0;
  outline:none;
  padding:8px;
  box-sizing:border-box;
  transition:.3s;
  font-size: 20px;
}

input[type=text]:focus{
  border-color:rgb(55, 206, 0);
  box-shadow:0 0 15px 0 rgb(30, 255, 86);
}



.custom-btn {
  color: #fff;
  width: 180px;
  height: 40px;
  padding: 10px 25px;
  font-size: 20px;
  font-family: 'Lato', sans-serif;
  font-weight: 500;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
}



.btn-6 {

  background:rgb(36, 125, 4);
  line-height: 40px;
  padding: 0;
  border: none;
  box-shadow: 0 0 5px rgb(55, 206, 0);
  ;
}
.btn-6 span {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
.btn-6:hover{
  background: transparent;
}
.btn-6:before,
.btn-6:after {
  position: absolute;
  content: "";
  height: 0%;
  width: 2px;
  background: #8ce436;
 box-shadow: 0 0 5px #8ce436;
}
.btn-6:before {
  right: 0;
  top: 0;
  transition: all 500ms ease;
}
.btn-6:after {
  left: 0;
  bottom: 0;
  transition: all 500ms ease;
}
.btn-6:hover:before {
  transition: all 500ms ease;
  height: 100%;
}
.btn-6:hover:after {
  transition: all 500ms ease;
  height: 100%;
}
.btn-6 span:before,
.btn-6 span:after {
  position: absolute;
  content: "";
  background: #8ce436;
  box-shadow: 0 0 5px #8ce436;
}
.btn-6 span:before {
  left: 0;
  top: 0;
  width: 0%;
  height: 2px;
  transition: all 500ms ease;
}
.btn-6 span:after {
  right: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  transition: all 500ms ease;
}
.btn-6 span:hover:before {
  width: 100%;
}
.btn-6 span:hover:after {
  width: 100%;
}















/* debug */
/* Cannon */
.cannon {
  height: 70vh;
  width: 1px;
  position: relative;
  transform-origin: 50% 100%;
  -webkit-animation: cannon-explosion 2s cubic-bezier(0.18, 0.89, 0.32, 1.28) both;
          animation: cannon-explosion 2s cubic-bezier(0.18, 0.89, 0.32, 1.28) both;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  /* Paths */
  /* Confettis */
}
@-webkit-keyframes cannon-explosion {
  0% {
    transform: scale(0);
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@keyframes cannon-explosion {
  0% {
    transform: scale(0);
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.cannon__path {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  transform-origin: 50% 100%;
  padding-bottom: 30%;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: space-around;
  align-items: center;
}
.cannon__path--lg {
  height: 100%;
}
.cannon__path--md {
  height: 95%;
}
.cannon__path--sm {
  height: 90%;
}
.cannon__path--angle-2 {
  transform: rotate(-35deg);
}
.cannon__path--angle-1 {
  transform: rotate(-15deg);
}
.cannon__path--angle1 {
  transform: rotate(15deg);
}
.cannon__path--angle2 {
  transform: rotate(35deg);
}
.cannon__confetti {
  flex: 0 1 auto;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  /* Types */
  /* Colors */
}
.cannon__confetti:nth-child(even) {
  -webkit-animation-name: confetti-rotate-l;
          animation-name: confetti-rotate-l;
}
@-webkit-keyframes confetti-rotate-l {
  0% {
    transform: rotate(0) scaleY(1);
  }
  50% {
    transform: rotate(2turn) scaleY(1.5);
  }
  100% {
    transform: rotate(2.05turn) scaleY(1);
  }
}
@keyframes confetti-rotate-l {
  0% {
    transform: rotate(0) scaleY(1);
  }
  50% {
    transform: rotate(2turn) scaleY(1.5);
  }
  100% {
    transform: rotate(2.05turn) scaleY(1);
  }
}
.cannon__confetti:nth-child(odd) {
  -webkit-animation-name: confetti-rotate-r;
          animation-name: confetti-rotate-r;
}
@-webkit-keyframes confetti-rotate-r {
  0% {
    transform: rotate(0) scaleY(1);
  }
  50% {
    transform: rotate(-2turn) scaleY(1.5);
  }
  100% {
    transform: rotate(-2.05turn) scaleY(1);
  }
}
@keyframes confetti-rotate-r {
  0% {
    transform: rotate(0) scaleY(1);
  }
  50% {
    transform: rotate(-2turn) scaleY(1.5);
  }
  100% {
    transform: rotate(-2.05turn) scaleY(1);
  }
}
.cannon__confetti--ribbon {
  height: 1em;
  width: 0.5em;
  border-radius: 0.1em;
}
.cannon__confetti--flake {
  height: 0.5em;
  width: 0.5em;
  border-radius: 50%;
}
.cannon__confetti--color-1 {
  background-color: #feb535;
}
.cannon__confetti--color-2 {
  background-color: #bea4ff;
}
.cannon__confetti--color-3 {
  background-color: #ff6e83;
}
.cannon__confetti--color-4 {
  background-color: #58cafe;
}

/* Demo styles */
.party-popper {
  position: absolute;
  left: 50%;
  bottom: 5vh;
  font-size: 2em;
  transform: translateX(-50%) rotate(-45deg);
}

.cannon {
  position: absolute;
  bottom: 5vh;
  left: 50%;
}





.divBotonJugar {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300px;
  height: 150px;
  margin: -50px 0 0 -150px;
  text-align: center;
  border-radius: 8px;
  border: 3px solid rgb(0, 70, 16);
  cursor: pointer;
  background-color: rgb(54, 4, 3);
}

.divBotonJugar {
  animation: border-flicker 2s linear forwards;
}

.h1 {
  font-family: "Open Sans";
  font-weight: 300;
  font-size:2.9em;
  margin: 15px 0 0;
  color: rgba(216, 191, 49, 0.5);
}
/* .h1 :hover {
  font-family: "Open Sans";
  font-weight: 300;
  font-size:2.9em;
  margin: 15px 0 0;
  color: rgba(247, 247, 246, 0.5);
} */
@media only screen and (max-width: 600px)  {
  
}

.divBotonJugar .h1 {
  animation: text-flicker 2s linear forwards;
}

.divBotonJugar .first {
  animation: letter-flicker 3s linear infinite;
}

.divBotonJugar:hover {
  border: 3px solid rgb(24, 74, 255);
  cursor: pointer;
  background-color: rgb(231, 118, 31);
}

.divBotonJugar:hover .h1 {
  animation: text-flicker 2s linear forwards;
}

.divBotonJugar:hover .first {
  animation: letter-flicker 3s linear infinite;
}


@keyframes text-flicker {
  2% { 
    color: rgb(255, 255, 255);
    text-shadow: 0 0 15px rgb(27, 178, 0);
  }
  3% {
    color: rgba(120, 0, 50, .5);
    text-shadow: none;
  }
  6% {
    color: rgb(255, 255, 255);
    text-shadow: 0 0 15px rgb(230, 0, 120);
  }
  9% {
    color: rgba(255, 255, 255, 0.5);
    text-shadow: none;
  }
  11% {
    color: rgb(255, 255, 255);
    text-shadow: 0 0 15px rgb(142, 230, 0);
  }
  14% {
    color: rgba(120, 0, 50, .5);
    text-shadow: none;
  }
  18% {
    color: rgb(255, 255, 255);
    text-shadow: 0 0 15px rgb(230, 0, 120);
  }
  32% {
    color: rgb(255, 255, 255);
    text-shadow: 0 0 15px rgb(230, 0, 120);
  }
  33% {
    color: rgba(120, 0, 50, .5);
    text-shadow: none;
  }
  37% {
    color: rgb(230, 0, 120);
    text-shadow: 0 0 15px rgb(230, 0, 120);
  }
  39% {
    color: rgba(120, 0, 50, .5);
    text-shadow: none;
  }
  43% {
    color: rgb(188, 57, 57);
    text-shadow: 0 0 15px rgb(230, 0, 120);
  }
  46% {
    color: rgba(120, 0, 50, .5);
    text-shadow: none;
  }
  47% {
    color: rgb(255, 255, 255);
    text-shadow: 0 0 15px rgb(230, 0, 120);
  }
  100% {
    color: rgb(255, 255, 255);
    text-shadow: 0 0 15px rgb(230, 0, 120);
  }
}

@keyframes letter-flicker {
    2% { 
    color: rgb(211, 230, 0);
    text-shadow: 0 0 15px rgb(230, 0, 120);
  }
  3% {
    color: rgba(120, 0, 50, .5);
    text-shadow: none;
  }
  6% {
    color: rgb(211, 230, 0);
    text-shadow: 0 0 15px rgb(230, 0, 120);
  }
  9% {
    color: rgba(120, 0, 50, .5);
    text-shadow: none;
  }
  11% {
    color: rgb(211, 230, 0);
    text-shadow: 0 0 15px rgb(230, 0, 120);
  }
  14% {
    color: rgba(120, 0, 50, .5);
    text-shadow: none;
  }
  18% {
    color: rgb(211, 230, 0);
    text-shadow: 0 0 15px rgb(230, 0, 120);
  }
  32% {
    color: rgb(211, 230, 0);
    text-shadow: 0 0 15px rgb(230, 0, 120);
  }
  33% {
    color: rgba(120, 0, 50, .5);
    text-shadow: none;
  }
  37% {
    color: rgb(211, 230, 0);
    text-shadow: 0 0 15px rgb(230, 0, 120);
  }
  39% {
    color: rgba(120, 0, 50, .5);
    text-shadow: none;
  }
  40% {
    color: rgb(211, 230, 0);
    text-shadow: 0 0 15px rgb(230, 0, 120);
  }
  100% {
    color: rgb(211, 230, 0);
    text-shadow: 0 0 15px rgb(230, 0, 120);
  }
}

@keyframes border-flicker {
  2% {
    border: 3px solid rgb(0, 180, 230);
    box-shadow: 0 0 15px -1px rgb(0, 180, 230), 
    0 0 12px -1px rgb(0, 180, 230) inset;
  }
  3% {
    border: 3px solid rgb(0, 40, 70);
    box-shadow: none;
  }
  5% {
    border: 3px solid rgb(0, 180, 230);
    box-shadow: 0 0 15px -1px rgb(0, 180, 230), 
    0 0 12px -1px rgb(0, 180, 230) inset;
  }
  6% {
    border: 3px solid rgb(0, 40, 70);
    box-shadow: none;
  }
  7% {
    border: 3px solid rgb(0, 180, 230);
    box-shadow: 0 0 15px -1px rgb(0, 180, 230), 
    0 0 12px -1px rgb(0, 180, 230) inset;
  }
  9% {
    border: 3px solid rgb(0, 40, 70);
    box-shadow: none;
  }
  13% {
    border: 3px solid rgb(0, 180, 230);
    box-shadow: 0 0 15px -1px rgb(0, 180, 230), 
    0 0 12px -1px rgb(0, 180, 230) inset;
  }
  16% {
    border: 3px solid rgb(0, 40, 70);
    box-shadow: none;
  }
  18% {
    border: 3px solid rgb(0, 180, 230);
    box-shadow: 0 0 15px -1px rgb(0, 180, 230), 
    0 0 12px -1px rgb(0, 180, 230) inset;
  }
  22% {
    border: 3px solid rgb(0, 40, 70);
    box-shadow: none;
  }
  34% {
    border: 3px solid rgb(0, 180, 230);
    box-shadow: 0 0 15px -1px rgb(0, 180, 230), 
    0 0 12px -1px rgb(0, 180, 230) inset;
  }
  36% {
    border: 3px solid rgb(0, 40, 70);
    box-shadow: none;
  }
  54% {
    border: 3px solid rgb(0, 180, 230);
    box-shadow: 0 0 15px -1px rgb(0, 180, 230), 
    0 0 12px -1px rgb(0, 180, 230) inset;
  }
  100% {
    border: 3px solid rgb(0, 180, 230);
    box-shadow: 0 0 15px -1px rgb(0, 180, 230), 
    0 0 12px -1px rgb(0, 180, 230) inset;
  }
}



/* --------------------- MODAL -------------------------------------------------- */

.trigger{
  text-align: center;
padding: 7px 13px;
background: #575400;
color: #fff;
font-size: 15px;
outline: none;
border: none;
border-radius: 5px;
/* font-family: cursive; */
}

.modal {
position: fixed;
left: 0;
top: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.5);
opacity: 0;
visibility: hidden;
transform: scale(1.1);
transition: visibility 0s linear 0.25s, opacity 0.25s 0s, transform 0.25s;
z-index: 1000;

}
.modal-content {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background-color: white;
padding: 1rem 1.5rem;
width: 15rem;
height: 15rem;
border-radius: 0.5rem;
}
.close-button {
float: right;
width: 1.5rem;
line-height: 1.5rem;
text-align: center;
cursor: pointer;
border-radius: 0.25rem;
background-color: lightgray;
}
.close-button:hover {
background-color: darkgray;
}
.show-modal {
opacity: 1;
visibility: visible;
transform: scale(1.0);
transition: visibility 0s linear 0s, opacity 0.25s 0s, transform 0.25s;
}

.btnColorSeleccionado {
  border: 2px solid #ff00f7 !important;
  
}


/* -----------------------------------------FIN MODAL------------------------------- */
/* ESTILO DEL SCROLLBAR  */
.containerScroll::-webkit-scrollbar {
  width: 10px;     /* Tamaño del scroll en vertical */
  height: 10px;    /* Tamaño del scroll en horizontal */
  /* display: none;  Ocultar scroll */
}

.containerScroll::-webkit-scrollbar-thumb {
  background: #5e0000;
  /* border-radius: 4px; */
}

/* Cambiamos el fondo y agregamos una sombra cuando esté en hover */
.containerScroll::-webkit-scrollbar-thumb:hover {
  background: #640000;
  box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.2);
}

/* Cambiamos el fondo cuando esté en active */
.containerScroll::-webkit-scrollbar-thumb:active {
  background-color: #3e639b;
}
.containerScroll::-webkit-scrollbar-track {
  background: #f5f5f53a;
  /* border-radius: 4px; */
}

/* Cambiamos el fondo cuando esté en active o hover */
.containerScroll::-webkit-scrollbar-track:hover,
.containerScroll::-webkit-scrollbar-track:active {
  background: #e9e9e900;
}
/* PARA DISPOSITIVOS MOBILES */
@media screen and (max-width: 639px) { 
  .containerScroll::-webkit-scrollbar {
      width: 1px;     /* Tamaño del scroll en vertical */
      height: 0px;    /* Tamaño del scroll en horizontal */
      /* display: none;  Ocultar scroll */
  }
  
  .containerScroll::-webkit-scrollbar-thumb {
      background: #2e5289;
      /* border-radius: 4px; */
  }
  
  /* Cambiamos el fondo y agregamos una sombra cuando esté en hover */
  .containerScroll::-webkit-scrollbar-thumb:hover {
      /* background: #ac5e53; */
      /* box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.2); */
  }
  
  /* Cambiamos el fondo cuando esté en active */
  .containerScroll::-webkit-scrollbar-thumb:active {
      /* background-color: #3e639b; */
  }
  .containerScroll::-webkit-scrollbar-track {
      background: #474545;
      /* border-radius: 4px; */
  }
  
  /* Cambiamos el fondo cuando esté en active o hover */
  .containerScroll::-webkit-scrollbar-track:hover,
  .containerScroll::-webkit-scrollbar-track:active {
      background: #474545;
  }

}




/* FIN DEL ESTILO DEL SCROLLBAR */
