@charset "UTF-8";
/*
    Created on : Mar 20, 2025, 5:19:55 PM
    Author     : Vicente Martín <vicente@elgrupo.es>
*/
/*
    Created on : Mar 21, 2025, 1:36:32 PM
    Author     : Vicente Martín <vicente@elgrupo.es>
*/
.nav-calculadora {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: absolute;
  width: calc(100% - 30px);
  gap: 20px;
}
@media only screen and (max-width: 600px) {
  .nav-calculadora {
    position: relative;
    left: 0;
    right: 0;
    z-index: 10;
    padding: 24px 30px 20px;
    height: 116px;
    border: none;
    z-index: 998;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    width: calc(100% + 30px);
    background-color: #093247;
    margin-left: -15px;
    margin-right: -15px;
  }
}
@media only screen and (max-width: 600px) {
  .nav-calculadora.show {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }
}
.nav-calculadora__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 18px;
  font-weight: 700;
  color: #333;
  cursor: pointer;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.nav-calculadora__item:hover {
  /*color: #0073aa;*/
}
.nav-calculadora__item--prev svg {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
.nav-calculadora__item--prev2 span {
  bottom: 7px;
  position: relative;
}
.nav-calculadora__item--prev2 svg {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
  margin-right: 10px;
}
.nav-calculadora__item--hidden {
  display: none !important;
}
.nav-calculadora__item--visible {
  display: inline-block !important;
}
.nav-calculadora__item--disabled {
  opacity: 0;
  pointer-events: none;
}
.nav-calculadora__item i {
  font-size: 14px;
}
.nav-calculadora__item i.fa-chevron-left {
  margin-right: 8px;
}
.nav-calculadora__item i.fa-chevron-right {
  margin-left: 8px;
}/*# sourceMappingURL=nav-calculadora.css.map */