/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Normalize
# Typography
# Elements
# Forms
# Navigation
	## Links
	## Menus
# Accessibility
# Alignments
# Clearings
# Widgets
# Content
	## Posts and pages
	## Comments
# Infinite scroll
# Media
	## Captions
	## Galleries
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
/*! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */
/* Document
	 ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

/* Sections
	 ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0; }

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0; }

/* Grouping content
	 ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */ }

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

/* Text-level semantics
	 ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent; }

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  text-decoration: underline dotted;
  /* 2 */ }

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder; }

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%; }

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sub {
  bottom: -0.25em; }

sup {
  top: -0.5em; }

/* Embedded content
	 ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none; }

/* Forms
	 ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */ }

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible; }

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none; }

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button; }

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0; }

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText; }

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em; }

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *		`fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */ }

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline; }

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto; }

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto; }

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */ }

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */ }

/* Interactive
	 ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block; }

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item; }

/* Misc
	 ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none; }

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none; }

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
optgroup,
textarea {
  color: #404040;
  font-family: "lato";
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5; }

h1, h2, h3, h4, h5, h6 {
  clear: both; }

h2 {
  font-size: 1.75em;
  line-height: 1.4em;
  margin-bottom: 0.375em;
  text-rendering: optimizelegibility;
  font-weight: 500; }

p {
  margin-bottom: 1.5em; }

dfn, cite, em, i {
  font-style: italic; }

blockquote {
  margin: 0 1.5em; }

address {
  margin: 0 0 1.5em; }

pre {
  background: #eee;
  font-family: "Courier 10 Pitch", Courier, monospace;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 1.6em;
  max-width: 100%;
  overflow: auto;
  padding: 1.6em; }

code, kbd, tt, var {
  font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
  font-size: 15px;
  font-size: 0.9375rem; }

abbr, acronym {
  border-bottom: 1px dotted #666;
  cursor: help; }

mark, ins {
  background: #fff9c0;
  text-decoration: none; }

big {
  font-size: 125%; }

a {
  text-decoration: none; }

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
html {
  box-sizing: border-box; }

*,
*:before,
*:after {
  /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
  box-sizing: inherit; }

body {
  background: #fff;
  /* Fallback for when there is no custom background color defined. */ }

hr {
  background-color: #ccc;
  border: 0;
  height: 1px;
  margin-bottom: 1.5em; }

ul {
  list-style: none;
  padding: 0; }

ol {
  list-style: decimal; }

li > ul,
li > ol {
  margin-bottom: 0;
  margin-left: 1.5em; }

.single-formaciones article li {
  margin-bottom: 0.6em; }

dt {
  font-weight: bold; }

dd {
  margin: 0 1.5em 1.5em; }

img {
  height: auto;
  /* Make sure images are scaled correctly. */
  max-width: 100%;
  /* Adhere to container width. */ }

figure {
  margin: 1em 0;
  /* Extra wide images within figure tags don't overflow the content area. */ }

table {
  margin: 0 0 1.5em;
  width: 100%; }

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  background-color: #cf1212;
  color: white;
  font-size: 1.5em;
  padding: 0.2em 1.5em;
  border: 0;
  cursor: pointer; }
  button:hover,
  input[type="button"]:hover,
  input[type="reset"]:hover,
  input[type="submit"]:hover {
    background-color: #444; }
  button:active, button:focus,
  input[type="button"]:active,
  input[type="button"]:focus,
  input[type="reset"]:active,
  input[type="reset"]:focus,
  input[type="submit"]:active,
  input[type="submit"]:focus {
    border-color: #aaa #bbb #bbb; }

.carrito {
  background: #cf1212 none repeat scroll 0 0;
  color: #fff !important;
  margin: 0;
  padding: 0.5em;
  vertical-align: super;
  border-radius: 6px 6px 6px 6px;
  border: 0px solid #000000; }

#searchsubmit {
  display: inline-block;
  width: 40px;
  height: 40px;
  border: 1px solid #ccc;
  background-color: white;
  border-radius: 2px;
  color: #cf1212;
  line-height: 1em;
  font-size: 1.2em;
  border-radius: 0;
  padding: 0; }

.btn-lista {
  margin-top: 1.2em;
  background-color: #cf1212;
  padding: 8px 16px;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: bold;
  text-transform: uppercase;
  display: block;
  text-align: center !important;
  cursor: pointer; }
  .btn-lista:hover {
    background-color: #323944; }

@media (max-width: 576px) {
  .btn-lista {
    display: inline-block;
    margin: 0;
    width: 58%;
    font-size: 1em;
    padding: 0.5em;
    margin-left: 1.5em; } }
/*
@media (min-width: 1200px) { 
	.btn-lista{
        display: inline !important;
        text-align: left;
	}
}
*/
.btn-solicitar {
  padding: 8px 16px;
  margin: 1em 0 0;
  background: #666;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: bold;
  text-transform: uppercase;
  display: inline-block;
  text-align: center;
  cursor: pointer; }
  .btn-solicitar:hover {
    background-color: #cf1212;
    color: #fff; }

@media (max-width: 576px) {
  .btn-solicitar {
    font-size: 0; }

  .btn-solicitar:before {
    font-family: "Font Awesome 5 Free";
    font-weight: bold;
    margin: 0;
    font-size: 25px;
    content: '\f07a'; } }
.btn-solicitar:visited {
  color: #fff; }

/*
@media (min-width: 1200px) { 
	.btn-solicitar{
        display: inline !important;
        text-align: left;
	}
}
*/
.btn {
  text-align: center;
  padding: 8px 16px;
  background: #666;
  color: #ffff !important;
  text-decoration: none;
  font-size: 13px;
  font-weight: bold;
  text-transform: uppercase;
  display: block;
  cursor: pointer;
  border: 0;
  width: 100%; }
  .btn i {
    padding-right: 0.5em; }
  .btn:hover {
    background-color: #cf1212;
    color: #fff; }

.single-formaciones .btn {
  display: inline; }

@media (max-width: 576px) {
  .single-formaciones .btn {
    display: block; } }
/*
@media (min-width: 576px) { 
    .btn{
        width: auto;
    }
}
*/
.input-units {
  display: inline;
  width: 3em; }

.btn-secondary {
  border: 1px solid #ccc;
  background-color: #fff;
  display: inline;
  padding: 0;
  float: left;
  height: 38px;
  width: 1em; }
  .btn-secondary i {
    color: #575757;
    font-size: 18px; }
  .btn-secondary:hover {
    background-color: #ebafaf;
    cursor: pointer; }

#quantity-sub {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px; }

#quantity-add {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px; }

.btn-home {
  padding: 8px 16px;
  margin: 1em 0 0;
  background: #cf1212;
  color: #FFFFFF !important;
  text-decoration: none;
  font-size: 13px;
  font-weight: bold;
  text-transform: uppercase;
  display: inline-block;
  cursor: pointer;
  border: 0; }

.btn-more {
  padding: 8px 16px;
  background: #666;
  color: #ffff !important;
  text-decoration: none;
  font-size: 13px;
  font-weight: bold;
  text-transform: uppercase;
  display: block;
  cursor: pointer;
  border: 0;
  width: 100;
  text-align: center;
  display: block; }

@media (min-width: 576px) {
  .btn-more {
    display: inline-block; } }
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea, select {
  display: inline-block;
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ccc;
  -webkit-box-shadow: inset 0 1px 3px #eee;
  box-shadow: inset 0 1px 3px #eee;
  border-radius: 2px;
  background-color: white;
  height: 3em; }
  input[type="text"]:active,
  input[type="email"]:active,
  input[type="url"]:active,
  input[type="password"]:active,
  input[type="search"]:active,
  input[type="number"]:active,
  input[type="tel"]:active,
  input[type="range"]:active,
  input[type="date"]:active,
  input[type="month"]:active,
  input[type="week"]:active,
  input[type="time"]:active,
  input[type="datetime"]:active,
  input[type="datetime-local"]:active,
  input[type="color"]:active,
  textarea:active, select:active {
    border-color: green; }

select {
  border: 1px solid #ccc; }

textarea {
  width: 100%;
  height: 12em; }

#s {
  display: inline-block;
  margin-top: 6px;
  width: 60%;
  height: 40px;
  border: 1px solid #ccc;
  background-color: white;
  border-radius: 2px;
  color: #333;
  padding: 0.5em; }

#stock {
  border-radius: 0;
  float: left;
  font-weight: 700;
  height: 38px;
  line-height: 19px;
  margin: 0 -1px;
  padding: 6px;
  position: relative;
  text-align: center;
  top: 0;
  width: 50px;
  background-color: #e1dede; }

/*
@media (min-width: 576px) { 
	#stock{
		height: 1em;
	}
}
*/
/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a {
  color: #cf1212; }
  a:visited {
    color: #a50e0e; }
  a:hover, a:focus, a:active {
    color: #a50e0e; }
  a:focus {
    outline: thin dotted; }
  a:hover, a:active {
    outline: 0; }

/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/
#menu {
  background-color: #cf1212; }

.main-navigation {
  clear: both;
  display: block;
  float: left;
  width: 100%; }
  .main-navigation ul {
    display: none;
    list-style: none;
    margin: 0;
    padding-left: 0; }
    .main-navigation ul ul {
      box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
      float: left;
      position: absolute;
      top: 100%;
      left: -999em;
      z-index: 99999;
      background-color: #cf1212; }
      .main-navigation ul ul ul {
        left: -999em;
        top: 0; }
      .main-navigation ul ul li:hover > ul, .main-navigation ul ul li.focus > ul {
        left: 100%; }
      .main-navigation ul ul a {
        width: 200px; }
    .main-navigation ul li:hover > ul,
    .main-navigation ul li.focus > ul {
      left: auto; }
  .main-navigation li {
    float: left;
    position: relative; }
  .main-navigation a {
    display: block;
    text-decoration: none;
    padding: 0.75em 1.1em;
    color: #fff;
    text-transform: uppercase;
    font-size: 0.81em; }
  @media (min-width: 768px) {
    .main-navigation .casa a {
      padding: 0em 0.5em; }
    .main-navigation .casa a:after {
      font-family: Font Awesome\ 5 Free;
      font-weight: 900;
      content: "\f015";
      font-size: 2em;
      color: #fff; } }

/* Small menu. */
.menu-toggle,
.main-navigation.toggled ul {
  display: block; }

@media screen and (min-width: 37.5em) {
  .menu-toggle {
    display: none; }

  .main-navigation ul {
    display: block; } }
.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
  margin: 0 0 1.5em;
  overflow: hidden; }
.comment-navigation .nav-previous, .posts-navigation .nav-previous, .post-navigation .nav-previous {
  float: left;
  width: 50%; }
.comment-navigation .nav-next, .posts-navigation .nav-next, .post-navigation .nav-next {
  float: right;
  text-align: right;
  width: 50%; }

#wprmenu_menu_ul .casa a {
  padding: 0em 0.5em; }
#wprmenu_menu_ul .casa a:after {
  font-family: "lato";
  font-size: 15px;
  text-transform: uppercase;
  font-weight: normal;
  content: "INICIO"; }

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
  /* Many screen reader and browser combinations announce broken words as they would appear visually. */ }
  .screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    clip-path: none;
    color: #21759b;
    display: block;
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: bold;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
    /* Above WP toolbar. */ }

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
  outline: 0; }

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
  display: inline;
  float: left;
  margin-right: 1.5em; }

.alignright {
  display: inline;
  float: right;
  margin-left: 1.5em; }

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto; }

@media (max-width: 768px) {
  .ocultarmovil {
    display: none; } }
.--textright {
  text-align: right; }

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
  content: "";
  display: table;
  table-layout: fixed; }

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
  clear: both; }

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widget {
  margin: 0 0 1.5em;
  /* Make sure select elements fit in widgets. */ }
  .widget select {
    max-width: 100%; }

/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Header
--------------------------------------------------------------*/
#masthead {
  padding: 0.75em 0;
  /*
  img{
      max-width: none !important;
  }
  */ }
  #masthead .header__carrito, #masthead .header__icons {
    text-align: right;
    margin: 0.5em 0; }
  #masthead .header__buscar div {
    text-align: center; }
    #masthead .header__buscar div #s {
      width: 80%; }
  @media (min-width: 992px) {
    #masthead .header__buscar div {
      text-align: right; }
      #masthead .header__buscar div #s {
        width: 60%; } }
  #masthead .logositio {
    display: flex;
    height: auto;
    max-width: 100%; }
    @media (min-width: 768px) {
      #masthead .logositio {
        height: 160px; } }
    #masthead .logositio a {
      display: table-cell;
      vertical-align: middle; }
  #masthead form {
    text-align: right; }
  #masthead .header__icons i {
    font-size: 1.5em;
    padding: 0 0 0 0.2em;
    color: #cf1212; }
  #masthead .--size {
    font-size: 2.5em;
    color: #000;
    font-family: 'Fjalla One', sans-serif; }
    #masthead .--size i {
      font-size: 1.2em;
      color: #000;
      padding: 0 0.2em; }

/*--------------------------------------------------------------
## Home
--------------------------------------------------------------*/
#content {
  padding: 1.5em 0; }

/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
.sticky {
  display: block; }

.updated:not(.published) {
  display: none; }

.page-content,
.entry-content,
.entry-summary {
  margin: 1.5em 0 0; }

.page-links {
  clear: both;
  margin: 0 0 1.5em; }

.title {
  text-align: center;
  margin: 0;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 2em;
  line-height: 1.333em; }

@media (min-width: 576px) {
  .title {
    font-size: 2.5em; } }
.meta {
  color: #9fa6b4;
  font-style: italic;
  margin: 0; }
  .meta a {
    color: #9fa6b4; }

.error404 .btn-option {
  text-align: center; }
  .error404 .btn-option .btn-lista {
    display: inline; }

/*--------------------------------------------------------------
## tax-familia
--------------------------------------------------------------*/
.tax-familia2018 article, .tax-marca article, .search article {
  text-align: center; }
  .tax-familia2018 article h3, .tax-marca article h3, .search article h3 {
    font-size: 1.5em;
    text-align: center;
    height: 68px;
    font-weight: 500;
    color: #cf1212; }
  .tax-familia2018 article .sprite, .tax-marca article .sprite, .search article .sprite {
    width: 110px;
    height: 50px;
    background: url("./assets/images/css_sprites.png") -10px -80px; }

select {
  height: 3em;
  background-color: #fff; }

.--nocontent {
  display: none; }

.product-menu {
  margin-bottom: 1em; }

/*--------------------------------------------------------------
## single-producto
--------------------------------------------------------------*/
.product-title {
  color: #cf1212;
  text-align: left;
  margin: 0;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 1.5em;
  line-height: 1.333em; }

@media (min-width: 576px) {
  .product-title {
    font-size: 2.5em; } }
#producto__carrito:target {
  display: block !important; }

#producto__carrito {
  z-index: 9999;
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  width: 75%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  color: #000;
  padding: 20px;
  max-height: 90%;
  overflow: auto;
  border: 1px solid #ccc;
  box-shadow: 5px 5px 5px 0px rgba(0, 0, 0, 0.45); }
  #producto__carrito .carrito_close {
    text-align: right; }
    #producto__carrito .carrito_close i {
      color: #000; }
  #producto__carrito span {
    text-align: center;
    display: block;
    margin-top: 1.5em;
    padding: 0.5em;
    background-color: #000;
    color: #fff;
    width: 100%; }
  #producto__carrito #carrito_img img {
    max-width: 100%; }
  #producto__carrito .carrito__titulo strong {
    font-size: 1.3em; }
  #producto__carrito .carrito__titulo p {
    font-size: 1.2em; }
  #producto__carrito .carrito__titulo i {
    padding-left: 0.5em; }
  #producto__carrito .carrito__titulo span {
    float: left;
    width: 100%; }

@media (min-width: 768px) {
  #producto__carrito {
    top: 28%; } }
@media (min-width: 992px) {
  #producto__carrito {
    top: 30%; } }
@media (min-width: 1200px) {
  #producto__carrito {
    top: 40%;
    left: 50%;
    width: 45%; } }
@media (max-width: 576px) {
  .producto__carrito__close {
    display: none; } }
.hidden {
  display: block; }

.producto-info {
  text-align: left; }
  .producto-info p {
    display: block;
    margin: 0; }
    .producto-info p span {
      font-weight: bold; }
  .producto-info #ref-comb {
    display: inline;
    font-weight: normal; }
  .producto-info .product-title {
    margin-bottom: 0.5em; }
  .producto-info .producto-info__carrito {
    text-align: center;
    padding: 1em 0;
    bottom: 0em;
    box-shadow: 0 -5px 15px -3px rgba(0, 0, 0, 0.23);
    height: auto;
    left: 0;
    position: fixed;
    width: 100%;
    z-index: 50;
    background-color: white; }
    .producto-info .producto-info__carrito p {
      display: inline; }
    .producto-info .producto-info__carrito .btn-group {
      position: relative;
      display: inline-flex; }
    @media (min-width: 768px) {
      .producto-info .producto-info__carrito .btn-group {
        width: 100%; } }
  @media (min-width: 768px) {
    .producto-info .producto-info__carrito {
      position: relative;
      box-shadow: none;
      text-align: left; } }
  .producto-info #combinacion {
    height: 3em;
    max-width: 100%; }
  @media (min-width: 768px) {
    .producto-info #combinacion {
      width: 100%; } }
  .producto-info .atr {
    margin-bottom: 1em; }
  .producto-info .btn {
    margin-bottom: 1em; }

#detallesTabs {
  margin: 1em 0;
  padding: 0;
  /*
  ul{
  	list-style:	none;
  	margin: 0;
  }
  */ }
  #detallesTabs #contenedorTabs {
    text-align: left;
    margin: 0 auto;
    background: #fff; }
    #detallesTabs #contenedorTabs div {
      display: none;
      padding: 20px 0 0;
      border-top: 1px solid #ddd; }
    #detallesTabs #contenedorTabs input {
      display: none; }
    #detallesTabs #contenedorTabs label {
      display: inline-block;
      margin: 0 0 -1px;
      padding: 15px;
      font-weight: 600;
      text-align: center;
      color: #888;
      border: 1px solid transparent;
      text-transform: uppercase;
      font-size: 0; }
    #detallesTabs #contenedorTabs label:before {
      font-family: "Font Awesome 5 Free";
      font-weight: bold;
      margin: 0;
      font-size: 18px; }
    #detallesTabs #contenedorTabs label[for*='1']:before {
      content: '\f085'; }
    #detallesTabs #contenedorTabs label[for*='2']:before {
      content: '\f5ae'; }
    #detallesTabs #contenedorTabs label[for*='3']:before {
      content: '\f187'; }
    #detallesTabs #contenedorTabs label:hover {
      color: #444;
      cursor: pointer; }
    #detallesTabs #contenedorTabs input:checked + label {
      color: #444;
      border: 1px solid #ddd;
      border-top: 2px solid red;
      border-bottom: 1px solid #fff; }
    #detallesTabs #contenedorTabs #tab1:checked ~ #content1,
    #detallesTabs #contenedorTabs #tab2:checked ~ #content2,
    #detallesTabs #contenedorTabs #tab3:checked ~ #content3 {
      display: block; }
    #detallesTabs #contenedorTabs .titulo {
      text-transform: uppercase;
      font-size: 1.2em;
      margin-bottom: 0.6em;
      display: inline-block; }
    #detallesTabs #contenedorTabs ul {
      list-style: none; }
      #detallesTabs #contenedorTabs ul li ul {
        margin: 0; }
        #detallesTabs #contenedorTabs ul li ul li {
          padding: 0.3em 0;
          margin-left: 1em; }

@media (min-width: 768px) {
  #detallesTabs #contenedorTabs .titulo {
    display: none; }
  #detallesTabs #contenedorTabs label {
    font-size: 1em;
    padding: 15px 25px; }
  #detallesTabs #contenedorTabs label:before {
    margin-right: 10px; } }
#product-img-owl {
  display: none; }

@media (min-width: 768px) {
  #product-img-owl {
    display: block; } }
.outer {
  margin: 0 auto;
  max-width: 800px; }

#big .item {
  /*background: #ec6e46;*/
  /*padding: 120px 0px; */
  margin: 2px;
  color: #FFF;
  border-radius: 3px;
  text-align: center; }

#thumbs .item {
  /*background: #C9C9C9;*/
  /*height:70px;*/
  line-height: 70px;
  padding: 0px;
  margin: 2px;
  color: #FFF;
  border-radius: 3px;
  text-align: center;
  cursor: pointer; }

#thumbs .item h1 {
  font-size: 18px; }

#thumbs .current .item {
  /*background:#FF5722;*/ }

.owl-theme .owl-nav [class*='owl-'] {
  -webkit-transition: all .3s ease;
  transition: all .3s ease; }

.owl-theme .owl-nav [class*='owl-'].disabled:hover {
  background-color: #D6D6D6; }

#big.owl-theme {
  position: relative; }

#big.owl-theme .owl-next, #big.owl-theme .owl-prev {
  background: #333;
  width: 22px;
  line-height: 40px;
  height: 40px;
  margin-top: -20px;
  position: absolute;
  text-align: center;
  top: 50%; }

#big.owl-theme .owl-prev {
  left: 10px; }

#big.owl-theme .owl-next {
  right: 10px; }

#thumbs.owl-theme .owl-next, #thumbs.owl-theme .owl-prev {
  background: #333; }

@media (max-width: 576px) {
  #thumbs {
    display: none; } }
#thumbs img {
  height: 100% !important;
  margin: auto; }

@media (max-width: 768px) {
  #big img {
    max-width: 100%;
    height: auto; } }
#productos_familia .productos-relacionados {
  text-align: center; }
#productos_familia .productos-relacionados img {
  min-height: 14em; }
/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comment-content a {
  word-wrap: break-word; }

.bypostauthor {
  display: block; }

/*--------------------------------------------------------------
## Footer
--------------------------------------------------------------*/
#colophon {
  background-color: #444;
  padding: 1em 0; }
  #colophon p, #colophon span, #colophon i, #colophon a {
    color: #fff;
    margin: 0; }
  #colophon i {
    padding-right: 0.2em;
    font-size: 1.2em; }
  #colophon p {
    font-size: 0.8em; }
  #colophon i:hover, #colophon a:hover {
    color: #cf1212; }
  #colophon .footer__info {
    text-align: left;
    margin-top: 1em; }
  @media (min-width: 576px) {
    #colophon .footer__info {
      text-align: right;
      margin-top: 0; } }

/*--------------------------------------------------------------
## Sprite
--------------------------------------------------------------*/
.bg-adidas {
  width: 110px;
  height: 50px;
  background: url("../images/css_sprites_png.png") -180px -80px; }

.bg-aerobis {
  width: 110px;
  height: 50px;
  background: url("../images/css_sprites_png.png") -10px -150px; }

.bg-afw {
  width: 110px;
  height: 50px;
  background: url("../images/css_sprites_png.png") -140px -150px; }

.bg-afw-root {
  width: 110px;
  height: 50px;
  background: url("../images/css_sprites_png.png") -10px -220px; }

.bg-afw-strength {
  width: 110px;
  height: 50px;
  background: url("../images/css_sprites_png.png") -140px -220px; }

.bg-assault-fitness {
  width: 110px;
  height: 50px;
  background: url("../images/css_sprites_png.png") -311px -10px; }

.bg-body-solid {
  width: 110px;
  height: 50px;
  background: url("../images/css_sprites_png.png") -311px -80px; }

.bg-circle {
  width: 110px;
  height: 50px;
  background: url("../images/css_sprites_png.png") -311px -150px; }

.bg-concept2 {
  width: 110px;
  height: 50px;
  background: url("../images/css_sprites_png.png") -311px -220px; }

.bg-ecomovement {
  width: 110px;
  height: 50px;
  background: url("../images/css_sprites_png.png") -10px -290px; }

.bg-easy-training {
  width: 110px;
  height: 50px;
  background: url("../images/css_sprites_png.png") -140px -290px; }

.bg-freemotion {
  width: 110px;
  height: 50px;
  background: url("../images/css_sprites_png.png") -270px -290px; }

.bg-intenza {
  width: 110px;
  height: 50px;
  background: url("../images/css_sprites_png.png") -10px -360px; }

.bg-life-fitness {
  width: 110px;
  height: 50px;
  background: url("../images/css_sprites_png.png") -140px -360px; }

.bg-gemini {
  width: 110px;
  height: 50px;
  background: url("../images/css_sprites_png.png") -270px -360px; }

.bg-magtonic {
  width: 110px;
  height: 50px;
  background: url("../images/css_sprites_png.png") -441px -10px; }

.bg-hbx {
  width: 110px;
  height: 50px;
  background: url("../images/css_sprites_png.png") -441px -80px; }

.bg-hammer-strenght {
  width: 110px;
  height: 50px;
  background: url("../images/css_sprites_png.png") -441px -150px; }

.bg-ion {
  width: 110px;
  height: 50px;
  background: url("../images/css_sprites_png.png") -441px -220px; }

.bg-nautilus {
  width: 110px;
  height: 50px;
  background: url("../images/css_sprites_png.png") -441px -290px; }

.bg-ortus-fitness {
  width: 110px;
  height: 50px;
  background: url("../images/css_sprites_png.png") -441px -360px; }

.bg-iron-plate {
  width: 110px;
  height: 50px;
  background: url("../images/css_sprites_png.png") -10px -430px; }

.bg-keiser {
  width: 110px;
  height: 50px;
  background: url("../images/css_sprites_png.png") -140px -430px; }

.bg-panatta {
  width: 110px;
  height: 50px;
  background: url("../images/css_sprites_png.png") -270px -430px; }

.bg-jada {
  width: 110px;
  height: 50px;
  background: url("../images/css_sprites_png.png") -400px -430px; }

.bg-matrix {
  width: 150px;
  height: 50px;
  background: url("../images/css_sprites_png.png") -10px -10px; }

.bg-platinum {
  width: 110px;
  height: 50px;
  background: url("../images/css_sprites_png.png") -10px -500px; }

.bg-platinum-antiguo {
  width: 110px;
  height: 50px;
  background: url("../images/css_sprites_png.png") -140px -500px; }

.bg-poolbiking {
  width: 110px;
  height: 50px;
  background: url("../images/css_sprites_png.png") -270px -500px; }

.bg-mx_circuit {
  width: 110px;
  height: 50px;
  background: url("../images/css_sprites_png.png") -400px -500px; }

.bg-proteus {
  width: 110px;
  height: 50px;
  background: url("../images/css_sprites_png.png") -571px -10px; }

.bg-pro18 {
  width: 110px;
  height: 50px;
  background: url("../images/css_sprites_png.png") -571px -80px; }

.bg-reebok {
  width: 110px;
  height: 50px;
  background: url("../images/css_sprites_png.png") -571px -150px; }

.bg-sh_dual {
  width: 110px;
  height: 50px;
  background: url("../images/css_sprites_png.png") -571px -220px; }

.bg-speedfit {
  width: 110px;
  height: 50px;
  background: url("../images/css_sprites_png.png") -571px -290px; }

.bg-spirit {
  width: 110px;
  height: 50px;
  background: url("../images/css_sprites_png.png") -571px -360px; }

.bg-mytho {
  width: 111px;
  height: 50px;
  background: url("../images/css_sprites_png.png") -10px -80px; }

.bg-steelflex {
  width: 110px;
  height: 50px;
  background: url("../images/css_sprites_png.png") -571px -430px; }

.bg-strenght {
  width: 110px;
  height: 50px;
  background: url("../images/css_sprites_png.png") -571px -500px; }

.bg-technogym {
  width: 110px;
  height: 50px;
  background: url("../images/css_sprites_png.png") -10px -570px; }

.bg-mytho-mtx {
  width: 111px;
  height: 50px;
  background: url("../images/css_sprites_png.png") -180px -10px; }

.bg-tmr {
  width: 110px;
  height: 50px;
  background: url("../images/css_sprites_png.png") -140px -570px; }

.bg-ossfitness {
  width: 110px;
  height: 50px;
  background: url("../images/css_sprites_png.png") -270px -570px; }

.bg-unlimited-h5 {
  width: 110px;
  height: 50px;
  background: url("../images/css_sprites_png.png") -400px -570px; }

.bg-otto-fitness {
  width: 110px;
  height: 50px;
  background: url("../images/css_sprites_png.png") -530px -570px; }

.bg-phantom-training {
  width: 110px;
  height: 50px;
  background: url("../images/css_sprites_png.png") -701px -10px; }

.bg-platinum-series-plate-load {
  width: 110px;
  height: 50px;
  background: url("../images/css_sprites_png.png") -701px -80px; }

.bg-stair-master {
  width: 110px;
  height: 50px;
  background: url("../images/css_sprites_png.png") -701px -150px; }

.bg-sc200-dual-series {
  width: 110px;
  height: 50px;
  background: url("../images/css_sprites_png.png") -701px -220px; }

.bg-telju {
  width: 110px;
  height: 50px;
  background: url("../images/css_sprites_png.png") -701px -290px; }

.bg-tomahawk {
  width: 110px;
  height: 50px;
  background: url("../images/css_sprites_png.png") -701px -360px; }

.bg-v_line {
  width: 110px;
  height: 50px;
  background: url("../images/css_sprites_png.png") -701px -430px; }

.bg-waterrrower {
  width: 110px;
  height: 50px;
  background: url("../images/css_sprites_png.png") -701px -500px; }

.bg-wellness {
  width: 110px;
  height: 50px;
  background: url("../images/css_sprites_png.png") -701px -570px; }

.bg-yowza {
  width: 110px;
  height: 50px;
  background: url("../images/css_sprites_png.png") -10px -640px; }

.bg-ziva {
  width: 110px;
  height: 50px;
  background: url("../images/css_sprites_png.png") -140px -640px; }

/*--------------------------------------------------------------
## accordion
--------------------------------------------------------------*/
.resp-tab-content {
  text-align: left;
  border: 1px solid #c1c1c1;
  border-top: 1px solid #c1c1c1 !important; }

@media (min-width: 576px) {
  .resp-tab-content {
    border: 0 !important;
    border-top: 1px solid #c1c1c1 !important; } }
.resp-tab-item, .resp-accordion {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 1em; }

@media (min-width: 576px) {
  .resp-tab-active {
    border-top: 2px solid #cf1212 !important; } }
/*--------------------------------------------------------------
## filters
--------------------------------------------------------------*/
.filter {
  padding: 1em; }
  .filter select {
    display: block;
    width: 100%;
    margin: 0; }

@media (min-width: 1030px) {
  .filter select {
    display: inline;
    width: 15em;
    margin: 0 0.5em; } }
/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
  /* Theme Footer (when set to scrolling) */
  display: none; }

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */
.infinity-end.neverending .site-footer {
  display: block; }

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0; }

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
  max-width: 100%; }

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
  display: inline-block; }

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%; }
  .wp-caption img[class*="wp-image-"] {
    display: block;
    margin-left: auto;
    margin-right: auto; }
  .wp-caption .wp-caption-text {
    margin: 0.8075em 0; }

.wp-caption-text {
  text-align: center; }

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
  margin-bottom: 1.5em; }

.gallery-item {
  display: inline-block;
  text-align: center;
  vertical-align: top;
  width: 100%; }
  .gallery-columns-2 .gallery-item {
    max-width: 50%; }
  .gallery-columns-3 .gallery-item {
    max-width: 33.33%; }
  .gallery-columns-4 .gallery-item {
    max-width: 25%; }
  .gallery-columns-5 .gallery-item {
    max-width: 20%; }
  .gallery-columns-6 .gallery-item {
    max-width: 16.66%; }
  .gallery-columns-7 .gallery-item {
    max-width: 14.28%; }
  .gallery-columns-8 .gallery-item {
    max-width: 12.5%; }
  .gallery-columns-9 .gallery-item {
    max-width: 11.11%; }

.gallery-caption {
  display: block; }

/*# sourceMappingURL=main.css.map */
