/*
Colors:
	Body 		: #333
	Headers 	: #2B2D42
	Primary 	: #008dd1
	Dark 		: #15161D ##1E1F29
	Grey 		: #E4E7ED #FBFBFC #8D99AE #B9BABC

Fonts: Montserrat

Table OF Contents
------------------------------------
1 > GENERAL
------ Typography
------ Buttons
------ Inputs
------ Sections
------ Breadcrumb
2 > HEADER
------ Top header
------ Logo
------ Search
------ Cart
3 > NAVIGATION
------ Main nav
------ Responsive Nav
4 > CATEGORY SHOP
5 > HOT DEAL
6 > PRODUCT
------ Product
------ Widget product
------ Product slick
7 > STORE PAGE
------ Aside
------ Store
8 > PRODUCT DETAILS PAGE
------ Product view
------ Product details
------ Product tab
9 > CHECKOUT PAGE
10 > NEWSLETTER
11 > FOOTER
11 > SLICK STYLE
12 > RESPONSIVE
------------------------------------*/

/*=========================================================
  14 -> NUEVOS Y PERSONALIZADOS
===========================================================*/
@import url("https://use.fontawesome.com/releases/v5.13.0/css/all.css")
  /* these styles are for the demo, but are not required for the plugin */
        .zoom {
            display:inline-block;
            position: relative;
        }
        
        /* magnifying glass icon */
        .zoom:after {
            content:'';
            display:block; 
            width:33px; 
            height:33px; 
            position:absolute; 
            top:0;
            right:0;
            background:url(icon.png);
        }

        .zoom img {
            display: block;
        }

        .zoom img::selection { background-color: transparent; }
        .modal-dialog{box-shadow: 0 0 0 50vmax rgba(0, 0, 0, .65);}

/* ==========================================================================
   Chrome Frame prompt
   ========================================================================== */

.chromeframe {
    margin: 0.2em 0;
    background: #ccc;
    color: #000;
    padding: 0.2em 0;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */

   .btn-sm{
    padding:.25rem .5rem!important;
    font-size:.875rem!important;
    line-height:1.5!important;
    border-radius:.2rem!important
}

   .hora_fecha {
    position: fixed;
    width: 260px;
    height:75px;
    top: 70px;
    left: 10px;
    background-color:rgba(0,141,209,.6) !important;
    color: #FFF;
    border: 1px  #4169E1 solid;
    /* border-radius: 50px; */
    text-align: center;
    box-shadow: 2px 2px 3px #999;
    z-index: 999;
}

#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1051;
}
#loader {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color:rgb(0,254,255);/*#3498db*/

    -webkit-animation: spin 2s linear infinite; /* Chrome, Opera 15+, Safari 5+ */
    animation: spin 2s linear infinite; /* Chrome, Firefox 16+, IE 10+, Opera */

    z-index: 1051;
}
#loader_img {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: url(../img/load_image.gif) center no-repeat rgba(255, 255, 255, .95);
    /* background-size: 700px 550px; */
}

    #loader:before {
        content: "";
        position: absolute;
        top: 5px;
        left: 5px;
        right: 5px;
        bottom: 5px;
        border-radius: 50%;
        border: 3px solid transparent;
        border-top-color:rgb(0,69,119); ;/*#e74c3c*/

        -webkit-animation: spin 3s linear infinite; /* Chrome, Opera 15+, Safari 5+ */
        animation: spin 3s linear infinite; /* Chrome, Firefox 16+, IE 10+, Opera */
    }

    #loader:after {
        content: "";
        position: absolute;
        top: 15px;
        left: 15px;
        right: 15px;
        bottom: 15px;
        border-radius: 50%;
        border: 3px solid transparent;
        border-top-color: rgb(0,2,105);;/*#f9c922*/

        -webkit-animation: spin 1.5s linear infinite; /* Chrome, Opera 15+, Safari 5+ */
          animation: spin 1.5s linear infinite; /* Chrome, Firefox 16+, IE 10+, Opera */
    }

    @-webkit-keyframes spin {
        0%   { 
            -webkit-transform: rotate(0deg);  /* Chrome, Opera 15+, Safari 3.1+ */
            -ms-transform: rotate(0deg);  /* IE 9 */
            transform: rotate(0deg);  /* Firefox 16+, IE 10+, Opera */
        }
        100% {
            -webkit-transform: rotate(360deg);  /* Chrome, Opera 15+, Safari 3.1+ */
            -ms-transform: rotate(360deg);  /* IE 9 */
            transform: rotate(360deg);  /* Firefox 16+, IE 10+, Opera */
        }
    }
    @keyframes spin {
        0%   { 
            -webkit-transform: rotate(0deg);  /* Chrome, Opera 15+, Safari 3.1+ */
            -ms-transform: rotate(0deg);  /* IE 9 */
            transform: rotate(0deg);  /* Firefox 16+, IE 10+, Opera */
        }
        100% {
            -webkit-transform: rotate(360deg);  /* Chrome, Opera 15+, Safari 3.1+ */
            -ms-transform: rotate(360deg);  /* IE 9 */
            transform: rotate(360deg);  /* Firefox 16+, IE 10+, Opera */
        }
    }

    #loader-wrapper .loader-section {
        position: fixed;
        top: 0;
        width: 51%;
        height: 100%;
        background: #000;
        z-index: 1000;
        -webkit-transform: translateX(0);  /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: translateX(0);  /* IE 9 */
        transform: translateX(0);  /* Firefox 16+, IE 10+, Opera */
    }

    #loader-wrapper .loader-section.section-left {
        left: 0;
    }

    #loader-wrapper .loader-section.section-right {
        right: 0;
    }

    /* Loaded */
    .loaded #loader-wrapper .loader-section.section-left {
        -webkit-transform: translateX(-100%);  /* Chrome, Opera 15+, Safari 3.1+ */
            -ms-transform: translateX(-100%);  /* IE 9 */
                transform: translateX(-100%);  /* Firefox 16+, IE 10+, Opera */

        -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);  
                transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
    }

    .loaded #loader-wrapper .loader-section.section-right {
        -webkit-transform: translateX(100%);  /* Chrome, Opera 15+, Safari 3.1+ */
            -ms-transform: translateX(100%);  /* IE 9 */
                transform: translateX(100%);  /* Firefox 16+, IE 10+, Opera */

-webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);  
        transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
    }
    
    .loaded #loader {
        opacity: 0;
        -webkit-transition: all 0.3s ease-out;  
                transition: all 0.3s ease-out;
    }
    .loaded #loader-wrapper {
        visibility: hidden;

        -webkit-transform: translateY(-100%);  /* Chrome, Opera 15+, Safari 3.1+ */
            -ms-transform: translateY(-100%);  /* IE 9 */
                transform: translateY(-100%);  /* Firefox 16+, IE 10+, Opera */

        -webkit-transition: all 0.3s 1s ease-out;  
                transition: all 0.3s 1s ease-out;
    }
    
    /* JavaScript Turned Off */
   i .no-js #loader-wrapper {
        display: none;
    }
    .no-js h1 {
        color: #222222;
    }

    #content {
        margin: 0 auto;
        padding-bottom: 50px;
        width: 80%;
        max-width: 978px;
    }  






/* ==========================================================================
   Helper classes
   ========================================================================== */

/*
 * Image replacement
 */

.ir {
    background-color: transparent;
    border: 0;
    overflow: hidden;
    /* IE 6/7 fallback */
    *text-indent: -9999px;
}

.ir:before {
    content: "";
    display: block;
    width: 0;
    height: 150%;
}

/*
 * Hide from both screenreaders and browsers: h5bp.com/u
 */

.hidden {
    display: none !important;
    visibility: hidden;
}

/*
 * Hide only visually, but have it available for screenreaders: h5bp.com/v
 */

.visuallyhidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

/*
 * Extends the .visuallyhidden class to allow the element to be focusable
 * when navigated to via the keyboard: h5bp.com/p
 */

.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto;
}

/*
 * Hide visually and from screenreaders, but maintain layout
 */

.invisible {
    visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */

.clearfix:before,
.clearfix:after {
    content: " "; /* 1 */
    display: table; /* 2 */
}

.clearfix:after {
    clear: both;
}

/*
 * For IE 6/7 only
 * Include this rule to trigger hasLayout and contain floats.
 */

.clearfix {
    *zoom: 1;
}

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */

@media only screen and (min-width: 35em) {
    /* Style adjustments for viewports that meet the condition */
}

@media print,
       (-o-min-device-pixel-ratio: 5/4),
       (-webkit-min-device-pixel-ratio: 1.25),
       (min-resolution: 120dpi) {
    /* Style adjustments for high resolution devices */
}

/* ==========================================================================
   Print styles.
   Inlined to avoid required HTTP connection: h5bp.com/r
   ========================================================================== */

@media print {
    * {
        background: transparent !important;
        color: #000 !important; /* Black prints faster: h5bp.com/s */
        box-shadow: none !important;
        text-shadow: none !important;
    }

    a,
    a:visited {
        text-decoration: underline;
    }

    a[href]:after {
        content: " (" attr(href) ")";
    }

    abbr[title]:after {
        content: " (" attr(title) ")";
    }

    /*
     * Don't show links for images, or javascript/internal links
     */

    .ir a:after,
    a[href^="javascript:"]:after,
    a[href^="#"]:after {
        content: "";
    }

    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }

    thead {
        display: table-header-group; /* h5bp.com/t */
    }

    tr,
    img {
        page-break-inside: avoid;
    }

    img {
        max-width: 100% !important;
    }

    @page {
        margin: 0.5cm;
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }
}

/* 
    Ok so you have made it this far, that means you are very keen to on my code. 
    Anyway I don't really mind it. This is a great way to learn so you actually doing the right thing:)
    Follow me @ihatetomatoes
*/

@font-face {
  font-family: "Poppins-Medium";
  src: url("../fonts/poppins/Poppins-Medium.ttf"); }
h3.titulo_secu {
  text-transform: uppercase;
  font-size: 35px;
  font-weight: bolder;
  font-family: "Poppins-Medium";
  color: #3e91f7;
  letter-spacing: 3px;
  margin-bottom: 22px;
   }
  h2.titulo_principal {
    font-size: 45px;
    font-weight: bolder;
  text-transform: uppercase;
  font-family: "Poppins-Medium";
  color: #3e91f7;
  letter-spacing: 3px;
  margin-bottom: 22px;
  }
  /**************************************/
   #parallelogram {
    width: 60px;
    /* height: 20px; */
    transform: skewX(-30deg);
    background: #FFE8EB;
    border-radius: 5px;
    transform-origin: top;
    /* margin: 10px; */
    display: flex;
    justify-content: center;
    align-items: center;
    }
    .e_oferta{position: absolute;
    left: 100px;
    top: 150px;
    z-index: 2;}/*padding:0px 37%;*/
    #parallelogram > span{color:red;text-align: center; transform: skewX(30deg);}
  

  /***************************************/
  /******************************************/
  .selectionator {
  position: relative;
  border-radius: 2px;
  background-color: #2c3e50;
  color: #95a5a6;
  -webkit-perspective: 800px;
          perspective: 800px;
  width: 150px;/**200px*/
  z-index: 98;
  /*
  &:before {
  content: "";
  background-color: transparent;
  width: 100%;
  height: 2.5em;
  position: absolute;
  background-image: linear-gradient(top, #000, rgba(0,0,0,0));
}
  */
}
.selectionator .search {
  position: relative;
  display: block;
  border: 0px;
  width: 150;/*100%*/
  padding: .8em;
  outline: none;
  color: #FFF;
  background-color: #16a085;
  box-sizing: border-box;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  -webkit-transform-origin: 50% 0%;
          transform-origin: 50% 0%;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  border-radius: 2px;
  z-index: 99;
}
.selectionator .search .overlay {
  width: 100%;
  background-color: #f00;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.35)), to(rgba(0, 0, 0, 0.1)));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.1) 100%);
  opacity: 0;
}
.selectionator .search .shadow {
  position: absolute;
  height: 15px;
  width: 100%;
  left: 0;
  bottom: -15px;
  -webkit-transform-origin: center bottom;
          transform-origin: center bottom;
  -webkit-transform: scale(0.95, 1) translate3d(0, 0px, 0);
          transform: scale(0.95, 1) translate3d(0, 0px, 0);
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.75)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0) 100%);
  opacity: 0;
}
.selectionator .search:before {
  content: "\f078";
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: normal;
  line-height: 1.5;
  float: right;
  vertical-align: middle;
  font-weight:900;
}
.selectionator:hover .search,
.selectionator.opened .search {
  -webkit-transform: rotate3d(1, 0, 0, 60deg);
          transform: rotate3d(1, 0, 0, 60deg);
}
.selectionator:hover .search .overlay,
.selectionator.opened .search .overlay,
.selectionator:hover .search .shadow,
.selectionator.opened .search .shadow {
  opacity: 1;
}
.selectionator:hover .menu,
.selectionator.opened .menu {
  height: 120px;
  opacity: 1;
}
.selectionator .menu {
  overflow: hidden;
  position: absolute;
  width: 150px;/*100%*/
  top: 50%;
  height: 0px;
  border-radius: 0px;
  background-color: #2c3e50;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0;
  border: 1px solid #16a085;
  border-top: none;
}
.selectionator ul.list {
  list-style: none;
  padding: 0px;
  margin: 0px;
  overflow: hidden;
  /*overflow-y: scroll;*/
  height: 0px;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0.75;
  width: 100%;
  height: 100%;
}
.selectionator ul.list > li span.header {
  display: block;
  padding: 6px;
  background-color: #34495e;
  font-weight: 200;
  color: #fff;
}
.selectionator ul.optgroup {
  list-style: none;
  padding: 0px;
  margin: 0px;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none;
}
.selectionator ul.optgroup li:hover {
  background-color: #16a085;
  color: #fff;
}
.selectionator ul.optgroup li input[type="checkbox"] {
  display: none;
  margin: 6px;
}
.selectionator ul.optgroup li input[type="checkbox"]:checked {
  background-color: #1abc9c;
}
.selectionator ul.optgroup li input[type="checkbox"]:checked ~ label {
  background-color: #2980b9;
  color: #fff;
}
/*.selectionator ul.optgroup li input[type="checkbox"]:checked ~ label:before {
  content: "\f14a";
}*/
.selectionator ul.optgroup li label {
  font-weight: 100;
  display: block;
  padding-left: 15px;
  line-height: 2em;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color:white;
}
.selectionator ul.optgroup li label[for="4"]:before {
  content: "\f161";
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  margin-right: 8px;
  vertical-align: middle;
  font-weight: 900;
}
.selectionator ul.optgroup li label[for="5"]:before {
  content: "\f15e";
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  margin-right: 8px;
  vertical-align: middle;
  font-weight: 900;
}
.selectionator ul.optgroup li label[for="6"]:before {
  content: "\f063";
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  margin-right: 8px;
  vertical-align: middle;
  font-weight: 900;
}
.selectionator ul.optgroup li label[for="7"]:before {
  content: "\f062";
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  margin-right: 8px;
  vertical-align: middle;
  font-weight: 900;
}
/********************************************************/
#titulo_ordenar  .selectionator {
  position: relative;
  border-radius: 2px;
  background-color: #fff;
  color: #95a5a6;
  -webkit-perspective: 800px;
          perspective: 800px;
  width: 150px;/*200px*/
  z-index: 98;
  /*
  &:before {
  content: "";
  background-color: transparent;
  width: 100%;
  height: 2.5em;
  position: absolute;
  background-image: linear-gradient(top, #000, rgba(0,0,0,0));
}
  */
}
#titulo_ordenar  .selectionator .search {
  position: relative;
  display: block;
  border: 0px;
  width: 150px;/*100%*/
  padding:5px .8em;
  outline: none;
  color: #16a085;
  background-color: #fff;
  border:1px  #16a085 solid;
  box-sizing: border-box;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  -webkit-transform-origin: 50% 0%;
          transform-origin: 50% 0%;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  border-radius: 2px;
  z-index: 99;
}
#titulo_ordenar  .selectionator .search .overlay {
  width: 100%;
  background-color: #f00;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.35)), to(rgba(0, 0, 0, 0.1)));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.1) 100%);
  opacity: 0;
}
#titulo_ordenar .selectionator .search .shadow {
  position: absolute;
  height: 15px;
  width: 100%;
  left: 0;
  bottom: -15px;
  -webkit-transform-origin: center bottom;
          transform-origin: center bottom;
  -webkit-transform: scale(0.95, 1) translate3d(0, 0px, 0);
          transform: scale(0.95, 1) translate3d(0, 0px, 0);
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.75)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0) 100%);
  opacity: 0;
}
#titulo_ordenar .selectionator .search:before {
  content: "\f078";
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: normal;
  line-height: 1.5;
  float: right;
  vertical-align: middle;
  font-weight:900;
}
#titulo_ordenar .selectionator:hover .search,
#titulo_ordenar .selectionator.opened .search {
  -webkit-transform: rotate3d(1, 0, 0, 60deg);
          transform: rotate3d(1, 0, 0, 60deg);
}
#titulo_ordenar .selectionator:hover .search .overlay,
#titulo_ordenar .selectionator.opened .search .overlay,
#titulo_ordenar .selectionator:hover .search .shadow,
#titulo_ordenar .selectionator.opened .search .shadow {
  opacity: 1;
}
#titulo_ordenar .selectionator:hover .menu,
#titulo_ordenar .selectionator.opened .menu {
  height: 120px;
  opacity: 1;
}
#titulo_ordenar .selectionator .menu {
  overflow: hidden;
  position: absolute;
  width: 150px;/*100%*/
  top: 50%;
  height: 0px;
  border-radius: 0px;
  background-color: #2c3e50;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0;
  border: 1px solid #16a085;
  border-top: none;
}
#titulo_ordenar .selectionator ul.list {
  list-style: none;
  padding: 0px;
  margin: 0px;
  overflow: hidden;
  /*overflow-y: scroll;*/
  height: 0px;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0.75;
  width: 100%;
  height: 100%;
}
#titulo_ordenar .selectionator ul.list > li span.header {
  display: block;
  padding: 6px;
  background-color: #34495e;
  font-weight: 200;
  color: #fff;
}
#titulo_ordenar .selectionator ul.optgroup {
  list-style: none;
  padding: 0px;
  margin: 0px;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none;
}
#titulo_ordenar .selectionator ul.optgroup li:hover {
  background-color: #16a085;
  color: #fff;
}
#titulo_ordenar .selectionator ul.optgroup li input[type="checkbox"] {
  display: none;
  margin: 6px;
}
#titulo_ordenar .selectionator ul.optgroup li input[type="checkbox"]:checked {
  background-color: #1abc9c;
}
#titulo_ordenar .selectionator ul.optgroup li input[type="checkbox"]:checked ~ label {
  background-color: #2980b9;
  color: #fff;
}
/*#titulo_ordenar .selectionator ul.optgroup li input[type="checkbox"]:checked ~ label:before {
  content: "\f14a";
}*/
#titulo_ordenar .selectionator ul.optgroup li label {
  font-weight: 100;
  display: block;
  padding-left: 15px;
  line-height: 2em;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color:white;
}

.selectionator ul.optgroup li label[for="1"]:before{
  content: "\f00c";
  display: inline-block;
  font-family:"Font Awesome 5 Free";
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  margin-right: 8px;
  vertical-align: middle;
  font-weight: 900;
}

.selectionator ul.optgroup li label[for="2"]:before{
  content: "\f109";
  display: inline-block;
  font-family:"Font Awesome 5 Free";
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  margin-right: 8px;
  vertical-align: middle;
  font-weight: 900;
}
 .selectionator ul.optgroup li label[for="3"]:before{
  content: "\f3fa";
  display: inline-block;
  font-family:"Font Awesome 5 Free";
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  margin-right: 8px;
  vertical-align: middle;
  font-weight: 900;
}
  /*******************************************/
  .mensaje_gif {
     font-size: 30px;
}

.mensaje_gif:after {
     content: "...";
     overflow: hidden;
     display: inline-block;
     vertical-align: bottom;
     animation: ellipsis-dot 3s infinite .5s;
     animation-fill-mode: fowards;
     width: 1.25em;
}

@keyframes ellipsis-dot {
     25% {
       content: "";
     }
     50% {
       content: ".";
     }
     75% {
       content: "..";
     }
     100% {
       content: "...";
     }
}
  /*******************************************/
#sch{width: 130px;}
  .displayerror{padding: 100px;text-align: center;}
  .displayerror h2{ color:#008dd1;font-weight: bolder; }
.suc a i:before{content: "\f146";}
.suc a.collapsed i:before{content: "\f0fe";}
.shield{display:inline-block;position:relative;top:-9px;}
  #jslider,.conte_prima{padding-top: 200px;}
#mini_com .cart-list {overflow-y: auto;overflow-x:hidden;height:500px}
  .cat_gamer{background-color:#007bff;border-radius:50px;width:56px;cursor: pointer;}
   .cat_gamer:hover{background-color:blue;}
   .card-header:hover .mb-0 .btn-link{background-color:#007bff;color:white;}
   .card-header:hover{background-color:#007bff;color:white;}
   .card-header:hover a{color:white;}
  .col_gamer span{font-size: 10px;}
  .info_envio{font-size: 20px;color:#008dd1;}
  #frase_ordenar{padding-right: 0px;}
  #titulo_ordenar,#titulo_categoria{padding-left: 10px;}
  .mensaje_gif{top:50%;left:48%;color:white;z-index:1003 ;font-size: 20px;}
  .product-old-price1{font-size: 20px;}
  .modal-header{background-color:#008dd1;}
    .modal-title{color: white;font-size: 20px;}
    .close{color:white;opacity:1;}
  .col_code,.col_pal{padding:0px;border-left:1px #008dd1 solid;}
  .no_pad{padding: 0px;}
  /*#d_cart2 a:hover{color:white;}*/
  .clave_mini{font-size: 10px;}
  .product-img{text-align: center;}
  .j_slider,.j_container{padding-left: 0px;padding-right: 0px;}
#collapseExample > .container {padding-right: 0px;padding-left: 0px;}
.mini_input input{width: 52px;border:solid 2px #d0d0d0;text-align: center;}
.mini_input{width: 60px;}
.msg_adv{color:red;}
.img_carr,.clave_carr  {text-align: center;}
.al_res_del{font-size:2rem;padding-top:10px;}
.al_res_seg{color:#999;font-size:2rem;padding-top:11px;}
.ti_del p{color:rgb(13,174,174)!important;font-size:1rem!important;font-family: "Arial",sans-serif !important;}
.ti_del,.reviews-tab li a, #description p, #information p,#information  .table td, #gridSystemModal h6, #gridModalLabel , .suc a{font-family: "Arial",sans-serif !important;}
#dp { padding-bottom:1.2rem }
#description p,#information p, #information .table td {font-size: 13.5px!important}
.space_col_cont{padding-bottom: 20px;}
.reviews-tab{cursor: pointer;}
.strong_black{font-size:.8rem;color:black;font-family: "Arial",sans-serif !important;}
.strong_blue{font-size:.8rem;color:blue;font-family: "Arial",sans-serif !important;}
.add-to-cart{padding-top:8px;}
.card{cursor:pointer;}
#card-equipo{background-color:#007bff;color: white;}
#card-equipo:hover{background-color:orange;color: white;}
@import url("https://fonts.googleapis.com/css?family=Dax:400,900");

.middle {
  width: 100%;
  text-align: center;
  /* Made by */
}
.middle h1 {
  font-family: "Dax", sans-serif;
  color:#3e91f7;
}
.middle input[type="radio"] {
  display: none;
}
.middle input[type="radio"]:checked + .box {
  /*background-color: #3e91f7;*/
  background-color:#ff7f00;
}
.middle input[type="radio"]:checked + .box span {
  color: white;
  /*transform: translateY(70px);*/
}
.middle input[type="radio"]:checked + .box span:before {
  transform: translateY(0px);
  opacity: 1;
}
.middle .box {
  width: 200px;
  height: 200px;
  background-color: #fff;
  transition: all 250ms ease;
  will-change: transition;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  position: relative;
  font-family: "Dax", sans-serif;
  font-weight: 900;
}
.middle .box:active {
  transform: translateY(10px);
}
.middle .box span {
  position: absolute;
  transform: translate(0, 50px);
  left: 0;
  right: 0;
  top:-35px;
  transition: all 300ms ease;
  font-size: 1.4rem;
  user-select: none;
  color: #3e91f7;
}
.middle .box span:before {
  font-size: 1.2em;
  font-family: FontAwesome;
  display: block;
  transform: translateY(-80px);
  opacity: 0;
  transition: all 300ms ease-in-out;
  font-weight: normal;
  color: white;
}
/*.middle .front-end span:before {
  content: "\f121";
}
.middle .back-end span:before {
  content: "\f0f4";
}*/
.middle p {
  color: #fff;
  font-family: "Dax", sans-serif;
  font-weight: 400;
}
.middle p a {
  text-decoration: underline;
  font-weight: bold;
  color: #fff;
}
.middle p span:after {
  content: "f1ed";
  font-family: FontAwesome;
  color: yellow;
}
/************************************/
ul.redes {
  display: flex;
  position: absolute;
  top: 100px;
  left: 50%;
  transform: translate(-50%, -50%);
}

ul.redes li {
  list-style: none;
}

ul.redes li a {
  width: 80px;
  height: 80px;
  background-color: #fff;
  text-align: center;
  line-height: 80px;
  font-size: 35px;
  margin: 0 10px;
  display: block;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  border: 3px solid #fff;
  z-index: 1;
}

ul.redes li a .icon {
  position: relative;
  color: #262626;
  transition: .5s;
  z-index: 3;
}

ul.redes li a:hover .icon {
  color: #fff;
  transform: rotateY(360deg);
}

ul.redes li a:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f00;
  transition: .5s;
  z-index: 2;
}

ul.redes li a:hover:before {
  top: 0;
}

ul.redes li:nth-child(1) a:before{
  background: #3b5999;
}

ul.redes li:nth-child(2) a:before{
  background: #dd4b39;
}

ul.redes li:nth-child(3) a:before {
  background: #0077b5;
}

ul.redes li:nth-child(4) a:before {
  background: #dd4b39;
}
.space{padding-bottom: 50px;padding-top: 20px;}
.space h3 {text-align: center;}
.space_col p {font-size: 20px;text-align: justify;line-height: 24px;}
.float{
  position:fixed;
  width:56px;
  height:56px;
  top:390px;
  right:3px;
  background-color:rgba(37,211,102,1);
  color:#FFF;
  border-radius:50px;
  text-align:center;
  box-shadow: 2px 2px 3px #999;
  z-index: 999;
}

  .float:focus{
  color:white;
  }

  .float:hover{
  color:rgba(37,211,102,1);
  background-color:white;
  
}
.my-float{
  /*margin-top:8px;
  font-size: 2.8rem;*/
  /*-webkit-transform: scaleX(1);
  transform: scaleX(1);*/

}

.float1{
  position:fixed;
  width:56px;
  height:56px;
  top:700px;
  right:3px;
  background-color:rgba(0,118,254,1);
  color:#FFF;
  border-radius:50px;
  text-align:center;
  box-shadow: 2px 2px 3px #999;
  z-index: 999;
}

  .float1:focus{
  color:white;
  }

  .float1:hover{
  color:rgba(0,118,254,1);;
  background-color:white;
  
}


        .input-icons i { 
            position: absolute; 
        } 
          
        .input-icons { 
            width: 100%; 
            margin-bottom: 10px; 
        } 
          
        .icon { 
          color:#008dd1;
         /*  font-size: 2rem;
           padding: 10px; 
            min-width: 40px; */
        } 
          
        .input-field { 
            width: 100%; 
            padding: 10px; 
            text-align: center; 
        } 
.btn-info{font-family: 'Raleway', sans-serif;}
.fa-trash-alt,.fa-shopping-cart{cursor: pointer;}
.informacion_adicional{padding-bottom: 5px;}
.header-ctn{padding-top: 20px;}
.navbar{background: #15161D;}
div{
  display: block;
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.product_quantity
{
  display: inline-block;
  width: 100px;/*147*/
  height: 41px;/*61*/
  border: solid 2px #d0d0d0;
  overflow: hidden;
  /*padding-left: 48px;*/
  vertical-align: middle;
}
.product_quantity span
{
  position: absolute;
  top: 50%;
  left: 23px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 16px;
  font-weight: 600;
  color: #6c6a74;
}
/*.product_quantity input
{
  display: block;
 /* width: 30px;*/
  /*height: 37px;/*57*/
  /*border: none;
  outline: none;
  
  font-weight: 600;
  
  text-align: left;
  padding-left: 39px;
  line-height: 39px;
  float: left;
}*/
.product_quantity input {padding-left: 19px;color: #1b1b1b;font-size: 16px;font-weight:600 }
.quantity_buttons
{
  position: absolute;
  top: 0;
  right: 1px;
  height: 100%;
  width: 29px;
}
.quantity_inc, 
.quantity_dec
{
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 50%;
  cursor: pointer;
}
.quantity_control i
{
  font-size: 10px;
  color: #232323;
  pointer-events: none;
}
.quantity_control:active
{
  border: solid 1px rgba(14, 140, 228, 0.2);
}
.quantity_inc
{
  padding-bottom: 3px;
  justify-content: flex-end;
}
.quantity_inc i
{
  -webkit-transform: translateY(3px);
  -moz-transform: translateY(3px);
  -ms-transform: translateY(3px);
  -o-transform: translateY(3px);
  transform: translateY(3px);
}
.quantity_dec
{
  padding-top: 3px;
  justify-content: flex-start;
}
.quantity_dec i
{
  -webkit-transform: translateY(-3px);
  -moz-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  -o-transform: translateY(-3px);
  transform: translateY(-3px);
}
.card-title{  font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;/*height: 62px;*/margin-bottom: .35rem!important;}
.page-wrapper{/*padding-top: 200px;*/}
.shop,.shop1{cursor: pointer;}

#collapseExample{
    /*background-color: white;*/
    padding-top: 110px;
    /*padding-top: 160px;*/
    position: fixed;
    top:20px; 
    left: 0;
    width: 100%;
    z-index: 99
  }

.espacio_contenedor1{padding-top: 180px;}

.back-to-top {
    position: fixed;
    display: none;
    background: #007bff;
    color: #fff;
    width: 44px;
    height: 44px;
    text-align: center;
    line-height: 1;
    font-size: 16px;
    border-radius: 50%;
    right: 15px;
    bottom: 15px;
    transition: background 0.5s;
    z-index: 999;
}
.back-to-top i {
    padding-top: 12px;
    color: #fff;
}

.se-pre-con2 {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    background: url(../img/rpc1.gif) center no-repeat rgba(0, 0, 0, .95);
   /* background-size: 750px 550px*/
}
.pdf_loader {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: url(../img/loaderpdf.gif) center no-repeat rgba(248, 248, 243, .95);
    background-size: 800px 600px;
}
.col-lg-15{ height: 560px;}/*610*/
.col-lg-16{ height: 550px;}/*550*/
.col-lg-pe{ height: 450px;}/*550*/
 #paginacion{
  text-align: center;
 }

#paginacion a {
    color: black;
    
    padding: 8px 16px;
     border-radius: 5px;
     font-size: 2rem;
       transition: background-color .3s;
        border: 1px solid #ddd; /* Gray */

}

#paginacion a.active {
    background-color: #4CAF50;
    color: black;
}

#paginacion a:hover:not(.active) {background-color: #ddd; color: black;}
#paginacion a:first-child {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

#paginacion a:last-child {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}
.carta {
     width: 4%;
    /* margin-left: 1%;*/
     float: left;
  }
  .carta2 {
     width: 14%;
     /*margin-left: 1%;*/
     float: left;
  }
  .carta3 {
     width: 18%;
     /*margin-left: 1%;*/
     float: left;
  }
  #uno {
     position: absolute;
     left: 215px;
     top: 50px;
     z-index: 1;
  }

  #dos {
     position: absolute;
     left: 0px;
     top: 0px;
     z-index: 2;
  }

  #tres {
     position: absolute;
    right: 30px;
     top: 60px;
     z-index: 2;
  }


  #cuatro {
     position: absolute;
    right: 0px;
     bottom: 0px;
     z-index: 2;
  }

#carta_normal{height: 80px;}
#carta_oferta{height:60px;}


button span{  text-shadow: 2px 2px 4px #000000;}




/*=========================================================
	01 -> GENERAL
===========================================================*/

/*----------------------------*\
	Typography
\*----------------------------*/

body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  color: #333;
}

h1, h2, h3, h4, h5, h6 {
  color: #2B2D42;
  font-weight: 700;
  margin: 0 0 10px;
}

a {
  color: #2B2D42;
  font-weight: 500;
  -webkit-transition: 0.2s color;
  transition: 0.2s color;
}

a:hover, a:focus {
  color: #008dd1;
  text-decoration: none;
  outline: none;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none
}

/*----------------------------*\
	Buttons
\*----------------------------*/

.primary-btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: #008dd1;
  border: none;
  border-radius: 40px;
  color: #FFF;
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.primary-btn:hover, .primary-btn:focus {
  opacity: 0.9;
  color: #FFF;
}

/*----------------------------*\
	Inputs
\*----------------------------*/

/*-- Text input --*/

.input {
  height: 40px;
  padding: 0px 15px;
  border: 1px solid #E4E7ED;
  background-color: #FFF;
  width: 100%;
}

textarea.input {
  padding: 15px;
  min-height: 90px;
}

/*-- Number input --*/

.input-number {
  position: relative;
}

.input-number input[type="number"]::-webkit-inner-spin-button, .input-number input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.input-number input[type="number"] {
  -moz-appearance: textfield;
  height: 40px;
  width: 100%;
  border: 1px solid #E4E7ED;
  background-color: #FFF;
  padding: 0px 35px 0px 15px;
}

.input-number .qty-up, .input-number .qty-down {
  position: absolute;
  display: block;
  width: 20px;
  height: 20px;
  border: 1px solid #E4E7ED;
  background-color: #FFF;
  text-align: center;
  font-weight: 700;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.input-number .qty-up {
  right: 0;
  top: 0;
  border-bottom: 0px;
}

.input-number .qty-down {
  right: 0;
  bottom: 0;
}

.input-number .qty-up:hover, .input-number .qty-down:hover {
  background-color: #E4E7ED;
  color: #008dd1;
}

/*-- Select input --*/

.input-select {
  padding: 0px 15px;
  background: #FFF;
  border: 1px solid #E4E7ED;
  height: 40px;
}

/*-- checkbox & radio input --*/

.input-radio, .input-checkbox {
  position: relative;
  display: block;
}

.input-radio input[type="radio"]:not(:checked), .input-radio input[type="radio"]:checked, .input-checkbox input[type="checkbox"]:not(:checked), .input-checkbox input[type="checkbox"]:checked {
  position: absolute;
  margin-left: -9999px;
  visibility: hidden;
}

.input-radio label, .input-checkbox label {
  font-weight: 500;
  min-height: 20px;
  padding-left: 20px;
  margin-bottom: 5px;
  cursor: pointer;
}

.input-radio input[type="radio"]+label span, .input-checkbox input[type="checkbox"]+label span {
  position: absolute;
  left: 0px;
  top: 4px;
  width: 14px;
  height: 14px;
  border: 2px solid #E4E7ED;
  background: #FFF;
}

.input-radio input[type="radio"]+label span {
  border-radius: 50%;
}

.input-radio input[type="radio"]+label span:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0);
  -ms-transform: translate(-50%, -50%) scale(0);
  transform: translate(-50%, -50%) scale(0);
  background-color: #FFF;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  opacity: 0;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.input-checkbox input[type="checkbox"]+label span:after {
  content: '✔';
  position: absolute;
  top: -2px;
  left: 1px;
  font-size: 10px;
  color: #FFF;
  opacity: 0;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.input-radio input[type="radio"]:checked+label span, .input-checkbox input[type="checkbox"]:checked+label span {
  background-color: #008dd1;
  border-color: #008dd1;
}

.input-radio input[type="radio"]:checked+label span:after {
  opacity: 1;
  -webkit-transform: translate(-50%, -50%) scale(1);
  -ms-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
}

.input-checkbox input[type="checkbox"]:checked+label span:after {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.input-radio .caption, .input-checkbox .caption {
  margin-top: 5px;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: 0.3s max-height;
  transition: 0.3s max-height;
}

.input-radio input[type="radio"]:checked~.caption, .input-checkbox input[type="checkbox"]:checked~.caption {
  max-height: 800px;
}

/*----------------------------*\
	Section
\*----------------------------*/

/*.section {
  padding-top: 30px;
  padding-bottom: 30px;
}*/
.section{padding: 0px;}

.section-title {
  position: relative;
  margin-bottom: 30px;
  margin-top: 15px;
}

.section-title .title {
  display: inline-block;
  text-transform: uppercase;
  margin: 0px;
}

.section-title .section-nav {
  float: right;
}

.section-title .section-nav .section-tab-nav {
  display: inline-block;
}

.section-tab-nav li {
  display: inline-block;
  margin-right: 15px;
}

.section-tab-nav li:last-child {
  margin-right: 0px;
}

.section-tab-nav li a {
  font-weight: 700;
  color: #8D99AE;
}

.section-tab-nav li a:after {
  content: "";
  display: block;
  width: 0%;
  height: 2px;
  background-color: #008dd1;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.section-tab-nav li.active a {
  color: #008dd1;
}

.section-tab-nav li a:hover:after, .section-tab-nav li a:focus:after, .section-tab-nav li.active a:after {
  width: 100%;
}

.section-title .section-nav .products-slick-nav {
  top: 0px;
  right: 0px;
}

/*----------------------------*\
	Breadcrumb
\*----------------------------*/

#breadcrumb {
  padding: 30px 0px;
  background: #FBFBFC;
  border-bottom: 1px solid #E4E7ED;
  margin-bottom: 30px;
}

#breadcrumb .breadcrumb-header {
  display: inline-block;
  margin-top: 0px;
  margin-bottom: 0px;
  margin-right: 15px;
  text-transform: uppercase;
}

#breadcrumb .breadcrumb-tree {
  display: inline-block;
}

#breadcrumb .breadcrumb-tree li {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}

#breadcrumb .breadcrumb-tree li+li {
  margin-left: 10px;
}

#breadcrumb .breadcrumb-tree li+li:before {
  content: '/';
  display: inline-block;
  color: #8D99AE;
  margin-right: 10px;
}

#breadcrumb .breadcrumb-tree li a {
  color: #8D99AE;
}

#breadcrumb .breadcrumb-tree li a:hover {
  color: #008dd1;
}

/*=========================================================
	02 -> HEADER
===========================================================*/

/*----------------------------*\
	Top header
\*----------------------------*/

#top-header {
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: #1E1F29;
}

.header-links li {
  display: inline-block;
  margin-right: 15px;
  font-size: 12px;
}

.header-links li:last-child {
  margin-right: 0px;
}

.header-links li a {
  color: #FFF;
}

.header-links li a:hover {
  color: #008dd1;
}

.header-links li i {
  color: #008dd1;
  margin-right: 5px;
}

/*----------------------------*\
	Logo
\*----------------------------*/

#header,#header_R {
  padding-top: 15px;
  padding-bottom: 5px;
  background-color: #15161D;
}

.header-logo {
  float: left;
}

.header-logo .logo img {
  display: block;
}

/*----------------------------*\
	Search
\*----------------------------*/

.header-search {
  padding: 15px 0px;
}

.header-search form {
  position: relative;
}

.header-search form .input-select {
  margin-right: -4px;
  border-radius: 40px 0px 0px 40px;
}

.header-search form .input {
  width: calc(100% - 260px);
  margin-right: -4px;
}

.header-search form .search-btn {
  height: 40px;
  width: 100px;
  background: #008dd1;
  color: #FFF;
  font-weight: 700;
  border: none;
  border-radius: 0px 40px 40px 0px;
}
/*********************************
3. sticky header
*********************************/

#header,#header_R
{
  display: block;
  position: fixed;
  top: 40px;
  left: 0;
  width: 100%;
  z-index: 100;
  height: 90px;
    padding-top: 3px;
}
#top-header
{
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  
}

#header.scrolled,#header_R.scrolled 
{
  height: 85px;
   padding-top: 0px;
}
#collapseExample.scrolled 
{padding-top:105px;}

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

.header-ctn {
  /*float: right;
  padding: 15px 0px;*/
}

.header-ctn>div {
  display: inline-block;
}

.header-ctn>div+div {
  margin-left: 15px;
}

.header-ctn>div>a{
  display: block;
  position: relative;
  width: 90px;
  text-align: center;
  color: #FFF;
}

.header-ctn>div>a>i {
  display: block;
  font-size: 18px;
}

.header-ctn>div>a>span {
  font-size: 17px;
}

.header-ctn>div>a>.qty {
  position: absolute;
  right: 15px;
  top: -10px;
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  border-radius: 50%;
  font-size: 10px;
  color: #FFF;
  background-color: #008dd1;
}

.header-ctn .menu-toggle {
  display: none;
}

.cart-dropdown {
  position: absolute;
  width: 350px;/*300*/
  background: #FFF;
  padding: 15px 15px 0px 15px;
  -webkit-box-shadow: 0px 0px 0px 2px #E4E7ED;
box-shadow: 0px 0px 0px 2px #FD7306;
  z-index: 99;
  right: 0;
  /*opacity: 0;
  visibility: hidden;*/
}

/*#d_cart2:hover .cart-dropdown,#d_cart1:hover .cart-dropdown{
    opacity: 1;
    top: 100%;
    visibility: visible;

}*/

.dropdown.open>.cart-dropdown {
  opacity: 1;
  visibility: visible;
}

.cart-dropdown .cart-list {
  max-height: 260px;/*280*/
  overflow-y: scroll;
  margin-bottom: 5px;
}

.cart-dropdown .cart-list .product-widget {
  padding: 0px;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.cart-dropdown .cart-list .product-widget:last-child {
  margin-bottom: 0px;
}

.cart-dropdown .cart-list .product-widget .product-img {
  left: 0px;
  top: 0px;
}

.cart-dropdown .cart-list .product-widget .product-body .product-price {
  color: #2B2D42;
}
.negro{margin-right: -4px;background-color: #1e1f29;}
.negro a,.negro a:hover{color:white;}
.azul{margin-right: -4px;background-color: #008dd1;}
.azul a,.azul a:hover{color:white;}

.cart-dropdown .cart-btns,.cart-btns {
  margin:0px -1px -27px -17px
}

.cart-dropdown .cart-btns>a,.cart-btns>a {
  display: inline-block;
  width: calc(50% - 0px);
  padding: 12px;
  background-color: #008dd1;
  color: #FFF;
  text-align: center;
  font-weight: 700;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.cart-dropdown .cart-btns>a:first-child,.cart-btns>a:first-child {
  margin-right: -4px;
  background-color: #1e1f29;
}

.cart-dropdown .cart-btns>a:hover,.cart-btns>a:hover {
  opacity: 0.9;
}

.cart-dropdown .cart-summary {
  border-top: 1px solid #E4E7ED;
  padding-top:0px;
  padding-bottom:5px;
}

/*=========================================================
	03 -> Navigation
===========================================================*/

  


#navigation {
  background: #FFF;
 /* border-bottom: 2px solid #E4E7ED;*/
 height: 52px;
 /* border-top: 3px solid #008dd1;*/
}

/*----------------------------*\
	Main nav
\*----------------------------*/
a.nav-link:hover,#sch:hover,#d_cart2 a:hover:not(.h_especial),.ensamblador_li:hover{color: #008dd1;}
.dropdown-item:hover {
    color:white;
    text-decoration: none;
    background-color: #008dd1;;
}
.navbar-nav {
  /*width: 100%;*/
  text-align: center;
}
.navbar-nav > li {
  float: none;
  display: inline-block;
}

.navbar-default {background-color:transparent;border-color:transparent;}
.navbar-default .navbar-nav>li>a {color:white;}
.navbar-default .navbar-nav>.active>a, .navbar-default .navbar-nav>.active>a:focus, .navbar-default .navbar-nav>.active>a:hover {
    color: #555;
    background-color: white;
    border-radius: 5px;
}
.navbar-default .navbar-nav>li>a:focus, .navbar-default .navbar-nav>li>a:hover {
    color: #008dd1;
    background-color: transparent;
}
.header-ctn>div>a>span {
    font-size: 17px;
    font-weight: bolder;
}

.navbar{margin-top: 20px;}

.navbar-nav>li>a{color:white;font-size:17px;padding:10px 15px;/*nuevo font-size: 1.7rem*/ }
.nav-item.active{background-color: white;border-radius:5px;}
.nav-item.active a{color:#555;}
.main-nav>li+li {
  margin-left: 30px
}

.main-nav>li>a {
  padding: 20px 0px;
}

.main-nav>li>a:hover, .main-nav>li>a:focus, .main-nav>li.active>a {
  color: #008dd1;
  background-color: transparent;
}

.main-nav>li>a:after {
  content: "";
  display: block;
  width: 0%;
  height: 2px;
  background-color: #008dd1;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.main-nav>li>a:hover:after, .main-nav>li>a:focus:after, .main-nav>li.active>a:after {
  width: 100%;
}

.header-ctn li.nav-toggle {
  display: none;
}

/*----------------------------*\
	responsive nav
\*----------------------------*/

@media only screen and (max-width: 991px) {
 

  .header-ctn .menu-toggle {
    display: inline-block;
  }
  #responsive-nav {
    position: fixed;
    left: 0;
    top: 0;
    background: #15161D;
    height: 100vh;
    max-width: 250px;
    width: 0%;
    overflow: hidden;
    z-index: 22;
    padding-top: 60px;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
  }
  #responsive-nav.active {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
    width: 100%;
  }
  .main-nav {
    margin: 0px;
    float: none;
  }
  .main-nav>li {
    display: block;
    float: none;
  }
  .main-nav>li+li {
    margin-left: 0px;
  }
  .main-nav>li>a {
    padding: 15px;
    color: #FFF;
  }
}

/*=========================================================
	04 -> CATEGORY SHOP
===========================================================*/

.shop,.shop1 {
  position: relative;
  overflow: hidden;
  margin: 15px 0px;
}

.shop:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0px;
  width: 60%;
  /*background: #008dd1;*/
  background: #008dd1;
  opacity: 0.9;
  -webkit-transform: skewX(-45deg);
  -ms-transform: skewX(-45deg);
  transform: skewX(-45deg);
}
.shop1:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0px;
  width: 60%;
  /*background: #008dd1;*/
  background: #041963;
  opacity: 0.9;
  -webkit-transform: skewX(-45deg);
  -ms-transform: skewX(-45deg);
  transform: skewX(-45deg);
}

.shop:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 1px;
  width: 100%;
  /*background: #008dd1;*/
  background: #008dd1;
  opacity: 0.9;
  -webkit-transform: skewX(-45deg) translateX(-100%);
  -ms-transform: skewX(-45deg) translateX(-100%);
  transform: skewX(-45deg) translateX(-100%);
}

.shop1:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 1px;
  width: 100%;
  /*background: #008dd1;*/
  background: #041963;
  opacity: 0.9;
  -webkit-transform: skewX(-45deg) translateX(-100%);
  -ms-transform: skewX(-45deg) translateX(-100%);
  transform: skewX(-45deg) translateX(-100%);
}


.shop .shop-img,.shop1 .shop-img {
  position: relative;
  background-color: #E4E7ED;
  z-index: -1;
}

.shop .shop-img>img,.shop1 .shop-img>img {
  width: 100%;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.shop:hover .shop-img>img,.shop1:hover .shop-img>img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.shop .shop-body,.shop1 .shop-body {
  position: absolute;
  top: 0;
  width: 75%;
  padding: 30px;
  z-index: 10;
}

.shop .shop-body h3,.shop1 .shop-body h3 {
  color: #FFF;
}

.shop .shop-body .cta-btn,.shop1 .shop-body .cta-btn {
  color: #FFF;
  text-transform: uppercase;
}

/*=========================================================
	05 -> HOT DEAL
===========================================================*/

#hot-deal.section {
  padding: 60px 0px;
  margin: 30px 0px 0px;
 /* background-color: white;*/
  background-image: url('../img/hotdeal.webp');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  cursor: pointer;
}

.hot-deal {
  text-align: center;
}

.hot-deal .hot-deal-countdown {
  margin-bottom: 30px;
}

.hot-deal .hot-deal-countdown>li {
  position: relative;
  display: inline-block;
  width: 100px;
  height: 100px;
  background: #008dd1e6;
  text-align: center;
  border-radius: 50%;
  margin: 0px 5px;
}

.hot-deal .hot-deal-countdown>li>div {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.hot-deal .hot-deal-countdown>li>div h3 {
  color: #FFF;
  margin-bottom: 0px;
}

.hot-deal .hot-deal-countdown>li>div span {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  color: #FFF;
}

.hot-deal p {
  text-transform: uppercase;
  font-size: 24px;
}

.hot-deal .cta-btn {
  margin-top: 15px;
}
.hot-deal h2,.hot-deal p{color:white;}
/*=========================================================
	06 -> PRODUCT
===========================================================*/

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

.product {
  position: relative;
  margin: 15px 0px;
  -webkit-box-shadow: 0px 0px 0px 0px #E4E7ED, 0px 0px 0px 1px #E4E7ED;
  box-shadow: 0px 0px 0px 0px #E4E7ED, 0px 0px 0px 1px #E4E7ED;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.pv1:hover {
      -webkit-box-shadow: 0px 0px 6px 0px #e4e7ed, 0px 0px 0px 2px #00feff;
    box-shadow: 0px 0px 6px 0px #e4e7ed, 0px 0px 0px 2px #00feff;
}
.pv2:hover {
-webkit-box-shadow: 0px 0px 6px 0px #E4E7ED, 0px 0px 0px 2px #008dd1;
  box-shadow: 0px 0px 6px 0px #E4E7ED, 0px 0px 0px 2px #008dd1
}

.product .product-img {
  position: relative;
}

.product .product-img>img {
  width: 100%;
}

.product .product-img .product-label {
  position: absolute;
  top: 15px;
  right: 15px;
}

.product .product-img .product-label>span {
  border: 2px solid;
  padding: 2px 10px;
  font-size: 12px;
}

.product .product-img .product-label>span.sale {
  background-color: #FFF;
  border-color: #008dd1;
  color: #008dd1;
}

.product .product-img .product-label>span.new {
  background-color: #008dd1;
  border-color: #008dd1;
  color: #FFF;
}

.product .product-body {
  position: relative;
  padding: 0px 15px;
  background-color: #FFF;
  text-align: center;
  z-index: 20;
}

.product .card-body {
  position: relative;
  padding: 0px 15px;
  background-color: #FFF;
  text-align: center;
  z-index: 20;
}


.product .product-body .product-category, .product .card-body .product-category {
  text-transform: uppercase;
  font-size: 12px;
  color: #8D99AE;
}

.product .product-body .product-name,.product .card-body .product-name {
  text-transform: uppercase;
  font-size: 14px;

}

.product .product-body .product-name>a, .product .card-body .product-name>a {
  font-weight: 700;
}

.product .product-body .product-name>a:hover, .product .product-body .product-name>a:focus,.product .card-body .product-name>a:hover, .product .card-body .product-name>a:focus {
  color: #008dd1;
}

.product .product-body .product-price, .product .card-body .product-price {
  color: #008dd1;
  font-size: 18px;
}

.product .product-body .product-price .product-old-price {
  font-size: 70%;
  font-weight: 400;
  color: #8D99AE;
}

.product .product-body .product-rating {
  position: relative;
  margin: 15px 0px 10px;
  height: 20px;
}

.product .product-body .product-rating>i {
  position: relative;
  width: 14px;
  margin-right: -4px;
  background: #FFF;
  color: #E4E7ED;
  z-index: 10;
}

.product .product-body .product-rating>i.fa-star {
  color: #008dd1;
}

.product .product-body .product-rating:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  height: 1px;
  background-color: #E4E7ED;
}

.product .product-body .product-btns>button,.product .card-body .product-btns>button {
  position: relative;
  width: 40px;
  height: 40px;
  line-height: 0px;/*40*/
  background: transparent;
  border: none;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.product .product-body .product-btns>button:hover,.product .card-body .product-btns>button:hover {
  background-color: #E4E7ED;
  color: #008dd1;
  border-radius: 50%;
}

.product .product-body .product-btns>button .tooltipp,.product .card-body .product-btns>button .tooltipp {
  position: absolute;
  bottom: 100%;
  left: 50%;
  -webkit-transform: translate(-50%, -15px);
  -ms-transform: translate(-50%, -15px);
  transform: translate(-50%, -15px);
  width: 150px;
  padding: 10px;
  font-size: 12px;
  line-height: 10px;
  background: #1e1f29;
  color: #FFF;
  text-transform: uppercase;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.product .product-body .product-btns>button:hover .tooltipp, .product .card-body .product-btns>button:hover .tooltipp {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(-50%, -5px);
  -ms-transform: translate(-50%, -5px);
  transform: translate(-50%, -5px);
}

.product .add-to-cart {
  /*position: absolute;*/
  left: 1px;
  right: 1px;
  bottom: 1px;
  padding: 15px;
  /*background: #1e1f29;*/
  text-align: center;
  -webkit-transform: translateY(0%);
  -ms-transform: translateY(0%);
  transform: translateY(0%);
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
  z-index: 2;
}

.product:hover .add-to-cart {
  /*-webkit-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);*/
}

.product .add-to-cart .add-to-cart-btn,.add-to-cart-btn {
  position: relative;
  border: 2px solid transparent;
  height: 40px;
  padding: 0 30px;
  background-color: #008dd1;
  color: #FFF;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 3px;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
  width: 90%;
}

.product .add-to-cart .add-to-cart-btn>i,.add-to-cart-btn>i {
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  line-height: 38px;
  color: #008dd1;
  opacity: 0;
  visibility: hidden;
}

.product .add-to-cart .add-to-cart-btn:hover,.add-to-cart-btn:hover {
  background-color: #FFF;
  color: #008dd1;
  border-color: #008dd1;
  padding: 0px 30px 0px 50px;
  width: 100%;
}

.product .add-to-cart .add-to-cart-btn:hover>i,.add-to-cart-btn:hover>i {
  opacity: 1;
  visibility: visible;
}

/*----------------------------*\
	Widget product
\*----------------------------*/

.product-widget {
  position: relative;
}

.product-widget+.product-widget {
  margin: 15px 0px;
}

.product-widget .product-img {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 60px;
}

.product-widget .product-img>img {
  width: 100%;
}

.product-widget .product-body {
  padding-left: 75px;
  min-height: 60px;
}

.product-widget .product-body .product-category {
  text-transform: uppercase;
  font-size: 10px;
  color: #8D99AE;
}

.product-widget .product-body .product-name {
  text-transform: uppercase;
  font-size: 12px;
  word-break: break-all;
}

.product-widget .product-body .product-name>a {
  font-weight: 700;
}

.product-widget .product-body .product-name>a:hover, .product-widget .product-body .product-name>a:focus {
  color: #008dd1;
}

.product-widget .product-body .product-price,.product-price {/*modificado*/
  font-size: 14px;
  color: #008dd1;
}

.product-widget .product-body .product-price .product-old-price {
  font-size: 70%;
  font-weight: 400;
  color: #8D99AE;
}

.product-widget .product-body .product-price .qty,.qty {/*modificado*/
  font-weight: 400;
  margin-right: 10px;
}

.product-widget .delete {
  position: absolute;
  top: 0;
  left: 0;
  height: 14px;
  width: 14px;
  text-align: center;
  font-size: 10px;
  padding: 0;
  background: #1e1f29;
  border: none;
  color: #FFF;
}
.product-widget .delete i {
position: absolute;top: 2px;left: 3px;}


/*----------------------------*\
	Products slick
\*----------------------------*/

.products-slick .slick-list {
  padding-bottom: 60px;
  margin-bottom: -60px;
  z-index: 2;
}

.products-slick .product.slick-slide {
  margin: 15px;
}

.products-tabs>.tab-pane {
  display: block;
  height: 0;
  opacity: 0;
  visibility: hidden;
  overflow-y: hidden;
  padding-bottom: 60px;
  margin-bottom: -60px;
}

.products-tabs>.tab-pane.active {
  opacity: 1;
  visibility: visible;
  height: auto;
}

.products-slick-nav {
  position: absolute;
  right: 15px;
  z-index: 10;
}

.products-slick-nav .slick-prev, .products-slick-nav .slick-next {
  position: static;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  width: 20px;
  height: 20px;
  display: inline-block !important;
  margin: 0px 2px;
}

.products-slick-nav .slick-prev:before, .products-slick-nav .slick-next:before {
  font-size: 14px;
}

/*=========================================================
	07 -> PRODUCTS PAGE
===========================================================*/

/*----------------------------*\
	Aside
\*----------------------------*/

.aside+.aside {
  margin-top: 30px;
}

.aside>.aside-title {
  text-transform: uppercase;
  font-size: 18px;
  margin: 15px 0px 30px;
}

/*-- checkbox Filter --*/

.checkbox-filter>div+div {
  margin-top: 10px;
}

.checkbox-filter .input-radio label, .checkbox-filter .input-checkbox label {
  font-size: 12px;
}

.checkbox-filter .input-radio label small, .checkbox-filter .input-checkbox label small {
  color: #8D99AE;
}

/*-- Price Filter --*/

#price-slider {
  margin-bottom: 15px;
}

.noUi-target {
  background-color: #FFF;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 1px solid #E4E7ED;
  border-radius: 0px;
}

.noUi-connect {
  background-color: #008dd1;
}

.noUi-horizontal {
  height: 6px;
}

.noUi-horizontal .noUi-handle {
  width: 12px;
  height: 12px;
  left: -6px;
  top: -4px;
  border: none;
  background: #008dd1;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-radius: 50%;
}

.noUi-handle:before, .noUi-handle:after {
  display: none;
}

.price-filter .input-number {
  display: inline-block;
  width: calc(50% - 7px);
}

/*----------------------------*\
	Store
\*----------------------------*/

.store-filter {
  margin-bottom: 15px;
  margin-top: 15px;
}

/*-- Store Sort --*/

.store-sort {
  display: inline-block;
}

.store-sort label {
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  margin-right: 15px;
}

/*-- Store Grid --*/

.store-grid {
  float: right;
}

.store-grid li {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background-color: #FFF;
  border: 1px solid #E4E7ED;
  text-align: center;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.store-grid li+li {
  margin-left: 5px;
}

.store-grid li:hover {
  background-color: #E4E7ED;
  color: #008dd1;
}

.store-grid li.active {
  background-color: #008dd1;
  border-color: #008dd1;
  color: #FFF;
  cursor: default;
}

.store-grid li a {
  display: block;
}

/*-- Store Pagination --*/

.store-pagination {
  float: right;
}

.store-pagination li {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-color: #FFF;
  border: 1px solid #E4E7ED;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.store-pagination li+li {
  margin-left: 5px;
}

.store-pagination li:hover {
  background-color: #E4E7ED;
  color: #008dd1;
}

.store-pagination li.active {
  background-color: #008dd1;
  border-color: #008dd1;
  color: #FFF;
  font-weight: 500;
  cursor: default;
}

.store-pagination li a {
  display: block;
}

.store-qty {
  margin-right: 30px;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 12px;
}

/*=========================================================
	08 -> PRODUCT DETAILS PAGE
===========================================================*/

/*----------------------------*\
	Product view
\*----------------------------*/

#product-main-img .slick-prev {
  -webkit-transform: translateX(-15px);
  -ms-transform: translateX(-15px);
  transform: translateX(-15px);
  left: 15px;
}

#product-main-img .slick-next {
  -webkit-transform: translateX(15px);
  -ms-transform: translateX(15px);
  transform: translateX(15px);
  right: 15px;
}

#product-main-img .slick-prev, #product-main-img .slick-next {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

#product-main-img:hover .slick-prev, #product-main-img:hover .slick-next {
  -webkit-transform: translateX(0%);
  -ms-transform: translateX(0%);
  transform: translateX(0%);
  opacity: 1;
  visibility: visible;
}

#product-main-img .zoomImg {
  background-color: #FFF;
}

#product-imgs .product-preview {
  margin: 0px 5px;
  border: 1px solid #E4E7ED;
}

#product-imgs .product-preview.slick-current {
  border-color: #008dd1;
}

#product-imgs .slick-prev {
  top: -20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

#product-imgs .slick-next {
  top: calc(100% - 20px);
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

#product-imgs .slick-prev:before {
  content: "\f106";
}

#product-imgs .slick-next:before {
  content: "\f107";
}

.product-preview img {
  width: 100%;
}

/*----------------------------*\
	Product details
\*----------------------------*/

.product-details .product-name {
  text-transform: uppercase;
  font-size: 18px;
}

.product-details .product-rating {
  display: inline-block;
  margin-right: 15px;
}

.product-details .product-rating>i {
  color: #E4E7ED;
}

.product-details .product-rating>i.fa-star {
  color: #008dd1;
}

.product-details .review-link {
  font-size: 12px;
}

.product-details .product-price {
  display: inline-block;
  font-size: 24px;
  margin-top: 10px;
  margin-bottom: 15px;
  color: #008dd1;
}

.product-details .product-price .product-old-price {
  font-size: 70%;
  font-weight: 400;
  color: #8D99AE;
}

.product-details .product-available {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 700;
  margin-left: 30px;
  color: #008dd1;
}

.product-details .product-options {
  margin-top: 30px;
  margin-bottom: 30px;
}

.product-details .product-options label {
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  margin-right: 15px;
  margin-bottom: 0px;
}

.product-details .product-options .input-select {
  width: 90px;
}

.product-details .add-to-cart {
  margin-bottom: 30px;
}

.product-details .add-to-cart .add-to-cart-btn {
  position: relative;
  border: 2px solid transparent;
  height: 40px;
  padding: 0 30px;
  background-color: #008dd1;
  color: #FFF;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 40px;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.product-details .add-to-cart .add-to-cart-btn>i {
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  line-height: 38px;
  color: #008dd1;
  opacity: 0;
  visibility: hidden;
}

.product-details .add-to-cart .add-to-cart-btn:hover {
  background-color: #FFF;
  color: #008dd1;
  border-color: #008dd1;
  padding: 0px 30px 0px 50px;
}

.product-details .add-to-cart .add-to-cart-btn:hover>i {
  opacity: 1;
  visibility: visible;
}

.product-details .add-to-cart .qty-label,.add-to-cart .qty-label {
  display: inline-block;
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  margin-right: 15px;
  margin-bottom: 0px;
}

.product-details .add-to-cart .qty-label .input-number,.add-to-cart .qty-label .input-number {
  width: 90px;
  display: inline-block;
}

.product-details .product-btns li {
  display: inline-block;
  text-transform: uppercase;
  font-size: 12px;
}

.product-details .product-btns li+li {
  margin-left: 15px;
}

.product-details .product-links {
  margin-top: 15px;
}

.product-details .product-links li {
  display: inline-block;
  text-transform: uppercase;
  font-size: 12px;
}

.product-details .product-links li+li {
  margin-left: 10px;
}

/*----------------------------*\
	 Product tab
\*----------------------------*/

#product-tab {
  margin-top: 60px;
}

#product-tab .tab-nav {
  position: relative;
  text-align: center;
  padding: 15px 0px;
  margin-bottom: 30px;
}

#product-tab .tab-nav:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background-color: #E4E7ED;
  z-index: -1;
}

#product-tab .tab-nav li {
  display: inline-block;
  background: #FFF;
  padding: 0px 15px;
}

#product-tab .tab-nav li+li {
  margin-left: 15px;
}

#product-tab .tab-nav li a {
  display: block;
  font-weight: 700;
  color: #8D99AE;
}

#product-tab .tab-nav li.active a {
  color: #008dd1;
}

#product-tab .tab-nav li a:after {
  content: "";
  display: block;
  width: 0%;
  height: 2px;
  background-color: #008dd1;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

#product-tab .tab-nav li a:hover:after, #product-tab .tab-nav li a:focus:after, #product-tab .tab-nav li.active a:after {
  width: 100%;
}

/*-- Rating --*/

.rating-avg {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}

.rating-avg .rating-stars {
  margin-left: 10px;
}

.rating-avg .rating-stars, .rating .rating-stars {
  display: inline-block;
}

.rating-avg .rating-stars>i, .rating .rating-stars>i {
  color: #E4E7ED;
}

.rating-avg .rating-stars>i.fa-star, .rating .rating-stars>i.fa-star {
  color: #008dd1;
}

.rating li {
  margin: 5px 0px;
}

.rating .rating-progress {
  position: relative;
  display: inline-block;
  height: 9px;
  background-color: #E4E7ED;
  width: 120px;
  margin: 0px 10px;
  border-radius: 5px;
}

.rating .rating-progress>div {
  background-color: #008dd1;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  border-radius: 5px;
}

.rating .sum {
  display: inline-block;
  font-size: 12px;
  color: #8D99AE;
}

/*-- Reviews --*/

.reviews li {
  position: relative;
  padding-left: 145px;
  margin-bottom: 30px;
}

.reviews .review-heading {
  position: absolute;
  width: 130px;
  left: 0;
  top: 0;
  height: 70px;
}

.reviews .review-body {
  min-height: 70px;
}

.reviews .review-heading .name {
  margin-bottom: 5px;
  margin-top: 0px;
}

.reviews .review-heading .date {
  color: #8D99AE;
  font-size: 10px;
  margin: 0;
}

.reviews .review-heading .review-rating {
  margin-top: 5px;
}

.reviews .review-heading .review-rating>i {
  color: #E4E7ED;
}

.reviews .review-heading .review-rating>i.fa-star {
  color: #008dd1;
}

.reviews-pagination {
  text-align: center;
}

.reviews-pagination li {
  display: inline-block;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  background-color: #FFF;
  border: 1px solid #E4E7ED;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.reviews-pagination li:hover {
  background-color: #E4E7ED;
  color: #008dd1;
}

.reviews-pagination li.active {
  background-color: #008dd1;
  border-color: #008dd1;
  color: #FFF;
  cursor: default;
}

.reviews-pagination li a {
  display: block;
}

/*-- Review Form --*/

.review-form .input {
  margin-bottom: 15px;
}

.review-form .input-rating {
  margin-bottom: 15px;
}

.review-form .input-rating .stars {
  display: inline-block;
  vertical-align: top;
}

.review-form .input-rating .stars input[type="radio"] {
  display: none;
}

.review-form .input-rating .stars>label {
  float: right;
  cursor: pointer;
  padding: 0px 3px;
  margin: 0px;
}

.review-form .input-rating .stars>label:before {
  content: "\f006";
  font-family: FontAwesome;
  color: #E4E7ED;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.review-form .input-rating .stars>label:hover:before, .review-form .input-rating .stars>label:hover~label:before {
  color: #008dd1;
}

.review-form .input-rating .stars>input:checked label:before, .review-form .input-rating .stars>input:checked~label:before {
  content: "\f005";
  color: #008dd1;
}

/*=========================================================
	09 -> CHECKOUT PAGE
===========================================================*/

.billing-details {
  margin-bottom: 30px;
}

.shiping-details {
  margin-bottom: 30px;
}

.order-details {
  position: relative;
  padding: 0px 30px 30px;
  border-right: 1px solid #E4E7ED;
  border-left: 1px solid #E4E7ED;
  border-bottom: 1px solid #E4E7ED;
}

.order-details:before {
  content: "";
  position: absolute;
  left: -1px;
  right: -1px;
  top: -15px;
  height: 30px;
  border-top: 1px solid #E4E7ED;
  border-left: 1px solid #E4E7ED;
  border-right: 1px solid #E4E7ED;
}

.order-summary {
  margin: 15px 0px;
}

.order-summary .order-col {
  display: table;
  width: 100%;
}

.order-summary .order-col:after {
  content: "";
  display: block;
  clear: both;
}

.order-summary .order-col>div {
  display: table-cell;
  padding: 10px 0px;
}

.order-summary .order-col>div:first-child {
  width: calc(100% - 150px);
}

.order-summary .order-col>div:last-child {
  width: 150px;
  text-align: right;
}

.order-summary .order-col .order-total {
  font-size: 24px;
  color: #008dd1;
}

.order-details .payment-method {
  margin: 30px 0px;
}

.order-details .order-submit {
  display: block;
  margin-top: 30px;
}

/*=========================================================
	10 -> NEWSLETTER
===========================================================*/

#newsletter.section {
  border-top: 2px solid #E4E7ED;
  border-bottom: 3px solid #008dd1;
  margin-top: 30px;
}

.newsletter {
  text-align: center;
}

.newsletter p {
  font-size: 24px;
}

.newsletter form {
  position: relative;
  max-width: 520px;
  margin: 30px auto;
}

.newsletter form:after {
  content: "\f003";
  font-family: FontAwesome;
  position: absolute;
  font-size: 160px;
  color: #E4E7ED;
  top: 15px;
  -webkit-transform: translateY(-50%) rotate(15deg);
  -ms-transform: translateY(-50%) rotate(15deg);
  transform: translateY(-50%) rotate(15deg);
  z-index: -1;
  left: -90px;
}

.newsletter form .input {
  width: calc(100% - 160px);
  margin-right: -4px;
  border-radius: 40px 0px 0px 40px;
}

.newsletter form .newsletter-btn {
  width: 160px;
  height: 40px;
  font-weight: 700;
  background: #008dd1;
  color: #FFF;
  border: none;
  border-radius: 0px 40px 40px 0px;
}

.newsletter .newsletter-follow {
  text-align: center;
}

.newsletter .newsletter-follow li {
  display: inline-block;
  margin-right: 5px;
}

.newsletter .newsletter-follow li:last-child {
  margin-right: 0px;
}

.newsletter .newsletter-follow li a {
  position: relative;
  display: block;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  border: 1px solid #E4E7ED;
  background-color: #FFF;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.newsletter .newsletter-follow li a:hover, .newsletter .newsletter-follow li a:focus {
  background-color: #E4E7ED;
  color: #008dd1;
}

/*=========================================================
	11 -> FOOTER
===========================================================*/

#footer {
  background: #15161D;
  color: #B9BABC;
}

#bottom-footer {
  background: #1E1F29;
}

.footer {
  margin: 30px 0px;
}

.footer .footer-title {
 color: #3e91f7;
  text-transform: uppercase;
  font-size: 18px;
  margin: 0px 0px 30px;
}

.footer-links li+li {
  margin-top: 15px;
}

.footer-links li a {
  color: #B9BABC;
}

.footer-links li i {
  margin-right: 15px;
  color: #008dd1;
  width: 14px;
  text-align: center;
}

.footer-links li a:hover {
  color: #008dd1;
}

.copyright {
  margin-top: 30px;
  display: block;
  font-size: 12px;
}

.footer-payments li {
  display: inline-block;
  margin-right: 5px;
}

.footer-payments li a {
  color: #15161D;
  font-size: 36px;
  display: block;
}

/*=========================================================
	12 -> SLICK STYLE
===========================================================*/

/*----------------------------*\
	Arrows
\*----------------------------*/

.slick-prev, .slick-next {
  width: 40px;
  height: 40px;
  border: 1px solid #E4E7ED;
  background-color: #FFF;
  border-radius: 50%;
  z-index: 22;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.slick-prev:hover, .slick-prev:focus, .slick-next:hover, .slick-next:focus {
  background-color: #008dd1;
  border-color: #008dd1;
}

.slick-prev:before, .slick-next:before {
  font-family: FontAwesome;
  color: #2B2D42;
}

.slick-prev:before {
  content: "\f104";
}

.slick-next:before {
  content: "\f105";
}

.slick-prev:hover:before, .slick-prev:focus:before, .slick-next:hover:before, .slick-next:focus:before {
  color: #FFF;
}

.slick-prev {
  left: -20px;
}

.slick-next {
  right: -20px;
}

/*----------------------------*\
	Dots
\*----------------------------*/

.slick-dots li, .slick-dots li button, .slick-dots li button:before {
  width: 10px;
  height: 10px;
}

.slick-dots li button:before {
  content: "";
  opacity: 1;
  background: #E4E7ED;
  border-radius: 50%;
}

.slick-dots li.slick-active button:before {
  background-color: #008dd1;
}

.custom-dots .slick-dots {
  position: static;
  margin: 15px 0px;
}

/*=========================================================
	13 -> RESPONSIVE
===========================================================*/

@media only screen and (max-width: 1680px) {
#tres{right: 10px;}
#carta_normal{height: 90px;}
#carta_oferta{height:70px;}
}
@media only screen and (max-width: 1366px) {
#tres{ right: 2px;}
#carta_normal{height: 115px;}
#carta_oferta{height:90px;}
}

@media only screen and (max-width: 1201px) {
   .navbar-nav>li>a {
    color: white;
    font-size: 14px;
    padding: 10px 15px;
}
#sch span{font-size: 14px;}
  #top-header .header-links.pull-left {
    float: none !important;
  }
  #top-header .header-links.pull-right {
    float: none !important;
    margin-top: 5px;
  }
  .header-logo {
    float: none;
    text-align: center;
  }
  .header-logo .logo {
    display: inline-block;
  }
  #product-imgs {
    margin-bottom: 60px;
    margin-top: 15px;
  }
  #rating {
    text-align: center;
  }
  #reviews {
    margin-top: 30px;
    margin-bottom: 30px;
  }
  #collapseExample{padding-top: 110px;}
  .header-ctn{padding-top: 0;}
  .navbar{margin-top: 0;}
  .nuevo_input input{font-size:13px;}
}
@media only screen and (max-width: 990px) {
   /*#collapseExample{padding-top: 100px;}*/
}

@media only screen and (max-width: 767px) {
  .section-title .section-nav {
    float: none;
    margin-top: 10px;
  }
  .section-tab-nav li {
    margin-top: 10px;
  }
}

@media only screen and (max-width: 480px) {
  /*[class*='col-xs'] {
    width: 100%;
  }*/
  .al_res_seg{padding-top: 5px;}
  .shield{display:inherit;top: -20px;left: 32px;}
  .nuevo_wrap{margin-right:0px; margin-left:0px;}
  .mensaje_gif{left:38%;top:53%;}
  .icon{font-size:0.6rem;}
  .redes .icon{font-size:2rem;}
  .navbar{margin-top: 0px;}
  #header{top:60px;padding-top: 0px;height: 50px}
    #header.scrolled{top:60px;padding-top: 0px;height: 75px;}
  .store-grid {float: none;margin-top: 10px;}
  .store-pagination {float: none;margin-top: 10px;}
  .espacio_contenedor1{padding-top: 230px;}
  #collapseExample,#collapseExample.scrolled{padding-top: 102px;}
  .dropdown-menu {left: -202px;}
  .my-float {margin-top: 6px;}
  .header-ctn>div+div {margin-left:0px; }
  .space_col{padding-bottom: 40px;}
.space_col p {font-size: 1.2rem;line-height: 25px;}
#paginacion a {padding: 5px;font-size:1rem;}
.product-img img {width: 300px;}/*width: 93px;*/
.single-product-info h3 {/*font-size:14px;*/}
.pro-price,.al_res,.add-to-cart,.imgs-zoom-area,.msg_adv{text-align: center;}
.img_carr,.clave_carr  {text-align: left;}
.al_res_del{text-align: left;}
.strong_black,.strong_blue{font-size:.7rem;}
.al_res_del{font-size:1.7rem;padding-top:10px;}
.al_res_del h6,.al_res_seg h6{font-size:10px;}
.ti_del p{/*font-size:.9rem;*/}
.imgs-zoom-area img {/*width: 350px!important;*/}/**/
.page-wrapper{/*padding-top: 230px;*/}
.add-to-cart{padding: 10px 0 5px ;}
.pro-price{/*font-size: 15px;*/}
.wizard > .content {overflow: scroll !important;}
.cart_items_row{padding: 30px 0;}
.shop .shop-body h3, .shop1 .shop-body h3 {font-size: 15px;}
.shop .shop-body .cta-btn,.shop-body a.cta-btn{font-size: 9px;}
.shop .shop-body, .shop1 .shop-body {
    position: absolute;
    top: 0;
    /* width: 75%; */
    padding: 10px;
    z-index: 10;
}
.j_slider,.j_container{padding-left:15px;padding-right:15px;}
#jssor_1{width: 100%!important;}
.col-lg-15 {height: 550px;}
.nuevo_wrap{margin:0px;}
.col_code,.col_pal{border-left: none;}
.col_code{border-bottom:1px black solid;}
.cart-dropdown{right: -70px;}
#jslider{padding-top: 190px!important;}
.section{padding: 0px;}
#hot-deal.section {padding: 10px; margin:0px;}
#catalogo_productos{margin-right:0px;  margin-left:0px;}
.conte_prima{padding-top: 250px;}
.space{padding-bottom: 0px;}
.wizard > .steps > ul > li {width:125px!important; }
.middle .box {width: 170px;}
.wizard > .content > .body {
    float:none!important; 
     position: absolute!important;
    width: 100%!important; 
    height: 100%!important; 
     padding:0!important; 
}
.product .add-to-cart {
  position: initial;
  left: 0px;
  right: 0px;
  bottom: 0px;
  padding: 0px;
  background:none;
  text-align: center;
  -webkit-transform: translateY(0%);
  -ms-transform: translateY(0%);
  transform: translateY(0%);
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
  z-index: 2;
}

.product:hover .add-to-cart {
  -webkit-transform:none;
  -ms-transform: none;
  transform: none;
}
.cont_com{padding-top: 20px;}
.e_oferta{position: absolute;
    left: 42%;
    top: 200px;
    z-index: 2;}/*padding:0px 37%;*/
}

@media only screen and (max-width: 350px) {
  #sch{width: 110px;}
  .header-ctn>div>a>span{font-size: 14px;}
}

@media only screen and (max-width: 400px) {
  .h-90{ height:98%!important;}
  .product .add-to-cart .add-to-cart-btn, .add-to-cart-btn {width:initial!important}
}

@media only screen and (max-width: 400px) {
.header-links li a, .header-links li b {font-size: 10px;}
#sch {width: 80px;}
#sch span,.header-ctn > div > a > span {font-size: 10px;}
.shop .shop-body h3, .shop1 .shop-body h3 {font-size: 10px!important;}
.shop .shop-body .cta-btn, .shop-body a.cta-btn {font-size:8px!important;line-height: 1!important;}
.nuevo_input input, .nuevo_input select, .nuevo_input button {font-size: 10px!important;}

}