@charset "utf-8";
/* CSS Document */
.precio-anterior{
	position: absolute; right: 0px; top: -30px; background: #999; color: #FFFFFF; font-size: 10px; padding: 2px
}
.shape{    
	border-style: solid; border-width: 0 60px 60px 0; height: 0px; width: 0px; z-index: 2; position: absolute; top: 0px; right: 0px;
	-ms-transform:rotate(360deg); /* IE 9 */
	-o-transform: rotate(360deg);  /* Opera 10.5 */
	-webkit-transform:rotate(360deg); /* Safari and Chrome */
	transform:rotate(360deg);
	border-color: rgba(255,255,255,0) #999 rgba(255,255,255,0) rgba(255,255,255,0);
}

.shape-text{
	color:#fff; font-size:12px; font-weight:bold; position:relative; right:-25px; top:2px; white-space: nowrap;
	-ms-transform:rotate(45deg); /* IE 9 */
	-o-transform: rotate(45deg);  /* Opera 10.5 */
	-webkit-transform:rotate(45deg); /* Safari and Chrome */
	transform:rotate(45deg);
}	
@keyframes girar {
  to {
    transform: rotate(360deg);
  }
}

.estrella {
  animation: girar 1s infinite linear;
  color:#FFE500
}
.sizes-wrapper{
	height: 90px;
	overflow: auto;
	font-size: 14px
}
.producto-oferta{
	position: absolute; top: 0px; left: 0px; z-index: 3; padding: 5px; background: rgba(0,0,0,0.76);
}
.producto-oferta-texto{
	color: #fff; font-weight: bold
}
.producto-agotado{
	position: absolute; top: 0px; left: 0px; right: 0px; bottom: 0px; z-index: 2; padding-top: 45%; text-align: center; background: rgba(255,255,255,0.70);
}
@media (max-width: 768px) {
	.producto-agotado{
		padding-top: 30%; 
	}
}
.producto-agotado-texto{
	width: 100%;
	background-color: rgba(177,177,177,1.00);
	color: #FFFFFF;
	padding: 10px
}
.product-description {
  transform: translate3d(0, 0, 0);
  transform-style: preserve-3d;
  perspective: 1000;
  backface-visibility: hidden;
}
.contendor-productos {
  padding-top: 25px;
  padding-bottom: 25px;
}

.contendor-productos img {
  max-width: 100%;
}

.contendor-productos hr {
  border-color: #e5e5e5;
  margin: 15px 0;
}

.secondary-text {
  color: #b6b6b6;
}

.list-inline {
  margin: 0;
}
.list-inline li {
  padding: 0;
}

.card-wrapper {
  position: relative;
  width: 100%;
  height: 250px;
  border: 1px solid #e5e5e5;
  border-bottom-width: 2px;
  overflow: hidden;
  margin-bottom: 30px;
}
.card-wrapper:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: opacity 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.card-wrapper:hover:after {
  opacity: 1;
}
.card-wrapper:hover .image-holder:before {
  opacity: .75;
}
.card-wrapper:hover .image-holder:after {
  opacity: 1;
  transform: translate(-50%, -100%);
}
.card-wrapper:hover .image-holder--original {
  transform: translateY(-15px);
}
.card-wrapper:hover .product-description {
  height: 205px;
}

.card-wrapper:hover .product-description .product-description__title {
  font-family: 'Raleway', sans-serif;
  position: relative;
  white-space: inherit;
  overflow: inherit;
  margin: 0;
  font-size: 16px;
  line-height: inherit;
}

@media (min-width: 768px) {
  .card-wrapper:hover .product-description {
    height: 185px;
  }
}

.image-holder {
  display: block;
  position: relative;
  width: 100%;
  height: 210px;
  background-color: #ffffff;
  z-index: 1;
}
@media (min-width: 768px) {
  .image-holder {
    height: 185px;
  }
}
.image-holder:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #4CAF50;
  background-color: #000;
  opacity: 0;
  z-index: 5;
  transition: opacity 0.6s;
}
.image-holder:after {
  /*content: '+';
  font-family: 'Raleway', sans-serif;
  font-size: 70px;*/
  content: '\f00e';
  font-family: 'FontAwesome';
  font-size: 40px;
  color: #4CAF50;
	color: #999;
  text-align: center;
  position: absolute;
  top: 92.5px;
  left: 50%;
  width: 75px;
  height: 75px;
  line-height: 75px;
  background-color: #ffffff;
  opacity: 0;
  border-radius: 50%;
  z-index: 10;
  transform: translate(-50%, 100%);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease-out;
}
@media (min-width: 768px) {
  .image-holder:after {
    top: 107.5px;
  }
}
.image-holder .image-holder__link {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 15;
}
.image-holder .image-holder--original {
  transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.image-liquid {
  width: 100%;
  height: 185px;
  background-size: cover;
  background-position: center center;
}

.product-description {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 80px;
  padding: 10px 15px;
  overflow: hidden;
  background-color: #fafafa;
  border-top: 1px solid #e5e5e5;
  transition: height 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 2;
}
@media (min-width: 768px) {
  .product-description {
    height: 65px;
  }
}
.product-description p {
  margin: 0 0 5px;
}
.product-description .product-description__title {
  font-family: 'Raleway', sans-serif;
  position: relative;
  white-space: nowrap;
  overflow: hidden;
  margin: 0;
  font-size: 18px;
  line-height: 1.25;
}
.product-description .product-description__title:after {
  content: '';
  width: 60px;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), #fafafa);
}
.product-description .product-description__title a {
  text-decoration: none;
  color: inherit;
}
.product-description .product-description__category {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.product-description .product-description__price {
  color: #4CAF50;
	color: #999;
  text-align: left;
	text-align: right;
  font-weight: bold;
  letter-spacing: 0.06em;
	letter-spacing: 0em;
	padding-left: 2px;
	padding-right: 5px
}
@media (min-width: 768px) {
  .product-description .product-description__price {
    text-align: right;
  }
}
.product-description .sizes-wrapper {
  margin-bottom: 15px;
}
.product-description .color-list {
  font-size: 0;
}
.product-description .color-list__item {
  width: 25px;
  height: 10px;
  position: relative;
  z-index: 1;
  transition: all .2s;
}
.product-description .color-list__item:hover {
  width: 40px;
}
.product-description .color-list__item--red {
  background-color: #F44336;
}
.product-description .color-list__item--blue {
  background-color: #448AFF;
}
.product-description .color-list__item--green {
  background-color: #CDDC39;
}
.product-description .color-list__item--orange {
  background-color: #FF9800;
}
.product-description .color-list__item--purple {
  background-color: #673AB7;
}





/* =============================================================== */
/* PRODUCT DETAILS PAGE
/* =============================================================== */




.transitionfx {
    transition: all 0.25s ease 0s;
    -moz-transition: all 0.25s ease 0s;
    -webkit-transition: all 0.25s ease 0s;
    -o-transition: all 0.25s ease 0s;
    -ms-transition: all 0.25s ease 0s;
}








.categoryFilter {
    padding-bottom: 20px;
    border-bottom: solid 1px #ddd;
    margin-bottom: 20px;
    display: block;
    width: 100%;
    height: 50px;
}

.categoryFilter .minict_wrapper {
    max-width: 180px;
    max-height: 28px;
    height: 28px !important;
}

.categoryFilter .minict_wrapper input {
    height: 28px !important;
    font-size: 12px !important;
}

.minict_wrapper input {
    border: 0 !important;
}

.categoryFilter .minict_wrapper ul li {
    font-size: 12px !important;
}

.nav-tabs > li.active, .nav-tabs > li {
    background: none;
}

.nav-tabs > li > a {
    border: 0;
    border-radius: 0;
}

.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus, .nav-tabs > li:hover > a {
    color: #fff !important;
    border: 0;
    border-radius: 0;
}

/* -------- zoom ------- */

.sp-thumbs {
    text-align: center !important;
}

.sp-large a img {
    width: 100%;
}

.sp-wrap {
    z-index: 10;
    width: 100%;
    background: none !important;
    border: none !important;
    max-width: 100% !important;
}

/*
@media (min-width: 768px) {
    .sp-large {
        max-width: calc(100% - 80px);
    }
    .main-image:not(.main-image-thumb-list) .sp-thumbs {
        position: absolute;
        right: 0 !important;
        text-align: left;
        bottom: 20% !important;
        width: 100px !important;
        z-index: 70;
    }
}
*/
.main-image  .sp-thumbs a:link, .main-image .sp-thumbs a:visited {
    border: 2px solid #EEEEEE;
    display: inline-block;
    margin-bottom: 10px;
    margin-right: 0 !important;
    float: right;
    transition: margin 0.2s ease 0s;
    border: 2px solid #eee;
    display: inline-block;
    float: right;
    width: 70px;
    height: 70px;

}

.sp-thumbs a:hover, .sp-thumbs a:active, .sp-current {
    border: 2px solid #222;
}

.sp-thumbs a:hover {
    margin-right: 4px !important;
}

.sp-thumbs img {
    height: auto !important;
    width: 70px !important;
}

@media (max-width: 767px) {
    .main-image  .sp-thumbs {
        margin-top: 20px;
    }
    .main-image  .sp-thumbs a:link, .main-image .sp-thumbs a:visited {
        display: inline-block;
        width: 80px;
        height: 80px;
        margin-right: 5px !important;
        float: none !important;
    }
}
@media (max-width: 420px) {
    .main-image  .sp-thumbs a:link, .main-image .sp-thumbs a:visited {
        width: 60px;
        height: 60px;

    }
}

.sp-lightbox {
    z-index: 1100 !important;
	z-index: 10000 !important;
}

/***  -------  Product details style 2   ------- ***/
@media all and (min-width:768px) {

    .main-image.style2 .sp-thumbs {
        top: 0 !important;
        width: 19% !important;
    }

    .main-image.style2 .sp-thumbs img {
        height: auto !important;
        max-width: 100%;
        width: 100px !important;
    }

    .main-image.style2 .sp-thumbs a:link, .main-image.style2 .sp-thumbs a:visited {
        float: left !important;
        width: 100%;
        height: 110px;
    }

    .main-image.style2 .sp-large {
        max-width: 80% !important;
        border: 1px solid #DDDDDD;
    }
}

@media (min-width:768px) and (max-width:1200px) {
    .sp-thumbs {
        bottom: auto !important;
        top:0;
    }

    .main-image.style2 .sp-thumbs a:link, .main-image.style2 .sp-thumbs a:visited {
        float: left !important;
        height: 100px;
        width: 100%;
    }
}

/***  -------  Product details style 3   ------- ***/
.main-image.main-image-thumb-list .sp-thumbs {
    margin-top: 20px;
}
@media (min-width: 768px) {
    .main-image.main-image-thumb-list .sp-thumbs a:link, .main-image.main-image-thumb-list .sp-thumbs a:visited {
        display: inline-block;
        width: 100px;
        height: 100px;
        margin-right: 10px !important;
        float: none !important;
    }
}


.product-title {
    font-size: 30px;
    font-weight: 600;
    letter-spacing: 0.25px;
    line-height: 1;
    margin-bottom: 0;
    text-transform: uppercase;
}

.product-price {
    font-size: 28px;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 10px;
}
.product-price label{
	font-size: 18px !important
}

.product-price s{
	color: #ADADAD;
	font-size: 14px;
}

.cantidad-producto{
	margin-bottom: 10px
}
.cantidad-producto input[type="number"]{
	text-align: center !important
}

.price-standard {
    color: #999999;
    font-size: 18px;
    text-decoration: line-through;
}

.product-code {
    font-family: oswald, Helvetica Neue, Arial, sans-serif;
    font-size: 14px;
    font-weight: lighter;
    letter-spacing: 1px;
    margin: 0 0 5px;
    padding: 0;
    text-transform: uppercase;
}

.rating span {
    display: inline-block;
}

.ratingInfo {
    margin-left: 10px;
}

/*------- product-details style 4 ------- */

.zoomThumb {
    text-align: center;
    margin-top: 10px;
}

.zoomThumb a {
    display: inline-block;
    width: 120px;
    margin-bottom: 10px;
    border: 2px solid #eee;
    display: inline-block;
    margin-right: 5px;
}

.zoomThumb a img {
    max-width: 100%;
}

.zoomImg {
    cursor: crosshair;
}

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

.nav-tabs {
    margin-bottom: 20px;
}

.product-tab {
    width: 100%;
    display: inline-block;
    clear: both;
}

.nav-tabs li a {
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    font-weight: 200;
    letter-spacing: 2px;
    margin: 0 0 0 0;
    text-transform: uppercase;
}

.color-details {
    margin-top: 14px;
}

.swatches {
    margin: 0.5em 0;
    padding-left: 0;
}

.swatches li {
    border: 2px solid #FFFFFF;
    display: inline-block;
    margin: 2px 1px;
    vertical-align: top;
    list-style: none;
}

.swatches .selected, .swatches li:hover {
    border: 2px solid #ddd;
}

.swatches a {
    position: relative;
    background-position: center center;
    background-repeat: no-repeat;
    border: 2px solid #FFFFFF;
    box-shadow: 1px 1px 2px #C5C5C5;
    display: block;
    height: 33px;
    text-align: center;
    transition: all 0.25s ease 0s;
    width: 33px;
}

.swatches a img {
    height: 29px;
    width: 29px;
}

.swatches li a:after {
    content: "\f00c";
    font-family: fontawesome;
    font-size: 0;
    font-weight: lighter;
    color: #fff;
    transition: font-size 0.25s ease 0.1s;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);

}

.swatches .selected a:after {
    content: "\f00c";
    font-family: fontawesome;
    font-size: 100%;
    font-weight: lighter;
    color: #fff;
    transition: font-size 0.25s ease 0.1s;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);

}

/***  ------- filterBox ------- ***/

.filterBox {
    display: inline-block;

}

.productFilterLook2 .filterBox {
    display: block;
    float: left;
    margin-right: 0;
    width: 100%;
}

.cart-actions {
    margin-top: 0;
    margin-bottom: 20px;
    width: 100%;
    display: inline-block;
    border-bottom: 1px solid #DDDDDD;
    padding-bottom: 12px;
    clear: both;
}

.cart-actions button, .cart-actions .btn-cart, .cart-actions .wishlist {
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -o-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
    color: #FFFFFF;
    display: block;
    float: left;
    font-family: Oswald, Helvetica Neue, Arial, sans-serif;
    font-size: 18px;
    font-weight: lighter;
    line-height: 1em;
    margin: 0 20px 0 0;
    padding: 14px 20px;
    text-transform: uppercase;
    transition: all 0.25s ease 0s;
    -moz-transition: all 0.25s ease 0s;
    -webkit-transition: all 0.25s ease 0s;
    -o-transition: all 0.25s ease 0s;
    -ms-transition: all 0.25s ease 0s;
}

button.first {
    margin-right: 20px;
    margin-bottom: 10px;
}

.cart-actions .wishlist {
    background: #CCCCCC;
    line-height: 1em;
    text-decoration: none;
    border: solid 2px #CCCCCC;
    text-align: center;
}

.cart-actions .wishlist:hover {
    background: #fff;
    color: #666;
    border: solid 2px #CCCCCC;
}

.incaps {
    display: block;
    float: left;
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    font-weight: normal;
    letter-spacing: 2px;
    margin: 15px 20px 0 0;
    text-transform: uppercase;
}

.incaps i {
    font-size: 20px;
}

.color-in {
    color: #4CC94A;
}

.color-out {
    color: red;
}

.product-share {
    border-top: 1px solid #DDDDDD;
    clear: both;
    display: inline-block;
    margin-top: 20px;
    padding-top: 14px;
    width: 100%;
}

.socialIcon a {
    background: #CCCCCC;
    color: #FFFFFF;
    display: inline-block;
    font-size: 22px;
    padding: 6px 3px;
    margin-right: 10px;
    text-align: center;
    width: 35px;
    transition: all 0.15s ease-in-out 0s;
    -moz-transition: all 0.15s ease-in-out 0s;
    -webkit-transition: all 0.15s ease-in-out 0s;
    -o-transition: all 0.15s ease-in-out 0s;
    -ms-transition: all 0.15s ease-in-out 0s;
}

.socialIcon a:hover {
    color: #fff !important;
}

/***  ------- You may also like ------- ***/

.recommended {
    border-top: solid 2px #ddd;
    margin-top: 20px;
    padding-top: 20px;
}

.recommended h1 {
    text-align: center;
    margin-bottom: 0;
    padding-bottom: 0;
}

#SimilarProductSlider .item {
    padding: 30px 0px 0;
    margin: 10px;
    color: #FFF;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    text-align: center;
}

.recommended .description {
    min-height: 70px;
}

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

.product-image img {
    max-width: 100%;
}

#SimilarProductSlider .product-image img {
    max-height: 200px;
}

/*SKIN*/
.contenido ::selection {
  color: #ffffff;
  background: #FF0000;
}
.contenido ::-moz-selection {
  color: #ffffff;
  background: #FF0000;
}
.contenido .site-color {
  color: #FF0000 !important;
}
.contenido a:hover,
.contenido a:focus,
.contenido a.link,
.contenido .link {
  color: #FF0000;
}
.contenido .search-full,
.contenido .search-input {
  background: #FF0000;
}
.contenido .search-close {
  color: #FF0000;
}
.contenido .searchInputBox .search-btn {
  color: #ffffff;
}
.contenido .navbar-tshop {
  background: #FF0000;
}
.contenido .btn-primary,
.contenido .product:hover .add-fav:hover,
.contenido .product:hover .add-fav.active {
  background-color: #FF0000;
  color: #ffffff;
}
.contenido .btn-primary:hover,
.contenido .btn-primary:focus,
.contenido .pagination > .active > a,
.contenido .pagination > .active > span,
.contenido .pagination > .active > a:hover,
.contenido .pagination > .active > span:hover,
.contenido .pagination > .active > a:focus,
.contenido .pagination > .active > span:focus {
  background-color: #FF0000;
  border-color: #66de97;
  color: #ffffff;
}
.contenido .btn-primary:active,
.contenido .btn-primary.active,
.contenido .open .dropdown-toggle.btn-primary {
  background-color: #66de97;
  border-color: #66de97;
  color: #ffffff;
  background: #FF0000;
}
.contenido .btn-primary:active:hover,
.contenido .btn-primary.active:hover,
.contenido .open > .dropdown-toggle.btn-primary:hover,
.contenido .btn-primary:active:focus,
.contenido .btn-primary.active:focus,
.contenido .open > .dropdown-toggle.btn-primary:focus,
.contenido .btn-primary.focus:active,
.contenido .btn-primary.active.focus,
.contenido .open > .dropdown-toggle.btn-primary.focus {
  background-color: #66de97;
  border-color: #66de97;
  color: #ffffff;
  background: #FF0000;
}
.contenido .navbar-top {
  background: #FF0000;
}
.contenido .navbar-nav > li > a {
  color: #ffffff;
}
.contenido .nav > li.active,
.contenido .nav > li > a:hover,
.contenido .nav > li > a:focus,
.contenido .nav > li:hover > a {
  background: #FF0000;
}
.contenido .nav .open > a,
.contenido .nav .open > a:hover,
.contenido .nav .open > a:focus,
.contenido .cartMenu:hover > a.dropdown-toggle {
  background: #27ae60;
}
.contenido .dropdown-menu {
  border-top: solid #27ae60;
}
.contenido .search-box:hover .form-control {
  background: #FF0000;
}
.contenido .search-box:hover .btn-nobg {
  color: #FF0000;
}
.contenido .mCS-dark-2 > .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: #FF0000 !important;
  background-color: rgba(78, 198, 127, 0.5) !important;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#804ec67f, endColorstr=#804ec67f) !important;
  -ms-filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#804ec67f, endColorstr=#804ec67f) !important;
}
.contenido .action-control a:hover,
.contenido .action-control a.active {
  color: #ffffff;
  background: #27ae60;
}
.contenido .product:hover,
.contenido .featuredImgLook2 .inner:hover {
  border: 1px solid #FF0000;
}
.contenido .subCategoryList .thumbnail:hover {
  border: 1px solid #FF0000;
}
.contenido #pager a.cycle-pager-active {
  background-color: #FF0000 !important;
  background-color: rgba(75, 183, 119, 0.7) !important;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#b34bb777, endColorstr=#b34bb777) !important;
  -ms-filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#b34bb777, endColorstr=#b34bb777) !important;
}
.contenido .pager2 a {
  border: 1px solid #FF0000;
}
.contenido .pager2 a.selected {
  background: #FF0000;
}
.contenido .btn-site,
.contenido .newsLatterBox .btn {
  background: #FF0000;
}
.contenido .btn-discover:hover,
.contenido .btn-site:hover,
.contenido .newsLatterBox .btn:hover {
  background: #27ae60;
}
.contenido .full {
  width: 100%;
}
.contenido .footer a:hover {
  color: #FF0000;
}
.contenido .modal-header {
  background: #FF0000;
}
.contenido .form-control:focus {
  border-color: #FF0000;
}
.contenido .new-product {
  background-color: #FF0000 !important;
  background-color: rgba(78, 198, 127, 0.95) !important;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#f24ec67f, endColorstr=#f24ec67f) !important;
  -ms-filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#f24ec67f, endColorstr=#f24ec67f) !important;
}
.contenido .nav.tree > li.active,
.contenido .nav.tree > li > a:hover,
.contenido .nav.tree > li > a:focus,
.contenido .nav.tree > li:hover > a {
  background: none;
  color: #2a2a2a;
}
.contenido .nav.tree .open-tree > a,
.contenido .nav.tree .open-tree > a:hover,
.contenido .nav.tree .open-tree > a:focus {
  background: none;
  font-weight: bold;
  color: #303030;
}
.contenido .panel-default > .panel-heading {
  border-top: 4px solid #FF0000;
}
.contenido .nav-tabs {
  border-bottom: 3px solid #333;
}
.contenido .nav-tabs > li.active > a,
.contenido .nav-tabs > li.active > a:hover,
.contenido .nav-tabs > li.active > a:focus,
.contenido .nav-tabs > li:hover > a {
  background: #222;
}

.contenido .nav-tabs > li.active > a {
  background: #333;
}
.contenido .nav-tabs > li > a {
	color: #999
}

.contenido .socialIcon a:hover {
  background: #FF0000;
}
.contenido .cart-actions button,
.contenido .cart-actions .wishlist {
  background: none repeat scroll 0 0 #FF0000;
  border: 2px solid #830002;
}
.contenido .cart-actions button:hover {
  background: #ffffff;
  color: #303030;
  border: solid 2px #FF0000;
}
.contenido .sp-thumbs a:hover,
.contenido .sp-thumbs a:active,
.contenido .sp-current,
.contenido .sp-current:visited {
  border: 2px solid #FF0000 !important;
}
.contenido .promo-1 {
  background: none repeat scroll 0 0 #27ae60;
}
.contenido #pager2 span.cycle-pager-active {
  background: #FF0000 !important;
}
.contenido #pager2 span {
  border: 2px solid #FF0000;
}
.contenido .orderStep li.active a {
  background: #FF0000;
}
.contenido .orderStep li.active a:after {
  border-top-color: #FF0000 !important;
}
.contenido .orderStep li a {
  background: #66de97;
}