/*------------------------------------------------------------------
Project:  
Version:  
Last change:  
Assigned to:  Le Xuan Bach
Primary use:  Company
-------------------------------------------------------------------*/
/*------------------------------------------------------------------
[LAYOUT]

* body
  + Header / header
  + Page Content / .page-content .name-page
        + Section Layouts / section .name-section
        ...
  + Footer / footer

-------------------------------------------------------------------*/
/*------------------------------------------------------------------
[COLOR CODES]

# Text Color      :  
# Primary Color 01:  
# Primary Color 02:   
# Primary Color 03:  

------------------------------------------------------------------*/
/*------------------------------------------------------------------
[TYPOGRAPHY]

Body            : 16px/1.6 '', Arial, sans-serif;
Title           : 18px/1.6 '', Arial, sans-serif;
Paragrap        : 18px/1.6 '', Arial, sans-serif;
Input, textarea : 14px/1.6 '', Arial, sans-serif;
-------------------------------------------------------------------*/



/*[ FONT ]
///////////////////////////////////////////////////////////
*/

@font-face {
  font-family: Montserrat-Regular;
  src: url('../fonts/montserrat/Montserrat-Regular.ttf');
  font-display:swap; 
}

@font-face {
  font-family: Montserrat-Medium;
  src: url('../fonts/montserrat/Montserrat-Medium.ttf');
  font-display:swap; 
}

@font-face {
  font-family: Montserrat-Bold;
  src: url('../fonts/montserrat/Montserrat-Bold.ttf');
  font-display:swap; 
}

@font-face {
  font-family: Montserrat-Italic;
  src: url('../fonts/montserrat/Montserrat-Italic.ttf');
  font-display:swap; 
}

@font-face {
  font-family: Montserrat-Black;
  src: url('../fonts/montserrat/Montserrat-Black.ttf');
  font-display:swap; 
}

@font-face {
  font-family: Linearicons;
  src: url('../fonts/Linearicons-Free-v1.0.0/WebFont/Linearicons-Free.ttf');
  font-display:swap; 
}

@font-face {
  font-family: Poppins-Bold;
  src: url('../fonts/poppins/Poppins-Bold.ttf');
  font-display:swap; 
}

@font-face {
  font-family: Poppins-Black;
  src: url('../fonts/poppins/Poppins-Black.ttf');
  font-display:swap; 
}

/*[ RESTYLE TAG ]
///////////////////////////////////////////////////////////
*/
* {
	margin: 0px; 
	padding: 0px; 
	box-sizing: border-box;
}

/*body, html {
	height: 100%;
	font-family: Montserrat-Regular, sans-serif;
  font-weight: 400;
}*/

/* ------------------------------------ */
a {
	/*font-family: Montserrat-Regular;
  font-weight: 400;
	font-size: 15px;
	line-height: 1.7;
	color: #3181c1;
	margin: 0px;
	transition: all 0.4s;
	-webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;*/
}

a:focus {
	outline: none !important;
}

a:hover {
	text-decoration: none;
	color: #e65540;
}

/* ------------------------------------ */
h1,h2,h3,h4,h5,h6 {
	margin: 0px;
}

p {
	font-family: Montserrat-Regular;
	font-size: 15px;
	line-height: 1.7;
	color: #888888;
	margin: 0px;
}

ul, li {
	margin: 0px;
	list-style-type: none;
}


/* ------------------------------------ */
input {
	outline: none;
	border: none !important;
}

textarea {
  outline: none;
}

/* textarea:focus, input:focus {
  border-color: transparent !important;
} */

input:focus::-webkit-input-placeholder { color:transparent; }
input:focus:-moz-placeholder { color:transparent; }
input:focus::-moz-placeholder { color:transparent; }
input:focus:-ms-input-placeholder { color:transparent; }

textarea:focus::-webkit-input-placeholder { color:transparent; }
textarea:focus:-moz-placeholder { color:transparent; }
textarea:focus::-moz-placeholder { color:transparent; }
textarea:focus:-ms-input-placeholder { color:transparent; }

/* ------------------------------------ */
button {
	outline: none !important;
	border: none;
	background: transparent;
}

button:hover {
	cursor: pointer;
}

iframe {
	border: none !important;
}


/* ------------------------------------ */
.container {
	max-width: 1200px;
}

.slick-slide {
  outline: none !important;
}





/*[ LOADDING ]
///////////////////////////////////////////////////////////
*/
.animsition-loading-1 {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

[data-loader='ball-scale'] {
    width: 50px;
    height: 50px;
    -webkit-animation: ball-scale infinite linear .75s;
    -moz-animation: ball-scale infinite linear .75s;
    -o-animation: ball-scale infinite linear .75s;
    animation: ball-scale infinite linear .75s;
    border-radius: 100%;
    background-color: #e65540;
}

@-webkit-keyframes ball-scale {
    0% {
        -webkit-transform: scale(.1);
        -ms-transform: scale(.1);
        -o-transform: scale(.1);
        transform: scale(.1);
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
}

@-moz-keyframes ball-scale {
    0% {
        -webkit-transform: scale(.1);
        -ms-transform: scale(.1);
        -o-transform: scale(.1);
        transform: scale(.1);
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
}

@-o-keyframes ball-scale {
    0% {
        -webkit-transform: scale(.1);
        -ms-transform: scale(.1);
        -o-transform: scale(.1);
        transform: scale(.1);
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
}

@keyframes ball-scale {
    0% {
        -webkit-transform: scale(.1);
        -ms-transform: scale(.1);
        -o-transform: scale(.1);
        transform: scale(.1);
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
}

/*[ BACK TO TOP ]
///////////////////////////////////////////////////////////
*/
.btn-back-to-top {
  display: none;
  position: fixed;
  width: 40px;
  height: 40px;
  bottom: 40px;
  right: 40px;
  background-color: black;
  opacity: 0.5;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  border-radius: 4px;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
}

.symbol-btn-back-to-top {
  font-size: 22px;
  color: white;
  line-height: 1em;
}

.btn-back-to-top:hover {
  opacity: 1;
  cursor: pointer;
}

@media (max-width: 576px) {
  .btn-back-to-top {
    bottom: 15px;
    right: 15px;
  }
}

/*[ Restyle Select2 ]
///////////////////////////////////////////////////////////
*/
/* Select2 */
.select2-container {
  display: block;
  max-width: 100% !important;
  width: auto !important;
}

.select2-container .select2-selection--single {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  background-color: transparent;
  border: none;
  height: 20px;
  outline: none;
  position: relative;
}

/* in select */
.select2-container .select2-selection--single .select2-selection__rendered {
  font-size: 13px;
  font-family: Montserrat-Regular;
  line-height: 20px;
  color: #888888;
  padding-left: 0px ;
  background-color: transparent;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 20px;
  top: 50%;
  transform: translateY(-50%);
  right: 0px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.select2-selection__arrow b {
  display: none;
}

.select2-selection__arrow:after {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  background-color: transparent;
  border-right: 1px solid #888888;
  border-bottom: 1px solid #888888;
  color: white;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  margin-bottom: 2px;
  margin-right: 8px;
}

/* dropdown option */
.select2-container--open .select2-dropdown {
  z-index: 1251;
  border: 1px solid #e5e5e5;
  border-radius: 0px;
  background-color: white;
}

.select2-container .select2-results__option[aria-selected] {
  padding-top: 5px;
  padding-bottom: 5px;
}

.select2-container .select2-results__option[aria-selected="true"] {
  background-color: #e65540;
  color: white;
}

.select2-container .select2-results__option--highlighted[aria-selected] {
  background-color: #e65540;
  color: white;
}

.select2-results__options {
  font-size: 13px;
  font-family: Montserrat-Regular;
  color: #888888;
}

.select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
  outline: none;
  font-family: Montserrat-Regular;
  font-size: 13px;
  color: #888888;
}

/*[ rs1-select2 ]
-----------------------------------------------------------
*/
.rs1-select2 .select2-container {
  margin-left: 26px;
}

.rs1-select2 .select2-container .select2-selection--single {
  height: 20px;;
}

/*[ rs2-select2 ]
-----------------------------------------------------------
*/
.rs2-select2 .select2-container .select2-selection--single {
  background-color: white;
  height: 50px;
}

.rs2-select2 .select2-container .select2-selection--single .select2-selection__rendered {
  line-height: 20px;
  color: #555555;
  padding-left: 22px ;
}

.rs2-select2 .select2-container--default .select2-selection--single .select2-selection__arrow {
  right: 10px;
}

#dropDownSelect2 .select2-results__options {
  color: #555555;
}

#dropDownSelect2 .select2-search--dropdown .select2-search__field {
  color: #555555;
}



/*[ rs3-select2 ]
-----------------------------------------------------------
*/
.rs3-select2 .select2-container .select2-selection--single {
  height: 45px;
}

.rs3-select2 .select2-selection__arrow b {
  display: block;
}

.rs3-select2 .select2-selection__arrow:after {
  display: none;
}

/*[ rs4-select2 ]
-----------------------------------------------------------
*/
.rs4-select2 .select2-container .select2-selection--single {
  height: 40px;
}

.rs4-select2 .select2-container .select2-selection--single .select2-selection__rendered {
  padding-left: 15px ;
}

.rs4-select2 .select2-container--default .select2-selection--single .select2-selection__arrow {
  right: 5px;
}


/*[ Header ]
///////////////////////////////////////////////////////////
*/
.header1 {
  height: 125px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

.fixed-header {height: 110px;}


/*[ Header Desktop ]
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>*/

.container-menu-header {
  width: 100%;
  top: 0;
  left: 0;
  position: fixed;
  z-index: 1100;
  box-shadow: 0 1px 5px 0px rgba(0,0,0,0.2);
  -moz-box-shadow: 0 1px 5px 0px rgba(0,0,0,0.2);
  -webkit-box-shadow: 0 1px 5px 0px rgba(0,0,0,0.2);
  -o-box-shadow: 0 1px 5px 0px rgba(0,0,0,0.2);
  -ms-box-shadow: 0 1px 5px 0px rgba(0,0,0,0.2); 
}

/*[ Top bar ]
===========================================================*/
.topbar {
  height: 45px;
  background-color: #f5f5f5;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
}


/* ------------------------------------ */

.topbar-social {
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  padding-left: 40px;
}

.topbar-social-item {
  font-size: 18px;
  color: #888888;
  padding: 10px;
}

/* ------------------------------------ */
.topbar-email,
.topbar-child1 {
  font-family: Montserrat-Regular;
  font-size: 13px;
  color: #888888;
  line-height: 1.7;
}

/* ------------------------------------ */
.topbar-child2 {
  position: absolute;
  height: 100%;
  top: 0;
  right: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding-right: 38px;
}


/*[ Menu ]
===========================================================*/
.wrap_header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  height: 80px;
  background-color: white;
  justify-content: center;
  align-items: center;
  position: relative;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

.fixed-header .wrap_header {
  height: 65px;
}


/*[ Logo ]
-----------------------------------------------------------*/
.logo {
  display: block;
  position: absolute;
  left: 52px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

.logo img {
  max-height: 45px;
}


/*[ Menu ]
-----------------------------------------------------------*/
.main_menu {
  list-style-type: none;
  margin: 0px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.main_menu > li {
  display: block;
  position: relative;
  padding-top: 20px;  
  padding-bottom: 20px; 
  padding-left: 15px;
  padding-right: 15px;
}

.main_menu > li > a {
  font-family: Montserrat-Regular;
  font-size: 15px;
  color: #333333;
  padding: 0;
  border-bottom: 1px solid transparent;
}

li.sale-noti > a,
li.active > a {
  color: #e65540;
}

.main_menu > li:hover > a {
  text-decoration: none;
  border-bottom: 1px solid #333333;
}

.main_menu li {
  position: relative;
}

.main_menu > li:hover > .sub_menu {
  visibility: visible;
  opacity: 1;
}
ul.menu_categorias
{
  position: relative;
  padding-left: 20px;
}
ul.menu_categorias .sub_menu
{
  display: none;
}
ul.menu_categorias i
{
  display: none;
}

.menu_categorias > li:hover > .sub_menu {
  visibility: visible;
  opacity: 1;
}

.sub_menu {
  list-style-type: none;
  position: absolute;
  z-index: 1100;
  top:0;
  left:100%;
  width: 225px;
  background-color: #222222;
  opacity: 0;
  visibility: hidden;
  padding-top: 10px;
  padding-bottom: 10px;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
}

.main_menu > li > .sub_menu {
  top:100%;
  left: 0;
  position: absolute;
}

.sub_menu li:hover > .sub_menu {
  visibility: visible;
  opacity: 1;
} 

.sub_menu li { 
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
}

.sub_menu li, .sub_menu a {
  padding: 10px;
  font-family: Montserrat-Regular;
  font-size: 13px;
  color: white;
}

.sub_menu > li:hover > a {
  color: #e65540;
  text-decoration: none;
}

/* ------------------------------------ */
.header-icons {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  position: absolute;
  right: 52px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

.header-wrapicon1,
.header-wrapicon2 {
  height: 27px;
  position: relative;
}

.header-wrapicon1 img,
.header-wrapicon2 img {
  height: 100%;
}

.header-icon1:hover,
.header-icon2:hover {
  cursor: pointer;
}

.header-icons-noti {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #111111;
  color: white;
  font-family: Montserrat-Medium;
  font-size: 12px;
  position: absolute;
  top: 0;
  right: -10px;
}

.linedivide1 {
  display: block;
  height: 20px;
  width: 1px;
  background-color: #e5e5e5;
  margin-left: 23px;
  margin-right: 23px;
  margin-top: 5px;
}

/*[ Header cart ]
-----------------------------------------------------------
*/
.header-cart {
  position: absolute;
  z-index: 1100;
  width: 339px;
  top: 190%;
  right: -10px;
  padding: 20px;
  border-top: 3px solid #e6e6e6;
  background-color: white;

  box-shadow: 0 3px 5px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 3px 5px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 3px 5px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 3px 5px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 3px 5px 0px rgba(0, 0, 0, 0.1);
  
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  
  transform-origin: top right;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
}

.show-header-dropdown {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}

.fixed-header .header-cart {
  top: 160%;
}

.header-cart-wrapitem {
  max-height: 270px;
  overflow: auto;
}

.header-cart-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding-bottom: 5px;
  padding-top: 5px;
}

/* ------------------------------------ */
.header-cart-item-img {
  width: 80px;
  position: relative;
  margin-right: 20px;
}

.header-cart-item-img img {
  width: 100%;
}

.header-cart-item-img::after {
  content: '\e870';
  font-family: Linearicons;
  font-size: 16px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0,0,0,0.5);
  color: white;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  opacity: 0;
}

.header-cart-item-img:hover:after {
  cursor: pointer;
  opacity: 1;
}

/* ------------------------------------ */
.header-cart-item-txt {
  width: calc(100% - 100px);
}

.header-cart-item-name {
  display: block;
  font-family: Montserrat-Regular;
  font-size: 15px;
  color: #555555;
  line-height: 1.3;
  margin-bottom: 12px;
}

.header-cart-item-info {
  display: block;
  font-family: Montserrat-Regular;
  font-size: 12px;
  color: #888888;
  line-height: 1.5;
}

.header-cart-total {
  font-family: Montserrat-Regular;
  font-size: 15px;
  color: #555555;
  line-height: 1.3;
  text-align: right;
  padding-top: 15px;
  padding-bottom: 25px;
  padding-right: 3px;
  overflow: hidden;
}
.promociones-cart
{
  overflow: hidden;
}
.promociones-cart .item
{
  margin: 10px 0px;
  overflow: hidden;
  background-color: #f2f2f2;
  padding: 5px 4px;
}
.promociones-cart span.texto_left
{
  display: inline-block;
  vertical-align: top;
  width: 60%;
  float: left;
  text-align: left;
  font-size: 12px;
}
.promociones-cart  span.texto_left .promo
{
  font-weight: bold;
  display: block;
  width: 100px;
  text-align: center;
  padding: 3px;
  background-color: #ea7979;
  color: #fff;
  border-radius: 3px;
  margin-bottom: 4px;
  font-size: 11px;
}
.promociones-cart  span.texto_left .producto
{
  color: #777;
}
.promociones-cart  span.texto_right
{
  display: inline-block;
  vertical-align: top;
  width: 35%;
  float: right;
  line-height: 45px;
  color: #ea7978;
  text-align: right;

}

/* ------------------------------------ */
.header-cart-buttons {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.header-cart-wrapbtn {
  width: calc((100% - 10px) / 2);
}



/*[ Header Mobile ]
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>*/
.wrap_header_mobile {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  padding-left: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: white;
  display: none;
}

/*[ Logo mobile ]
-----------------------------------------------------------*/
.logo-mobile {
  display: block;
}

.logo-mobile img {
  max-height: 40px;
}

/*[ btn show menu ]
-----------------------------------------------------------*/
.btn-show-menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  justify-content: center;
  align-items: center;
}

.hamburger {
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
  transform: scale(0.8);
  margin-top: 5px;
}


/*[ Header icon mobile ]
-----------------------------------------------------------*/
.header-icons-mobile {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  margin-right: 15px;
}
.linedivide2 {
  display: block;
  height: 20px;
  width: 1px;
  margin-left: 10px;
  margin-right: 10px;
  margin-top: 5px;
}

.header-icons-mobile .header-cart {
  width: 300px;
  top: 190%;
  right: -80px;  
  z-index: 1100;
  transform-origin: top right;
}

/*[ Menu mobile ]
-----------------------------------------------------------*/
.wrap-side-menu {
  width: 100%;
  background-color: white;
  display: none;
  border-top: 1px solid #ececec;
}

.side-menu {
  width: 100%;
}

.side-menu li {
  list-style-type: none;
}

.side-menu .main-menu {margin-bottom: 0;}

.item-menu-mobile {
  background-color: #e65540;
}

.side-menu .main-menu > li > a {
  padding-left: 20px;
  font-family: Montserrat-Regular;
  font-size: 15px;
  color: white;
  line-height: 2.86;
}

.side-menu .main-menu > li {
  color: white;
  position: relative;
}


.side-menu .main-menu .arrow-main-menu {
  font-size: 14px;
  position: absolute;
  right: 20px;
  top: 5px;
  padding: 10px;
  -webkit-transition: all 0.4s !important;
  -o-transition: all 0.4s !important;
  -moz-transition: all 0.4s !important;
  transition: all 0.4s !important;
}

.side-menu .main-menu .arrow-main-menu:hover {
  cursor: pointer;
}

.turn-arrow {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}

.side-menu .sub-menu a {
  padding-left: 20px;
  font-family: Montserrat-Regular;
  font-size: 13px;
  color: #333333;
  line-height: 2.5;
}

.side-menu .sub-menu > li {
  padding-left: 12px;
  padding-top: 
}

.side-menu .sub-menu a:hover {
  text-decoration: none;
  padding-left: 20px;
  color: #e65540 !important;
}

.side-menu .sub-menu {
  background-color: white;
  display: none;
}

@media (min-width: 992px){
  .wrap-side-menu {
    display: none;
  }
}

/* ------------------------------------ */
.item-topbar-mobile {
  border-bottom: 1px solid #ececec;
}

.topbar-child2-mobile {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.topbar-social-moblie {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
}


/*[ Header2 ]
///////////////////////////////////////////////////////////
*/
.topbar2 {
  background-color: #fff;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ------------------------------------ */
.logo2 {
  display: block;
}

.logo2 img {
  max-height: 27px;
}

.fixed-header2 {
  z-index: 1300;
  position: fixed;
  height: 65px;
  left: 0;
  top: -70px;
  visibility: hidden;

  box-shadow: 0 1px 5px 0px rgba(0,0,0,0.2);
  -moz-box-shadow: 0 1px 5px 0px rgba(0,0,0,0.2);
  -webkit-box-shadow: 0 1px 5px 0px rgba(0,0,0,0.2);
  -o-box-shadow: 0 1px 5px 0px rgba(0,0,0,0.2);
  -ms-box-shadow: 0 1px 5px 0px rgba(0,0,0,0.2); 
}

.fixed-header2 .header-cart {
  top: 160%;
}

.show-fixed-header2 {
  visibility: visible;
  top: 0px;
}


/*[ Header3 ]
///////////////////////////////////////////////////////////
*/
.container-menu-header-v3 {
  position: fixed;
  z-index: 1200;
  top: 0;
  left: 0;
  background-color: #fff;
  width: 320px;
  height: 100vh;
  border-right: 1px solid #e5e5e7;

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

/*[ Menu ]
===========================================================*/
.container-menu-header-v3 .wrap_header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  background-color: white;
}


/*[ Logo ]
-----------------------------------------------------------*/
.container-menu-header-v3 .logo3 {
  display: block;
}

.container-menu-header-v3 .logo3 img {
  max-width: 120px;
}

/*[ Header Icon ]
-----------------------------------------------------------*/
.container-menu-header-v3 .header-icons3 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  position: unset;
}

/*[ Header cart ]
-----------------------------------------------------------
*/
.container-menu-header-v3 .header-cart {
  left: -10px;
  transform-origin: top left;
}

/*[ Menu ]
-----------------------------------------------------------*/
.container-menu-header-v3 .main_menu {
  list-style-type: none;
  margin: 0px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  flex-direction: column;
}

.container-menu-header-v3 .main_menu > li {
  padding-top: 3px;  
  padding-bottom: 3px; 
  padding-left: 0px;
  padding-right: 0px;
  text-align: center;
}

.container-menu-header-v3 .sub_menu {
  top:0;
  left:100%;
}

.container-menu-header-v3 .main_menu > li > .sub_menu {
  top: 10px;
  left: 95%;
}

.container-menu-header-v3 .sub_menu li { 
  text-align: left;
}

.container-menu-header-v3 .topbar-social-item {
  padding: 10px 8px;
}


/*[ Page sidebar ]
-----------------------------------------------------------
*/
.container1-page {
  margin-left: 320px;
}

@media (max-width: 992px){
  .wrap_header_mobile {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex !important;
  }
  .wrap_header {display: none;}

  .container-menu-header-v3,
  .container-menu-header-v2,
  .container-menu-header 
  {display: none;}

  .top-bar {display: none;}
  header {height: auto !important;}

  .container1-page {
    margin-left: 0px;
  }
}



/*[ Slide1 ]
///////////////////////////////////////////////////////////
*/

/*[ Slick1 ]
-----------------------------------------------------------
*/
.wrap-slick1 {
  position: relative;
}

.item-slick1 {
  height: 500px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.arrow-slick1 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  font-size: 18px;
  color: white;
  position: absolute;
  background-color: black;
  opacity: 0;
  
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);

  border-radius: 50%;
  z-index: 200;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.wrap-slick1:hover .arrow-slick1 {
  opacity: 0.5;
}

.arrow-slick1:hover {
  background-color: #e65540;
}

.next-slick1 {
  right: 50px;
  left: auto;
}

.prev-slick1 {
  left: 50px;
  right: auto;
}

@media (max-width: 576px) {
  .next-slick1 {
    right: 15px;
  }

  .prev-slick1 {
    left: 15px;
  }
}

/*[ Caption ]
-----------------------------------------------------------
*/
@media (max-width: 992px) {
  .wrap-content-slide1 .xl-text2 {
    font-size: 60px;
  }
}

@media (max-width: 768px) {
  .wrap-content-slide1 .xl-text3,
  .wrap-content-slide1 .xl-text2,
  .wrap-content-slide1 .xl-text1 {
    font-size: 50px;
  }

  .wrap-content-slide1 .m-text27,
  .wrap-content-slide1 .m-text1 {
    font-size: 16px;
  }

  .item-slick1 {
    height: 470px;
  }
}

@media (max-width: 576px) {
  .wrap-content-slide1 .xl-text3,
  .wrap-content-slide1 .xl-text2,
  .wrap-content-slide1 .xl-text1 {
    font-size: 40px;
  }

  .wrap-content-slide1 .m-text27,
  .wrap-content-slide1 .m-text1 {
    font-size: 16px;
  }

  .item-slick1 {
    height: 370px;
  }
}

/*[ rs1-slick1 ]
-----------------------------------------------------------
*/
.rs1-slick1 .item-slick1 {
  height: 100vh;
}

@media (max-width: 992px) {
  .rs1-slick1 .item-slick1 {
    height: calc(100vh - 85px);
  }
}




/*[ Slide2 ]
///////////////////////////////////////////////////////////
*/

/*[ Slick2 ]
-----------------------------------------------------------
*/
.wrap-slick2 {
  position: relative;
  margin-right: -15px;
  margin-left: -15px;
}

/* ------------------------------------ */
.arrow-slick2 {
  position: absolute;
  z-index: 100;
  top: calc((100% - 70px) / 2);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 39px;
  color: #cccccc;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.arrow-slick2:hover {
  color: #666666;
}

.next-slick2 {
  right: -30px;
}

.prev-slick2 {
  left: -30px;
}

@media (max-width: 1280px) {
  .next-slick2 {
    right: 0px;
  }

  .prev-slick2 {
    left: 0px;
  }
}

@media (max-width: 1610px) {
  .rs1-slick2 .next-slick2 {
    right: 0px;
  }

  .rs1-slick2 .prev-slick2 {
    left: 0px;
  }
}

/*[ rs Sweetalert ]
///////////////////////////////////////////////////////////
*/
.swal-overlay {
    overflow-y: auto;
}

.swal-icon--success {
    border-color: #66a8a6;
}

.swal-icon--success__line {
    background-color: #66a8a6;
}

.swal-icon--success__ring {
    border: 4px solid rgba(102, 168, 166, 0.2);
}

.swal-button:focus {
    outline: none;
    box-shadow: none;
}

.swal-button {
    background-color: #e65540;
    font-family: Montserrat-Regular;
    font-size: 15px;
    color: white;
    text-transform: uppercase;
    font-weight: unset;
    border-radius: 20px;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}

.swal-button:hover {
    background-color: #333333;
}

.swal-button:active {
    background-color: #e65540;
}

.swal-title {
  font-family: Montserrat-Medium;
  color: #333333;
  font-size: 16px;
  line-height: 1.5;
  padding: 0 15px;
}

.swal-text {
  font-family: Montserrat-Regular;
  color: #333333;
  font-size: 15px;
  text-align: center;
}

.swal-footer {
    margin-top: 0;
    text-align: center;
}

.swal-button--cancel {
    color: #f5f5f5;
    background-color: #827676;
}
.swal-button--cancel:hover{
  color: #555;
  background-color: #d4d4d4;
}


/*[ Block1 ]
///////////////////////////////////////////////////////////
*/
.block1-wrapbtn {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 20px;

  box-shadow: 0 1px 3px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 1px 3px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 1px 3px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 1px 3px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 1px 3px 0px rgba(0, 0, 0, 0.1);
}


/*[ Block2 ]
///////////////////////////////////////////////////////////
*/
.block2-labelsale::before,
.block2-labelnew::before 
{
  z-index: 100;
  font-family: Montserrat-Regular;
  font-size: 12px;
  color: white;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 22px;
  border-radius: 11px;
  position: absolute;
  top: 12px;
  left: 12px;
}

.block2-labelsale::before {
  background-color: #e65540;
  content: 'Sale';
}

.block2-labelnew::before {
  background-color: #66a8a6;
  content: 'New';
}

/* ------------------------------------ */
.block2-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0,0,0,0.3);
  opacity: 0;
}

/* ------------------------------------ */
.block2-btn-addcart {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: -45px;
}

/* ------------------------------------ */
.block2-btn-towishlist,
.block2-btn-addwishlist {
  display: block;
  position: absolute;
  top: 26px;
  right: 20px;
  font-size: 20px;
  color: white;
  line-height: 0;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
}

.block2-btn-addwishlist:hover {
  color: white;
}

.block2-btn-addwishlist .icon-wishlist,
.block2-btn-towishlist .icon-wishlist {
  line-height: 0;
}

.block2-btn-addwishlist:hover .icon_heart_alt {
  display: none;
}

.block2-btn-addwishlist:hover .icon_heart {
  display: block;
}

/* ------------------------------------ */
.block2-btn-towishlist .icon_heart_alt {
  display: none;
}

.block2-btn-towishlist .icon_heart {
  display: block;
  color: #e65540;
}

/* ------------------------------------ */
.block2-overlay:hover {
  opacity: 1;
}

.block2-overlay:hover .block2-btn-addcart {
  bottom: 20px;
}

.block2-overlay:hover .block2-btn-addwishlist,
.block2-overlay:hover .block2-btn-towishlist{
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}


/*[ Block4 ]
///////////////////////////////////////////////////////////
*/
.block4 {
  position: relative;
  overflow: hidden;
  width: calc(100% / 5);
}

@media (max-width: 1360px) {
  .block4 {
    width: calc(100% / 4);
  }
}

@media (max-width: 1200px) {
  .block4 {
    width: calc(100% / 3);
  }
}

@media (max-width: 992px) {
  .block4 {
    width: calc(100% / 2);
  }
}

@media (max-width: 576px) {
  .block4 {
    width: calc(100% / 1);
  }
}

/* ------------------------------------ */
@media (max-width: 1660px) {
  .rs1-block4 .block4 {
    width: calc(100% / 4);
  }
}

@media (max-width: 1380px) {
  .rs1-block4 .block4 {
    width: calc(100% / 3);
  }
}

@media (max-width: 1200px) {
  .rs1-block4 .block4 {
    width: calc(100% / 2);
  }
}

@media (max-width: 576px) {
  .rs1-block4 .block4 {
    width: calc(100% / 1);
  }
}

/* ------------------------------------ */
.block4-overlay {
  display: block;
  background-color: rgba(0,0,0,0.9);
  visibility: hidden;
  opacity: 0;
}

.block4-overlay:hover {
  color: unset;
}

/* ------------------------------------ */
.block4-overlay-txt {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: -100%;
}

/* ------------------------------------ */
.block4-overlay-heart {
  transform-origin: top left;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
}

/* ------------------------------------ */
.block4:hover .block4-overlay {
  visibility: visible;
  opacity: 1;
}

.block4:hover .block4-overlay-txt {
  bottom: 0;
}

.block4:hover .block4-overlay-heart {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}


/*[ BG Title Page ]
///////////////////////////////////////////////////////////
*/
.bg-title-page {
  width: 100%;
  min-height: 239px;
  padding-left: 15px;
  padding-right: 15px;
  background-repeat: no-repeat;
  background-position: center 0;
  background-size: cover;
}

@media (max-width: 576px) {
  .bg-title-page .l-text2 {font-size: 35px;}
  .bg-title-page .m-text13 {font-size: 16px;}
}

/*[ rs NoUI ]
///////////////////////////////////////////////////////////
*/
.leftbar #filter-bar {
  margin-right: 6px;
  margin-left: 6px;
  height: 4px;
  border: none;
  background-color: #e1e1e1;
}
.leftbar #filter-bar .noUi-connect {
  background-color: #c5c5c5;
  border: none;
  box-shadow: none;
}
.leftbar #filter-bar .noUi-handle {
  width: 13px;
  height: 13px;
  left: -6px;
  top: -5px;
  border: none;
  border-radius: 50%;
  background: #999999;
  cursor: pointer;
  box-shadow: none;
  outline: none;
}
.leftbar #filter-bar .noUi-handle:before {
  display: none;
}
.leftbar #filter-bar .noUi-handle:after {
  display: none;
}

/*[ Filter Color ]
///////////////////////////////////////////////////////////
*/
.color-filter1 {background-color: #00bbec;}
.color-filter2 {background-color: #2c6ed5;}
.color-filter3 {background-color: #ffa037;}
.color-filter4 {background-color: #ff5337;}
.color-filter5 {background-color: #a88c77;}
.color-filter6 {background-color: #393939;}
.color-filter7 {background-color: #cccccc;}

.checkbox-color-filter {
  display: none;
}

.color-filter {
    display:block;
    width:25px;
    height:25px;
    cursor:pointer;
    border-radius: 50%;
}

.checkbox-color-filter:checked + .color-filter {
  box-shadow: 0 0 0px 2px black;
  -moz-box-shadow: 0 0 0px 2px black;
  -webkit-box-shadow: 0 0 0px 2px black;
  -o-box-shadow: 0 0 0px 2px black;
  -ms-box-shadow: 0 0 0px 2px black;
}

/*[ Pagination ]
///////////////////////////////////////////////////////////
*/
.pagination {
  margin-right: -6px;
  margin-left: -6px;
}

.item-pagination {
  font-family: Montserrat-Regular;
  font-size: 13px;
  color: #808080;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #eeeeee;
  margin: 6px;
}

.item-pagination:hover {
  background-color: #222222;
  color: white;
}

.active-pagination {
  background-color: #222222;
  color: white;
}


/*[ Slick3 ]
///////////////////////////////////////////////////////////
*/

.wrap-slick3-dots {
  width: 14.5%;
}

.slick3 {
  width: 80.64%;
}

.slick3-dots li {
  display: block;
  position: relative;
  width: 100%;
  margin-bottom: 15px;
}

.slick3-dots li img {
  width: 100%;
}

.slick3-dot-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  cursor: pointer;
  border: 3px solid transparent;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.slick3-dot-overlay:hover {
  border: 3px solid #888888;
}

.slick3-dots .slick-active .slick3-dot-overlay {
  border: 3px solid #888888;
}


/*[ Dropdown content ]
///////////////////////////////////////////////////////////
*/
.show-dropdown-content .down-mark {
  display: block;
}

.show-dropdown-content .up-mark {
  display: none;
}


/*[ Cart ]
///////////////////////////////////////////////////////////
*/
/*[ Table ]
-----------------------------------------------------------
*/
.wrap-table-shopping-cart {
  overflow: auto;
}

.container-table-cart::before {
  content: '';
  display: block;
  position: absolute;
  width: 1px;
  height: calc(100% - 51px);
  background-color: #e6e6e6;
  top: 51px;
  left: 0;
}

.container-table-cart::after {
  content: '';
  display: block;
  position: absolute;
  width: 1px;
  height: calc(100% - 51px);
  background-color: #e6e6e6;
  top: 51px;
  right: 0;
}

.table-shopping-cart {
  border-collapse: collapse;
  width: 100%;
  min-width: 992px;
}

.table-shopping-cart .table-row {
  border-top: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6;
}

.table-shopping-cart .column-1 {
  width: 225px;
  padding-left: 50px;
}
.table-shopping-cart .column-2 {
  width: 330px;
  padding-right: 30px;
}
.table-shopping-cart .column-3 {
  width: 133px;
  padding-right: 30px;
}
.table-shopping-cart .column-4 {
  width: 355px;
  padding-right: 30px;
}
.table-shopping-cart .column-5 {
  padding-right: 30px;
}

.table-shopping-cart .table-head th {
  font-family: Montserrat-Bold;
  font-size: 13px;
  color: #555555;
  line-height: 1.5;
  text-transform: uppercase;
  padding-top: 16px;
  padding-bottom: 16px;
}

.table-shopping-cart td {
  font-family: Montserrat-Regular;
  font-size: 16px;
  color: #555555;
  line-height: 1.5;
  padding-top: 37px;
  padding-bottom: 30px;
}

.table-shopping-cart .table-row .column-2 {
  font-size: 15px;
}


/* ------------------------------------ */
.cart-img-product {
  width: 90px;
  position: relative;
}

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

.cart-img-product::after {
  /*content: '\e870';
  font-family: Linearicons;
  font-size: 16px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0,0,0,0.5);
  color: white;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  opacity: 0;*/
}

.cart-img-product:hover:after {
  cursor: pointer;
  opacity: 1;
}


/*[ Tags ]
///////////////////////////////////////////////////////////
*/
.wrap-tags {
  margin-right: -3px;
  margin-left: -3px;
}

.tag-item {
  display: block;
  font-family: Montserrat-Regular;
  font-size: 13px;
  color: #888888;
  line-height: 1.5;
  padding: 5px 15px;
  border: 1px solid #cccccc;
  border-radius: 15px;
  margin: 3px;
}

.tag-item:hover {
  border: 1px solid #e65540;
}


/*[ tab01 ]
///////////////////////////////////////////////////////////
*/
.tab01 .nav-tabs {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border-bottom: none;
  margin-right: -15px;
  margin-left: -15px;
}

.tab01 .nav-tabs .nav-item {
  padding: 8px 16px;
}

.tab01 .nav-link {
  padding: 0;
  border-radius: 0px;
  border: none;
  border-bottom: 1px solid transparent;
  font-family: Montserrat-Regular;
  font-size: 15px;
  color: #888888;
  line-height: 1.1;
}

.tab01 .nav-link.active {
    color: #333333;
    border-bottom: 1px solid #6a6a6a;
}

.tab01 .nav-link:hover {
    color: #333333;
    border-bottom: 1px solid #6a6a6a;
}

@media (max-width: 480px) {
  .tab01 .nav-tabs .nav-item {
    padding: 8px 6px;
  }

  .tab01 .nav-tabs {
    margin-right: -6px;
    margin-left: -6px;
  }
}


/*[ Modal video 01 ]
///////////////////////////////////////////////////////////
*/
body {padding-right: 0px !important;}

.modal {
  padding: 0px !important;
  z-index: 1360;
  overflow-x: hidden;
  overflow-y: auto !important;
}
/*.modal-open {overflow-y: scroll;}*/

/* ------------------------------------ */
.modal-backdrop {
  /*background-color: transparent;*/
}

#modal-video-01 {
  background-color: rgba(0,0,0,0.8);
  z-index: 1350;
  
}

#modal-video-01 .modal-dialog {
  max-width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  position: relative;
}

.wrap-video-mo-01 {
  width: 854px;
  height: auto;
  position: relative;
  margin: 15px;
}

.video-mo-01 {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: all 2s;
  -o-transition: all 2s;
  -moz-transition: all 2s;
  transition: all 2s;
}

.video-mo-01 iframe {
  width: 100%;
  height: 100%;
}

.close-mo-video-01 {
  font-size: 50px;
  color: white;
  opacity: 0.6;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 1250;
  width: 60px;
  height: 60px;
  top: 0;
  right: 0;
}

.close-mo-video-01:hover {
  cursor: pointer;
  opacity: 1;
}


/*[ Input NumProduct ]
///////////////////////////////////////////////////////////
*/
input.num-product {
    -moz-appearance: textfield;
    appearance: none;
    -webkit-appearance: none;
}

input.num-product::-webkit-outer-spin-button,
input.num-product::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0; 
}

/* ADICIONALES PARA CUALQUIER TEMPLATE */
i.icon_home
{
  display: block;
  font-size: 30px;
  margin-bottom: 5px;
}
.no_data
{
  text-align: center;
  color: #e05a5a;
}
.cargando_cesta
{
  display:none;
  position:absolute;
  width:100%;
  height:100%;
  top:10px;
  left:0; 
  z-index:1;
  background: rgba(255,255,255,0.8) url(../images/load.gif) no-repeat center center;
  background-size:60px;
}
#cesta .minimo_compra
{
  margin-top:15px;
  margin-bottom:5px
}
#cesta .minimo_compra .barra
{
  width:100%;
  background:#ddd;
  border-radius:5px;
  height:10px;
  text-align:left;
  padding:0
}
#cesta .minimo_compra .barra .avance
{
  background:#af9c4f;
  height:10px;
  position:relative;
  border-radius:5px
}
#cesta .minimo_compra .barra .avance span
{
  position:absolute;
  top:-22px;
  right:0;
  font-size:16px;
  color:#af9c4f;
  font-weight:700
}
#cesta .minimo_compra .texto
{
  margin:12px 0;
  text-align:right;
  font-size:14px;
  color:#888
}
.eliminarCarrito
{
  position: absolute;
  top: -10px;
  left: -10px;
  display: block;
  width: 25px;
  height: 25px;
  text-align: center;
  line-height: 25px;
  background-color: #ff5c5c;
  color: #fff;
  font-size: 14px;
  border-radius: 50%;
}
.eliminarCarrito:hover
{
  color: #fff;
  opacity: 0.6;
}
.beneficio_cupon
{
  display: inline-block;
  word-wrap: break-word;
  color: #ff005a;
}
.div_quitar_cupon
{
}
.div_quitar_cupon .quitar_cupon
{
  color: #3b90ce;
  display: block;
  margin: 5px 0px;
  text-decoration: none;
  /*border-bottom: dashed 1px #3b90ce;*/
}
.div_quitar_cupon .quitar_cupon:hover
{
  color: #3678a9;
  display: block;
  margin: 5px 0px;
  text-decoration: none;
  /*border-bottom: dashed 1px #3678a9;*/
}
.div_quitar_cupon i
{
  font-size: 18px;
}
.div_quitar_cupon i.quitarCupon
{
  background-color: #989898;
  color: #fff;
  border-radius: 50%;
  width: 17px;
  height: 17px;
  line-height: 17px;
  text-align: center;
  margin: 4px 0px 0px 5px;
  font-size: 11px;
  display: inline-block;
  vertical-align: top;
}
.div_quitar_cupon i.quitarCupon:hover
{
  background-color: #ff005a;
  color: #fff;
}
.bread-crumb a.active
{
  color: #e65540;
}
.redes_sociales{margin:5px 0;text-align:left;}
.redes_sociales a{display:inline-block; text-align:center; vertical-align:top;margin:8px 0px;width:250px; border-radius: 3px; padding:10px 10px;font-size:16px;color:#fff;-webkit-transition:all 0.3s ease-out;-moz-transition:all 0.3s ease-out;-o-transition:all 0.3s ease-out}
.redes_sociales a:hover{opacity:.9}
.redes_sociales a:hover i{font-size:20px;-moz-transform:rotate(360deg);-webkit-transform:rotate(360deg);-ms--transform:rotate(360deg);transform:rotate(360deg)}
.redes_sociales a i{margin-right:5px;-webkit-transition:all 0.5s ease-out;-moz-transition:all 0.5s ease-out;-o-transition:all 0.5s ease-out}
.redes_sociales a.btn_facebook{background:#3b5999}

.sidebar_resumen_pedido
{
  padding: 20px;
  background: #f0f0f0;
}
.sidebar_resumen_pedido table
{
  width: 100%;
}
.sidebar_resumen_pedido table thead
{
  border-bottom: solid 1px #d0d0d0;
  color: #333;
}
.sidebar_resumen_pedido table th
{
  font-size: 14px;
  color: #555;
  padding: 10px;
}
.sidebar_resumen_pedido table tbody
{
  border-bottom: solid 1px #d0d0d0;
}
.sidebar_resumen_pedido table td
{
  font-size: 14px;
  color: #555;
  padding: 10px;
}
.sidebar_resumen_pedido table td img
{
  max-width: 70px;
}
.sidebar_resumen_pedido table tr.total_resumen
{
  border-top: solid 1px #d0d0d0;
}
.sidebar_resumen_pedido table tr.total_resumen th
{
  font-size: 16px;
  color: #333;
}
.sidebar_resumen_pedido table tr.total_resumen th span
{
  display: inline-block;
  vertical-align: top;
  font-size: 12px;
  color: #999;
  margin-left: 6px;
  margin-top: 3px;
}
.sidebar_resumen_pedido table tr.total_resumen td
{
  font-size: 18px;
  color: #333;
  font-weight: bold;
  text-align: right;
}
.div_confirmacion
{
  border: solid 1px #ddd;
  border-radius: 3px;
  padding: 15px;
  margin: 10px 0px;
}
.div_confirmacion span
{
  display: block;
  border-bottom: solid 1px #ddd;
  padding: 10px 0px;
  font-size: 13px;
  color: #444;
  text-align: left;
}
.div_confirmacion span b
{
  display: inline-block;
  vertical-align: top;
  margin-right: 10px;
  color: #aaa;
  min-width: 80px;
}
.div_confirmacion span:last-child
{
  border-bottom: none;
  padding-bottom: 3px;
}
.div_confirmacion .imagen
{
  margin: 5px 0px;
}
.div_confirmacion .imagen img
{
  width: 100%;
}
.div_confirmacion .texto h4
{
  padding: 4px 6px;
  border-radius: 3px;
  background-color: #9c9494;
  color: #fff;
  font-size: 16px;
}
.div_confirmacion label
{
  display: block;
  width: 100%;
  cursor: pointer;
}
.div_confirmacion.active,
.div_confirmacion:hover
{
  border: solid 1px #b3b3b3;
  background: #f7f7f7;
}
.div_confirmacion label input
{
  display: inline-block;
  vertical-align: top;
  width: 10%;
}
.div_confirmacion label div.datos
{
  display: inline-block;
  vertical-align: top;
  width: 85%;
}
.div_confirmacion label div.datos .left
{
  display: inline-block;
  vertical-align: top;
  float: left;
}
.div_confirmacion label div.datos .right
{
  display: inline-block;
  vertical-align: top;
  float: right;
  max-width: 250px;
}
.div_confirmacion div.datos .imagen.left img
{
  width: 80px;
  margin-right: 10px;
}
.botones_proceso
{
  margin: 20px 0px;
  text-align: right;
  width: 100%;
}
.botones_proceso a,
.botones_proceso button
{
  width: 220px;
  float: right;
  margin-left: 20px;
}

a.agregar_direccion{display:block; width:300px;padding:8px;text-align:center;margin:25px auto;border:dashed 2px #ef7c6b;background:#fff;color:#ef7c6b;font-weight:700;text-transform:uppercase;font-size:14px;border-radius:4px;transition:all .3s ease-in-out;-webkit-transition:all .3s ease-in-out;-moz-transition:all .3s ease-in-out;-o-transition:all .3s ease-in-out;}
a.agregar_direccion:hover,
a.agregar_direccion:hover{width:300px;background:#ef7c6b;color:#fff}
.form_direccion
{
  margin: 20px 0;
  display:none; 
  width: 100%;
}
.form_direccion input,
.form_direccion select,
.form_perfil input,
.form_perfil select
{
  border: solid 1px #e6e6e6 !important;
  background: #fff;
  border-radius: 2px;
  outline: none;
  padding: 10px 10px;
  height: 40px;
  font-family: Montserrat-Regular;
  font-size: 13px;
  color: #555555;
  line-height: 1.8;
  width: 100%;
}
.form_direccion textarea
{
  border: solid 1px #e6e6e6 !important;
  background: #fff;
  border-radius: 2px;
  outline: none;
  padding: 10px 10px;
  font-family: Montserrat-Regular;
  font-size: 13px;
  color: #555555;
  line-height: 1.8;
  width: 100%;
}
.form_perfil input:disabled
{
  cursor: not-allowed;
  background: #f5f5f5;
  border: solid 1px #c5c5c5;
  color: #a2a2a2;
}
form[name="form_pedido"]
{
  width: 100%;
  display: flex;
}
.form_perfil span.required
{
  display: inline-block;
  vertical-align: top;
  margin: 3px 0px 0px 2px;
  color: #e85454;
}
.form_perfil label
{
  margin-bottom: 2px;
  display: block;
  font-size: 13px;
  color: #777;
}
.form_direccion input.error,
.form_direccion select.error,
.form_perfil input.error,
.form_perfil select.error
{
  border: solid 1px #dc3939 !important;
}
#menu_clientes
{
  /*max-width: 300px;*/
}
#menu_clientes a
{
  color: #666;
}
#menu_clientes a.active,
#menu_clientes a:hover
{
  background: #f1705c;
  border: solid 1px #f1705c;
  text-align: center;
  color: #fff;
}
#menu_clientes a i
{
  font-size: 24px;
  width: 100%;
}
#menu_clientes a span
{
  display: block;
  margin: 6px 0px;
  width: 100%;
  font-size: 16px;
}

#mis_direcciones
{
  display: none;
  width: 100%;
}
table.tabla_pedidos td
{
  font-size: 16px;
  color: #555;
}
table.tabla_pedidos span.rechazado
{
  background: #ef9494;
  color: #822222;
  border-radius: 3px;
  padding: 4px 6px;
  font-size: 14px;
  width: 100%;
  display: block;
  text-align: center;
}
table.tabla_pedidos span.pagado
{
  background: #93e68e;
  color: #21821b;
  border-radius: 3px;
  padding: 4px 6px;
  font-size: 14px;
  width: 100%;
  display: block;
  text-align: center;
}
table.tabla_pedidos span.por_pagar
{
  background: #ddd;
  color: #555;
  border-radius: 3px;
  padding: 4px 6px;
  font-size: 14px;
  width: 100%;
  display: block;
  text-align: center;
}
table.tabla_pedidos span.por_enviar
{
  background: #eaf188;
  color: #80862c;
  border-radius: 3px;
  padding: 4px 6px;
  font-size: 14px;
  width: 100%;
  display: block;
  text-align: center;
}
table.tabla_pedidos span.en_camino
{
  background: #f7cda3;
  color: #b16025;
  border-radius: 3px;
  padding: 4px 6px;
  font-size: 14px;
  width: 100%;
  display: block;
  text-align: center;
}
table.tabla_pedidos span.entregado
{
  background: #90c8e8;
  color: #1e3f63;
  border-radius: 3px;
  padding: 4px 6px;
  font-size: 14px;
  width: 100%;
  display: block;
  text-align: center;
}

#progressbar{width:100%;overflow:hidden;counter-reset:step;padding:0;margin:0;margin-bottom:40px; text-align: center;}
#progressbar li{list-style-type:none;color:#777;text-transform:uppercase;font-size:10px;font-weight:700;width:25%;float:left;position:relative}
#progressbar li.active{color:#e65540}
#progressbar li:before{content:counter(step);counter-increment:step;width:25px;line-height:25px;display:block;font-size:12px;color:#e65540;background:#ffd3cc;border-radius:50%;margin:0 auto 5px auto; position: relative; z-index: 2;}
#progressbar li:after{content:'';width:100%;height:2px;background:#ffd3cc;position:absolute;left:-50%;top:11px;z-index:1}
#progressbar li:first-child:after{content:none}
#progressbar li.active:before,
#progressbar li.active:after{background:#e65540;color:#fff}
.clear{clear:both}
.mensaje_validacion{padding:15px 0;font-size:15px;color:#ff7575}
#esperando_culqi{position:fixed;top:0;left:0;z-index:100;width:100%;height:100%;min-height:100%;background:rgba(0,0,0,.6);-webkit-transition:all 0.5s ease-out;-moz-transition:all 0.5s ease-out;-o-transition:all 0.5s ease-out;transition:all 0.5s ease-out}#esperando_culqi div.cuerpo{position:absolute;left:50%;top:42%;width:570px;margin-left:-270px;height:140px;padding:30px 20px;text-align:center;font-size:18px;font-weight:500;color:#81a1d0;background-color:#fff;box-shadow:0 0 70px 0 rgba(0,0,0,.8);border-radius:5px}

.mensaje_pedido 
{
  font-size: 16px;
  color: #555;
  line-height: 30px;
}
.mensaje_pedido .codigo
{
  display: inline-block;
  vertical-align: top;
  padding: 0px 6px;
  background: #f9dabf;
  color: #d06a1f;
  border-radius: 5px;
  font-weight: bold;
  margin-top: -3px;
  font-size: 15px;
}
.mensaje_pedido .pendiente
{
  display: inline-block;
  vertical-align: top;
  padding: 0px 6px;
  background: #ffe0b2;
  color: #b7742f;
  border-radius: 5px;
  font-weight: bold;
  margin-top: -3px;
  font-size: 15px;
}
.mensaje_pedido .aprobado
{
  display: inline-block;
  vertical-align: top;
  padding: 0px 6px;
  background: #b1e0c2;
  color: #348a25;
  border-radius: 5px;
  font-weight: bold;
  margin-top: -3px;
  font-size: 15px;
}
.mensaje_pedido a.size2
{
  max-width: 300px;
  width: 100%;
  float: left;
  margin: 10px 15px 10px 0px;
}
.mensaje_pedido a.size2 i
{
  margin-right: 5px;
}
.clear
{
  padding: 10px;
  clear: both;
}
.sweet-alert b
{
  font-weight: bold;
  font-family: Arial, sans-serif;
}


button[disabled],
button[disabled]:hover
{
  cursor: not-allowed;
  background: #f5f5f5;
  border: solid 1px #c5c5c5;
  color: #c5c5c5;
}

footer ul li i
{
  display: none !important;
}
footer ul.sub_menu
{
  display: none;

}
/*ESTILOS CHECKBOX*/
.div_checkbox 
{
  display: block;
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 14px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.div_checkbox input 
{
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.div_checkbox span 
{
  position: absolute;
  /*top: -1px;*/
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  /*background-color: #eee;*/
  background-color: #fff;
  border: solid 2px #d2d2d2;
}
.div_checkbox:hover input ~ span 
{
  /*background-color: #ccc;*/
}
.div_checkbox input:checked ~ span {
  /*background-color: #ec624c;*/
  background-color: #fff;
  border: solid 2px #ec8b5d;
}
.div_checkbox span:after 
{
  content: "";
  position: absolute;
  display: none;
}
.div_checkbox input:checked ~ span:after 
{
  display: block;
}
.div_checkbox span:after 
{
  /*left: 6px;
  top: 1px;
  width: 8px;
  height: 15px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);*/

  left: 5px;
  top: 0px;
  width: 7px;
  height: 13px;
  border: solid #ec8b5d;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
/*ESTILOS RADIO*/
.div_radio
{
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 14px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.div_radio input 
{
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.div_radio span.radio
{
  position: absolute;
  top: 10px;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #fff;
  border-radius: 50%;
  border: solid 2px #d2d2d2;
}
.div_radio:hover input ~ span.radio 
{
  /*background-color: #ccc;*/
}
.div_radio input:checked ~ span.radio {
  background-color: #ec8b5d;
  border: solid 2px #ec8b5d;
}
.div_radio span.radio:after 
{
  content: "";
  position: absolute;
  display: none;
}
.div_radio input:checked ~ span.radio:after 
{
  display: block;
}
.div_radio span.radio:after 
{
  left: 7px;
  top: 3px;
  width: 7px;
  height: 13px;
  border: solid #fff;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.pagination ul li
{
  display: inline-block;
  vertical-align: top;
  
}
.pagination ul li a
{
  font-family: Montserrat-Regular;
  font-size: 13px;
  color: #808080;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #eeeeee;
  margin: 6px;
  text-align: center;
  line-height: 35px;
  display: block;
}
.pagination ul li a.current,
.pagination ul li a:hover
{
  background-color: #222222;
  color: white;
}
/*FILTROS MOBILE PRODUCTOS*/
body.filter::before
{
  background-color: rgba(0,0,0,0.7) !important;
  content: "";
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  position: fixed;
  z-index: 1;   
}
.button-filtros-mobile
{
    padding: 8px 14px; 
    text-align: center; 
    font-size: 22px; 
    color: #565656; 
    cursor:pointer;
}
.button-filtros-mobile.open
{
    z-index: 100;
    position: fixed;
    right: 20px;
    top: 45%;
    background-color: #fff;
}
.button-filtros-mobile.open::before
{
    content: "X ";
    font-size: 22px;
    font-weight: bold;
}
.filtros-mobile
{
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    -ms-transition: all 1s ease;
    transition: all 1s ease;

    display: block !important;
    position: fixed;
    left: -300px;
    top: 0px;
    background: rgba(255,255,255,0.95);
    z-index: 10000;
    width: 300px;
}
.filtros-mobile.open
{
    box-shadow: 0px 0px 8px 0px rgba(0,0,0,0.95);
    left: 0px;
  
}
.filtros-mobile.open .leftbar 
{
  overflow-x: auto;
}
.tag-descuento_2
{
  position: absolute;
  right: 0px;
  top: 12px;
  background-color: #e65540;
  display: block;
  height: 24px;
  line-height: 24px;
  padding-right: 8px;
  color: #fff;
  font-size: 13px;
  z-index: 10;
}
.tag-descuento_2::after
{
  right: 100%;
  top: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: transparent;
  border-right-color: #e75353;
  border-width: 12px;
  margin-top: -12px;
}
.tag-descuento 
{
  width: 50px;
  height: 25px;
  line-height: 25px;
  padding-left: 15px;
  position: absolute;
  left: -8px;
  top: 20px;
  background: #e6553f;
  color: #fff;
  font-size: 13px;
  z-index: 2;
}
.tag-descuento:before, 
.tag-descuento:after 
{
  content: "";
  position: absolute;
}
.tag-descuento:before 
{
  height: 0;
  width: 0;
  top: -8.5px;
  left: 0.1px;
  border-bottom: 9px solid #4D6530;
  border-left: 9px solid transparent;
}
.tag-descuento:after 
{
  height: 0;
  width: 0;
  right: -9.5px;
  border-top: 12.5px solid transparent;
  border-bottom: 12.5px solid transparent;
  border-left: 10px solid #e6553f;
}
.wrap_promo {
  width: 100%;
  height: 188px;
  position: absolute;
  top: -8px;
  left: 8px;
  overflow: hidden;
}
.wrap_promo:before, .wrap_promo:after {
  content: ""; 
  position: absolute;
}
.wrap_promo:before {
  width: 35px;
  height: 8px;
  right: 100px;
  background: #4D6530;
  border-radius: 8px 8px 0px 0px;
}
.wrap_promo:after {
  width: 8px;
  height: 35px;
  right: 0px;
  top: 100px;
  background: #4D6530;
  border-radius: 0px 8px 8px 0px;
}
.tag-promocion 
{
  width: 200px;
  height: 30px;
  line-height: 30px;
  position: absolute;
  top: 40px;
  right: -50px;
  z-index: 2;
  overflow: hidden;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  border: 1px dashed #fff;
  box-shadow:0 0 0 3px #e6553f,  0px 21px 5px -18px rgba(0,0,0,0.6);
  background: #e6553f;
  text-align: center;
  color: #fff;
  font-size: 13px;
}



#alertas_carrito
{
  width: 100%;
  margin: 8px auto;
}

.product-checkout-review-order table td
{
  position: relative;
}
table td span.count_producto
{
  position: absolute;
  top: 3px;
  left: 2px;
  width: 20px;
  height: 20px;
  font-size: 11px;
  line-height: 20px;
  text-align: center;
  border-radius: 50%;
  background-color: #555;
  color: #eee;
}

.sombra
{
  box-shadow: 0 0 15px rgba(0,0,0,.1);
}
/* CHAT WHATSAPP */
#chat_whatsapp
{
    position: fixed;
    bottom: 15px;
    left: 25px;
    z-index: 1000;
    font-family: Montserrat-Regular;
}
#chat_whatsapp .content_ws
{
  display: none;
  box-shadow: 5px 5px 25px 0 rgba(46, 61, 73, 0.2);
  border-radius: 10px;
}
#chat_whatsapp .head
{
    background-color: rgb(37, 211, 102);
    padding: 15px 15px;
    color: #fff;
    font-size: 18px;
    border-radius: 10px 10px 0px 0px;
    position: relative;
}
#chat_whatsapp .head .fa-close
{
    position: absolute;
    top: 20px;
    right: 15px;
    color: #fff;
    font-size: 18px;
    opacity: 0.9;
    cursor: pointer;
}
#chat_whatsapp .head .fa-close:hover
{
    opacity: 0.7;
}
#chat_whatsapp .body
{
    background-color: #fff;
    border-left: solid 1px #ddd;
    border-right: solid 1px #ddd;
    border-radius: 0px 0px 10px 10px;
    width: 300px;
}
#chat_whatsapp .body a.item
{
   padding: 10px 13px;
   border-top: solid 1px #ddd;
   overflow: hidden;
   display: block;
}
#chat_whatsapp .body a.item:first-child
{
    border-top: none;
}
#chat_whatsapp .body a.item:hover
{
    background-color: #eee;
}
#chat_whatsapp .body a.item:last-child:hover
{
    background-color: #eee;
    border-radius: 0px 0px 10px 10px;
}
#chat_whatsapp .body a.item .icon
{
    display: inline-block;
    vertical-align: top;
    margin-top: 3px;
    font-size: 30px;
    color: rgb(37, 211, 102);
    float: left;
    width: 30px;
}
#chat_whatsapp .body a.item .nombre
{
    display: inline-block;
    vertical-align: top;
    font-size: 16px;
    color: #222;
    /*float: right;
    width: 82%;*/
    margin-top: 5px;
    margin-left: 10px;
}
#chat_whatsapp .body a.item .nombre span
{
    display: block;
    margin-top: 0px;
    font-size: 12px;
    color: #888;
}
#chat_whatsapp .flotante_ws
{
    background-color: rgb(37, 211, 102);
    padding: 15px 0px 10px 0px;
    line-height: 18px;
    text-align: center;
    color: #fff;
    font-size: 17px;
    border-radius: 50%;
    margin-top: 15px;
    /*box-shadow: 12px 15px 20px 0 rgba(46, 61, 73, 0.15);*/
    box-shadow: 0px 0px 5px rgba(60,60,60,.4);
    cursor: pointer;
    width: 70px;
    height: 70px;
}
#chat_whatsapp .flotante_ws i
{
    font-size: 45px;
    margin-right: 1px;
    margin-top: -3px;
    display: inline-block;
    vertical-align: top;
}

.text-size-12
{
  font-size: 12px !important;
}
.block2-price
{
  display: block;
  margin-top: 5px;
}
.block2-price del
{
  color: #555;
}
.logo_footer
{
  display: inline-block;
  vertical-align: top;
  margin: -5px 0px 0px 5px;
}

/* ALERT RENOVADOS */
.alert
{
    border-radius: 4px;
    box-shadow: 0 1px 2px rgba(0,0,0,.1);
    display: flex;
    flex-wrap: nowrap;
}
.alert-info {
    background: #eff9ff;
    border: solid 1px #65aaf1;
    border-top: solid 5px #65aaf1;
    color: #65aaf1;
}
.alert-success
{
    background: #f3ffef;
    border: solid 1px #8cd65d;
    border-top: solid 5px #8cd65d;
    color: #70b147;
}
.alert-danger
{
    background: #fff1f1;
    border: solid 1px #ec7e7e;
    border-top: solid 5px #ec7e7e;
    color: #bf5f5f;
}

.alert-informativo
{
    background: #f9f9fc;
    border: solid 1px #d4d3d3;
    border-top: solid 5px #d4d3d3;
    color: #808080;
    box-shadow: none;
    margin: 30px 0px 20px 0px;
    display: flex;
    flex-wrap: nowrap;
}
.alert-informativo b
{
    font-weight: 500;
}
.alert-informativo i
{
    color: #22b9ff;
}

.alert .alert-icon
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;

    font-size: 40px;
    font-weight: 400;
    margin-right: 10px;
}
.alert .alert-text
{
    -ms-flex-item-align: center;
    align-self: center;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.text-categoria-principal
{
  position: relative;
}

.menu_categorias li a:hover
{
  color: #ff005a !important;
}




@media (max-width: 768px) {

  .botones_proceso
  {
    margin: 8px 0px;
  }

  .botones_proceso a,
  .botones_proceso button
  {
    width: 100%;
    float: none;
    margin-left: 0px;
    margin-bottom: 10px;
  }
  .s-text7
  {
    font-size: 16px;
  }
  .form_direccion input,
  .form_direccion select,
  .form_direccion textarea,
  .form_perfil input,
  .form_perfil select,
  .form_perfil textarea
  {
    font-size: 16px;
    background-color: #fff;
  }

  #chat_whatsapp
  {
    left: 2%;
    width: 82%;
  }
  
}

