@charset "utf-8";
/* CSS Document */

/******************************

COLOR PALETTE


 

[Table of Contents]

1. Fonts
2. Body and some general stuff
3. Main Slider
4. Banner
5. New Arrivals
	5.1 New Arrivals Sorting
	5.2 New Arrivals Products Grid
    5.3 Estado del producto
6. Deal of the week
7. Best sellers
	7.1 Slider Nav
8. Blogs
9. Products
    9.1 Products shorting
10. Sidebar
11. Main content
12. Breadcrumbs
13. Single product section
14. Product details
15. Tabs
    15.1 Description
    15.2 Additional Info
    15.3 Reviews
16. Add reviews
17. Google map
18. Contact us
19. Follow us
20. Contact form

******************************/

/***********
1. Fonts
***********/

@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700,900');
/*********************************
2. Body and some general stuff
*********************************/

* {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    line-height: 23px;
    font-weight: 400;
    background: #FFFFFF;
    color: #1e1e27;
}

div {
    display: block;
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

ul {
    list-style: none;
    margin-bottom: 0px;
}

p {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    line-height: 1.7;
    font-weight: 500;
    color: #989898;
    -webkit-font-smoothing: antialiased;
    -webkit-text-shadow: rgba(0, 0, 0, .01) 0 0 1px;
    text-shadow: rgba(0, 0, 0, .01) 0 0 1px;
}

p a {
    display: inline;
    position: relative;
    color: inherit;
    border-bottom: solid 2px #fde0db;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

a, a:hover, a:visited, a:active, a:link {
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
    -webkit-text-shadow: rgba(0, 0, 0, .01) 0 0 1px;
    text-shadow: rgba(0, 0, 0, .01) 0 0 1px;
}

p a:active {
    position: relative;
    color: #FF6347;
}

p a:hover {
    color: #FF6347;
    background: #fde0db;
}

p a:hover::after {
    opacity: 0.2;
}

::selection {
    background: #fde0db;
    color: #FF6347;
}

p::selection {
    background: #fde0db;
}

h1 {
    font-size: 72px;
}

h2 {
    font-size: 40px;
}

h3 {
    font-size: 28px;
}

h4 {
    font-size: 24px;
}

h5 {
    font-size: 16px;
}

h6 {
    font-size: 14px;
}

h1, h2, h3, h4, h5, h6 {
    color: #282828;
    -webkit-font-smoothing: antialiased;
    -webkit-text-shadow: rgba(0, 0, 0, .01) 0 0 1px;
    text-shadow: rgba(0, 0, 0, .01) 0 0 1px;
}
::-webkit-input-placeholder {
    font-size: 12px !important;
    font-weight: 500;
    color: #777777 !important;
}

:-moz-placeholder
/* older Firefox*/

    {
    font-size: 12px !important;
    font-weight: 500;
    color: #777777 !important;
}

::-moz-placeholder
/* Firefox 19+ */

    {
    font-size: 12px !important;
    font-weight: 500;
    color: #777777 !important;
}

:-ms-input-placeholder {
    font-size: 12px !important;
    font-weight: 500;
    color: #777777 !important;
}

::input-placeholder {
    font-size: 12px !important;
    font-weight: 500;
    color: #777777 !important;
}

.a_clic{
  font-size: 14px;
  line-height: 16px;
  font-weight: 500;
  color: #e30613;
  border-bottom: solid 1px #e30613;
  margin-top: 12px;
}
.a_clic:hover {
  color: #e10130;
}

.form-control {
    color: #db5246;
}

section {
    display: block;
    position: relative;
    box-sizing: border-box;
}

.clear {
    clear: both;
}

.clearfix::before, .clearfix::after {
    content: "";
    display: table;
}

.clearfix::after {
    clear: both;
}

.clearfix {
    zoom: 1;
}

.float_left {
    float: left;
}

.float_right {
    float: right;
}

.trans_200 {
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

.trans_300 {
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.trans_400 {
    -webkit-transition: all 400ms ease;
    -moz-transition: all 400ms ease;
    -ms-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    transition: all 400ms ease;
}

.trans_500 {
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.fill_height {
    height: 100%;
}

.super_container {
    width: 100%;
    overflow: hidden;
}

/*********************************
3 Main Slider
*********************************/

.main_slider {
    width: 100%;
    height: 700px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    margin-top: 150px;
}

.main_slider_content {
    width: 60%;
}

.main_slider_content h6 {
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 29px;
}

.main_slider_content h1 {
    font-weight: 400;
    line-height: 1;
}

/****************************************
3.1 Button shopping cart y comprar ahora
****************************************/

.orange_button {
    display: -webkit-inline-box;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: -webkit-inline-flex;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: auto;
    height: 40px;
    background: #e30613;
    border-radius: 3px;
    padding: 10px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.orange_button:hover {
  background: #e10130 !important;
}

.orange_button a {
    display: block;
    color: #FFFFFF;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    line-height: 40px;
    width: 100%;
}

.blue_button {
    display: -webkit-inline-box;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: -webkit-inline-flex;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: auto;
    height: 40px;
    background: #303841;
    color: #fff;
    border-radius: 3px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.blue_button:hover {
    background: #1b3c59 !important;
}

.blue_button a {
    display: block;
    color: #FFFFFF;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    line-height: 40px;
    width: 100%;
}

.shop_now_button {
    width: 140px;
    margin-top: 32px;
}

/*********************************
4. Banner
*********************************/

.banner {
    width: 100%;
    margin-top: 30px;
}

.banner_item {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 265px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.banner_category {
    height: auto;
    background: #FFFFFF;
    min-width: 180px;
    padding-left: 25px;
    padding-right: 25px;
}

.banner_category a {
    display: block;
    color: #1e1e27;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    line-height: 38px;
    width: 100%;
    -webkit-transition: color 0.3s ease;
    -moz-transition: color 0.3s ease;
    -ms-transition: color 0.3s ease;
    -o-transition: color 0.3s ease;
    transition: color 0.3s ease;
}

.banner_category a:hover {
    color: #b5aec4;
}

/*********************************
5. New Arrivals
*********************************/

.new_arrivals {
    width: 100%;
}

.new_arrivals_title {
    margin-top: 74px;
}

/*********************************
5.1 New Arrivals Sorting
*********************************/

.new_arrivals_sorting {
    display: inline-block;
    border-radius: 3px;
    margin-top: 59px;
    overflow: visible;
}

.grid_sorting_button {
    height: 40px;
    min-width: 102px;
    padding-left: 25px;
    padding-right: 25px;
    cursor: pointer;
    border: solid 1px #ebebeb;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    background: #FFFFFF;
    border-radius: 3px;
    margin: 0;
    float: left;
    margin-left: -1px;
}

.grid_sorting_button:first-child {
    margin-left: 0px;
}

.grid_sorting_button.active:hover {
  background: #e10130 !important;
}

.grid_sorting_button.active {
    color: #FFFFFF;
  background: #e30613;
}

/*********************************
5.2 New Arrivals Products Grid
*********************************/

.product-grid {
    width: 100%;
    margin-top: 57px;
}

.product-item-1 {
    width: 20%;
    height: 380px;
    cursor: pointer;
}

.product-item-1::after {
    display: block;
    position: absolute;
    top: 0;
    left: -1px;
    width: calc(100% + 1px);
    height: 100%;
    pointer-events: none;
    content: '';
    border: solid 2px rgba(235, 235, 235, 0);
    border-radius: 3px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.product-item-1:hover::after {
    box-shadow: 0 25px 29px rgba(63, 78, 100, 0.15);
    border: solid 2px rgba(235, 235, 235, 1);
}

/*****************************
5.2.1 Estado del producto-
*****************************/

.product-item-1:hover .add_to_cart_button {
    visibility: visible;
    opacity: 1;
}

.product-item-1:hover .favorite {
    visibility: visible;
    opacity: 1;
}

/*********************************
6. Deal of the week
*********************************/

.deal_ofthe_week {
    width: 100%;
    margin-top: 41px;
    background: #eeeeee;
}

.deal_ofthe_week_img {
    height: 540px;
}

.deal_ofthe_week_img img {
    height: 100%;
}

.deal_ofthe_week_content {
    height: 100%;
}

.section_title {
    display: inline-block;
    text-align: center;
}

.section_title h2 {
    display: inline-block;
}

.section_title::after {
    display: block;
    position: absolute;
    top: calc(100% + 13px);
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 60px;
    height: 5px;
  background: #e30613;
    content: '';
}

.section_titleC::after {
  display: block;
  position: absolute;
  top: calc(100% + 13px);
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 60px;
  height: 5px;
  background: #e30613;
  content: '';
}

.timer {
    margin-top: 66px;
}

.timer li {
    display: inline-block;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: #FFFFFF;
    margin-right: 10px;
}

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

.timer_num {
    font-size: 48px;
    font-weight: 600;
  color: #e30613;
    margin-top: 10px;
}

.timer_unit {
    margin-top: 12px;
    font-size: 16px;
    font-weight: 500;
    color: #51545f;
}

.deal_ofthe_week_button {
    width: 60%;
    background: #1e1e27;
    margin-top: 52px;
}

.deal_ofthe_week_button_modal {
  width: 100%;
  background: #1e1e27;
  margin-top: 52px;
}

.deal_ofthe_week_button:hover, .deal_ofthe_week_button_modal:hover {
    background: #2b2b34 !important;
}

/*********************************
7. Best Sellers
*********************************/

.product_slider_container {
    width: 100%;
    height: 340px;
    margin-top: 73px;
}

.product_slider_container::after {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    background: #FFFFFF;
    content: '';
    z-index: 1;
}

.product_slider {
    overflow: visible !important;
}

.product_slider_item .product-item {
    height: 340px;
}

.product_slider_item {
    width: 20%;
}

.product_slider_item .product-item {
    width: 100% !important;
}

/*********************************
7.1 Slider Nav
*********************************/

.product_slider_nav {
    position: absolute;
    width: 30px;
    height: 70px;
    background: #d3d3d6;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 2;
    cursor: pointer;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.product_slider_container:hover .product_slider_nav {
    visibility: visible;
    opacity: 1;
}

.product_slider_nav i {
    color: #FFFFFF;
    font-size: 12px;
}

.product_slider_nav_left {
    top: 50%;
    left: 0;
}

.product_slider_nav_right {
    top: 50%;
    right: 0;
}

/*********************************
8. Blogs
*********************************/

.blogs {
    margin-top: 72px;
}

.blogs_container {
    margin-top: 53px;
}

.blog_item {
    height: 255px;
    width: 100%;
}

.blog_background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.blog_content {
    position: absolute;
    top: 30px;
    left: 30px;
    width: calc(100% - 60px);
    height: calc(100% - 60px);
    background: rgba(255, 255, 255, 0.9);
    padding-left: 10px;
    padding-right: 10px;
    visibility: hidden;
    opacity: 0;
    transform-origin: center center;
    -webkit-transform: scale(0.7);
    -moz-transform: scale(0.7);
    -ms-transform: scale(0.7);
    -o-transform: scale(0.7);
    transform: scale(0.7);
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.blog_item:hover .blog_content {
    visibility: visible;
    opacity: 1;
    transform: scale(1);
}

.blog_title {
    font-weight: 500;
    line-height: 1.25;
    margin-bottom: 0px;
}

.blog_meta {
    font-size: 12px;
    line-height: 30px;
    font-weight: 400;
    text-transform: uppercase;
    color: #51545f;
    margin-bottom: 0px;
    margin-top: 3px;
    letter-spacing: 1px;
}

.blog_more {
    font-size: 14px;
    line-height: 16px;
    font-weight: 500;
  color: #e30613;
  border-bottom: solid 1px #e30613;
    margin-top: 12px;
}

.blog_more:hover {
  color: #e10130;
}

/*********************************
9. Products
*********************************/

.products_iso {
    display: block;
    height: auto;
    margin: 0 auto;
    width: calc(100% - 100px);
}

.section_title, .section_titleC {
    display: inline-block;
    text-align: center;
}

.section_title h2, .section_titleC h2 {
    display: inline-block;
}

.section_title::after {
    display: block;
    position: absolute;
    top: calc(100% + 13px);
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 60px;
    height: 5px;
  background: #e30613;
    content: '';
}

.section_titleC::after {
  display: block;
  position: absolute;
  top: calc(100% + -20px);
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 60px;
  height: 5px;
  background: #e30613;
  content: '';
}

/*********************************
9.1 Product Sorting
*********************************/

.product_sorting_container_bottom {
    margin-top: 24px;
}

.product_sorting_container_bottom .product_sorting {
    float: right;
}

.product_sorting {
    display: inline-block;
}

.product_sorting>li {
    display: inline-block;
    position: relative;
    width: 185px;
    height: 40px;
    line-height: 40px;
    cursor: pointer;
    border: solid 1px #ecedee;
    padding-left: 20px;
    padding-right: 7px;
    margin-right: 16px;
}

.product_sorting_container_bottom .product_sorting>li {
    width: 144px;
    margin-right: 0px;
    padding-right: 12px;
}

.product_sorting_container_bottom .product_sorting li span:nth-child(2) {
    margin-left: 24px;
}

.product_sorting li i {
    float: right;
    line-height: 40px;
    color: #51545f;
}

.product_sorting li ul {
    display: block;
    position: absolute;
    right: 0;
    top: 120%;
    margin: 0;
    width: 100%;
    background: #FFFFFF;
    visibility: hidden;
    opacity: 0;
    z-index: 1;
    box-shadow: 0 15px 25px rgba(63, 78, 100, 0.15);
    -webkit-transition: opacity 0.3s ease;
    -moz-transition: opacity 0.3s ease;
    -ms-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
    transition: all 0.3s ease;
}

.product_sorting>li:hover ul {
    visibility: visible;
    opacity: 1;
    top: calc(100% + 1px);
}

.product_sorting li ul li {
    display: block;
    text-align: center;
    padding-left: 10px;
    padding-right: 10px;
}

.product_sorting li ul li span {
    display: block;
    height: 40px;
    line-height: 40px;
    border-bottom: solid 1px #dddddd;
    color: #51545f;
    -webkit-transition: opacity 0.3s ease;
    -moz-transition: opacity 0.3s ease;
    -ms-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
    transition: all 0.3s ease;
}

.product_sorting li ul li span:hover {
    color: #b5aec4;
}

.product_sorting li ul li:last-child span {
    border-bottom: none;
}

.product_sorting li span:nth-child(2) {
    margin-left: 71px;
}

.pages {
    display: inline-block;
    /* float: right; */
}

.product_sorting_container_bottom .pages {
    float: left;
}

.page_current {
    display: inline-block;
    position: relative;
    width: 40px;
    height: 40px;
    line-height: 40px;
    cursor: pointer;
    text-align: center;
    border: solid 1px #ecedee;
    margin-right: 16px;
}

.product_sorting_container_bottom .pages .page_current {
  background: #e30613;
    border: none;
}

.page_current span {
    color: #51545f;
}

.product_sorting_container_bottom .pages .page_current span {
    color: #FFFFFF;
}

.page_selection {
    display: block;
    position: absolute;
    right: 0;
    top: 120%;
    margin: 0;
    width: 100%;
    background: #FFFFFF;
    visibility: hidden;
    opacity: 0;
    z-index: 1;
    box-shadow: 0 15px 25px rgba(63, 78, 100, 0.15);
    -webkit-transition: opacity 0.3s ease;
    -moz-transition: opacity 0.3s ease;
    -ms-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
    transition: all 0.3s ease;
}

.page_selection li {
    display: block;
    text-align: center;
    padding-left: 10px;
    padding-right: 10px;
}

.page_selection li a {
    display: block;
    height: 40px;
    line-height: 40px;
    border-bottom: solid 1px #dddddd;
    color: #51545f;
    -webkit-transition: opacity 0.3s ease;
    -moz-transition: opacity 0.3s ease;
    -ms-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
    transition: all 0.3s ease;
}

.page_selection li a:hover {
    color: #b5aec4;
}

.page_current:hover .page_selection {
    visibility: visible;
    opacity: 1;
    top: calc(100% + 1px);
}

.page_total {
    display: inline-block;
    line-height: 40px;
    margin-right: 31px;
}

.page_total span {
    margin-right: 14px;
}

.page_next {
    display: inline-block;
    line-height: 40px;
    cursor: pointer;
}

.page_next:hover i {
    color: #b5aec4;
}

.page_next i {
    font-size: 18px;
    color: #51545f;
}

.showing_results {
    font-size: 16px;
    height: 40px;
    line-height: 40px;
    float: right;
    margin-right: 34px;
}

/*********************************
10. Sidebar
*********************************/

.product_section_container {
    margin-top: 170px;
}

.sidebar {
    float: left;
    width: 200px;
    padding-right: 17px;
}

.sidebar_section {
    padding-bottom: 35px;
    margin-bottom: 50px;
    border-bottom: solid 1px #ebebeb;
}

.sidebar_title h5 {
    font-size: 18px;
    margin-bottom: 21px;
}

.sidebar_categories li.active a {
  color: #e30613;
}

.sidebar_categories li.active:hover a {
  color: #e10130;
}

.sidebar_categories li a {
    font-size: 14px;
    line-height: 40px;
    color: #51545f;
}

.sidebar_categories li a:hover {
    color: #b5aec4;
}

.sidebar_categories li a span {
    margin-right: 5px;
}

#slider-range {
    margin-left: 7px !important;
}

#amount {
    margin-top: 8px;
    color: #1e1e27 !important;
    font-size: 16px !important;
    font-weight: 500 !important;
}

.filter_button {
    width: 100%;
    height: 30px;
    background: #1e1e27;
    text-align: center;
    margin-top: 25px;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.filter_button:hover {
    background: #34343f;
}

.filter_button span {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 30px;
    color: #FFFFFF;
}

.checkboxes li {
    height: 40px;
    line-height: 40px;
}

.checkboxes li.active i {
  color: #e30613;
    margin-right: 21px;
}

.checkboxes li.active i::after {
    display: block;
    position: absolute;
    top: 1px;
    left: 1px;
    font-family: 'FontAwesome';
    font-size: 10px;
    content: '\f00c';
    color: #FFFFFF;
}

.checkboxes {
    height: 200px;
    overflow: hidden;
}

.checkboxes.active {
    height: auto;
}

.checkboxes li i {
    position: relative;
    color: #b3b7c8;
    cursor: pointer;
    margin-right: 22px;
}

.checkboxes li span {
    font-family: 'Poppins', sans-serif;
    color: #51545f;
}

.show_more {
    display: inline-block;
    cursor: pointer;
}

.show_more span {
    height: 40px;
    line-height: 40px;
  color: #e30613;
}

.show_more span:first-child {
    margin-right: 11px;
}

/*********************************
11. Main Content
*********************************/

.main_content {
    float: center;
    width: calc(100% - 200px);
    padding-left: 20vh;
}

.main_contents {
    margin-right: 200px;
    width: calc(100% - 200px);
}

.product-grid {
    width: 100%;
    margin-top: 57px;
}

.product-item {
    width: 25%;
    height: 380px;
    cursor: pointer;
}

.product-item::after {
    display: block;
    position: absolute;
    top: 0;
    left: -1px;
    width: calc(100% + 1px);
    height: 100%;
    pointer-events: none;
    content: '';
    border: solid 2px rgba(235, 235, 235, 0);
    border-radius: 3px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.product-item:hover::after {
    box-shadow: 0 25px 29px rgba(63, 78, 100, 0.15);
    border: solid 2px rgba(235, 235, 235, 1);
}

.product {
    width: 100%;
    border-right: solid 1px #e9e9e9;
}

.product_image {
    width: 100%;
}

.product_image img {
    width: 100%;
}

.product_info {
    text-align: center;
    padding-left: 10px;
    padding-right: 10px;
}

.cod {
    color: rgba(0, 93, 161, .7);
    margin-left: -40%;
    font-size: 12px;
}

.cod1 {
    color: rgba(0, 93, 161, .7);
    font-size: 16px;
}

.product_name {
    margin-top: 12px;
}

.product_name a {
    color: #1e1e27;
    line-height: 20px;
}

.product_name:hover a {
    color: #b5aec4;
}

.discount .product_info .product_price {
    font-size: 14px;
}

.product_price {
    font-size: 16px;
  color: #e30613;
    font-weight: 600;
}

.product_price span {
    font-size: 12px;
    margin-left: 10px;
    color: #b5aec4;
    text-decoration: line-through;
}

.product_bubble {
    position: absolute;
    top: 15px;
    width: 50px;
    height: 22px;
    border-radius: 3px;
    text-transform: uppercase;
}

.product_bubble span {
    font-size: 12px;
    font-weight: 600;
    color: #FFFFFF;
}

.product_bubble_right::after {
    content: ' ';
    position: absolute;
    width: 0;
    height: 0;
    left: 6px;
    right: auto;
    top: auto;
    bottom: -6px;
    border: 6px solid;
}

.product_bubble_left::after {
    content: ' ';
    position: absolute;
    width: 0;
    height: 0;
    left: auto;
    right: 6px;
    bottom: -6px;
    border: 6px solid;
}

.product_bubble_oferta::after {
  border-color: transparent transparent transparent #e30613;
}

.product_bubble_left::after {
    border-color: #00adb5 #00adb5 transparent transparent;
}

.product_bubble_venta::after {
    border-color: transparent transparent transparent #303841;
}

.product_bubble_oferta {
  background: #e30613;
}

.product_bubble_nuevo {
    background: #00adb5;
}

.product_bubble_venta {
    background: #303841;
}

.product_bubble_left {
    left: 15px;
}

.product_bubble_right {
    right: 15px;
}

.add_to_cart_button {
    width: 100%;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.add_to_cart_button a {
    font-size: 12px;
    font-weight: 600;
}

.product-item:hover .add_to_cart_button {
    visibility: visible;
    opacity: 1;
}

.favorite {
    position: absolute;
    top: 15px;
    right: 15px;
    color: #b9b4c7;
    width: 17px;
    height: 17px;
    visibility: hidden;
    opacity: 0;
}

.favorite_left {
    left: 15px;
}

.favorite.active {
    visibility: visible;
    opacity: 1;
}

.product-item:hover .favorite {
    visibility: visible;
    opacity: 1;
}

.favorite.active::after {
    font-family: 'FontAwesome';
    content: '\f004';
    color: #fe4c50;
}

.favorite::after {
    font-family: 'FontAwesome';
    content: '\f08a';
}

.favorite:hover::after {
    color: #fe4c50;
}

/*********************************
12. Breadcrumbs
*********************************/

.breadcrumbs {
    width: 100%;
    height: 60px;
    border-bottom: solid 1px #ebebeb;
    margin-bottom: 58px;
}

.breadcrumbs ul li {
    display: inline-block;
    margin-right: 17px;
}

.breadcrumbs ul li.active a {
    color: #b9b4c7;
}

.breadcrumbs ul li i {
    margin-right: 17px;
}

.breadcrumbs ul li a {
    color: #51545f;
}

/*********************************
13. Single Product Section
*********************************/

.single_product_container {
    margin-top: 150px;
    padding-bottom: 80px;
    border-bottom: solid 1px #ebebeb;
}

.single_product_thumbnails {
    height: 527px;
}

.single_product_thumbnails ul li {
    position: relative;
    height: 136px;
    margin-bottom: 30px;
    cursor: pointer;
}

.single_product_thumbnails ul li::after {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  border: solid 1px #e10130;
    content: '';
    visibility: hidden;
}

.single_product_thumbnails ul li.active::after, .single_product_thumbnails ul li:hover::after {
    visibility: visible;
}

.single_product_thumbnails ul li img {
    width: 100%;
}

.image_col {
    padding-right: 30px;
}

.single_product_image {
    width: 100%;
    height: 495px;
}

.single_product_image_background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

/*********************************
14. Product Details
*********************************/

.product_details {
    width: 100%;
}

.product_details_title {
    font-weight: 500;
    line-height: 30px;
}

.product_details_title p {
    margin-top: 12px;
}

.free_delivery {
    background: #f5f5f5;
    margin-top: 53px;
}

.free_delivery i {
    display: inline-block;
}

.free_delivery span:last-child {
    display: inline-block;
    height: 40px;
    line-height: 40px;
    text-transform: uppercase;
}

.free_delivery span:first-child {
    display: inline-block;
    margin-right: 19px;
    font-size: 16px;
    -webkit-transform: translateY(-1px);
    -moz-transform: translateY(-1px);
    -ms-transform: translateY(-1px);
    -o-transform: translateY(-1px);
    transform: translateY(-1px);
}

.original_price {
    font-weight: 500;
    color: #b9b4c7;
    text-decoration: line-through;
    line-height: 30px;
    margin-top: 21px;
}

.product_price_1 {
    display: inline-block;
    font-size: 24px;
  color: #e30613;
    font-weight: 500;
    line-height: 30px;
    margin-top: 2px;
}

.star_rating {
    display: inline-block;
    margin-left: 33px;
    margin-top: 3px;
}

.star_rating li {
    display: inline-block;
    margin-right: -2px;
    cursor: pointer;
}

.star_rating li i {
    color: #fac451;
    font-size: 20px;
}

.product_color {
    margin-top: 27px;
}

.product_color ul {
    display: inline-block;
    margin-left: 26px;
}

.product_color ul li {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 29px;
    cursor: pointer;
}

.quantity {
    width: 100%;
    height: 40px;
    margin-top: 23px;
}

.quantity_selector {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 132px;
    height: 100%;
    border: solid 1px #e5e5e5;
    margin-left: 29px;
}

.quantity_selector span {
    font-weight: 500;
    color: #232530;
}

.plus, .minus {
    padding-left: 14px;
    padding-right: 14px;
    cursor: pointer;
}

.plus:hover, .minus:hover {
    color: #b5aec4;
}

.add_to_cart_button {
    width: 100%;
    margin-left: 0;
    font-size: 12px !important;
}

.product_favorite {
    width: 40px;
    height: 100%;
    margin-left: 22px;
    border: solid 1px #e5e5e5;
    border-radius: 2px;
    cursor: pointer;
}

.product_favorite:hover::after {
  color: #e10130;
}

.product_favorite::after {
    font-family: 'FontAwesome';
    content: '\f08a';
    font-size: 14px;
}

.product_favorite.active::after {
    content: '\f004';
  color: #e10130;
}

/*********************************
15. Tabs
*********************************/

.tabs_section_container {
    width: 100%;
    padding-bottom: 80px;
    border-bottom: solid 1px #ebebeb;
}

.tabs_container {
    margin-top: 66px;
    margin-bottom: 66px;
}

.tab {
    margin-right: 50px;
    cursor: pointer;
}

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

.tab span {
    height: 40px;
    line-height: 40px;
    font-size: 16px;
    font-weight: 500;
    color: #1e1e27;
}

.tab:hover span {
    color: #b5aec4;
}

.tab.active span {
  color: #e30613;
  border-bottom: solid 1px #e30613;
}

.tab_container {
    width: 100%;
    display: none;
}

.tab_container.active {
    display: block;
}

/*********************************
15.1 Description
*********************************/
.tab_title {
    margin-bottom: 98px;
}

.tab_title h4 {
    display: inline-block;
  color: #e30613;
  border-bottom: solid 1px #e30613;
}

.tab_text_block {
    margin-bottom: 133px;
}

.tab_text_block p {
    font-weight: 400;
    margin-top: 10px;
}

.tab_image {
    width: 100%;
    margin-bottom: 131px;
}

.tab_image img {
    width: 100%;
}

.desc_last {
    margin-bottom: 0px;
}

/*********************************
15.2. Additional Info
*********************************/

.additional_info_col p span {
    margin-left: 22px;
}

.additional_info_title {
    margin-bottom: 48px;
}

/*********************************
15.3 Reviews
*********************************/

.reviews_title {
    margin-bottom: 58px;
}

.user_review_container {
    width: 100%;
    margin-bottom: 37px;
}

.reviews_col {
    padding-right: 30px;
}

.user_pic {
    width: 70px;
    height: 70px;
    background: #ebebeb;
    border-radius: 50%;
}

.user_rating .star_rating {
    margin-left: 5px;
    margin-top: 13px;
}

.user_rating .star_rating li {
    margin-right: -3px;
}

.user_rating .star_rating li i {
    font-size: 12px;
}

.review {
    padding-left: 30px;
}

.review_date {
  color: #e30613;
    margin-top: -4px;
}

.user_name {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 18px;
}

.review p {
    font-weight: 400;
}

/*********************************
16. Add Review
*********************************/

.add_review {
    margin-top: 94px;
}

#review_form>div {
    margin-bottom: 40px;
}

#review_form div:nth-child(2) h1 {
    display: inline-block;
}

#review_form div:nth-child(2) {
    margin-bottom: 20px;
}

#review_form>div:last-child {
    margin-bottom: 0px;
}

.add_review h1 {
    font-size: 18px;
    font-weight: 500;
}

.form_input {
    display: block;
    width: 100%;
    height: 50px;
    border: solid 1px #e5e5e5;
    padding-left: 20px;
}

.input_name {
    margin-bottom: 19px;
    margin-top: 31px;
}

.input_review {
    display: block;
    width: 100%;
    border: solid 1px #e5e5e5;
    margin-top: 23px;
    padding-left: 20px;
    padding-top: 13px;
}

.user_star_rating {
    display: inline-block;
    margin-left: 18px;
}

.user_star_rating li {
    display: inline-block;
    margin-right: -3px;
    cursor: pointer;
}

.user_star_rating li i {
    color: #f5c136;
    font-size: 18px;
}

.review_submit_btn {
    width: 170px;
    border: none;
    color: #FFFFFF;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}

/*********************************
517 Google Map
*********************************/

.contact_container {
    margin-top: 150px;
    padding-bottom: 80px;
    border-bottom: solid 1px #ebebeb;
}

#google_map {
    width: 100%;
    height: 507px;
    margin-bottom: 59px;
    z-index: 1;
}

.map_container {
    width: 100%;
    height: 100%;
    overflow: hidden;
    box-shadow: 0px 27px 59px rgba(0, 0, 0, 0.15);
}

#map {
    width: 100%;
    height: calc(100% + 30px);
}

/*********************************
18. Contact Us
*********************************/

.contact_contents {
    padding-right: 30px;
}

.contact_contents h1, .follow_us_contents h1, .get_in_touch_contents h1 {
    font-size: 40px;
    font-weight: 500;
}

.contact_contents p, .get_in_touch_contents p {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 0px;
}

.contact_contents div {
    margin-top: 22px;
}

.contact_contents div:first-of-type {
    margin-top: 39px;
}

/*********************************
19. Follow Us
*********************************/

.follow_us_contents {
    margin-top: 32px;
}

.social {
    margin-top: 20px;
}

.social li {
    margin-right: 12px;
}

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

.social li a {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    font-size: 22px;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.social li a i {
    color: #FFFFFF;
}

.social li:hover a {
    transform: translateY(-5px);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.3);
}

/*********************************
20. Contact Form
*********************************/

.form_input {
    display: block;
    width: 100%;
    height: 50px;
    border: solid 1px #e5e5e5;
    padding-left: 20px;
    font-size: 16px;
    margin-bottom: 20px;
}

.input_message {
    width: 100%;
    margin-bottom: 15px;
    font-size: 16px;
    padding-bottom: 15px;
}

.form_input:focus, #newsletter_email:focus {
    border: solid 1px #7f7f7f !important;
    box-shadow: none !important;
}

.message_submit_btn {
    background: #1e1e27;
    color: #FFFFFF;
    text-transform: uppercase;
    width: 165px;
    border: none;
    height: 46px;
    cursor: pointer;
}

.message_submit_btn:hover {
    background: #2b2b34 !important;
}

:focus {
    outline: none !important;
}

.input_ph::-webkit-input-placeholder {
    font-size: 12px !important;
    font-weight: 400;
    color: #b9b4c7 !important;
}

.input_ph:-moz-placeholder
/* older Firefox*/

    {
    font-size: 12px !important;
    font-weight: 400;
    color: #b9b4c7 !important;
}

.input_ph::-moz-placeholder
/* Firefox 19+ */

    {
    font-size: 12px !important;
    font-weight: 400;
    color: #b9b4c7 !important;
}

.input_ph:-ms-input-placeholder {
    font-size: 12px !important;
    font-weight: 400;
    color: #b9b4c7 !important;
}

.input_ph::input-placeholder {
    font-size: 12px !important;
    font-weight: 400;
    color: #b9b4c7 !important;
}

textarea {
    border: solid 1px #e5e5e5;
    padding-left: 20px;
    padding-top: 15px;
}

textarea:hover {
    border-color: #7f7f7f;
}

.input_name {
    margin-bottom: 19px;
    margin-top: 31px;
}

.input_review {
    display: block;
    width: 100%;
    border: solid 1px #e5e5e5;
    margin-top: 23px;
    padding-left: 20px;
    padding-top: 13px;
}

.user_star_rating {
    display: inline-block;
    margin-left: 18px;
}

.user_star_rating li {
    display: inline-block;
    margin-right: -3px;
    cursor: pointer;
}

.user_star_rating li i {
    color: #f5c136;
    font-size: 18px;
}

.review_submit_btn {
    width: 170px;
    border: none;
    color: #FFFFFF;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}

.column.left, .column.right {
  display: block;
  position: relative;
  font-size: 1rem;
  width: 100%;
  min-height: 0;
}
@media (min-width: 641px) {
  .column.left, .column.right {
    display: inline-block;
    width: 100%;
    min-height: 45vh;
    border-radius: 20px;
  }

  .column.right {
    margin-left: 50%;
  }
}

@media (max-width: 640px) {
  .column.left, .column.right {
    display: inline-block;
    width: 100%;
    min-height: 45vh;
    border-radius: 20px;
  }

  .column.right {
    margin-left: 50%;
  }
}

.video-banner {
  display: block;
}
@media (min-width: 641px) {
  .video-banner {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 0;
  }
}

@media (max-width: 640px) {
  .video-banner {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 0;
  }
}

.video-banner .video-banner-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  background-color: rgba(0,0,0,.5);
  border-radius: 20px;
}
.video-banner p{
  bottom: 4.5rem;
  color: #fff;
  display: block;
  font-family: 'Poppins', sans-serif;
  margin: 0 47%;
  position: absolute;
  text-transform: uppercase;
}
.video-banner-headline {
  position: absolute;
  left: 1.5rem;
  bottom: 0.75em;
  font-family: 'Poppins', sans-serif;
  font-size: 1.25em;
  font-weight: 900;
  line-height: 1.0em;
  color: #fff;
  letter-spacing: 0.045em;
  margin: 0 10%;
}
@media (min-width: 641px) {
  .video-banner-headline {
    left: 2em;
    bottom: 0.75em;
    font-size: 1.5em;
    line-height: 1.5em;
  }
}
.video-banner-icon-play {
  position: absolute;
  left: 50%;
  top: 50%;

  display: block;
  width: 2.5em;
  height: 2.5em;

  -webkit-transform: translateX(-50%) translateY(-50%) scale(1.0);
  -moz-transform: translateX(-50%) translateY(-50%) scale(1.0);
  -ms-transform: translateX(-50%) translateY(-50%) scale(1.0);
  -o-transform: translateX(-50%) translateY(-50%) scale(1.0);
  transform: translateX(-50%) translateY(-50%) scale(1.0);

  -webkit-transition: 
    all 0.2s ease-out 0.05s;
  transition: 
    all 0.2s ease-out 0.05s;
}
@media (min-width: 641px) {
  .video-banner-icon-play {
    width: 4.5em;
    height: 4.5em;
  }
}
.video-banner-icon-play:hover {
  -webkit-transform: translateX(-50%) translateY(-50%) scale(1.2);
  -moz-transform: translateX(-50%) translateY(-50%) scale(1.2);
  -ms-transform: translateX(-50%) translateY(-50%) scale(1.2);
  -o-transform: translateX(-50%) translateY(-50%) scale(1.2);
  transform: translateX(-50%) translateY(-50%) scale(1.2);
  background: transparent;
}

/* Video Modal
-----------------------------------------*/
.video-modal,
.video-modal .overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3000;
}
.video-modal {
  overflow: hidden;
  position: fixed;
  opacity: 0.0;

  -webkit-transform: translate(500%,0%);
  transform: translate(500%,0%);

  -webkit-transition: -webkit-transform 0s linear 0s;
  transition: transform 0s linear 0s;


  /* using flexbox for vertical centering */

  /* Flexbox display */
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;

  /* Vertical alignment */
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;

  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
}
.video-modal .overlay {
  z-index: 0;
  background: rgba(28, 64, 140,0.82); /* overlay color */

  opacity: 0.0;

  -webkit-transition: opacity 0.2s ease-out 0.05s;
  transition: opacity 0.2s ease-out 0.05s;
}


.video-modal-content {
  position: relative;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  z-index: 1;

  margin: 0 auto;

  overflow-y: visible;

  background: #000;

  width: calc(100% - 12em);
  height: 0;
  padding-top: calc((100% - 12em) * 0.5625); /* 16:9 calc */
}

/* Scaling to fit within the current Viewport size:
When viewport aspect ratio is greater than 16:9
work off the height instead of the width for calc */
@media (min-aspect-ratio: 16/9) {
  .video-modal-content {
    width: 0;
    height: calc(100vh - 10em);
    padding-top: 0;
    padding-left: calc((100vh - 10em) * 1.7778); /* 16:9 calc */
  }
}

/* Mobile Layout Tweaks - side margins reduced */
@media (max-width: 640px) {
  .video-modal-content {
    width: calc(100% - 1em);
    padding-top: calc((100% - 1em) * 0.5625); /* 16:9 calc */
  }
}

/* modal close button */
.close-video-modal {
  display: block;
  position: absolute;
  right: 0;
  top: -40px;
  text-decoration: none;
  font-size: 10px;
  font-weight: bold;
  color: #fff;
}

/* set the iframe element to stretch to fit its parent element */
iframe#youtube {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;

  background: #000;
  box-shadow: 0px 2px 16px rgba(0,0,0,0.5);
}

/* show the modal: 
add class to the body to reveal */
.show-video-modal .video-modal {
  opacity: 1.0;

  transform: translate(0%,0%);
  -webkit-transform: translate(0%,0%);
}
.show-video-modal .video-modal .overlay {
  opacity: 1.0;
}
.show-video-modal .video-modal-content {
  transform: translate(0%,0%);
  -webkit-transform: translate(0%,0%);
}

a .logo {
  height:65px;
  width:128px; 
}

.h2 {
  font-size: 38px;
}

a .whatsapp {
  color:#25D366;
  font-size:25px;
}

.btn-ws {
    background-color:#25D366;
    width: 100%
}

.btn-ws:hover {
    background-color:#25D373 !important;
}

.btn-fb {
    background-color:#3b5998;
    width: 100%;
}

.btn-fb:hover {
    background-color: #3b5973 !important;
}

.btn-tlf {
    width: 100%
}