* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  transition: background-color 0.3s;
  font-size: 13px;
  font-family: var(--normal-font);
}

.viewport{
  min-height: calc(100vh - 320px);
}

.portada{
  margin-top: 100px;
}

.titulo{
  margin-top: 0;
  margin-bottom: 10px;
}

.content hr{
  width: 55%;
  color: var(--dorado);
  background-color: var(--dorado);
  border: 1px solid var(--dorado);
}

.portada .title-description{
  color: var(--special-text);
  font-family: var(--titles_font);
  font-weight: 400;
  font-size: 200%;
}

.portada h2{
  font-size: 150%;
  margin-top: 30px;
  font-weight: 400;
  color: var(--special-text);
}

.form .runtext, .summary .runtext{
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--main-back-color);
  text-transform: uppercase;
}

form .label{
  color: var(--special-text);
  font-size: 180%;
  display: block;
  font-weight: 700;
}

.form label{
  margin-top: 15px;
  margin-right: 5px;
}

.form label, .summary p{
  color: var(--special-text);
  font-size: 140%;
  display: block;
  font-weight: 700;
}

.top-margin-10{
  margin-top: 10px;
}

.extrainput{
  margin-top: 2rem;
  color: red;
}

.form input{
  margin-top: 0.5rem;
  width: 85%;
  height: 40px;
  border: none;
  /* border-bottom: 2px solid #494e75; */
  padding: 10px 20px;
  font-size: 150%;
  color: rgba(0,0,0, 0.7);
  outline: none;
  background-color: rgba(168,183,224, 0.8);
  text-align: center;
  text-transform: uppercase;
}

form .inputcorto{
  width: 27%;
}

/* form .inputcorto:first-child {
  margin-right: 10px;
}

form .inputcorto:last-child {
  margin-left: 10px;
} */

.form .to{
  padding-top: 10px;
  font-size: 130%;
  color: var(--special-text);
  font-size: 140%;
  font-weight: 700;
  margin: auto 20px;
}

.masespacionoseasgacho{
  margin-top: 1rem;
}

.separator{
  margin-top: 3rem;
}

.form span{
  font-size: 80%;
  color: #59636b;
}

input[type=text]:focus, input[type=number]:focus {
  border: 2px solid var(--special-text);
}

form button{
  display: block;
  margin-top: 3rem;
  width: 150px;
  height: 40px;
  font-size: 120%;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid var(--special-text);
  color: var(--special-text);
  font-weight: 600;
  background-color: #FFF;
  cursor: pointer;
  margin-bottom: 3rem;
}

form button:hover {
  background-color: var(--special-text);
  color: #FFF;
}

.muted{
  display: none;
}

.summary p {
  display: inline-block;
}
.summary a{
  text-decoration: none;
}


.summary{
  font-size: 140%;
  margin-bottom: 3rem;
}

.summary span{
  color: var(--dorado);
  font-size: 140%;
  font-weight: 500;
}

.summary .datos{
  margin-top: 10px;
}

.summary .datos .data{
  margin-top: 7px;
  color: #78787d;
}

.summary .datos span {
  color: #78787d;
  font-weight: 400;
}

.summary .datos a{
  font-size: 140%;
  font-weight: 500;
  text-decoration: none;
  color: var(--special-text);
}

.summary .normal_padding{
  padding-right: 15px !important;
  /* padding-left: 15px!important; */
}

.newResultsCatego{
  margin-top: 3rem;
}

/* footer{
  position:fixed;
  bottom: 0;
  right: 0;
  width: 100%
} */




.loading {
  width: 100%;
  height: 100vh;
  background-color: rgba(200, 222, 255, 0.7);
  position: fixed !important;
  bottom: 0;
  right: 0;
  z-index: 10;
}

.loading h3 {
  width: 200px;
  text-align: center;
  position: absolute;
  left: calc(50% - 100px);
  top: calc(70% - 100px);
}

.rotate {
  position: absolute;
  left: calc(50% - 100px);
  top: calc(50% - 100px);
  width: 200px;
  height: auto;
  animation: rotation 2s infinite linear;
}

.unactive {
  visibility: hidden;
  opacity: 0;
  height: 0 !important;
  padding: 0 !important;
}

.align{
  font-family: monospace;
}

@keyframes rotation {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(359deg);
  }
}

@media (max-width: 1199px) {
  .content{
    width:calc(100% - 40px);
    margin-left: 20px;
  }
}


@media (max-width: 899px) {
  .col_40, .col_60 {
    width: calc(100% - 40px);
    margin-left: 20px;
    display:block;
  }

  .thisbreake{
    display: block;
  }

  .col_tercio .footlogos img, .col_tercio .ibt_logo img{
    width: 90%;
    margin-left: 5%;
    height: auto;
  }

  footer .footnote{
    width: 94%;
    margin: 20px 3%;
  }



}