@font-face {
    font-family: GothamBook;
    src: url(../fonts/GothamBook.otf);
}

@font-face {
    font-family: GothamLight;
    src: url(../fonts/GothamLight.otf);
}

@font-face {
    font-family: GothamMedium;
    src: url(../fonts/GothamMedium.otf);
}

@font-face {
    font-family: GothamXLight;
    src: url(../fonts/GothamXLight.otf);
}

@font-face {
    font-family: GothamBold;
    src: url(../fonts/GothamBold.otf);
}

body {
    padding: 0 !important;
    margin: 0 auto;
    font-family: GothamMedium;
    font-size: 0.65rem;
    overflow: hidden;
}

.calculadora-bg{
    background-image: url('../img/calculadora-bg.png');
    background-size: contain;
    padding: 0;
    border: 0;
    width: 1024px;
    height: 768px;
    margin: 0 auto;
}

.pool-bg{
    background-image: url(../img/pool-bg.png);
    background-size: contain;contain;
    background-repeat: no-repeat;
    padding: 0;
    border: 0;
    width: 1024px;
    height: 768px;
    margin: 0 auto;
}

.bg{
    background-image: url('../img/portada_bg.jpg');
    background-size: contain;
    padding: 0;
    border: 0;
    width: 1024px;
    height: 768px;
    margin: 0 auto;
}

.guia{
    background-image: url('../img/guia.png');
    background-size: contain;
    padding: 0;
    border: 0;
    width: 1024px;
    height: 768px;
    margin: 0 auto;
}

.elementos-portada{
    background-image: url('../img/elementos-portada.png');
    background-size: contain;
    padding: 0;
    border: 0;
    width: 1024px;
    height: 768px;
    margin: 0 auto;
}

#bt-1{
    padding: 0;
    border: 0;
    width: 565px;
    height: 70px;
    scale: 0.5;
    position: absolute;
    top: 668px;
    left: 20%;
    cursor: pointer;
}

#bt-2{
    padding: 0;
    border: 0;
    width: 565px;
    height: 70px;
    scale: 0.5;
    position: absolute;
    top: 668px;
    left: 41%;
    cursor: pointer;
}

.bg-calculadora{
    background-image: url('../img/calculadora.png');
    background-size: contain;
    padding: 0;
    border: 0;
    width: 1024px;
    height: 768px;
    margin: 0 auto;
}

.logo-programa{
    position: relative;
    top: 40px;
    left: 41px;
}

.option-tier{
    font-family: GothamBook;
    font-size: 1rem;
    position: relative;
    top: 52px;
    left: 202px;
    text-align: right;
    width: 266px;
    height: 37px;
    --radius: 0;
    --baseFg: #ffffff;
    --baseBg:  #e9e9e9;
    --accentFg: #e9e9e9;
    --accentBg: #00827a;
    border: 0;
}

.titulo{
    padding-left: 36px;
    font-size: 1.3rem;
    font-family: GothamMedium;
    letter-spacing: -1px;
}

.indicadores{
    font-size: 1rem;
    font-family: GothamLight;
    padding-left: 1.5rem !important;
    padding-right: 0!important;
}

#descuento {
  font-size: 1.3rem;
  padding-top: 3rem;
  text-align: right;
  padding-right: 2rem;
}

#txDescuento {
  text-align: right;
  width: 100px;
}

.indicadores input {
  width: 100%;
  text-align: right;
}

select {
    -webkit-appearance: none;
    appearance: none;
    color: #505050;
    border: 1px solid var(--baseFg);
    line-height: 1;
    outline: 0;
    padding: 0.65em 2.5em 0.55em 0.75em;
    border-radius: var(--radius);
    background-color: var(--baseBg);
    background-image: linear-gradient(var(--baseFg), var(--baseFg)),
      linear-gradient(-135deg, transparent 50%, var(--accentBg) 50%),
      linear-gradient(-225deg, transparent 50%, var(--accentBg) 50%),
      linear-gradient(var(--accentBg) 42%, var(--accentFg) 42%);
    background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
    background-size: 3px 100%, 30px 22px, 30px 22px, 30px 100%;
    background-position: right 30px center, right bottom, right bottom, right bottom;
  }
  
  select:hover {
    background-image: linear-gradient(var(--accentFg), var(--accentFg)),
      linear-gradient(-135deg, transparent 50%, var(--accentFg) 50%),
      linear-gradient(-225deg, transparent 50%, var(--accentFg) 50%),
      linear-gradient(var(--accentFg) 42%, var(--accentBg) 42%);
  }
  
  select:active {
    background-image: linear-gradient(var(--accentFg), var(--accentFg)),
      linear-gradient(-135deg, transparent 50%, var(--accentFg) 50%),
      linear-gradient(-225deg, transparent 50%, var(--accentFg) 50%),
      linear-gradient(var(--accentFg) 42%, var(--accentBg) 42%);
    color: var(--accentBg);
    border-color: var(--accentFg);
    background-color: var(--accentFg);
  }

  @media screen and (-webkit-min-device-pixel-ratio:0) {
    input[type='range'] {
      overflow: hidden;
      width: 100%;
      height: 20px;
      -webkit-appearance: none;
      background-color: #e2e2e2;
      border-radius: 30px;    
      margin-top: 8.5px;
    }
    
    input[type='range']::-webkit-slider-runnable-track {
      height: 20px;
      -webkit-appearance: none;
      color: #00827a;
    }
    
    input[type="range"]::-webkit-slider-thumb {
        /* removing default appearance */
        -webkit-appearance: none;
        appearance: none;
        /* creating a custom design */
        height: 20px;
        width: 20px;
        position: relative;
        background: #00827a;
        box-shadow: -1000px 0 0 1000px #7ca09e;
        border-radius: 80%;
        border: 2px solid #00827a;
        border-radius: 80%;
      }

}

  /*
  .slider {
    -webkit-appearance: none;
    width: 100%;
    height: 25px;
    background: #d3d3d3;
    outline: none;
    opacity: 0.7;
    -webkit-transition: .2s;
    transition: opacity .2s;
  }

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 25px;
    height: 25px;
    background: #04AA6D;
    cursor: pointer;
  }
  
  .slider::-moz-range-thumb {
    width: 25px;
    height: 25px;
    background: #04AA6D;
    cursor: pointer;
  }
  */

.target {
    font-family: 'GothamBook';
    font-size: 1rem;
    padding-top: 24px;
    padding-left: 6px;
}

.target-percent {
    font-family: 'GothamXLight';
    font-size: 3.8rem;
    padding: 0;
    margin: 0;
}

.montos{
    font-family: 'GothamBook';
    font-size: 1rem;
    padding-top: 15px;
    padding-right: 62px;
    line-height: 18px;
    letter-spacing: 0px;
}

.monto {
    font-family: 'GothamXLight';
    font-size: 3.8rem;
    padding-right: 57px;
    margin: 0;
}

.home{
    position: relative;
    width: 580px;
    height: 85px;
    top: -13px;
    left: 524px;
    cursor: pointer;
    scale: 0.5;
}

.pool {
  background-color: #f0f0f0;
  width: 100%;
  /*padding-left: 16px;
  padding-right: 15px;*/
  height: 192px;
  display: flex;
}

.descuento-tit,
.segmento-tit{
  font-family: GothamBold;
  color: #00827a;
  font-size: 1.3rem;
  text-align: right;
  padding-right: 29px;
  letter-spacing: -0.5px;
  padding-top: 19px;
}

.descuento{
  font-family: GothamLight;
  font-size: 5rem;
  text-align: right;
  padding-right: 26px;
  top: -20px;
  position: relative;
  letter-spacing: 3px;
  color: #6c6c6c;
}

.descuento-desc{
  font-family: GothamMedium;
  font-size: 0.75rem;
  text-align: right;
  position: relative;
  top: -41px;
  padding-right: 38px;
  letter-spacing: -1px;
  color: #6c6c6c;
}

.segmento{
  font-family: GothamBook;
  font-size: 1.5rem;
  letter-spacing: 1px;
  text-align: right;
  line-height: 27px;
  position: relative;
  top: 25px;
  padding-right: 99px;
  color: #6c6c6c;
}

.segmento-tit {
  padding-right: 112px;
}

.pool-ofertas{
  position: relative;
  top: 230px;
  overflow-x: hidden;
  overflow-y: auto;
  height: 400px;
}