@charset "utf-8";

html {
    line-height: 1.15; /* 1 */
    -webkit-text-size-adjust: 100%; /* 2 */
}
body {
  margin: 0;
}
body * {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-family: 'Montserrat', 'Roboto', sans-serif;
}

*:focus {
    outline:0px;
}
*:after, *:before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
main {
    display: block;
}
h1, h2, h3 {
    font-weight: 800;
}
h1 {
    font-size: 2em;
}
h2 {
  font-size: 36px;
  margin-left: -2px!important;
}
ul {
    list-style-type: none;
}
hr {
    box-sizing: content-box; /* 1 */
    height: 0; /* 1 */
    overflow: visible; /* 2 */
}
pre {
    font-family: monospace, monospace; /* 1 */
    font-size: 1em; /* 2 */
}
a,
a:visited,
a:focus {
    background-color: transparent;
    text-decoration: none;
}
abbr[title] {
    border-bottom: none; /* 1 */
    text-decoration: underline; /* 2 */
    text-decoration: underline dotted; /* 2 */
}
b,
strong {
    font-weight: bolder;
}
code,
kbd,
samp {
    font-family: monospace, monospace; /* 1 */
    font-size: 1em; /* 2 */
}
small {
    font-size: 80%;
}
sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}
sub {
    bottom: -0.25em;
}
sup {
    top: -0.5em;
}
img {
    border-style: none;
}
li{
    list-style:none;
}

  /*  Forms  ========================================================================== */
button,
input,
optgroup,
select,
textarea {
    font-family: inherit; /* 1 */
    font-size: 100%; /* 1 */
    line-height: 1.15; /* 1 */
    margin: 0; /* 2 */
}
button,
input { /* 1 */
    overflow: visible;
}
button,
select { /* 1 */
    text-transform: none;
}
button,
[type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button;
}
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    border-style: none;
    padding: 0;
}
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
    outline: 1px dotted ButtonText;
}
fieldset {
    padding: 0.35em 0.75em 0.625em;
}
legend {
    box-sizing: border-box; /* 1 */
    color: inherit; /* 2 */
    display: table; /* 1 */
    max-width: 100%; /* 1 */
    padding: 0; /* 3 */
    white-space: normal; /* 1 */
}
progress {
    vertical-align: baseline;
}
textarea {
    overflow: auto;
}
[type="checkbox"],
[type="radio"] {
    box-sizing: border-box; /* 1 */
    padding: 0; /* 2 */
    margin-right: 5px;
}
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
    height: auto;
}
[type="search"] {
    -webkit-appearance: textfield; /* 1 */
    outline-offset: -2px; /* 2 */
}
[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}
::-webkit-file-upload-button {
    -webkit-appearance: button; /* 1 */
    font: inherit; /* 2 */
}
input:focus, input.form-control:focus {
    outline:none !important;
    outline-width: 0 !important;
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
}

  /* Interactive  ========================================================================== */

details {
    display: block;
}
summary {
    display: list-item;
}


  /* Misc
     ========================================================================== */

template {
    display: none;
}
[hidden] {
    display: none;
}


/* ===============  EDITABLE  ================ */

.hidden-text {
  overflow: hidden;
  display: block;
  text-indent: -9999px;
  width: 0;
  height: 0;
}

.flexRow {
    display: flex;
    flex-direction: row;
  }
  .flexCol {
    display: flex;
    flex-direction: column;
  }
  .flexRowCol {
    display: flex;
    flex-direction: row;
  }
  .flexRowArr {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
  }
  .flexRowArrWra {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    flex-wrap: wrap;
  }
  .flexColArr {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
  }
  .flexRowBet {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
  .flexColBet {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .flexRowColBet {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
  .flexRowColArr {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
  }
  .flexRowBetCen {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .flexRowColBetCen {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .flexRowBetWra {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .flexRowColArrFi{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
  }
  
  
  @media (max-width: 500px) {
    .flexRowCol, .flexRowColBet, .flexRowColArr, .flexRowColArrFi, .flexRowColBetCen{
      flex-direction: column;
    }
    .flexRowColArrFi > div{
      width: 100%!important;
    }
  }



.onlyDesktop{
    /*display: block;*/
}
.onlyMobil{
    display: none;
}
@media (max-width: 700px) {
    .onlyDesktop{
        display: none!important;
    }
    .onlyMobil{
        display: inline-block;
    }
}


/* CAJAS */

section{
  width: 100%;
  padding-top: 112px;
  display: flex;
  justify-content: space-around;
}
section > div {
  width: 1094px;
  max-width: 90%;
}
section#secProximamente > div {
    width: 729px;
    max-width: 90%;
}


/* SCROLL */

body::-webkit-scrollbar, html::-webkit-scrollbar {
    display: none;
  }
  .dropdown-content option:not(:last-child) {
    margin-bottom: 1rem;
  }
  

  /* Tamaño del scroll */
  .scroll::-webkit-scrollbar, .scroll2::-webkit-scrollbar {
    width: 5px;
    height: 5px;
  }
  
  /* Estilos barra (thumb) de scroll */
  .scroll::-webkit-scrollbar-thumb {
    width: 6px;
    background: var(--color-text);
  }
  
  /* Estilos track de scroll */
  .scroll::-webkit-scrollbar-track{
    background: var(--color-white03);
  }
  
  
  /* SCROLL para FIREFOX */
  
  .scroll{
    overflow: auto;
      /* Dos colores:   Barra  Fondo */
      scrollbar-color: var(--color-text) var(--color-white03);
  
      /* Ancho fino */
      scrollbar-width: thin;
  }
  


/*****/

  /* Estilos barra (thumb) de scroll */
  .scroll2::-webkit-scrollbar-thumb {
    width: 6px;
    background: var(--color-gris2);
  }
  
  /* Estilos track de scroll */
  .scroll2::-webkit-scrollbar-track{
    background: var(--color-gris9);
  }
  
  
  /* SCROLL para FIREFOX */
  
  .scroll2{
    overflow: auto;
      /* Dos colores:   Barra  Fondo */
      scrollbar-color: var(--color-gris2) var(--color-gris9);
  
      /* Ancho fino */
      scrollbar-width: thin;
  }
  

