

body {
  padding: 0px;
  margin: 0px;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  font-size: 1.1em;
}
h1,
h2,
h3,
h4,
h4 {
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  text-align: center;
}
h1 {
  font-size: 3em;
  margin: 0.1em 0px;
}
h2 {
  font-size: 2.5em;
  margin: 0px 0px 0.3em 0px;
}
h3 {
  font-size: 2em;
  margin: 0px 0px 0.2em 0px;
}
button {
  cursor: pointer;
  border: transparent;
  background-color: transparent;
  font-size: 1.1em;
}
.prove {
  width: 100px;
  height: 100px;
  background-color: aqua;
  border: solid 1px #000;
}
.dis-n {
  display: none;
}
.dis-b {
  display: block;
}
.col-w{
  color: white;
}
.col-r {
  fill: red;
  color: red;
}
.col-g {
  fill: rgb(0, 255, 34);
  color: rgb(0, 255, 34);
}
.col-g button {
  fill: rgb(0, 255, 34);
  color: rgb(0, 255, 34);
}
.col-r button {
  fill: red;
  color: red;
}
.col-gy {
  fill: gray;
  color: gray;
}
.col-b {
  color: rgb(8, 126, 236);
}
/*anchos*/
.widHei-40p {
  width: 40px;
  height: 40px;
}
.wid-100 {
  width: 100%;
}

.wid-90 {
  width: 90%;
}
.wid-80 {
  width: 80%;
}
.wid-70 {
  width: 70%;
}
.wid-60 {
  width: 60%;
}
.wid-50 {
  width: 50%;
}
/*margin*/
.mar-y {
  margin: 1em 0px;
}
.mar-y-2{
  margin: 2em 0px;
}
.mar-y-3{
  margin: 3em 0px 0px 0px;
}
.mar-a {
  margin: auto;
}
/*displays*/
*[class*="dis-g"] {
  display: grid;
}
.dis-ib {
  display: inline-block;
}
.dis-f {
  display: flex;
}
.dis-g-3,.dis-g-3-800 {
  grid-template-columns: auto auto auto;
}
.dis-g-20-a-20-800 {
  grid-template-columns: 20% auto 20%;
  column-gap: 1%;
}
.dis-g-2-a,
.dis-g-2-a-800 {
  grid-template-columns: auto auto;
  column-gap: 2%;
}
.dis-g-2,.dis-g-2-800{
  grid-template-columns: 49% 49%;
  column-gap: 1%;
}
.dis-g-3-10-80-10 {
  grid-template-columns: 9% 59% 29%;
  column-gap: 1%;
}
.dis-g-3-a,
.dis-g-3-a-800 {
  grid-template-columns: auto auto auto;
  column-gap: 1%;
}

/*text*/
.text-a-c {
  text-align: center;
}
.text-a-r {
  text-align: right;
}
.text-a-l {
  text-align: left;
}
.font-s-1d3 {
  font-size: 1.3em;
}
.font-w-b{
  font-weight: 900;
}
.jus-i-c {
  justify-items: center;
}
.jus-i-fe{
  justify-items: flex-end;
}
.ali-i-c {
  align-items: center;
}
/*alls*/
.all-dis-ib * {
  display: inline-block;
}
.all-dis-b * {
  display: block;
}
/*clases base*/
.negro {
  width: 100vw;
  height: 100vh;
  display: flex;
  position: fixed;
  background-color: rgba(68, 68, 68, 0.466);
  left: 0px;
  top: 0px;
  z-index: 10;
  justify-content: center;
  align-items: center;
}
.blanco {
  width: 80%;
  padding: 25px;
  background-color: white;
  height: fit-content;
  text-align: center;
}

.blanco button {
  color: white;
  background-image: linear-gradient(#B8003B, #940432);
  border-radius: 25px;
padding: 0.1em 1em ;
  font-size: 1em;
  transition: all 0.3s;
}
.cur-p{
  cursor:pointer ;
}
.cur-g{
  cursor: grabbing ;
}
.ove-h{
  overflow: hidden;
}
.ove-x-h{
  overflow-x: hidden;
}
.opa-0d8{
  opacity: 0.8;
}
.flo-r{
  float: right;
}
.pdr-bor{
border: 1px solid #7b7b4c;
}
/*clases*/
.player{
border: 2px dashed rgb(253, 188, 193);
border-radius: 20px;
padding: 0.1em;
}
.moveSea {
  position: relative;
  animation-name: example;
  animation-duration: 8s;
  animation-iteration-count: infinite;
}

@keyframes example {
  0%   { top:0px;}
  50%  { top:20px;}
  100% { top:0px;}
}
.navegantes{
  position: relative;
  margin-bottom: -80px;
  z-index: 1;
  margin-top: -6vh;
}
/* Animation */
.waves {
  position:relative;
  width: 100%;
  height:15vh;
  margin-bottom:-7px; /*Fix for safari gap*/
  min-height:50px;
  max-height:100px;
}
.parallax > use {
  animation: move-forever 25s cubic-bezier(.55,.5,.45,.5)     infinite;
}
.parallax > use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 7s;
}
.parallax > use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 10s;
}
.parallax > use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 13s;
}
.parallax > use:nth-child(4) {
  animation-delay: -5s;
  animation-duration: 20s;
}
@keyframes move-forever {
  0% {
   transform: translate3d(-90px,0,0);
  }
  100% {
    transform: translate3d(85px,0,0);
  }
}
/*Shrinking for mobile*/
@media (max-width: 768px) {
  .waves {
    height:40px;
    min-height:40px;
  }
  .content {
    height:30vh;
  }
  h1 {
    font-size:24px;
  }
}
.tarjeta2{
  background-color: white;
  padding: 0.1em;
}
.mar{
  background: rgb(2,130,138);
background: linear-gradient(0deg, rgba(2,130,138,1) 0%, rgba(30,178,255,1) 100%);
text-align: center;
height: auto;
width: auto;
padding: 1% 2.5%;
display: grid;
grid-template-columns: auto auto auto auto auto auto auto;
position: relative;

}
.pez{
  background-image: url(../img/pez.png);
  background-size: 100%;
  background-repeat: no-repeat;
  width: 50%;
  height: 65px;
  margin: 5px;
  padding: 5px;
  text-align: center;
  font-weight: bolder;
  position: relative;
  animation-name: anmPez;
animation-duration: 6s;
animation-iteration-count: infinite;
}


@keyframes anmPez {
0%   { transform:  rotate3d(0, 1, 0, 20deg); margin-top:-10px;}
50%  { transform:  rotate3d(0, 1, 0, 00deg); margin-top:-0px;}
100% {transform:  rotate3d(0, 1, 0, 20deg); margin-top:-10px;}
}
.exclnt{
  text-align: center;
  padding: 0.3em;
  margin: 0.6em;
  border-radius: 25px;
  color:#3d5c3d ;
  background-color: #edfded;
  text-shadow: 1px 1px 2px rgb(136, 136, 136);
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cg fill='%2376d37c' fill-opacity='0.4'%3E%3Cpolygon fill-rule='evenodd' points='8 4 12 6 8 8 6 12 4 8 0 6 4 4 6 0 8 4'/%3E%3C/g%3E%3C/svg%3E");
}
.tbsActv,.tbsDsActv{
  width: 250px;
  padding: 0.3em;
  margin: 0.3em;
  border-radius: 5px;
}
.tbsDsActv{
  border: 1px solid #8C8C79;
  color: #8C8C79;
}
.tbsDsActv:hover{
  color: #404037;
  border: 1px solid #404037;
}
.tbsActv{
  color: #404037;
  border: 1px solid #404037;
}
.transport{
  text-align: center;
  background-color: #C4FFF8;
  padding: 1em;
}

.z-ind-1 {
  z-index: 1;
}
.pos-r {
  position: relative;
}
.mart-20p {
  margin-top: 20px;
}
.mart--20p {
  margin-top: -20px;
}
.personCorner {
  position: relative;
  margin-left: -70px;
}
.tvOn {
  background-color: white;
}
.tvOff {
  background: rgb(2, 0, 36);
  background: linear-gradient(
    328deg,
    rgba(2, 0, 36, 1) 0%,
    rgba(33, 33, 74, 1) 35%,
    rgba(86, 120, 128, 1) 100%
  );
}
.mar-b-1m {
  margin: 0px 0px 1em 0px;
}
.drop {
  width: 10vw;
  height: 50px;
  background-color: #b98deb;
  margin: 1em 0px;
}
.drag {
  margin: 0.4em;
  cursor: move;
  width: fit-content;
}
.marcaTV {
  display: grid;
  grid-template-columns: auto 35% 80px;
  text-align: right;
  background-color: #323232;
  width: 100%;
  padding: 0px 10px;
  font-size: 1.1em;
}
.marcaTV button {
  font-size: 1.1em;
}
.rayX {
  border-radius: 10px;
  border: 5px solid white;
  background-color: rgba(99, 99, 99, 0.596);
  position: absolute;
  width: 80px;
  height: 70px;
  box-shadow: 2px 2px 2px rgb(117 117 117);
  margin-left: 20px;
  margin-top: 0px;
  transition: all 2s;
}
.slidAnimado {
  overflow: hidden;
  border: 10px solid #323232;
  width: 100%;
  height: 250px;
}
.visor {
  text-align: center;
  width: 100%;
  position: relative;
  transition: all 2s;
}
.slidMove {
  width: 400px;
  border-radius: 1px solid #000;
}
.imgCorner {
  position: relative;
  margin-left: -90px;
  margin-top: 320%;
}

.rIniBtn::after {
  content: "⭯";
  margin-left: 10px;
  font-weight: 600;
  margin-top: -10px;
}
.rIniBtn {
  color: white;
  border-radius: 25px;
  font-size: 1em;
  transition: all 0.3s;
  background-image: linear-gradient(#119cdc, #118bc4);
  transition: all 0.3s;
  padding: 10px 20px 10px 15px;
}
.rIniBtn:hover {
  background-image: linear-gradient(#118bc4, #0f7caf);
  transition: all 0.3s;
}
.prdBtn{
  color: #343440;
  background-image: linear-gradient(#CCCCAF, #bebe9e);
  border-radius: 25px;
  font-size: 1em;
 transition: all 0.3s;
 padding: 0.3em 0.8em ;
}
.prdBtn:hover{
  background-image: linear-gradient( #bebe9e,#CCCCAF);
}
.chckBtn {
  color: white;
  background-image: linear-gradient(#7bcf57, #67A64C);
  border-radius: 25px;
  font-size: 1em;
 transition: all 0.3s;
}
.chckBtn::after{
  content: "🗸";
  margin-left: 10px;
  font-weight: 600;
  margin-top: -10px;
}
.sigBtn,
.antBtn {
  color: white;
  background-color: #451442;
  background-image: linear-gradient(#451442, #6b2867);
  border-radius: 25px;
  font-size: 1em;
  transition: all 0.3s;
}
.sigBtn:disabled,
.rIniBtn:disabled {
  background-image: linear-gradient(#f0f0f0, #d1d1d1);
  color: #000;
}
.sigBtn:disabled:hover {
  background-image: linear-gradient(#c2d0d6, #93a3aa);
  transition: all 0.3s;
}
.sigBtn,.chckBtn {
  padding: 10px 20px 10px 15px;
}
.antBtn {
  padding: 10px 15px 10px 20px;
}
.chckBtn:hover,
.sigBtn:hover,
.antBtn:hover {
  background-image: linear-gradient(#6B6C8C, #282836);
  transition: all 0.3s;
}
.sigBtn::after {
  content: "›";
  margin-left: 10px;
  font-weight: 600;
  margin-top: -10px;
}
.antBtn::before {
  content: "‹";
  margin-right: 10px;
  font-weight: 600;
  margin-top: -10px;
}
.banderin {
  background-color: #745D8C;
  color: white;
  position: absolute;
  transform: rotate(-45deg);
  padding: 15px 65px;
  margin-left: -65px;
  left: 0px;
  top: 0px;
  font-size: 1.4em;
  text-align: center;
  margin-top: 20px;
}
.tarjeta {
  padding: 20px;
  box-shadow: 4px 4px 8px rgb(99, 99, 99);
  border-radius: 30px;
  background-color: rgba(255, 255, 255, 0.6);
}
.fondo-azul {
  background: rgb(80,238,186);
  background: linear-gradient(0deg, rgba(9,75,121,1) 78%, rgba(2,130,138,1) 100%);
}
@media only screen and (max-width: 880px) {
  .hei-100v-800 {
    height: auto;
  }
  .copy{
    position: relative
  }
  h1,h2,h3 {
    font-size: 1.5em;
  }
  .personCorner {
    position: inherit;
    margin-left: 0px;
  }
  .dis-g-20-a-20-800 {
    grid-template-columns: 100%;
    column-gap: 0%;
    row-gap: 1%;
  }
  .dis-g-2-a-800,.dis-g-2-800 {
    grid-template-columns: 100%;
    column-gap: 0%;
    row-gap: 1%;
  }
  .donante {
    width: 100%;
    overflow-x: scroll;
  }
  .imgCorner {
    position: inherit;
    margin: auto;
  }
  .dis-g-3-a-800 {
    grid-template-columns: auto;
    column-gap: 1%;
  }
  .transport img{
    width: 100%;
  }
  .mar-y-800 {
    margin: 1em 0px;
  }
  .wid-100-800{
    width: 100%;;
  }
  .mar{
  grid-template-columns: auto auto auto ;

  }
  .navegantes{
    position: relative;
    margin-bottom: -50px;
    z-index: 1;
    margin-top: -0vh;
  }
  .wid-800-100 {
    width: 100%;
  }
}
