*{ box-sizing: border-box; user-select: none; }
html, body{ margin: 0; padding: 0px; }

.error {
    font-size: 15px;
    color: #ff3333;
}
body{
  /* display: flex; */
  /* flex-direction: column; */
  background: #ffffff;
  /* justify-content: center; */
  /* align-items: center; */
  font-family: 'Raleway', sans-serif;
      font-size: 24px;
  color: #000000;
}
.responsive {
    width: 100%;
        margin-left: auto;
    margin-right: auto;
}

.intro {
    margin: auto;
    font-family: 'Titillium Web', sans-serif;
    font-size: 24px;
    text-align: center;
}

.botones {
    margin: auto;
    margin-bottom: 30px;
    width: fit-content;
}

table, th, td {
  border-collapse: collapse;
}
table {
    margin-bottom: 30px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px;
}



td {
    padding-left: 10px;
}
section{
  display: flex;
  flex-direction: column;
  padding: 0.5em;
}

h1{
  font-weight: 400;
  font-size: 2em;
  cursor: default;
  margin: 0 0 .5em 0;
}

input[type='checkbox']{ height: 0; width: 0; }

input[type='checkbox'] + label{
  position: relative;
  display: flex;
  margin: .6em 0;
  align-items: center;
  color: #000000; !important;
  transition: color 250ms cubic-bezier(.4,.0,.23,1);
}
input[type='checkbox'] + label > ins{
  position: absolute;
  display: block;
  bottom: 0;
  left: 2em;
  height: 0;
  width: 100%;
  overflow: hidden;
  text-decoration: none;
  transition: height 300ms cubic-bezier(.4,.0,.23,1);
}
input[type='checkbox'] + label > ins > i{
  position: absolute;
  bottom: 0;
  font-style: normal;
  color: #4FC3F7;
}
input[type='checkbox'] + label > span{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1em;
  width: 1em;
  height: 1em;
  background: transparent;
  border: 2px solid #000000;
  border-radius: 2px;
  cursor: pointer;  
  transition: all 250ms cubic-bezier(.4,.0,.23,1);
}

input[type='checkbox'] + label:hover{
  color: #ff6e01;
}

input[type='checkbox']:focus + label{
  color: #000000;
}

input[type='checkbox'] + label:hover > span{
  background: rgba(255,255,255,.1);
    border: 2px solid #ff6e01;
}

input[type='checkbox']:focus + label > span{
  background: rgba(255,255,255,.1);
    border: 2px solid #000000;
}


input[type='checkbox']:checked + label > ins{ height: 100%; }
input[type='checkbox']:checked + label{
    font-weight:700;
  color: #ff6e01 !important;
}
input[type='checkbox']:checked + label > span{
  border: .5em solid #ff6e01;
  animation: shrink-bounce 200ms cubic-bezier(.4,.0,.23,1);
}
input[type='checkbox']:checked + label > span:before{
  content: "";
  position: absolute;
  top: 0.45em;
  left: 0.15em;
  border-right: 3px solid transparent;
  border-bottom: 3px solid transparent;
  transform: rotate(45deg);
  transform-origin: 0% 100%;
  animation: checkbox-check 125ms 250ms cubic-bezier(.4,.0,.23,1) forwards;
}

@keyframes shrink-bounce{
  0%{
    transform: scale(1);
  }
  33%{    
    transform: scale(.85);
  }
  100%{
    transform: scale(1);    
  }
}
@keyframes checkbox-check{
  0%{
    width: 0;
    height: 0;
    border-color: #ffffff;
    transform: translate3d(0,0,0) rotate(45deg);
  }
  33%{
    width: .2em;
    height: 0;
    transform: translate3d(0,0,0) rotate(45deg);
  }
  100%{    
    width: .2em;
    height: .5em;    
    border-color: #ffffff;
    transform: translate3d(0,-.5em,0) rotate(45deg);
  }
}

.result-link {
    font-size: 18px;
    padding: 20;
    font-family: 'Raleway', sans-serif;
    cursor: pointer;
    text-transform: uppercase;
    background-color: #0c0c0c;
    color: white;
    border-radius: 0;
    border: none;
    text-decoration: unset;
    margin-right: 19px;
}

.result-link:hover {
  background-color: #ff6e01;
  color: hsl(0deg 0% 100%);
  transition-duration: 0.5s;
}


::-webkit-scrollbar {
  width: 0.2em;
}
 
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}
 
::-webkit-scrollbar-thumb {
  background-color: darkgrey;
  outline: 1px solid slategrey;
}

@media (max-width: 767px){
.responsive {
    width: 100%;
}

tr {
    display: grid;
}


.botones {
    display: inline-flex;
    width: 100%;
}

.intro {
    text-align: center;
    width: 90%;
}


.result-link {
    font-size: 17px;
    margin-right: inherit;
}
}