* {
  font-family: "Modern Era", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol" !important;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.section-heading {
  font-size: 34px;
  font-weight: 400;
}

.onsale {
  display: none;
}

.product__content {
  display: flex;
  padding-top: 32px;
}

.product__breadcrumb {
  padding-top: 140px;
  font-size: 14px;
  display: flex;
  justify-content: flex-start;
  align-items: center; 
}

.product__image-container {
  max-width: 500px;
  position: relative;
}

.product__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product__img-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 9;
  transform: scale(1.05);
}

.product__info {
  flex-grow: 1;
  margin-left: 35px;
  margin-top: 24px;
}

.product__intro {
  font-size: 22px;
  margin-left: 2px;
}

.product__country {
  font-size: 40px;
  font-weight: 400;
  margin: 0 0 8px;
}

.product__prices {
  float: right;
  display: flex;
  align-items: baseline;
  margin-top: -20px;
}

.rtl .product__prices {
  float: left;
}

.rtl .product__prices p {
  font-size: 24px;
  margin-right: 0;
  margin-left: 5px;
}

.rtl span.price-text {
  margin-right: 0;
  margin-left: 5px;
}

.product__prices p {
  font-weight: 700;
  font-size: 34px;
  margin-right: 4px;
  text-align: right;
}

.product__prices s {
  font-size: 16px;
  color: #c0c3c5;
  text-decoration: line-through;
}

.product__trustpilot {
  height: 50px;
  width: fit-content;
  margin-top: 30px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  padding: 8px;
}

.product__bullets {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 30px;
  margin-left: 12px;
  margin-top: 14px;
}

.product__bullet,
.product__bullets ul li{
  position: relative;
  line-height: 120%;
  margin-bottom: 8px;
  font-size: 16px;
}

.product__bullet::before,
.product__bullets ul li::before{
  content: "";
  height: 5px;
  width: 5px;
  background:black;
  border-radius: 1.5px;
  position: absolute;
  top: 9px;
  left: -12px;
  transform: translateY(-50%);
}

.product__shipping-info {
  display: flex;
  align-items: center;
}

.product__shipping-info {
  margin-left: 25px;
  margin-bottom: 25px;
}

.product__shipping-info img {
  height: 18px;
  margin-right: 8px;
}

.product__shipping-info p {
  font-size: 14px;
  font-weight: 700;
}

.product__payment-modal {
  margin-top: 32px;
  background: #ffffff;
  box-shadow: 0px -2px 12px rgba(189, 189, 189, 0.08),
    0px 15px 24px rgba(189, 189, 189, 0.12);
  border-radius: 12px;
  padding: 16px 21px;
}

.product__payment-text {
  font-size: 20px;
}

.product__variations {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 20px;
}

.product__variation {
  width: 100%;
  height: 61px;
  background: #f5f7f9;
  border-radius: 8px;
  position: relative;
}

.product__variation-price {
  position: absolute;
  top: 14px;
  right: 14px;
}

.product__variation-info {
  position: absolute;
  bottom: 14px;
  left: 14px;
}

.product-img-mobile {
  display: none;
}

.product-img-desktop {
  display: block;
}

.product-select {
  display: none;
}

.product__mobiles {
  background-color: #f5f7f9;
  max-width: 50%;
  margin-top: 16px;
  padding: 12px;
  font-size: 14px;
  line-height: 16px;
}
.product__mobiles > details{
  cursor: pointer;
}
@media screen and (-webkit-min-device-pixel-ratio:0) and (min-resolution:.001dpcm) {
  .product__mobiles > details > summary{
    position: relative;
    margin-left: 28px;
  }
  .product__mobiles > details > summary:before{
    content: '▼';
    position: absolute;
    left: -28px;
    top: 3px;
    font-size: 12px;
  }
  .product__mobiles > details[open] > summary:before{
    content: '▲';
  }
}
.product__mobiles details ul{
  margin-top: 2rem;
}
.product__mobiles details ul li{
  margin-bottom: 10px;
}
.woocommerce-variation.single_variation {
  display: none !important;
}

.product__breadcrumb span, .product__breadcrumb img {
  margin-right: 18px;
}

.rtl .product__breadcrumb span, .rtl .product__breadcrumb img {
  margin-left: 18px;
  margin-right: 0px;
}

.product__breadcrumb img:first-of-type {
  margin-right: 26px;
}

.price-container {
  display: flex;
  justify-content: space-between;
}

span.price-text {
  font-weight: 400;
  font-size: 13px;
  line-height: 20px;
  color: #292B2E;
  margin-right: 5px;
}

@media screen and (max-width: 1080px) and (min-width: 720px) {
  .product__image-container{
    max-width: 380px;
  }
  .product__image-container img{
    max-width: 100%;
    height: auto;
  }
}

@media all and (max-width: 780px) {

  .product__info .price, .product__info .woocommerce-currency {
    display: none;
  }

  .product__country {
    font-size: 40px;
    font-weight: 400;
    margin: 0;
  }

  .product-img-desktop {
    display: none;
  }

  .product-img-mobile {
    display: block;
    position: relative;
  }

  .section-heading {
    font-size: 28px;
  }

  .product__content {
    flex-direction: column;
    padding-top: 10px;
  }

  .product__image-container {
    width: 100%;
    max-width: 100%;
    height: 187px;
    position: relative;
  }

  .product__image-container > div {
    width: 100%;
    height: 100%;
  }

  .product__image-container > div > img:first-child, .product__image-container > div > picture:first-child > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .product__img {
    width: 100%;
    height: 100%;
  }

  .product__img-wave {
    width: 100%;
    object-fit: contain;
  }

  .product__info {
    display: flex;
    flex-direction: column;
    flex-grow: 0;
    margin-left: 0;
    margin-top: 20px;
  }

  .product__intro {
    font-size: 16px;
  }

  .product__country {
    font-size: 32px;
  }

  .product__current-price {
    font-size: 16px;
  }

  .product__last-price {
    font-size: 14px;
  }

  .product__trustpilot {
    margin-top: 8px;
    margin-bottom: 8px;
    background-color: #f5f7f9;
  }

  .product__bullets {
    grid-template-columns: 1fr;
    column-gap: 0px;
    margin-top: 8px;
    margin-bottom: 22px;
  }

  .product__shipping-info {
    display: flex;
    align-items: center;
    margin-bottom: 22px;
  }

  .product__shipping-info img {
    height: 18px;
    margin-right: 8px;
  }

  .product__shipping-info p {
    font-size: 14px;
    font-weight: 700;
    margin-left: 10px;
  }

  .product__payment-modal {
    margin-top: 32px;
    background: #ffffff;
    box-shadow: 0px -2px 12px rgba(189, 189, 189, 0.08),
      0px 15px 24px rgba(189, 189, 189, 0.12);
    border-radius: 12px;
    padding: 16px 21px;
  }

  .product__payment-text {
    font-size: 20px;
  }
  
  .variations_form {
    padding: 0 !important;
  }

  .product-select {
    display: block;
    width: 100%;
    height: 32px;
    border: 1px solid #c0c0c0;
    border-radius: 6px;
    padding: 0px 8px;
    outline: none;
    margin-bottom: 20px;
  }

  .add-block-btn a.added_to_cart{
    display: none !important;
  }

  .proteger {
    margin-top: 20px;
  }

  .shop-product {
    max-width: 100%;
  }

  .product__mobiles {
    max-width: 100%;
  }

  .product__breadcrumb {
    display: none;
  }
}

/* FICCIONADO TARJETA PRODUCTO */

.product__card {
  height: 165px;
  width: 262px;
  background-color: #fff;
  border-radius: 12px;
  position: absolute;
  bottom: -59px;
  left: 50%;
  transform: translate(-50%);
  overflow: hidden;
  box-shadow: 0px 0.06px 50px rgba(186, 186, 186, 0.4);
  z-index: 10;
}

.product__card-wave {
  width: 100%;
  height: 60%;
  object-fit: cover;
}

.product__card-logo {
  position: absolute;
  top: 16px;
  left: 16px;
  height: 54px;
  width: 54px;
}

.product__card-text {
  display: block;
  position: relative;
  left: 35%;
  bottom: -12px;
  width: 60%;
  max-width: 60%;
  margin: 0px;
}

.product__card-qr {
  height: 80px;
  width: 80px;
  position: absolute;
  left: 8px;
  bottom: -12px;
}

.rtl .product__shipping-info img {
  margin-right: 0;
  margin-left: 8px;
}

.rtl .owl-nav button {
  transform: rotateY(180deg);
}

@media all and (max-width: 758px) {

  .rtl .product__shipping-info {
    margin-left: 0;
    margin-right: 25px;
  }

  .product__card {
    height: 110px !important;
    width: 148px !important;
    bottom: 24px;
    left: 20%;
  }

  .rtl .product__card {
    left: 25%;
  }

  .rtl span.product__card-text {
    left: -10px;
  }

  .product__card-wave {
    width: 100% !important;
    height: 50% !important;
    object-fit: cover;
  }

  .product__card-logo {
    top: 8px;
    left: 8px;
    height: 20px;
    width: 20px;
  }

  .product__card-text {
    display: block;
    position: relative;
    left: 35%;
    bottom: -4px;
    width: 65%;
    max-width: 65%;
    margin: 0px;
    font-size: 10px;
  }

  .product__card-qr {
    height: 40px;
    width: 40px;
    position: absolute;
    left: 8px;
    bottom: 8px;
  }

  .rtl .product__info {
    margin-right: 8px;
  }
}

/* BOTONES MÁS Y MENOS EN SHORT DESCRIPTION */

.show-more-btn,
.show-less-btn {
  display: none;
}

#product-modal-content {
  z-index: 111;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px;
  gap: 16px;
  position: fixed;
  width: 30%;
  height: 100vh;
  right: 0;
  top: 0px;
  overflow-y: scroll;
  background: #FFFFFF;
  box-shadow: -7px -7px 10px rgb(182 182 182 / 10%);
}

#product-modal-content h3 {
  height: 24px;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  color: #292B2E;
  margin-bottom: 20px;
  text-align: center;
  width: 90%;
}

.product-modal-content-title {
  display: flex;
}

.product-modal-content-title {
  display: flex;
  align-items: flex-start;
}

div#product-compatibles {
  font-size: 16px;
  overflow: hidden;
  overflow-y: scroll;
}

div#product-compatibles a {
  text-decoration: underline;
  font-weight: bold;
}

.open-modal-button {
  cursor: pointer;
  width: 90%;
  padding: 0 12px 12px 12px;
  border-bottom: 1px solid #D2D2D5;
  margin: 0 auto 12px auto;
  display: flex;
  justify-content: space-between;
}

img.close-icon {
  mrgin-top: 3px;
  cursor: pointer;
}

#product-details li {
  list-style: initial;
  margin-left: 18px;
}

span.product__title {
  font-weight: bold;
}

.product-variation .currency_symbol {
  padding-top: 4px;
  padding-left: 4px;
  grid-column: 2;
  font-size: 12px;
  font-weight: bold;
}

.sticky-add-to-cart-price .currency_symbol {
  font-weight: bold;
  font-size: 12px;
}

.sticky-add-to-cart-price .woocommerce-currency {
  margin-left: 6px;
  margin-right: 16px;
  margin-bottom: 3px;
}

.rtl .sticky-add-to-cart-price {
  align-items: end;
  display: flex;
}
@media all and (max-width: 758px) {

  .sticky-add-to-cart-price .woocommerce-currency {
    margin-left: 6px;
  }

  .sticky-add-to-cart-price .currency_symbol {
    left: 85px;
    top: 20px;
    font-size: 10px;
    margin: 0 9px 1px 4px;
  }

  .product-variation .currency_symbol {
    left: unset;
    text-decoration: none;
    position: absolute;
    top: 26px;
    right: 16px;
    padding-top: 8px;
    font-size: 10px;
  }

  .show-more-btn,
  .show-less-btn {
    display: block;
    cursor: pointer;
    margin-top: 12px;
    transition: 0.3s ease-in;
    cursor: pointer;
  }

  .mobile-hidden {
    display: none;
  }

  .show-more-btn:hover,
  .show-less-btn:hover {
    color: #e6485c;
  }
}
/* styles for product tabs*/
  /* Style the tab */
  .tabs-product{
    margin-top: 20px;
  }

  .tabs {
    background: #F8F8FB;
    border-radius: 18px;
    display: flex;
    width: fit-content;
  }

/* Create an active/current tablink class */
  .tabs a, .tabs div{
    float: left;
    outline: none;
    padding: 8px 16px;
    font-size: 14px;
    width: fit-content;
    text-align: center;
    margin: 8px;
    cursor: pointer;
  }

  .tabs h3{
    font-weight: 500;
    white-space: nowrap;
  }

  .tabs a.active h3, .tabs div.active h3 {
    font-weight: 800;
  }

/* Style the tab content */
  .tabcontent {
    display: none;
    background-color: #fff;
    padding: 20px;
    border-top: none;
    min-width: fit-content;
    max-width: fit-content;
    border-bottom-left-radius: 0.75rem;
    border-bottom-right-radius: 0.75rem;
    margin: 0;
  }

  .default{
    display:grid;
    margin: auto;
  }

  #General{
    max-width: initial!important;
  }

  .tabs a.active, .tabs div.active {
    border: 1px solid #292B2E;
    background: white;
    border-radius: 12px;
  }

  @media all and (max-width: 758px) {

    .tabs {
      overflow-x: scroll;
      width: 100%;
      padding-right: 15px;
    }

    .tabcontent {
      padding: 20px;
    }

    .tabs a, .tabs div{
      font-size: 14px;
      width: auto;
      border-radius: 5px;
      background-color: white;
      margin-right: 1.33%;
      margin-top: 5px;
      text-align: center;
      border: none;
      height: fit-content;
    }

    .tabs-product {
      margin-top: 0px;
      box-shadow: none;
    }
    
    .default{
      display:grid;
      margin: auto;
    }
    #General{
      max-width: initial!important;
    }
    
    .rtl .shop-product ins, .shop-product del,.rtl .product-variation > span:nth-child(3) {
      left: 4px;
      right: unset;
    }

    .rtl .quantity {
        margin-right: 0;
        margin-left: 0;
        justify-content: left;
    }

    .rtl .add-cart .cta-primary {
        font-size: 15px;
        padding: 10px;
    }

    .rtl .product__bullet::before,.rtl .product__bullets ul li::before {
        right: 0px;
    }

    .sticky-add-to-cart-product-variation {
      position: absolute;
      top: 32px;
      left: 24px;
      margin: unset;
      max-width: 55%;
    }
    
    .product .owl-nav {
      display: none;
    }   
  }

  .price ins {
    text-decoration: none;
  }

.product .owl-dots {
  text-align: center;
}

.product .owl-carousel button.owl-dot {
  height: 3px;
  width: 14px;
  margin: 0 3px;
  background: #DDE1E8;
}

.product .owl-carousel button.owl-dot.active {
  background: #000;
}

/* End styles product tab*/

del[aria-hidden="true"] {
  display: none;
}

.variants-tabs-container-selector {
  background: white;
  display: flex;
  width: 100%;
  cursor: pointer;
  position: relative;
}

.sharing-data .new-label    {
    position: absolute;
    top: -12px;
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    color: #2065CE;
    background: #EBF3FF;
    border-radius: 24px;
    padding: 4px 12px;
    right: 24px;
}

.sticky-add-to-cart-form .variants-tabs-container-selector {
  display: none;
}

.variants-tabs-container-selector p {
  text-align: center;
  width: 50%;
  background: #F8F8FB;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: bold;
}

.variants-tabs-container-selector p.active {
  background: white;
  border-top: 4px solid #48EC86;
}

p.unlimited-data.active {
  border-top-left-radius: 0.75rem;
}

p.sharing-data.active {
  border-top-right-radius: 0.75rem;
}

.shop-product__content {
  padding: 28px;
}

.product__info .single_variation_wrap {
  padding: 0 28px 28px 28px;
}

p.variant-tabs-title {
  font-family: 'Modern Era';
  font-style: normal;
  font-weight: 500;
  font-size: 22px;
  line-height: 28px;
  text-align: left;
  margin: 20px auto;
}

.variants-tabs-container-bullets {
  width: 100%;
  display: flex;
  margin-bottom: 28px;
  color: 	#292B2E;
  font-weight: 400;
}

.variants-tabs-container-bullets p {
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.variants-tabs-container-bullets p:first-child {
  margin-right: 50px;
} 


.variants-tabs-container-bullets p img {
  margin-right: 8px;
}

.sticky-add-to-cart-form p.variant-tabs-title,
.sticky-add-to-cart-form #unlimited-data,
.sticky-add-to-cart-form #sharing-data {
    display: none;
}

@media all and (max-width: 780px) {
  .variants-tabs-container-bullets p:first-child {
    margin-right: 0;
    margin-bottom: 15px;
  }

  .variants-tabs-container-bullets {
    flex-direction: column;
 }

  p.variant-tabs-title {
    text-align: center;
    width: 60%;
  }
}

@media all and (max-width: 780px) {
  p.variant-tabs-title {
    font-size: 18px;
  }
}

/* Sticky add to cart */

.sticky-add-to-cart-container {
  position: fixed;
  bottom: 0;
  left: 0;
  height: 80px;
  background: white;
  display: none;
  justify-content: space-between;
  width: 100%;
  z-index: 10;
  box-shadow: 0px -7px 10px rgb(182 182 182 / 20%);
  animation: fade_in_show 0.75s;
}

.sticky-add-to-cart-product {
  width: fit-content;
  padding-left: 10%;
  margin: 1em;
}

.rtl .destination__prices {
  margin-bottom: 10px;
}

.rtl .sticky-add-to-cart-form {
  padding-left: 10%;
}

.rtl .sticky-add-to-cart-container ins {
  left: unset;
}

.product-variation.sharing-data {
  display: none;
}

.sticky-add-to-cart-product-title {
  font-size: 16px;
}

.sticky-add-to-cart-form .shop-product__content {
  display: none;
}

.sticky-add-to-cart-product-variation {
  margin: 8px 0;
  font-size: 18px;
  font-weight: bold;
}

p.sticky-add-to-cart-product-text {
  font-size: 14px;
  color: #96969D;
  display: none;
}

.sticky-add-to-cart-container #bloque-addcart h3,
.sticky-add-to-cart-container .variations,
.sticky-add-to-cart-container .added_to_cart,
.sticky-add-to-cart-container .bloque-seguridad {
  display: none;

}

.sticky-add-to-cart-price>.price>del>span.woocommerce-Price-amount.amount>bdi {
  display: none;
}

.sticky-add-to-cart-container ins {
  font-size: 22px;
  text-decoration: none;
  top: 0;
  padding-left: 0;
  padding-top: 5px;
  font-weight: bold;
  width: fit-content;
}

.sticky-add-to-cart-container .cart-add-container.add-block-btn {
  flex-direction: row;
  align-items: flex-end;
}

.sticky-add-to-cart-container div#bloque-addcart {
  margin: 0;
  padding: 0;
}

.sticky-add-to-cart-container #menos-producto,
.sticky-add-to-cart-container #mas-producto {
  height: 32px;
  width: 32px;
}

#mas-producto {
  margin-right: 16px;
}

.rtl #mas-producto {
  margin-right: unset;
}

.sticky-add-to-cart-form {
  display: flex;
  align-items: flex-start;
  padding-right: 10%;
}

.sticky-add-to-cart-form .input-cantidad {
  width: 40px;
}

.product__info button#checkoutButton {
  display: none;
}

.woocommerce-currency {
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
}

.sticky-add-to-cart-form .col-md-9.add-cart {
  display: flex;
  justify-content: center;
  align-items: center;
}

.sticky-add-to-cart-container .checkout-button {
  height: 40px;
  font-size: 0.8em;
  width: fit-content;
  margin: 0.5em;
  padding: 5px 10px;
}

.sticky-add-to-cart-container .btn-primary-l.cta-primary {
  height: 40px;
  font-size: 16px;
  width: 260px;
  margin: 20px 0;
  padding: 5px 10px;
}

.sticky-add-to-cart-container .shop-product {
  box-shadow: none;
}

.sticky-add-to-cart-container span.woocommerce-Price-amount.amount {
  font-size: 22px;
}

@keyframes fade_in_show {
  0% {
       opacity: 0;
       transform: translateY(100%)
  }

  100% {
       opacity: 1;
       transform: scale(1)
  }
}

@media all and (min-width: 758px) {

  .cart-add-container .sticky-add-to-cart-product-variation {
    display: none;
  }

  .sticky-add-to-cart-form .quantity {
    margin: auto 0;
  }
}

.rtl .product__info {
  margin-left: 0;
  margin-right: 55px;
}

.rtl .product__bullet::before,
.rtl .product__bullets ul li::before {
  left: 0;
  right: -20px;
}

.rtl .shop-product ins {
  font-size: 16px;
  padding-right: 0;
}

.rtl .quantity {
  margin-right: 0;
  margin-left: 12px;
  width: 100%;
}

.rtl .product__breadcrumb img {
  margin-right: 0;
  transform: rotateY(180deg);
  margin-left: 26px;
}

.rtl .sticky-add-to-cart-product {
  padding-right: 10%;
}

@media all and (max-width: 758px) {
  
  #mas-producto {
    margin-right: 0;
  }

  .rtl .destination__prices {
    margin-bottom: 0;
  }

  .sticky-add-to-cart-container span.woocommerce-Price-amount.amount {
    font-size: 16px;
  }

  .sticky-add-to-cart-container .cart-add-container.add-block-btn {
    flex-direction: column;
  }

  p.sticky-add-to-cart-product-text {
    display: none;
  }

  .sticky-add-to-cart-product {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .sticky-add-to-cart-container .btn-primary-l.cta-primary {
    width: 100%;
    height: 48px;
  }

  .sticky-add-to-cart-product {
    padding-left: 1em;
  }

  .sticky-add-to-cart-form {
    padding: 15px 24px;
    display: block;
    width: 100%;
  }

  .sticky-add-to-cart-container {
    display: none;
    height: 140px;
  }

  .intercom-lightweight-app-launcher.intercom-launcher {
    bottom: 200px;
  }

  iframe.intercom-launcher-frame {
    bottom: 200px !important;
  }

  iframe.intercom-launcher-frame {
    bottom: 120px !important;
  }

  .sticky-add-to-cart-product-title {
    font-size: 18px;
  }

  .sticky-add-to-cart-product-variation {
    font-size: 16px;
  }

  .sticky-add-to-cart-product {
    display: none;
  }

  .sticky-add-to-cart-product-variation {
    position: absolute;
    top: 32px;
    left: 24px;
    margin: unset;
    max-width: 50%;
  }

  .rtl .sticky-add-to-cart-product-variation {
    left: unset;
    right: 25px;
  }

  .sticky-add-to-cart-form .col-md-9.add-cart {
    width: 100%;
    margin-top: 6px;
  }

  .sticky-add-to-cart-form .input-cantidad {
    width: 50px;
  }

  .sticky-add-to-cart-container ins {
    left: 0;
    position: relative;
  }

  .quantity {
    position: unset;
    margin-right: 0;
  }

  .product__info .quantity {
    display: none!important;
  }
}

/* End add to cart */
