@charset "UTF-8";
@import url("https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css");
@import url("https://use.fontawesome.com/releases/v5.7.2/css/all.css");
@import url("https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.4.0/animate.min.css");
@import url("https://fonts.googleapis.com/css?family=Karla:400,700|Poppins:400,800");
body {
  padding: 0;
  margin: 0;
  background: #f4f4f4;
  font-family: "Poppins", sans-serif; }

.bread {
  padding: 5px 0px;
  background: #0d0f26; }
  .bread h4 {
    margin: 0;
    padding: 0;
    color: #fff;
    text-transform: uppercase; }
    @media (max-width: 991px) {
      .bread h4 {
        text-align: center;
        font-size: 15px;
        font-weight: bold; } }
  .bread .breadcrumb {
    border: none;
    border-radius: 0;
    background: none;
    padding: 0;
    margin: 0; }
    .bread .breadcrumb nav {
      width: 100%; }
    .bread .breadcrumb ol {
      -webkit-box-pack: end;
      -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
      justify-content: flex-end;
      margin: 0;
      padding: 0; }
      @media (max-width: 991px) {
        .bread .breadcrumb ol {
          -webkit-box-pack: center;
          -webkit-justify-content: center;
          -ms-flex-pack: center;
          justify-content: center; } }
      @media (max-width: 991px) {
        .bread .breadcrumb ol li {
          font-size: 12px; } }
      .bread .breadcrumb ol li a {
        color: #fff; }
        @media (max-width: 991px) {
          .bread .breadcrumb ol li a {
            font-size: 12px; } }

/* The overlay effect with black background */
.overlay {
  height: 100%;
  width: 100%;
  display: none;
  position: fixed;
  z-index: 999999;
  top: 0;
  left: 0;
  background: #0d0f26;
  -webkit-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
  overflow: hidden; }

.mostraryocultar {
  display: block;
  -webkit-transition: .5s;
  -o-transition: .5s;
  transition: .5s; }

/* The content */
.overlay-content {
  position: relative;
  top: 46%;
  width: 80%;
  text-align: center;
  margin-top: 30px;
  margin: auto; }

/* Close button */
.overlay .closebtn {
  position: absolute;
  top: 20px;
  right: 45px;
  font-size: 60px;
  cursor: pointer;
  color: white; }

.overlay .closebtn:hover {
  color: #ccc; }

/* Style the search field */
.overlay input[type=text] {
  padding: 15px;
  font-size: 17px;
  border: none;
  float: left;
  width: 80%;
  background: white;
  border-radius: 25px; }

.overlay input[type=text]:hover {
  background: #f1f1f1; }

/* Style the submit button */
.overlay button {
  float: left;
  width: 20%;
  padding: 15px;
  background: #263747;
  font-size: 17px;
  border: none;
  cursor: pointer;
  margin-left: -25px;
  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px; }

.overlay button:hover {
  background: #23313e; }

.button_container {
  position: absolute;
  top: 29%;
  right: 26%;
  height: 27px;
  width: 35px;
  cursor: pointer;
  z-index: 100;
  -webkit-transition: opacity .25s ease;
  -o-transition: opacity .25s ease;
  transition: opacity .25s ease; }
  .button_container:hover {
    opacity: .7; }
  .button_container.active .top {
    -webkit-transform: translateY(11px) translateX(0) rotate(45deg);
    -ms-transform: translateY(11px) translateX(0) rotate(45deg);
    transform: translateY(11px) translateX(0) rotate(45deg);
    background: red; }
  .button_container.active .middle {
    opacity: 0;
    background: red; }
  .button_container.active .bottom {
    -webkit-transform: translateY(-11px) translateX(0) rotate(-45deg);
    -ms-transform: translateY(-11px) translateX(0) rotate(-45deg);
    transform: translateY(-11px) translateX(0) rotate(-45deg);
    background: red; }
  .button_container span {
    background: #fff;
    border: none;
    height: 4px;
    width: 70%;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transition: all .35s ease;
    -o-transition: all .35s ease;
    transition: all .35s ease;
    cursor: pointer; }
    .button_container span:nth-of-type(2) {
      top: 9px; }
    .button_container span:nth-of-type(3) {
      top: 19px; }

#close {
  position: fixed;
  z-index: 4;
  top: 0px;
  right: -5px;
  opacity: 1; }
  #close span {
    color: red;
    font-size: 55px; }

.menufull {
  position: fixed;
  background: #000;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity .35s, visibility .35s, height .35s;
  -o-transition: opacity .35s, visibility .35s, height .35s;
  transition: opacity .35s, visibility .35s, height .35s;
  overflow: hidden;
  z-index: 20; }
  .menufull.open {
    z-index: 3;
    opacity: .9;
    visibility: visible;
    height: 100%; }
    .menufull.open li {
      -webkit-animation: fadeInRight .5s ease forwards;
      animation: fadeInRight .5s ease forwards;
      -webkit-animation-delay: .35s;
      animation-delay: .35s; }
      .menufull.open li:nth-of-type(2) {
        -webkit-animation-delay: .4s;
        animation-delay: .4s; }
      .menufull.open li:nth-of-type(3) {
        -webkit-animation-delay: .45s;
        animation-delay: .45s; }
      .menufull.open li:nth-of-type(4) {
        -webkit-animation-delay: .50s;
        animation-delay: .50s; }
  .menufull nav {
    position: relative;
    height: 70%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 40px;
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    text-align: center; }
  .menufull ul {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    display: inline-block;
    position: relative;
    height: 100%; }
    .menufull ul li {
      display: block;
      height: 15%;
      height: calc(100% / 5);
      min-height: 30px;
      position: relative;
      opacity: 0; }
      .menufull ul li a {
        display: block;
        position: relative;
        color: #FFF;
        text-decoration: none;
        overflow: hidden; }
        .menufull ul li a:hover:after, .menufull ul li a:focus:after, .menufull ul li a:active:after {
          width: 100%; }
        .menufull ul li a:after {
          content: '';
          position: absolute;
          bottom: 0;
          left: 50%;
          width: 0%;
          -webkit-transform: translateX(-50%);
          -ms-transform: translateX(-50%);
          transform: translateX(-50%);
          height: 3px;
          background: #FFF;
          -webkit-transition: .35s;
          -o-transition: .35s;
          transition: .35s; }

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    left: 20%; }
  100% {
    opacity: 1;
    left: 0; } }

@keyframes fadeInRight {
  0% {
    opacity: 0;
    left: 20%; }
  100% {
    opacity: 1;
    left: 0; } }

/* MODAL DETALLE DE PRODUCTO */
#detalle {
  border-radius: 0;
  background: rgba(246, 244, 0, 0.95); }
  #detalle .modal-header {
    background: #121b1a;
    border-radius: 0; }
    #detalle .modal-header .modal-title {
      color: #fff; }
    #detalle .modal-header .close {
      color: #fff;
      text-shadow: 0 0px 0 #121b1a; }
  #detalle .modal-content {
    border-radius: 0;
    border: 0; }

.header {
  z-index: 3;
  padding: 0;
  background: #000; }
  .header .col-logo {
    padding: 0px;
    z-index: 3;
    background: #fff; }
    @media (max-width: 991px) {
      .header .col-logo {
        padding: 0;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        text-align: center;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center; } }
  .header .logo {
    text-align: center;
    /*
		&::after {
			content: '';
			//background: red;
			width: 0;
			height: 0;
			border-style: solid;
			border-width: 113px 0 0 41px;
			border-color: transparent transparent transparent #fff;
			right: -41px;
			position: absolute;
		}
		*/ }
    @media (max-width: 991px) {
      .header .logo {
        padding: 0px; } }
    .header .logo img {
      left: 30px;
      position: absolute;
      height: 103px;
      background: #fff;
      padding: 5px; }
      @media (max-width: 991px) {
        .header .logo img {
          padding: 10px;
          height: 50px;
          width: 100%;
          margin-top: 0px;
          left: 0; } }
    @media (max-width: 991px) {
      .header .logo {
        text-align: center; } }
  .header .col-menu {
    padding: 0;
    background: #000; }
    .header .col-menu nav {
      padding-left: 45px;
      -webkit-align-content: center;
      -ms-flex-line-pack: center;
      align-content: center;
      height: 100%; }
      .header .col-menu nav a {
        color: #fff; }
    @media (max-width: 991px) {
      .header .col-menu {
        display: none; } }

.triangles {
  position: relative !important;
  width: 20px;
  height: 100%;
  background: #fff; }
  @media (max-width: 991px) {
    .triangles {
      display: none !important; } }

.col-triangle {
  position: absolute;
  border-style: solid;
  border-width: 103px 0px 0px 30px;
  border-color: transparent transparent transparent yellow;
  width: 0px;
  height: 0px;
  background: transparent;
  z-index: 1;
  top: 0;
  margin-left: 25px; }
  .col-triangle::before {
    content: '';
    width: 30px;
    height: 103px;
    background: yellow;
    position: absolute;
    bottom: 0px;
    right: 30px; }

.col-triangle2 {
  position: absolute;
  border-style: solid;
  border-width: 103px 0 0 30px;
  border-color: transparent transparent transparent white;
  width: 0px;
  height: 0px;
  background: transparent;
  z-index: 1;
  top: 0;
  margin-left: 20px; }
  .col-triangle2::before {
    content: '';
    width: 30px;
    height: 103px;
    background: white;
    position: absolute;
    bottom: 0px;
    right: 30px; }

.row_bread {
  width: 100%;
  background: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 0; }

.pozociego {
  width: 13%;
  height: 100%;
  background: black; }
  @media (max-width: 991px) {
    .pozociego {
      display: none; } }

.breadcrumb_row {
  background: #fff;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  width: 100%;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px 15px;
  margin: 0; }
  .breadcrumb_row .title {
    padding-left: 15px;
    font-weight: bold; }
    
  
  /* fredhy(11-07-19) */
  .breadcrumb_row .cotizacion {
    background: green;
    padding: 10px;
  }
  .breadcrumb_row .cotizacion p{
    font-size: 16px;
    color: #fff;
  }
  /* End fredhy(11-07-19)*/

  .breadcrumb_row p {
    font-size: 12px;
    margin: 0;
    height: 100%;
    padding: 0;
    text-align: center;
    color: #000; }

.menu-family {
  background: #263747;
  padding: 10px;
  position: -webkit-sticky;
  /* Safari */
  position: sticky;
  top: 0;
  z-index: 2; }
  @media (max-width: 991px) {
    .menu-family {
      padding: 0; } }

.navbar {
  margin: 0; }

.navbar-nav {
  background: #263747;
  padding: 0px; }
  @media (min-width: 992px) {
    .navbar-nav {
      -webkit-box-pack: center;
      -webkit-justify-content: center;
      -ms-flex-pack: center;
      justify-content: center;
      width: 100%; } }
  .navbar-nav .nav-item {
    margin: 0;
    padding: 3px; }
    @media (min-width: 992px) {
      .navbar-nav .nav-item {
        margin: -4px 0px 0px 0px;
        padding: 0; } }
  .navbar-nav .nav-link {
    padding: 0 .5rem;
    color: #fff !important; }
  .navbar-nav .dropdown-menu {
    margin-top: 10px; }

@media (max-width: 991px) {
  .col-search {
    padding: 0px;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s; } }

.input-search {
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  background: red;
  height: 65px;
  -webkit-transition: .5s;
  -o-transition: .5s;
  transition: .5s; }
  @media (max-width: 991px) {
    .input-search {
      height: 0px;
      overflow: hidden; } }
  .input-search input {
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    border: none;
    height: 65px;
    transition: .5s;
    width: 100%;
    border-radius: 0px; }
    .input-search input:focus {
      -webkit-transition: .5s;
      -o-transition: .5s;
      transition: .5s;
      outline: 0 !important;
      -webkit-box-shadow: none;
      box-shadow: none;
      border-bottom: 5px solid #000; }
    .input-search input:hover {
      -webkit-transition: .5s;
      -o-transition: .5s;
      transition: .5s; }

.col-buttons {
  padding: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  width: 100%;
  background: #000; }
  @media (max-width: 991px) {
    .col-buttons {
      -webkit-box-pack: justify !important;
      -webkit-justify-content: space-between !important;
      -ms-flex-pack: justify !important;
      justify-content: space-between !important; } }
  .col-buttons .buttons {
    position: relative; }
    @media (max-width: 991px) {
      .col-buttons .buttons {
        width: 100%; } }
    .col-buttons .buttons img {
      height: 45px;
      padding: 10px; }
      @media (max-width: 991px) {
        .col-buttons .buttons img {
          text-align: center;
          width: 50px;
          height: 50px; } }
    .col-buttons .buttons .category {
      padding: 10px 15px 10px 15px;
      background: #38c9e4;
      cursor: pointer; }
      @media (max-width: 991px) {
        .col-buttons .buttons .category {
          text-align: center;
          padding: 0px; } }
    .col-buttons .buttons .search {
      padding: 10px 33px 10px 32px;
      background: #eeeced; }
      @media (max-width: 991px) {
        .col-buttons .buttons .search {
          text-align: center;
          padding: 0px; } }
      .col-buttons .buttons .search .caja {
        position: absolute;
        left: 0px;
        padding: 0px 0px;
        background: #eeeced;
        -webkit-transition: .5s;
        -o-transition: .5s;
        transition: .5s;
        height: 100%;
        top: 0px;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        overflow: hidden;
        width: 0px; }
        @media (max-width: 991px) {
          .col-buttons .buttons .search .caja {
            display: none; } }
        .col-buttons .buttons .search .caja form {
          width: 90%;
          -webkit-flex-flow: nowrap;
          -ms-flex-flow: nowrap;
          flex-flow: nowrap; }
          .col-buttons .buttons .search .caja form input {
            border: none;
            border-radius: 0; }
            .col-buttons .buttons .search .caja form input:focus {
              outline: 0;
              -webkit-box-shadow: 0 0 0 0 transparent;
              box-shadow: 0 0 0 0 transparent; }
          .col-buttons .buttons .search .caja form button {
            border-radius: 0; }
      .col-buttons .buttons .search a {
        z-index: 5; }
    .col-buttons .buttons .search_link-hover {
      background: #eeeced !important;
      left: -380px !important;
      -webkit-transition: .5s;
      -o-transition: .5s;
      transition: .5s;
      width: 400px !important;
      padding: 0px 27px !important; }
    .col-buttons .buttons .login {
      padding: 10px 15px 10px 15px;
      background: #4caf50; }
      @media (max-width: 991px) {
        .col-buttons .buttons .login {
          text-align: center;
          padding: 0px; } }
    .col-buttons .buttons .cart {
      padding: 10px 15px 10px 15px;
      background: #000; }
      @media (max-width: 991px) {
        .col-buttons .buttons .cart {
          text-align: center;
          padding: 0px; } }
          /* fredhy 20-07-2019 */
          .col-buttons .buttons .cart form {
            white-space: nowrap;
          }
          /* fredhy 20-07-2019 */
      .col-buttons .buttons .cart span {
        font-size: 13px;
        color: #fff; 
        transition: .5s;
      }
        /* mauro */
      .col-buttons .buttons .cart span:hover {
        transition: .5s;
        color: #fff !important; }
        .col-buttons .buttons .cart .username {
        font-size: 10px;
        color: #fff; }
        @media (max-width: 991px) {
          .col-buttons .buttons .cart span {
            display: none; } }
    .col-buttons .buttons .phone {
      padding: 10px 15px 10px 15px;
      background: #e92938; }
      @media (max-width: 991px) {
        .col-buttons .buttons .phone {
          text-align: center;
          padding: 0px; } }
    .col-buttons .buttons .hamburger {
      padding: 10px 15px 10px 15px;
      width: 80px;
      height: 65px;
      padding: 10px;
      background: #000; }
      @media (max-width: 991px) {
        .col-buttons .buttons .hamburger {
          float: right;
          padding: 0px; } }
      @media (max-width: 991px) {
        .col-buttons .buttons .hamburger {
          width: 60px;
          padding-top: 0px;
          height: 50px; } }

.dropdown-menu {
  padding: 0;
  margin-top: 0px;
  border: 0px;
  border-radius: 0; }
  .dropdown-menu .dropdown-item {
    background: #e9e9e9;
    color: #000; }
    .dropdown-menu .dropdown-item:hover {
      background: #0d0f26;
      color: #fff; }

.transition {
  -webkit-transition: .5s;
  -o-transition: .5s;
  transition: .5s; }

.abrir_buscador {
  -webkit-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
  height: 65px; }

@-webkit-keyframes heightInputSearch {
  0% {
    height: 0px; }
  100% {
    height: 65px; } }

@keyframes heightInputSearch {
  0% {
    height: 0px; }
  100% {
    height: 65px; } }

@media (max-width: 991px) {
  .logo {
    display: none; }
  .logo-responsivo {
    display: block; }
    .logo-responsivo img {
      width: 1000px;
      padding: 0px 30px; }
  .col-buttons {
    background: #fff; }
  .movil {
    display: block; }
  .normal {
    display: none; } }

@media (min-width: 992px) {
  .logo {
    display: block; }
  .logo-responsivo {
    display: none; }
  .movil {
    display: none; }
  .normal {
    display: block; } }

.col-search_responsive {
  position: absolute;
  overflow: hidden;
  height: 0px;
  padding: 0;
  -webkit-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
  opacity: 0;
  background: #eeeced;
  z-index: 5; }
  .col-search_responsive form {
    border: 5px solid #fff; }
    .col-search_responsive form input:focus {
      outline: 0;
      -webkit-box-shadow: 0 0 0 0 transparent;
      box-shadow: 0 0 0 0 transparent; }

.active_search {
  -webkit-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
  padding: 1rem !important;
  opacity: 1;
  height: 115px !important; }

.ayr {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: -66px;
  -webkit-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
  padding: 0px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: 65px;
  z-index: 5;
  overflow: hidden; }
  @media (max-width: 991px) {
    .ayr {
      top: -150px; } }
  .ayr .btn-login, .ayr .btn-register {
    width: 100%;
    padding: 20px;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    background: brown;
  }
    @media (max-width: 991px) {
      .ayr .btn-login, .ayr .btn-register {
            padding: 25px 10px; } }
    .ayr .btn-login span, .ayr .btn-register span {
      font-size: 20px; }
      @media (max-width: 991px) {
        .ayr .btn-login span, .ayr .btn-register span {
          display: block !important; } }
    /* .ayr .btn-login:hover, .ayr .btn-register:hover {
      padding: 20px;
      -webkit-transition: .5s;
      -o-transition: .5s;
      transition: .5s; } */
      /* @media (max-width: 991px) {
        .ayr .btn-login:hover, .ayr .btn-register:hover {
              padding: 25px 10px; } } */
  .ayr .btn-login {
    background: #000; }
    .ayr .btn-login span {
      color: #fff200; }
  .ayr .btn-register {
    background: #fff200; }
    .ayr .btn-register span {
      color: #000; }
  .ayr a:hover {
    text-decoration: none !important; }

.ayr_active {
  top: 64px;
  -webkit-transition: .5s;
  -o-transition: .5s;
  transition: .5s; }
  @media (max-width: 991px) {
    .ayr_active {
      top: 50px;
      height: 64px;
    } 
  }

.buy h3 {
  text-align: center;
  border-bottom: 4px solid #101431;
  padding-top: 20px;
  padding-bottom: 5px;
  font-weight: bold;
  color: #101431; }

.buy img {
  padding: 20px; }

.buy h4 {
  text-align: center;
  font-weight: bold;
  padding: 0px 10px;
  color: #19105f; }

.buy p {
  font-size: 12px;
  text-align: center;
  padding: 0px 20px 10px 20px; }

.newsletter {
  background: #efca1a;
  padding: 10px 0px; }
  .newsletter .row {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center; }
  .newsletter h4 {
    vertical-align: middle;
    color: #000;
    margin: 0;
    padding: 0; }
    @media (max-width: 991px) {
      .newsletter h4 {
        text-align: center;
        font-size: 17px;
        padding-bottom: 10px;
        font-weight: 400; } }
  .newsletter input {
    font-size: 12px;
    border-radius: 20px;
    border: none; }
    .newsletter input[type='submit'] {
      border: none;
      margin-left: -40px; }
    .newsletter input:focus {
      -webkit-box-shadow: none;
      box-shadow: none;
      outline: none;
      border: 2px solid #101431; }
    @media (max-width: 991px) {
      .newsletter input {
        width: 50%; } }

@media (max-width: 991px) {
  .footer {
    text-align: center;
    position: sticky;
    bottom: 0 } }

footer {
  position: sticky;
  top: 100%;
  width: 100%;
}
.footer ul {
  padding: 0; }

.footer .top {
  padding: 20px 0px; }
  .footer .top h5 {
    font-size: 15px;
    font-weight: bold;
    color: #000;
    text-transform: uppercase; }
  .footer .top p {
    padding: 0;
    font-size: 13px;
    margin: 0; }
  .footer .top a {
    font-size: 13px;
    color: #000; }
    .footer .top a:hover {
      text-decoration: none; }
  .footer .top li {
    list-style: none; }
    .footer .top li a {
      font-size: 13px;
      color: #000; }
      .footer .top li a:hover {
        text-decoration: none; }
      .footer .top li a::before {
        content: '✔';
        padding-right: 5px;
        color: green;
        font-weight: bold; }
  .footer .top .social {
    text-align: center;
    margin-top: 10px; }
    @media (max-width: 991px) {
      .footer .top .social {
        margin-bottom: 15px; } }
    .footer .top .social a {
      padding: 5px; }
      .footer .top .social a span {
        border-radius: 20px; }
      .footer .top .social a .fa-facebook-f {
        color: #fff;
        padding: 10px 13px;
        background: #1d31b6; }
      .footer .top .social a .fa-instagram {
        padding: 10px;
        background: #ff9600; }
      .footer .top .social a .fa-whatsapp {
        padding: 10px;
        background: #29c759; }

.footer .bottom {
  position: relative;
  padding: 10px 0px;
  background: #101431; }
  .footer .bottom .btn-top {
    background: #101431;
    -webkit-box-shadow: 0px 4px 8px -1px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0px 4px 8px -1px rgba(0, 0, 0, 0.75);
    box-shadow: 0px 4px 8px -1px rgba(0, 0, 0, 0.75);
    padding: 10px 15px;
    position: absolute;
    top: -20px;
    right: 48.6%;
    border-radius: 25px; }
    @media (max-width: 991px) {
      .footer .bottom .btn-top {
        right: 44%; } }
  .footer .bottom img {
    max-width: 150px; }
    @media (max-width: 991px) {
      .footer .bottom img {
        padding-top: 30px;
        padding-bottom: 10px;
        text-align: center; } }
  .footer .bottom a {
    color: #fff; }
    .footer .bottom a:hover {
      text-decoration: none; }
  .footer .bottom p {
    text-align: right;
    color: #fff;
    margin: 0;
    padding: 0;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end; }
    @media (max-width: 991px) {
      .footer .bottom p {
        display: block;
        font-size: 13px;
        padding-top: 0px;
        text-align: center; } }

.carousel-indicators {
  bottom: 70px; }
  @media (max-width: 991px) {
    .carousel-indicators {
      bottom: -55px;
      padding: 10px 0px;
      border-radius: 25px;
      display: none; } }
  .carousel-indicators li {
    background: #fff;
    border-radius: 25px;
    width: 20px;
    height: 0px; }
    @media (max-width: 991px) {
      .carousel-indicators li {
        background: #0d0f26; } }

@media (min-width: 992px) {
  .carousel-control-prev, .carousel-control-next {
    position: absolute;
    opacity: 1;
  }
  .carousel-control-prev {
    right: 0 !important;
    
    /*background: #ffc52b;*/ }
  .carousel-control-next {
    top: 0%;
    /*background: #ffc52b;*/ }
  .carousel-control-next-icon, .carousel-control-prev-icon {
    width: 40px;
    height: 40px; } }

.item {
  padding: 10px;
  background: #fff;
  text-align: center;
  border: 5px solid transparent;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s; }
  @media (max-width: 991px) {
    .item {
      margin: 10px; } }
  .item h5 {
    width: 100%;
    padding-top: 10px; }
  .item h1 {
    font-weight: bold;
    color: #263747; }
  .item:hover {
    cursor: pointer;
    border: 5px solid #263747;
    -webkit-box-shadow: 0px 0px 42px -10px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0px 0px 42px -10px rgba(0, 0, 0, 0.75);
    box-shadow: 0px 0px 42px -10px rgba(0, 0, 0, 0.75);
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s; }
  .item .badge {
    position: absolute;
    right: 0px;
    top: -10px;
    padding: 5px 10px;
    background: red;
    color: #fff;
    border-radius: 25px; }
    @media (max-width: 991px) {
      .item .badge {
        top: 10px;
        right: 25px;
        border-radius: 0;
        font-size: 25px; } }
  .item .badge2 {
    position: absolute;
    right: 0px;
    top: -10px;
    font-size: 10px;
    padding: 5px 10px;
    background: red;
    color: #fff;
    border-radius: 25px; }
    @media (max-width: 991px) {
      .item .badge2 {
        top: 10px;
        right: 25px;
        border-radius: 0;
        font-size: 15px; } }

.item:hover .item .img-fluid {
  background: red;
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both; }

.item2 {
  margin: 10px 0px;
  padding-top: 10px;
  background: #fff;
  text-align: center;
  border: 0;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s; }
  @media (max-width: 991px) {
    .item2 {
      margin: 10px; } }
  .item2 .img-fluid {
    padding: 0px 10px 10px 10px;
    -webkit-transform: scale(0.8, 0.8);
    -ms-transform: scale(0.8, 0.8);
    transform: scale(0.8, 0.8);
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s; }
  .item2 h5 {
    width: 100%;
    padding: 0px;
    background: #eee8e8;
    color: #000;
    height: 50px;
    overflow: hidden;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s; }
  .item2 .price .off {
    position: absolute;
    right: 15px;
    background: #18fa10;
    font-size: 10px;
    padding: 0 2px 0 0;
    font-weight: bold;
    color: #000; }
    .item2 .price .off::before {
      content: '';
      position: absolute;
      margin-left: -19px;
      border-top: 15px solid #18fa10;
      border-left: 19px solid transparent;
      top: 0; }
  .item2 h1 {
    font-weight: bold;
    color: #263747;
    padding: 0;
    margin: 0;
    line-height: 1; }
  .item2:hover {
    cursor: pointer;
    border: 0;
    -webkit-box-shadow: 0px 0px 42px -10px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0px 0px 42px -10px rgba(0, 0, 0, 0.75);
    box-shadow: 0px 0px 42px -10px rgba(0, 0, 0, 0.75);
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s; }
  .item2:hover h5 {
    height: 75px;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s; }
  .item2 .badge {
    position: absolute;
    right: 0px;
    top: -10px;
    padding: 5px 10px;
    background: red;
    color: #fff;
    border-radius: 25px; }
    @media (max-width: 991px) {
      .item2 .badge {
        top: 10px;
        right: 25px;
        border-radius: 0;
        font-size: 25px; } }
  .item2 .badge2 {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 10px;
    padding: 2px 10px;
    background: red;
    color: #fff;
    border-radius: 0px; }
    @media (max-width: 991px) {
      .item2 .badge2 {
        top: 10px;
        right: 25px;
        border-radius: 0;
        font-size: 15px; } }
  .item2 .boton {
    padding: 10px 0px;
    background: #37a94a; }
    .item2 .boton a {
      width: 100%;
      color: #fff;
      font-weight: 500;
      font-size: 15px; }
  .item2:hover .img-fluid {
    -webkit-transform: scale(0.9, 0.9);
    -ms-transform: scale(0.9, 0.9);
    transform: scale(0.9, 0.9);
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s; }

/* nuevo boton WSP */
.chat_wsp {
  font-family: "Poppins", sans-serif;
  -webkit-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
  position: fixed;
  background: url("../img/bgwsp.png");
  bottom: 35px;
  left: 70px;
  width: 350px;
  overflow: hidden;
  /*display: none;*/
  opacity: 0;
  height: 200px;
  -webkit-box-shadow: 2px 0px 6px 0px rgba(0, 0, 0, 0.36);
  -moz-box-shadow: 2px 0px 6px 0px rgba(0, 0, 0, 0.36);
  box-shadow: 2px 0px 6px 0px rgba(0, 0, 0, 0.36);
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: 0% 100%;
  -ms-transform-origin: 0% 100%;
  transform-origin: 0% 100%;
  z-index: 1;
  border-radius: 10px; }

.chat_wsp input {
  border-radius: 19px;
  border: none;
  padding: 5px 15px; }

.chat_wsp input[type="text"] {
  width: 100%; }
  @media (max-width: 991px) {
    .chat_wsp input[type="text"] {
      width: 84%; } }

.open {
  -webkit-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transform-origin: 0% 100%;
  -ms-transform-origin: 0% 100%;
  transform-origin: 0% 100%;
  z-index: 1; }

.chat_wsp input:focus {
  outline: none; }

.chat_wsp .servicios {
  padding-bottom: 10px; }

.chat_wsp .servicios select {
  border-radius: 25px;
  padding: 5px 0px 5px 10px; }

.chat_wsp .servicios select:focus {
  outline: none; }

.chat_wsp .chat_header {
  width: 100%;
  background: #2e8c7d;
  /*border-top-left-radius: 10px;
    border-top-right-radius: 10px;*/
  padding: 12px 0px; }

.chat_wsp .chat_header h4 {
  font-size: 13px;
  font-family: "Poppins", sans-serif;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase; }

.chat_wsp .mensaje {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  position: relative;
  width: 100%; }

.chat_wsp .mensaje .msg {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  padding: 10px 30px;
  width: 90%;
  position: relative;
  margin: 0; }
  .chat_wsp .mensaje .msg .triangle {
    position: absolute;
    left: 15px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 15px 15px 0;
    border-color: transparent #fff transparent transparent; }
  .chat_wsp .mensaje .msg p {
    padding: 0;
    display: block;
    padding: 5px 10px;
    background: #fff;
    border: 0px solid red;
    font-size: 14px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    -webkit-box-shadow: 0px 2px 13px -4px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0px 2px 13px -4px rgba(0, 0, 0, 0.75);
    box-shadow: 0px 2px 13px -4px rgba(0, 0, 0, 0.75); }

.chat_wsp .formulario .boton_send {
  border-radius: 30px;
  background: #007f38;
  padding: 5px 11px 4px 11px;
  margin-left: -47px !important; }

.chat_wsp .formulario .boton_send img {
  width: 15px !important;
  padding: 0px;
  margin-top: -4px;
  margin-right: -3px; }

.new_boton_wsp {
  position: fixed;
  bottom: 20px;
  left: 20px;
  display: block;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  text-align: center;
  color: #f0f0f0;
  margin: 25px auto 0;
  -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.14), 0 4px 8px rgba(0, 0, 0, 0.28);
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.14), 0 4px 8px rgba(0, 0, 0, 0.28);
  cursor: pointer;
  -webkit-transition: all .1s ease-out;
  -o-transition: all .1s ease-out;
  transition: all .1s ease-out;
  z-index: 2;
  overflow: hidden;
  background: #25d366; }

.new_boton_wsp i {
  font-size: 2.5rem !important;
  line-height: 55px;
  -webkit-transition: all .2s ease-out;
  -webkit-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  display: inline-block;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  color: #fff; }

@media (max-width: 992px) {
  .chat_wsp {
    bottom: 15px;
    left: 5%;
    right: 5%;
    width: 90%;
    height: 245px; }
  .chat_wsp .formulario input {
    margin: 0px; }
  .chat_wsp .formulario .boton_send {
    border-radius: 30px;
    background: #007f38;
    padding: 14px 0px;
    width: 50%;
    margin-top: -1px; }
  .chat_wsp .servicios {
    padding: 8px 18px; }
  .chat_wsp .formulario {
    padding: 0px 18px; } }

/* 19 de marzo del 2019 */
.chat_wsp .formulario {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0px 11px; }

.title {
  margin-top: 30px;
  margin-bottom: 20px; }
  .title h3 {
    color: #000;
    font-size: 30px;
    font-weight: bold;
    border-bottom: 4px solid #04061d; }
    .title h3::before {
      content: url("../img/discount.svg");
      width: 30px;
      display: inline-block;
      padding-bottom: 5px; }

.offer {
  padding: 20px 0px; }

.ad .row {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center; }

.about h2 {
  text-transform: uppercase;
  font-weight: bold; }

.about p {
  line-height: 1.5;
  text-align: justify; }

.products {
  padding: 9px 0px 20px 0px; }
  .products .table-list {
    font-size: 13px; }
    .products .table-list table tr {
      border: none; }
    .products .table-list thead {
      background: #ffe000;
      border: none;
      color: #000; }
    .products .table-list .td-circle {
      display: table-cell;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
      -ms-flex-pack: center;
      justify-content: center;
      text-align: center; }
    .products .table-list .circle {
      width: 10px;
      padding: 10px;
      border-radius: 25px;
      display: inline-block; }
    .products .table-list .available {
      background: green; }
    .products .table-list .without_stock {
      background: red; }
    .products .table-list th {
      text-align: center; }
    .products .table-list img {
      width: 45px; }
    .products .table-list p {
      height: 100%;
      padding: 0;
      vertical-align: middle;
      margin: 0; }
      .products .table-list p a {
        color: #000; }
      @media (max-width: 991px) {
        .products .table-list p {
          font-size: 10px;
          overflow: hidden;
          white-space: nowrap;
          -o-text-overflow: ellipsis;
          text-overflow: ellipsis;
          width: 50px;
          -webkit-transition: .5s;
          -o-transition: .5s;
          transition: .5s; } }
    .products .table-list .td-circle, .products .table-list th, .products .table-list td {
      vertical-align: middle;
      text-align: center; }
    .products .table-list td {
      padding: 0; }
      @media (max-width: 991px) {
        .products .table-list td {
          padding: 0.5rem 0.2rem !important; } }
    .products .table-list .btn-cart {
      font-size: 30px; }
      @media (max-width: 991px) {
        .products .table-list .btn-cart {
          font-size: 15px; } }
      .products .table-list .btn-cart .fa {
        font-size: 18px; }
      .products .table-list .btn-cart .icon-1 {
        color: #28a745; }
      .products .table-list .btn-cart .icon-2 {
        color: #ffc107; }
      .products .table-list .btn-cart .icon-3 {
        color: #dc3545; }
    .products .table-list .desplegar {
      font-size: 13px;
      color: #000;
      padding: 0px;
      cursor: pointer; }
      @media (min-width: 992px) {
        .products .table-list .desplegar {
          display: none; } }
    .products .table-list .desplegado {
      width: 100%;
      -webkit-transition: .5s;
      -o-transition: .5s;
      transition: .5s;
      padding-right: 15px; }
    @media (max-width: 991px) {
      .products .table-list .td-descri {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center; } }
  .products .filtros {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0;
    padding-bottom: 10px; }
    @media (max-width: 991px) {
      .products .filtros .form {
        margin-top: 0px; } }
    @media (max-width: 991px) {
      .products .filtros .form-group label {
        display: none; } }
    @media (max-width: 991px) {
      .products .filtros .form-group {
        width: 100% !important; } }
    .products .filtros .form-group button span.normal {
      display: block; }
    .products .filtros .form-group button span.responsivo {
      display: none; }
    @media (max-width: 991px) {
      .products .filtros .form-group button span.normal {
        display: none; }
      .products .filtros .form-group button span.responsivo {
        display: block;
        padding: 10%; } }
    .products .filtros p {
      margin: 0;
      font-size: 13px; }
      @media (max-width: 991px) {
        .products .filtros p {
          font-size: 10px;
          padding-bottom: 10px; }
          .products .filtros p span {
            font-size: 10px; } }
    @media (max-width: 991px) {
      .products .filtros {
        display: block;
        text-align: center; } }
    .products .filtros form {
        display: inline-flex!important;
        flex-flow: inherit;
      -webkit-box-pack: start;
      -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
      justify-content: flex-start; }
      @media (max-width: 991px) {
        .products .filtros form {
          -webkit-box-pack: center;
          -webkit-justify-content: center;
          -ms-flex-pack: center;
          justify-content: center; } }
    .products .filtros label {
      padding-right: 10px;
      margin-bottom: 0px;
      display: flex;
      align-items: center;
    }
    
    .products .filtros select {
      padding: 0px;
      border: none;
      margin-right: 15px; }
      @media (max-width: 991px) {
        .products .filtros select {
          font-size: 9px; } }
    @media (max-width: 991px) {
      .products .filtros button {
        width: 100%;
        padding: 0;
        margin-left: 5px; } }
    @media (max-width: 991px) {
      .products .filtros .form-group {
        width: 100%;
        margin-bottom: 0px; } }
  @media (max-width: 991px) {
    .products .td-image {
      display: none; } }
  @media (max-width: 991px) {
    .products th {
      font-size: 9px; } }

.pagination {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center; }

.details {
  /*
	.hover { 
		background: red; 
		width: 100%; 
		padding: 50px; 
		//position: absolute;
		top: 0;
		left: 0;
	}
	
	.img-thumb:hover {
		background: rgba(16,20,49, 1);
		opacity: .5;
	}
	*/ }
  @media (max-width: 991px) {
    .details {
      text-align: center; } }
  .details .titleWithLine h2 {
    line-height: 1;
    padding: 0;
    font-weight: bold;
    text-transform: uppercase;
    color: #000; }
    @media (max-width: 991px) {
      .details .titleWithLine h2 {
        font-size: 20px;
        padding-top: 10px; } }
  @media (max-width: 991px) {
    .details .smalldetails {
      font-size: 10px; } }
  .details .extra-data p {
    font-size: 11px;
    padding-top: 10px;
    margin: 0; }
    .details .extra-data p span {
      font-weight: bold;
      color: red; }
  .details .extra-data img {
    width: 30%; }
  .details .price2 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-item: center;
    vertical-align: middle;
    -webkit-box-pack: normal;
    -webkit-justify-content: normal;
    -ms-flex-pack: normal;
    justify-content: normal;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
    padding-top: 15px;
    padding-bottom: 15px; }
    @media (max-width: 991px) {
      .details .price2 {
        display: inline-block; } }
    .details .price2 .bill {
      font-size: 30px;
      line-height: .5;
      font-weight: bold;
      color: #e3292c; }
    .details .price2 .text {
      vertical-align: middle;
      -webkit-align-self: center;
      -ms-flex-item-align: center;
      align-self: center;
      padding-left: 5px;
      font-size: 12px;
      position: relative; }
      @media (max-width: 991px) {
        .details .price2 .text {
          position: absolute;
          right: 10px;
          font-size: 8px;
          background: #17f911;
          color: #000;
          font-weight: bold;
          padding: 3px 0px;
          width: 70px;
          margin-top: -5px;
          display: inline-block;
          line-height: 1; } }
  .details .list-price2 {
    padding-bottom: 10px; }
    .details .list-price2 span {
      font-size: 10px; }
  @media (max-width: 991px) {
    .details .buttons .btn {
      width: 100%; } }
  .details .buttons .btn-success {
    background: #247185;
    
    color: #fff;
    text-transform: uppercase;
    border: none;
    font-size: 12px;
   
    margin-bottom: 10px; }
    .details .buttons .btn-success:hover {
      background: #1e6071; }
  .details .buttons .btn-danger {
    background: #238435;
    
    color: #fff;
    text-transform: uppercase;
    border: none;
    font-size: 12px;
   }
    .details .buttons .btn-danger:hover {
      background: #238435; }
  .details .share {
    font-size: 13px; }
    .details .share span {
      padding: 0px 3px; }
    .details .share .fa-facebook {
      color: blue; }
    .details .share .fa-twitter {
      color: cyan; }
    .details .share .fa-whatsapp {
      color: green; }

.cart table, .cart td {
  border: none; }

.cart th {
  text-align: center;
  border: none;
  border-bottom: 3px solid #00508d; }

.cart td {
  background: #fff; }

@media (min-width: 992px) {
  .cart .small-only {
    display: none; }
  .cart .large-only {
    display: block; } }

@media (max-width: 991px) {
  .cart .small-only {
    display: block; }
  .cart .large-only {
    display: none; } }

.info-adicional {
  margin: 0px !important;
  padding: 0; }
  .info-adicional li {
    margin: 0;
    padding: 0;
    list-style: none; }
  .info-adicional a, .info-adicional li {
    color: #000; }
  .info-adicional a {
    font-weight: bold;
    padding-left: 10px; }


/* fredhy 18-06-2019 (añadí un boton de cerrar sesión en sec)*/
.responsive__close { display: none; }
@media (max-width: 991px) {
  .responsive__close {
      display: block;
      position: absolute;
      right: 7px;
      color: red;
  }
}

/* fredhy 11-07-2019 */
html,body {
  height: 100%!important;
}
main {
  /*padding-bottom: 0px;*/
}
@media (max-width: 991px) {
  main {
    padding-bottom: 80px;
  }
}

/*update fredhy (20-07-2019)*/
.group-buscar {
  display: inline-flex;
  margin-bottom: 0px!important;
}
.col-button-filter {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: center;
}
@media (max-width: 991px) {
  .row-de-filtros {
    display: block!important;
  }
  .col-button-filter {
    width: 100%;
    display: block;
  }
  .col-button-filter button {
    width: 100%;
    margin-bottom: 15px;
  }

}