@charset "UTF-8";
/* Las siguientes variables ya no se usan. Se cambió la carga de las fuentes en el index.html > https://use.typekit.net/syr6fvb.css */
.u-sr-only {
  border-width: 0;
  clip: rect(1px, 1px, 1px, 1px);
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
}
.u-sr-only.u-sr-only--skip-content:focus-visible {
  background-color: #ffffff;
  -webkit-box-shadow: none;
          box-shadow: none;
  height: auto;
  clip: auto;
  color: #333333;
  display: inline-block;
  margin: 0;
  overflow: visible;
  outline: none;
  padding: 0.3125rem;
  position: fixed;
  text-align: center;
  width: 100%;
  z-index: 14;
}
.u-sr-only.u-sr-only--skip-content:focus-visible:first-of-type {
  border-radius: 0 0 0.625rem 0.625rem;
  top: 0;
}
.u-sr-only.u-sr-only--skip-content:focus-visible:last-of-type {
  border: 0.0625rem solid #ff6600;
  border-radius: 0.625rem 0.625rem 0 0;
  bottom: 0;
}

.u-color-orange {
  color: #ff6600;
}

.u-color-blue {
  color: #08a6db;
}

.u-italic {
  font-style: italic;
}

.u-mr-2 {
  margin-right: 0.125rem;
}

/* =============================================================================
** Botones
** ===========================================================================*/
.btn,
.disabledButton,
.blueButton,
.buttonOutline,
.orangeButton,
.grayButton,
.greyButton {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 0.75rem;
  display: table;
  margin: 0 auto;
  padding: 10px 24px;
  text-align: center;
  font-family: "InterstateLightRegular";
  text-transform: uppercase;
  text-decoration: none !important;
  border: none;
  cursor: pointer;
  height: auto !important;
  position: relative;
}

.btn-basic {
  color: #ff6600;
  background-color: #ffffff;
  border-left: 1px solid #cccccc;
  border-top: 1px solid #cccccc;
  border-right: 1px solid #cccccc;
  padding: 5px 24px !important;
}

.btn-basic.gray_button {
  color: #666666;
}

@media only screen and (max-width: 760px) {
  .btn,
  .disabledButton,
  .blueButton,
  .buttonOutline,
  .orangeButton,
  .grayButton,
  .greyButton {
    display: block;
    clear: both;
    width: 100%;
  }
}
/* Ripple In */
@-webkit-keyframes hvr-ripple-in {
  100% {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 1;
  }
}
@keyframes hvr-ripple-in {
  100% {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 1;
  }
}
.orangeButton,
.grayButton {
  background-color: #ff6600;
  color: #ffffff;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
          transform: perspective(1px) translateZ(0);
  -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0);
          box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
}

.gray_button {
  background-color: #a7a7a7;
  color: #ffffff;
}

.greyButton {
  background-color: #a7a7a7;
  color: #000000;
}

.orangeButton:before,
.grayButton:before {
  content: "";
  position: absolute;
  border: #ff6600 solid 4px;
  top: -12px;
  right: -12px;
  bottom: -12px;
  left: -12px;
  opacity: 0;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
}

.orangeButton:hover:before,
.orangeButton:focus:before,
.orangeButton:active:before,
.grayButton:hover:before,
.grayButton:focus:before,
.grayButton:active:before {
  -webkit-animation-name: hvr-ripple-in;
          animation-name: hvr-ripple-in;
}

.orangeButton.active:before,
.grayButton.active:before {
  border: #a7a7a7 solid 4px;
}

.orangeButton.active,
.grayButton.active {
  background-color: #a7a7a7;
}

.greyButton:before {
  content: "";
  position: absolute;
  border: #a7a7a7 solid 4px;
  top: -12px;
  right: -12px;
  bottom: -12px;
  left: -12px;
  opacity: 0;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
}
.greyButton:hover:before, .greyButton:focus:before, .greyButton:active:before {
  -webkit-animation-name: hvr-ripple-in;
          animation-name: hvr-ripple-in;
}
.greyButton.active:before {
  border: #a7a7a7 solid 4px;
}
.greyButton.active {
  background-color: #ff6600;
}

.buttonOutline:before {
  background: #a7a7a7;
}

.btn-outline {
  border: 1px solid #cccccc;
  color: #ff6600;
}

.btn-outline:before {
  content: "";
  position: absolute;
  border: #cccccc solid 1px;
  top: -12px;
  right: -12px;
  bottom: -12px;
  left: -12px;
  opacity: 0;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
}

.btn-outline:hover:before,
.btn-outline:focus:before,
.btn-outline:active:before {
  -webkit-animation-name: hvr-ripple-in;
          animation-name: hvr-ripple-in;
}

.blueButton {
  background-color: #08a6db;
  color: #ffffff;
}

.blueButton:before {
  content: "";
  position: absolute;
  border: #08a6db solid 4px;
  top: -12px;
  right: -12px;
  bottom: -12px;
  left: -12px;
  opacity: 0;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
}

.blueButton:hover:before,
.blueButton:focus:before,
.blueButton:active:before {
  -webkit-animation-name: hvr-ripple-in;
          animation-name: hvr-ripple-in;
}

.disabledButton {
  background: #a7a7a7;
  color: #ffffff;
  pointer-events: none;
}

@media only screen and (max-width: 760px) {
  .shopping-cart .disabledButton {
    padding: 10px 0;
    width: 91% !important;
  }
}
.buttons {
  padding-left: 0;
}

.buttons li {
  list-style: none;
}

@media only screen and (max-width: 760px) {
  .buttons li {
    display: block !important;
    padding: 0 !important;
  }
}
.buyNow {
  width: 100%;
}

.buyNowTotalTarifa {
  width: 74%;
}

@media only screen and (max-width: 760px) {
  .buyNowTotalTarifa {
    width: 100%;
  }
}
.addCart {
  padding: 10px 15px;
  margin-top: 5px;
}

.addCartShop {
  margin-top: 7px;
  width: 100%;
}

.addCartTotalTarifa {
  padding: 10px 15px;
  margin-top: 5px;
}

body {
  margin: 0;
}

.row-flex-nested {
  background-color: #efefef;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  margin-left: auto;
  margin-right: auto;
  margin-top: 15px;
  width: 100%;
}
@media only screen and (min-width: 761px) and (max-width: 1192px) {
  .row-flex-nested {
    width: 100%;
  }
}
@media only screen and (max-width: 760px) {
  .row-flex-nested {
    width: 100%;
  }
}

.col-flex-lg-6 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  max-width: 50%;
}
.col-flex-lg-6.col-flex-xs-7 {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
  max-width: 50%;
}
@media only screen and (min-width: 862px) and (max-width: 1030px) {
  .col-flex-lg-6.col-flex-xs-7 {
    -ms-flex-preferred-size: 45%;
        flex-basis: 45%;
    max-width: 45%;
  }
}
@media only screen and (min-width: 761px) and (max-width: 861px) {
  .col-flex-lg-6.col-flex-xs-7 {
    -ms-flex-preferred-size: 40%;
        flex-basis: 40%;
    max-width: 40%;
  }
}
@media only screen and (max-width: 760px) {
  .col-flex-lg-6.col-flex-xs-7 {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
  }
}
.col-flex-lg-6.col-flex-xs-3 {
  -ms-flex-preferred-size: 35%;
      flex-basis: 35%;
  max-width: 35%;
}
@media only screen and (min-width: 862px) and (max-width: 1030px) {
  .col-flex-lg-6.col-flex-xs-3 {
    -ms-flex-preferred-size: 40%;
        flex-basis: 40%;
    max-width: 40%;
  }
}
@media only screen and (min-width: 761px) and (max-width: 861px) {
  .col-flex-lg-6.col-flex-xs-3 {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    max-width: 50%;
  }
}
@media only screen and (max-width: 760px) {
  .col-flex-lg-6.col-flex-xs-3 {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
  }
}

.u-no-scroll {
  overflow: hidden;
}

.simyo-cookies {
  --color-btn-alt: #8f8f8f;
  --color-link: #08a6db;
  --color-orange: #fa6400;
  --color-text: #000;
  --color-white: #fff;
  --font-button: 14px;
  --font-family: InterstateLightRegular, interstate, arial, sans-serif;
  --font-size-config: 15px;
  --font-size-text: 14px;
  --font-size-title: 18px;
  --margin-config: 26px;
  --padding-banner-bottom: 26px;
  --padding-button: 14px 0;
  --padding-panel: 30px;
  --maxwidth-btn: 200px;
  letter-spacing: -0.25px;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.52);
  z-index: 2000000;
  color: var(--color-text);
  font-family: var(--font-family);
  display: none;
  padding: 0 20px var(--padding-banner-bottom);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.simyo-cookies--visible {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.simyo-cookies--hidden {
  display: none;
}

.simyo-cookies__panel {
  padding: var(--padding-panel);
  background: var(--color-white);
  margin: auto auto 0;
  max-width: 380px;
  width: 100%;
}

.simyo-cookies__title {
  text-transform: uppercase;
  text-align: center;
  font-size: var(--font-size-title);
  margin: 0 0 30px;
}

.simyo-cookies__text {
  font-size: var(--font-size-text);
  text-align: left;
}

.simyo-cookies__link {
  color: var(--color-link);
}

.simyo-cookies__actions {
  list-style: none;
  margin: 40px 0 0;
  padding: 0;
}

.simyo-cookies__action {
  margin-top: 16px;
  text-align: center;
}

.simyo-cookies__action--extra {
  text-align: left;
  margin-top: var(--margin-config);
}

.simyo-cookies__button {
  text-transform: uppercase;
  cursor: pointer;
  border: 0;
  padding: var(--padding-button);
  min-width: var(--maxwidth-btn);
  font-size: var(--font-button);
  color: var(--color-white);
  background-color: var(--color-orange);
}

.simyo-cookies__button--reject-all {
  background-color: var(--color-btn-alt);
}

.simyo-cookies__button--link {
  border: 0;
  background: transparent;
  padding: 0;
  min-width: auto;
  color: var(--color-link);
  text-transform: initial;
  font-size: var(--font-size-config);
}

.simyo-cookies__button--link::before {
  content: ">";
  margin-right: 0.25em;
}

@media screen and (min-width: 768px) {
  .simyo-cookies {
    --font-button: 13px;
    --font-size-config: 14px;
    --font-size-text: 13px;
    --margin-config: 20px;
    --padding-banner-bottom: 20px;
    --padding-button: 13px 0;
    --padding-panel: 40px 30px 30px;
    --maxwidth-btn: 100%;
  }
  .simyo-cookies__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 0 16px;
  }
  .simyo-cookies__action--reject {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .simyo-cookies__action--extra {
    grid-column: span 2;
  }
}
#cookieAsker h1 {
  color: #333333;
  font-size: 1.1875rem;
  font-weight: bold;
  margin: 0 0 10px;
  padding-bottom: 0;
  letter-spacing: -0.975px;
  text-transform: uppercase;
}
#cookieAsker h2 {
  text-transform: uppercase;
  color: #333333;
  font-size: 1rem;
  margin: 5px 0 0 5px;
  letter-spacing: -0.845px;
}
#cookieAsker .parrafo {
  font-family: "InterstateLightRegular", Arial, Helvetica, sans-serif;
  padding: 0.8125rem 1.625rem;
}
@media only screen and (max-width: 760px) {
  #cookieAsker .parrafo {
    padding: 1.625rem 0.8125rem;
  }
}
#cookieAsker .parrafo p {
  margin: 0;
  font-size: 0.8125rem;
  color: #666;
}
#cookieAsker .parrafo p a {
  color: #08a6db;
}
#cookieAsker .parrafo strong {
  color: #333333;
}
#cookieAsker .subTitle {
  color: #ff6600;
  font-size: 1.1em;
  text-transform: none;
}
#cookieAsker .flexgroup {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#cookieAsker .middle-text {
  margin-top: 12px;
  width: 48%;
}
#cookieAsker .opt-out-list {
  color: #333333;
  font-family: "InterstateLightRegular", Arial, Helvetica, sans-serif;
  margin-left: 85px;
  margin-top: 0px;
}
@media only screen and (max-width: 760px) {
  #cookieAsker .opt-out-list {
    margin-left: 15px;
  }
}
#cookieAsker .parrafo-gris {
  background-color: #efefef;
}
#cookieAsker .row-flex-nested {
  background-color: #efefef;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  margin-left: auto;
  margin-right: auto;
  margin-top: 15px;
  width: 100%;
}
@media only screen and (min-width: 761px) and (max-width: 1192px) {
  #cookieAsker .row-flex-nested {
    width: 100%;
  }
}
@media only screen and (max-width: 760px) {
  #cookieAsker .row-flex-nested {
    width: 100%;
  }
}
#cookieAsker .col-flex-lg-6 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  max-width: 50%;
}
#cookieAsker .col-flex-lg-6.col-flex-xs-7 {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
  max-width: 50%;
}
@media only screen and (min-width: 862px) and (max-width: 1030px) {
  #cookieAsker .col-flex-lg-6.col-flex-xs-7 {
    -ms-flex-preferred-size: 45%;
        flex-basis: 45%;
    max-width: 45%;
  }
}
@media only screen and (min-width: 761px) and (max-width: 861px) {
  #cookieAsker .col-flex-lg-6.col-flex-xs-7 {
    -ms-flex-preferred-size: 40%;
        flex-basis: 40%;
    max-width: 40%;
  }
}
@media only screen and (max-width: 760px) {
  #cookieAsker .col-flex-lg-6.col-flex-xs-7 {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
  }
}
#cookieAsker .col-flex-lg-6.col-flex-xs-3 {
  -ms-flex-preferred-size: 35%;
      flex-basis: 35%;
  max-width: 35%;
}
@media only screen and (min-width: 862px) and (max-width: 1030px) {
  #cookieAsker .col-flex-lg-6.col-flex-xs-3 {
    -ms-flex-preferred-size: 40%;
        flex-basis: 40%;
    max-width: 40%;
  }
}
@media only screen and (min-width: 761px) and (max-width: 861px) {
  #cookieAsker .col-flex-lg-6.col-flex-xs-3 {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    max-width: 50%;
  }
}
@media only screen and (max-width: 760px) {
  #cookieAsker .col-flex-lg-6.col-flex-xs-3 {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
  }
}
#cookieAsker .title .font-sm {
  margin-bottom: 15px;
  margin-left: 50px;
  margin-top: 15px;
}
#cookieAsker .list-navs {
  margin-bottom: 20px;
  margin-left: 85px;
  margin-top: 10px;
  padding-left: 0;
  padding-right: 0;
  padding-top: 10px;
}
@media only screen and (max-width: 760px) {
  #cookieAsker .list-navs {
    margin-left: 15px;
  }
}
#cookieAsker .list-navs .moreInfo {
  display: inherit;
}
#cookieAsker .list-navs > li {
  display: inline-grid;
  font-size: 1.6rem;
  line-height: 1.8rem;
  list-style: none;
  margin-bottom: 5px;
  margin-right: 2.1rem;
  text-align: center;
  width: 70px;
}
@media only screen and (max-width: 1030px) {
  #cookieAsker .list-navs > li {
    margin-right: 1.1rem;
  }
}
@media only screen and (max-width: 760px) {
  #cookieAsker .list-navs > li {
    margin-right: 0;
  }
}
#cookieAsker .list-navs > li a {
  color: inherit;
  text-decoration: none;
}
#cookieAsker .list-navs > li a img {
  border-style: none;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: -webkit-transform 0.2s ease-in;
  transition: -webkit-transform 0.2s ease-in;
  transition: transform 0.2s ease-in;
  transition: transform 0.2s ease-in, -webkit-transform 0.2s ease-in;
  vertical-align: middle;
}
#cookieAsker .list-navs > li a:hover img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
#cookieAsker .list-navs > li a p {
  color: #333333;
  font-size: 14px;
  line-height: 16px;
  margin-bottom: 10px;
  margin-top: 15px;
}
#cookieAsker .list-navs .moreInfo-div {
  font-family: "InterstateLightRegular", Arial, Helvetica, sans-serif;
  cursor: pointer;
}
#cookieAsker .list-navs .title {
  clear: both;
  display: block;
  margin-bottom: 15px;
}
#cookieAsker .list-navs .title img {
  display: inline-block;
  margin-right: 0.5rem;
  vertical-align: middle;
  width: 2rem;
}
#cookieAsker .list-navs .title-info {
  color: #333333;
  text-transform: uppercase;
}
#cookieAsker .img-responsive {
  display: block;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  width: 4rem;
}
#cookieAsker .btn-group {
  display: inline-block;
}
#cookieAsker .btn-group .tooltip {
  margin-left: 86px;
  margin-right: 50px;
  margin-top: -130px;
}
@media only screen and (max-width: 760px) {
  #cookieAsker .btn-group .tooltip {
    font-size: 13px;
    line-height: 1.8rem;
    min-width: 300px;
  }
}
@media only screen and (max-width: 760px) {
  #cookieAsker .btn-group .tooltip > span {
    display: none;
  }
}

.popup-content {
  background: #ffffff;
  -webkit-box-shadow: 0px 3px 60px 3px #999999;
          box-shadow: 0px 3px 60px 3px #999999;
  font-family: "InterstateLightRegular", Arial, Helvetica, sans-serif;
  margin: 180px auto 0;
  margin-top: 200px;
  padding: 30px;
  padding-bottom: 30px;
  position: relative;
  overflow: hidden;
  width: 670px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.popup-content h1 {
  color: #ff6600;
  float: none !important;
  font-size: 2em;
}
.popup-content p {
  color: #000000;
  font-size: 13px;
}
.popup-content p a {
  color: #08a6db;
}
@media only screen and (max-width: 760px) {
  .popup-content {
    padding: 24px;
  }
  .popup-content p {
    font-size: 16px;
    margin-bottom: 0;
  }
}
.popup-content .close {
  color: #333333;
  cursor: pointer;
  font-size: 19px;
  font-weight: normal;
  position: absolute;
  right: 20px;
  top: 15px;
  text-decoration: none !important;
}
.popup-content.popupUploadFiles {
  min-width: 750px;
  padding: 32px 24px;
}
.popup-content.popupUploadFiles .uploadSubtitle {
  color: #999999;
  font-size: 15px;
}
.popup-content.popupUploadFiles .uploadFilesContainer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 24px;
}
.popup-content.popupUploadFiles .uploadFilesContainer .dniContainer {
  color: #999999;
  font-family: "InterstateLightRegular", Arial, Helvetica, sans-serif;
  font-size: 15px;
  margin: 0 8px 0 0;
  min-width: 395px;
  width: 100%;
}
.popup-content.popupUploadFiles .uploadFilesContainer .dniContainer > span:first-child {
  color: #333333;
  display: block;
}
.popup-content.popupUploadFiles .uploadFilesContainer .dniContainer > span:last-child {
  padding-left: 10px;
}
.popup-content.popupUploadFiles .uploadFilesContainer .inputUploadFiles {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.popup-content.popupUploadFiles .uploadFilesContainer .inputUploadFiles label {
  display: none;
}
.popup-content.popupUploadFiles .uploadFilesContainer .inputUploadFiles input {
  border: none;
}
.popup-content.popupUploadFiles .uploadFilesContainer .inputUploadFiles input::-webkit-file-upload-button {
  background: transparent;
  border: none;
  color: #08a6db;
  margin-right: 8px;
  padding-right: 8px;
  text-decoration: underline;
}

@media screen and (min-width: 768px) {
  #popupConfiguracionCookies .popup-content {
    margin: calc((100vh - 500px) / 2) auto 0;
    overflow-x: hidden;
    overflow-y: auto;
    max-height: 500px;
  }
}
@media screen and (min-width: 768px) and (min-height: 700px) {
  #popupConfiguracionCookies .popup-content {
    margin: calc((100vh - 660px) / 2) auto 0;
    max-height: 660px;
  }
}

@media only screen and (max-width: 767px) {
  .popup-content {
    height: initial;
    margin: 40px 5px;
    padding: 30px 30px 70px;
    overflow-y: auto;
    width: auto;
    max-height: 80vh;
  }
  .popup-content .buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .popup-content .buttons a,
  .popup-content .buttons button {
    font-size: 14px !important;
    margin: 0 !important;
  }
  .popup-content.popupUploadFiles {
    margin: 40px auto;
    min-width: auto;
    padding: 16px 8px;
    width: 95%;
  }
  .popup-content.popupUploadFiles .uploadFilesContainer {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-bottom: 0;
  }
  .popup-content.popupUploadFiles .uploadFilesContainer + .uploadFilesContainer {
    margin-top: 24px;
  }
  .popup-content.popupUploadFiles .uploadFilesContainer .dniContainer {
    margin: 0;
    margin-bottom: 8px;
    min-width: auto;
    width: 100%;
  }
  .popup-content.popupUploadFiles .uploadFilesContainer .dniContainer > strong {
    display: block;
  }
  .popup-content.popupUploadFiles .uploadFilesContainer .dniContainer span {
    display: inline-block;
    padding: 0;
  }
  .popup-content.popupUploadFiles .uploadFilesContainer .inputUploadFiles {
    left: initial;
    margin: 0 auto;
    position: relative;
  }
}
.popup-veil {
  display: none;
  height: 100%;
  left: 0;
  overflow: hidden;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100000;
}
.popup-veil .popup-content .buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.popup-veil .popup-content .buttons li:not(:last-of-type) {
  margin-bottom: 0;
}
@media only screen and (max-width: 460px) {
  .popup-veil .popup-content .buttons .btn-wide {
    font-size: 12px !important;
    padding: 10px;
    width: 120px;
  }
}

#popupConfiguracionCookies .switch {
  cursor: pointer;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  float: left;
  height: 23px;
  margin: 1px 0 0 0;
  overflow: hidden;
  position: relative;
  width: 80px;
}
#popupConfiguracionCookies .switch .overlay {
  background: url("/assets/images/img/cookies/overlay_n_si-no.png") no-repeat 0 0;
  background-size: 80px 23px;
  height: 23px;
  left: 0;
  position: absolute;
  top: 0;
  width: 80px;
  z-index: 9;
}
#popupConfiguracionCookies .switch span.switched {
  background: white url("/assets/images/img/cookies/switch_n_si-no.png") no-repeat 0 0;
  background-size: 69px 20px;
  display: block;
  height: 20px;
  left: 0;
  position: absolute;
  top: 0;
  width: 69px;
  z-index: 8;
}
#popupConfiguracionCookies .switch span.switched.off {
  left: -25px;
}
#popupConfiguracionCookies .switch input {
  display: none;
}
#popupConfiguracionCookies .config-cookies-header {
  font-size: 1.625rem;
  text-transform: uppercase;
  letter-spacing: -1.32px;
  margin: 0;
}

/* cookieDisabled */
.cookieDisabled {
  background: orange;
  display: none;
  margin: 0 auto 5px;
  overflow: hidden;
  width: width-desktop-small;
}
@media only screen and (max-width: 985px) and (min-width: 761px) {
  .cookieDisabled {
    margin: 15px 15px 0;
    width: auto;
  }
}
@media only screen and (max-width: 760px) {
  .cookieDisabled {
    margin: 15px;
    width: auto;
  }
}
.cookieDisabled p {
  color: white;
  float: left;
  font-family: "InterstateLightRegular", Arial, Helvetica, sans-serif;
  font-size: 13px;
  line-height: 17px;
  margin: 0;
  padding: 5px 0 5px 10px;
  width: 915px;
}
@media only screen and (max-width: 985px) and (min-width: 761px) {
  .cookieDisabled p {
    margin: 0;
    width: 95%;
  }
}
@media only screen and (max-width: 760px) {
  .cookieDisabled p {
    margin: 0;
    padding: 4%;
    width: 83%;
  }
}
.cookieDisabled a {
  color: black;
  text-decoration: underline;
}
.cookieDisabled .cookieDisabledClose {
  display: none;
}

.config-cookies {
  z-index: 2000001;
}
@media only screen and (max-width: 760px) {
  .config-cookies {
    background: none;
    padding: 0 !important;
    position: absolute;
    height: auto;
  }
}
.config-cookies p {
  margin-bottom: 15px;
  text-align: left;
  width: 85%;
}
.config-cookies .btn,
.config-cookies .orangeButton,
.config-cookies .grayButton,
.config-cookies .buttonOutline,
.config-cookies .blueButton,
.config-cookies .disabledButton {
  color: white !important;
  float: right;
}

.config-cookies-content .group-config-cookie {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.config-cookies-content .subHeader {
  color: #ff6600;
  font-family: "InterstateLightRegular";
  font-size: 16px;
  letter-spacing: -0.05em;
  margin: 5px 0;
  text-transform: uppercase;
}
.config-cookies-content .switchWrapper {
  margin: 20px 0 5px;
}

.table-aviso-cookies {
  margin-top: 25px;
}
.table-aviso-cookies .mf-table {
  border: none;
}
.table-aviso-cookies .mf-table th {
  font-family: "InterstateLightRegular", Arial, Helvetica, sans-serif;
  text-align: justify;
}
.table-aviso-cookies .mf-table thead tr {
  background-color: gray;
  color: darkgray;
  font-family: "InterstateLightRegular", Arial, Helvetica, sans-serif;
  text-align: center;
  text-transform: uppercase;
}
.table-aviso-cookies .mf-table tr {
  background-color: white;
  border: none;
}
.table-aviso-cookies .mf-table td {
  background-color: white;
  border: none;
  color: darkgray;
  text-align: left;
}
.table-aviso-cookies .mf-table .permanencia {
  text-align: center;
}
.table-aviso-cookies .mf-table .finalidad {
  padding-left: 35px;
}
.table-aviso-cookies .nombre-principal {
  vertical-align: middle;
}
.table-aviso-cookies .descripcion-principal {
  vertical-align: middle;
}

.config-cookies--open {
  display: block;
}

.switched {
  -webkit-transition: left ease 0.3s;
  transition: left ease 0.3s;
}

.switchWrapper:not(.switchWrapper--on) .switched {
  left: -25px !important;
}

.cookieAsker {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: rgba(169, 169, 169, 0.83);
  bottom: 0;
  margin: 0;
  overflow: hidden;
  padding: 1.625rem 0;
  text-align: center;
  width: 100%;
  position: fixed;
  left: 0;
  z-index: 3;
}
.cookieAsker *:focus {
  outline: none;
}
@media only screen and (max-width: 760px) {
  .cookieAsker {
    padding: 24px 16px;
  }
}
.cookieAsker h1 {
  color: #333 !important;
  font-size: 1.1875rem;
  font-weight: bold;
  letter-spacing: -0.05em;
  margin: 0;
}
.cookieAsker .content {
  margin: 0 auto;
  font-family: "InterstateLightRegular", Arial, Helvetica, sans-serif;
  color: #666;
  background: rgba(245, 245, 245, 0.8);
  max-width: 1005px;
  padding: 32px 0 !important;
  width: 80%;
}
@media only screen and (max-width: 1024px) {
  .cookieAsker .content {
    max-width: 100%;
    width: 90%;
  }
}
@media only screen and (max-width: 760px) {
  .cookieAsker .content {
    max-width: 100%;
    padding: 16px 0 !important;
    width: 100%;
  }
}
.cookieAsker a {
  text-decoration: underline;
  text-transform: uppercase;
}
@media only screen and (max-width: 760px) {
  .cookieAsker a {
    width: calc(100% - 32px);
  }
}
.cookieAsker p {
  color: black;
  float: left;
  font-family: "InterstateLightRegular", Arial, Helvetica, sans-serif;
  font-size: 12px;
  line-height: 17px;
  margin: 0;
  padding: 15px 30px 15px 30px;
  text-align: left;
}
@media only screen and (max-width: 985px) and (min-width: 761px) {
  .cookieAsker p {
    margin: 0;
  }
}
@media only screen and (max-width: 760px) {
  .cookieAsker p {
    margin: 0;
    padding: 8px 16px;
  }
}
.cookieAsker p a {
  color: #08a6db;
}
.cookieAsker .cookieClose {
  background: url("/assets/images/img/cookies/cookie_close.png") no-repeat;
  display: block;
  float: right;
  height: 11px;
  margin: 8px 8px 0 0;
  text-indent: -9999px;
  width: 11px;
}

body#cookieAsker .cookieAsker .content {
  max-width: 1005px;
  width: 80%;
}
@media only screen and (max-width: 1024px) {
  body#cookieAsker .cookieAsker .content {
    max-width: 100%;
    width: 90%;
  }
}
@media only screen and (max-width: 760px) {
  body#cookieAsker .cookieAsker .content {
    max-width: 100%;
    width: 100%;
  }
}

body.whatis_section h1 {
  margin: 20px 0 10px 0px;
  font-family: "InterstateLightRegular", Arial, Helvetica, sans-serif;
  color: #ff6600;
  padding-bottom: 10px;
  font-size: 1.7em;
  font-weight: normal;
  line-height: initial;
}

body.whatis_section h2 {
  color: #ff6600;
  margin: 0 0 10px 0;
}

body.whatis_section h3 {
  font-size: 16px;
  letter-spacing: -0.05em;
  font-family: "InterstateLightRegular";
  text-transform: uppercase;
  color: #ff6600;
  margin: 20px 0 5px;
}

body.whatis_section ul {
  list-style: none;
}

body.whatis_section iframe {
  margin-bottom: 20px;
}

body.whatis_section .info {
  font-family: Arial, Helvetica, sans-serif;
}

body.whatis_section .section-content .info {
  color: #666666;
  font-size: 1em;
  line-height: 140%;
  margin: 0px 0 15px;
}

body.whatis_section .header-liberacion {
  width: auto;
  background-image: url("../img/cabecera-liberacion.jpg");
  height: 290px;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #ffffff;
  background-size: cover;
}

body.whatis_section.liberacion_page .section-content {
  width: auto;
  max-width: none;
  padding: 0 0 50px;
}

body.whatis_section .content-liberacion h2 {
  font-size: 33px;
  letter-spacing: -0.05em;
  font-family: "InterstateLightRegular";
  text-align: center;
  color: #4d4d4d;
}

body.whatis_section .content-liberacion .orangeButton {
  margin: 0 0 0 auto;
}

/* promociones page */
body.whatis_section .section-content .info p.prev {
  margin: 0;
  float: left;
}

body.whatis_section .section-content .info p.next {
  margin: 0;
  text-align: right;
}

body.whatis_section .section-content .more_info {
  margin: 25px 0;
}

body.whatis_section .section-content .more_info h4 {
  color: #005d7c;
  margin: 15px 0 10px;
}

body.whatis_section .section-content .more_info p {
  color: #666666;
  font-size: 85%;
  margin: 0;
}

body.whatis_section .section-content .more_info a {
  display: block;
  margin-top: 10px;
  height: 20px;
  width: 110px;
}

body.whatis_section .section-content .more_info h4, body.whatis_section .section-content .more_info p, body.whatis_section .section-content .more_info a {
  margin-left: 85px;
}

body.whatis_section .section-content .more_info div.col {
  width: 351px;
  height: 100px;
  margin: 0;
  background-position: left bottom;
  background-repeat: no-repeat;
}

body.whatis_section .section-content .more_info .pricing {
  float: left;
  background-image: url("/img/backgrounds/bg_pricing_info.png");
}

body.whatis_section .section-content .more_info .origins {
  float: left;
}

body.whatis_section .section-content .more_info .manifest {
  float: right;
  background-image: url("/img/backgrounds/bg_manifest_info.png");
}

body.whatis_section .section-content .more_info .press {
  float: left;
  background-image: url("/img/backgrounds/bg_press.png");
}

body.whatis_section .section-content .more_info .press_notes {
  float: left;
  background-image: url("/img/backgrounds/bg_press_notes.png");
}

#cookieAsker.whatis_section .content {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  font-family: "interstate", Arial, Helvetica, sans-serif;
  font-weight: 400;
  padding: 1px 20px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media only screen and (max-width: 768px) {
  #cookieAsker.whatis_section .content {
    padding: 1px 15px 0;
  }
  #cookieAsker.whatis_section .parrafo p {
    font-size: 1rem;
  }
  #cookieAsker.whatis_section .list-navs p {
    font-size: 0.875rem;
  }
  #cookieAsker.whatis_section .respTableContent {
    padding: 0.5rem 0.25rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
#cookieAsker.whatis_section .opt-out-list {
  font-size: 0.8125rem;
  color: #333333;
  font-family: "InterstateLightRegular", Arial, Helvetica, sans-serif;
  margin-left: 85px;
  margin-top: 0px;
}
@media only screen and (max-width: 760px) {
  #cookieAsker.whatis_section .opt-out-list {
    font-size: 1rem;
    margin-left: 15px;
  }
}
#cookieAsker.whatis_section .opt-out-list a {
  color: #08a6db;
}
#cookieAsker.whatis_section .parrafo-gris {
  background-color: #efefef;
}
#cookieAsker.whatis_section .tableContentLinks p {
  padding: 0.25rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
#cookieAsker.whatis_section .respTableTitle {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
#cookieAsker.whatis_section .main-container {
  margin-bottom: 3.125rem;
}

.mf-table {
  border: 1px solid #cccccc;
  margin: 0;
  padding: 0;
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}

@media only screen and (max-width: 760px) {
  .mf-table {
    border: none;
  }
}
.mf-table .bg-black {
  background-color: #000000;
  color: #ffffff;
}

.mf-table .bg-white {
  background-color: #ffffff;
}

.mf-table .bg-gray {
  background-color: #efefef;
  color: #333333;
  text-transform: uppercase;
  text-align: center;
}

.mf-table tr {
  padding: 10px;
  border-style: solid;
  border-color: #cccccc;
  border-width: 1px 1px 3px;
  margin-bottom: 15px;
}

@media only screen and (min-width: 759px) {
  .mf-table tr {
    margin-bottom: 0;
    border-bottom-width: 1px;
  }
}
@media only screen and (max-width: 760px) {
  .mf-table tr {
    display: block;
  }
}
@media only screen and (max-width: 760px) {
  .mf-table thead {
    display: none;
  }
}
.mf-table tbody tr:nth-child(1n) {
  background-color: #ffffff;
}

.mf-table tbody tr:nth-child(2n) {
  background-color: #f6f6f6;
}

.mf-table th {
  font-family: Helvetica--Neue--75, Arial, sans-serif;
  padding: 10px;
  font-weight: bold;
}

.mf-table td {
  display: table-cell;
  vertical-align: inherit;
  border-collapse: collapse;
  margin-bottom: 0;
  padding: 10px;
  border-bottom-width: 1px;
  text-align: left;
  border: 0 solid #cccccc;
}

@media only screen and (max-width: 760px) {
  .mf-table td {
    display: block;
    font-size: 13px;
  }
  .mf-table td:before {
    float: left;
    margin-right: 20px;
    width: 100%;
    font-size: 15px;
    line-height: 25px;
    font-weight: bold;
    color: #333333;
  }
  .mf-table td.nombre:before {
    content: "Nombre";
  }
  .mf-table td.origen:before {
    content: "Origen";
  }
  .mf-table td.permanencia:before {
    content: "Permanencia";
  }
  .mf-table td.descripcion:before {
    content: "Descripción";
  }
  .mf-table td.proveedores:before {
    content: "Proveedores";
  }
  .mf-table td.politica:before {
    content: "Política de proveedores";
  }
  .mf-table td.nombre-principal:before {
    content: "Finalidad";
  }
  .mf-table .descripcion-principal:before {
    content: "Descripción";
  }
}
.parrafo .cookiesTableFirst {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto 1fr 1fr;
  margin-top: 16px;
}
.parrafo .cookiesTableFirst .tableHeadContent {
  background-color: #efefef;
  color: #333333;
  font-family: "InterstateLightRegular", Arial, Helvetica, sans-serif;
  font-size: 15px;
  padding: 16px 8px;
  text-align: center;
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.parrafo .cookiesTableFirst .tableContent {
  background-color: #ffffff;
  color: #333333;
  font-family: "InterstateLightRegular", Arial, Helvetica, sans-serif;
  padding: 10px 5px;
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-top: 1px solid #efefef;
  border-left: 1px solid #efefef;
}
.parrafo .cookiesTableFirst .tableContent:nth-child(6), .parrafo .cookiesTableFirst .tableContent:nth-child(9) {
  border-right: 1px solid #efefef;
}
.parrafo .cookiesTableFirst .tableContent:nth-child(7), .parrafo .cookiesTableFirst .tableContent:nth-child(8), .parrafo .cookiesTableFirst .tableContent:nth-child(9) {
  border-bottom: 1px solid #efefef;
}
.parrafo .cookiesTableThird {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto 1fr 1fr 1fr;
  margin-top: 16px;
}
.parrafo .cookiesTableThird .tableHeadContent {
  background-color: #efefef;
  color: #333333;
  font-family: "InterstateLightRegular", Arial, Helvetica, sans-serif;
  font-size: 15px;
  padding: 16px 8px;
  text-align: center;
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.parrafo .cookiesTableThird .tableContent {
  background-color: #ffffff;
  color: #333333;
  font-family: "InterstateLightRegular", Arial, Helvetica, sans-serif;
  padding: 10px 5px;
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-top: 1px solid #efefef;
  border-left: 1px solid #efefef;
}
.parrafo .cookiesTableThird .tableContent:nth-child(8), .parrafo .cookiesTableThird .tableContent:nth-child(12), .parrafo .cookiesTableThird .tableContent:nth-child(16) {
  border-right: 1px solid #efefef;
}
.parrafo .cookiesTableThird .tableContent:nth-child(13), .parrafo .cookiesTableThird .tableContent:nth-child(14), .parrafo .cookiesTableThird .tableContent:nth-child(15), .parrafo .cookiesTableThird .tableContent:nth-child(16) {
  border-bottom: 1px solid #efefef;
}
.parrafo .cookiesTableThird .tableContent.tableContentLinks {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 10px 0;
}
.parrafo .cookiesTableThird .tableContent.tableContentLinks p {
  display: block;
  padding: 4px;
  width: 100%;
}
.parrafo .cookiesTableThird .tableContent.tableContentLinks p + p {
  border-top: 1px solid #efefef;
  margin-top: 5px;
}
.parrafo .responsiveTable {
  display: none;
}
@media only screen and (max-width: 760px) {
  .parrafo .cookiesTableFirst, .parrafo .cookiesTableThird {
    display: none;
  }
  .parrafo .responsiveTable {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    border: 1px solid #efefef;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 16px;
    width: 100%;
  }
  .parrafo .responsiveTable .respTableTitle {
    background-color: #efefef;
    color: #333333;
    font-family: "InterstateLightRegular", Arial, Helvetica, sans-serif;
    font-size: 18px;
    padding: 8px 4px;
    text-align: center;
    text-transform: uppercase;
    width: 100%;
  }
  .parrafo .responsiveTable .respTableContent {
    color: #333333;
    font-family: "InterstateLightRegular", Arial, Helvetica, sans-serif;
    font-size: 16px;
    padding: 8px 4px;
    text-align: center;
    width: 100%;
  }
}

body {
  margin: 0;
  padding: 0;
  font-family: "interstate", Arial, Helvetica, sans-serif;
  font-weight: 400;
}
body:not(.whatis_section) {
  background-color: #ff6600;
}

p {
  margin: 0;
}

.orange-color {
  color: #ff6600;
}

.blue-color {
  color: #08a6db;
}

.euro {
  font-family: Arial, Helvetica, sans-serif;
}

.header {
  background-color: #ff6600;
  -webkit-box-shadow: 0px 4px 12px 20px rgba(204, 58, 5, 0.4);
          box-shadow: 0px 4px 12px 20px rgba(204, 58, 5, 0.4);
  height: 7.5625rem;
  position: sticky;
  top: 0;
  width: 100%;
  overflow: hidden;
  z-index: 3;
}
@media only screen and (max-width: 767px) {
  .header {
    height: auto;
  }
}
@media only screen and (max-width: 375px) {
  .header {
    height: 4.0625rem;
  }
}

.header__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 auto;
  max-width: 1200px;
  padding: 20px 0;
  position: relative;
}
@media only screen and (max-width: 1279px) {
  .header__content {
    padding: 20px 21px;
  }
}
@media only screen and (max-width: 767px) {
  .header__content {
    padding: 15px 27px;
  }
}
@media only screen and (max-width: 422px) {
  .header__content {
    padding: 15px 12px;
  }
}
@media only screen and (max-width: 375px) {
  .header__content {
    padding: 12px 25px;
  }
}
@media only screen and (max-width: 348px) {
  .header__content {
    padding: 15px 9px;
  }
}
@media only screen and (max-width: 320px) {
  .header__content {
    padding: 12px 30px;
  }
}

.logo {
  width: 242px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 1023px) {
  .logo {
    width: 215px;
  }
}
@media only screen and (max-width: 767px) {
  .logo {
    width: 125px;
    padding: 0 15px;
    margin-left: -18px;
  }
}
@media only screen and (max-width: 375px) {
  .logo {
    width: 103px;
    margin-left: -19px;
  }
}
@media only screen and (max-width: 320px) {
  .logo {
    width: 90px;
    margin-left: -22px;
  }
}

.logo__image {
  width: 100%;
}

.call-box {
  background-color: #333333;
  height: 84px;
  width: 498px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 10px;
}
@media only screen and (max-width: 1023px) {
  .call-box {
    width: 390px;
    height: 75px;
  }
}
@media only screen and (max-width: 767px) {
  .call-box {
    height: 50px;
    width: 232px;
  }
}
@media only screen and (max-width: 422px) {
  .call-box {
    width: 215px;
  }
}
@media only screen and (max-width: 375px) {
  .call-box {
    height: 40px;
    width: 185px;
  }
}
@media only screen and (max-width: 320px) {
  .call-box {
    width: 160px;
  }
}

.call-box__link {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #ffffff;
  text-decoration: none;
}

.call-box__text {
  font-size: 24px;
  line-height: 22px;
  letter-spacing: -0.05em;
  padding-right: 30px;
}
@media only screen and (max-width: 1023px) {
  .call-box__text {
    font-size: 20px;
    line-height: 20px;
    padding-right: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .call-box__text {
    font-size: 12px;
    line-height: 12px;
  }
}
@media only screen and (max-width: 375px) {
  .call-box__text {
    font-size: 11px;
    line-height: 11px;
  }
}

.call-box__number {
  font-size: 53px;
  line-height: 22px;
  letter-spacing: -0.075em;
  font-family: "interstate", Arial, Helvetica, sans-serif;
  font-weight: 500;
}
@media only screen and (max-width: 1023px) {
  .call-box__number {
    font-size: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .call-box__number {
    font-size: 28px;
  }
}
@media only screen and (max-width: 375px) {
  .call-box__number {
    font-size: 20px;
  }
}

.operator-section {
  background: url(/assets/images/landings/imagen_fondo_v3.png) no-repeat top center #ffad75;
  background-size: cover;
  height: 576px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}
@media only screen and (max-width: 1023px) {
  .operator-section {
    background-position: 72%;
    height: auto;
  }
}
@media only screen and (max-width: 767px) {
  .operator-section {
    background-position: 58%;
    height: 30rem;
  }
}

.operator-section__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  padding: 100px 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 1279px) {
  .operator-section__content {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
}
@media only screen and (max-width: 1023px) {
  .operator-section__content {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    padding: 1.25rem 6.875rem 3rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media only screen and (max-width: 767px) {
  .operator-section__content {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 20px;
  }
}
@media only screen and (max-width: 413px) {
  .operator-section__content {
    padding: 0;
  }
}

.operator-section__text {
  text-align: center;
  margin-right: 50px;
}
@media only screen and (max-width: 1023px) {
  .operator-section__text {
    margin-right: 0;
  }
}
@media only screen and (max-width: 767px) {
  .operator-section__text {
    margin-right: -5.5rem;
    margin-bottom: 2.25rem;
  }
}
@media only screen and (max-width: 375px) {
  .operator-section__text {
    margin-right: -88px;
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 320px) {
  .operator-section__text {
    margin-right: -55px;
  }
}

.operator-section__title {
  font-family: "interstate", Arial, Helvetica, sans-serif;
  font-weight: 500;
  color: #ffffff;
  margin: 0 0 0 -3px;
  font-size: 60px;
  line-height: 45px;
  letter-spacing: -0.03em;
  /*
    @media only screen and (max-width: $max-mobile-large) {
      line-height: 40px;
      font-size: 40px;
      margin: -17px -34px -19px 10px;
    }*/
}
@media only screen and (max-width: 767px) {
  .operator-section__title {
    font-size: 1.5rem;
    line-height: 1.313rem;
    margin: 0 -40px -19px 0;
  }
}

.operator-section__subtitle {
  font-family: "interstate", Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: 40px;
  line-height: 45px;
  letter-spacing: -0.05em;
  display: block;
  /*
    @media only screen and (max-width: $max-mobile-large) {
      line-height: 30px;
      font-size: 30px;
    }
  */
}
@media only screen and (max-width: 767px) {
  .operator-section__subtitle {
    font-size: 1.188rem;
    line-height: 1.313rem;
  }
}

@media only screen and (max-width: 767px) {
  .operator-section__mobile {
    display: block;
  }
}

.operator-section__inline {
  font-family: "interstate", Arial, Helvetica, sans-serif;
  font-size: 57px;
  line-height: 54px;
  letter-spacing: -0.075em;
  font-weight: 800;
  color: #ffffff;
  text-align: center;
  text-shadow: 0px 4px 20px #FFFFFF;
  paint-order: stroke fill;
  margin-top: 20px;
  position: relative;
  /*
  @media only screen and (max-width: $max-mobile-large) {
    margin-left: 43px;
    font-size: 35px;
    line-height: 35px;
    margin-top: 32px;
  }*/
}
@media only screen and (max-width: 767px) {
  .operator-section__inline {
    font-size: 1.5rem;
    line-height: 1.313rem;
    margin-left: 2.688rem;
    margin-top: 1.625rem;
  }
}
.operator-section__inline::before {
  content: "";
  width: 35px;
  height: 35px;
  background: url("/assets/images/landings/start-left.png") no-repeat;
  background-position: right;
  background-size: contain;
  position: absolute;
  left: 22%;
  top: 35px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  /*
      @media only screen and (max-width: $max-mobile-large) {
        left: -18%;
        top: 20px;
      }*/
}
@media only screen and (max-width: 767px) {
  .operator-section__inline::before {
    width: 26px;
    height: 26px;
    left: -13%;
    top: 9px;
  }
}
.operator-section__inline::after {
  content: "";
  width: 35px;
  height: 35px;
  background: url("/assets/images/landings/start-right.png") no-repeat;
  background-position: left;
  background-size: contain;
  position: absolute;
  left: 80%;
  top: 35px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  /*
      @media only screen and (max-width: $max-mobile-large) {
        left: 122%;
        top: 22px;
      }*/
}
@media only screen and (max-width: 767px) {
  .operator-section__inline::after {
    width: 26px;
    height: 26px;
    left: 118%;
    top: 8px;
  }
}

.promo {
  background-color: #08a6db;
  color: #ffffff;
  padding: 1.25rem 0 0;
  border-radius: 1.25rem;
  width: 24.0625rem;
  text-align: center;
  position: relative;
}
@media only screen and (max-width: 1023px) {
  .promo {
    padding: 0;
    margin-top: -1.25rem;
  }
}
@media only screen and (max-width: 767px) {
  .promo {
    margin-left: 5rem;
    padding: 1.25rem 0 0;
    width: 13.5625rem;
  }
}
@media only screen and (max-width: 320px) {
  .promo {
    margin-left: 28px;
  }
}

.share-5g {
  position: absolute;
  margin-left: -107px;
  top: 42px;
}
@media only screen and (max-width: 767px) {
  .share-5g {
    margin-left: -54px;
    top: 25px;
  }
}

.share-5g__ribbon {
  width: 208px;
}
@media only screen and (max-width: 767px) {
  .share-5g__ribbon {
    width: 110px;
  }
}
@media only screen and (max-width: 374px) {
  .share-5g__ribbon {
    width: 94px;
  }
}

/* sello Más GB */
.more-gb {
  position: absolute;
  margin-left: -94px;
  top: 62px;
}
@media only screen and (max-width: 767px) {
  .more-gb {
    margin-left: -62px;
    top: 28px;
  }
}
@media only screen and (max-width: 374px) {
  .more-gb {
    margin-left: -52px;
    top: 28px;
  }
}

.more-gb__ribbon {
  width: 166px;
}
@media only screen and (max-width: 767px) {
  .more-gb__ribbon {
    width: 104px;
  }
}
@media only screen and (max-width: 374px) {
  .more-gb__ribbon {
    width: 94px;
  }
}

/* Sello promo verano */
.summer-bundle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 0.625rem;
     -moz-column-gap: 0.625rem;
          column-gap: 0.625rem;
  position: absolute;
  right: 0.625rem;
  top: -3.813rem;
  z-index: 1;
}
@media only screen and (max-width: 1023px) {
  .summer-bundle {
    top: -4.688rem;
    right: -1.563rem;
    -webkit-column-gap: 0.313rem;
       -moz-column-gap: 0.313rem;
            column-gap: 0.313rem;
  }
}
@media only screen and (max-width: 767px) {
  .summer-bundle {
    top: -4.125rem;
    right: -0.625rem;
  }
}

.summer-bundle__ribbon {
  width: 7.313rem;
  height: auto;
}
@media only screen and (max-width: 1023px) {
  .summer-bundle__ribbon {
    width: 5.625rem;
  }
}
@media only screen and (max-width: 767px) {
  .summer-bundle__ribbon {
    width: 4.563rem;
  }
}

.summer-bundle__text {
  color: #ffffff;
  font-size: 1.125rem;
  margin-top: 1.875rem;
}
@media only screen and (max-width: 1023px) {
  .summer-bundle__text {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 767px) {
  .summer-bundle__text {
    margin-top: 0.813rem;
    width: 3.438rem;
    line-height: 0.875rem;
  }
}

.promo-bundle__section {
  position: relative;
}
@media only screen and (max-width: 767px) {
  .promo-bundle__section {
    margin-right: -2.688rem;
  }
}

.promo__description {
  padding: 40px 0 0 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
@media only screen and (max-width: 767px) {
  .promo__description {
    padding: 5px 0 0 30px;
    margin-bottom: -10px;
  }
}

.promo__fiber-data {
  font-size: 29px;
  font-family: "interstate", Arial, Helvetica, sans-serif;
  font-weight: 400;
  line-height: 29px;
  letter-spacing: -0.05em;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .promo__fiber-data {
    font-size: 15px;
    line-height: 15px;
    margin-bottom: 10px;
  }
}

.promo__fiber-fast {
  font-size: 66px;
  font-family: "interstate", Arial, Helvetica, sans-serif;
  font-style: italic;
  font-weight: 500;
  line-height: 22px;
  letter-spacing: -0.05em;
  margin-bottom: 25px;
  position: relative;
  left: 103px;
  top: -35px;
}
@media only screen and (max-width: 767px) {
  .promo__fiber-fast {
    font-size: 39px;
    line-height: 15px;
    top: -18px;
    left: 50px;
  }
}

.promo__voice {
  font-size: 1.37rem;
  font-family: "interstate", Arial, Helvetica, sans-serif;
  font-weight: 500;
  line-height: 1rem;
  letter-spacing: -0.05em;
}

.promo__price {
  background-color: #ffffff;
  border-radius: 0 0 1.25rem 1.25rem;
  width: 24.0625rem;
  height: 7.0625rem;
  padding: 0 0 0.9375rem;
}
@media only screen and (max-width: 767px) {
  .promo__price {
    width: 13.5625rem;
    height: 4.375rem;
  }
}
.promo__price .c-price {
  font-size: 6rem;
  padding-top: 0.625rem;
}
@media only screen and (max-width: 767px) {
  .promo__price .c-price {
    font-size: 3.1875rem;
  }
}
@media only screen and (max-width: 413px) {
  .promo__price .c-price {
    font-size: 3.125rem;
    margin-left: 0;
  }
}

.promo__price-from {
  text-align: left;
  font-size: 0.875rem;
  font-weight: 400;
  color: #ff6600;
  margin-top: 0.25rem;
  padding: 0 1.875rem;
  position: absolute;
  margin-left: -20px;
  font-style: italic;
}
@media only screen and (max-width: 768px) {
  .promo__price-from {
    text-align: center;
  }
}

.promo__price-from + .promo__price-content {
  margin-top: -0.125rem;
}

.promo__price-content {
  margin-top: 1rem;
}

.table-header-fiber-mobile .promo__price-content {
  margin-top: 0.25rem;
}

.info-section {
  margin: 0 auto;
  max-width: 80rem;
}

.info-section__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 1.25rem;
  gap: 1.25rem;
  margin-top: -2.5625rem;
}
@media only screen and (max-width: 1279px) {
  .info-section__content {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media only screen and (max-width: 767px) {
  .info-section__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.info-section__header {
  margin: 0;
  font-size: 1.3125rem;
  color: #ffffff;
  border-radius: 1rem 0 1rem;
  background-color: #08a6db;
  padding: 0.625rem;
  position: absolute;
  top: 0;
  left: 0;
  width: 11.875rem;
}
@media only screen and (max-width: 768px) {
  .info-section__header {
    width: 10.875rem;
  }
}
@media only screen and (max-width: 767px) {
  .info-section__header {
    width: 8.375rem;
    padding: 0.5rem 0.9375rem;
    font-size: 1rem;
  }
}

.info-section__text {
  color: #ffffff;
  font-size: 1.58rem;
  text-align: center;
  letter-spacing: -0.05em;
  padding-bottom: 1.25rem;
}
@media only screen and (max-width: 767px) and (min-width: 414px) {
  .info-section__text {
    font-size: 1.18rem;
  }
}
@media only screen and (max-width: 413px) {
  .info-section__text {
    font-size: 1.03rem;
  }
}

.info-section__call {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: -9rem;
  margin-bottom: 5rem;
  position: relative;
  right: 12.25rem;
}
@media only screen and (max-width: 1279px) {
  .info-section__call {
    margin-top: 0;
    right: 0;
    margin-bottom: 2.8125rem;
    padding: 0 0.625rem;
  }
}
@media only screen and (max-width: 767px) {
  .info-section__call {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto 2.8125rem;
    padding: 0;
  }
}

.table-header {
  background-color: #ffffff;
  color: #ffffff;
  border-radius: 1rem;
  text-align: center;
  font-weight: 500;
  padding: 3.5rem 1rem 1rem;
  position: relative;
  width: 15.875rem;
}

.table-description {
  font-weight: 500;
  margin: 0;
  padding: 0;
  font-size: 1.125rem;
  letter-spacing: -0.0225rem;
  line-height: 1.2;
  list-style: none;
  text-align: center;
  color: #666666;
}
.table-description > li:not(:last-child) {
  margin-bottom: 0.125rem;
}
.table-header.table-header-mobile .table-description {
  margin-top: 1.5rem;
}
@media only screen and (max-width: 767px) {
  .table-description {
    font-size: 1rem;
    line-height: 1.25;
  }
  .table-header.table-header-mobile .table-description {
    margin-top: 0;
  }
}
.table-description small {
  font-size: 1rem;
}

.table-description-mobile {
  margin-top: 0.5625rem;
}

.table-info__group {
  margin-top: 0.625rem;
  min-height: 4.375rem;
}
.table-info__group.table-info__group-fiber-mobile {
  min-height: 4.3rem;
}
.table-info__group.table-info__group-mobile {
  margin-top: 1.25rem;
}
.table-info__group.table-info__group-fiber {
  margin-top: 1rem;
}
@media only screen and (max-width: 767px) {
  .table-info__group {
    margin-top: 0.5rem;
    min-height: 0;
  }
  .table-info__group.table-info__group-fiber-mobile {
    min-height: 0;
  }
  .table-info__group.table-info__group-mobile {
    margin-top: 0.5rem;
  }
  .table-info__group.table-info__group-fiber {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-top: 0.5rem;
  }
}

.table-info__text {
  font-size: 1.125rem;
  letter-spacing: -0.05em;
  line-height: 1.18;
  color: #333333;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .table-info__text {
    font-size: 0.75rem;
    margin-top: -0.125rem;
  }
}

.table-info__text-inline--mobile {
  display: block;
}
@media only screen and (max-width: 767px) {
  .table-info__text-inline--mobile {
    display: inline;
  }
}

@media only screen and (max-width: 767px) {
  .table-info__text-mobile {
    font-size: 0.90625rem;
    color: #333333;
  }
}

.table-info__text-more {
  display: block;
}
@media only screen and (max-width: 767px) {
  .table-info__text-more {
    display: contents;
  }
}

.table-info__subtitle {
  font-size: 0.875rem;
  line-height: 1.5;
  color: #333333;
  font-weight: 400;
  margin-top: 0.25rem;
}
@media only screen and (max-width: 767px) {
  .table-info__subtitle {
    font-size: 0.625rem;
    line-height: 1;
  }
}

.table-text__subtitle {
  font-size: 1.4375rem;
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.05em;
  text-align: center;
  color: #ffffff;
}
@media only screen and (max-width: 767px) {
  .table-text__subtitle {
    text-align: justify;
  }
}
@media only screen and (max-width: 320px) {
  .table-text__subtitle {
    font-size: 1.25rem;
  }
}

@media only screen and (max-width: 767px) {
  .table-text__subtitle--mobile {
    display: block;
  }
}

.table-call__outline-text {
  text-align: center;
  font-size: 2.375rem;
  line-height: 0.6;
  font-weight: 700;
  color: #ffffff;
  margin-top: 0.9375rem;
}
@media only screen and (max-width: 320px) {
  .table-call__outline-text {
    letter-spacing: -0.0475rem;
  }
}

.table-smartphone {
  width: 351px;
  background-color: #ffffff;
  border-radius: 16px;
  color: #ffffff;
  padding: 20px;
  margin-top: 3px;
  margin-bottom: 15px;
}
@media only screen and (max-width: 1023px) {
  .table-smartphone {
    margin: 0 10px;
  }
}
@media only screen and (max-width: 767px) {
  .table-smartphone {
    width: 243px;
    margin: 0;
  }
}

.table-smartphone__header {
  margin: 0;
  font-size: 21px;
  color: #ffffff;
  border-radius: 16px 0 16px;
  background-color: #000000;
  margin: -21px 0px 0px -21px;
  padding: 10px;
  width: 331px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .table-smartphone__header {
    width: 226px;
    padding: 14px;
    font-size: 14px;
  }
}

.table-smartphone__image-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.table-smartphone__image {
  width: 273px;
  height: 222px;
}
@media only screen and (max-width: 767px) {
  .table-smartphone__image {
    width: 231px;
    height: 196px;
  }
}

.table-smartphone__outline-text {
  font-size: 55px;
  line-height: 23px;
  color: #ff6600;
  text-align: left;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .table-smartphone__outline-text {
    font-size: 37px;
    line-height: 23px;
  }
}

.table-smartphone__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 30px auto;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
}

.table-smartphone__text {
  font-size: 18px;
  line-height: 19px;
  font-weight: 500;
  text-align: center;
  color: #333333;
  letter-spacing: -0.05em;
}
@media only screen and (max-width: 767px) {
  .table-smartphone__text {
    font-size: 17.5px;
    line-height: 18.5px;
  }
}

.coverage-box {
  background-color: #08a6db;
  width: 320px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 20px;
  padding: 10px 0;
  margin: 0 auto 40px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}
@media only screen and (max-width: 1023px) and (min-width: 768px) {
  .coverage-box {
    margin-top: 5px;
  }
}
@media only screen and (max-width: 767px) {
  .coverage-box {
    width: 292px;
    margin: 0 auto 25px;
  }
}
@media only screen and (max-width: 375px) {
  .coverage-box {
    height: 95px;
  }
}
@media only screen and (max-width: 320px) {
  .coverage-box {
    padding: 0 0 0 10px;
    width: 240px;
  }
}

.coverage-box__image {
  height: 45px;
}
@media only screen and (max-width: 375px) {
  .coverage-box__image {
    height: 46px;
    width: 46px;
  }
}

.coverage-box__text {
  font-size: 19px;
  color: #ffffff;
  letter-spacing: -0.05em;
}
@media only screen and (max-width: 375px) {
  .coverage-box__text {
    text-align: center;
  }
}

@media only screen and (max-width: 375px) {
  .coverage-box__text-mobile {
    display: block;
    text-align: center;
  }
}

.coverage-box__subtitle {
  display: block;
  text-align: center;
}

.text-section {
  background-color: #ffffff;
  padding: 15px 10px 0;
  width: calc(100% - 20px);
}

.text-section__content {
  max-width: 1105px;
  margin: 0 auto;
  position: relative;
  top: 10px;
}
@media only screen and (max-width: 767px) {
  .text-section__content {
    top: -40px;
  }
}
@media only screen and (max-width: 320px) {
  .text-section__content {
    margin: 0 auto;
  }
}

.text-section__text {
  font-size: 54px;
  font-family: "interstate", Arial, Helvetica, sans-serif;
  text-align: center;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: -1.08px;
  color: #999999;
}
@media only screen and (max-width: 768px) {
  .text-section__text {
    font-size: 42px;
  }
}
@media only screen and (max-width: 767px) {
  .text-section__text {
    font-size: 31px;
    line-height: 31px;
    text-align: center;
    letter-spacing: -0.62px;
  }
}

.text-section__outline-text {
  line-height: 60px;
  font-family: "interstate", Arial, Helvetica, sans-serif;
  font-weight: 500;
  letter-spacing: -0.05em;
  color: #ff6600;
  letter-spacing: -1.08px;
}
@media only screen and (max-width: 767px) {
  .text-section__outline-text {
    font-size: 35px;
    line-height: 35px;
    display: block;
    text-align: center;
    letter-spacing: -0.7px;
  }
}

.text-section__text-outline-mobile {
  font-size: 54px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: -0.05em;
  color: #999999;
}
@media only screen and (max-width: 767px) {
  .text-section__text-outline-mobile {
    font-size: 31px;
  }
}

.text-section__award {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: 40px;
  margin-bottom: 94px;
}
@media only screen and (max-width: 767px) {
  .text-section__award {
    margin-top: 24px;
    margin-bottom: 70px;
  }
}

.trofeo {
  text-decoration: none;
  width: 343px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 767px) {
  .trofeo {
    width: 245px;
    padding-right: 5px;
  }
}
@media only screen and (max-width: 767px) {
  .trofeo .br {
    display: block;
  }
}

.text-section__award-image {
  width: 32px;
  height: 32px;
}
@media only screen and (max-width: 767px) and (min-width: 414px) {
  .text-section__award-image {
    width: 40px;
  }
}
@media only screen and (max-width: 413px) {
  .text-section__award-image {
    width: 35px;
  }
}

.text-section__award-text {
  color: #000000;
  font-size: 13px;
  letter-spacing: -0.05em;
  text-align: right;
}

.columns-section {
  background-color: #FFFFFF;
  margin-top: -60px;
  position: relative;
}

.columns-section__content {
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 15px;
}
@media only screen and (max-width: 767px) {
  .columns-section__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
  }
}

.columns-section__item {
  font-size: 28px;
  font-family: "interstate", Arial, Helvetica, sans-serif;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: -0.05em;
  text-align: center;
  border-radius: 20px 20px 0 0;
  width: 266px;
  background: linear-gradient(180.7deg, #D8D2D2 21.4%, #A28A7A 99.82%);
  color: #ffffff;
  padding: 10px 0px 5px 0;
}
@media only screen and (max-width: 767px) {
  .columns-section__item {
    width: calc(100% - 50px);
    padding: 10px 0px 5px 0;
    -webkit-box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
            box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    margin-top: -10px;
    z-index: 1;
    padding: 20px;
  }
}

.tooltip {
  font-size: 0.875rem;
  letter-spacing: -0.05em;
  text-decoration: underline;
  position: absolute;
  margin-top: -23px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: auto;
  left: 10em;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
@media only screen and (max-width: 767px) {
  .tooltip {
    left: 3.9em;
  }
}

.tooltip__content {
  font-family: "interstate", Arial, Helvetica, sans-serif;
  font-weight: 400;
  display: none;
  width: 500px;
  background-color: #ffffff;
  -webkit-box-shadow: 0px 2px 30px #cccccc;
          box-shadow: 0px 2px 30px #cccccc;
  color: #333333;
  padding: 30px;
  position: absolute;
  bottom: 185%;
  left: -28%;
  margin-left: -80px;
  z-index: 2;
}
@media only screen and (max-width: 1023px) and (min-width: 768px) {
  .tooltip__content {
    width: 300px;
    left: 12%;
  }
}
@media only screen and (max-width: 767px) {
  .tooltip__content {
    width: 300px;
    left: 8%;
    padding: 20px;
  }
}
@media only screen and (max-width: 413px) {
  .tooltip__content {
    left: 2%;
  }
}
@media only screen and (max-width: 374px) {
  .tooltip__content {
    width: 265px;
    left: 18%;
    padding: 15px;
  }
}

/* Popup arrow */
.tooltip__content::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 64%;
  margin-left: -15px;
  border-width: 15px;
  border-style: solid;
  border-color: #ffffff transparent transparent transparent;
}

/* Toggle this class - hide and show the popup */
.show {
  display: block;
  -webkit-animation: fadeIn 1s;
          animation: fadeIn 1s;
}

/* Add animation (fade in the popup) */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.tooltip__title {
  color: #08a6db;
  margin: 0;
  text-align: left;
}

.title-mobile {
  margin-top: 20px;
}
@media only screen and (max-width: 767px) {
  .title-mobile {
    margin-top: 15px;
  }
}

.tooltip__text {
  margin: 0;
  text-align: justify;
}

.c-christmas-bundle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 8px;
  right: 22px;
  position: absolute;
  top: -76px;
  cursor: pointer;
}
@media only screen and (max-width: 1279px) {
  .c-christmas-bundle {
    gap: 4px;
    right: 25px;
  }
}
@media only screen and (max-width: 1023px) {
  .c-christmas-bundle {
    top: -50px;
    right: 12px;
  }
}
@media only screen and (max-width: 767px) {
  .c-christmas-bundle {
    top: -54px;
    right: -15px;
  }
}

.c-christmas-bundle__ribbon {
  width: 105px;
}
@media only screen and (max-width: 1023px) {
  .c-christmas-bundle__ribbon {
    width: 85px;
  }
}
@media only screen and (max-width: 767px) {
  .c-christmas-bundle__ribbon {
    width: 74px;
  }
}

.c-christmas-bundle__text {
  color: #ffffff;
  font-size: 0.9375rem;
  letter-spacing: -0.05em;
  margin: 0 0.125rem 0 0;
  text-align: justify;
  line-height: 15px;
}
@media only screen and (max-width: 767px) {
  .c-christmas-bundle__text {
    margin-top: -13px;
  }
}

@media only screen and (max-width: 1023px) {
  .c-christmas-bundle__text-mobile {
    display: block;
  }
}

.christmas-bundle__tooltip {
  font-family: "interstate", Arial, Helvetica, sans-serif;
  font-weight: 400;
  visibility: hidden;
  width: 271px;
  background-color: #ffffff;
  -webkit-box-shadow: 0px 2px 30px #cccccc;
          box-shadow: 0px 2px 30px #cccccc;
  color: #333333;
  top: 80px;
  padding: 20px;
  position: absolute;
  left: -10px;
  margin-left: -163px;
  z-index: 2;
}
.christmas-bundle__tooltip.show {
  visibility: visible;
}
@media only screen and (max-width: 767px) {
  .christmas-bundle__tooltip {
    width: 200px;
    left: -10px;
    margin-left: -95px;
  }
}

.christmas-bundle__tooltip::after {
  content: "";
  position: absolute;
  top: -29px;
  left: 50%;
  margin-left: 56px;
  border-width: 15px;
  border-style: solid;
  border-color: #ffffff transparent transparent transparent;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.footer {
  background-color: #FF6600;
  height: 93px;
}

.footer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 45px 0 0 0;
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .footer__list {
    padding: 25px 0 0 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.footer__item {
  list-style: none;
  cursor: pointer;
}

.footer__link {
  padding: 0 10px;
  text-decoration: none;
  color: #ffffff;
  font-size: 0.78rem;
  font-family: "interstate", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: -0.05em;
}
@media only screen and (max-width: 767px) and (min-width: 414px) {
  .footer__link {
    font-size: 0.83rem;
  }
}
@media only screen and (max-width: 413px) and (min-width: 375px) {
  .footer__link {
    font-size: 0.73rem;
  }
}
@media only screen and (max-width: 374px) {
  .footer__link {
    font-size: 0.65rem;
  }
}

.footer__link--middle {
  border-right: 1px solid #ffffff;
  border-left: 1px solid #ffffff;
}
@media only screen and (max-width: 767px) {
  .footer__link--middle {
    border-right: none;
    border-left: none;
  }
}

.c-price {
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  color: #ff6600;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  font-family: "interstate", Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 2.8125rem;
  line-height: 1;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  letter-spacing: -0.05em;
  margin: 0;
}
.c-price.c-price--color-white {
  color: #ffffff;
}
.c-price .c-price__decimals {
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  font-family: "interstate", Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 0.6em;
}
.c-price .c-price__decimals > span {
  display: block;
}
.c-price .c-price__comma {
  font-family: "interstate", Arial, Helvetica, sans-serif;
  font-weight: 400;
  margin-right: 0.0625rem;
}
.c-price .c-price__euro {
  margin-left: 0.0625rem;
}
.c-price .c-price__month {
  font-size: 0.5668em;
  letter-spacing: -0.03em;
  margin-left: 0.1em;
  text-transform: uppercase;
}

.c-price.c-price--size-xxs,
.c-price.c-price--size-xxs-light {
  font-size: 1.125rem;
}
.c-price.c-price--size-xxs .c-price__decimals,
.c-price.c-price--size-xxs-light .c-price__decimals {
  font-size: 1em;
}
.c-price.c-price--size-xxs .c-price__month,
.c-price.c-price--size-xxs-light .c-price__month {
  font-size: 0.8888888889em;
}

.c-price.c-price--size-xxs-light .c-price__whole {
  font-family: "interstate", Arial, Helvetica, sans-serif;
  font-weight: 500;
}

.c-price.c-price--size-xxxs .c-price__whole {
  font-family: "interstate", Arial, Helvetica, sans-serif;
  font-weight: 500;
}
.c-price.c-price--size-xxxs .c-price__euro {
  font-family: "interstate", Arial, Helvetica, sans-serif;
  font-weight: 500;
}
.c-price.c-price--size-xxxs .c-price__month {
  font-family: "interstate", Arial, Helvetica, sans-serif;
  font-weight: 400;
}

.c-price.c-price--size-xxxs-emphasize .c-price__whole {
  font-family: "interstate", Arial, Helvetica, sans-serif;
  font-weight: 700;
}
.c-price.c-price--size-xxxs-emphasize .c-price__euro,
.c-price.c-price--size-xxxs-emphasize .c-price__month {
  font-family: "interstate", Arial, Helvetica, sans-serif;
  font-weight: 500;
}

.c-price.c-price--size-xxxs,
.c-price.c-price--size-xxxs-emphasize {
  font-size: 0.875rem;
}
.c-price.c-price--size-xxxs .c-price__decimals,
.c-price.c-price--size-xxxs-emphasize .c-price__decimals {
  font-size: 1em;
}
.c-price.c-price--size-xxxs .c-price__month,
.c-price.c-price--size-xxxs-emphasize .c-price__month {
  font-size: 0.8571428571em;
}/*# sourceMappingURL=fibra-y-movil.css.map */