@charset "UTF-8";
.modal {
  position: fixed;
  bottom: 0;
  background-color: rgba(11, 39, 57, 0.8);
  display: none;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100%;
  z-index: 10;
}
.modal .swipe-down {
  display: none;
}
.modal-body {
  position: relative;
  background-color: #ffffff;
  max-width: 847px;
  max-height: 560px;
  padding: 50px;
  border-radius: 16px;
  color: #313235;
  font-family: "TelefonicaWeb-Regular", arial, sans-serif;
}
.modal-close-btn {
  position: absolute;
  right: 40px;
  top: 40px;
  cursor: pointer;
}
.modal-close-btn img {
  width: 16px;
  height: 16px;
}
.modal-titulo {
  font-size: 28px;
  color: #313235;
}
.modal-parrafos {
  overflow: auto;
  height: 402px;
  margin-top: 24px;
  font-size: 16px;
  line-height: 135%;
  padding-right: 16px;
}
.modal-parrafos a {
  color: #019DF4;
}
.modal-parrafos::-webkit-scrollbar {
  width: 4px;
}
.modal-parrafos::-webkit-scrollbar-track {
  background-color: #e8e8e8;
  border-radius: 100px;
}
.modal-parrafos::-webkit-scrollbar-thumb {
  background-color: #7a7a7a;
  border-radius: 100px;
}
.modal-parrafos li {
  margin-bottom: 15px;
}

#envio .modal-body {
  max-width: 763px;
  max-height: 762px;
  padding: 32px;
}
#envio .modal-body .modal-titulo {
  font-size: 32px;
  line-height: 48px;
}
#envio .modal-body .modal-parrafos {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: initial;
  padding: 0;
}
#envio .modal-body .modal-parrafos .box-cart {
  padding: 12px 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border-radius: 6px;
  background: #ebf7ff;
}
#envio .modal-body .modal-parrafos .box-cart:last-child {
  background-color: #0b2739;
  color: white;
}
#envio .modal-body .modal-parrafos .box-cart div p {
  margin-top: 3px;
}
#envio .modal-body .modal-parrafos li {
  margin: 0;
}
#envio .modal-body .text-url-despacho {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}
#envio .modal-body .text-url-despacho a {
  color: #019df4;
  font-family: "TelefonicaWeb-Bold";
}
#envio .modal-body .text-url-despacho a:hover {
  opacity: 0.7;
}

@media (max-width: 768px) {
  .modal {
    align-items: flex-end;
  }
  .modal .swipe-down {
    position: absolute;
    top: 0;
    left: 0px;
    width: 100%;
    height: 35px;
    display: block;
  }
  .modal-body {
    border-radius: 16px 16px 0px 0px;
    width: 100%;
    padding: 40px 16px 32px 16px;
    transition: all ease-in-out 300s;
    max-height: initial;
  }
  .modal-body::after {
    content: " ";
    position: absolute;
    background-color: #ced4d7;
    width: 40px;
    height: 4px;
    border-radius: 5px;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    margin-top: 6px;
  }
  .modal-titulo {
    font-size: 20px;
    text-align: center;
  }
  .modal-parrafos {
    font-size: 14px;
    padding-right: 15px;
    height: 70vh;
  }
  .modal-btn {
    width: 100%;
    padding-right: 10px;
  }
  .modal-close-btn {
    width: 16px;
    height: 16px;
    margin-top: 16px;
    margin-right: 16px;
    display: none;
  }
  .modal .modal-email {
    padding: 90px 40px;
  }
  #envio .modal-body {
    padding: 24px;
    padding-right: 8px;
  }
  #envio .modal-body .modal-titulo {
    font-size: 20px;
    line-height: 27px;
    text-align: center;
    margin-top: 18px;
  }
  #envio .modal-body .modal-parrafos {
    margin-top: 24px;
    font-size: 16px;
    line-height: 21.6px;
    height: 70vh;
    padding-right: 10px;
  }
  #envio .modal-body .modal-parrafos .c-canales {
    flex-wrap: wrap;
    margin-top: 13px;
  }
}
.policy {
  margin: 50px auto 30px;
  width: calc(100% - 30px);
  max-width: 1170px;
  padding: 50px 0;
}
.policy_title {
  font: 28px "TelefonicaWeb-Light", arial, sans-serif;
  color: #50535A;
  text-align: center;
  margin-bottom: 30px;
  width: 100%;
}
.policy_content {
  position: relative;
  overflow: hidden;
  height: 150px;
  transition: all 0.5s ease-in-out;
}
.policy_content:after {
  content: "";
  position: absolute;
  height: 100px;
  width: 100%;
  bottom: 0;
  left: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0, #F5F5F5 100%);
}
.policy_content.active {
  height: auto;
}
.policy_content.active:after {
  content: none;
}
.policy_content.active:after {
  content: none;
}
.policy ul {
  padding-left: 20px;
  position: relative;
}
.policy ul li {
  color: #313235;
  margin-bottom: 15px;
  font-size: 15px;
  position: relative;
}
.policy ul li::after {
  content: "";
  position: absolute;
  left: -10px;
  top: 7px;
  width: 4px;
  height: 4px;
  background-color: #019DF4;
  border-radius: 50px;
}
.policy ul a {
  color: #019DF4;
}
.policy_btn {
  width: 100%;
  font-size: 1rem;
  padding: 30px 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.policy_btn em {
  color: #019DF4;
}
.policy_btn i {
  position: relative;
  border-radius: 100%;
  border: 2px solid #019df4;
  height: 26px;
  width: 26px;
  margin-left: 15px;
}
.policy_btn i::before, .policy_btn i::after {
  content: "";
  position: absolute;
  background: #019df4;
  width: calc(100% - 6px);
  height: 2px;
  top: calc(50% - 1px);
  left: 3px;
}
.policy_btn i::before {
  transform: rotate(90deg);
}
.policy_btn.active i::before {
  opacity: 0;
}

@media (max-width: 768px) {
  .policy_title {
    font-size: 24px;
  }
}
body {
  background: #F5F5F5;
}

.prefooter {
  padding-top: 50px;
}

.banner_top {
  max-width: 100%;
  box-shadow: 1px 2px 2px #ddd;
  margin-bottom: 20px;
  border-radius: 8px;
}

.of-menu {
  border-bottom: 1px solid #dfdfdf;
  background-color: #fff;
  margin-bottom: 30px;
}
.of-menu-wrap {
  max-width: 1170px;
  margin: auto;
  padding: 10px;
  box-sizing: content-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.of-menu-wrap.alt .of-btns {
  margin-left: auto;
}
.of-btn {
  font-size: 14px;
  color: #000;
  position: relative;
  transition: all 0.2s ease-in-out;
  padding: 10px 4px;
}
.of-btn.active {
  pointer-events: none;
  cursor: default;
}
.of-btns {
  display: flex;
  gap: 30px;
}
.of-btn em {
  display: block;
  font-size: 16px;
}
.of-btn:after {
  content: "";
  height: 5px;
  width: 100%;
  background: #0b2739;
  position: absolute;
  bottom: -10px;
  left: 0;
  opacity: 0;
  transition: all 0.2s ease-in-out;
}
.of-btn:hover {
  color: #019DF4;
}
.of-btn.active:hover:after {
  background: #019DF4;
}
.of-btn.active:after {
  opacity: 1;
}
.of-tienda {
  margin: 0 auto;
  width: calc(100% - 30px);
  max-width: 1170px;
  display: flex;
  gap: 50px;
}
.of-tienda .md-banner {
  background-image: url("../img/movides-bg01.png"), url("../img/movides-bg02.png");
  background-color: #fff;
  min-height: 180px;
  margin-bottom: 20px;
  border-radius: 8px;
  background-repeat: no-repeat;
  background-position: 20px 60px, calc(100% - 30px) -85px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  box-shadow: 1px 2px 2px #ddd;
}
.of-tienda .md-banner-wrap {
  margin: auto;
  max-width: 410px;
}
.of-tienda .md-banner-txt {
  font: 20px "TelefonicaWeb-Light", arial, sans-serif;
}
.of-tienda .md-banner-img {
  max-width: 100%;
}
.of-equipos {
  width: calc(100% - 60px);
}
.of-filtro {
  width: 100%;
  max-width: 270px;
}
.of-filtro-title {
  font-size: 20px;
  margin-bottom: 15px;
  color: #313235;
  font-family: "TelefonicaWeb-Light", arial, sans-serif;
  text-align: left;
}
.of-filtro-movides ul {
  background: #fff;
  border-radius: 8px;
  box-shadow: 1px 2px 2px #ddd;
  border: 0;
  margin-bottom: 38px;
}
.of-filtro-movides ul .check-movides {
  background: none;
  border-radius: 8px;
  border: 0;
  display: flex;
  gap: 5px;
  align-items: center;
  padding: 14px 5px 14px 9px;
}
.of-filtro-movides ul .check-movides p {
  font-size: 14px;
  color: #86888C;
  margin: 0;
  margin-left: 8px;
}
.of-filtro-movides ul .check-movides p img {
  display: block;
  margin-bottom: 7px;
}
.of-filtro-movides ul .check-movides .of-checkbox {
  min-width: 48px;
  height: 24px;
  background-color: #A2A3A3;
  border-radius: 100px;
  position: relative;
  cursor: pointer;
}
.of-filtro-movides ul .check-movides .of-checkbox:before {
  content: "";
  border-radius: 50%;
  width: 20px;
  height: 20px;
  position: absolute;
  left: 2px;
  top: 2px;
  background: #fff;
  transition: all 0.2s linear;
}
.of-filtro-movides ul .check-movides .of-checkbox.active {
  width: 48px;
  height: 24px;
  /* background-color: $blue; */
  background-color: #5CB615;
  border-radius: 100px;
  position: relative;
}
.of-filtro-movides ul .check-movides .of-checkbox.active:before {
  left: 26px;
}
.of-filtro-marcas {
  margin-bottom: 38px;
}
.of-filtro-marcas .marcas {
  gap: 12px;
  display: flex;
  flex-wrap: wrap;
}
.of-filtro-marcas .of-marca {
  aspect-ratio: 1/1;
  width: 82px;
  box-shadow: 1px 2px 2px #ddd;
  background: #fff;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  /* &[disabled] {
      pointer-events: none;
      filter: grayscale(1) brightness(0.7);
      opacity: 0.3;
      } */
}
.of-filtro-marcas .of-marca.active {
  box-shadow: unset;
  background-color: #019DF4;
  pointer-events: none;
  cursor: default;
}
.of-filtro-marcas .of-marca.active img {
  filter: brightness(0) invert(1) grayscale(1) saturate(100);
}
.of-filtro-marcas .of-marca img {
  max-width: 55px;
  max-height: unset;
}
.of-filtro-marcas .of-ver-marcas {
  color: #019DF4;
  border: 1px solid #019DF4;
  font-size: 12px;
  line-height: 12px;
  transition: background-color 0.2s;
  border-radius: 100px;
  margin-left: 12px;
  display: inline-block;
  font-family: inherit;
  padding: 4px 10px;
}
.of-filtro-marcas .of-ver-marcas:hover {
  background-color: #019DF4;
  color: #fff;
}
.of-filtro-ordenar, .of-filtro-planes {
  margin-bottom: 38px;
}
.of-filtro-ordenar ul, .of-filtro-planes ul {
  padding: 10px 0;
  background: #fff;
  border-radius: 8px;
  box-shadow: 1px 2px 2px #ddd;
  border: 0;
}
.of-filtro-ordenar li, .of-filtro-planes li {
  border: 0 !important;
  position: relative;
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 8px 15px;
  background-color: transparent;
  box-shadow: unset;
  font-size: 14px;
  cursor: pointer;
}
.of-filtro-ordenar li p, .of-filtro-planes li p {
  font-size: 10px;
  color: #86888C;
  margin-bottom: 0;
}
.of-filtro-ordenar li:not(.check-movistar):before, .of-filtro-planes li:not(.check-movistar):before {
  content: "";
  width: 20px;
  height: 20px;
  display: block;
  outline: 1px solid #ccc;
  border-radius: 50%;
  border: 3px solid #fff;
}
.of-filtro-ordenar li.active, .of-filtro-planes li.active {
  color: #019DF4;
  pointer-events: none;
  cursor: default;
}
.of-filtro-ordenar li.active:before, .of-filtro-planes li.active:before {
  background: #019DF4;
}
.of-filtro-planes:not(.filtraMone) .onlyMone, .of-filtro-planes.filtraMone .pe, .of-filtro-planes.filtraMone li[data-plan=plan_libre_inicia] {
  display: none;
}
.of-filtro-planes:not(.filtraMone) .pe, .of-filtro-planes.filtraMone .onlyMone {
  display: block;
}
.of-filtro-planes .check-movistar {
  background: transparent;
}
.of-filtro-planes .check-movistar .of-checkbox {
  min-width: 48px;
  height: 24px;
  background-color: #A2A3A3;
  border-radius: 100px;
  position: relative;
  cursor: pointer;
}
.of-filtro-planes .check-movistar .of-checkbox:before {
  content: "";
  border-radius: 50%;
  width: 20px;
  height: 20px;
  position: absolute;
  left: 2px;
  top: 2px;
  background: #fff;
  transition: all 0.2s linear;
}
.of-filtro-planes .check-movistar .of-checkbox.active {
  width: 48px;
  height: 24px;
  background-color: #019DF4;
  border-radius: 100px;
  position: relative;
}
.of-filtro-planes .check-movistar .of-checkbox.active:before {
  left: 26px;
}
.of-filtro-mod {
  margin-bottom: 38px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.of-mod-item {
  background: #fff;
  display: flex;
  padding: 20px 15px 20px 9px;
  align-items: flex-start;
  gap: 10px;
  position: relative;
  box-shadow: 1px 2px 2px #ddd;
  overflow: hidden;
  border-color: transparent;
  border-style: solid;
  border-width: 1px 1px 1px 6px;
  transition: border-color 0.15s ease-in-out;
  cursor: pointer;
}
.of-mod-item.active {
  border-color: #019df4;
  pointer-events: none;
  cursor: default;
}
.of-mod-item p {
  color: #50535A;
  font-size: 15px;
}
.of-mod-item small {
  display: block;
  font-size: 13px;
  color: #86888C;
}
.of-mod-item:first-of-type {
  border-radius: 6px 6px 0 0;
}
.of-mod-item:last-of-type {
  border-radius: 0 0 6px 6px;
}
.of-mod-img {
  width: 24px;
  max-height: 22px;
  transform: translateY(5px);
}
.of-breadcrumb a {
  color: #000;
}
.of-container {
  gap: 20px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
}
.of-wrap-res.open + .of-carac {
  max-height: 500px;
}
.of-card {
  background: #fff;
  padding: 32px 17px 18px;
  width: 100%;
  max-width: 270px;
  border-radius: 8px;
  box-shadow: 1px 2px 2px #ddd;
  position: relative;
}
.of-card-img {
  margin: 0 auto 12px;
  display: block;
  max-height: 184px;
  cursor: pointer;
}
.of-card-md {
  background: #BDE4A4;
  color: #3C7521;
  padding: 2px 6px;
  display: inline-block;
  border-radius: 4px;
  margin-bottom: 5px;
  font-size: 14px;
}
.of-card-md:empty {
  padding: 0;
}
.of-card-name {
  color: #000;
  font-size: 21px;
  line-height: 21px;
  margin-bottom: 5px;
  min-height: 42px;
  display: flex;
  align-items: center;
}
.of-card-desk, .of-card-hide {
  margin-bottom: 24px;
  color: #019DF4;
  position: relative;
  font-size: 15px;
  cursor: pointer;
}
.of-card-desk:after, .of-card-hide:after {
  content: "";
  width: 8px;
  height: 8px;
  display: inline-block;
  border-right: 1px solid #019DF4;
  border-bottom: 1px solid #019DF4;
  transform: translate(7px, -3px) rotate(45deg);
}
.of-card-hide {
  text-align: center;
  margin: 0;
}
.of-card-hide:after {
  transform: translate(7px, 2px) rotate(-135deg);
}
.of-price {
  position: relative;
}
.of-price-fullprice {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 8px;
}
.of-price-fullprice mark {
  background: #FBC7DE;
  font-size: 12px;
  line-height: 12px;
  color: #E63780;
  padding: 4px 6px;
  border-radius: 4px;
}
.of-price-fullprice span {
  font-size: 14px;
  line-height: 14px;
  padding: 0;
  border-radius: 4px;
  text-decoration: line-through;
  color: #b5b5b5;
}
.of-price-fullprice .llevando {
  text-decoration: none;
  color: #000;
  max-width: 120px;
}
.of-price-saleprice {
  font-size: 28px;
  line-height: 28px;
  margin-bottom: 6px;
  color: #019DF4;
}
.of-price-saleprice.altsize {
  font-size: 21px;
}
.of-price-dcto {
  font-size: 14px;
  color: #019DF4;
}
.of-maincta {
  transition: all 0.2s ease-in-out;
  color: #fff;
  padding: 13px 20px;
  display: block;
  border-radius: 100px;
  text-align: center;
  font-family: "TelefonicaWeb-Bold", arial, sans-serif;
  background-color: #019DF4;
  margin: 12px 0;
  cursor: pointer;
}
.of-maincta:hover {
  background-color: #0b2739;
}
.of-foot {
  border-top: 1px solid #ccc;
  padding-top: 10px;
  display: flex;
  gap: 15px;
}
.of-foot-sello {
  max-height: 29px;
}
.of-foot-cincog {
  max-width: 26px;
}
.of-carac {
  background: #fff;
  position: absolute;
  bottom: 128px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s linear;
  width: 100%;
  max-width: 236px;
  left: 0;
  right: 0;
  margin: auto;
}
.of-carac-wrap {
  padding: 20px 0 10px;
}
.of-carac-wrap .of-card-name {
  min-height: unset;
}
.of-carac-item {
  display: flex;
  padding: 10px 0;
  gap: 7px;
  align-items: flex-start;
}
.of-carac-item span {
  display: flex;
  flex-direction: column;
  font-size: 12px;
  line-height: 12px;
  color: #707070;
}
.of-carac-item span em {
  color: #000;
  font-size: 12px;
  line-height: 12px;
}
.of-carac-item:not(:last-of-type) {
  border-bottom: 1px solid #D3D4D3;
}
.of-modal-container {
  margin-bottom: 38px;
}
.of-modal-title {
  font-size: 22px;
}
.of-modal-txt {
  font-size: 16px;
  padding: 6px 0 10px;
  display: block;
  border-bottom: 1px solid #BCBCBC;
  margin-bottom: 10px;
}
.of-modal-txt mark {
  background: #E63780;
  font-size: 13px;
  line-height: 13px;
  color: #fff;
  padding: 4px 6px;
  border-radius: 4px;
  display: inline-block;
}
.of-modal-btnmodal {
  position: relative;
  display: flex;
  gap: 10px;
}
.of-modal-btnmodal span {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: 16px;
}
.of-modal-btnmodal:before {
  content: "";
  width: 46px;
  height: 30px;
  display: inline-block;
  background-image: url("../../../../movil/modal-despacho-gratis/img/reparto-24-negro.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
.of-modal-btnmodal .dg-modal-btn-abrir {
  margin-bottom: 10px;
  color: #019DF4;
  position: relative;
  cursor: pointer;
  font: 14px "TelefonicaWeb-Regular", arial, sans-serif;
  margin-bottom: 0;
}
.of-modal-btnmodal .dg-modal-btn-abrir:after {
  content: "";
  width: 8px;
  height: 8px;
  display: inline-block;
  border-right: 1px solid #019DF4;
  border-bottom: 1px solid #019DF4;
  transform: translate(1px, 0px) rotate(-45deg);
}
.of-resfilter {
  background: #fff;
  display: flex;
  border-radius: 8px;
  margin-top: 20px;
  border: 1px solid #eaeaea;
}
.of-resfilter-item {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  padding: 14px 10px;
  gap: 10px;
  cursor: pointer;
}
.of-resfilter-item.filter {
  border-right: 1px solid #eaeaea;
  position: relative;
}
.of-resfilter-item.filter:after {
  content: "+";
  font-family: sans-serif;
  width: 18px;
  height: 18px;
  font-size: 20px;
  line-height: 20px;
  background: #019DF4;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
}
.of-resfilter-item.order {
  position: relative;
}
.of-resfilter-item.order:after {
  content: "";
  width: 8px;
  height: 8px;
  display: inline-block;
  border-right: 1px solid #019DF4;
  border-bottom: 1px solid #019DF4;
  transform: translate(0, -2px) rotate(45deg);
}
.of-actions {
  padding: 12px 14px;
  border-bottom: 1px solid #ccc;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
}
.of-actions-wrap {
  display: flex;
  gap: 10px;
  align-items: center;
}
.of-actions-item {
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid #019DF4;
  border-radius: 8px;
  color: #019DF4;
  font-size: 14px;
  cursor: pointer;
}
.of-actions-item.cerrar {
  background: #019DF4;
  color: #fff;
}
.of-actions p {
  font-size: 18px;
}
.of-empty {
  background-color: #fff;
  margin-top: 20px;
  margin-bottom: 20px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  box-shadow: 1px 2px 2px #ddd;
  width: 100%;
  gap: 10px;
}
.of-empty-wrap {
  padding: 20px;
}
.of-empty-wrap p {
  color: #6a6a6a;
}
.of-empty-img {
  max-width: 150px;
  margin: -10px 0 0 15px;
}
.of-empty-title {
  font-size: 21px;
  line-height: 21px;
  margin-bottom: 5px;
}
.of-empty-btn {
  transition: all 0.2s ease-in-out;
  color: #fff;
  padding: 13px 20px;
  display: inline-block;
  border-radius: 100px;
  background-color: #019DF4;
  margin-top: 8px;
  cursor: pointer;
}
.of-empty-btn:hover {
  opacity: 0.6;
}
.of-popup {
  background: #f7f7f7;
  position: fixed;
  width: 100%;
  height: 100%;
  max-width: 800px;
  max-height: 560px;
  z-index: 99;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  border-radius: 8px;
}
.of-popup-trama {
  background: #0B2739;
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 98;
  top: 0;
  left: 0;
  opacity: 0.85;
}
.of-popup-head {
  background: #0B2739;
  color: #fff;
  font-size: 28px;
  line-height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
  padding: 8px 16px;
  border-radius: 7px 7px 0 0;
}
.of-popup-wrap {
  padding: 30px;
  max-width: 430px;
  margin: auto;
}
.of-popup-wrap h4 {
  color: #313235;
  font-size: 24px;
  line-height: 24px;
  font-family: telefonicaweb-bold;
  text-align: center;
  margin-bottom: 20px;
}
.of-popup-mods {
  display: flex;
  flex-direction: column-reverse;
  gap: 15px;
  padding: 15px 0;
}
.of-popup-items {
  box-shadow: 1px 2px 2px #ddd;
  border-color: #c4c4c4;
  border-style: solid;
  border-width: 1px 1px 1px 6px;
  border-radius: 8px;
  display: flex;
  flex-wrap: wrap;
  padding: 14px 15px;
  gap: 10px;
  cursor: pointer;
}
.of-popup-items.active {
  border-color: #E63780;
  cursor: default;
  pointer-events: none;
}
.of-popup-text {
  box-sizing: content-box;
  width: calc(56% - 5px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}
.of-popup-text small {
  color: #86888C;
  font-size: 14px;
  line-height: 14px;
}
.of-popup-text em {
  font-size: 16px;
  line-height: 15px;
}
.of-popup-price {
  width: calc(44% - 5px);
}
.of-popup-fullprice {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 3px;
  color: #86888c;
}
.of-popup-fullprice span {
  font-size: 14px;
  line-height: 14px;
  padding: 0;
  border-radius: 4px;
  text-decoration: line-through;
  color: #b5b5b5;
}
.of-popup-fullprice mark {
  background: #fbc7de;
  font-size: 12px;
  line-height: 12px;
  color: #e63780;
  padding: 2px 3px;
  border-radius: 4px;
}
.of-popup-saleprice {
  font-size: 18px;
  line-height: 18px;
  margin-bottom: 3px;
  color: #313235;
}
.of-popup-dcto {
  font-size: 14px;
  color: #878282;
}
.of-popup-logos {
  width: 333px;
  margin: auto;
  max-width: 100%;
}
.of-popup-submit {
  transition: all 0.2s ease-in-out;
  color: #fff;
  padding: 18px 20px;
  display: block;
  border-radius: 100px;
  text-align: center;
  background-color: #5CB615;
  margin: 12px auto;
  max-width: 300px;
  cursor: pointer;
}
.of-popup-submit:hover {
  background-color: #3C7521;
}
.of-popup-submit[disabled] {
  pointer-events: none;
  opacity: 0.5;
}
.of-fc:not(:empty) {
  margin-bottom: 10px;
}
.of-fc:not(:empty):before {
  content: "Filtros:";
  margin-right: 12px;
  font-size: 17px;
}
.of-fc span {
  background: #019DF4;
  position: relative;
  margin: 0 5px 5px 0;
  display: inline-flex;
  color: #fff;
  text-transform: capitalize;
  padding: 5px 25px 5px 8px;
  border-radius: 6px;
  font-size: 13px;
  line-height: 13px;
  align-items: center;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.of-fc span:hover {
  opacity: 0.8;
  filter: grayscale(0.5);
}
.of-fc span:before, .of-fc span:after {
  content: "";
  width: 14px;
  height: 1px;
  background: #fff;
  position: absolute;
  right: 5px;
}
.of-fc span:before {
  transform: rotate(45deg);
}
.of-fc span:after {
  transform: rotate(-45deg);
}

/* HIDDEN */
[data-hidden=movistarone] .cro-tarjeta.movistarone,
[data-hidden=movidescuentos] .cro-tarjeta.movidescuentos,
.of-popup-mods[data-select-plan=plan_libre_inicia] .of-popup-items[data-planex*=plan_libre_inicia],
.of-popup-mods[data-select-plan=plan_libre_full] .of-popup-items[data-planex*=plan_libre_full],
.of-popup-mods[data-select-plan=plan_libre_pro] .of-popup-items[data-planex*=plan_libre_pro],
.of-popup-mods[data-select-plan=plan_libre_ultra] .of-popup-items[data-planex*=plan_libre_ultra] {
  display: none !important;
}

[data-select-mod=boleta] [data-popup-mod=boleta],
[data-select-mod=tarjeta] [data-popup-mod=tarjeta] {
  border-color: #E63780;
}

/* .of-popup-mods[data-hidden="movidescuentos-show"] .of-popup-items:not(.movidescuentos) {
display: initial;
} */
.of-popup-mods[data-hidden=movidescuentos] .of-popup-items.movidescuentos {
  filter: grayscale(1);
  pointer-events: none;
  cursor: not-allowed;
}
.of-popup-mods[data-hidden=movidescuentos] .of-popup-items.movidescuentos:before {
  content: "No disponible";
  position: absolute;
  top: -9px;
  background: #b6b6b6;
  color: #fff;
  border-radius: 3px;
  padding: 2px 7px;
  font-size: 12px;
}
.of-popup-mods[data-hidden=movidescuentos] .of-popup-items.movidescuentos img {
  opacity: 0.4;
}
.of-popup-mods[data-hidden=movidescuentos] .of-popup-items.movidescuentos .of-popup-text {
  color: #9b9b9b;
}
.of-popup-mods[data-hidden=movidescuentos] .of-popup-items.movidescuentos .of-popup-price * {
  display: none;
}
.of-popup-mods[data-hidden=movidescuentos] .of-popup-items.movidescuentos .of-popup-price:before {
  content: "";
  min-height: 45px;
}

.of-pop-close {
  width: 30px;
  height: 30px;
  position: absolute;
  top: 10px;
  right: 10px;
  background: #019DF4;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(45deg);
  border-radius: 50%;
  /* opacity: 0.8; */
  opacity: 1;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  /* &:hover {
   opacity: 1;
   } */
}
.of-pop-close:after, .of-pop-close:before {
  content: "";
  height: 2px;
  width: calc(100% - 12px);
  background: #fff;
  display: block;
  position: absolute;
}
.of-pop-close:after {
  transform: rotate(90deg);
}

.of-busca {
  background: #019DF4;
  border-radius: 4px;
  display: flex;
  padding: 35px 83px;
  color: #fff;
  width: 100%;
  margin-top: 30px;
}
.of-busca > div {
  flex: 1 1 auto;
}
.of-busca > div:last-child {
  text-align: right;
}
.of-busca > div strong {
  font: 28px "TelefonicaWeb-Light", arial, sans-serif;
  display: block;
}
.of-busca > div span {
  font: 14px "TelefonicaWeb-Regular", arial, sans-serif;
  display: block;
}
.of-busca > div a {
  color: #019DF4;
  font: 16px "TelefonicaWeb-Regular", arial, sans-serif;
  background: #fff;
  height: 56px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 40px;
  padding: 0 20px;
}

.of-seg {
  background: #EBF7FF;
  display: flex;
  align-items: center;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 8px;
  border: 1px solid #D3D4D3;
  gap: 20px;
}
.of-seg-img {
  width: 26px;
}
.of-seg-title {
  font-size: 18px;
}
.of-seg-link {
  margin-left: auto;
  text-align: center;
  /* display: block; */
  width: 120px;
  color: #019DF4;
}
.of-seg-link:after {
  content: "";
  width: 8px;
  height: 8px;
  display: inline-block;
  border-right: 1px solid #019DF4;
  border-bottom: 1px solid #019DF4;
  transform: translate(1px, 0px) rotate(-45deg);
  margin-left: 5px;
}

.of-filtro-seg {
  align-items: flex-start;
  gap: 8px;
  padding: 12px;
  font-size: 13px;
}
.of-filtro-seg .of-seg-img {
  margin-top: 4px;
}
.of-filtro-seg .of-seg-link {
  margin-left: 4px;
}
.of-filtro-seg .of-seg-title {
  font-size: 15px;
  line-height: 18px;
  margin-bottom: 3px;
}

.of-seg-modal {
  background: #f7f7f7;
  position: fixed;
  width: 100%;
  height: 100%;
  max-width: 860px;
  max-height: 560px;
  z-index: 99;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  border-radius: 8px;
  padding: 30px 50px;
  border-left: 5px solid #019DF4;
  display: flex;
  flex-direction: column;
}
.of-seg-modal-close {
  width: 30px;
  height: 30px;
  position: absolute;
  top: 10px;
  right: 10px;
  /* background: $blue; */
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(45deg);
  border-radius: 50%;
  opacity: 1;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.of-seg-modal-close:after, .of-seg-modal-close:before {
  content: "";
  height: 2px;
  width: calc(100% - 12px);
  background: #019DF4;
  display: block;
  position: absolute;
}
.of-seg-modal-close:after {
  transform: rotate(90deg);
}
.of-seg-modal-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  margin-bottom: 10px;
}
.of-seg-modal-title + p {
  margin-bottom: 15px;
}
.of-seg-modal p {
  font-size: 15px;
  margin-bottom: 3px;
}
.of-seg-modal-otitle {
  margin: 5px 0 15px;
  font-size: 20px;
}
.of-seg-modal ul {
  margin-bottom: 15px;
  padding-left: 10px;
  font-size: 15px;
}
.of-seg-modal ul li {
  margin-bottom: 3px;
}
.of-seg-modal small {
  display: block;
  font-size: 12px;
}
.of-seg-modal-link {
  margin-top: auto;
  color: #019df4;
}
.of-seg-modal-link:after {
  content: "";
  width: 8px;
  height: 8px;
  display: inline-block;
  border-right: 1px solid #019df4;
  border-bottom: 1px solid #019df4;
  transform: translate(1px, 0px) rotate(-45deg);
  margin-left: 5px;
}
.of-seg-trama {
  background: #0B2739;
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 98;
  top: 0;
  left: 0;
  opacity: 0.85;
}
.of-seg-ribbon {
  background: #EBF7FF;
  padding: 10px 14px;
  border-radius: 8px;
  margin: 20px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
}

/*=============================*/
/* CUCARDA PREDOMINANTE */
/*=============================*/
.of-price {
  position: unset;
}

.of-price-fullprice .mark-float {
  position: absolute;
  background: rgb(230, 55, 128);
  top: 10px;
  left: 10px;
  max-width: 46px;
  height: 46px;
  padding: 12px 0px 0px 0px;
  text-align: center;
  text-transform: capitalize;
  border-radius: 50%;
  color: rgb(255, 255, 255);
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px;
  pointer-events: none;
}

.of-price-fullprice .mark-float txt {
  display: none;
}

.of-price-fullprice .mark-float::first-line {
  font-family: Telefonicaweb-bold;
  font-size: 120%;
  letter-spacing: -1px;
}

@media (max-width: 767px) {
  .of-price-fullprice .mark-float {
    top: 3px;
    right: 3px;
    left: unset;
    transform: scale(0.9);
  }
}
.exc_app {
  background: #0b2739;
  color: #fff;
  position: relative;
}
.exc_app .of-card-name, .exc_app .of-price-saleprice {
  color: #fff;
}
.exc_app .of-price-dcto, .exc_app .of-price-fullprice {
  color: #e0e0e0;
}
.exc_app .of-maincta {
  background: #fff;
  color: #019df4;
}
.exc_app .of-maincta:hover {
  background: #019df4;
  color: #fff;
}
.exc_app .of-carac {
  background: #0b2739;
}
.exc_app .of-carac-item:not(:last-of-type) {
  border-bottom: 1px solid rgba(1, 157, 244, 0.3411764706);
}
.exc_app .of-carac-item span {
  color: #b3b3b3;
}
.exc_app .of-carac-item span em {
  color: #fff;
}
.exc_app .of-card-md {
  background: #5CB615;
  color: #fff;
  opacity: 0;
}
.exc_app .of-foot {
  border-top: 1px solid rgba(255, 255, 255, 0.3019607843);
}
.exc_app:before {
  content: "Precio Exclusivo App";
  position: absolute;
  background: #5cb615;
  top: 0;
  right: 0;
  left: 0;
  width: max-content;
  margin: auto;
  font-size: 12px;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 0 0 6px 6px;
}

@media (max-width: 991px) {
  .exc_app {
    padding-top: 34px !important;
  }
  .exc_app .of-card-img-anchor {
    max-width: 35%;
  }
  .exc_app .of-card-res {
    color: #ffffff !important;
    border: 1px solid #ffffff !important;
  }
  .exc_app .of-card-res:after {
    border-right: 1px solid #ffffff !important;
    border-bottom: 1px solid #ffffff !important;
  }
}
.of-card.exc_app {
  order: 1;
}

.of-card:not(.exc_app) {
  order: 2;
}

.d-none {
  display: none !important;
}

.terminos {
  margin: 0 auto;
  margin-top: 60px;
  max-width: 1024px;
  width: calc(100% - 40px);
}
.terminos h2 {
  font-size: 32px;
  color: #36363B;
  text-align: center;
}
.terminos p {
  margin-top: 35px;
  color: #50535A;
  font-size: 14px;
}
.terminos p a {
  text-decoration: underline;
  color: #019df4;
}

.footer {
  width: 100%;
  height: 80px;
  background-color: #0B2739;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 60px;
}

.dg-modal {
  display: none;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  position: fixed;
  background: rgba(11, 39, 57, 0.6);
  z-index: 10;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
  overflow-y: auto;
  font-family: "TelefonicaWeb-Regular", arial, sans-serif;
}
.dg-modal.active {
  display: flex;
}
.dg-modal .body {
  background-color: white;
  max-width: 763px;
  width: 100%;
  border-radius: 16px;
  padding: 13px 32px 32px 32px;
  position: relative;
}
.dg-modal .body .close-btn {
  position: absolute;
  top: 32px;
  right: 32px;
  cursor: pointer;
}
.dg-modal .body h2 {
  font-size: 32px;
  color: #313235;
  margin-bottom: 46px;
  display: block;
}
.dg-modal .body > p {
  font-size: 16px;
  color: #50535a;
}
.dg-modal .body .card {
  background-color: #ebf7ff;
  margin-top: 20px;
  display: flex;
  gap: 12px;
  border-radius: 6px;
  padding: 12px 16px;
}
.dg-modal .body .card img {
  width: max-content;
  height: max-content;
}
.dg-modal .body .card h3 {
  font-size: 16px;
  color: #0b2739;
  font-family: "TelefonicaWeb-Bold", arial, sans-serif;
}
.dg-modal .body .card p {
  font-size: 16px;
  margin-top: 4px;
  color: #0b2739;
}
.dg-modal .body .dark {
  background-color: #0b2739;
}
.dg-modal .body .dark h3 {
  color: white;
}
.dg-modal .body .dark p {
  color: white;
}

@media all and (max-width: 775px) {
  .dg-modal {
    display: flex;
    align-items: flex-end;
    transition: all ease-in 0.3s;
    background-color: transparent;
    transform: translateY(100%);
  }
  .dg-modal .body {
    height: calc(100vh - 40px);
    overflow: scroll;
    border-radius: 16px 16px 0px 0px;
    text-align: left;
    padding: 18px 24px;
  }
  .dg-modal .body .close-btn {
    top: 16px;
    right: 16px;
  }
  .dg-modal .body .close-btn img {
    width: 24px;
    height: 24px;
  }
  .dg-modal .body h2 {
    font-size: 20px;
    margin-bottom: 27px;
  }
  .dg-modal.active {
    transform: translateY(0%);
    background: rgba(11, 39, 57, 0.6);
  }
}
.header {
  background-image: url(../img/bg.jpg);
  background-position: right;
  background-size: cover;
  background-repeat: no-repeat;
}
.header_franja {
  background-color: #019DF4;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header_container {
  display: flex;
  justify-content: center;
  gap: 64px;
  align-items: flex-end;
  height: 320px;
}
.header_info {
  height: 100%;
  color: white;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.header_recambio {
  background-color: #0082CC;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 16px;
  padding: 6px 12px;
  border-radius: 4px;
  width: max-content;
}
.header_title {
  font-size: 40px;
  display: flex;
  gap: 15px;
}
.header_title img {
  display: block;
  margin-top: -21px;
}
.header_subtitle {
  font-size: 23px;
  margin-top: 8px;
  max-width: 649px;
  line-height: 135%;
}
.header_img {
  display: block;
}

.despacho {
  background-color: #0B2739;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  gap: 12px;
}
.despacho p {
  font-size: 18px;
  color: white;
}
.despacho p strong {
  cursor: pointer;
}

@media (max-width: 750px) {
  .header {
    background-image: url(../img/bg-mobile.png);
    background-attachment: initial;
  }
  .header_franja {
    height: 50px;
  }
  .header_franja img {
    width: 35px;
  }
  .header_container {
    gap: 0px;
    height: 240px;
    position: relative;
    overflow-x: hidden;
    justify-content: flex-start;
  }
  .header_info {
    max-width: 211px;
    padding-left: 20px;
  }
  .header_recambio {
    font-size: 13px;
    padding: 4px 8px;
    margin-bottom: 8px;
  }
  .header_recambio img {
    width: 16px;
  }
  .header_title {
    font-size: 20px;
    flex-direction: column;
  }
  .header_title img {
    width: 251px;
  }
  .header_subtitle {
    font-size: 14px;
    margin-top: 12px;
    max-width: 193px;
  }
  .header_img {
    position: absolute;
    bottom: 0;
    right: 0;
    max-width: 349px;
    margin-right: -144px;
  }
  .despacho {
    height: 50px;
  }
  .despacho > img {
    max-width: 24px;
  }
  .despacho p {
    font-size: 14px;
  }
}
.equipos_titulo {
  text-align: center;
  margin-top: 60px;
  font-size: 32px;
  color: #6b6d70;
}
.equipos_filtro {
  display: flex;
  gap: 14px;
  margin: 0 auto;
  margin-top: 24px;
  width: max-content;
}
.equipos_filtro button {
  width: 89px;
  height: 89px;
  border-radius: 7px;
  box-shadow: 0px 0.967px 1.935px 0px rgba(0, 0, 0, 0.15);
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-family: "TelefonicaWeb-Bold", arial, sans-serif;
  transition: background-color ease-in 0.2s;
}
.equipos_filtro button:hover {
  border: 1px solid #80cef9;
  background-color: #f5f5f5;
  color: #80cef9;
}
.equipos_filtro button:hover img {
  filter: none;
}
.equipos_filtro .active {
  background-color: #019DF4;
  color: white;
}
.equipos_filtro .active img {
  filter: brightness(0) invert(1);
}
.equipos_list {
  max-width: 1128px;
  width: calc(100% - 40px);
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 0 auto;
  margin-top: 32px;
}
.equipos_card {
  background-color: white;
  max-width: 264px;
  width: 100%;
  border-radius: 8px;
  padding: 20px 24px 20px 24px;
  height: max-content;
  box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.1);
}
.equipos_card_left .sellos {
  display: none;
}
.equipos_card_right {
  width: 100%;
}
.equipos_card img {
  display: block;
}
.equipos_card_img {
  margin: 0 auto;
  height: 249px;
}
.equipos_card_cucarda {
  margin-top: 20px;
  background-color: #E63780;
  font-size: 12px;
  color: white;
  border-radius: 3px;
  width: max-content;
  padding: 1px 3px;
}
.equipos_card_titulo {
  font-size: 20px;
  line-height: 135%;
  color: #000;
  margin-top: 6px;
  min-height: 54px;
}
.equipos_card_detalles {
  margin-top: 24px;
  min-height: 105px;
  margin-bottom: 15px;
}
.equipos_card_detalles .item {
  padding-top: 6px;
  display: flex;
}
.equipos_card_detalles .item:not(:first-child) {
  border-top: 1px solid #e7e7e8;
}
.equipos_card_detalles .item::before {
  position: relative;
  content: "•";
  left: 0;
  top: 0;
  margin-right: 5px;
}
.equipos_card_detalles .item img {
  width: 24px;
}
.equipos_card_detalles .item p {
  color: #868b8c;
  font-size: 12px;
  font-family: "TelefonicaWeb-Regular", arial, sans-serif;
  line-height: 13.2px;
  color: #313235;
}
.equipos_card_detalles .item p span {
  font-family: "TelefonicaWeb-Bold", arial, sans-serif;
}
.equipos_card_detalles .item:first-child {
  padding-top: 0px;
  border-top: 0px;
}
.equipos_card .active-vermas img {
  transform: rotate(180deg);
}
.equipos_card_ver-detalles {
  font-size: 14px;
  color: #019DF4;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  font-family: "TelefonicaWeb-Regular", arial, sans-serif;
}
.equipos_card_ver-detalles img {
  transition: all ease-in 0.2s;
}
.equipos_card_solicitar {
  font-size: 16px;
  color: white;
  background-color: #019DF4;
  font-family: "TelefonicaWeb-Bold", arial, sans-serif;
  width: 100%;
  margin-top: 24px;
  padding: 12px;
  border-radius: 50px;
  display: flex;
  justify-content: center;
}
.equipos_card_sellos_desktop {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 17px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 16px;
}
.equipos_card_sellos_desktop img {
  height: 24px;
}

.paginacion-botones {
  width: max-content;
  margin: 0 auto;
  margin-top: 24px;
}
.paginacion-botones .botones {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}
.paginacion-botones .botones .dots {
  display: flex;
  gap: 8px;
  width: max-content;
}
.paginacion-botones .botones .dots a,
.paginacion-botones .botones .dots p {
  width: 30px;
  height: 30px;
  color: #86888c;
  font-size: 16px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.paginacion-botones .botones .dots p {
  align-items: flex-end;
  padding-bottom: 5px;
}
.paginacion-botones .botones .dots .active {
  color: white;
  background-color: #019DF4;
}
.paginacion-botones .botones .paginacion-mobile {
  display: none;
  position: relative;
}
.paginacion-botones .botones .paginacion-mobile .paginacion-select {
  background-color: white;
  border: none;
  padding: 12px;
  border-radius: 8px;
  font-size: 14px;
  font-family: "TelefonicaWeb-Regular", arial, sans-serif;
  color: #86888C;
  width: 103px;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.15);
}
.paginacion-botones .botones .paginacion-mobile .paginacion-select::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  background-image: url(../img/down-arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  top: 44%;
  right: 10px;
  transition: all ease-in 0.3s;
}
.paginacion-botones .botones .paginacion-mobile .active::after {
  transform: rotate(180deg);
  top: 30%;
}
.paginacion-botones .botones .paginacion-mobile .listado {
  width: 150px;
  position: absolute;
  display: flex;
  flex-direction: column;
  background-color: white;
  filter: drop-shadow(0px 2px 3px rgba(0, 0, 0, 0.1));
  max-height: 160px;
  overflow: scroll;
  border-radius: 8px;
}
.paginacion-botones .botones .paginacion-mobile .listado a {
  font-family: "TelefonicaWeb-Regular", arial, sans-serif;
  font-size: 14px;
  color: #86888C;
  padding: 12px;
  border-bottom: 1px solid #d3d4d3;
}
.paginacion-botones .botones .paginacion-mobile .listado .active {
  font-family: "TelefonicaWeb-Bold", arial, sans-serif;
}
.paginacion-botones .botones .left,
.paginacion-botones .botones .rigth {
  position: relative;
  width: 44px;
  height: 44px;
  background-color: white;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0px;
}
.paginacion-botones .botones .left::after {
  content: "";
  position: relative;
  width: 12px;
  height: 12px;
  background-image: url(../img/left-arrow-blue.svg);
  background-size: contain;
}
.paginacion-botones .botones .rigth::after {
  content: "";
  position: relative;
  width: 12px;
  height: 12px;
  background-image: url(../img/rigth-arrow-blue.svg);
  background-size: contain;
}
.paginacion-botones .botones .left-disabled::after {
  background-image: url(../img/disabled-left.svg);
}
.paginacion-botones .botones .rigth-disabled::after {
  background-image: url(../img/rigth-disabled.svg);
}
.paginacion-botones p {
  font-size: 12px;
  color: #86888c;
  text-align: center;
}

.show-only-mobile {
  display: none;
}

@media (max-width: 750px) {
  .equipos_titulo {
    text-align: left;
    margin-top: 40px;
    font-size: 20px;
    padding-left: 20px;
  }
  .equipos_overflow {
    width: 100%;
    overflow-x: scroll;
    padding: 0px 20px 2px;
  }
  .equipos_list {
    gap: 16px;
  }
  .equipos_card {
    max-width: 100%;
    padding: 24px 16px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
  }
  .equipos_card_left {
    width: 40%;
    max-width: 100px;
  }
  .equipos_card_left .sellos {
    display: flex;
    gap: 16px;
    margin-top: 16px;
  }
  .equipos_card_left .sellos img {
    height: 24px;
  }
  .equipos_card_right {
    width: 60%;
  }
  .equipos_card_right .of-price-saleprice {
    margin-top: 26px;
  }
  .equipos_card_img {
    max-width: 98px;
    height: auto;
    margin: 0px;
  }
  .equipos_card_cucarda {
    margin-top: 0px;
  }
  .equipos_card_titulo {
    font-size: 16px;
    margin-top: 4px;
    min-height: auto;
  }
  .equipos_card_detalles {
    min-height: auto;
    width: 100%;
    margin-top: 0px;
    margin-bottom: 0px;
  }
  .equipos_card_detalles .item {
    border-top: 1px solid #e7e7e8;
  }
  .equipos_card_ver-detalles {
    margin-top: 8px;
  }
  .equipos_card_solicitar {
    padding: 13px;
    margin-top: 0px;
  }
  .equipos_card_sellos_desktop {
    display: none;
  }
  .show-only-desktop {
    display: none;
  }
  .show-only-mobile {
    display: block;
  }
  .paginacion-botones .mostrando {
    margin-top: 12px;
  }
  .paginacion-botones .botones .left,
  .paginacion-botones .botones .rigth {
    font-size: 14px;
    color: #86888C;
    gap: 8px;
    width: max-content;
    background-color: transparent;
    box-shadow: none;
  }
  .paginacion-botones .botones .left {
    flex-direction: row-reverse;
  }
  .paginacion-botones .botones .dots {
    display: none;
  }
  .paginacion-botones .botones .paginacion-mobile {
    display: block;
  }
}
.modal {
  position: fixed;
  bottom: 0;
  background-color: rgba(11, 39, 57, 0.8);
  display: none;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100%;
  z-index: 10;
}
.modal .swipe-down {
  display: none;
}
.modal-body {
  position: relative;
  background-color: #ffffff;
  max-width: 847px;
  max-height: 560px;
  padding: 50px;
  border-radius: 16px;
  color: #313235;
  font-family: "TelefonicaWeb-Regular", arial, sans-serif;
}
.modal-close-btn {
  position: absolute;
  right: 40px;
  top: 40px;
  cursor: pointer;
}
.modal-close-btn img {
  width: 16px;
  height: 16px;
}
.modal-titulo {
  font-size: 28px;
  color: #313235;
}
.modal-parrafos {
  overflow: auto;
  height: 402px;
  margin-top: 24px;
  font-size: 16px;
  line-height: 135%;
  padding-right: 16px;
}
.modal-parrafos a {
  color: #019DF4;
}
.modal-parrafos::-webkit-scrollbar {
  width: 4px;
}
.modal-parrafos::-webkit-scrollbar-track {
  background-color: #e8e8e8;
  border-radius: 100px;
}
.modal-parrafos::-webkit-scrollbar-thumb {
  background-color: #7a7a7a;
  border-radius: 100px;
}
.modal-parrafos li {
  margin-bottom: 15px;
}

#envio .modal-body {
  max-width: 763px;
  max-height: 762px;
  padding: 32px;
}
#envio .modal-body .modal-titulo {
  font-size: 32px;
  line-height: 48px;
}
#envio .modal-body .modal-parrafos {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: initial;
  padding: 0;
}
#envio .modal-body .modal-parrafos .box-cart {
  padding: 12px 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border-radius: 6px;
  background: #ebf7ff;
}
#envio .modal-body .modal-parrafos .box-cart:last-child {
  background-color: #0b2739;
  color: white;
}
#envio .modal-body .modal-parrafos .box-cart div p {
  margin-top: 3px;
}
#envio .modal-body .modal-parrafos li {
  margin: 0;
}
#envio .modal-body .text-url-despacho {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}
#envio .modal-body .text-url-despacho a {
  color: #019df4;
  font-family: "TelefonicaWeb-Bold";
}
#envio .modal-body .text-url-despacho a:hover {
  opacity: 0.7;
}

@media (max-width: 768px) {
  .modal {
    align-items: flex-end;
  }
  .modal .swipe-down {
    position: absolute;
    top: 0;
    left: 0px;
    width: 100%;
    height: 35px;
    display: block;
  }
  .modal-body {
    border-radius: 16px 16px 0px 0px;
    width: 100%;
    padding: 40px 16px 32px 16px;
    transition: all ease-in-out 300s;
    max-height: initial;
  }
  .modal-body::after {
    content: " ";
    position: absolute;
    background-color: #ced4d7;
    width: 40px;
    height: 4px;
    border-radius: 5px;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    margin-top: 6px;
  }
  .modal-titulo {
    font-size: 20px;
    text-align: center;
  }
  .modal-parrafos {
    font-size: 14px;
    padding-right: 15px;
    height: 70vh;
  }
  .modal-btn {
    width: 100%;
    padding-right: 10px;
  }
  .modal-close-btn {
    width: 16px;
    height: 16px;
    margin-top: 16px;
    margin-right: 16px;
    display: none;
  }
  .modal .modal-email {
    padding: 90px 40px;
  }
  #envio .modal-body {
    padding: 24px;
    padding-right: 8px;
  }
  #envio .modal-body .modal-titulo {
    font-size: 20px;
    line-height: 27px;
    text-align: center;
    margin-top: 18px;
  }
  #envio .modal-body .modal-parrafos {
    margin-top: 24px;
    font-size: 16px;
    line-height: 21.6px;
    height: 70vh;
    padding-right: 10px;
  }
  #envio .modal-body .modal-parrafos .c-canales {
    flex-wrap: wrap;
    margin-top: 13px;
  }
}
@media all and (min-width: 992px) {
  .of-card-res, .of-modal-res, .of-actions {
    display: none;
  }
  .of-empty-btn.alt-mobile {
    display: none;
  }
  .of-empty-btn.alt-desktop {
    margin-top: 30px;
    background: transparent;
    border: 1px solid #019DF4;
    color: #019DF4;
    width: 100%;
    text-align: center;
  }
  .of-empty-btn.alt-desktop:hover {
    background: #019DF4;
    color: #fff;
    opacity: 1;
  }
}
@media all and (max-width: 991px) {
  .of-modal-container.of-modal-res {
    margin: 0;
    text-align: center;
  }
  .of-modal-btnmodal {
    align-items: center;
    margin-bottom: 20px;
  }
  .of-modal-btnmodal span {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
  }
  .of-tienda {
    flex-direction: column;
    width: 100%;
    padding: 15px;
    gap: 20px;
  }
  .of-tienda .md-banner {
    background-position: 4% calc(100% + 50px), calc(100% + 14px) calc(0% - 44px);
    background-size: 80px;
    min-height: 150px;
  }
  .of-tienda .md-banner-wrap {
    max-width: 230px;
    margin: 0 auto;
    font-size: 14px;
  }
  .of-tienda .md-banner-txt {
    font-size: 15px;
    line-height: 14px;
  }
  .of-tienda .md-banner-img {
    max-width: 180px;
    margin: 0 auto 10px;
    display: block;
  }
  .of-equipos {
    width: 100%;
  }
  .of-seg-modal {
    padding: 40px 15px 30px;
    height: 80%;
    max-height: unset;
    overflow: auto;
    width: 93%;
  }
  .of-seg-modal-title {
    font-size: 20px;
  }
  .of-seg-modal-link {
    font-size: 14px;
    max-width: 200px;
  }
  .of-filtro {
    max-width: unset;
    /* text-align: center; */
  }
  .of-filtro-seg {
    text-align: left;
  }
  .of-filtro-wrap {
    position: fixed;
    z-index: 9;
    background: #f5f5f5;
    top: 0;
    right: 0;
    width: calc(100% - 30px);
    height: 100vh;
    display: none;
  }
  .of-filtro-wrap.byorder .of-filtro-wrap-res {
    padding: 0;
  }
  .of-filtro-wrap.byorder .of-filtro-wrap-res > div:not(.of-filtro-ordenar), .of-filtro-wrap.byorder .of-filtro-title {
    display: none;
  }
  .of-filtro-wrap.byorder .of-filtro-ordenar {
    display: block;
    margin-bottom: 20px;
  }
  .of-filtro-wrap.byorder .of-filtro-ordenar ul {
    background: transparent;
    box-shadow: none;
    padding: 0;
  }
  .of-filtro-wrap.byorder .of-filtro-ordenar ul li {
    padding: 24px 20px;
    border-bottom: 1px solid #dfdfdf !important;
  }
  .of-filtro-wrap.byorder .of-filtro-ordenar ul li:before {
    content: unset;
  }
  .of-filtro-wrap.byorder .of-filtro-ordenar ul li.active {
    background: #ebf7ff;
    font-family: telefonicaweb-bold;
  }
  .of-filtro-wrap-res {
    overflow: auto;
    display: flex;
    height: calc(100% - 60px);
    padding: 24px 24px 200px;
    flex-direction: column;
  }
  .of-filtro-wrap-res .of-filtro-marcas {
    /* order: 1; */
    margin-bottom: 20px;
  }
  .of-filtro-wrap-res .of-filtro-movides ul, .of-filtro-wrap-res .of-filtro-mod, .of-filtro-wrap-res .of-filtro-planes {
    margin-bottom: 20px;
  }
  .of-filtro-wrap-res .of-filtro-title {
    margin-bottom: 10px;
  }
  .of-filtro-wrap:before {
    content: "";
    background: #0b2739;
    display: block;
    height: 100%;
    width: 30px;
    left: -30px;
    top: 0;
    position: absolute;
    opacity: 0.9;
  }
  .of-filtro-wrap .of-modal-container, .of-filtro-wrap .of-filtro-ordenar, .of-filtro-wrap .of-filtro-seg {
    display: none;
  }
  .of-filtro-marcas .of-ver-marcas {
    display: none;
    /* &.open {display: flex;} */
  }
  .of-filtro-marcas .marcas {
    display: flex;
  }
  .of-filtro-marcas .marcas.close {
    display: none;
  }
  .of-filtro-marcas .of-filtro-title {
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
  }
  .of-filtro-marcas .of-filtro-title:after {
    /* content: ""; */
    width: 12px;
    height: 12px;
    display: inline-block;
    border-right: 1px solid #019df4;
    border-bottom: 1px solid #019df4;
    transform: translate(-3px, -3px) rotate(45deg);
    margin-left: auto;
  }
  .of-filtro-marcas .of-filtro-title.active:after {
    transform: translate(-3px, 4px) rotate(225deg);
  }
  .of-menu-wrap {
    flex-direction: column;
    align-items: flex-start;
    background: #F5F5F5;
    padding: 0;
  }
  .of-breadcrumb {
    padding: 16px;
    font-size: 14px;
  }
  .of-btn {
    /* text-align: center; */
    font-size: 13px;
    white-space: nowrap;
    padding: 14px 8px 3px;
  }
  .of-btn em {
    font-size: 13px;
  }
  .of-btns {
    background: #fff;
    overflow: auto;
    width: calc(100vw - 17px);
    padding: 0 10px 10px;
  }
  .of-card {
    max-width: calc(50% - 10px);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 6px;
  }
  .of-card-img {
    margin: 0;
    max-width: 35%;
  }
  .of-card-show:not(.of-card-res) {
    display: none;
  }
  .of-card-name {
    font-size: 18px;
    line-height: 18px;
    min-height: unset;
    max-width: calc(100% - 34px);
  }
  .of-card-res {
    width: calc(50% - 3px);
    transition: all 0.2s ease-in-out;
    padding: 13px;
    display: block;
    border-radius: 100px;
    text-align: center;
    font-size: 13px;
    color: #019DF4;
    border: 1px solid #019DF4;
    margin: 5px 0;
    cursor: pointer;
  }
  .of-card-res:after {
    content: "";
    width: 8px;
    height: 8px;
    display: inline-block;
    border-right: 1px solid #019DF4;
    border-bottom: 1px solid #019DF4;
    transform: translate(7px, -3px) rotate(45deg);
  }
  .of-card-hide {
    display: none;
  }
  .of-foot {
    width: 100%;
  }
  .of-wrap-res {
    max-width: 60%;
  }
  .of-maincta {
    width: calc(50% - 3px);
    font-size: 13px;
    font-family: inherit;
    margin: 5px 0;
  }
  .of-price-saleprice {
    font-size: 26px;
    line-height: 26px;
  }
  .of-price-saleprice.altsize {
    font-size: 18px;
  }
  .of-price-dcto {
    font-size: 13px;
    line-height: 13px;
  }
  .of-carac {
    position: relative;
    bottom: unset;
    max-width: unset;
  }
  .of-carac-wrap {
    padding: 0;
  }
  .of-carac-wrap .of-card-name {
    display: none;
  }
  .of-empty {
    flex-direction: column-reverse;
  }
  .of-empty-img {
    margin: -100px 10px 0 auto;
    position: relative;
    z-index: 1;
    max-width: 130px;
  }
  .of-empty-wrap {
    margin-right: auto;
    position: relative;
    z-index: 2;
    display: block;
  }
  .of-empty-btn.alt-desktop {
    display: none;
  }
  .of-empty-btn.alt-mobile {
    margin-top: 30px;
    background: transparent;
    border: 1px solid #019DF4;
    color: #019DF4;
    width: 100%;
    text-align: center;
  }
  .of-empty-btn.alt-mobile:hover {
    background: #019DF4;
    color: #fff;
    opacity: 1;
  }
}
@media all and (max-width: 768px) {
  .of-price-fullprice mark txt {
    display: none;
  }
  .policy {
    padding: 0;
  }
  .of-container {
    justify-content: center;
  }
  .of-card {
    max-width: 400px;
    padding: 14px;
  }
  .of-btns {
    width: 100vw;
  }
  .of-popup {
    max-height: 480px;
    border-radius: 30px 30px 0 0;
    top: unset;
    transition: bottom 0.4s ease-in-out;
  }
  .of-popup-head {
    background: transparent;
    color: #0b2739;
    text-align: center;
    font-size: 16px;
    min-height: unset;
  }
  .of-popup-wrap {
    padding-top: 0;
  }
  .of-popup[hidden] {
    display: block !important;
    bottom: -100%;
    transition: bottom 0s ease-in-out;
  }
  .of-popup:not([hidden]) {
    bottom: 0%;
  }
  .of-popup:before {
    content: "";
    height: 3px;
    width: 60%;
    background: #313235;
    display: block;
    left: 0;
    right: 0;
    margin: auto;
  }
  .of-busca {
    flex-direction: column;
    padding: 25px 30px;
    width: 100%;
  }
  .of-busca > div {
    text-align: center !important;
  }
  .of-busca > div span {
    font-size: 12px;
    margin-top: 5px;
  }
  .of-busca > div:last-child {
    padding: 10px 0 0 0;
    margin: 0 auto;
  }
  .terminos {
    margin-top: 72px;
  }
  .terminos h2 {
    font-size: 24px;
  }
  .terminos p {
    margin-top: 32px;
  }
  .footer {
    height: 70px;
    margin-top: 48px;
  }
}/*# sourceMappingURL=bundle.css.map */