<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*Tablas y PestaÃ±as*/
.titulo-tabla {
    background-color: #0A1F36 !important;
    font-size: 12px;
    font-weight: normal !important;
    color: #fff;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 5px;
    text-align: left;
}

.tabs {
  width: 100%;
  float: none;
  list-style: none;
  position: relative;
  margin: 0 0 0 0;
  text-align: left;
}
.tabs li {
  float: left;
  display: block;
}
.tabs input[type="radio"] {
  position: absolute;
  top: 0;
  left: -9999px;
}
.tabs label {
  display: block;
  padding: 14px 21px;
  border-radius: 2px 2px 0 0;
  font-size: 20px;
  font-weight: normal;
  color:white;
  background: #d1d1d1;
  cursor: pointer;
  position: relative;
  border-radius: 10px 10px 0 0;
  top: 4px;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.tabs label:hover {
  background: #0A1F36;
}
.tabs .tab-content {
  z-index: 2;
  display: none;
  overflow: hidden;
  width: 100%;
  font-size: 17px;
  line-height: 25px;
  padding: 25px;
  position: absolute;
  top: 53px;
  left: 0;
  background: white;
}
.tabs [id^="tab"]:checked + label {
  top: 0;
  padding-top: 17px;
  background: orange;
  border-radius: 10px 10px 0 0;
}
.tabs [id^="tab"]:checked ~ [id^="tab-content"] {
  display: block;
}

p.link {
  clear: both;
  margin: 380px 0 0 15px;
}
p.link a {
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  color: #fff;
  padding: 5px 10px;
  margin: 0 5px;
  background-color: #612e76;
  -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
p.link a:hover {
  background-color: #3a3838;
}

/*Estados*/
.pulsating-circle {
  position: absolute;
  margin-top:0.6%;
  margin-left:1%;
  transform: translateX(-50%) translateY(-50%);
  width: 30px;
  height: 30px;
}

/*.pulsating-circle::before {
    content: '';
    position: relative;
    display: block;
    width: 300%;
    height: 300%;
    box-sizing: border-box;
    margin-left: -100%;
    margin-top: -100%;
    border-radius: 45px;
    background-color: orange;
    animation: pulse-ring 1.25s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
  }*/

  .pulsating-circle::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    width: 100%;
    height: 100%;
    background-color: orange;
    border-radius: 15px;
    box-shadow: 5px 5px 8px rgba(10,0,0,.3);
    animation: pulse-dot 5.25s cubic-bezier(1.455, 1.03, 0.515, 0.955) -5.4s infinite;
  }

@keyframes pulse-ring {
  0% {
    transform: scale(.001);
  }
  50%, 100% {
    opacity: 0;
  }
}

@keyframes pulse-dot {
  0% {
    transform: scale(5.8);
  }
  50% {
    transform: scale(5);
  }
  100% {
    transform: scale(5.8);
  }
}
/*Verde*/
.pulsating-circleverde {
  position: absolute;
  margin-top:0.6%;
  margin-left:1%;
  transform: translateX(-50%) translateY(-50%);
  width: 30px;
  height: 30px;
}


  .pulsating-circleverde::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    width: 100%;
    height: 100%;
    background-color: #00FB08;
    border-radius: 15px;
    box-shadow: 5px 5px 8px rgba(10,0,0,.3);
  }



  /*Rojo*/
.pulsating-circlerojo {
  position: absolute;
  margin-top:0.6%;
  margin-left:1%;
  transform: translateX(-50%) translateY(-50%);
  width: 30px;
  height: 30px;
}

.pulsating-circlerojo::before {
    content: '';
    position: relative;
    display: block;
    width: 300%;
    height: 300%;
    box-sizing: border-box;
    margin-left: -100%;
    margin-top: -100%;
    border-radius: 45px;
    background-color: #FF0000;
    animation: pulse-ring 1.25s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
  }

  .pulsating-circlerojo::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    width: 100%;
    height: 100%;
    background-color: #FF0000;
    border-radius: 15px;
    box-shadow: 5px 5px 8px rgba(10,0,0,.3);
    animation: pulse-dot 5.25s cubic-bezier(1.455, 1.03, 0.515, 0.955) -5.4s infinite;
  }




/*Gray*/
.pulsating-circlegris {
  position: absolute;
  margin-top:0.6%;
  margin-left:1%;
  transform: translateX(-50%) translateY(-50%);
  width: 30px;
  height: 30px;
}


  .pulsating-circlegris::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    width: 100%;
    height: 100%;
    background-color: gray;
    border-radius: 15px;
    box-shadow: 5px 5px 8px rgba(10,0,0,.3);
  }

@keyframes pulse-ring {
  0% {
    transform: scale(.001);
  }
  50%, 100% {
    opacity: 0;
  }
}

@keyframes pulse-dot {
  0% {
    transform: scale(5.8);
  }
  50% {
    transform: scale(5);
  }
  100% {
    transform: scale(5.8);
  }
}

/*BOTONES ADD, ADJUNTAR*/

i.material-icons {
    font-size: 1.5rem;
    color: white;
    position: relative;
    border-radius: 50%;
    padding: 5px;
    margin: 3px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    transition: color 0.2s ease, background-color 0.2s ease, transform 0.3s ease;
}

i.material-icons:after {
    content: "";
    width: 100%;
    height: 100%;
    border: solid 2px;
    transform: scale(0.8);
    position: absolute;
    top: -2px;
    left: -2px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

i.material-icons:hover:after {
    transform: scale(1);
    box-shadow: 10px 0 20px rgba(0, 0, 0, 0.19), 6px 0 6px rgba(0, 0, 0, 0.23);
}

i.material-icons:nth-of-type(4) {
    background-color: #88b999;
}

i.material-icons:nth-of-type(4):hover {
    color: #88b999;
}

i.material-icons:nth-of-type(4):after {
    border-color: #88b999;
}

i.material-icons:nth-of-type(5) {
    background-color: #88b2b9;
}

i.material-icons:nth-of-type(5):hover {
    color: #88b2b9;
}

i.material-icons:nth-of-type(5):after {
    border-color: #88b2b9;
}

i.material-icons:nth-of-type(6) {
    background-color: #8897b9;
}

i.material-icons:nth-of-type(6):hover {
    color: #8897b9;
}

i.material-icons:nth-of-type(6):after {
    border-color: #8897b9;
}

i.material-icons:nth-of-type(7) {
    background-color: #af88b9;
}

i.material-icons:nth-of-type(7):hover {
    color: #af88b9;
}

i.material-icons:nth-of-type(7):after {
    border-color: #af88b9;
}

i.material-icons:nth-of-type(8) {
    background-color: #d59acb;
}

i.material-icons:nth-of-type(8):hover {
    color: #d59acb;
}

i.material-icons:nth-of-type(8):after {
    border-color: #d59acb;
}

i.material-icons:nth-of-type(1) {
    background-color: #cd8484;
}

i.material-icons:nth-of-type(1):hover {
    color: #cd8484;
}

i.material-icons:nth-of-type(1):after {
    border-color: #cd8484;
}

i.material-icons:nth-of-type(2) {
    background-color: #ec9f83;
}

i.material-icons:nth-of-type(2):hover {
    color: #ec9f83;
}

i.material-icons:nth-of-type(2):after {
    border-color: #ec9f83;
}

i.material-icons:nth-of-type(3) {
    background-color: #cdb274;
}

i.material-icons:nth-of-type(3):hover {
    color: #cdb274;
}

i.material-icons:nth-of-type(3):after {
    border-color: #cdb274;
}

i.material-icons:hover {
    background-color: transparent;
    transform: rotate(90deg);
    cursor: pointer;
    box-shadow: none;
}

p {
    color: #999;
    font-weight: 300;
    margin-top: 20px;
}

@media (min-width:601px) {
  i.material-icons {
    padding:10px;
    margin:5px;
    font-size:2rem;
  }
}

@media (min-width:993px) {
  i.material-icons {
    padding:20px;
    margin:10px;
    font-size:4rem;
  }
  i.material-icons:after {
    border-width:3px;
    top:-3px;
    left:-3px;
  }
}</pre></body></html>