@font-face {
  font-family: 'TelefonicaWeb-Light';
  src: url('./fonts/TelefonicaWeb-Light.woff') format('woff');
  font-weight: 300; 
  font-style: normal;
}

@font-face {
  font-family: 'TelefonicaWeb-Regular';
  src: url('./fonts/TelefonicaWeb-Regular.woff') format('woff');
  font-weight: 400; 
  font-style: normal;
}

@font-face {
  font-family: 'TelefonicaWeb-Bold';
  src: url('./fonts/TelefonicaWeb-Bold.woff') format('woff');
  font-weight: 700; 
  font-style: normal;
}
body {
  background: #000000;
  width: 100%;    
  box-sizing: border-box;

}
.iphone-section {
  padding: 40px 20px;
  background-color: #ffffff;
  font-family: "TelefonicaWeb-Regular", arial, sans-serif;
}

.iphone_text {
  max-width: 800px;      
  margin: 0 auto;         
  text-align: center;    
  padding: 40px 15px;     
}

.iphone_text .title_iphone {
  font-family: "TelefonicaWeb-Bold", arial, sans-serif;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 30px;
  font-weight: 700;
}

.iphone_text .description {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  /* color: #555;             */
}


.iphone-grid {
  display: grid;
  grid-template-columns: repeat(4, 288px); 
  gap: 30px;
  justify-content: center; 
}


.iphone-card {
  text-align: center;
  background: #fff;
  border-radius: 12px;
  /* padding: 20px; */
  width: 288px;
}

.iphone-img {
  width: 100%;
  max-width: 220px;
  height: auto;
  margin: 0 auto 24px;
  display: block;
  transition: 0.3s ease-in-out;
}

.iphone-name {
  margin: 10px 0;
  font-size: 18px;
  font-weight: bold;
}

/* Colores */
.iphone-colors {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 24px 0;
}

.color-wrapper {

  width: 40px;
height: 40px;


  border-radius: 50%;
  border: 2px solid #9EA0A3;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.color-circle.active {
  border: 2px solid #0097EE;
}

.color-circle:hover {
  transform: scale(1.05);
}

.color-wrapper.active {
  border: 2px solid #0097EE;
    background-color: #DDF3FF;

}

.color-circle {
  width: 24px;
height: 24px;
opacity: 1;
  border-radius: 50%;
    border: 2px solid #9EA0A3;



}

.iphone-features {
  width: 288;
height: 336;
border-radius: 12px;
opacity: 1;
border-width: 1px;
border: 2px solid #E7E7E8;

}

.iphone-features li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-size: 14px;
}

.iphone-features i {
  margin-right: 10px;
  font-size: 18px;
  /* color: #0097EE; */
}

.iphone-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.iphone-features li {
  display: flex;
  align-items: center;
  justify-content: space-between; 
  padding: 16px;
}
.divider {
  border: none;
  border-top: 1px solid #ddd;
  margin: 0 16px;
}



.feature-left {
  display: flex;
  align-items: center; 
  gap: 8px; 
}

.feature-text {
  font-size: 16px;
  color: #505254;
}

.feature-value {
  font-size: 16px;
  font-weight: bold;
  color: #000;
  line-height: 24px;
}

@media (max-width: 991px) {
  .iphone-grid {
    grid-template-columns: 1fr 1fr;

  }
}
@media (max-width: 600px) {
  .iphone-grid {
    grid-template-columns: 1fr;

  }
}
@media (max-width: 768px) {
  .iphone-grid {
    display: flex;                 
    overflow-x: auto;               
    gap: 20px;                      
    scroll-snap-type: x mandatory;  
    -webkit-overflow-scrolling: touch;
    padding-bottom: 10px;
    justify-content: flex-start;
    width: 100%;

  }

  .iphone-card {
    flex: 0 0 100%;                 
    max-width: 280px;               
    scroll-snap-align: start;       
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: none;
  }
  .iphone-features{
    min-width: 242px;
  }
  .iphone-grid::-webkit-scrollbar {
    display: none;
  }
}


.feature-section {
  background-color: #1D1D1F; 
  padding: 80px 70px;
  font-family: "TelefonicaWeb-Regular", arial, sans-serif;
font-weight: 400;
font-size: 18px;
line-height: 24px;
letter-spacing: 0%;
text-align: center;
vertical-align: middle;

}

.parent-feature {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 20px;
  
}

.div1 { 
  grid-area: 1 / 1 / 3 / 2;   
  font-family: "TelefonicaWeb-Bold", arial, sans-serif;
font-weight: 700;
font-size: 24px;
line-height: 32px;
letter-spacing: 0%;
text-align: center;
vertical-align: middle;

}
.div2 { grid-area: 1 / 2 / 2 / 3; }
.div3 { grid-area: 1 / 3 / 2 / 4; }
.div4 { grid-area: 1 / 4 / 2 / 5; }
.div5 { 
  grid-area: 2 / 2 / 3 / 5;   
  font-family: "TelefonicaWeb-Bold", arial, sans-serif;
  font-weight: 700;
font-size: 24px;
line-height: 32px;
letter-spacing: 0%;
text-align: center;
vertical-align: middle;
}

.feature-card {
  background-color: #000; 
  color: #fff;
  padding: 20px;
  border-radius: 12px;
  text-align: center;

  display: flex;             
  flex-direction: column;    
  justify-content: center;   
  align-items: center;       
}


.feature-card img {
  max-width: 100%;
  height: auto;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .parent-feature {
    display: flex;
    flex-direction: column;
    align-items: center; 
    gap: 20px; 
  }

  .parent-feature > div {
    width: 90%; 
    max-width: 400px;
  }
}




button {
  font-family: "TelefonicaWeb-Regular", arial, sans-serif;
}

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

.congratulations {
  display: flex;
  width: 420px;
  height: 504px;
  padding: 32px 32px 48px 32px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-shrink: 0;
}
.congratulations img.ico-felicidades {
  margin-top: 2.5rem;
}
.congratulations h1.listo {
  color: #1B1B1C;
  text-align: center;
  font-family: "TelefonicaWeb-Bold", arial, sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 35%;
  /* 32.4px */
}
.congratulations h1 {
  color: var(--secundario-azul-oscuro-900, #0b2739);
  text-align: center;
  font-family: "TelefonicaWeb-Bold", arial, sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 135%;
  /* 32.4px */
}
.congratulations p.listo {
  color: #6B6D70;
  text-align: center;
  font-family: "TelefonicaWeb-Light", arial, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
  /* 21.6px */
}
.congratulations p {
  color: var(--secundario-azul-oscuro-900, #0b2739);
  text-align: center;
  font-family: "TelefonicaWeb-Light", arial, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
  /* 21.6px */
}
.congratulations .logo {
  width: 81.818px;
  height: 81.818px;
  flex-shrink: 0;
  fill: var(--primario-azul-movistar-300, #ebf7ff);
  background-image: url("../assets/img/2023/iconos/ellipse.svg");
}

.failed {
  display: flex;
  width: 420px;
  height: 504px;
  padding: 32px 32px 48px 32px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-shrink: 0;
}
.failed img.ico-error {
  margin-top: 2.5rem;
}
.failed h1.sentimos {
  color: #1B1B1C;
  text-align: center;
  font-family: "TelefonicaWeb-Bold", arial, sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 35%;
  /* 32.4px */
}
.failed p.sentimos {
  color: #6B6D70;
  text-align: center;
  font-family: "TelefonicaWeb-Light", arial, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
  /* 21.6px */
}

.of-container {
  max-width: 1180px;
  width: calc(100% - 30px);
  margin: 0 auto;
}

.tab-portabilidad {
  gap: 20px;
}

.if_parrilla_attr {
  display: flex;
  align-items: center;
  text-align: left;
  font-size: 12px;
  line-height: 100%;
  position: relative;
  gap: 10px;
  padding: 0 24px 20px;
}

.logo-header {
  margin-bottom: 24px;
  height: 37px;
  width: 139px !important;
}

.of-header {
  position: relative;
  background: #000000;
}
.of-header-container {
  padding: 100px 0px 0px 0px;
  display: flex;
  justify-content: space-between;
  max-width: 85%;
  width: calc(100% - 40px);
  margin: 0 auto;
}
.of-header-container h1 {
  color: #fff;
font-weight: 400;
font-size: 28px;
line-height: 32px;
letter-spacing: 0%;

  font-family: 'TelefonicaWeb-Regular';
  color: #fff;
  width: 65%;
  margin-bottom: 0;
}

.of-header-container h1 strong {
  font-family: "TelefonicaWeb-Bold", arial, sans-serif;
}
.of-header-container h1 span {
  color: #fff;
font-weight: 700;
  display: inline;

font-style: Bold;
font-size: 28px;
line-height: 32px;
letter-spacing: 0%;

}
.of-header-container h1 .cube {
  margin-bottom: -5px;
}


.header-mobile {
  background-image: url(./../assets/img/2023/bg-header-mobile.svg);
  min-height: 576px;
  display: flex;
  align-items: center;
}
.header-mobile .of-header-container {
  justify-content: flex-end;
}
.header-mobile h1 {
  margin-top: 0px;
  margin-left: 0px;
  margin-bottom: 34px;
}
.header-mobile .of-form-block {
  width: 420px;
}

.of-form {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 500px;
  width: 100%;
  margin: 0 auto;
padding: 30px 40px 0px 30px;  background: #fff;
  border-radius: 16px;
  width: 500px;
  height: 536px;
}
.of-form h2 {
  font-family: "TelefonicaWeb-Bold", arial, sans-serif;
  color: #0B2739;
  font-size: 18px;
  font-weight: 700;
  line-height: 135%;
  margin: 0;
}
.of-form p {
  color: #6B6D70;
  font-size: 16px;
  font-family: "TelefonicaWeb-Regular", arial, sans-serif;
  margin: 0;
}
.of-form-block {
  position: relative;
  min-width: 420px;
}
.of-form-body {
  display: none;
  margin: 0 -30px 0;
  padding: 25px 24px 10px;
  margin-bottom: 0px;
}
.of-form-body.active {
  display: block;
}
.of-form-info {
  font-size: 14px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
}
.of-form-info img {
  margin-right: 10px;
}
.of-form-toggler {
  cursor: pointer;
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #019DF4;
  padding: 5px 0 10px 5px;
  width: 100%;
  justify-content: center;
  margin-bottom: 10px;
}
.of-form-toggler i {
  height: 8px;
  width: 8px;
  border-right: 2px solid #019DF4;
  border-top: 2px solid #019DF4;
  transform: rotate(135deg);
  margin: 0px 0 0 auto;
}
.of-form-toggler.active i {
  margin: 7px 0 0 auto;
  transform: rotate(-45deg);
}
.of-form-toggler img {
  margin-right: 10px;
}
.of-form-negative {
  width: 100%;
  height: 50px;
  border-radius: 50px;
  padding: 16px 5px;
  transition: opacity 0.2s;
  font-size: 16px;
  background: #fff;
  cursor: pointer;
  color: #019DF4;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  min-height: 56px;
  font-family: "TelefonicaWeb-Bold", arial, sans-serif;
  border: solid 1px #019DF4;
  margin-bottom: 2rem;
}
.of-form-negative:hover {
  opacity: 0.8;
}
.of-form-negative img {
  animation: rotation infinite 2s linear;
}
@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.of-form-submit {
  width: 100%;
  height: 50px;
  border-radius: 50px;
  padding: 16px 5px;
  transition: opacity 0.2s;
  font-size: 16px;
  background: #019DF4;
  cursor: pointer;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  min-height: 56px;
  font-family: "TelefonicaWeb-Bold", arial, sans-serif;
}
.of-form-submit:hover {
  opacity: 0.8;
}
.of-form-submit img {
  animation: rotation infinite 2s linear;
}
@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.of-form-contentlist {
  display: none;
  max-height: 130px;
  overflow-y: auto;
  list-style: none;
  padding: 0;
  margin: 0;
  position: absolute;
  top: 100%;
  background-color: #fff;
  width: 100%;
  border-radius: 8px;
  border: 1px solid #dedede;
  z-index: 10;
}
.of-form-contentitem {
  position: relative;
  font: 13px "TelefonicaWeb-Light", arial, sans-serif;
  cursor: pointer;
  padding: 10px 15px;
}
.of-form-contentitem + * {
  border-top: 1px solid #dedede;
}
.of-form-contentitem.active {
  background-color: #019DF4;
  color: #fff;
}
.of-form-label {
  display: inline-block;
  background-color: transparent;
  position: absolute;
  top: calc(50% - 9px);
  left: 10px;
  margin-bottom: 0;
  padding: 0 5px;
  transition: top 0.2s;
  cursor: text;
  pointer-events: none;
  font: 15px "TelefonicaWeb-Regular", arial, sans-serif;
}
.of-form .tooltipCall {
  display: block;
}
.of-form .tooltip {
  color: #ED5264;
  font: 12px "TelefonicaWeb-Regular", arial, sans-serif;
  margin-top: 3px;
  margin-left: 10px;
}
.of-form .input-email .of-form-input {
  padding-left: 141px;
}
.of-form .input-phone .of-form-input {
  padding-left: 149px;
}
.of-form .input-rut .of-form-input {
  padding-left: 51px;
}
.of-form .input-email,
.of-form .input-phone,
.of-form .input-rut,
.of-form .input-select {
  margin-bottom: 0;
}
.of-form .input-select .of-form-input {
  padding-left: 72px;
}
.of-form .input-select-v2 .of-form-input {
  padding-left: 72px;
}
.of-form-group, .of-form-row {
  height: 56px;
  position: relative;
}
.of-form-group ul, .of-form-row ul {
  display: none;
  list-style: none;
  padding: 0;
  margin: 0;
  position: absolute;
  top: 100%;
  background-color: #fff;
  width: 100%;
  border-radius: 8px;
  border: 1px solid #dedede;
  z-index: 10;
}
.of-form-group li, .of-form-row li {
  position: relative;
  font: 13px "TelefonicaWeb-Light", arial, sans-serif;
  cursor: pointer;
  padding: 10px 15px;
}
.of-form-group li + *, .of-form-row li + * {
  border-top: 1px solid #dedede;
}
.of-form-group li:hover, .of-form-row li:hover {
  background-color: #019DF4;
  color: #fff;
}
.of-form-group.active .of-form-input, .of-form-row.active .of-form-input {
  padding-left: 15px !important;
}
.of-form-group.active .of-form-label, .of-form-row.active .of-form-label {
  top: calc(50% - 36px);
  background-color: #fff;
  font-size: 12px;
  color: #019DF4;
}
.of-form-group.waiting::before, .of-form-row.waiting::before {
  content: " ";
  position: absolute;
  height: 15px;
  width: 15px;
  top: 15px;
  right: 15px;
  border-radius: 50%;
  border: 2px solid #019DF4;
  border-color: #019DF4 transparent #019DF4 transparent;
  animation: waiting 1.2s linear infinite;
}
.of-form-group.waiting::after, .of-form-row.waiting::after {
  content: none;
}
.of-form-group.error .of-form-input, .of-form-row.error .of-form-input {
  border-color: #ED5264;
}
.of-form-group.error .of-form-label, .of-form-row.error .of-form-label {
  color: #36363B;
  font-weight: bold;
}
.of-form-group.errorCall .of-form-input, .of-form-row.errorCall .of-form-input {
  border-color: #ED5264;
}
.of-form-group.errorCall .of-tooltip, .of-form-row.errorCall .of-tooltip {
  display: flex;
}
.of-form-group.input-numero .of-tooltip, .of-form-group.input-dpto .of-tooltip, .of-form-row.input-numero .of-tooltip, .of-form-row.input-dpto .of-tooltip {
  width: calc(200% + 20px);
}
.of-form-group.input-dpto .of-tooltip, .of-form-row.input-dpto .of-tooltip {
  left: unset;
  right: 0;
}
.of-form-group.input-dpto .of-tooltip::after, .of-form-row.input-dpto .of-tooltip::after {
  left: unset;
  right: 30px;
}
.of-form-input {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  border: 1px solid #36363B;
  box-sizing: border-box;
  padding: 0 10px;
  font: 15px "TelefonicaWeb-Light", arial, sans-serif;
  transition: border 0.2s, padding-left 0.2s;
}
.of-form-input:focus {
  outline: none;
  border: 1px solid #019DF4;
}
.of-form-input::placeholder {
  font-size: 15px;
  color: #a2a2a2;
}
.of-form-input:disabled {
  background-color: #eaeaea;
}
.of-form-input:disabled + .of-form-label {
  color: #a2a2a2;
  background-color: transparent;
}
.of-form-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.of-form-row .of-form-group {
  width: calc(50% - 10px);
}

.banner_ps5 {
  display: flex;
  justify-content: center;
  margin-top: 25px;
}
.banner_ps5 .cont-img {
  background: #011824;
  border: 1px solid #ffffff;
  border-radius: 4px 0px 0px 4px;
  width: 192px;
  height: 69px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner_ps5 .contrata {
  background: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 0px 2px 2px 0px;
  padding: 11px 14px 16px 21px;
  align-items: center;
  width: 447px;
  height: 69px;
}
.banner_ps5 .contrata p.mobile {
  display: none;
}
.banner_ps5 .contrata p.desktop {
  font-size: 18px;
  line-height: 22px;
  font-family: "TelefonicaWeb-Regular";
  color: #fff;
  text-align: left;
}
.banner_ps5 .contrata p span {
  color: #fff;
  font-size: 16px;
  line-height: 22px;
  background: #e63780;
  border-radius: 2px;
  padding: 1px 4px;
}
.banner_ps5 .contrata p span strong {
  line-height: 20px;
}
.banner_ps5 .contrata .verDetalle {
  font-size: 14px;
  line-height: 17.5px;
  color: #008edd;
  position: relative;
  top: -20px;
  left: 143px;
}
.banner_ps5 .contrata .verDetalle::after {
  content: "";
  position: relative;
  display: inline-block;
  top: 0px;
  margin-left: 5px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #008edd;
  border-right: 2px solid #008edd;
  transform: rotate(45deg);
}

.cards-pack_container {
  gap: 15px;
  margin-top: 0px !important;
}

.of-beneficios {
  background-color: #EBF7FF;
  padding: 80px 0px;
}
.of-beneficios h2 {
  font-size: 28px;
  color: #313235;
  text-align: center;
}
.of-beneficios-listado {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
  max-width: 1168px;
  width: calc(100% - 40px);
  margin: 0 auto;
  margin-top: 32px;
}
.of-beneficios-card {
  background-color: white;
  max-width: 368px;
  padding: 24px;
  min-height: 32px;
  border-radius: 16px;
}
.of-beneficios-card h3 {
  display: flex;
  align-items: center;
  gap: 24px;
  font-family: "TelefonicaWeb-Bold", arial, sans-serif;
  font-size: 16px;
  color: #0b2739;
}
.of-beneficios-card p {
  margin-top: 18px;
  font-size: 14px;
  color: #86888C;
  line-height: 125%;
}

.header-hogar {
  background-image: url(../img/2023/bg-header.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 33px;
}
.header-hogar .container {
  position: relative;
  max-width: 1515px;
  margin: 0 auto;
  display: flex;
  padding-left: 174px;
  align-items: center;
}
.header-hogar .container .btn-back {
  position: absolute;
  font-size: 14px;
  display: flex;
  align-items: center;
  left: 0;
  top: 0;
  margin-top: -10px;
  margin-left: 173px;
}
.header-hogar .container .btn-back button {
  color: white;
}
.header-hogar .container h2 {
  color: white;
  font-size: 20px;
  font-family: "TelefonicaWeb-Light", arial, sans-serif;
}
.header-hogar .container h2 strong {
  display: block;
  font-size: 32px;
}
.header-hogar .container .plan-card {
  background-color: white;
  width: 293px;
  border-radius: 16px 16px 0px 0px;
  padding: 24px;
  color: #313235;
  margin-left: 42px;
}
.header-hogar .container .plan-card h3 {
  font-size: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid #D3D4D3;
}
.header-hogar .container .plan-card h3 strong {
  display: block;
}
.header-hogar .container .plan-card .precio-normal {
  font-size: 14px;
  color: #B6B7B7;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
}
.header-hogar .container .plan-card .descuento {
  background-color: #E63780;
  border-radius: 4px;
  font-size: 12px;
  padding: 1px 8px;
  color: white;
}
.header-hogar .container .plan-card .precio-oferta {
  font-size: 32px;
  font-family: "TelefonicaWeb-Bold", arial, sans-serif;
}
.header-hogar .container .plan-card .precio-oferta span {
  font-size: 14px;
  font-family: "TelefonicaWeb-Regular", arial, sans-serif;
}
.header-hogar .container .plan-card .contratar-btn {
  display: block;
  width: 100%;
  background-color: #5CB615;
  color: white;
  font-size: 16px;
  font-family: "TelefonicaWeb-Bold", arial, sans-serif;
  padding: 13px;
  text-align: center;
  margin-top: 34px;
  border-radius: 50px;
  min-height: 48px;
}
.header-hogar .container .datos {
  padding-left: 24px;
  color: white;
}
.header-hogar .container .datos .card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 10px;
  border-radius: 8px;
  font-size: 14px;
  width: max-content;
}
.header-hogar .container .datos .incluye .subtitle {
  font-size: 14px;
}
.header-hogar .container .datos .incluye .listado-incluye {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 10px;
}
.header-hogar .container .datos .incluye .listado-incluye .card {
  background-color: #0d3147;
}
.header-hogar .container .datos .btn-ver-mas {
  display: none;
  position: relative;
  align-items: center;
  gap: 4px;
  color: white;
  margin-top: 20px;
  font-size: 14px;
}
.header-hogar .container .datos .btn-ver-mas::after {
  transition: all ease-in 300ms;
  content: " ";
  position: relative;
  display: block;
  width: 12px;
  height: 12px;
  background-image: url(../img/2023/iconos/white-arrow.svg);
  background-size: contain;
  background-position: center;
}
.header-hogar .container .datos .btn-active::after {
  transform: rotate(-180deg);
}
.header-hogar .container .datos .mas-detalles {
  margin-top: 32px;
}
.header-hogar .container .datos .mas-detalles .subtitle {
  font-size: 14px;
}
.header-hogar .container .datos .mas-detalles .listado-detalles {
  display: flex;
  gap: 16px;
  margin-top: 10px;
}
.header-hogar .container .datos .mas-detalles .listado-detalles .card {
  border: 1px solid #0d3147;
}

.header-movil {
  background-image: url(../img/2023/bg-header-blue.jpg);
}
.header-movil .bg-card-blue {
  background-color: #0067c0 !important;
}
.header-movil .border-card-blue {
  border-color: #0067c0 !important;
}

.header-error {
  background-image: url(../img/2023/bg-no-respuesta.jpg);
  min-height: 300px;
}
.header-error .btn-back button {
  color: #0b2739 !important;
  display: flex;
  align-items: center;
}
.header-error .container {
  justify-content: center;
}
.header-error-info {
  max-width: 402px;
  color: #0b2739;
  margin-left: 467px;
  margin-top: 50px;
}
.header-error-info h3 {
  font-size: 42px;
  font-family: "TelefonicaWeb-Bold", arial, sans-serif;
}
.header-error-info p {
  font-size: 24px;
}

.banner-ofertas-moviles {
  background: rgb(255, 255, 255);
  background: #000000;

  /* background: linear-gradient(0deg, rgb(255, 255, 255) 50%, rgb(242, 250, 255) 50%); */
  display: flex;
  justify-content: center;
}
.banner-ofertas-moviles .banner {
  background-image: url(../img/2023/bg-banner-movil-desk.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  max-width: 1168px;
  width: calc(100% - 64px);
  display: flex;
  gap: 30px;
  align-items: center;
  padding: 38px 62px;
  border-radius: 16px;
}
.banner-ofertas-moviles .banner p {
  font-size: 20px;
  color: white;
}
.banner-ofertas-moviles .banner p strong {
  display: block;
}
.banner-ofertas-moviles .banner .btn {
  color: white;
  font-size: 16px;
  font-family: "TelefonicaWeb-Bold", arial, sans-serif;
  padding: 17px 44px;
  border: 1px solid white;
  border-radius: 50px;
}
.banner-ofertas-moviles .banner-hogar {
  background-image: url(../img/2023/bg-banner-hogar-desk.jpg);
}

.banner-slider {
  background-color: white;
  display: flex;
  justify-content: center;
  padding: 80px 0px;
}
.banner-slider .banner {
  background-image: url(../img/2023/bg-banner-slider-desktop.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  border: 1px solid #B3E2FC;
  max-width: 1168px;
  width: calc(100% - 40px);
  border-radius: 16px;
  padding: 49px 114px 49px 79px;
  gap: 76px;
}
.banner-slider .banner .info {
  color: #0b2739;
}
.banner-slider .banner .info .title {
  font-size: 28px;
}
.banner-slider .banner .info .title strong {
  display: block;
}
.banner-slider .banner .info .text {
  font-size: 14px;
  margin-top: 5px;
}
.banner-slider .banner .info .btn {
  background-color: #019DF4;
  padding: 17px 32px;
  border-radius: 50px;
  color: white;
  font-family: "TelefonicaWeb-Bold", arial, sans-serif;
  font-size: 16px;
  display: block;
  margin-top: 24px;
  width: max-content;
  min-height: 56px;
}
.banner-slider .banner .slider {
  position: relative;
  height: max-content;
}
.banner-slider .banner .slider .slider-list {
  display: flex;
  gap: 20px;
}
.banner-slider .banner .slider .item {
  position: relative;
  background-color: white;
  border-radius: 5px;
  padding: 7px;
}
.banner-slider .banner .slider .item .logo {
  position: absolute;
  top: 12px;
  left: 12px;
}
.banner-slider .banner .slider .item .imagen {
  border-radius: 5px;
}
.banner-slider .banner .slider .item p {
  font-size: 14px;
  font-family: "TelefonicaWeb-Bold", arial, sans-serif;
  color: #0b2739;
}
.banner-slider .banner .slider .slick-track {
  max-width: 536px;
  display: flex;
  gap: 20px;
}
.banner-slider .banner .slider .chat,
.banner-slider .banner .slider .hamburgesa,
.banner-slider .banner .slider .ticket {
  position: absolute;
  z-index: 3;
}
.banner-slider .banner .slider .chat {
  top: 0;
  left: 0;
  margin-top: -25px;
  margin-left: -25px;
}
.banner-slider .banner .slider .hamburgesa {
  bottom: 0;
  left: 0;
  margin-left: 142px;
  margin-bottom: -23px;
}
.banner-slider .banner .slider .ticket {
  right: 0;
  bottom: 0;
  margin-bottom: -15px;
  margin-right: -9px;
}

.bg-blue-300 {
  background-color: #f2faff;
}

.parrilla-title {
  font-size: 28px;
  text-align: center;
  padding-top: 80px;
  color: #0b2739;
  margin-bottom: 48px;
}

.of-form-note {
  font-size: 16px;
  text-align: left;
  color: #6B6D70 !important;
}

.form-email {
  background-color: white;
  padding: 80px;
  color: #313235;
}
.form-email h2 {
  font-size: 24px;
  text-align: center;
}
.form-email .container {
  background-color: #f2faff;
  max-width: 388px;
  margin: 0 auto;
  margin-top: 32px;
  padding: 30px;
  border-radius: 16px;
}
.form-email .container h3 {
  text-align: center;
  font-size: 18px;
  margin-bottom: 19px;
}
.form-email .container button {
  background-color: #019DF4;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  color: white;
  padding: 14px 17px;
  font-size: 16px;
  font-family: "TelefonicaWeb-Bold", arial, sans-serif;
  border-radius: 50px;
  margin-top: 19px;
  min-height: 56px;
}
.form-email .container button img {
  animation: rotation infinite 2s linear;
}
.form-email .container p {
  margin-top: 19px;
  font-size: 16px;
  text-align: center;
}
.form-email .container p span {
  color: #019DF4;
}
.form-email .container .of-form {
  max-width: auto;
  padding: 0px;
  background-color: transparent;
  box-shadow: none;
  border-radius: 0px;
}
.form-email .container .of-form .of-form-input {
  padding-left: 63px;
}

.movil-ofertas {
  padding: 80px 30px;
  background-color: #f2faff;
  color: #313235;
}
.movil-ofertas-title {
  font-size: 24px;
  text-align: center;
}
.movil-ofertas-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 32px;
}
.movil-ofertas-card {
  width: 277px;
  min-width: 277px;
  padding: 32px 20px 36px 20px;
  background-color: white;
  border-radius: 8px;
  border-top: 3px solid #019DF4;
  box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.1);
}
.movil-ofertas-card h3 {
  font-size: 20px;
}
.movil-ofertas-card .subtitle {
  font-size: 14px;
  margin-top: 6px;
  padding-bottom: 24px;
  border-bottom: 1px solid #d3d4d3;
}
.movil-ofertas-card .precio {
  position: relative;
  padding-top: 42px;
  padding-bottom: 40px;
}
.movil-ofertas-card .precio .dcto {
  position: absolute;
  font-size: 12px;
  background-color: #E63780;
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  top: 0;
  margin-top: 30px;
}
.movil-ofertas-card .precio .oferta {
  padding-top: 8px;
  padding-bottom: 8px;
  font-size: 32px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "TelefonicaWeb-Bold", arial, sans-serif;
}
.movil-ofertas-card .precio .oferta span {
  font-size: 14px;
  font-family: "TelefonicaWeb-Regular", arial, sans-serif;
}
.movil-ofertas-card .precio .normal {
  font-size: 14px;
  color: #86888c;
  position: absolute;
  bottom: 0;
  margin-bottom: 37px;
}
.movil-ofertas-card .btn-contratar {
  background-color: #019DF4;
  width: 100%;
  display: block;
  color: white;
  padding: 17px;
  font-size: 16px;
  font-family: "TelefonicaWeb-Bold", arial, sans-serif;
  border-radius: 50px;
}
.movil-ofertas-link {
  display: flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  margin: 0 auto;
  margin-top: 36px;
  color: #019DF4;
  font-size: 16px;
}

.d-none {
  display: none;
}

.if-parrilla-diff {
  display: none !important;
}

.tabs-buttons {
  background-color: white;
  display: flex;
  width: max-content;
  margin: 0 auto;
  margin-top: 40px;
  padding: 8px;
  box-shadow: 0px 2px 3px rgba(133, 133, 133, 0.1);
  border-radius: 8px;
}
.tabs-buttons .item {
  color: #313235;
  font-size: 16px;
  padding: 10px 32px;
  border-radius: 8px;
}
.tabs-buttons .active {
  background-color: #019DF4;
  color: white;
  font-family: "TelefonicaWeb-Bold", arial, sans-serif;
}

.bg-black {
  background-color: black !important;
}

.bg-graphite {
  background-color: #6c6c6c !important;
}

.d-sm-block {
  display: none;
}

.display-mobile {
  display: none;
}

.fr-response {
  overflow-y: auto;
  padding: 25px 15px;
  width: 100%;
  height: 100vh;
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  background-color: rgba(76, 76, 76, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.fr-response-logo {
  width: 70px;
  height: 64.126px;
  flex-shrink: 0;
}
.fr-response-close {
  position: absolute;
  width: 30px;
  height: 30px;
  top: 10px;
  right: 10px;
  cursor: pointer;
  background: #F28D15;
  border-radius: 50px;
  z-index: 4;
}
.fr-response-close:after, .fr-response-close:before {
  content: "";
  width: calc(100% - 14px);
  position: absolute;
  height: 2px;
  background: #fff;
  top: calc(50% - 1px);
  left: 7px;
}
.fr-response-close::after {
  transform: rotate(45deg);
}
.fr-response-close::before {
  transform: rotate(-45deg);
}
.fr-response-hr {
  border: 1px solid #dedede;
}
.fr-response-txt {
  margin: 15px 0 5px;
  font: 18px "TelefonicaWeb-Regular", arial, sans-serif;
}
.fr-response-paraph {
  margin: 15px 0 5px;
  font-size: 14px;
}
.fr-response-tryagain {
  margin-top: 20px;
  text-align: center;
  border-radius: 50px;
  padding: 16px 5px;
  width: 100%;
  max-width: 200px;
  color: #fff;
  background: #019DF4;
  font: 14px "TelefonicaWeb-Bold", arial, sans-serif;
  transition: opacity 0.2s;
}

.fr-error {
  border-top: 4px solid #F28D15 !important;
}
.fr-error .fr-response-txt {
  color: #F28D15;
}

.fr-loading {
  display: block;
  margin: 0 auto 20px;
  height: 30px;
  width: 30px;
  border-radius: 50%;
  border: 4px solid #019DF4;
  border-color: #019DF4 transparent #019DF4 transparent;
  animation: waiting 1.2s linear infinite;
}

.fr-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  position: relative;
  flex-shrink: 0;
  width: 100%;
  max-width: 771px;
  min-height: 350px;
  background-color: #fff;
  padding: 50px 20px;
  border-radius: 8px;
  border-top: 4px solid #F28D15;
}

@keyframes waiting {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.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: 600px;
  padding: 40px;
  border-radius: 16px;
  color: #3c5261;
}
.modal-close-btn {
  position: absolute;
  display: block;
  right: 0;
  top: 0;
  margin-top: 32px;
  margin-right: 32px;
  cursor: pointer;
}
.modal-titulo {
  font-size: 28px;
  color: #0b2739;
}
.modal-parrafos {
  overflow: auto;
  height: 364px;
  margin-top: 24px;
  font-size: 16px;
  line-height: 135%;
}
.modal-parrafos a {
  color: #019DF4;
}
.modal-parrafos::-webkit-scrollbar {
  width: 8px;
}
.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;
}
.modal-btn {
  padding: 14px 40px 14px 30px;
  font-family: "TelefonicaWeb-Bold", arial, sans-serif;
  color: #0b2739;
  display: flex;
  align-items: center;
  gap: 20px;
  width: max-content;
  margin-top: 24px;
  border: 1px solid #0b2739;
  border-radius: 50px;
  font-size: 16px;
}
.modal .modal-email {
  padding: 90px 70px;
  text-align: center;
}
.modal .modal-email .imagen {
  margin: 0 auto;
}
.modal .modal-email h2 {
  font-size: 24px;
  font-family: "TelefonicaWeb-Bold", arial, sans-serif;
  color: #313235;
  margin-top: 21px;
}
.modal .modal-email p {
  font-size: 16px;
  color: #86888C;
  margin-top: 8px;
}

.modal-active {
  display: flex;
}

.of-hed {
  position: relative;
  text-align: center;
  padding: 30px 0;
  margin-bottom: 50px;
}
.of-hed .of-container {
  max-width: 970px;
}
.of-hed::after, .of-hed::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.of-hed::after {
  background: #019DF4;
  z-index: -2;
}
.of-hed::before {
  background-image: linear-gradient(to bottom, #147de7 0%, rgba(255, 255, 255, 0));
  z-index: -1;
}
.of-hed-dcto {
  font: 70px "TelefonicaWeb-Bold", arial, sans-serif;
  color: #fff;
}
.of-hed-year {
  font: 28px "TelefonicaWeb-Light", arial, sans-serif;
  display: inline-block;
  text-align: left;
  line-height: 25px;
}
.of-hed-title {
  font: 24px "TelefonicaWeb-Light", arial, sans-serif;
  color: #fff;
}
.of-hed mark {
  color: #fff;
  background: #E63780;
  padding: 3px 7px;
  border-radius: 8px;
  font-size: 21px;
}
.of-hed-detalle {
  padding: 15px 30px;
  margin: 30px auto 0;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
}
.of-hed-detalle span {
  width: 100%;
  text-align: center;
  padding: 0 20px;
  font-family: "TelefonicaWeb-Light", arial, sans-serif;
  border-right: 1px solid rgba(255, 255, 255, 0.4);
  white-space: nowrap;
}
.of-hed-detalle span:last-child {
  border: 0;
}
.of-hed-detalle em {
  display: block;
  font-size: 30px;
}

.of-dirr {
  background: #fff;
  border-radius: 8px;
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  max-width: 650px;
  width: calc(100% - 30px);
  margin: -80px auto 30px;
  border: 1px solid #e8e8e8;
}
.of-dirr-content {
  width: calc(100% - 190px);
}
.of-dirr-txt {
  font: 14px "TelefonicaWeb-Light", arial, sans-serif;
}
.of-dirr-txt span {
  text-transform: capitalize;
}

.of-high-two {
  background: #0b2739;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 10px;
  border-radius: 8px;
  font: 50px "TelefonicaWeb-Bold", arial, sans-serif;
  margin-right: 10px;
}
.of-high .of-container {
  background: #fff;
  border-radius: 8px;
  padding: 20px 30px;
  box-shadow: 0 3px 4px rgba(0, 0, 0, 0.15);
  margin-bottom: 50px;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  max-width: 1000px;
}
.of-high-movil {
  padding: 40px 0;
}
.of-high-tag {
  position: absolute;
  top: 0;
  left: 0;
  background: #5CB615;
  color: #fff;
  font: 13px "TelefonicaWeb-Bold", arial, sans-serif;
  border-radius: 8px 0 8px 0;
  padding: 7px 10px;
  display: flex;
  align-items: center;
}
.of-high-tag img {
  margin-right: 10px;
}
.of-high-head {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.of-high-head img {
  max-width: 140px;
  margin-right: -50px;
}
.of-high-headmov {
  justify-content: unset;
}
.of-high-headmov img {
  margin-left: 20px;
}
.of-high-producto {
  font-size: 14px;
}
.of-high-megas {
  font: 24px "TelefonicaWeb-Bold", arial, sans-serif;
  display: block;
}
.of-high-megas del {
  font: 22px "TelefonicaWeb-Regular", arial, sans-serif;
}
.of-high-desc {
  width: 100%;
  margin-top: 20px;
}
.of-high-desc li {
  padding: 10px 0;
  font-size: 13px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #dedede;
}
.of-high-desc li:last-child {
  border: 0;
}
.of-high-desc img {
  margin-right: 15px;
}
.of-high-desc mark {
  font-family: "TelefonicaWeb-Bold", arial, sans-serif;
  color: #E63780;
}
.of-high-desc small {
  font-size: 11px;
  color: #B6B7B7;
}
.of-high-descmov img {
  margin-left: 10px;
  margin-right: 0;
}
.of-high-left {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  justify-content: center;
  overflow: hidden;
  padding-right: 25px;
  width: 33%;
}
.of-high-center {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
}
.of-high-detalle {
  width: 100%;
}
.of-high-detalle span {
  color: #019DF4;
}
.of-high-center {
  width: 37%;
}
.of-high-center {
  border-left: 1px solid #dedede;
  padding: 0 15px;
}
.of-high-right {
  width: 30%;
  padding: 0 25px;
  border-left: 1px solid #dedede;
  display: flex;
  align-items: center;
  justify-content: center;
}
.of-high-right {
  display: flex;
  align-items: center;
  justify-content: center;
}
.of-high-item {
  padding: 10px;
  text-align: left;
  font-size: 13px;
  color: #50535a;
  display: flex;
  align-items: center;
}
.of-high-item img {
  margin-right: 10px;
}
.of-high-itemmov {
  padding: 7px 10px;
}
.of-high-oferta {
  display: flex;
  width: 100%;
  border-radius: 2px;
  margin-bottom: 10px;
  max-width: 200px;
  padding: 0px;
  justify-content: space-between;
}
.of-high-oferta mark,
.of-high-oferta span {
  font-size: 12px;
  text-align: center;
  padding: 5px;
}
.of-high-oferta mark {
  background: #e63780;
  color: #fff;
  border-radius: 4px 0 0 4px;
}
.of-high-oferta span {
  background: #0b2739;
  color: #fff;
  border-radius: 0 4px 4px 0;
}
.of-high-oferta del {
  opacity: 0.5;
}
.of-high-price {
  font-size: 28px;
  color: #313235;
}
.of-high-price small {
  margin-left: 5px;
  display: inline-block;
  font-size: 11px;
  line-height: 11px;
  text-align: left;
}
.of-high-normal {
  color: #86888c;
  font-size: 13px;
  display: block;
}
.of-high-solicitar {
  margin-top: 15px;
  display: block;
  border-radius: 50px;
  padding: 16px 5px;
  width: 100%;
  color: #fff;
  background: #5CB615;
  font: 14px "TelefonicaWeb-Bold", arial, sans-serif;
  transition: opacity 0.2s;
  text-align: center;
}
.of-high-detail {
  display: none;
}

.of-filter {
  text-align: center;
  padding: 0 10px;
}
.of-filter-hr {
  display: none;
}
.of-filter-subnav {
  background: #fff;
  display: flex;
  border-radius: 8px;
  padding: 8px 5px;
  position: relative;
  z-index: 1;
  width: max-content;
  margin: 0 auto;
  box-shadow: 0px 2px 3px rgba(133, 133, 133, 0.1);
}
.of-filter-link {
  color: #313235;
  font-size: 16px;
  padding: 15px 32px;
}
.of-filter-active {
  background: #019DF4;
  border-radius: 8px;
  color: #fff;
  pointer-events: none;
  font-family: "TelefonicaWeb-Bold", arial, sans-serif;
}
.of-filter-active small {
  font-size: 16px;
  font-family: "TelefonicaWeb-Bold", arial, sans-serif;
  opacity: 1;
}
.of-filter-sub {
  font-size: 16px;
  font-family: "TelefonicaWeb-Bold", arial, sans-serif;
}

.of-parr {
  padding: 56px 0;
}
.of-parr .slick-track {
  display: flex;
  gap: 20px;
  margin-top: 15px;
  margin-bottom: 5px;
}
.of-parr .slick-slide {
  opacity: 1;
}
.of-parr .slick-dots {
  bottom: 0;
  margin-bottom: -29px;
}
.of-parr .slick-dots li button {
  width: 16px;
  height: 8px;
}
.of-parr .slick-dots .slick-active button {
  width: 32px;
}
.of-parr .of-container {
  max-width: 1044px;
}
.of-parr .of-containermov {
  max-width: 1170px;
}
.of-parr-noffer {
  padding: 24px 0;
}
.of-parr-rrssfree {
  font-size: 13px;
  margin-bottom: 20px;
  margin-top: 5px;
}
.of-parr-toggler {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #019DF4;
  padding: 10px 0 10px 5px;
  border-bottom: 1px solid #dedede;
  width: 100%;
  margin-top: 24px;
}
.of-parr-toggler i {
  height: 8px;
  width: 8px;
  border-right: 2px solid #019DF4;
  border-top: 2px solid #019DF4;
  transform: rotate(135deg);
}
.of-parr-toggler.active i {
  transform: rotate(-45deg);
}
.of-parr-col {
  padding: 32px 24px 40px 24px;
  border-radius: 8px;
  background: #fff;
  width: 314px;
  margin: 0 10px;
  position: relative;
  border-top: 4px solid #019DF4;
  height: inherit;
}
.of-parr-cucarda {
  font: 14px/18px "TelefonicaWeb-Bold", arial, sans-serif;
  background-color: #e63780;
  text-align: center;
  font-size: 12px;
  color: #fff;
  position: absolute;
  top: -5px;
  left: 0;
  width: 100%;
  padding: 5px;
  border-radius: 8px 8px 0px 0px;
}
.of-parr-colmov {
  width: 277px;
  margin: 0 5px;
  padding: 36px 20px;
  box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.1);
}
.of-parr-colmov .of-parr-header {
  padding-bottom: 0px;
}
.of-parr-colmov .of-parr-toggler {
  border: none;
}
.of-parr-header {
  border-bottom: 1px solid #ced4d7;
  padding-bottom: 24px;
}
.of-parr-bodymov {
  display: none;
}
.of-parr-bodymov.active {
  margin-top: 15px;
  display: block;
}
.of-parr-nombre {
  display: flex;
  align-items: end;
  font-size: 20px;
  gap: 5px;
}
.of-parr-nombre div span {
  font-size: 32px;
  white-space: pre;
}
.of-parr-sub {
  margin-top: 10px;
  font-size: 13px;
}
.of-parr-addon {
  font-size: 13px;
  margin-top: 15px;
  border-top: 1px solid #dedede;
}
.of-parr-addon img {
  margin-right: 10px;
}
.of-parr-addon li {
  display: flex;
  padding: 5px 0;
  align-items: center;
  border-bottom: 1px solid #dedede;
}
.of-parr-addon small {
  font-size: 11px;
  color: #86888c;
  display: block;
  margin-top: 5px;
}
.of-parr-pricegroup {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
}
.of-parr-oferta {
  background-color: #E63780;
  border-radius: 4px;
  padding: 3px 8px;
  font-size: 14px;
  color: white;
  width: max-content;
}
.of-parr-price {
  font-size: 32px;
  color: #313235;
}
.of-parr-price small {
  margin-left: 5px;
  display: inline-block;
  font-size: 14px;
  line-height: 14px;
  text-align: left;
}
.of-parr-pricemov {
  font-size: 32px;
  font-family: "TelefonicaWeb-Bold", arial, sans-serif;
  margin: 7px 0px;
}
.of-parr-pricemov small {
  margin-left: 0;
  font-family: "TelefonicaWeb-Regular", arial, sans-serif;
  font-size: 14px;
}
.of-parr-detail {
  display: none;
}
.of-parr-normal {
  font-size: 14px;
  color: #86888C;
}
.of-parr-solicitar, .of-parr .of-parr-solicitude {
  margin-bottom: 24px !important;
}
.of-parr-solicitar, .of-parr-solicitude {
  margin: 0 auto;
  margin-top: 24px;
  display: block;
  border-radius: 50px;
  padding: 16px 5px;
  width: 100%;
  color: #fff;
  background: #019DF4;
  font: 16px "TelefonicaWeb-Bold", arial, sans-serif;
  transition: opacity 0.2s;
  text-align: center;
  max-width: 240px;
}
.of-parr-body {
  border-top: 1px solid #ced4d7;
}
.of-parr-item {
  width: 100%;
  padding: 10px 0;
  text-align: left;
  font-size: 13px;
  color: #50535a;
  display: flex;
  align-items: center;
  line-height: 20px;
}
.of-parr-item img {
  margin-right: 15px;
}
.of-parr-item:last-child {
  border: 0;
}
.of-parr-item mark {
  font-family: "TelefonicaWeb-Bold", arial, sans-serif;
  color: #E63780;
}
.of-parr-item del {
  color: #86888C;
}
.of-parr-item span {
  color: #019DF4;
}
.of-parr-void {
  padding: 19px 0;
}
.of-parr-itemmov {
  line-height: unset;
  font-size: 12px;
}
.of-parr-itemmov img {
  margin-right: 5px;
}
.of-parr-tag {
  display: inline-block;
  font: 14px "TelefonicaWeb-Regular", arial, sans-serif;
  margin-bottom: 5px;
  text-align: center;
  color: #019DF4;
}

.of-masplan {
  padding: 0;
}
.of-masplan-head {
  background: #019df4;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
  padding: 30px 10px;
  border-radius: 8px 8px 0 0;
  text-align: center;
}
.of-masplan-head img {
  width: 100%;
  margin-bottom: 10px;
  max-width: 100px;
}
.of-masplan-head p {
  width: 100%;
  color: #fff;
}
.of-masplan-content {
  padding: 10px 15px;
}
.of-masplan-content p {
  font-size: 14px;
  text-align: center;
}

.of-term {
  position: relative;
  padding: 50px 0;
  background: #fff;
}
.of-term-title {
  font: 28px "TelefonicaWeb-Light", arial, sans-serif;
  text-align: center;
  color: #313235;
}
.of-term-content {
  position: relative;
  overflow: hidden;
  height: 150px;
  margin-top: 50px;
}
.of-term-content:after {
  content: "";
  position: absolute;
  height: 100px;
  width: 100%;
  bottom: 0;
  left: 0;
  background: #000000;

  /* background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #fff 100%); */
}
.of-term-content-active {
  height: auto;
}
.of-term-content-active:after {
  content: none;
}
.of-term-link {
  color: #019DF4;
}
.of-term-list {
  padding-left: 15px;
}
.of-term li {
  color: #313235;
  margin-bottom: 15px;
  font-size: 15px;
}
.of-term-toggle {
  width: 100%;
  font: 16px "TelefonicaWeb-Regular", arial, sans-serif;
  padding: 30px 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.of-term-toggle:focus {
  outline: none;
}
.of-term-toggle.active i:before {
  opacity: 0;
}
.of-term-bold {
  color: #019DF4;
}
.of-term-icon {
  position: relative;
  border-radius: 50px;
  border: 2px solid #019DF4;
  height: 26px;
  width: 26px;
  margin-left: 15px;
}
.of-term-icon::after, .of-term-icon::before {
  content: "";
  position: absolute;
  background: #019DF4;
  width: calc(100% - 6px);
  height: 2px;
  top: calc(50% - 1px);
  left: 3px;
}
.of-term-icon::before {
  transform: rotate(90deg);
}

.of-detail {
  position: fixed;
  height: 100vh;
  width: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  background-color: rgba(76, 76, 76, 0.8);
  overflow-y: auto;
  z-index: 3;
  padding: 20px 0 0 0;
  align-items: flex-end;
}
.of-detail-container {
  position: relative;
  background: #fff;
  max-width: 470px;
  width: 100%;
  border-radius: 8px 8px 0 0;
}
.of-detail-close {
  position: absolute;
  width: 35px;
  height: 35px;
  top: 10px;
  right: 10px;
  cursor: pointer;
  border-radius: 50px;
  z-index: 4;
  border: 2px solid #fff;
}
.of-detail-close:after, .of-detail-close:before {
  content: "";
  width: calc(100% - 14px);
  position: absolute;
  height: 2px;
  background: #fff;
  top: calc(50% - 1px);
  left: 7px;
}
.of-detail-close::after {
  transform: rotate(45deg);
}
.of-detail-close::before {
  transform: rotate(-45deg);
}
.of-detail-left {
  display: block;
  background: #019DF4;
  color: #fff;
  border-radius: 8px 8px 0 0;
  padding: 30px 10px 20px;
  text-align: center;
}
.of-detail-left p {
  font: 20px "TelefonicaWeb-Light", arial, sans-serif;
}
.of-detail-left em {
  display: block;
}
.of-detail-center {
  width: 100%;
  border-bottom: 1px solid #dedede;
  padding: 20px 10px;
}
.of-detail-center ul {
  padding-left: 15px;
}
.of-detail-center mark {
  font-family: "TelefonicaWeb-Bold", arial, sans-serif;
  color: #E63780;
}
.of-detail-center li {
  font-size: 14px;
  position: relative;
  padding: 4px 0;
}
.of-detail-center li::before {
  content: "";
  position: absolute;
  left: -13px;
  top: calc(50% - 3px);
  height: 6px;
  width: 6px;
  background: #313235;
  border-radius: 50px;
}
.of-detail-center img {
  margin-left: 5px;
}
.of-detail-right {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 20px 10px;
}
.of-detail-oferta {
  display: flex;
  width: 100%;
  border-radius: 2px;
  margin-bottom: 10px;
  max-width: 200px;
}
.of-detail-oferta mark,
.of-detail-oferta span {
  font-size: 12px;
  text-align: center;
  padding: 5px;
}
.of-detail-oferta mark {
  background: #e63780;
  color: #fff;
  border-radius: 4px 0 0 4px;
}
.of-detail-oferta span {
  background: #0b2739;
  color: #fff;
  border-radius: 0 4px 4px 0;
}
.of-detail-oferta del {
  opacity: 0.5;
}
.of-detail-title {
  font-size: 14px;
  margin-bottom: 8px;
}
.of-detail-price {
  font-size: 18px;
}
.of-detail-price em {
  font: 28px "TelefonicaWeb-Regular", arial, sans-serif;
}
.of-detail-price small {
  font-size: 12px;
  line-height: 1.2;
  color: #313235;
  display: inline-block;
}
.of-detail-normal {
  font-size: 12px;
  color: #50535a;
}
.of-detail-button {
  font-size: 14px;
  text-align: center;
  display: block;
  border-radius: 50px;
  padding: 16px 5px;
  width: 100%;
  color: #fff;
  background: #019DF4;
  transition: opacity 0.2s;
  margin-left: auto;
  max-width: 130px;
}

.tab-container {
  display: none;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
}
.tab-container.active {
  display: flex;
}

.container-celulares {
  justify-content: center;
  gap: 20px;
}
.container-celulares .card {
  background: #ffffff;
  width: 264px !important;
  border-radius: 8px;
  padding: 19px;
  cursor: pointer;
}
.container-celulares .card .cucarda-mas-vendido {
  background-color: rgba(92, 182, 21, 0.3);
  color: #3c7521;
  font-size: 12px;
  padding: 1px 4px;
  border-radius: 3px;
  width: max-content;
}
.container-celulares .card .nombre {
  font-size: 20px;
  color: #313235;
}
.container-celulares .card .colores {
  margin-top: 12px;
  margin-bottom: 16px;
  display: flex;
  gap: 6px;
}
.container-celulares .card .colores .color {
  height: 14px;
  width: 14px;
  border-radius: 50%;
  border: 2px solid #d5d3d5;
  background-color: #019DF4;
}
.container-celulares .card .precio_normal {
  display: flex;
  align-items: center;
  gap: 10px;
}
.container-celulares .card .precio_normal del {
  font-size: 14px;
  color: #86888c;
}
.container-celulares .card .precio_normal span {
  background-color: rgba(251, 199, 222, 0.3);
  color: #E63780;
  font-size: 12px;
  width: max-content;
  padding: 5px 2px;
  border-radius: 3px;
}
.container-celulares .card .precio-oferta {
  font-size: 32px;
  color: #019DF4;
}
.container-celulares .card .cuotas {
  font-size: 14px;
  color: #019DF4;
}
.container-celulares .card .sellos {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  margin-top: 16px;
  display: flex;
  padding-top: 16px;
  align-items: center;
}
.container-celulares .card .sellos .s5g {
  display: flex;
  gap: 16px;
  padding-right: 16px;
  margin-right: 16px;
  border-right: 1px solid rgba(0, 0, 0, 0.2);
}

.modal-condiciones {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 auto;
  margin-top: 32px;
  font-size: 18px;
  color: #019DF4;
  margin-bottom: 48px;
}

.banner-otros-equipos {
  background-color: white;
  position: relative;
  max-width: 600px;
  width: calc(100% - 40px);
  margin: 0 auto;
  margin-top: 32px;
  padding: 16px 32px 16px 36px;
  box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  align-items: center;
  justify-content: space-between;
}
.banner-otros-equipos .info h3 {
  font-family: "TelefonicaWeb-Bold", arial, sans-serif;
  color: #0B2739;
  font-size: 16px;
}
.banner-otros-equipos .info p {
  font-size: 14px;
  margin-top: 2px;
}
.banner-otros-equipos .btn {
  font-size: 16px;
  color: #019DF4;
  font-family: "TelefonicaWeb-Bold", arial, sans-serif;
  border: 1px solid #019DF4;
  padding: 13px 32px;
  border-radius: 50px;
}
.banner-otros-equipos::after {
  content: " ";
  position: absolute;
  left: 0;
  width: 4px;
  height: 40px;
  background: #019DF4;
  border-radius: 0px 4px 4px 0px;
}

.of-modetalle {
  z-index: 10;
  position: fixed;
  height: 100vh;
  width: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 30px 20px;
  background-color: rgba(76, 76, 76, 0.8);
  overflow-y: auto;
}
.of-modetalle.active {
  visibility: visible;
  opacity: 1;
  z-index: 13;
}
.of-modetalle-container {
  position: relative;
  background: #fff;
  border-radius: 8px;
  max-width: 991px;
  width: 100%;
  padding: 60px 15px 20px;
}
.of-modetalle-close {
  position: absolute;
  width: 40px;
  height: 40px;
  top: 10px;
  right: 25px;
  cursor: pointer;
  background: #019DF4;
  border-radius: 50px;
}
.of-modetalle-close::after, .of-modetalle-close::before {
  content: "";
  width: calc(100% - 14px);
  position: absolute;
  height: 2px;
  background: #fff;
  top: calc(50% - 1px);
  left: 7px;
}
.of-modetalle-close::before {
  transform: rotate(-45deg);
}
.of-modetalle-close::after {
  transform: rotate(45deg);
}
.of-modetalle-body {
  width: 100%;
  border-radius: 10px;
  border: 1px solid #dedede;
  padding: 15px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.of-modetalle-head {
  display: flex;
  align-items: center;
  margin: 0;
  width: 300px;
  border-right: 1px solid #dedede;
}
.of-modetalle-head img {
  width: 100%;
  max-width: 60px;
  height: 60px;
  margin-right: 20px;
}
.of-modetalle-head small {
  font: 13px "TelefonicaWeb-Light", arial, sans-serif;
  color: gray;
  display: block;
}
.of-modetalle-content {
  font-size: 15px;
  color: #4d4d4d;
  width: calc(100% - 530px);
}
.of-modetalle-more {
  background: #019DF4;
  color: #fff;
  text-align: center;
  width: 100%;
  max-width: 180px;
  border-radius: 50px;
  padding: 16px 5px;
  font-size: 14px;
  transition: opacity 0.2s;
}
.of-modetalle-more:hover {
  opacity: 0.8;
}

.tab-container-offer {
  max-width: 1170px;
  width: calc(100% - 30px);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
}
.tab-container-offer .of-parr-col {
  width: calc(25% - 10px);
  margin: 0px 5px;
}
.tab-container-offer .void {
  height: 42px;
  display: block;
}
.tab-container-offer del {
  font-family: "TelefonicaWeb-Light", arial, sans-serif;
}

@media all and (max-width: 1489) {
  .header-hogar .container {
    max-width: 1315px;
    padding-left: 77px;
  }
}
@media all and (max-width: 1379px) {
  .header-hogar .container {
    max-width: 1259px;
    padding-left: 50px;
  }
  .header-hogar .container .btn-back {
    margin-left: 23px;
  }
}
@media all and (max-width: 1366px) {
  .of-header {
    background-position: top;
  }
  .of-header-container {
    padding: 40px 0px;
    background-position-x: -9vw;
  }
  .of-header-container h1 {
    margin-left: 0px;
  }
  .header-mobile {
    background-image: url(../img/2023/bg-movil.jpg);
  }
  .header-mobile .of-header-container {
    flex-direction: row;
  }
}
@media all and (max-width: 1235px) {
  .header-hogar .container {
    max-width: 100%;
    padding-left: 34px;
  }
}
@media all and (max-width: 1019px) {
  .banner-slider .banner .slider .slick-track {
    max-width: 354px;
  }
  .banner-slider .banner .slider .slick-track .slick-slide {
    opacity: 1;
  }
}
@media all and (max-width: 991px) {
  .c-include_plans h2 {
    font-size: 24px;
  }
  .c-include_plans {
    width: 93%;
    margin-left: 2px;
  }
  .d-sm-block {
    display: block;
  }
  .of-form-block {
    min-width: initial;
  }
  .header-hogar {
    padding-top: 0px;
    padding-bottom: 24px;
  }
  .header-hogar .container {
    flex-direction: column;
    padding-left: 0px;
  }
  .header-hogar .container .btn-back {
    position: relative;
    width: 100%;
    background-color: #EBF7FF;
    margin-top: 0px;
    justify-content: flex-start;
    padding: 4px 16px;
    margin-left: 0px;
  }
  .header-hogar .container .btn-back button {
    display: flex;
    align-items: center;
    color: #0b2739;
    gap: 3px;
  }
  .header-hogar .container h2 {
    font-size: 20px;
    margin-top: 24px;
  }
  .header-hogar .container h2 strong {
    display: inline-block;
    text-align: center;
    font-size: 20px;
  }
  .header-hogar .container .plan-card {
    margin-top: 16px;
    margin-left: 0px;
    border-radius: 16px;
    max-width: 400px;
    width: calc(100% - 40px);
  }
  .header-hogar .container .plan-card .contratar-btn {
    margin-top: 12px;
  }
  .header-hogar .container .datos {
    padding-left: 0px;
    width: 100%;
    margin-top: 16px;
    padding-left: 20px;
  }
  .header-hogar .container .datos .incluye .listado-incluye {
    width: 100%;
    overflow: scroll;
    flex-wrap: nowrap;
    padding-right: 20px;
  }
  .header-hogar .container .datos .incluye .listado-incluye .card {
    min-width: max-content;
  }
  .header-hogar .container .datos .btn-ver-mas {
    display: flex;
  }
  .header-hogar .container .datos .mas-detalles {
    overflow: hidden;
    max-height: 0px;
    transition: all ease-in-out 300ms;
    margin-top: 16px;
  }
  .header-hogar .container .datos .mas-detalles .subtitle {
    display: none;
  }
  .header-hogar .container .datos .mas-detalles .listado-detalles {
    flex-direction: column;
    gap: 16px;
  }
  .header-hogar .container .datos .mas-detalles .listado-detalles .card {
    padding: 0px;
    border: none;
    width: 100%;
  }
  .header-hogar .container .datos .mas-detalles .listado-detalles .card p {
    font-size: 14px;
  }
  .header-hogar .container .datos .mas-detalles .listado-detalles .card br {
    display: none;
  }
  .header-hogar .container .datos .mas-detalles-active {
    max-height: 9999px;
  }
  .header-mobile {
    background-image: none !important;
    background-size: cover;
    min-height: auto;
    position: relative;
  }
  .header-mobile::after {
    content: " ";
    position: absolute;
    top: 0;
    background-image: url(../assets/img/2023/bg-header-mobile.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top right;
    width: 100%;
    height: 271px;
  }
  .header-mobile .of-header-container {
    margin-top: 157px;
  }
  .header-mobile .of-form-block {
    width: 100%;
    position: relative;
    z-index: 2;
  }
  .header-mobile .of-form-block h1 {
    position: absolute;
    top: 0;
    margin-top: -147px;
  }
  .rzf-form {
    padding: 0;
  }
  .rzf-form form {
    padding: 15px 0;
  }
  .rzf-form_container {
    border-radius: 0px;
    padding: 0;
    height: 100%;
    overflow: auto;
  }
  .rzf-form_mobhead {
    display: flex;
  }
  .of-form {
    padding: 23px 15px;
    margin-bottom: 0px;
    width: 100%;
    box-sizing: border-box;
  }
  .of-form-submit {
    height: 56px;
    font-family: "TelefonicaWeb-Bold", arial, sans-serif;
    font-size: 16px;
  }
  .of-form-body {
    margin: 0px -15px 0;
    padding: 20px 15px 0px 15px;
  }
  .of-term-title {
    font-size: 20px;
  }
  .of-hed {
    padding: 30px 0;
  }
  .of-hed h1 {
    font-size: 20px;
  }
  .of-hed mark {
    display: block;
    max-width: 250px;
    margin: 10px auto 0;
    display: inline-block;
  }
  .of-hed-year {
    line-height: 20px;
    font-size: 20px;
  }
  .of-hed-dcto {
    font-size: 48px;
  }
  .of-dirr {
    padding: 0px 10px;
    align-items: inherit;
  }
  .of-dirr-content {
    width: calc(100% - 90px);
    padding: 20px 0;
  }
  .of-dirr-back {
    margin-bottom: 20px;
  }
  .of-high .of-container {
    flex-wrap: wrap;
    max-width: 320px;
    flex-direction: column;
    padding: 50px 10px 20px;
  }
  .of-high-movil {
    padding: 0;
  }
  .of-high-left {
    width: 100%;
    padding-right: 0;
    justify-content: center;
    margin: 0 -10px;
    width: calc(100% + 20px);
  }
  .of-high-center {
    display: none;
  }
  .of-high-right {
    padding: 0;
    width: 100%;
    border: 0;
    margin-top: 25px;
  }
  .of-high-head img {
    max-width: 120px;
    margin-right: -10px;
  }
  .of-high-producto {
    padding-left: 15px;
  }
  .of-high-desc li {
    padding: 5px 0;
    width: calc(100% - 30px);
    max-width: 330px;
    margin: 0 auto;
  }
  .of-high-pricegroup {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .of-high-price {
    font-size: 24px;
    margin-left: 10px;
  }
  .of-high-oferta {
    flex-direction: column;
    max-width: 100px;
    margin-bottom: 0;
  }
  .of-high-oferta span,
  .of-high-oferta mark {
    padding: 5px;
    font-size: 12px;
  }
  .of-high-oferta mark {
    border-radius: 4px 4px 0 0;
  }
  .of-high-oferta span {
    border-radius: 0 0 4px 4px;
  }
  .of-high-solicitar {
    max-width: 200px;
    margin: 15px auto;
  }
  .of-high-detail {
    font-size: 15px;
    color: #019DF4;
    padding: 10px 20px;
    display: block;
  }
  .of-filter {
    overflow: scroll;
  }
  .of-filter::after {
    content: none;
  }
  .of-filter-hr {
    display: block;
    position: relative;
    margin: 30px 0;
  }
  .of-filter-hr::after {
    content: "";
    position: absolute;
    height: 1px;
    background: #dedede;
    width: 100%;
    top: 50%;
    left: 0;
  }
  .of-filter-txt {
    color: #707070;
    background: #f7f7f7;
    font-size: 14px;
    padding: 5px 15px;
    position: relative;
    z-index: 1;
  }
  .of-filter-subnav {
    padding: 8px;
  }
  .of-filter-link {
    padding: 10px 24px;
    width: 100%;
    font-size: 14px;
    white-space: nowrap;
  }
  .of-filter-link small {
    font-size: 14px;
    white-space: nowrap;
  }
  .tab-container-offer .of-parr .of-container {
    justify-content: center;
  }
  .tab-container-offer .of-parr .void {
    display: none;
  }
  .tab-container-offer .of-parr-price {
    font-size: 24px;
  }
  .tab-container-offer .of-parr-col {
    margin: 0 20px 40px;
    width: 100%;
    max-width: 360px;
  }
  .tab-container-offer .of-parr-body {
    display: none;
  }
  .tab-container-offer .of-parr-detail {
    color: #019DF4;
    padding: 10px 20px;
    display: block;
    font-family: "TelefonicaWeb-Regular", arial, sans-serif;
    display: block;
  }
  .of-parr .of-container {
    justify-content: center;
  }
  .of-parr .void {
    display: none;
  }
  .of-parr-price {
    font-size: 24px;
    margin-top: 10px;
    margin-bottom: 5px;
  }
  .of-parr-col {
    margin: 0 20px 40px;
    width: 100%;
    max-width: 314px;
    padding: 32px 24px 2px 24px;
  }
  .of-parr-detail {
    color: #019DF4;
    padding: 10px 20px;
    display: block;
    font-family: "TelefonicaWeb-Regular", arial, sans-serif;
    display: block;
  }
  .of-modetalle-head {
    margin-bottom: 20px;
    width: 100%;
    justify-content: center;
    border-right: 0;
  }
  .of-modetalle-head img {
    max-width: 40px;
    height: 40px;
  }
  .of-modetalle-content {
    width: 100%;
    text-align: center;
  }
  .of-modetalle-more {
    margin: 20px auto 0;
  }
  #mainmenu .mvx-bottom_personas div {
    z-index: 3;
  }
}
@media all and (max-width: 768px) {
  .of-form-note {
    font-size: 14px;
  }
  .cube {
    display: none !important;
  }
  .logo-header {
    margin-bottom: 5px;
    height: 19px;
    width: 73px !important;
  }
  .of-header {
    background-image: url(../assets/img/iPhone-16-mobile.png);
    background-repeat: no-repeat;
    background-position: right top;
  }
  .of-header-container {
    flex-direction: column;
    background-image: none;
  }
  .of-header-container h1 {
font-size: 24px;
line-height: 32px;
letter-spacing: 0%;

    margin-bottom: -5px;
    line-height: unset;
  }
  .of-header-container h1 img {
    width: 100%;
    margin-bottom: 0;
  }
  .of-header-container h1 span {
font-size: 24px;
line-height: 32px;
letter-spacing: 0%;

    margin-top: 5%;
  }
  .tabs-buttons {
    margin-top: 24px;
  }
  .cards-pack_container {
    gap: 39px;
    flex-direction: column !important;
    align-items: center !important;
  }
  .tab-container-offer .of-parr-col {
    margin: 0 0 20px;
  }
  .of-parr .of-container {
    width: 100%;
  }
  .of-parr .tab-container {
    padding-left: 20px;
  }
  .of-parr-col {
    margin: 0 0 20px;
  }
  .of-hed-detalle {
    padding: 0px 10px;
    max-width: 240px;
    flex-wrap: wrap;
  }
  .of-hed-detalle em {
    font-size: 20px;
  }
  .of-hed-detalle span {
    width: 100%;
    padding: 20px 0;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  }
  .of-hed mark {
    font-size: 15px;
  }
  .of-hed-title {
    font-size: 18px;
  }
  .banner_ps5 {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
  }
  .banner_ps5 .cont-img {
    width: 305px;
    height: 53px;
    border-radius: 4px 4px 0px 0px;
  }
  .banner_ps5 .contrata {
    width: 305px;
    height: 77px;
    padding: 7px 32px;
    border-radius: 0px 0px 4px 4px;
  }
  .banner_ps5 .contrata p.desktop {
    display: none;
  }
  .banner_ps5 .contrata p.mobile {
    font-family: "TelefonicaWeb-Regular";
    color: #0b2739;
    display: block;
    font-size: 14px;
    line-height: 20px;
    text-align: left;
  }
  .banner_ps5 .contrata p.mobile span {
    font-size: 14px;
  }
  .banner_ps5 .contrata .verDetalle {
    font-size: 14px;
    left: 83px;
    top: -22px;
  }
  .banner_ps5 .contrata .verDetalle::after {
    width: 7px;
    height: 7px;
  }
  .of-beneficios {
    padding: 56px 0px;
  }
  .of-beneficios h2 {
    font-size: 20px;
    max-width: 323px;
    margin: 0 auto;
  }
  .of-beneficios-card {
    padding: 16px;
    min-height: auto;
  }
  .of-beneficios-card h3 {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    font-size: 16px;
  }
  .of-beneficios-card p {
    font-size: 14px;
  }
  .banner-ofertas-moviles .banner {
    background-image: url(../img/2023/bg-banner-movil-mobile.jpg);
    flex-direction: column;
    gap: 16px;
    padding: 19px 28px;
    padding-top: 130px;
    border-radius: 16px;
  }
  .banner-ofertas-moviles .banner p {
    text-align: center;
    font-size: 18px;
  }
  .banner-ofertas-moviles .banner-hogar {
    background-image: url(../img/2023/bg-banner-hogar-mobile.jpg);
  }
  .banner-slider .banner {
    background-image: url(../img/2023/bg-banner-slider-mobile.jpg);
    flex-direction: column-reverse;
    padding: 40px 0px;
    overflow: hidden;
    gap: 32px;
  }
  .banner-slider .banner .slider .hamburgesa {
    margin-left: 288px;
  }
  .banner-slider .banner .slider .chat {
    margin-left: 49px;
  }
  .banner-slider .banner .slider .ticket {
    bottom: auto;
    top: 0;
    margin-top: -31px;
    margin-right: 58px;
  }
  .banner-slider .banner .info {
    text-align: center;
    padding: 0px 13px;
  }
  .banner-slider .banner .info .title {
    font-size: 24px;
  }
  .banner-slider .banner .info .text {
    font-size: 14px;
  }
  .banner-slider .banner .info .btn {
    margin: 0 auto;
    margin-top: 24px;
  }
  .cards-pack_container {
    flex-direction: row !important;
  }
  .parrilla-title {
    font-size: 18px;
    padding-top: 60px;
    margin-bottom: 24px;
  }
  .parrilla-title strong {
    color: #019DF4;
  }
  .modal-condiciones {
    font-size: 16px;
    margin-bottom: 28px;
  }
  .header-error {
    background-image: url(../img/2023/bg-no-respuesta-mobile.jpg);
    background-position: left center;
    min-height: 206px;
  }
  .header-error-info {
    margin-left: 112px;
    margin-top: 31px;
    max-width: 215px;
  }
  .header-error-info h3 {
    font-size: 32px;
  }
  .header-error-info p {
    font-size: 14px;
    max-width: 182px;
  }
  .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;
  }
  .form-email {
    padding: 60px 20px;
  }
  .form-email h2 {
    font-size: 18px;
  }
  .form-email h2 strong {
    display: block;
  }
  .form-email .container {
    margin-top: 24px;
    padding: 30px 16px;
  }
  .form-email .container h3 {
    font-size: 14px;
  }
  .form-email .container p {
    font-size: 14px;
  }
  .movil-ofertas {
    padding: 60px 0px;
  }
  .movil-ofertas-title {
    font-size: 20px;
    max-width: 306px;
    margin: 0 auto;
    margin-bottom: 24px;
  }
  .movil-ofertas-title strong {
    font-family: "TelefonicaWeb-Regular", arial, sans-serif;
  }
  .movil-ofertas-container {
    width: 100%;
    overflow-x: scroll;
    justify-content: flex-start;
    padding: 0px 20px;
  }
  .container-celulares {
    padding-left: 20px;
    margin-top: 0px;
  }
  .tabs-buttons .item {
    padding: 10px 16px;
  }
  .banner-otros-equipos {
    flex-direction: column;
    text-align: center;
    justify-content: center;
    padding: 16px;
    gap: 8px;
    margin-top: 57px;
  }
  .banner-otros-equipos .info h3 {
    font-size: 14px;
  }
  .banner-otros-equipos .info p {
    display: none;
  }
  .banner-otros-equipos .btn {
    width: 100%;
  }
}
@media all and (max-width: 620px) {
  .display-mobile {
    display: block;
  }
  .display-desktop {
    display: none;
  }
  .of-header {
    background-position: right top;
  }
  .of-header-container {
    padding: 24px 0px;
    max-width: 100%;
  }
  .of-header-container h1 {
    margin-left: 0px;
  }
  .of-navy {
    background: #fff;
    padding: 0;
  }
  .of-navy-container {
    margin-top: 0;
    width: 100%;
    justify-content: flex-start;
  }
  .of-navy-center {
    margin: 0;
  }
  .of-navy-btn {
    margin: 0;
    color: #000;
    padding: 10px 5px;
  }
  .of-navy-btn small {
    font-size: 12px;
  }
  .of-navy .active::after {
    content: none;
  }
  .of-navy-back {
    color: #000;
    margin: 0;
    padding: 10px 5px;
    font-size: 14px;
  }
  .of-navy-icon {
    border-color: #000;
    width: 6px;
    height: 6px;
  }
}
@media all and (max-width: 400px) {
  .display-mobile {
    display: block;
  }
  .display-desktop {
    display: none;
  }
  .header-error {
    background-size: contain;
    background-position-y: 68px;
  }
}
@media (max-width: 320px) {
  .display-mobile {
    display: block;
  }
  .display-desktop {
    display: none;
  }
  .banner_ps5 .cont-img {
    width: 280px;
  }
  .banner_ps5 .contrata {
    width: 280px;
    padding: 7px 25px;
  }
  .banner_ps5 .contrata p.mobile {
    font-size: 13px;
  }
  .banner_ps5 .contrata .verDetalle {
    font-size: 13px;
    left: 62px;
  }
}
.if-parrilla {
  margin-top: 40px;
}

.if-fcount {
  position: relative;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: -5px;
  bottom: -51px;
}
.if-fcount-highlight {
  color: #fff;
  background: #E63780;
  padding: 15px 25px;
  font: 16px "TelefonicaWeb-Light", arial, sans-serif;
  border-radius: 8px 0 0 8px;
  text-align: left;
}
.if-fcount-highlight em {
  display: block;
  font-size: 22px;
}
.if-fcount-wrapper {
  background: #fff;
  padding: 15px 10px;
  border-radius: 0 8px 8px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 300px;
}
.if-fcount-number {
  text-align: center;
  color: #000;
  font: 24px "TelefonicaWeb-Bold", arial, sans-serif;
  width: 25%;
  padding: 0 10px;
  border-right: 1px solid #dedede;
}
.if-fcount-number:last-child {
  border-right: 0;
}
.if-fcount-text {
  font: 11px "TelefonicaWeb-Regular", arial, sans-serif;
  display: block;
  color: #656565;
}

.if-cucardax {
  background: #e63780;
  padding: 5px;
  border-radius: 4px 4px 0 0;
  position: absolute;
  width: 100%;
  left: 0;
  top: -10px;
  color: #fff;
  font-size: 14px;
}

@media all and (max-width: 660px) {
  .of-btnoff {
    margin: -45px auto 30px !important;
  }
  .if-parrilla {
    margin-top: 15px;
  }
  .if-flash {
    padding: 15px 0;
  }
  .if-flash-title {
    font-size: 32px;
  }
  .if-fcount-highlight {
    font-size: 16px;
    padding: 10px 25px;
    width: 300px;
    text-align: center;
    border-radius: 8px 8px 0 0;
  }
  .if-fcount-highlight em {
    font-size: 18px;
  }
  .if-fcount-wrapper {
    padding: 10px 25px;
    border-radius: 0 0 8px 8px;
  }
  .if-fcount-number {
    font-size: 20px;
  }
}
.tab-contenedor {
  position: fixed;
  width: 100%;
  bottom: 0px;
  border: 1px solid #fff;
  border-radius: 8px;
  background-color: #fff;
  font-size: 14px;
  font-family: "TelefonicaWeb-Regular", arial, sans-serif;
}
.tab-contenedor .tab-cabecera {
  display: flex;
  justify-content: space-around;
  margin: 10px 5px;
}
.tab-contenedor .tab-cabecera .vacio {
  width: 20%;
}
.tab-contenedor .tab-cabecera .deslizador {
  width: 60%;
  display: flex;
  justify-content: center;
}
.tab-contenedor .tab-cabecera .deslizador span {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #ddd;
  border-radius: 8px;
  width: 80px;
  height: 5px;
}
.tab-contenedor .tab-cabecera .cerrar {
  width: 20%;
  display: flex;
  justify-content: end;
  padding-right: 10px;
}
.tab-contenedor .tab-contenido {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
  padding: 15px;
  background-color: #fff;
  border-top: 1px solid #B6B7B7;
}
.tab-contenedor .tab-contenido .tab-label {
  font-size: 20px;
  margin-bottom: 8px;
}
.tab-contenedor .tab-contenido p {
  font-size: 12px;
  font-family: "TelefonicaWeb-Light", arial, sans-serif;
  margin-bottom: 10px;
}
.tab-contenedor .tab-contenido div {
  display: flex;
  gap: 5px;
  padding: 15px 10px;
  border-bottom: 1px solid #D3D4D3;
}

.blur {
  filter: blur(5px);
}

/*# sourceMappingURL=bundle.css.map */
