/*
Theme Name:   	IMEFI
Theme URI:
Author:
Author URI:
Template:     	storefront
Description:  	child
Version:      	1.0.1
License:      	GNU General Public License v2 or later
License URI:  	http://www.gnu.org/licenses/gpl-2.0.html
Text Domain:  	storefront
Tags:         	black, white, light, two-columns, left-sidebar, right-sidebar, responsive-layout, custom-background, custom-colors, custom-header, custom-menu, featured-images, full-width-template, threaded-comments, accessibility-ready
This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
Storefront is based on Underscores http://underscores.me/, (C) 2012-2014 Automattic, Inc.
Resetting and rebuilding styles have been helped along thanks to the fine work of
Eric Meyer http://meyerweb.com/eric/tools/css/reset/index.html
along with Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
FontAwesome License: SIL Open Font License - http://scripts.sil.org/OFL
Images License: GNU General Public License v2 or later
*/
/*
 * Add your own custom css below this text.
 */


/* --------------------------------
  --------------------------------
  ---------------------------------------------------------------- generales */

* {
  font-family: 'Manrope', sans-serif;
}

:root {
  /* Generales */
  --black: #000000;
  --text: #484848;
  --white: #ffffff;

  --blue: #031238;
  --blue-two: #408AC7;
  --blue-tree: #E3F3FF;
  --blue-four: #004080;

  /* grises */
  --grey: #989898;
  --grey-two: ##D9D9D9;
  /* --grey-tree: #EFEFEF; */
  --grey-tree: #F7F7F7;
  --grey-four: #e5e5e5;
  --grey-five: #f7f7f7;
  --grey-six: #797979;

  /* rojos */
  --red: #B92F1E;
  --red-two: #F9470F;
  --red-three: #DA7576;

  /* verdes */
  --green: #88DD75;
  /* --green-two: #019E85;
  --green-three: #8CF0EA; */

  /* Naranja */
  --orange: #FFA755;

  /* Purpura */
  --purple: #1D172D;
  --purplish: #423C52;
  --purple-two: #BAAEE5;
  --purple-tree: #3F3166;
  --purple-four: #765DBF;
  --purple-five: #521B7B;
  --purple-six: #C285F0;
  --purple-seven: #3A1B52;
  --purple-eight: #e7e1ff;

  /* Fuentes */
  --font-title: 'Ubuntu';
  /* --font-title: font-family: 'PT Sans', sans-serif; */
  --font-imefi: 'Oxygen';
  --font-text: 'Manrope';
  --font-weight-bold: bold;
  --font-weight-normal: 300;
  --font-weight-lighter: lighter;

  /* Tamaños fuentes */
  --big-font-2x: 2.5rem;
  --big-font: 2rem;
  --medium-font: 1.4rem;
  --small-font-2x: 1.2rem;
  --small-font: 1rem;
  --tiny-font: 0.8rem;

  /* Bordes */
  --borders-small: 5px;
  --borders: 10px;

  /* Sombras */
  --box-shadow-default: 0px 0px 25px 0px rgba(0, 0, 0, 0.1);

}

* {
  font-display: swap;
}

/* Colors */
.color-grey {
  color: var(--grey);
}

/* Title */
.font-title {
  font-family: var(--font-title);
}

/* Fonts */
.font-weight-bold {
  font-weight: var(--font-weight-bold);
}

.font-weight-normal {
  font-weight: var(--font-weight-normal);
}

.font-weight-lighter {
  font-weight: var(--font-weight-lighter);
}


.font-big-2x {
  font-size: var(--big-font-2x);
}

.font-big {
  font-size: var(--big-font);
}

.font-medium {
  font-size: var(--medium-font);
}

.font-small {
  font-size: var(--small-font);
}

.font-tiny {
  font-size: var(--tiny-font);
}

/* Widths */
.w-100 {
  max-width: 100%;
}

.w-90 {
  max-width: 90%;
}

.w-80 {
  max-width: 80%;
}

.w-70 {
  max-width: 70%;
}

.w-60 {
  max-width: 60%;
}

.w-50 {
  max-width: 50%;
}

.w-40 {
  max-width: 40%;
}

.w-30 {
  max-width: 30%;
}

.w-20 {
  max-width: 20%;
}

.w-10 {
  max-width: 10%;
}


@media (max-width: 979px) {

  .w-100,
  .w-90,
  .w-80,
  .w-70,
  .w-60,
  .w-50,
  .w-40,
  .w-30,
  .w-20,
  .w-10 {
    max-width: 100%;
    width: 100% !important;
  }
}


.left {
  float: left
}

.right {
  float: right
}

.center {
  margin: 0 auto;
  float: none
}

body {
  font-family: 'Oxygen', sans-serif !important;
  font-weight: 600;
  background: #fff;
  /*background:#FAFAFA */
}

.site-header {
  background: #FFF;
  padding-top: 0 !important;
  border-bottom-color: transparent;
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0)
}

.logo {
  background: url('images/logo.png') no-repeat top center;
  height: 70px;
  width: 140px;
  display: block;
  background-size: contain;
  float: left;
  transition: .2s all
}

.logo:hover {
  transition: .2s all;
  -webkit-filter: grayscale(100%);
  /* Safari 6.0 - 9.0 */
  filter: grayscale(100%);
  opacity: 0.5;
  cursor: pointer;
}

.woocommerce-breadcrumb {
  display: none
}

a:link,
a:visited {
  color: #1a1a1a;
  transition: .2s all
}

a:hover {
  text-decoration: none;
  color: #0a2f87;
  transition: .2s all
}

@media (max-width: 979px) {
  .logo {
    width: 100px;
    height: 50px;
  }
}

/* Borders */
.borders-small {
  border-radius: var(--borders-small);
}

.borders {
  border-radius: var(--borders);
}

ul.products {
  background: #fff
}

ul.products li.product .button {
  background: #0a2f87;
  color: #FFF !important;
  width: 100%;
  transition: .2s all
}

ul.products li.product .button:hover {
  background: #43454b;
  transition: .2s all
}

ul.products li.product a img {
  width: 100%
}

ul.products li.product a h2 {
  font-size: 19px !important;
  height: 48px;
  overflow: hidden
}

ul.products li.product a .onsale {
  float: left
}

ul.products .row {
  margin: 0
}

.price .amount {
  font-size: 18px
}

a:hover {
  color: #9e9e9e;
}

.facebook,
.twitter,
.instagram,
.youtube,
.linkedin {
  font-size: 22px !important;
  transition: 0.2s all;
}

.facebook-top,
.twitter-top,
.instagram-top,
.twitter-top,
.youtube-top,
.linkedin-top,
.whatsapp-top,
.tiktok-top {
  color: var(--white);
}

.facebook {
  color: #395ca9;
}

.twitter {
  color: #1997f0;
}

.instagram {
  color: #202428;
}

.youtube {
  color: #ff0000;
}

.linkedin {
  color: #395ca9;
}

.whatsapp {
  color: #1ad13d;
  font-size: 20px;
}

.facebook:hover,
.twitter:hover,
.instagram:hover,
.youtube:hover,
.linkedin:hover {
  color: #ccc;
  transition: 0.2s all;
}




.buyCourse a:link,
.buyCourse a:visited,
.buyCourseMembresiaBlue a:link,
.buyCourseMembresiaBlue a:visited {
  background: #3f8ac7 !important;
  margin: 15px auto;
  display: inline-block;
  font-weight: lighter;
  padding: 15px 10px;
  text-align: center;
  color: #FFF;
  transition: .2s all;
  border-radius: 30px;
}

.buyCourse a:first-child {
  display: none;
}

/* --------------------------------
  --------------------------------
  ---------------------------------------------------------------- menu */
.fixMenuHeader {
  padding-bottom: 17px;
  padding-top: 10px;
}

#menu-header,
#menu-logged {
  list-style-type: none;
  margin: 0;
  padding: 0;
  float: right;
}

#menu-header li,
#menu-logged li {
  float: left;
  margin-right: 5px;
  margin-left: 5px;
}

#menu-header li:last-child,
#menu-logged li:last-child {
  margin-right: 0px;
}

#menu-header li a:link,
#menu-header li a:visited,
#menu-logged li a:link,
#menu-logged li a:visited {
  color: #1d1d1d;
  font-size: var(--small-font);
  font-weight: lighter !important;
}

#menu-header li a:link,
#menu-header li a:last-child {
  padding-right: 0;
}

#menu-header li a:hover,
#menu-logged li a:hover {
  color: #d5d9db;
}

#menu-logged li:last-child a:link {
  padding: 0;
}

ul.submenu {
  list-style-type: none;
  margin: 0;
  padding: 0;
  float: right;
  color: #9e9e9e;
  z-index: 9;
  display: block;
  position: relative;
  font-size: 16px;
}

ul.submenu li {
  float: left;
  margin-right: 9px;
}

ul.submenu li:last-child {
  margin-right: 0;
}

.right .submenu {
  margin-top: 10px;
  margin-bottom: 10px;
  padding: 3px 0px 3px 26px;
}

.current-menu-item a:link,
.current-menu-item a:visited {
  color: #15378c !important;
  background: transparent;
  font-weight: 600;
  padding: 10px 17px 24px !important;
  border-bottom: 1px solid #15378c;
}

#primary {
  min-height: 600px;
  /* max-width: 1400px; margin: 0 auto; */
}

*:focus {
  outline: none;
}

#masthead {
  margin-bottom: 0 !important;
  background: #fff !important
    /*#27383e*/
    /*#f8f8f8*/
  ;
  width: 100%;
  /* position: fixed; */
}

.topBlack {
  background: #353535;
}

.topBlackMenu {
  padding: 10px 0 5px;
}

.topBlackMenu p {
  margin-bottom: 0;
  padding-bottom: 0;
  color: #FFF;
  font-family: 'Ubuntu', sans-serif;
  font-weight: 100;
}

.right .submenu li a:link,
.right .submenu li a:visited {
  color: #5f5f5f;
  opacity: 1;
  font-weight: lighter !important;
}

.right .submenu li a:hover {
  color: #5f5f5f;
  opacity: 0.7;
}

.new_menu_class {
  clear: both;
}

.topBlackMenu .submenu li a .zmdi {
  color: #FFF;
  font-size: 18px !important;
}

.topBlackMenu .submenu li a .zmdi:hover {
  color: #eee !important;
}

.imefiTvMenu:before {
  content: url('images/imefi-tv-color.svg');
  width: 41px;
  height: fit-content;
  display: inline-block;
  float: left;
}

.imefiTvMenu {
  height: 29px;
  padding-left: 40px;
  width: fit-content;
  display: flex;
}

.imefiTvMenu a:link,
.imefiTvMenu a:visited {
  text-transform: uppercase;
  font-family: sans-serif;
  font-size: 15px !important;
  display: block;
  color: #982329 !important;
  padding: 0 !important;
  margin: 3px 0 0 0;
  border: 0;
}

.imefiTvMenu a:hover {
  color: #1a1a1a !important;
}

.total {
  float: right
}

.account {
  font-family: var(--font-text);
  font-weight: var(--font-weight-normal)
}


ul.sub-menu li {}

.sub-menu {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

@media (min-width: 980px) {
  ul.sub-menu li {
    display: none;
  }

  .sub-menu {
    list-style-type: none;
    margin: 0;
    padding: 0;
    position: absolute;
  }

  .sub-menu li {
    float: left;
    clear: both;
    margin: 0 !important;
    padding: 0;
    color: #000;
    width: 100%;
  }

  .sub-menu li:first-child {
    margin-top: 20px !important;
  }

  .sub-menu li a:link,
  .sub-menu li a:visited {
    color: #FFF !important;
    border-bottom: 1px solid #ccc;
    background: #3f8ac7;
    padding-bottom: 13px !important;
    padding-top: 13px !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
    display: block;
    font-size: 15px !important;
  }

  .sub-menu li a:hover {
    color: #3f8ac7 !important;
    background: #f7f7f7;
    border-bottom: 1px solid #15378c;
  }
}

@media (max-width: 979px) {
  .menu-container {
    display: none;
  }

  #menu-header-1,
  #menu-logged-1 {
    list-style-type: none;
    margin: 0;
    padding: 0;
  }

  #menu-header-1 li a,
  #menu-logged-1 li a {
    font-size: 1.3rem;
    padding: 10px 0px !important;
    display: block;
    border-bottom: 1px solid #e6e6e6;
  }

  .current-menu-item a:link,
  .current-menu-item a:visited {
    padding: 10px 0px !important;
  }

  .imefiTvMenu a:link,
  .imefiTvMenu a:visited {
    font-size: 1.2rem !important;
  }

  .imefiTvMenu {
    width: 100%;
    height: auto;
    padding-left: 0px;
    display: table;
  }

  .imefiTvMenu:before {
    width: 50px;
    margin-top: 10px;
    margin-left: -10px;
  }
}

@media (min-width: 576px) and (max-width: 991px) {
  .container {
    max-width: 90% !important;
  }
}

/* --------------------------------
  --------------------------------
  ---------------------------------------------------------------- home */

/* Hero */
.hero-banner {
  background: url('images/v1_612.png');
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: 490px;
}

.poliza-logo {
  width: 170px;
}

.color-red {
  color: var(--red);
}

.poliza-data {
  display: flex;
  flex-direction: row;
  gap: 10px;
  font-weight: var(--font-weight-normal);
  font-family: var(--font-imefi);
}

.poliza-description {
  font-family: var(--font-title);
}

.compraBtn {
  background: var(--blue);
  color: var(--white) !important;
  display: table;
  padding: 10px 30px;
  border-radius: var(--borders);
  font-size: var(--small-font);
  font-weight: var(--font-weight-lighter);
  letter-spacing: 2px;
}

.compraBtn:hover {
  background: var(--blue);
  color: var(--red);
  letter-spacing: 3px;
}

.categories-home {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.categories-home-ind {
  background: var(--grey-tree);
  font-size: var(--small-font);
  color: var(--grey);
  font-weight: var(--font-weight-lighter);
  font-family: var(--font-imefi);
  border-radius: var(--borders);
  padding: 15px 25px;
  text-align: center;
  line-height: 20px;
}

.categories-home-ind:hover {
  background: var(--blue);
  color: var(--white);
}

.about-home-title {
  color: var(--blue);
  font-weight: var(--font-weight-bold);
  font-size: var(--medium-font);
  font-family: var(--font-text)
}

.about-home-subtitle {
  color: var(--blue);
  font-weight: var(--font-weight-bold);
  font-size: var(--medium-font);
}

.about-home-description {
  font-size: var(--small-font);
}

.ad-home {
  border-radius: 8px;
}

.ad-home a img {
  margin: 0 auto;
}

@media (max-width: 979px) {
  .hero-banner {
    background: none;
  }

  .categories-home {
    overflow-x: scroll;
    scrollbar-width: none;
  }

  .categories-home:after {
    content: "";
    background: rgb(255, 255, 255);
    background: linear-gradient(90deg, rgba(164, 8, 8, 0) 0%, rgba(255, 255, 255, 1) 100%);
    width: 80px;
    display: block;
    height: 70px;
    position: absolute;
    right: 0;
  }

  .categories-home:before {
    content: "";
    background: rgb(255, 255, 255);
    background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(164, 8, 8, 0) 100%);
    width: 80px;
    display: block;
    height: 70px;
    position: absolute;
    left: 0;
  }

  .overflow-hidden {
    overflow: hidden;
  }
}


/* --------------------------------
  --------------------------------
  ---------------------------------------------------------------- cursos */

.curso-individual {
  border: 1px solid var(--grey-four);
  border-radius: var(--borders);
  transition: 0.2s all;
}

.curso-thumbnail {
  height: 308px;
  display: flex;
  border-radius: 0;
  overflow: hidden;
}

.curso-thumbnail img {
  display: block;
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}

.curso-title {
  font-size: 1.2rem;
  padding: 6px 20px;
  height: 60px;
  line-height: 26px;
  overflow: hidden;
}

.curso-price {
  font-size: var(--small-font);
  color: var(--blue-two);
  padding: 6px 12px;
}

.curso-price del .woocommerce-Price-amount {
  background: var(--red-two);
  color: var(--white);
  padding: 5px 10px;
  font-size: var(--tiny-font);
  border-radius: var(--borders);
  margin-right: 5px;
}

.curso-category {
  font-size: var(--tiny-font);
  color: var(--black);
  background: var(--blue-tree);
  padding: 9px 12px 6px 12px;
  border-radius: var(--borders);
  height: 37px;
  overflow: hidden;
  line-height: 23px;
}

.curso-card {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.curso-individual:hover {
  margin-top: -10px;
  transition: 0.2s all;
  box-shadow: 0 15px 10px rgba(0, 0, 0, 0.151);
}

.woocommerce-price-suffix {
  display: none;
}

/* --------------------------------
  --------------------------------
  ---------------------------------------------------------------- page */

.hentry {
  max-width: 1250px;
  margin: 0 auto !important;
}

/* --------------------------------
  --------------------------------
  ---------------------------------------------------------------- blog */

.blog-header {
  background: #f4f4f4;
}

.post-individual {
  border: 1px solid var(--grey-four);
  border-radius: var(--borders);
  transition: 0.2s all;
}

.post-thumbnail {
  height: 308px;
  display: flex;
  border-radius: 0;
  overflow: hidden;
}

.post-thumbnail img {
  display: block;
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}

.post-title {
  font-size: 1.2rem;
  padding: 6px 20px;
  height: 60px;
  line-height: 26px;
  overflow: hidden;
}

.post-price {
  font-size: var(--small-font);
  color: var(--blue-two);
  padding: 6px 12px;
}

.post-category {
  font-size: var(--tiny-font);
  color: var(--black);
  background: var(--blue-tree);
  padding: 9px 12px 6px 12px;
  border-radius: var(--borders);
}

.post-views {
  font-size: var(--tiny-font);
  color: var(--black);
  background: var(--grey-tree);
  padding: 9px 12px 6px 12px;
  border-radius: var(--borders);
}

.post-card {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.post-individual:hover {
  margin-top: -10px;
  transition: 0.2s all;
  box-shadow: 0 15px 10px rgba(0, 0, 0, 0.151);
}

.blog-title {
  font-size: var(--big-font-2x);
  font-family: var(--font-title);
  font-weight: var(--font-weight-normal);
}

.entry-header {
  border: 0 !important;
}

.call-subtitle {
  background: rgb(241, 241, 241);
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: space-between;
}

p {
  font-family: var(--font-imefi);
  font-size: var(--small-font-2x);
  font-weight: 500;
}

#strcpv-page-counter p {
  margin: 0;
  display: inline-block;
  font-size: var(--tiny-font);
}

#post-navigation {
  width: 1200px;
  margin: 0 auto;
}

.nav-links .nav-previous {
  border: 1px solid #e1e1e1;
  height: 100px;
  border-left: 0;
  text-align: right;
  padding: 30px;

  a {
    font-size: var(--small-font) !important;
    color: var(--blue-four)
  }
}

.nav-links .nav-next {
  border: 1px solid #e1e1e1;
  height: 100px;
  border-right: 0;
  text-align: left;
  display: flex;
  padding: 30px;

  a {
    font-size: var(--small-font) !important;
    color: var(--blue-four)
  }
}

/* --------------------------------
  --------------------------------
  ---------------------------------------------------------------- contacto */

.wpcf7-form input {
  width: 100%;
  background: transparent;
  border-bottom: 1px solid #ccc;
  box-shadow: inset 0 0 0 transparent;
  padding: 10px 20px;
  font-size: 17px;
}

.wpcf7-form input:hover {
  background: #43454b !important;
}

.wpcf7-submit {
  background: #2b499e !important;
  color: #FFF;
  margin-top: 20px;
  width: 30% !important;
  float: right;
}

#topMap {
  padding-left: 0;
  padding-right: 0;
  margin-bottom: 40px;
}

.contactFormContainer {
  margin-top: 30px;
  margin-bottom: 30px;
}

.sedeUno iFrame {
  width: 100%;
}

.mapTag {
  color: #6a6a6a;
  font-size: 14px;
  background: #ccc;
  padding: 2px 10px;
  margin-top: 7px;
  clear: both;
  display: inline-block;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  transition: 0.2s all;
}

.mapTag:hover {
  cursor: pointer;
  color: #FFF !important;
  background: #254388 !important;
  transition: 0.2s all;
}

.activeMap {
  color: #FFF !important;
  background: #31529f !important;
  transition: 0.2s all;
}

.contactSide {
  margin: 0;
  padding: 0;
  list-style-type: none;
  font-family: "Source Sans Pro";
  font-size: 16px;
}

.contactSide li {
  margin-left: 30px;
  margin-bottom: 20px
}

.contactSide li .zmdi {
  margin-left: -25px;
  position: absolute;
  padding-top: 0;
  font-size: 21px
}

.gMap iframe {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  width: 100%;
  height: 300px
}

/* --------------------------------
  --------------------------------
  ---------------------------------------------------------------- footer */

#footerPage {
  padding: 50px 0 30px;
}

.textSmall {
  color: var(--grey);
}

.footTitle {
  font-size: var(--small-font);
}

ul.listItems {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.footer_class ul {
  margin: 0;
  list-style-type: none;
  padding: 0;
}

.footer_class ul li.current-menu-item a {
  padding: 0 !important;
  border-bottom: 0px solid #15378c;
  margin: 0;
}

.footer_class ul li a {
  font-family: var(--font-text);
  font-size: var(--tiny-font);
}

.footer_class ul li a:hover {
  color: var(--black);
  !important;
}

.footName {
  color: #6d6d6d;
  font-family: var(--font-imefi);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  font-size: var(--small-font);
  display: inline-block;
}

.textSmall {
  color: #909090;
  font-weight: var(--font-weight-bold);
  font-size: 12px;
}

.footSecure {
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  padding-top: 20px;
  margin-top: 20px;
}

.iconsSize {
  font-size: 25px;
}

.footLogosNet {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.footLogosNet li {
  float: left;
  margin: 0;
  padding: 0;
}

.footerLogo {
  max-width: 120px;
}

.logoFoot {
  width: 90px;
  height: 60px;
  float: left;
}

.logos {
  height: 38px;
  margin: -8px 0 0 0;
}


/* --------------------------------
  --------------------------------
  ---------------------------------------------------------------- store */

.storefront-sorting {
  max-width: 1300px;
  margin: 0 auto;
}

.site-main .products {
  max-width: 1300px;
  margin: 40px auto 0;
}

.storefront-sorting select {
  border: 1px solid #cfcfcf;
  font-size: var(--small-font);
  font-weight: 500;
  padding: 4px 5px 3px 5px;
  color: var(--black);
}


/* --------------------------------
  --------------------------------
  ---------------------------------------------------------------- Cuenta */

#post-9 .entry-header {
  display: none;
}


/* --------------------------------
  --------------------------------
  ---------------------------------------------------------------- header */

@media (max-width: 979px) {
  #header-cross {
    border-bottom: 1px solid #e2e2e2;
  }
}

/* --------------------------------
  --------------------------------
  ---------------------------------------------------------------- woocommerce */

#post-8 .entry-header {
  display: none;
}

/* .woocommerce-info { background: var(--grey-four); } */
.post-8 .fixColumns .woocommerce {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.post-8 .fixColumns .woocommerce .woocommerce-form-login-toggle,
.post-8 .fixColumns .woocommerce .woocommerce-form-coupon-toggle {
  width: 45%;
}

#customer_details .col-1,
#customer_details .col-2 {
  width: 100% !important;
  max-width: 100% !important;
}

/* --------------------------------
  --------------------------------
  ---------------------------------------------------------------- product */

.product-title {
  font-size: var(--big-font);
  font-family: var(--font-title);
  font-weight: var(--font-weight-normal);
}

.summaryProduct h1 {
  display: none;
}

.summaryProduct .price {
  margin: 0 !important;
}

.summaryProduct .price del {
  opacity: 1;
}

.summaryProduct .price del .woocommerce-Price-amount {
  padding: 5px 10px;
  font-size: var(--medium-font);
  color: var(--grey-six);
}

.summaryProduct .price del+ins {
  margin-top: -15px;
  display: block;
  margin-left: -12px;
}

.summaryProduct .price del+ins span bdi,
.price .woocommerce-Price-amount {
  font-size: var(--big-font-2x);
  clear: both;
  display: block;
  padding-left: 10px;
  color: var(--black);
  font-family: var(--font-imefi);
}

.summaryProduct .product_meta {
  display: none;
}

.individualProdc-Container .onsale {}

.individualProdc-Container .woocommerce-product-gallery {
  width: 100% !important;
}

.summaryProduct .cart .quantity input {
  display: none;
}

.auto .woocommerce,
.auto .woocommerce .woocommerce-message {
  max-width: 1310px;
  margin: 4px auto 0;
}

@media (max-width: 979px) {
  .summaryProduct-fixed {
    width: 100%;
    position: fixed;
    z-index: 9;
    background: #fff;
    top: 0;
  }

  .single-product div.product form.cart {
    margin-bottom: 0 !important;
  }

  .ul.products li.product {
    margin-bottom: 1.2rem !important;
  }

  .storefront-sorting {
    margin: 0 10%;
    text-align: center;
  }

  .fixed {
    position: fixed;
    z-index: 99;
  }

  /* .auto { margin: 0 auto; max-width: 85%; } */
}

/* --------------------------------
  --------------------------------
  ---------------------------------------------------------------- Comments */

#comments {
  width: 1300px;
  margin: 0 auto;
}

/* --------------------------------
  --------------------------------
  ---------------------------------------------------------------- Membresia */

.membresiaHeader {
  background: url(images/bg_membership.jpg) no-repeat bottom center;
  background-size: cover;
  margin-top: 149px;
  padding-top: 80px;
  padding-bottom: 40px
}

.membresiaHeaderBlue {
  background: url(images/bg_membership_blue.jpg) no-repeat bottom center;
  background-size: cover;
  padding-top: 80px;
  padding-bottom: 40px
}

.titleMembership {
  color: #FFF
}

#compraMembership {
  background: #FFF;
  width: 400px;
  margin: 0 auto;
  box-shadow: 0 16px 40px #ccc;
  overflow: hidden;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px
}

.precioMembership {
  text-align: center;
  width: 100%;
  margin: 10px 0;
  font-size: 30px
}

.precioMembership .price span {
  text-align: center;
  font-size: 30px;
  font-family: "PT Sans", sans-serif
}

.buyCourseMembresia a {
  width: 100%;
  text-align: center;
  margin-top: 10px;
  background: #940a0a
}

.buyCourseMembresiaBlue a {
  width: 100%;
  text-align: center;
  margin-top: 10px
}

.noBorder {
  padding-left: 0;
  padding-right: 0
}

.onlyOne {
  color: #ccc;
  text-align: center;
  font-size: 14px;
  clear: both;
  display: block;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
  margin-bottom: 20px
}

.costCourseMembership {
  text-align: center;
  width: 90%;
  margin: 0 auto;
  display: block
}

.featuresCourseMembership {
  margin-top: 20px
}

.featuresCourseMembership ul {
  margin: 0 0 20px;
  padding: 0;
  list-style-type: none
}

.featuresCourseMembership ul li {
  text-align: center;
  margin-bottom: 10px
}

table.shop_table_responsive.my_account_orders .order-actions {
  padding-left: 0;
}


#customer_details .col-1,
#customer_details .col-2 {
  width: 100% !important;
}


/* --------------------------------
  --------------------------------
  ---------------------------------------------------------------- salones */



/* --------------------------------
  --------------------------------
  ---------------------------------------------------------------- Cart */

.woocommerce-cart-form__cart-item:odd {
  background: #fbfbfb;
}

@media (max-width: 979px) {
  .woocommerce-cart-form__cart-item .product-remove {
    display: inline;
    position: absolute !important;
    margin-top: 15px;
    right: 60px;
  }

  .woocommerce-cart-form__cart-item .product-thumbnail {
    float: left;
  }

  .woocommerce-cart-form__cart-item .product-name {
    display: block;
  }
}

/* --------------------------------
    --------------------------------
    ---------------------------------------------------------------- About */
.aboutQuote {
  border-top: 1px solid #ccc;
  margin-top: 30px;
  padding-top: 20px;
  font-size: 16px;
  border-bottom: 1px solid #ccc;
  font-style: italic;
  font-weight: 600;
}


/* --------------------------------
  --------------------------------
  ---------------------------------------------------------------- Ads */

.ad-1 {
  background: rgb(217, 217, 217);
  width: 728px;
  height: 90px;
}


/* --------------------------------
--------------------------------
---------------------------------------------------------------- Programas */

.logoTopProgram {
  max-height: 70px;
  margin-top: 30px;
  position: absolute;
  z-index: 999;
  background: var(--white);
  padding: 11px;
}

.thumb {
  border: 0;
  float: left;
  width: 100px;
  height: 75px;
  background: url(https://a.vimeocdn.com/thumbnails/defaults/default.75x100.jpg);
  margin-right: 10px
}

#embed {
  background-color: var(--white);
  height: 280px;
  width: 504px;
  float: left;
  padding: 10px
}

#portrait {
  float: left;
  margin-right: 5px;
  max-width: 100px
}

#stats {
  clear: both;
  margin-bottom: 20px
}

#video_container {
  background: var(--black);
  padding: 0;
}

#video_container iframe {
  margin: 0 auto;
  display: block;
  width: 900px !important;
  height: 500px !important
}

.videoThumbnail {
  list-style-type: none;
  margin: 5px auto 0;
  padding: 0;
  display: table
}

.videoThumbnail li {
  font-family: var(--font-imefi);
  width: 100%;
  height: auto;
  background: var(--white);
  color: var(--black);
  text-align: left;
  padding: 10px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  display: flex;
  overflow: hidden;
}

.videoThumbnail li:hover {
  cursor: pointer
}

.videoThumbnail li p {
  margin: 0;
  float: left;
  display: block;
  width: 100%;
  font-size: var(--small-font);
}

.videoThumbnail li span {
  padding-left: 15px;
  font-size: var(--small-font);
  font-weight: var(--font-weight-lighter);
  float: left;
  display: table;
  position: relative;
  clear: both;
  text-align: right;
}

.activeThumb {
  color: var(--white) !important;
  background: var(--blue) !important
}

#video_container p {
  text-align: center;
  width: 100%;
  font-family: var(--font-title);
  font-size: var(--small-font);
  margin: 30px 0 0;
  display: block;
  position: relative;
  clear: both;
  font-weight: var(--font-weight-bold)
}

p.title {
  text-align: center;
  width: 100%;
  font-family: var(--font-title);
  font-size: var(--small-font);
  margin: 0 0 20px;
}

.logoTopProgram {
  max-height: 70px;
  margin-top: 30px;
  position: absolute;
  z-index: 999;
  background: var(--white);
  padding: 11px;
}

/* --------------------------------
  --------------------------------
  ---------------------------------------------------------------- storefront reset */



/* --------------------------------
  --------------------------------
  ---------------------------------------------------------------- login */

#customer_login {
  margin-top: 130px;
}

@media (max-width: 979px) {
  #customer_login {
    margin-top: 10%;
  }

  .loginbox {
    width: 80% !important;
    margin: 0 auto;
  }

  .loginbox .woocommerce #customer_login .col-1,
  .loginbox .woocommerce #customer_login .col-2 {
    width: 100% !important;
  }

  .loginbox .woocommerce #customer_login .col-1 {
    margin-bottom: 60px;
  }
}


/* --------------------------------
  --------------------------------
  ---------------------------------------------------------------- 404 */

.error-404 {
  margin-top: 60px;
}

.error404 .fourohfour-columns-2 {
  max-width: 1320px;
  margin: 0 auto;
}


@media (max-width: 979px) {
  .error-404 {
    max-width: 90%;
    margin: 60px auto 0;
  }

  .error404 .fourohfour-columns-2 .col-1,
  .error404 .fourohfour-columns-2 .col-2 {
    max-width: 95%;
    width: 95% !important;
    margin: 0 auto;
  }

  .error404 .fourohfour-columns-2 .col-1 .woocommerce ul.columns-2 li {
    width: 100%;
    margin-right: 0;
    margin-bottom: 30px;
  }
}

/* Estilos para banner de descuentos */
.discount-banner {
	/* background: #fff; */
	color: #333;
	padding: 0;
	margin: 20px 0;
	border-radius: 10px;
	text-align: center;
	/* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); */
}

.discount-banner .banner-content {
	padding: 20px;
}

/* Caja roja con texto blanco */
.discount-banner h3 {
	background-color: #ff0000;
	color: white;
	font-size: 20px;
	padding: 10px 15px;
	margin: 0 0 15px 0;
	border-radius: 8px;
	display: inline-block;
}

/* Contador en una sola línea */
.countdown-timer {
	display: flex;
	justify-content: center;
	gap: 15px;
	flex-wrap: nowrap;
	flex-direction: row;
	align-items: center;
}

.time-unit {
	background: rgba(255, 0, 0, 0.1);
	padding: 10px 15px;
	border-radius: 8px;
	min-width: 60px;
}

.time-unit span {
	display: block;
	font-size: 24px;
	font-weight: bold;
	line-height: 1;
	color: #ff0000;
}

.time-unit label {
	display: block;
	font-size: 12px;
	margin-top: 5px;
	text-transform: uppercase;
	color: #666;
}

.precio-descuento-rojo {
	color: #ff0000 !important;
	font-weight: bold;
}

.precio-descuento-rojo del {
	color: #999 !important;
}

@media (max-width: 768px) {
	.countdown-timer {
		flex-wrap: wrap;
		gap: 10px;
	}
}