/***/
/*** html - con esto prevenimos el 'overflow-y:auto' que nos pone el modulo 'vetical menu' y que nos fastidia las vistas del fancybox ***/
/***/
/*
 html {
 overflow: initial !important;
 }
 */
/***/
/*** scroll bars - moz ***/
/***/
@-moz-document url-prefix() {
  html {
    scrollbar-color: #555 transparent;
    scrollbar-width: thin;
    transition: 0.4s;
    /*&:hover {
     scrollbar-color: #555 transparent;
     transition: .4s;
     }*/
  }
  select, .dropdown-cart-products, #sp-left, .orderlist {
    scrollbar-width: thin;
  }
}
/***/
/*** scroll bars - webkit ***/
/***/
/* width */
::-webkit-scrollbar {
  width: 6px;
}
/* Track */
::-webkit-scrollbar-track {
  background: transparent;
}
/* Handle */
::-webkit-scrollbar-thumb {
  background: #555;
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}
/***/
/*** body-overlay ***/
/***/
.body-overlay {
  background: rgba(0, 0, 0, .5);
  bottom: 0;
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 9999;
  visibility: hidden;
  -webkit-transition: 0.6s;
  transition: 0.6s;
}
.overlay-visible {
  opacity: 1;
  visibility: visible;
  transition: 0.4s;
}
/***/
/*** layout ***/
/***/
#sp-main-body {
  padding: 0px 0;
  padding-bottom: 50px;
}
@media (min-width: 1600px) {
  body.helix-ultimate .sppb-row-container, body.helix-ultimate .container {
    width: 100%;
    max-width: 1600px !important;
  }
}
@media (max-width: 1600px) {
  body.helix-ultimate .sppb-row-container, body.helix-ultimate .container {
    width: 100%;
    max-width: 100% !important;
  }
}
@media (min-width: 1200px) {
  body.helix-ultimate {
    /*
     #sp-component {
     max-width: 100%;
     flex: 1 1 100%;
     max-width: calc(100% - 300px);
     flex: 1 1 calc(100% - 300px);
     }*/
  }
  body.helix-ultimate #sp-left, body.helix-ultimate #sp-right {
    max-width: 300px;
  }
  body.helix-ultimate .has-one-lateral-column #sp-component {
    max-width: calc(100% - 300px);
    flex: 1 1 calc(100% - 300px);
  }
  body.helix-ultimate .has-two-lateral-columns #sp-component {
    max-width: calc(100% - 600px);
    flex: 1 1 calc(100% - 600px);
  }
}
@media (max-width: 991px) {
  body.helix-ultimate #sp-left, body.helix-ultimate #sp-right {
    width: 300px;
    height: 100%;
    padding: 15px;
    position: fixed;
    top: 0;
    overflow-y: auto;
    background: #fff;
    transition: 0.4s;
    z-index: 10000;
  }
  body.helix-ultimate #sp-left .offcanvas-sidebar-close, body.helix-ultimate #sp-right .offcanvas-sidebar-close {
    display: block;
  }
  body.helix-ultimate #sp-left .offcanvas-sidebar-close:hover, body.helix-ultimate #sp-right .offcanvas-sidebar-close:hover {
    color: #8bb523;
  }
  body.helix-ultimate #sp-left {
    left: 0;
    transform: translateX(-100%);
  }
  body.helix-ultimate #sp-right {
    right: 0;
    transform: translateX(100%);
  }
}
/***/
/*** body y posicion 'body-wrapper' con el 'menu offcanvas' abierto -> modificada para que funcione tb con las posiciones del 'body-wrapper' con las 'sidebar' abiertas  ***/
/***/
/*
 .offcanvs-position-left.offcanvas-active  {
 .body-wrapper {
 //overflow-y: hidden;
 left: 300px !important;
 transition: .4s;	
 }		
 }
 .offcanvs-position-right.offcanvas-active  {
 .body-wrapper {
 //overflow-y: hidden;
 left: -300px !important;
 transition: .4s;	
 }		
 }
 */
/***/
/*** offcanvas ***/
/***/
.offcanvas-toggler-right {
  margin-left: 10px !important;
}
.offcanvas-menu .offcanvas-inner .sp-module:not(:last-child) {
  margin-bottom: 0px;
}
.offcanvas-menu .offcanvas-inner .sp-module ul li {
  border-bottom: 1px solid rgba(0, 0, 0, .1);
}
.offcanvas-menu .offcanvas-inner .sp-module ul li span, .offcanvas-menu .offcanvas-inner .sp-module ul li a {
  padding: 10px 0;
}
/***/
/*** left, right ***/
/***/
#sp-left .sp-module, #sp-right .sp-module {
  padding: 0px;
  border-width: 0px;
}
#sp-left .sp-module .sp-module-title, #sp-right .sp-module .sp-module-title {
  border-bottom-width: 0px;
}
#sp-left .offcanvas-sidebar-close, #sp-right .offcanvas-sidebar-close {
  cursor: pointer;
  display: none;
}
#sp-left .offcanvas-sidebar-close .mdi, #sp-right .offcanvas-sidebar-close .mdi {
  font-size: 18px;
  float: right;
}
/***/
/***  body y offcanvas sidebar -> left, right ***/
/***/
.offcanvas-sidebar-active-left {
  overflow-y: hidden;
}
.offcanvas-sidebar-active-left .header-sticky {
  z-index: 999 !important;
}
.offcanvas-sidebar-active-left #sp-left {
  transform: translateX(0%) !important;
}
.offcanvas-sidebar-active-right {
  overflow-y: hidden;
}
.offcanvas-sidebar-active-right .header-sticky {
  z-index: 999 !important;
}
.offcanvas-sidebar-active-right #sp-right {
  transform: translateX(0%) !important;
}
/*** icono -> offcanvas sidebar -> left, right ***/
.offcanvas-sidebar-icon {
  position: fixed;
  bottom: 25px;
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center !important;
  font-size: 16px;
  color: #fff;
  background: #333;
  border-radius: 3px;
  z-index: 1000;
  opacity: 1;
  visibility: visible;
  transition: 0.4s;
  cursor: pointer;
}
.offcanvas-sidebar-icon:hover {
  background: #8bb523;
}
@media (min-width: 992px) {
  .offcanvas-sidebar-icon {
    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
  }
}
.offcanvas-sidebar-icon.left {
  left: 15px;
}
.offcanvas-sidebar-icon.right {
  right: 15px;
}
/***/
/*** botones ***/
/***/
.btn, .btn-primary, .btn-secondary {
  border-radius: 0;
  font-size: 14px;
  font-size: inherit;
}
.btn-primary.focus, .btn-primary:focus {
  color: #fff;
  box-shadow: none;
}
/***/
/*** inputs, selects, etc... ***/
/***/
input[type="text"]:not(.form-control), input[type="email"]:not(.form-control), input[type="url"]:not(.form-control), input[type="date"]:not(.form-control), input[type="password"]:not(.form-control), input[type="search"]:not(.form-control), input[type="tel"]:not(.form-control), input[type="number"]:not(.form-control), select:not(.form-control), optgroup, select, textarea, .form-control {
  /*button, input,*/
  border: 1px solid rgba(0, 0, 0, 0.1);
  height: 35px;
  border-radius: 0 !important;
  font-size: inherit;
  background: transparent;
  position: relative;
}
input[type="text"]:not(.form-control):hover, input[type="email"]:not(.form-control):hover, input[type="url"]:not(.form-control):hover, input[type="date"]:not(.form-control):hover, input[type="password"]:not(.form-control):hover, input[type="search"]:not(.form-control):hover, input[type="tel"]:not(.form-control):hover, input[type="number"]:not(.form-control):hover, select:not(.form-control):hover, optgroup:hover, select:hover, textarea:hover, .form-control:hover {
  background: transparent;
}
input[type="text"]:not(.form-control):focus, input[type="email"]:not(.form-control):focus, input[type="url"]:not(.form-control):focus, input[type="date"]:not(.form-control):focus, input[type="password"]:not(.form-control):focus, input[type="search"]:not(.form-control):focus, input[type="tel"]:not(.form-control):focus, input[type="number"]:not(.form-control):focus, select:not(.form-control):focus, optgroup:focus, select:focus, textarea:focus, .form-control:focus, input[type="text"]:not(.form-control):active, input[type="email"]:not(.form-control):active, input[type="url"]:not(.form-control):active, input[type="date"]:not(.form-control):active, input[type="password"]:not(.form-control):active, input[type="search"]:not(.form-control):active, input[type="tel"]:not(.form-control):active, input[type="number"]:not(.form-control):active, select:not(.form-control):active, optgroup:active, select:active, textarea:active, .form-control:active {
  border-color: #8bb523 !important;
  background: transparent;
}
select {
  border: 0 !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
}
select.invalid {
  box-shadow: none;
}
/***/
/*** inputs ***/
/***/
.form-group, .sppb-form-group {
  position: relative;
  margin-top: 10px;
  margin-bottom: 10px;
  transition: 0.4s;
}
.form-group input, .sppb-form-group input {
  background: none;
  border: 0 !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
  background: transparent;
}
.form-group input:active, .sppb-form-group input:active, .form-group input:focus, .sppb-form-group input:focus {
  box-shadow: none;
  background: transparent;
}
.form-group textarea, .sppb-form-group textarea {
  resize: both;
}
.form-group input.invalid, .sppb-form-group input.invalid {
  background: transparent;
  border-bottom: 1px solid #f00 !important;
  box-shadow: none;
}
/*** input con iconos - registro ***/
label#jform_password1-lbl, label#jform_password2-lbl, label#password-lbl {
  margin-left: 50px;
}
.input-group-prepend .input-group-text {
  background: none;
  border-radius: 0;
  border-width: 0;
  min-width: 35px;
  text-align: center;
}
.input-group-prepend input {
  width: calc(100% - 35px) !important;
}
/***  input relleno ***/
/*
 .sppb-form-group {
 position: relative;
 margin-top: 10px;
 margin-bottom: 10px;
 transition: .4s;
 input {																
 border: 0 !important;
 border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
 }		
 }*/
/*** input vacio ***/
.form-group-empty {
  /*position: absolute;
   top: 10px;
   left: 0;*/
}
.form-group-empty label {
  position: relative;
  -webkit-transform: translateY(33px);
  transform: translateY(33px);
  transition: 0.4s;
}
/*** input activo ***/
.form-group-active label {
  position: relative;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
  transition: 0.4s;
}
/*** input date -> retranformado a input datepicker ***/
/*
 .form-group-datepicker {
 position: relative;
 &:before {
 content: "\FDFB";
 position: absolute;
 font-family: 'Material Design Icons';
 right: 15px;
 bottom: 10px;
 line-height: initial;
 padding-top: 32px;
 font-size: initial;
 z-index: -1;
 }
 label {
 display: none;
 }
 .input-datepicker {
 position: relative;
 background-color: transparent !important;
 padding-top: 55px !important;
 }
 }*/
/***/
/*** fancybox ***/
/***/
a.popup {
  color: #555;
}
a.popup:hover {
  color: #8bb523;
}
/*** popup ***/
.fancybox-popup .fancybox-slide .fancybox-content, .fancybox-popup-addtocart .fancybox-slide .fancybox-content {
  transform: translateY(-50%);
  transition: 0.4s;
  width: 800px;
  height: 600px;
  max-width: 90%;
  max-height: 90%;
}
@media (max-width: 677px) {
  .fancybox-popup .fancybox-slide, .fancybox-popup-addtocart .fancybox-slide {
    padding: 0;
  }
  .fancybox-popup .fancybox-slide .fancybox-content, .fancybox-popup-addtocart .fancybox-slide .fancybox-content {
    margin: 0 !important;
  }
}
.fancybox-popup .fancybox-slide--current .fancybox-content, .fancybox-popup-addtocart .fancybox-slide--current .fancybox-content {
  transform: translateY(0);
  transition: 0.4s;
}
/***/
.fancybox-bg {
  width: 100%;
  height: 100%;
}
/*** miniaturas galeria fancybox ***/
.fancybox-thumbs {
  top: auto;
  width: auto;
  bottom: 0;
  left: 0;
  right: 0;
  height: 95px;
  padding: 10px 10px 5px 10px;
  box-sizing: border-box;
  background: rgba(0, 0, 0, 0.3);
}
.fancybox-show-thumbs .fancybox-inner {
  right: 0;
  bottom: 95px;
}
.fancybox-thumbs__list a:before {
  border: 3px solid #8bb523;
}
/***/
/*** top bar  ***/
/***/
#sp-top-bar .row {
  padding-left: 15px;
  padding-right: 15px;
}
#sp-top-bar ul.social-icons {
  float: right;
}
@media (max-width: 767px) {
  #sp-top-bar .sp-contact-info {
    text-align: center;
  }
  #sp-top-bar ul.social-icons {
    float: none;
    text-align: center;
    display: block;
  }
}
/***/
/*** header-top / header / header-bottom  ***/
/***/
#sp-header .sp-module, #sp-header-top .sp-module, #sp-header-bottom .sp-module {
  position: relative;
  line-height: 60px;
  display: inline-block;
}
/***/
/*** header-top / header / header-bottom  - search, login, logut, carro ***/
/***/
#sp-header-top .sp-module, #sp-header .sp-module, #sp-header-bottom .sp-module {
  display: inline-block;
  float: right;
}
#sp-header-top .sp-module a .mdi, #sp-header .sp-module a .mdi, #sp-header-bottom .sp-module a .mdi {
  color: #555;
}
#sp-header-top .sp-module a:hover .mdi, #sp-header .sp-module a:hover .mdi, #sp-header-bottom .sp-module a:hover .mdi {
  color: #8bb523;
}
@media (max-width: 549px) {
  #sp-header-top, #sp-header, #sp-header-bottom {
    height: auto;
  }
  #sp-header-top .row, #sp-header .row, #sp-header-bottom .row {
    display: flex;
    flex-wrap: wrap;
  }
  #sp-header-top .row #sp-logo, #sp-header .row #sp-logo, #sp-header-bottom .row #sp-logo {
    flex: calc(100% - 150px);
    max-width: calc(100% - 150px);
    order: 1;
  }
  #sp-header-top .row #sp-search, #sp-header .row #sp-search, #sp-header-bottom .row #sp-search {
    flex: 100%;
    max-width: 100%;
    order: 3;
    padding-bottom: 10px;
  }
  #sp-header-top .row #sp-user-cart, #sp-header .row #sp-user-cart, #sp-header-bottom .row #sp-user-cart {
    flex: 150px;
    max-width: 150px;
    order: 2;
  }
}
/***/
/*** logo como texto ***/
/***/
#sp-header span.logo {
  height: auto;
  display: flex;
  align-items: center;
  padding-top: 10px;
}
#sp-header span.logo-slogan {
  display: flex;
  align-items: center;
}
/***/
/*** menu top ***/
/***/
div#sp-top-menu .sp-column {
  display: flex;
  justify-content: center;
}
@media (max-width: 991px) {
  #sp-top-menu {
    display: none;
  }
}
#sp-top-menu .top_menu ul.menu {
  margin-bottom: 0px;
  padding: 0;
}
#sp-top-menu .top_menu ul.menu li {
  display: inline-block;
  list-style-type: none;
}
#sp-top-menu .top_menu ul.menu li a {
  padding: 0 15px;
  line-height: 60px;
}
@media (max-width: 1200px) {
  #sp-top-menu .top_menu ul.menu li a {
    padding: 0 10px;
  }
}
/***/
/*** megamenu ***/
/***/
div#sp-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.sp-megamenu-parent {
  z-index: 50;
}
@media (max-width: 1200px) {
  .sp-megamenu-parent li a {
    padding: 0 10px;
  }
}
/*** fix menu anchura fullwidth ***/
.sp-megamenu-parent .sp-has-child:hover .sp-dropdown.sp-dropdown-main.sp-menu-full {
  left: -50%;
}
@media (min-width: 1600px) {
  .sp-megamenu-parent .sp-has-child:hover .sp-dropdown.sp-dropdown-main.sp-menu-full {
    left: -575px;
  }
}
/***/
@media (min-width: 992px) {
  .sp-menu-full.container {
    width: 960px !important;
    max-width: 960px !important;
  }
}
@media (min-width: 1200px) {
  .sp-menu-full.container {
    width: 1140px !important;
    max-width: 1140px !important;
  }
}
@media (min-width: 1600px) {
  .sp-menu-full.container {
    width: 1600px !important;
    max-width: 1600px !important;
  }
}
/*** submenus desplegables ***/
.sp-megamenu-parent .sp-dropdown .sp-dropdown-inner {
  box-shadow: 2px 8px 11px 0px rgba(0, 0, 0, 0.1) !important;
}
/*
 .sp-megamenu-parent .sp-dropdown .sp-dropdown-inner ul li a {
 color: $text_color;
 }
 .sp-megamenu-parent .sp-dropdown .sp-dropdown-inner ul li a:hover {
 color: $link_color;
 }*/
.sp-megamenu-parent .sp-dropdown li.sp-menu-item > a {
  padding: 10px 0;
}
/*** bordes de las columnas de los submnenus emergentes ***/
.sp-megamenu-parent .sp-dropdown .sp-dropdown-inner div[class^="col-"] {
  border-right: 1px solid rgba(0, 0, 0, 0.07);
}
.sp-megamenu-parent .sp-dropdown .sp-dropdown-inner div[class^="col-"]:last-child {
  border-right-width: 0px;
}
/*** titulos dentro de los submanues mergentes ***/
.sp-megamenu-parent .sp-dropdown .sp-module .sp-module-title {
  text-transform: none !important;
  font-weight: normal !important;
}
/***/
/*** sp page title / virtuemart page title ***/
/***/
#sp-title {
  background-color: #f5f5f5;
  text-align: center;
  /*.sp-column {
   display: flex;
   flex-wrap: wrap;
   }*/
  /*.sp-module {
   order: 3;
   flex: 100%;
   }*/
}
#sp-title .sp-page-title {
  background: transparent;
  background-repeat: no-repeat;
  background-size: cover;
}
#sp-title .sp-page-title .sp-page-title-heading, #sp-title .sp-page-title .sp-page-title-sub-heading {
  color: #555;
}
#sp-title .sp-page-title .sp-page-title-heading {
  margin-bottom: 5px;
}
#sp-title .sp-page-title .sp-page-title-sub-heading {
  margin-top: 5px;
  margin-bottom: 5px;
}
/***/
/*** color lines ***/
/***/
.color-lines {
  display: inline-block;
}
.color-lines div {
  background: #8bb523;
  float: left;
  height: 5px;
  margin-right: 10px;
}
.color-lines div:nth-child(1) {
  width: 50px;
}
.color-lines div:nth-child(2) {
  width: 30px;
}
.color-lines div:nth-child(3) {
  width: 20px;
  margin-right: 0px;
}
/***/
/*** breadcrumbs ***/
/***/
#sp-title .breadcrumb {
  order: 3;
  width: 100%;
  background-color: transparent;
  justify-content: center;
  margin: 0;
  padding: 0;
}
#sp-title .breadcrumb span, #sp-title .breadcrumb li, #sp-title .breadcrumb li + li:before {
  color: #555;
}
#sp-title .breadcrumb span a, #sp-title .breadcrumb li a, #sp-title .breadcrumb li + li:before a {
  color: #555;
}
#sp-title .breadcrumb span a:hover, #sp-title .breadcrumb li a:hover, #sp-title .breadcrumb li + li:before a:hover {
  color: #8bb523;
}
/*** breadcrumbs sin 'sp page title' fuera de virtuemart ***/
body:not(.com-virtuemart) #sp-title .breadcrumb {
  margin-top: 0px;
  padding-bottom: 15px;
  padding-top: 15px;
}
/*** breadcrumbs sin 'sp page title' dentro de virtuemart ***/
.com-virtuemart #sp-title .breadcrumb {
  margin-top: 5px;
  padding-bottom: 30px;
}
/*** breadcrumbs con 'sp-page-title' dentro y fuera de virtuemart ***/
#sp-title .sp-page-title .breadcrumb {
  margin-top: 5px !important;
  padding-top: 0px !important;
  padding-bottom: 0px !important;
}
/***/
/*** bottom top ***/
/***/
#sp-bottom-top {
  background: #171717;
}
#sp-bottom-top .container-inner {
  padding: 30px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}
/***/
/*** iconos bottom top ***/
/***/
.icono-bottom-top {
  margin: 0 auto;
  display: block;
  width: max-content;
}
.icono-bottom-top .mdi {
  font-size: 56px;
  line-height: 56px;
  float: left;
  display: block;
  padding-right: 15px;
  margin-right: 15px;
  border-right: 1px solid #8bb523;
}
.icono-bottom-top h4 {
  float: left;
  display: block;
  margin-bottom: 0px;
}
@media (max-width: 767px) {
  .icono-bottom-top {
    margin-bottom: 15px;
  }
  .icono-bottom-top:last-child {
    margin-bottom: 0;
  }
}
/***/
/*** bottom ***/
/***/
#sp-bottom .sp-column {
  display: flex;
  justify-content: center;
  align-items: center;
}
/***/
/*** footer ***/
/***/
@media (max-width: 767px) {
  #sp-footer .sp-column {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
  #sp-footer #sp-footer1 {
    order: 2;
  }
  #sp-footer #sp-footer2 {
    order: 1;
  }
}
/*** iconos-pago ***/
.iconos-pago {
  padding: 0;
  margin-bottom: 0;
}
.iconos-pago li {
  display: inline-block;
  list-style-type: none;
}
.iconos-pago li object {
  height: 30px;
  margin-left: 5px;
}
@media (max-width: 767px) {
  .iconos-pago {
    margin-bottom: 10px;
  }
}
/***/
/*** to top ***/
/***/
.sp-scroll-up {
  bottom: 25px;
  right: 15px;
}
.view-productdetails .sp-scroll-up {
  bottom: 70px;
  right: 22px;
}
/***/
/*** vista registro joomla ***/
/***/
.com-users.view-registration .alert-info {
  padding: 0;
  color: #555;
  background-color: transparent;
  border-color: transparent;
}
.com-users.view-registration span.star {
  color: red;
}
/***/
/*** vista login joomla ***/
/***/
.com-users.view-login .list-group-item {
  border: 0px solid rgba(0, 0, 0, .125);
  text-align: center;
  color: #555;
}
.com-users.view-login .list-group-item:hover {
  color: #8bb523;
}
/***/
/*** vista logout joomla ***/
/***/
.com-users.view-login .logout {
  text-align: center;
}
.com-users.view-login .form-horizontal .controls {
  margin-left: 0;
}
/***/
/*** titulo articulos ***/
/***/
.site .article-header {
  display: none;
}
.article-details .article-header h1, .article-details .article-header h2 {
  font-size: 24px;
}
/***/
/*** owl carousel ***/
/***/
.owl-carousel .owl-nav .owl-prev, .owl-carousel .owl-nav .owl-next {
  position: absolute;
  top: 50%;
  border-radius: 0;
  padding: 10px;
  z-index: 999;
  opacity: 0;
  transition: 0.4s;
}
.owl-carousel .owl-nav .owl-prev span, .owl-carousel .owl-nav .owl-next span {
  font: normal normal normal 24px/1 "Material Design Icons";
  padding: 10px;
  display: block;
  color: #fff;
  background-color: #d6d6d6;
}
.owl-carousel .owl-nav .owl-prev:hover span, .owl-carousel .owl-nav .owl-next:hover span {
  background-color: #8bb523;
}
.owl-carousel .owl-nav .owl-prev {
  left: -30px;
}
.owl-carousel .owl-nav .owl-next {
  right: -30px;
}
.owl-carousel:hover .owl-nav .owl-prev, .owl-carousel:hover .owl-nav .owl-next {
  opacity: 0.65;
  transition: 0.4s;
}
.owl-carousel:hover .owl-nav .owl-prev {
  left: 0px;
}
.owl-carousel:hover .owl-nav .owl-next {
  right: 0px;
}
/***/
/*** alertas ***/
/***/
div#system-message-container {
  position: fixed;
  top: 15px;
  left: 15px;
  right: 15px;
  z-index: 9999;
  margin: 0 auto;
  border-radius: 0;
  width: calc(100% - 30px);
}
@media (min-width: 991px) {
  div#system-message-container {
    width: 970px;
  }
}
@media (min-width: 1199px) {
  div#system-message-container {
    width: 1170px;
  }
}
@media (min-width: 1599px) {
  div#system-message-container {
    width: 1200px;
  }
}
div#system-message-container .alert {
  margin-bottom: 15px;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.10);
}
div#system-message-container .alert-notice {
  background: #fff;
}
/***/
/*** pantalla error ***/
/***/
.error-page body {
  background: #f5f5f5;
  padding-left: 15px;
  padding-right: 15px;
  min-height: 100%;
  height: initial !important;
}
.error-page body .error-logo {
  height: 50px;
  margin-bottom: 15px;
}
.error-page body #error-body .mdi.mdi-bug {
  font-size: 5rem;
  line-height: 1rem;
  position: absolute;
  bottom: 15px;
  left: -25px;
  color: #8bb523;
}
.error-page body #error-body .container {
  background: #fff;
  padding: 50px;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.05);
  margin-left: 15px;
  margin-right: 15px;
  width: calc(100% - 30px);
}
.error-page body #error-body .container .row {
  align-items: center;
}
.error-page body #error-body .container .row .error-texts {
  text-align: left;
}
@media (max-width: 767px) {
  .error-page body #error-body .container .row .error-texts {
    text-align: center;
    order: 2;
  }
}
.error-page body #error-body .container .row .error-texts .error-codes {
  width: auto;
  display: inline-block;
  text-align: center;
}
.error-page body #error-body .container .row .error-texts .error-codes .error-code {
  margin-bottom: 0px !important;
  color: #8bb523;
}
.error-page body #error-body .container .row .error-texts .error-codes .error-code-text {
  font-size: 21px !important;
  color: #555;
}
.error-page body #error-body .container .row .error-texts .error-message {
  border-top: 1px solid #efefef;
  padding-top: 15px;
  margin-top: 15px;
  font-size: 18px;
  margin-bottom: 30px;
}
.error-page body #error-body .container .row .error-image {
  justify-content: center;
}
@media (max-width: 767px) {
  .error-page body #error-body .container .row .error-image {
    order: 1;
  }
}
.error-page body #error-body .container .row .error-image img {
  height: 100%;
  width: auto;
}
.error-page body #error-footer .error-copyright {
  text-align: right;
}
.error-page body #error-footer .error-copyright a {
  color: #555;
}
.error-page body #error-footer .error-copyright a:hover {
  color: #8bb523;
}
/***/
/*** editor frontend ***/
/***/
.sp-pagebuilder-page-tools .sp-pagebuilder-range-input input[type=number] {
  width: 41px;
  padding: 5px;
  box-shadow: none;
  height: 26px;
  margin-top: 5px;
  margin-left: 11px;
  font-size: 12px;
  background: #fff;
  border: 1px solid #e2e5e9;
  border-radius: 2px;
  -moz-appearance: textfield;
}
.sp-pagebuilder-page-tools input[type=number].sp-pagebuilder-form-control {
  font-size: 12px;
}
.sp-pagebuilder-page-tools .uneditable-input.sp-pagebuilder-form-control, .sp-pagebuilder-page-tools input[type=email].sp-pagebuilder-form-control, .sp-pagebuilder-page-tools input[type=search].sp-pagebuilder-form-control, .sp-pagebuilder-page-tools input[type=tel].sp-pagebuilder-form-control, .sp-pagebuilder-page-tools input[type=text].sp-pagebuilder-form-control, .sp-pagebuilder-page-tools input[type=url].sp-pagebuilder-form-control, .sp-pagebuilder-page-tools textarea.sp-pagebuilder-form-control {
  display: block;
  width: 100%;
  height: 28px;
  padding: 4px 10px;
  font-size: 12px;
  line-height: 1.42857143;
  color: #555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #fff;
  margin-bottom: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  box-shadow: 0 0 10px 0 rgba(109, 120, 131, .1);
  border-radius: 2px;
  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  -webkit-transition: color 0.3s, background-color 0.3s;
  -o-transition: color 0.3s, background-color 0.3s;
  transition: color 0.3s, background-color 0.3s;
}
.sp-pagebuilder-page-tools input[type=range] {
  background: transparent;
}
.com-sppagebuilder.layout-edit-iframe .sppb-row-bottom-new-row > div > #sppb-add-new-row-btn {
  width: 30px;
  height: 30px;
  line-height: 30px;
  padding: 0;
  background: #03e16d;
  box-shadow: 0 0 5px 0 rgba(3, 225, 109, .8);
  border-radius: 50% !important;
  color: #fff;
  text-decoration: none !important;
}
.com-sppagebuilder.layout-edit-iframe #sppb-add-new-row-btn, .com-sppagebuilder.layout-edit-iframe .sp-pagebuilder-action-import, .com-sppagebuilder.layout-edit-iframe .sp-pagebuilder-action-page-templates {
  display: inline-block;
  padding: 11px 16px;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3333333;
  border-radius: 3px;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  transition: color 0.3s, background-color 0.3s;
}
.com-sppagebuilder.layout-edit-iframe #sppb-add-new-row-btn {
  box-shadow: none !important;
  border: 0;
}
.com-sppagebuilder.layout-edit-iframe .sp-pagebuilder-custom-layout input[type="text"] {
  background-color: #ecf0f6;
  width: 100%;
  margin: 0;
  border: 0;
  border-top-color: currentcolor;
  border-right-color: currentcolor;
  border-bottom-color: currentcolor;
  border-left-color: currentcolor;
  height: 38px;
  box-shadow: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
}
.com-sppagebuilder.layout-edit-iframe .sp-pagebuilder-custom-layout input[type="text"]:active, .com-sppagebuilder.layout-edit-iframe .sp-pagebuilder-custom-layout input[type="text"]:focus {
  -webkit-box-shadow: nset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(82, 168, 236, .6);
  box-shadow: nset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(82, 168, 236, .6);
}
/*** area de texto ***/
.sppb-form-group textarea {
  resize: both;
}
/*** estado envio formulario ***/
.sppb-ajax-contact-status {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  padding: 30px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.05);
  font-size: 14px;
}
/***/
/*** virtuemart page title ***/
/***/
.virtuemart-page-title {
  padding-top: 30px;
  padding-bottom: 0;
}
.virtuemart-page-title h1 {
  font-size: 24px;
  margin-bottom: 0px;
  padding: 0;
}
.virtuemart-page-title.subtitle {
  padding-top: 0px;
}
.virtuemart-page-title.subtitle h1 {
  font-size: 18px;
  margin-bottom: 0;
}
/***/
/*** vista categorias - layout ***/
/***/
.category-view {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
@media (max-width: 991px) {
  .category-view div.category {
    width: 33%;
  }
}
@media (max-width: 677px) {
  .category-view div.category {
    width: 50%;
  }
}
/***/
/*** vista categorias - categoria ***/
/***/
.category-view .category {
  padding: 15px;
}
.category-view .category .spacer {
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.05);
}
.category-view .category .spacer .category-title {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 15px;
  background: rgba(255, 255, 255, 0.75);
}
.category-view .category .spacer .category-title h2 {
  font-size: 16px;
  margin: 0;
  padding: 0;
  color: #555;
}
.category-view .category .spacer .category-title img {
  height: auto;
  width: 100%;
}
.category-view .category:hover .spacer .category-title h2 {
  color: #8bb523;
}
/***/
/*** vista productos - layout ***/
/***/
.view-category #sp-main-body {
  padding-top: 0;
}
.browse-view {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
/***/
/*** vista productos - vista productos cuadricula ***/
/***/
@media (max-width: 1199px) {
  .browse-view div.product {
    width: 33%;
  }
}
@media (max-width: 677px) {
  .browse-view div.product {
    width: 50%;
  }
}
/***/
/*** vista productos - filtros top ***/
/***/
.category-view .virtuemart_search {
  display: none;
}
.orderby-displaynumber {
  width: 100%;
  padding: 10px;
  /*background: #f8f8fa;*/
  border: 0;
}
.orderby-displaynumber .title {
  font-size: 12px;
  display: none;
}
@media (max-width: 767px) {
  .orderby-displaynumber {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .orderby-displaynumber .layout-selector, .orderby-displaynumber .vm-order-list, .orderby-displaynumber .display-number {
    /*width: 100%;*/
    padding: 5px 0;
  }
}
/***/
.layout-selector {
  float: left;
}
.layout-selector .selector {
  display: inline-block;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.05);
  height: 40px;
  width: 40px;
  font-size: 16px;
  line-height: 40px;
  text-align: center;
  color: #555;
}
.layout-selector .selector a {
  color: #555;
}
.layout-selector .selector:hover {
  background: #8bb523;
}
.layout-selector .selector:hover a {
  color: #fff;
}
.layout-selector .active {
  background: #8bb523;
}
.layout-selector .active a {
  color: #fff;
}
/***/
.orderby-displaynumber .orderlistcontainer div.activeOrder {
  height: 40px;
  line-height: 35px;
  background: #fff !important;
  border: solid rgba(0, 0, 0, 0.1) 1px;
  border-radius: 0;
  background: none;
  position: relative;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}
.orderby-displaynumber .orderlistcontainer div.activeOrder:before {
  content: "\F6B5 ";
  font-family: 'Material Design Icons';
  position: absolute;
  right: 5px;
}
.orderby-displaynumber .orderlistcontainer div.orderlist {
  max-height: 450px;
  overflow-y: auto;
}
.orderby-displaynumber .orderlistcontainer div.orderlist div a {
  color: #555;
}
.orderby-displaynumber .orderlistcontainer div.orderlist div:hover {
  background: initial;
}
.orderby-displaynumber .orderlistcontainer div.orderlist div:hover a {
  color: #8bb523;
}
.orderby-displaynumber .vm-pagination.vm-pagination-top {
  display: none;
}
.orderby-displaynumber .display-number {
  position: relative;
  padding-left: 10px;
}
.orderby-displaynumber .display-number:before {
  content: "\F6B5 ";
  font-family: 'Material Design Icons';
  position: absolute;
  right: 5px;
  line-height: 40px;
  z-index: 0;
}
.orderby-displaynumber .display-number .title {
  display: inline-block;
}
.orderby-displaynumber .display-number select {
  display: inline-block;
  font-size: 12px !important;
  border: solid rgba(0, 0, 0, 0.07) 1px !important;
  border-radius: 0 !important;
  cursor: pointer;
  width: auto;
  height: 40px !important;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  z-index: 1;
  position: relative;
  background: transparent;
  padding: 0 15px 0 5px;
}
/***/
/*** vista productos - paginacion bottom ***/
/***/
.vm-pagination.vm-pagination-bottom {
  width: 100%;
  padding-top: 30px;
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
}
.vm-pagination.vm-pagination-bottom ul.pagination {
  flex-wrap: wrap;
  display: flex;
  width: 100%;
  justify-content: center;
}
.vm-pagination.vm-pagination-bottom ul.pagination .page-item {
  border-right: 1px solid rgba(0, 0, 0, .1);
  padding: 0 10px;
}
.vm-pagination.vm-pagination-bottom ul.pagination .page-item .page-link {
  border-width: 0px;
}
.vm-pagination.vm-pagination-bottom ul.pagination .page-item .page-link:hover {
  background: #fff;
  color: #8bb523;
}
.vm-pagination.vm-pagination-bottom ul.pagination .page-item .page-link:focus, .vm-pagination.vm-pagination-bottom ul.pagination .page-item .page-link:active {
  box-shadow: none;
}
.vm-pagination.vm-pagination-bottom ul.pagination .page-item:last-child {
  border-right: 0px;
}
.vm-pagination.vm-pagination-bottom ul.pagination .active .page-link {
  background: #fff;
  color: #8bb523;
}
/***/
/*** vista productos - selectores cantidad y boton comprar ***/
/***/
.browse-view .row .product .spacer img, .related-products-view .row .product .spacer img {
  width: 100%;
  height: auto;
}
/***/
/*** precios ***/
/***/
.product-price div {
  display: inline-block;
}
.product-price .PricesalesPrice {
  float: left;
  text-align: left;
}
div.product .PricetaxAmount, .productdetails-view .PricetaxAmount {
  display: none;
}
/***/
/*** precio - cuenta atras ***/
/***/
/*** productos ***/
.product-timer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 5px;
  padding-bottom: 0px;
  border: 1px solid #ffca28;
  background: rgba(255, 255, 255, 0.65);
  color: #555;
}
.timer-title {
  font-weight: 600 !important;
  margin-bottom: 5px;
  /*font-style: italic;*/
  /*color: #ffca28;*/
  display: inline-block;
  text-align: left;
  width: 100%;
}
.timer-title i {
  color: #fff;
  margin-right: 5px;
  background: #ffca28;
  padding: 5px;
}
.timer-grid .box-time-date {
  display: inline-block;
  float: left;
  padding: 5px;
  margin-right: 5px;
  margin-bottom: 5px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid #ffca28;
  width: calc(25% - 4px);
}
.timer-grid .box-time-date:last-child {
  margin-right: 0 !important;
}
.timer-grid .box-time-date span {
  text-align: center;
  font-weight: 600;
  font-size: 11px !important;
  width: 100%;
  display: inline-block;
}
/*** detalle producto ***/
.product-flash-offer {
  margin-bottom: 10px;
  margin-top: 5px;
}
.product-flash-offer .product-timer {
  position: relative;
  float: left;
  display: inline-block;
  padding: 10px;
}
.product-flash-offer .product-timer .timer-title {
  font-size: 16px;
  margin-bottom: 10px;
}
.product-flash-offer .product-timer .timer-grid .box-time-date {
  padding: 10px;
  margin-bottom: 0px;
  width: auto;
}
.product-flash-offer .product-timer .timer-grid .box-time-date span {
  font-size: 14px;
}
/***/
/*** selectores cantidad a comprar ***/
/***/
.quantity-box {
  float: left;
}
.quantity-box .quantity-input, .cart-summary .quantity-input {
  width: 35px !important;
  height: 35px !important;
  font-weight: normal;
}
/***/
span.quantity-controls {
  width: 20px;
  display: block;
  vertical-align: middle;
  margin: 0;
  padding: 0 !important;
  text-align: center;
  padding: 5px;
  border: 0px solid rgba(0, 0, 0, 0.1);
  height: 40px;
  margin-right: 5px;
  float: left;
}
span.quantity-controls input.quantity-controls {
  background: none;
  margin: 0;
  width: 20px;
  height: 20px;
  padding: 1px;
}
/***/
/*** boton comprar ***/
/***/
span.addtocart-button {
  position: relative;
  margin-right: 5px;
  background: #fff;
}
span.addtocart-button:hover {
  background: #8bb523;
}
span.addtocart-button:before {
  font-family: 'Material Design Icons';
  color: #8bb523;
  position: absolute;
  left: 10px;
  content: "\F111";
  top: 11px;
  z-index: 0;
  width: inherit;
  margin: 0 auto;
}
span.addtocart-button input.addtocart-button {
  background: transparent;
  color: #555;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.05);
  border-radius: 0px;
  letter-spacing: 0;
  font-size: 14px;
  padding-left: 25px;
  position: relative;
  z-index: 0;
}
span.addtocart-button:hover:before {
  color: #fff;
}
span.addtocart-button:hover input.addtocart-button {
  color: #fff;
}
/***/
/*** boton compra deshabilitado ***/
/***/
span.addtocart-button-disabled {
  width: 100%;
  position: relative;
  background: #fff;
  color: #555;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.05);
  border-radius: 0px;
  letter-spacing: 0;
  font-size: 14px;
}
/***/
/*** boton notificarme ***/
/***/
a.notify {
  display: block;
  background: transparent;
  margin-right: 5px;
  color: #555;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.05);
  border-radius: 0px;
  letter-spacing: 0;
  font-size: 12px;
  padding: 12px;
  height: 35px;
  line-height: 10px;
}
a.notify:hover {
  color: #fff;
  background: #8bb523;
}
/***/
/*** boton favoritos ***/
/***/
.modns.button.art-button.art-button {
  cursor: pointer;
  float: left;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.05);
  color: #555;
  font-size: 0;
}
.modns.button.art-button.art-button:hover {
  background: #8bb523;
  color: #fff;
}
.addtofav_aws_icon, .addtofav_aws_icon_active {
  text-align: center;
  cursor: pointer;
  float: left;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.05);
  color: #555;
}
.addtofav_aws_icon span, .addtofav_aws_icon_active span {
  display: none;
}
.addtofav_aws_icon .mdi, .addtofav_aws_icon_active .mdi {
  display: block;
}
.addtofav_aws_icon:hover, .addtofav_aws_icon_active:hover {
  background: #8bb523;
  color: #fff;
}
.addtofav_aws_icon_active {
  color: #ff4850;
}
/***/
/*** vista productos - producto ***/
/***/
div.product {
  padding: 10px;
  margin: 0;
  min-width: auto;
}
div.product .spacer.product-container {
  background: #fff;
  /*float: left;*/
  padding: 15px !important;
  /*border: 1px solid #efefef;*/
  border: 1px solid transparent;
  /*box-shadow: 0px 2px 11px 0px rgba(0, 0, 0, 0.05);*/
  transition: 0.4s;
}
div.product:hover {
  /*box-shadow: 0px 2px 11px 0px rgba(0, 0, 0, 0.15);*/
}
div.product:hover .spacer.product-container {
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0px 2px 11px 0px rgba(0, 0, 0, 0.05);
  transition: 0.4s;
}
/***/
.vm-product-media-container {
  position: relative;
}
.discount-percent-label {
  position: absolute;
  top: 10px;
  right: 10px;
  color: #fff;
  background: #ff4850;
  padding: 5px;
  z-index: 1000;
}
div.product .vm-product-details-container {
  float: none;
  width: 100%;
}
/***/
/*
 div.product .vm-product-title h3 {
 display: -webkit-box;
 -webkit-line-clamp: 2;
 -webkit-box-orient: vertical;
 overflow: hidden;
 text-overflow: ellipsis;
 -o-text-overflow: ellipsis;
 -ms-text-overflow: ellipsis;
 -moz-binding: url(ellipsis.xml#ellipsis);
 line-height: normal;
 height: 40px;
 }
 */
.vm-product-title {
  border-bottom: 1px solid #dee2e6;
  margin-bottom: 5px;
}
div.product .vm-product-title h3 a {
  color: #555;
  font-size: 14px;
  line-height: 16px;
  display: block;
  text-transform: capitalize;
}
/***/
div.product .vm-product-rating-container {
  display: inline-block;
}
div.product .vm-product-rating-container .amount {
  font-size: 10px;
}
div.product .ratingbox {
  margin: 0 auto 0px;
}
.ratingbox {
  position: relative;
  display: inline-block;
  width: 60px !important;
  height: 10px !important;
  background: url("/templates/shaper_helixultimate/images/virtuemart/color-stars.png") repeat-x scroll 0 top transparent;
}
.ratingbox div, .ratingbox span {
  background: url("/templates/shaper_helixultimate/images/virtuemart/color-stars.png") repeat-x 0 bottom !important;
  display: block;
  top: 0;
  height: 10px;
  position: absolute;
}
/***/
/***  vista productos - producto - stock ***/
/***/
div.product .nivel-stock {
  float: right;
  font-size: 11px;
}
/***/
/***  vista productos - producto - descripcion corta ***/
/***/
div.product .product-description {
  width: 100%;
  float: left;
  font-size: 12px;
}
div.product div[class^="vm-product-descr-container-"] {
  min-height: 40px;
  margin-bottom: 6px;
}
div.product p.product_s_desc {
  height: auto;
}
/***/
/***  vista productos - producto - precios ***/
/***/
div.product .product-price {
  width: 100%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  line-height: 18px;
  margin: 0;
  padding: 10px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
div.product span.price-crossed {
  padding: 0 5px;
  font-size: 16px;
  order: 2;
}
div.product span.PricesalesPrice {
  font-size: 18px !important;
  line-height: 21px !important;
  color: #ff4850 !important;
  order: 1;
}
div.product .discount-currency-label {
  background: #ff4850;
  color: #fff;
  padding: 5px;
  order: 3;
}
/***/
/***  vista productos - producto - selectores cantidad a comprar ***/
/***/
div.product .quantity-box, div.product span.quantity-controls {
  display: none;
}
/***/
/***  vista productos - producto - boton comprar ***/
/***/
div.product .addtocart-area {
  margin: 0;
  float: left;
}
div.product .addtocart-area form {
  float: left;
}
div.product .addtocart-area form .addtocart-bar {
  margin: 0;
}
div.product span.addtocart-button {
  float: left;
}
/***/
.grid-view div.product .product-description {
  margin-top: 5px;
}
/***/
div.product .product-actions {
  display: inline-block;
  width: 100%;
  padding-top: 10px;
}
/***/
div.product span.addtocart-button input.addtocart-button {
  font-size: 12px;
  height: 35px;
  line-height: 10px;
}
/***/
div.product .product-actions div.vm-details-button {
  float: left;
  display: none;
}
div.product .product-actions .vm-details-button a {
  width: 35px;
  height: 35px;
}
/***/
/***  vista productos - producto - boton favoritos ***/
/***/
div.product .favorites {
  float: left;
  height: 35px;
  margin-right: 5px;
}
div.product .modns.button.art-button.art-button {
  width: 35px;
  height: 35px;
  padding: 10px;
  line-height: 13px;
}
div.product .modns.button.art-button.art-button .mdi {
  font-size: 13px;
}
div.product .addtofav_aws_icon, div.product .addtofav_aws_icon_active {
  width: 35px;
  height: 35px;
  padding: 10px;
}
div.product .addtofav_aws_icon .mdi, div.product .addtofav_aws_icon_active .mdi {
  font-size: 13px;
  line-height: 13px;
}
/***/
/***  vista productos - producto - boton vista rapida ***/
/***/
div.product .product-actions .quickview-button {
  float: left;
}
.quickview-button a {
  float: left;
  width: 35px;
  height: 35px;
  padding: 10px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  color: #555;
  font-size: 14px;
  line-height: 14px;
  box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.05);
}
.quickview-button a .mdi {
  font-size: 14px !important;
}
.quickview-button a .text {
  display: none;
}
.quickview-button:hover {
  background: #8bb523;
}
.quickview-button:hover a {
  color: #fff;
}
/***/
/*** vista productos - campos presonalizados ***/
/***/
div.product .vm-customfields-wrap {
  display: none;
}
/***/
/*** vista productos - vista productos lista ***/
/***/
.list-view div.product {
  width: 100%;
}
@media (min-width: 1200px) {
  .list-view div.product {
    width: 50%;
  }
}
.list-view div.product .spacer.product-container {
  float: left;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.list-view div.product .spacer.product-container .vm-product-media-container {
  float: left;
}
@media (max-width: 575px) {
  .list-view div.product .spacer.product-container .vm-product-media-container {
    border-right-width: 0px;
  }
}
.list-view div.product .spacer.product-container .vm-product-details-container {
  float: left;
}
.list-view div.product .spacer.product-container .vm-product-details-container .vm-product-title {
  border-bottom-width: 0px;
}
.list-view div.product .spacer.product-container .vm-product-details-container .vm-product-rating-container {
  display: block;
}
.list-view div.product .spacer.product-container .vm-product-details-container .nivel-stock {
  float: left;
}
.list-view div.product .spacer.product-container .vm-product-details-container .product-description {
  margin: 10px auto;
}
.list-view div.product .spacer.product-container .vm-product-details-container .product-price {
  text-align: left;
  margin: 0 auto;
  border-bottom-width: 0px;
}
/***/
/*** vista detalle producto - layout ***/
/***/
.productdetails-view .vm-product-image-container, .productdetails-view .vm-product-details-container, .productdetails-view .vm-product-tabs-container, .productdetails-view .vm-product-neighbours, .productdetails-view .vm-product-related-products-title, .productdetails-view .vm-product-related-products {
  float: left;
}
/***/
/*** vista detalle producto - top shape ***/
/***/
@media (max-width: 991px) and (min-width: 768px) {
  .view-productdetails #sp-top-shape .sppb-shape-container.sppb-bottom-shape > svg {
    height: 50px;
  }
}
@media (max-width: 767px) {
  .view-productdetails #sp-top-shape .sppb-shape-container.sppb-bottom-shape > svg {
    height: 25px;
  }
}
/***/
/*** vista detalle producto - navegacion entre productos ***/
/***/
.vm-product-neighbours {
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 15px;
}
.vm-product-neighbours a {
  background: none;
  color: #555;
}
.vm-product-neighbours a:hover {
  color: #8bb523;
}
.vm-product-neighbours .previous-page {
  float: left;
  padding-left: 0px;
}
.vm-product-neighbours .previous-page:before {
  content: "\FA01";
  font-family: 'Material Design Icons';
  font-size: 1.3rem;
  position: relative;
  top: 3px;
}
.vm-product-neighbours .next-page {
  float: right;
  padding-right: 0px;
}
.vm-product-neighbours .next-page:after {
  content: "\FA02";
  font-family: 'Material Design Icons';
  font-size: 1.3rem;
  position: relative;
  top: 3px;
}
/***/
/*** vista detalle producto - imagenes adicionales - carrusel vertical - slick carousel ***/
/***/
.productdetails-view .vm-product-image-container {
  position: relative;
}
.productdetails-view .vm-product-media-container {
  float: left;
  width: 100%;
}
.productdetails-view .vm-product-media-container.with-images-additional {
  /*padding-left: 150px;*/
  float: right;
  width: 80%;
}
.productdetails-view .additional-images {
  width: 20%;
  /*max-width: 100px;*/
  padding-right: 10px;
  margin: 0;
  float: left;
  height: 100%;
  position: relative;
  top: 0px;
  /*overflow: hidden;*/
  z-index: 0;
}
/***/
#additional_images_gallery {
  /*height: 100%;*/
  width: 100%;
  margin: 0;
  padding: 0;
}
/***/
.additional-images .slick-list {
  margin-top: 10px !important;
  margin-bottom: 10px !important;
}
.additional-images .slick-list .slick-slide {
  padding-bottom: 5px;
}
.additional-images .slick-list .slick-slide img {
  display: block;
  width: 100%;
}
/***/
.additional-images .slick-arrow {
  position: absolute;
  width: 30px;
  height: 30px;
  background: #fff !important;
  font-size: 0;
  cursor: pointer;
}
.additional-images .slick-arrow:before {
  font-family: 'Material Design Icons';
  font-size: 12px;
  color: #555;
}
.additional-images .slick-arrow:hover:before {
  color: #8bb523;
}
.additional-images .slick-prev {
  top: -10px;
  right: 0;
  left: 0;
  margin: 0 auto;
  z-index: 500;
  border-width: 0 !important;
}
.additional-images .slick-prev:before {
  content: '\F6B6';
}
.additional-images .slick-next {
  top: auto;
  bottom: -5px;
  right: 0;
  left: 0;
  margin: 0 auto;
  z-index: 500;
  border-width: 0 !important;
}
.additional-images .slick-next:before {
  content: '\F6B5';
}
/***/
/*** volver a categoria ***/
/***/
.productdetails-view .back-to-category {
  width: 100%;
  margin-bottom: 10px;
  padding-bottom: 5px;
}
.productdetails-view .back-to-category {
  display: none;
}
.productdetails-view .back-to-category a {
  background: none !important;
  padding: 0;
  border: 0;
}
.productdetails-view .back-to-category a:hover {
  color: #8bb523;
}
/***/
/*** vista detalle producto - nombre producto ***/
/***/
.productdetails-view .product-title {
  display: block;
  margin-bottom: 15px;
  float: left;
  width: 100%;
  text-transform: capitalize;
}
.productdetails-view .product-title h1 {
  font-size: 1.5rem;
}
/***/
/*** vista detalle producto - calificacion - rating ***/
/***/
.productdetails-view .product-rating {
  display: block;
  float: left;
  width: calc(100% - 62px);
}
/***/
/*** vista detalle producto - fabricante - marca ***/
/***/
.productdetails-view .manufacturer {
  float: right;
  display: block;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.05);
  padding: 5px;
  margin: 0;
}
.productdetails-view .manufacturer a {
  text-align: center;
  margin: 0 auto;
  display: block;
  float: left;
  color: #555;
}
.productdetails-view .manufacturer a:hover {
  color: #8bb523;
}
.productdetails-view .manufacturer a img {
  height: 50px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.productdetails-view .manufacturer a span {
  width: 49px;
  overflow: hidden;
  display: block;
  text-overflow: ellipsis;
  font-size: 9px;
  line-height: 9px;
  padding-top: 5px;
  /*-webkit-line-clamp: 2;
   display: -webkit-box;
   -webkit-box-orient: vertical;			
   word-break: break-all;*/
}
/***/
/*** vista detalle producto - nivel stock ***/
/***/
/*
 .nivel-stock span  {
 font-size: 11px !important;
 }
 .nivel-stock span i {
 padding-right: 5px;
 }
 */
.nivel-stock i {
  padding-right: 3px;
}
.nivel-stock span.en-stock {
  color: #b3c461;
}
.nivel-stock span.poco-stock {
  color: #fd7e14;
}
.nivel-stock span.sin-stock {
  color: #cb2027;
}
/***/
/*** vista detalle producto - descripcion corta ***/
/***/
.productdetails-view .product-short-description {
  margin: 20px 0;
  padding: 0;
}
/***/
/*** vista detalle producto - precios ***/
/***/
.productdetails-view .product-price {
  text-align: left;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.productdetails-view .product-price .PricesalesPrice {
  color: #ff4850 !important;
  font-size: 1.5rem;
  line-height: 3rem;
  order: 1;
}
.productdetails-view .product-price .price-crossed {
  font-size: 1.2rem;
  line-height: 3rem;
  padding: 0 10px;
  order: 2;
}
.productdetails-view .product-price .discount-currency-label {
  background: #ff4850;
  color: #fff;
  padding: 5px;
  order: 3;
}
/***/
.productdetails-view .spacer-buy-area {
  padding-left: 0;
}
/***/
/*** vista detalle producto -  comprar ***/
/***/
/*
 .productdetails-view {
 .addtocart-bar {
 border-bottom: 1px solid #dee2e6;
 padding-bottom: 10px;
 }
 }
 */
/***/
/*** vista detalle producto - selectores cantidad a comprar ***/
/***/
.spacer-buy-area .quantity-box .quantity-input {
  width: 50px !important;
  height: 50px !important;
}
.spacer-buy-area .quantity-box .quantity-input:hover {
  background: none;
}
.spacer-buy-area span.quantity-controls {
  width: 25px;
  height: 50px;
  margin-right: 5px;
}
.spacer-buy-area span.quantity-controls input.quantity-controls {
  width: 25px;
  height: 25px;
  font-size: 1rem;
}
/***/
/*** vista detalle producto - boton comprar ***/
/***/
.spacer-buy-area span.addtocart-button {
  float: left;
  width: calc(100% - 135px);
}
.spacer-buy-area span.addtocart-button:before {
  line-height: 1.8rem;
  font-size: 1rem;
  left: -80px;
  right: 0;
  text-align: center;
}
.spacer-buy-area span.addtocart-button input.addtocart-button {
  font-size: 1rem;
  padding-left: 35px;
  padding-right: 20px;
  line-height: 1.5rem;
  width: 100%;
}
/***/
/*** vista detalle producto - boton notificarme ***/
/***/
.spacer-buy-area a.notify {
  float: left;
  width: calc(100% - 135px);
  text-align: center;
  font-size: 16px;
  height: 50px;
  line-height: 25px;
}
/***/
/*** vista detalle producto - formulario notificarme ***/
/***/
.vm-wrap.notify h1 {
  font-size: 24px;
}
.vm-wrap.notify .notify-form {
  margin-bottom: 5px;
  float: left;
  margin-top: 5px;
}
.vm-wrap.notify .notify-form input {
  display: block;
  margin: 0;
  float: left;
  height: 40px;
}
.vm-wrap.notify .notify-form #notify_email {
  width: 200px;
}
.vm-wrap.notify .notify-form .btn-primary {
  margin-right: 15px;
}
/***/
/*** vista detalle producto - favoritos - wishlist ***/
/***/
.vm-product-details-container .modns.button.art-button.art-button {
  width: 50px;
  height: 50px;
  padding: 10px;
  line-height: 26px;
}
.vm-product-details-container .modns.button.art-button.art-button .mdi {
  font-size: 16px;
}
.vm-product-details-container .addtofav_aws_icon, .vm-product-details-container .addtofav_aws_icon_active {
  width: 50px;
  height: 50px;
  padding: 10px;
}
.vm-product-details-container .addtofav_aws_icon .mdi, .vm-product-details-container .addtofav_aws_icon_active .mdi {
  font-size: 16px;
  line-height: 26px;
}
/***/
/*** vista detalle producto - haga una pregunta ***/
/***/
a.ask-a-question {
  background: none;
  border: none;
  padding: 0;
  font-weight: normal;
}
a.ask-a-question:hover {
  background: none;
  color: #8bb523;
}
a.ask-a-question .mdi {
  font-size: 16px;
  margin-right: 3px;
  position: relative;
  top: 3px;
}
/***/
/*** vista detalle producto - product tabs ***/
/***/
.vm-product-tabs-container {
  margin-top: 50px;
  margin-bottom: 50px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  /*box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.05);*/
}
.vm-product-tabs-container .nav-tabs {
  justify-content: center;
  border-bottom-width: 0;
}
.vm-product-tabs-container .nav-tabs li {
  position: relative;
}
.vm-product-tabs-container .nav-tabs li:before {
  content: " ";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 0px;
  height: 2px;
  background: #8bb523;
  transition: 0.4s;
}
.vm-product-tabs-container .nav-tabs li:hover a {
  text-decoration: none;
}
.vm-product-tabs-container .nav-tabs li:hover:before {
  width: 100px;
  opacity: 0.3;
  transition: 0.4s;
}
.vm-product-tabs-container .nav-tabs li a {
  font-size: 18px;
  padding: 20px 25px;
  display: inline-block;
  color: #555;
}
.vm-product-tabs-container .nav-tabs .active:before {
  width: 100px;
  opacity: 1 !important;
  transition: 0.4s;
}
.vm-product-tabs-container .tab-content {
  padding: 30px;
}
.vm-product-tabs-container .tab-content .customer-reviews span.step {
  text-align: center;
  display: block;
}
.vm-product-tabs-container .tab-content .customer-reviews textarea {
  resize: both;
  height: 150px;
  width: 100%;
}
.vm-product-tabs-container .tab-content .customer-reviews textarea:hover {
  background: inherit;
}
.vm-product-tabs-container .tab-content .customer-reviews span {
  display: block;
}
.vm-product-tabs-container .tab-content .customer-reviews input[type="text"] {
  width: auto;
  text-align: center;
  display: block;
  margin: 0 auto;
  border-width: 0px;
}
.vm-product-tabs-container .tab-content .customer-reviews br {
  display: none;
}
/***/
.customer-reviews h4 {
  display: none;
}
/***/
.product-related-products .product-field-desc {
  display: none;
}
/***/
/*** vista detalle producto - productos relacionados ***/
/***/
.vm-product-related-products-title {
  text-align: center;
}
.vm-product-related-products-title .product-fields-title {
  font-size: 18px;
  padding: 20px 25px;
  display: inline-block;
  color: #555;
  font-weight: initial;
}
.vm-product-related-products-title .product-fields-title:before {
  content: " ";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  height: 2px;
  width: 100px;
  background: #8bb523;
}
.vm-product-related-products-title .product-fields-title strong {
  font-weight: normal !important;
  position: relative;
}
.vm-product-related-products-title .hasTooltip {
  display: none;
}
.vm-product-related-products {
  padding-top: 30px;
  overflow: hidden;
}
.vm-product-related-products .product-field-desc {
  display: none;
}
.vm-product-related-products div[class*="product-field-type-"] {
  margin: 0px;
}
/***/
/*** notificarme ***/
/***/
.layout-notify form#notifyform input {
  width: initial;
  float: left;
  margin-right: 5px;
}
/***/
/*** fancybox / popup vista detalle producto ***/
/***/
.contentpane .virtuemart-page-title, .contentpane .color-lines {
  display: none;
}
.contentpane .back-to-category {
  display: initial;
}
.contentpane .product-title .color-lines {
  display: initial;
}
/***/
/*** fancybox / popup compra producto ***/
/***/
.fancybox-container.fancybox-popup-addtocart .fancybox-content {
  width: 750px;
  height: auto;
  padding: 15px;
  cursor: initial;
}
.fancybox-container.fancybox-popup-addtocart .fancybox-content .addtocart-popup-product-added {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  align-items: center;
}
.fancybox-container.fancybox-popup-addtocart .fancybox-content .addtocart-popup-product-added .title {
  font-size: 18px;
}
.fancybox-container.fancybox-popup-addtocart .fancybox-content .addtocart-popup-product-added .product-name, .fancybox-container.fancybox-popup-addtocart .fancybox-content .addtocart-popup-product-added .errorMessage {
  font-size: 14px !important;
}
@media (max-width: 575px) {
  .fancybox-container.fancybox-popup-addtocart .fancybox-content .addtocart-popup-product-added .product-image, .fancybox-container.fancybox-popup-addtocart .fancybox-content .addtocart-popup-product-added .product-text {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    padding-bottom: 15px;
  }
}
/*.com-users #sp-main-body,
 .view-user #sp-main-body,
 .view-orders #sp-main-body {
 padding: 0px 0;
 padding-bottom: 50px;
 }*/
/***/
/*** mantenimiento de cuenta ***/
/***/
/*** fijamos la anchura ***/
@media (min-width: 992px) {
  .view-user #adminForm {
    width: 992px;
    margin: 0 auto;
  }
}
.view-user #form-login {
  display: none;
}
/***/
.userfields_info {
  font-weight: initial;
  font-size: 1.5rem;
}
/*** ocultamos las tabs ***/
.view-user #ui-tabs ul#tabs {
  display: none;
}
/*** ocultamos el login ***/
.view-user.layout-edit .adminForm.user-details:first-child {
  display: none;
}
/*** ocultamos el formulario de usuario/email/pass ***/
.view-user.layout-edit .adminForm.user-details {
  display: none;
}
/*** mostramos el resto de formularios ***/
.view-user.layout-edit fieldset .adminForm.user-details {
  display: initial;
}
/*** fijamos una anchura para la info del comprador ***/
.view-user.layout-edit fieldset:nth-child(1) .adminForm.user-details tr {
  width: 100%;
}
/***/
.view-user.layout-default table.user-details, .view-user.layout-edit table.user-details {
  width: 100%;
}
.view-user.layout-default table.user-details tr, .view-user.layout-edit table.user-details tr {
  width: 100%;
  float: left;
}
.view-user.layout-default table.user-details tr td, .view-user.layout-edit table.user-details tr td {
  width: 100%;
  float: left;
}
.view-user.layout-default table.user-details tr td input, .view-user.layout-edit table.user-details tr td input {
  width: 100%;
}
@media (min-width: 768px) {
  .view-user.layout-default table.user-details tr, .view-user.layout-edit table.user-details tr {
    width: 50%;
    float: left;
  }
  .view-user.layout-default table.user-details tr td input, .view-user.layout-edit table.user-details tr td input {
    width: 80%;
  }
}
/*** selectores ***/
table.user-details .select-wrapper {
  position: relative;
}
table.user-details .select-wrapper:before {
  content: "\F6B5";
  position: absolute;
  font-family: "Material Design Icons";
  font-size: 14px;
  left: 225px;
  top: 0;
  z-index: -1;
  height: 100%;
  line-height: 35px;
  width: 20px;
  text-align: center;
  color: #555;
  /*border-left: 1px solid #efefef;*/
}
table.user-details .vm-chzn-select {
  background: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 250px !important;
}
/*** inputs ***/
table.user-details tr {
  position: relative;
  margin-top: 10px;
  margin-bottom: 10px;
  transition: 0.4s;
}
table.user-details tr .invalid {
  background: transparent;
}
table.user-details tr input {
  border: 0 !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
}
table.user-details tr input.invalid {
  background: transparent;
  border-bottom: 1px solid #f00 !important;
  box-shadow: none;
}
table.user-details tr textarea {
  resize: both;
}
/***/
/*** checkboxes radios ***/
/***/
table.user-details input[type="checkbox"], table.user-details input[type="radio"] {
  width: 12px !important;
  height: 12px;
}
input[type="checkbox"].invalid, input[type="radio"].invalid {
  border: 1px solid #f00 !important;
}
/***/
/*** mis direcciones ***/
/***/
.shipTo a {
  color: #555;
}
.shipTo a:hover {
  color: #8bb523;
}
.shipTo ul {
  padding: 0;
}
.shipTo ul li {
  list-style-type: none;
  padding: 5px 0px;
}
.shipTo ul li a .icon-delete:before {
  content: "\F156";
  font: normal normal normal 16px/1 "Material Design Icons";
}
.shipTo ul li a:last-child {
  float: right;
}
/***/
/*** mis pedidos - lista pedidos ***/
/***/
.view-orders .vm-orders-list #editcell {
  padding: 15px;
}
.view-orders .vm-orders-list table {
  width: 100%;
}
.view-orders .vm-orders-list table tr th {
  padding: 10px !important;
}
.view-orders .vm-orders-list table tr td {
  padding: 10px !important;
}
.view-orders .vm-orders-list table tr td label {
  display: none;
  font-weight: bold;
  text-align: left;
  margin-bottom: 5px;
  width: 100%;
}
@media (max-width: 767px) {
  .view-orders .vm-orders-list th {
    display: none;
  }
  .view-orders .vm-orders-list tr {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
  }
  .view-orders .vm-orders-list tr td {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    padding-left: 15px !important;
  }
  .view-orders .vm-orders-list tr td label {
    display: initial !important;
  }
}
/***/
.view-orders .vm-orders-list table tr:nth-child(1n+0) td {
  background: #f5f5f5;
}
.view-orders .vm-orders-list table tr:nth-child(2n+0) td {
  background: #fff !important;
}
/***/
/*** mis pedidos - lista vacia ***/
/***/
.view-orders .empy-order-list {
  text-align: center;
}
/***/
/*** mis pedidos - detalle pedido - tabla top ***/
/***/
.view-orders .vm-orders-order tr td {
  padding: 5px;
}
.view-orders .vm-orders-order table tr td:nth-child(1n+0) {
  font-weight: bold;
}
.view-orders .vm-orders-order table tr td:nth-child(2n+0) {
  font-weight: initial;
}
@media (max-width: 767px) {
  .view-orders .vm-orders-order table tr {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
  }
  .view-orders .vm-orders-order table tr td {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    padding-left: 15px !important;
  }
  .view-orders .vm-orders-order table tr td tbody {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
  }
}
/***/
/*** mis pedidos - detalle pedido tabs ***/
/***/
.view-orders #ui-tabs ul li {
  padding: 10px 30px !important;
  background: transparent !important;
}
.view-orders #ui-tabs ul li.current {
  background: #8bb523 !important;
  color: #fff !important;
}
.view-orders .tabs {
  border-top: 1px solid #8bb523;
}
/***/
/*** mis pedidos - detalle pedido - tabla listado productos ***/
/***/
.view-orders #ui-tabs table th, .view-orders .vm-orders-items table th {
  padding: 10px;
}
.view-orders #ui-tabs table tr, .view-orders .vm-orders-items table tr {
  vertical-align: middle !important;
}
.view-orders #ui-tabs table tr td, .view-orders .vm-orders-items table tr td {
  padding: 5px !important;
}
.view-orders #ui-tabs table tr td label, .view-orders .vm-orders-items table tr td label {
  display: none;
  font-weight: bold;
  text-align: left;
  margin-bottom: 5px;
  width: 100%;
}
.view-orders #ui-tabs table tr td .product-order, .view-orders .vm-orders-items table tr td .product-order {
  display: flex;
  align-items: center;
}
.view-orders #ui-tabs table tr td .product-order .product-order-image, .view-orders .vm-orders-items table tr td .product-order .product-order-image {
  width: 65px;
  margin-right: 15px;
}
.view-orders #ui-tabs table tr td .product-order .product-order-text, .view-orders .vm-orders-items table tr td .product-order .product-order-text {
  width: calc(100% - 65px);
}
.view-orders #ui-tabs table a, .view-orders .vm-orders-items table a {
  color: #555;
}
@media (max-width: 767px) {
  .view-orders #ui-tabs table th, .view-orders .vm-orders-items table th {
    display: none;
  }
  .view-orders #ui-tabs table tr, .view-orders .vm-orders-items table tr {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
  }
  .view-orders #ui-tabs table tr td, .view-orders .vm-orders-items table tr td {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    padding-left: 15px !important;
  }
  .view-orders #ui-tabs table tr td:first-child, .view-orders .vm-orders-items table tr td:first-child {
    padding-top: 15px !important;
  }
  .view-orders #ui-tabs table tr td:last-child, .view-orders .vm-orders-items table tr td:last-child {
    padding-bottom: 15px !important;
  }
  .view-orders #ui-tabs table tr td label, .view-orders .vm-orders-items table tr td label {
    display: initial;
  }
  .view-orders #ui-tabs table tr td .product-order, .view-orders .vm-orders-items table tr td .product-order {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
  }
  .view-orders #ui-tabs table tr td .product-order .product-order-image, .view-orders .vm-orders-items table tr td .product-order .product-order-image {
    width: 65px;
    margin-bottom: 5px;
  }
  .view-orders #ui-tabs table tr td .product-order .product-order-text, .view-orders .vm-orders-items table tr td .product-order .product-order-text {
    width: 100%;
  }
}
.view-orders #ui-tabs table tr:nth-child(1n+0) td, .view-orders .vm-orders-items table tr:nth-child(1n+0) td {
  background: #fff;
}
.view-orders #ui-tabs table tr:nth-child(2n+0) td, .view-orders .vm-orders-items table tr:nth-child(2n+0) td {
  background: #f5f5f5 !important;
}
/***/
/*** wishlist - vista mis favoritos ***/
/***/
.fav_header {
  text-align: center;
}
/*** ajustamos la anchura y la alineacion de cada elemento dentro de cada fila ***/
.fav_table {
  /*border: 1px solid #efefef;*/
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.fav_table .fav_heading {
  display: none;
}
.fav_table .fav_row {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.fav_table .fav_row .fav_col {
  border-width: 0px;
  float: left;
  display: flex;
}
@media (min-width: 768px) {
  .fav_table .fav_row .fav_image {
    align-items: center;
  }
}
.fav_table .fav_row .fav_details {
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 768px) {
  .fav_table .fav_row .fav_details .vm-product-title {
    border-bottom-width: 0px;
  }
  .fav_table .fav_row .fav_details .product-price {
    border-bottom-width: 0px;
  }
}
.fav_table .fav_row .fav_actions {
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767px) {
  .fav_table .fav_row .fav_actions {
    justify-content: left;
    padding-top: 10px;
  }
}
.fav_table .fav_row .spacer.product-container {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 1200px) {
  .fav_table .fav_row {
    width: 50%;
  }
}
/***/
/*** ocultamos el 'close-small' del fancybox 3 en el popup de los 'terminos de servicio' ***/
/***/
.fancy-tos-container .fancybox-close-small {
  display: none !important;
}
/***/
/*** textos, inputs, selects... ***/
/***/
#ProOPC, #ProOPC span, #ProOPC div, #ProOPC p, #ProOPC input, #ProOPC select, #ProOPC button, #ProOPC h1, .proopc-finalpage h3, .proopc-finalpage h2, .proopc-finalpage h1, .proopc-finalpage h4, .proopc-register-login h3, .proopc-register-login h2, .proopc-register-login h4, .proopc-register-login h1 {
  font-family: inherit !important;
  box-shadow: none !important;
  text-shadow: none !important;
}
#ProOPC input[type="text"], #ProOPC input[type="password"], #ProOPC input[type="datetime"], #ProOPC input[type="datetime-local"], #ProOPC input[type="date"], #ProOPC input[type="month"], #ProOPC input[type="time"], #ProOPC input[type="week"], #ProOPC input[type="number"], #ProOPC input[type="email"], #ProOPC input[type="url"], #ProOPC input[type="search"], #ProOPC input[type="tel"], #ProOPC input[type="color"], #ProOPC .uneditable-input {
  height: 30px !important;
}
#ProOPC select {
  border: 1px solid #ccc !important;
  height: 35px !important;
}
/***/
/*** botones ***/
/***/
.proopc-btn {
  border-radius: 0 !important;
  background: #8bb523 !important;
  border-color: #8bb523 !important;
  text-shadow: none !important;
  padding: 0.375rem 0.75rem !important;
  font-size: 1rem !important;
  line-height: 1.5 !important;
  height: initial !important;
  color: #fff !important;
}
.proopc-btn:hover {
  background: #8bb523 !important;
  border-color: #8bb523 !important;
}
/***/
/*** titulo ***/
/***/
#ProOPC .cart-page-title, #ProOPC .cart-page-title span {
  text-transform: none !important;
}
/***/
/*** resumen carro ***/
/***/
#ProOPC .cart-summary.proopc-table-striped {
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
}
#ProOPC .cart-summary.proopc-table-striped thead tr {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
}
#ProOPC .cart-summary.proopc-table-striped thead tr th {
  background-color: #fff !important;
  text-transform: none !important;
}
#ProOPC .cart-summary.proopc-table-striped td {
  border-top: 0px solid #ddd !important;
}
#ProOPC .cart-summary.proopc-table-striped .col-qty input[type="number"] {
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
  box-shadow: none !important;
}
#ProOPC .cart-summary.proopc-table-striped .col-qty .proopc-btn {
  background-image: none !important;
  border: 1px solid rgba(0, 0, 0, 0.07) !important;
  padding: 3px 8px !important;
  font-size: 14px !important;
  line-height: 21px !important;
  background: #fff !important;
  color: #555 !important;
}
#ProOPC .cart-summary.proopc-table-striped .col-qty .proopc-btn:hover {
  background: #8bb523 !important;
  color: #fff !important;
}
#ProOPC .cart-summary.proopc-table-striped .cart-sub-total td {
  background-color: #fff !important;
  text-transform: none !important;
}
/***/
/***  resumen carro - custom filters for all ***/
/***/
#ProOPC .cf4all_color_btn_small {
  width: 15px;
  height: 15px;
  min-width: 15px;
}
#ProOPC span.cf4all_actual_value {
  display: none;
}
/***/
/*** compra como invitado & compra como registrado ***/
/***/
#ProOPC .proopc-register-login h3 {
  background: #fff !important;
  border-width: 0 !important;
  font-size: 18px !important;
  line-height: 28px !important;
}
#ProOPC .proopc-register-login .proopc-inner {
  border: 1px solid rgba(0, 0, 0, 0.07) !important;
}
#ProOPC .proopc-register-login .proopc-inner .proopc-subtitle {
  text-transform: none;
}
#ProOPC .proopc-register-login .proopc-inner .proopc-reg-form .proopc-inner, #ProOPC .proopc-register-login .proopc-inner .proopc-guest-form .proopc-inner, #ProOPC .proopc-register-login .proopc-inner .proopc-login .proopc-inner {
  border: 0 !important;
}
/***/
/***  pago final - resumen carro ***/
/***/
#ProOPC .cart-summary.proopc-table-striped .shipping-row td {
  background: #f9f9f9 !important;
}
#ProOPC .cart-summary.proopc-table-striped .payment-row {
  border-top: 1px solid rgba(255, 255, 255, 1) !important;
}
#ProOPC .cart-summary.proopc-table-striped .payment-row td {
  background: #f4f4f4 !important;
  text-transform: none !important;
}
#ProOPC .cart-summary.proopc-table-striped .blank-row {
  display: none !important;
}
#ProOPC .cart-summary.proopc-table-striped tr.grand-total {
  border-top: 1px solid rgba(255, 255, 255, 1) !important;
}
#ProOPC .cart-summary.proopc-table-striped tr.grand-total td {
  background: #f0f0f0 !important;
}
/***/
/***  pago final - pasos ***/
/***/
#ProOPC .proopc-process-title {
  background: #fff !important;
  padding: 0 !important;
  padding-left: 0 !important;
  line-height: 35px !important;
}
#ProOPC .proopc-process-title .proopc-step {
  background: #8bb523;
  width: 35px !important;
  height: 35px !important;
  padding: 0 !important;
  margin: 0 !important;
  margin-right: 15px !important;
  line-height: 35px !important;
  border-radius: 0 !important;
}
#ProOPC .proopc-confirm-order textarea.customer-comment {
  min-height: 120px;
  box-shadow: none;
}
#ProOPC .proopc-confirm-order a.terms-of-service {
  color: #555;
}
/******* Ocultar en la columna "Detalles de facturacion" la política de publicidad *********/
.publicidad2-group {
  display: none;
}
#eb .btn-primary {
  color: #fff !important;
  background-color: #8bb523 !important;
  border-color: #8bb523 !important;
  border-radius: 0;
  font-weight: normal;
}
#eb .btn-primary:hover {
  background-color: #8bb523 !important;
  border-color: #8bb523 !important;
}
/***/
/*** modulo easblybog - ultimas entradas ***/
/***/
.mod_easybloglatestblogs .eb-mod-thumb .eb-mod-image-cover::before {
  display: none !important;
}
.mod_easybloglatestblogs .eb-mod-title {
  margin-bottom: 10px;
}
.mod_easybloglatestblogs .mod-post-type {
  margin-top: 5px;
}
.mod_easybloglatestblogs .eb-mod-title a, .mod_easybloglatestblogs .mod-post-type a {
  color: #555;
}
.mod_easybloglatestblogs .eb-mod-title a:hover, .mod_easybloglatestblogs .mod-post-type a:hover {
  color: #8bb523;
}
@media (max-width: 991px) {
  .mod_easybloglatestblogs .mod-grid {
    width: 50% !important;
  }
}
@media (max-width: 549px) {
  .mod_easybloglatestblogs .mod-grid {
    width: 100% !important;
  }
}
/***/
/*** modulo categorias ***/
/***/
.mod_easyblogcategories .fa-folder:before {
  color: #8bb523;
}
.mod_easyblogcategories a.eb-mod-media-title {
  color: #555;
}
/***/
/*** modulo suscribirse ***/
/***/
.mod_easyblogsubscribe input {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  -webkit-box-shadow: none !important;
  background: transparent !important;
}
.info-datos-suscribirse-blog {
  padding: 15px;
  font-size: 10px;
  line-height: 11px;
}
/***/
/*** layouts ****/
/***/
/***  posts - tema timeless ***/
@media (max-width: 1600px) {
  .eb-timeless .eb-post-content {
    width: calc(100% - 70px) !important;
  }
}
/*** post ***/
.eb-entry-meta a {
  color: #555;
}
/*** comentarios ****/
.eb-comment-form .politica-formulario {
  font-size: 11px;
}
.bfPage .span6 {
  width: 50%;
  float: left;
}
.bfPage .span4 {
  width: 33%;
  float: left;
}
.bfQuickMode fieldset legend {
  display: none;
}
.bfQuickMode .controls.form-inline.input-field {
  width: 90%;
  display: inline-block;
}
.bfQuickMode .form-inline label {
  justify-content: left !important;
}
.bfQuickMode .control-group {
  margin-top: 10px !important;
  margin-bottom: 10px !important;
}
.bfQuickMode .control-group .controls .control-label {
  height: auto;
}
.bfClearfix input[type="text"]:not(.form-control), .bfClearfix input[type="email"]:not(.form-control), .bfClearfix input[type="url"]:not(.form-control), .bfClearfix input[type="date"]:not(.form-control), .bfClearfix input[type="password"]:not(.form-control), .bfClearfix input[type="search"]:not(.form-control), .bfClearfix input[type="tel"]:not(.form-control), .bfClearfix input[type="number"]:not(.form-control) {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #9e9e9e;
  border-radius: 0;
  outline: none;
  height: 3rem;
  width: 100%;
  font-size: 1rem;
  margin: 0 0 15px 0;
  padding: 0;
  box-shadow: none;
  box-sizing: content-box;
  transition: all 0.3s;
}
.bfClearfix .dropdown-content li {
  list-style-type: none;
  margin-left: -30px !important;
  width: calc(100% + 30px);
}
/*** calendario ****/
.bfQuickMode .js-calendar {
  width: inherit;
}
.bfQuickMode .calendar-container table {
  table-layout: initial;
  max-width: initial;
}
/***/
/*** asterisco campo obligatorio ***/
/***/
.bfQuickMode .icon-unfeatured::before, .bfQuickMode .icon-asterisk::before, .bfQuickMode .icon-star-empty::before {
  content: "\F4D2";
  font: normal normal normal 12px/1 "Material Design Icons";
}
/***/
/*** recaptcha ***/
/***/
div#bfElemWrap274 .controls {
  justify-content: center;
}
/***/
/*** politicas formulario ***/
/***/
div#bfElemWrap291 .controls.form-inline.input-field {
  width: 100%;
}
div#bfElemWrap291 label#bfLabel291 {
  position: initial;
}
div#bfElemWrap291 input#ff_elem291 {
  display: none;
}
div#bfElemWrap291 .politica-formulario {
  width: 100%;
  font-size: 11px;
  text-align: center;
}
/***/
/*** boton envio ***/
/***/
.bfQuickMode .form-actions {
  text-align: center;
  margin-top: 15px;
}
.bfQuickMode .form-actions button {
  float: none;
  text-transform: capitalize;
}
.btnM, .btnM-large {
  background-color: #8bb523;
}
.btnM:hover, .btnM-large:hover {
  background-color: #8bb523;
}
/***/
/*** buscador ***/
/***/
div#sp-search {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 549px) {
  div#sp-search .sp-column, div#sp-search .sp-module {
    width: 100%;
  }
}
/***/
/*** buscador ajax  ***/
/***/
.offlajn-ajax-search-inner input {
  height: 35px !important;
  box-shadow: none !important;
}
.offlajn-ajax-search-inner div[id^='ajax-search-button'] .magnifier {
  /*height: 27px;
   width: 30px;
   padding: 0;
   margin: 0;*/
}
.offlajn-ajax-search-inner div[id^='ajax-search-button'] .magnifier:before {
  content: "\F349 ";
  font: normal normal normal 24px/1 "Material Design Icons";
  position: absolute;
  top: 5px;
  left: 0;
  right: 0;
  text-align: center;
}
div[id^='search-results'] {
  z-index: 9999 !important;
}
div[id^='search-results'] div[id^='search-results-moovable'] {
  -webkit-box-shadow: 2px 8px 11px 0px rgba(0, 0, 0, 0.1) !important;
  -moz-box-shadow: 2px 8px 11px 0px rgba(0, 0, 0, 0.1) !important;
  box-shadow: 2px 8px 11px 0px rgba(0, 0, 0, 0.1) !important;
  border: 0px solid rgba(0, 0, 0, .1) !important;
}
div[id^='search-results'] div[id^='search-results-moovable'] .pagination {
  flex-wrap: wrap;
}
div[id^='search-results'] div[id^='search-results-moovable'] .page-band {
  width: 100000px !important;
}
@media (max-width: 549px) {
  div[id^='offlajn-ajax-search'] {
    width: 100% !important;
  }
  div[id^='search-results'] div[id^='search-results-moovable'] .page-container {
    width: 100% !important;
  }
}
/***/
/*** login acceso dropdown ***/
/***/
.loginModule {
  width: 40px;
  /*height: 30px;*/
}
.loginModule .icon {
  font-size: 1.3rem;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  text-align: center;
}
.loginModule .dropdown {
  position: absolute;
  top: 60px;
  right: 0;
  width: 250px;
  padding: 20px;
  line-height: initial;
  background: #fff;
  z-index: 500;
  box-shadow: 2px 8px 11px 0px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(50px);
  transition: 0.4s;
}
.loginModule .dropdown-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
  transition: 0.4s;
}
/*** input con iconos - registro ***/
.loginModule .dropdown .input-group-prepend .input-group-text {
  background-color: #f5f5f5;
  border-radius: 0;
  border-right-width: 0;
  min-width: 35px;
  text-align: center;
}
.loginModule .dropdown .input-group-prepend input {
  width: calc(100% - 35px) !important;
}
/*** lista enlaces inferior  del dropdown ***/
.loginModule .dropdown .userdata {
  width: 100%;
}
.loginModule .dropdown .userdata .form-inline label {
  justify-content: left;
}
.loginModule .dropdown .userdata .input-group-text {
  font-size: inherit;
  padding: 10px;
}
.loginModule .dropdown .userdata input[type=checkbox], .loginModule .dropdown .userdata input[type=radio] {
  float: left;
  margin-right: 5px;
  top: 3px;
  position: relative;
}
.loginModule .dropdown .userdata label {
  display: inline-block;
}
.loginModule .dropdown .btn-list {
  margin-bottom: 15px;
}
.loginModule .dropdown .btn-list .btn {
  display: block;
  text-align: left;
  border-bottom: 1px solid rgba(0, 0, 0, .1);
  padding-left: 0;
}
.loginModule .dropdown .btn-list .btn a {
  color: #555;
}
.loginModule .dropdown .btn-list .btn a:hover {
  color: #8bb523;
}
/***/
/*** logout mi cuenta dropdown ***/
/***/
.loginModule.logout {
  width: auto;
}
.loginModule.logout .icon {
  width: 30px;
  float: left;
}
/*** inicial, saludo y elementos de cuenta del dropdown ***/
.loginModule.logout .dropdown .login-greeting {
  font-size: 14px;
  margin-bottom: 15px;
}
.loginModule.logout .dropdown .login-greeting div {
  display: block;
}
.loginModule.logout .dropdown .login-greeting .icon {
  float: left;
  width: 35px;
  height: 35px;
  font-size: 25px;
  margin-right: 10px;
  background: rgba(139, 181, 35, .45);
  border-radius: 100%;
  line-height: 35px;
}
.loginModule.logout .dropdown .login-greeting .icon span {
  color: #8bb523;
}
.loginModule.logout .dropdown .login-greeting .greeting span {
  display: block;
}
.loginModule.logout .dropdown .login-greeting .greeting .user {
  font-weight: bold;
  font-size: 16px;
}
.loginModule.logout .dropdown .logout-button {
  float: right;
}
/***/
/*** modulo mini carro dropdown ***/
/***/
.vmCartModule {
  /*width: 30px;*/
  /*height: 30px;*/
  padding-left: 15px;
  float: right;
}
.vmCartModule .icon {
  font-size: 1.3rem;
  width: 20px;
  height: 100%;
  margin: 0 auto;
  text-align: center;
  float: left;
}
.vmCartModule .icon a {
  height: 100%;
  width: 100%;
  display: block;
}
/***/
.vmCartModule .total {
  float: left;
  font-size: 11px;
}
.vmCartModule .total strong {
  color: #ff4850;
}
@media (max-width: 1199px) {
  .vmCartModule .total {
    font-size: 10px;
  }
}
@media (max-width: 991px) {
  .vmCartModule .total {
    display: none;
  }
}
/***/
.vmCartModule .product-counter {
  position: absolute;
  top: 22px;
  left: 2px;
  font-size: 10px;
  background: #ff4850;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  color: #fff;
  line-height: 15px;
}
/***/
.vmCartModule .dropdown {
  position: absolute;
  top: 60px;
  right: 0;
  width: 250px;
  padding: 20px;
  line-height: initial;
  background: #fff;
  z-index: -500;
  box-shadow: 2px 8px 11px 0px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(50px);
  transition: 0.4s;
}
.vmCartModule .dropdown .simplebar-content-wrapper {
  visibility: hidden;
}
.vmCartModule:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
  transition: 0.4s;
  z-index: 500;
}
.vmCartModule:hover .dropdown .simplebar-content-wrapper {
  visibility: visible;
}
/***/
.vmCartModule .dropdown .dropdown-cart-products {
  max-height: 400px;
  overflow-y: auto;
  padding-right: 5px;
  padding-left: 5px;
}
.vmCartModule .dropdown .dropdown-cart-products .product_row {
  padding-bottom: 5px;
}
.vmCartModule .dropdown .dropdown-cart-products .product_row .product_name {
  text-transform: capitalize;
}
.vmCartModule .dropdown .dropdown-cart-products .product_row .product_name a {
  color: #555;
  font-size: 11px;
}
.vmCartModule .dropdown .dropdown-cart-products .product_row .product_name a:hover {
  color: #8bb523;
}
.vmCartModule .dropdown .total_products {
  margin-top: 15px;
}
.vmCartModule .dropdown .total {
  font-size: inherit;
  margin-top: 15px;
}
.vmCartModule .dropdown .show_cart a {
  background: #8bb523;
  border: 1px solid rgba(0, 0, 0, 0.07);
  color: #555;
  box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.1);
  margin-top: 20px;
  float: right;
  color: #fff;
  font-size: 12px;
  padding: 0.375rem 0.75rem;
  line-height: 1.5;
}
.vmCartModule .dropdown .show_cart a:hover {
  background: #8bb523;
  color: #fff;
}
/***/
/*** modulo categorias virtuemart ***/
/***/
.VMmenu li {
  border-bottom: 1px solid #e9ecef;
  padding: 7px 0px !important;
}
.VMmenu li:last-child {
  border-bottom: 0px solid #e9ecef;
}
/***/
/*** modulo productos virtuemart - muro ***/
/***/
.vmgroup .vmproducts {
  display: flex;
  flex-wrap: wrap;
}
.vmgroup .vmproducts .addtocart-area, .vmgroup .vmproducts .addtocart-bar {
  margin: 0;
}
@media (max-width: 1199px) {
  .vmgroup div.product {
    width: 25%;
  }
}
@media (max-width: 991px) {
  .vmgroup div.product {
    width: 33%;
  }
}
@media (max-width: 677px) {
  .vmgroup div.product {
    width: 50%;
  }
}
/***/
/*** modulo productos virtuemart - carrusel ***/
/***/
.vmgroup .vmproducts-carousel div.product {
  width: 100%;
}
/***/
/*** modulo vina product carousel ***/
/***/
.vina-carousel-virtuemart div.product {
  width: auto;
}
/***/
/*** modulo vp manufacturer carousel ***/
/***/
.vp-manufacturer-carousel .owl-item .manufacturer-carousel-inner {
  margin-top: 10px;
  margin-bottom: 10px;
  border: 1px solid transparent;
  transition: 0.4s;
}
.vp-manufacturer-carousel .owl-item:hover .manufacturer-carousel-inner {
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0px 2px 11px 0px rgba(0, 0, 0, 0.05);
}
/***/
/*** acymailing - newsletter ***/
/***/
.acymailing_module_form .acymailing_introtext {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  float: left;
  margin-bottom: 15px !important;
}
@media (min-width: 992px) {
  .acymailing_module_form .acymailing_introtext {
    width: 60%;
    margin-bottom: 0px !important;
  }
}
.acymailing_module_form .acymailing_introtext .icon {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 15px !important;
}
@media (min-width: 768px) {
  .acymailing_module_form .acymailing_introtext .icon {
    width: 20%;
    margin-bottom: 0px !important;
  }
}
.acymailing_module_form .acymailing_introtext .icon img {
  height: 100px;
  filter: brightness(90%);
}
.acymailing_module_form .acymailing_introtext .text {
  width: 100%;
  font-size: 16px;
  text-align: center;
}
@media (min-width: 768px) {
  .acymailing_module_form .acymailing_introtext .text {
    width: 80%;
    text-align: left;
    padding-left: 15px !important;
  }
}
.acymailing_module_form .acymailing_form {
  width: 100%;
  float: right;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 992px) {
  .acymailing_module_form .acymailing_form {
    width: 40%;
  }
}
.acymailing_module_form .acymailing_form .acyfield_name.acy_requiredField input, .acymailing_module_form .acymailing_form .acyfield_email.acy_requiredField input {
  background: #fff;
}
.acymailing_module_form .acymailing_form div, .acymailing_module_form .acymailing_form p {
  display: flex;
  justify-content: center;
}
.acymailing_module_form .acymailing_form p {
  margin-bottom: 5px;
}
.acymailing_module_form .acymailing_form span {
  width: 100%;
}
@media (min-width: 580px) {
  .acymailing_module_form .acymailing_form span {
    width: 450px;
  }
}
.acymailing_module_form .acymailing_form .acysubbuttons {
  order: 4;
}
.acymailing_module_form .acymailing_form .onefield.fieldacycaptcha {
  order: 3;
  margin-bottom: 15px !important;
}
.acymailing_module_form .acymailing_form .onefield.fieldacyterms {
  order: 2;
  margin-bottom: 5px;
}
.acymailing_module_form .acymailing_finaltext {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  float: left;
  padding-top: 15px !important;
}
@media (min-width: 992px) {
  .acymailing_module_form .acymailing_finaltext {
    width: 60%;
  }
}
.acymailing_module_form .acymailing_finaltext .politica-formulario {
  font-size: 10px;
  text-align: center;
  width: 100%;
}
/***/
/*** fix icono vertical menu - cambiar color del icono en estado hover cuanodo  el elemento de menu tiene un fondo ***/
/***/
dt.opened > .sm-arrow, dt.hover > .sm-arrow, dt:hover > .sm-arrow, dt.level1.active > .sm-arrow, dt.level1.opened > .sm-arrow, dt.level1.hover > .sm-arrow, dt.level1:hover > .sm-arrow {
  fill: #8bb523;
}
/***/
/*** GDPR ***/
/***/
/*** movemos la posicion de la etiqueta 'politica de cookies' ***/
.cc-revoke.cc-bottom {
  left: 4em !important;
}
/***/
/*** addthis ***/
/***/
/*** cambiamos la posicion y el tamaño del boton en vista movil para igualrlo con la vista escritorio ***/
.at-expanding-share-button[data-position=bottom-right] {
  bottom: 15px !important;
  right: 15px !important;
}
.at-expanding-share-button.at-expanding-share-button-mobile .at-expanding-share-button-toggle-bg, .at-expanding-share-button.at-expanding-share-button-mobile .at-expanding-share-button-toggle-bg span {
  height: 50px !important;
  line-height: 50px !important;
  width: 50px !important;
}
