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

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

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/*********************************
2. Body and some general stuff
*********************************/

*
{
	margin: 0;
	padding: 0;
	-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;
}
html {
	scroll-behavior: smooth;
  }
body
{
	font-family: 'Poppins', sans-serif;
	font-size: 14px;
	font-weight: 400;
	background: #FFFFFF;
	color: #2f2f2f;
}
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: calc(14px + 0.2vw);
    line-height: 1.5;
    font-weight: 400;
    color: black;
	-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;
}

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: #FFFFFF;
	background: #ffa07f;
}
p a:hover::after
{
	opacity: 0.2;
}

h1{font-size: calc(48px + 0.2vw);}
h2{font-size: calc(36px + 0.2vw);}
h3{font-size: calc(24px + 0.2vw);}
h4{font-size: calc(18px + 0.2vw);}
h5{font-size: calc(14px + 0.2vw);}
h1, h2, h3, h4, h5, h6
{
	font-family: 'Poppins', sans-serif;
	-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;
}

.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;
}
.prlx_parent
{
	overflow: hidden;
}
.prlx
{
	height: 130% !important;
}
.nopadding
{
	padding: 0px !important;
}

.section_subtitle
{
	font-size: 14px;
	font-weight: 600;
	color: #1b74e4;
	text-transform: uppercase;	
}
.section_title
{
	font-family: 'Playfair Display', serif;
    font-size: calc(38px + 0.2vw);
    color: #2f2f2f;
    margin-top: 0;
    font-weight: 600;
}
.button
{
	width: 142px;
	height: 46px;
	background: #1b74e4;
	text-align: center;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
.button a
{
	display: block;
	font-size: calc(12px + 0.2vw);
	text-transform: uppercase;
	color: #FFFFFF;
	line-height: 46px;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
.button:hover
{
	background: #e0e3e4;
}
.button:hover a
{
	color: #232323;
}

/*********************************
3. Header
*********************************/

.header
{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 120px;
	background: #FFFFFF;
	z-index: 100;
	padding-left: 60px;
	padding-right: 64px;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
.header.scrolled
{
	height: 80px;
}
.header_inner
{
	width: 100%;
	height: 100%;
}

.header.scrolled .logo a img
{
	max-height: 60px;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}

.menu_horizontal
{
	position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: auto;
    background: #FFFFFF;
    z-index: 100;
    padding-left: 60px;
    padding-right: 64px;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
    padding: 40px 15px;
}
.horizontal {
	display: block;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: space-around;
    align-items: center;
    justify-content: space-between;
    text-align: center!important;
}
.menu_h {
	margin: 5px;
    display: inline-block;
}
.menu_horizontal .horizontal  li.menu_h a {
	color: white;
    text-transform: uppercase;
    border: 1px solid #1b74e4;
    border-radius: 50px;
    padding: 5px 15px;
    background: #1b74e4;
	display: inline-flex;
	text-align: center;
	font-size: 14px;
}
.menu_horizontal .horizontal  li.menu_h .dropdown-menu a {
    color: black;
    text-transform: uppercase;
    border: 0px solid #1b74e4;
    border-radius: 0px;
    padding: 5px 5px;
    background: transparent;
    display: inline-flex;
    text-align: left;
    font-size: 12px;
}
.menu_horizontal .horizontal  li.menu_h .dropdown-menu a:hover,
.menu_horizontal .horizontal  li.menu_h .dropdown-menu a:active,
.menu_horizontal .horizontal  li.menu_h .dropdown-menu a:focus {
	border:0;
}
.menu_horizontal .horizontal  li.menu_h a:hover,
.menu_horizontal .horizontal  li.menu_h a:active,
.menu_horizontal .horizontal  li.menu_h a:focus {
	color: #1b74e4;
    border: 1px solid #1b74e4;
    background: white;
}
.menu_horizontal .nav .dropdown-menu.show {
	border: 0px!important;
    padding: 10px!important;
}
.menu_horizontal .nav .dropdown-item {
	white-space: pre-wrap!important;
}
.menu_horizontal .nav .dropdown-toggle::after {
	position: absolute;
    right: 5px;
    top: 12px;
}
.menu_horizontal .horizontal  li.menu_h .dropdown-menu {
	min-width: 21rem!important;
}

  .menu_mm.nav.dropdown-menu .dropdown-submenu .dropdown-menu {
	top: 0;
	left: 100%;
	margin-top: -1px;
  }

/*********************************
3.1 Header - Logo
*********************************/

.logo a
{
	font-family: 'Playfair Display', serif;
	font-size: 30px;
	color: #2f2f2f;
}
.logo a img {
	max-height: 95px;
}
/*********************************
3.2 Header - Main Navigation
*********************************/

.main_nav
{
	padding-left: 50px;
	margin: 0 auto;
	-webkit-transform: translateY(4px);
	-moz-transform: translateY(4px);
	-ms-transform: translateY(4px);
	-o-transform: translateY(4px);
	transform: translateY(4px);
}
.main_nav ul li
{
	display: inline-block;
	margin-right: 25px;
}
.main_nav ul li:last-child
{
	margin-right: 0;
}
.main_nav ul li a
{
	font-size: calc(12px + 0.2vw);
	text-transform: uppercase;
	color: #2f2f2f;
	font-weight: 600;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
.main_nav ul li a:hover,
.main_nav ul li a:active,
.main_nav ul li a:focus
{
	color: #1b74e4;
	text-decoration: none;
}

/*********************************
3.3 Header - Search
*********************************/

.search
{
	display: inline-block;
	width: 400px;
	-webkit-transform: translateY(2px);
	-moz-transform: translateY(2px);
	-ms-transform: translateY(2px);
	-o-transform: translateY(2px);
	transform: translateY(2px);
}
.search_input
{
	width: 100%;
	height: 43px;
	background: #f9f5f5;
	border: none;
	outline: none;
	padding-left: 20px;
}
.search_button
{
	position: absolute;
	top: 45%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	right: 10px;
	width: 19px;
	height: 19px;
	background: transparent;
	border: none;
	outline: none;
}
.search_button:focus
{
	outline: none !important;
}
.search_button img
{
	max-width: 100%;
}

/*********************************
3.4 Header - Shopping
*********************************/

.shopping
{
	display: inline-block;
	margin-left: 111px;
	padding-right: 0px;
	-webkit-transform: translateY(-2px);
	-moz-transform: translateY(-2px);
	-ms-transform: translateY(-2px);
	-o-transform: translateY(-2px);
	transform: translateY(-2px);
}
.shopping a
{
	display: inline-block;
	margin-right: 10px;
}
.shopping a i {
	color:black;
	font-size: calc(18px + 0.2vw);
}
.shopping a:last-child
{
	margin-right: 0;
}
.cart_num_container,
.star_num_container
{
	position: absolute;
	top: 13px;
	left: -5px;
	width: 15px;
	height: 15px;
	background: #1b74e4;
	border-radius: 50%;
}
.cart_num_inner,
.star_num_inner
{
	width: 100%;
	height: 100%;
}
.cart_num,
.star_num
{
	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%);
	font-size: 9px;
	font-weight: 600;
	color: #FFFFFF;
}
.star img
{
	width: 20px;
	height: 20px;
}
.avatar img
{
	width: 20px;
	height: 20px;
}

/*********************************
3.5 Header - Burger
*********************************/

.burger_container
{
	position: absolute;
	top: calc(50% + 4px);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	right: 0;
	width: 22px;
	height: 16px;
	cursor: pointer;
	display: none!important;
}

.burger_container div
{
	width: 100%;
	height: 2px;
	background: #232323;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
	pointer-events: none;
}
.burger_container:hover div
{
	background: #1b74e4;
}

/*********************************
4. Home
*********************************/

.home
{
	width: 100%;
	height: 904px;
	background: #FFFFFF;
}

/*********************************
4.1 Home Slider
*********************************/

.home_slider_container
{
	width: 100%;
	height: 100%;
}
.home_slider_background
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}
.home_slider_content
{
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
	z-index: 10;
}

.home_slider_title
{
	font-family: 'Playfair Display', serif;
    font-size: calc(72px + 0.2vw);
    color: #FFFFFF;
    line-height: 1;
    padding-left: 31px;
    padding-right: 19px;
    white-space: nowrap;
    text-align: center;
    text-transform: uppercase;
    font-weight: 700;
	margin-top: 15px;
}
.home_slider_content .home_logo {
	text-align: center;
	margin-top: 15px;
}
.home_slider_content .home_logo img {
	width: 180px;
	display: initial;
}
.home_slider_subtitle
{
	position: absolute;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
	top: -37px;
	height: 37px;
	background: #74d233;
    color: black;
    padding-left: 34px;
    padding-right: 34px;
    line-height: 37px;
    font-family: 'Poppins', sans-serif;
    font-size: calc(18px + 0.2vw);
    white-space: nowrap;
    text-transform: uppercase;
    border-radius: 50px;
}
.home_slider_next
{
	position: absolute;
	top: 54%;
	right: 60px;
	width: 45px;
	height: 45px;
	background: black;
	z-index: 10;
	border-radius: 50%;
	cursor: pointer;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
.home_slider_next:hover
{
	background: #2f2f2f;
}
.home_slider_dots_container
{
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 10;
}
.home_slider_dots
{
	display: inline-block;
	position: absolute;
	top: -54px;
	left: 0;
}
.home_slider_dots ul
{
	display: inline-block;
}
.home_slider_dots ul li
{
	display: inline-block;
	position: relative;
	font-family: 'Playfair Display', serif;
	font-size: calc(18px + 0.2vw);
	color: #FFFFFF;
	margin-right: 7px;
	cursor: pointer;
}
.home_slider_dots ul li:last-child
{
	margin-right: 0;
}
.home_slider_custom_dot div
{
	display: inline-block;
	width: 0px;
	height: 1px;
	background: #FFFFFF;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
	margin-left: 4px;
	margin-right: -4px;
}
.home_slider_custom_dot.active div
{
	width: 100px;
}
.home_slider .owl-dots
{
	display: none !important;
}

/*********************************
5. Menu
*********************************/

.menu
{
	position: fixed;
	top: 0;
	right: -400px;
	width: 400px;
	height: 100vh;
	background: #FFFFFF;
	z-index: 101;
	padding-right: 20px;
	padding-top: 87px;
	padding-left: 20px;
}
.menu.active
{
	right: 0;
	overflow: auto;
}
.menu_close_container
{
	position: absolute;
	top: 30px;
	right: 20px;
	width: 18px;
	height: 18px;
	transform-origin: center center;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
	cursor: pointer;
}
.menu_close
{
	width: 100%;
	height: 100%;
	transform-style: preserve-3D;
}
.menu_close div
{
	width: 100%;
	height: 2px;
	background: #232323;
	top: 8px;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
.menu_close div:last-of-type
{
	-webkit-transform: rotate(90deg) translateX(-2px);
	-moz-transform: rotate(90deg) translateX(-2px);
	-ms-transform: rotate(90deg) translateX(-2px);
	-o-transform: rotate(90deg) translateX(-2px);
	transform: rotate(90deg) translateX(-2px);
	transform-origin: center;
}
.menu_close:hover div
{
	background: #1b74e4;
}
.menu .logo
{
	margin-bottom: 60px;
}
.menu .logo a  img {
	max-height: 100px;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
.menu_nav ul li
{
	margin-bottom: 11px;
}
.menu_nav ul li a
{
	font-size: calc(12px + 0.2vw);
	text-transform: uppercase;
	color: #2f2f2f;
	font-weight: 600;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
.menu_nav ul li a:hover
{
	color: #1b74e4;
}
.menu .search
{
	width: 100%;
	margin-bottom: 67px;
}

/*********************************
menu_mm nav
*********************************/
.menu_nav.dropdown {
	width: 100%;
}
.menu_nav.dropdown li {
	font-size: calc(12px + 0.2vw);
    text-transform: uppercase;
    color: #2f2f2f;
    font-weight: 600;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
	padding: 0;
	margin-bottom: 11px;
	display: block;
}
.menu_nav.dropdown a {
	font-size: calc(12px + 0.2vw);
    text-transform: uppercase;
    color: #2f2f2f;
    font-weight: 600;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
	padding: 0.5rem 1rem;
	margin-bottom: 11px;
	display: block;
	cursor: pointer;
}
.menu_nav.dropdown a.dropdown-toggle::after {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
}
.menu_nav.dropdown a.test::after {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
}
.menu_nav.dropdown a:hover,
.menu_nav.dropdown a:active,
.menu_nav.dropdown a:focus {
	text-decoration: none;
}
.menu_mm.nav.dropdown-menu.show {
	position: relative;
    transform: none;
    top: 0px;
    left: 0px;
    will-change: transform;
    border: 0;
    box-shadow: none;
    width: 100%;
    text-align: right;
}
.menu_mm.nav.dropdown-menu.show .dropdown-menu {
	position: relative;
    transform: none;
    top: 0px;
    left: 0px;
    will-change: transform;
    border: 0;
    box-shadow: none;
    width: 100%;
    text-align: right;
}


.menu_mm.nav .dropdown-item {
	white-space: pre-wrap!important;
}



/*********************************
6. Promo
*********************************/

.promo
{
	padding-top: 88px;
}
.promo_container
{
	margin-top: 75px;
}
.promo_item
{
	width: 100%;
}
.promo_image
{
	width: 100%;
}
.promo_image img
{
	max-width: 100%;
}
.promo_link
{
	width: 100%;
	height: 60px;
	background: #2f2f2f;
	text-align: center;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
.promo_link a
{
	display: block;
	font-family: 'Playfair Display', serif;
	font-size: calc(18px + 0.2vw);
	color: #FFFFFF;
	line-height: 60px;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
.promo_link:hover
{
	background: #222222;
}
.promo_link:hover a
{
	color: #1b74e4;
}
.promo_content
{
	position: absolute;
	top: 43.6%;
	z-index: 1;
}
.promo_content_1
{
	right: 0;
	text-align: right;
	padding-right: 14px;
}
.promo_content_2
{
	left: 0;
	width: 100%;
	text-align: center;
	background: rgba(35, 35, 35, 0.63);
	padding-bottom: 9px;
	padding-top: 2px;
}
.promo_content_3
{
	top: 30%;
	left: 15px;
	background: #232323;
	padding-left: 10px;
	text-align: right;
	padding-right: 22px;
	padding-top: 39px;
	padding-bottom: 41px;
}
.promo_title
{
	font-family: 'Playfair Display', serif;
	font-size: 30px;
	color: #FFFFFF;
}
.promo_subtitle
{
	font-size: 14px;
	color: #FFFFFF;
	font-weight: 600;
	text-transform: uppercase;
	margin-top: -3px;
}
.promo_content_3 .promo_subtitle
{
	text-transform: none;
	font-weight: 400;
	font-style: italic;
}


/*********************************
6. blog
*********************************/

.blog {
    padding-top: 80px;
    padding-bottom: 80px;
}
.blog_container
{
	margin-top: 25px;
}
.blog_col {
	margin-top: 40px;
}
.blog_item
{
	width: 100%;
    height: 100%;
    padding-bottom: 20px;
}
.blog_image
{
	width: 100%;
	padding-bottom: 20px;
}
.blog_image img
{
	max-width: 100%;
    width: 100%;
}
.blog_link
{
	width: 100%;
    height: 60px;
    text-align: center;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
    position: absolute;
    bottom: 0;
}
.blog_link a
{
	background: #1b74e4;
    color: white;
    border-radius: 50px;
    padding: 10px 20px;
    text-align: center;
    font-size: calc(12px + 0.2vw);
    margin-top: 15px;
    display: table;
    text-align: left;
}

.blog_content
{
	padding: 10px;    
	margin-bottom: 40px;
}
.blog_date {
	font-size: calc(12px + 0.2vw);
		font-weight: 400;
		color: #4f4e4e;
		margin-top: 0px;
		line-height: 4;
}
.blog_titulo {
	font-size: calc(12px + 0.2vw);
    font-weight: 600;
    color: #232323;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.blog_content_1
{
	right: 0;
	text-align: right;
	padding-right: 14px;
}
.blog_content_2
{
	left: 0;
	width: 100%;
	text-align: center;
	background: rgba(35, 35, 35, 0.63);
	padding-bottom: 9px;
	padding-top: 2px;
}
.blog_content_3
{
	top: 30%;
	left: 15px;
	background: #232323;
	padding-left: 10px;
	text-align: right;
	padding-right: 22px;
	padding-top: 39px;
	padding-bottom: 41px;
}
.blog_title
{
	font-family: 'Playfair Display', serif;
	font-size: 30px;
	color: #FFFFFF;
}
.blog_subtitle
{
	font-size: 14px;
	color: #FFFFFF;
	font-weight: 600;
	text-transform: uppercase;
	margin-top: -3px;
}
.blog_content_3 .blog_subtitle
{
	text-transform: none;
	font-weight: 400;
	font-style: italic;
}


/*********************************
7. New Arrivals
*********************************/

.arrivals
{
	padding-top: 80px;
	background: #f6f6f6;
	padding-bottom: 80px;
}
.products_container
{
	margin-top: 40px;
    padding-bottom: 0px;
}
.product
{
	background: white;
    padding-bottom: 40px;
}
.product_image
{
	width: 100%;
}
.product_image img
{
	max-width: 100%;
}
.rating
{
	margin-top: 24px;
}
.rating i
{
	font-size: 10px;
	margin-right: 1px;
	color: #e0e3e4;
}
.rating i:last-child
{
	margin-right: 0px;
}
.rating_1 i:first-child{color: #f5c06f;}
.rating_2 i:first-child{color: #f5c06f;}
.rating_2 i:nth-child(2){color: #f5c06f;}
.rating_3 i:first-child{color: #f5c06f;}
.rating_3 i:nth-child(2){color: #f5c06f;}
.rating_3 i:nth-child(3){color: #f5c06f;}
.rating_4 i:first-child{color: #f5c06f;}
.rating_4 i:nth-child(2){color: #f5c06f;}
.rating_4 i:nth-child(3){color: #f5c06f;}
.rating_4 i:nth-child(4){color: #f5c06f;}
.rating_5 i:first-child{color: #f5c06f;}
.rating_5 i:nth-child(2){color: #f5c06f;}
.rating_5 i:nth-child(3){color: #f5c06f;}
.rating_5 i:nth-child(4){color: #f5c06f;}
.rating_5 i:nth-child(5){color: #f5c06f;}
.product_content
{
	margin-top: 20px;
	padding: 0px 10px;
}
.product_info
{
	float: left;
	width: 100%;
}
.product_name a
{
	font-size: calc(14px + 0.2vw);
	font-weight: 600;
	color: #232323;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
.product_name a:hover
{
	color: #1b74e4;
}
.product_price
{
	font-size: calc(12px + 0.2vw);
    font-weight: 400;
    color: #4f4e4e;
    margin-top: 0px;
	line-height: 2;
}
.product_options
{
	float: right;
	transform: translateY(11px);
	width: 100%;
}
.product_option
{
	width: auto;
    height: auto;
    cursor: pointer;
    border-radius: 50px;
    padding: 10px 15px;
}
.product_buy
{
	display: inline-block;
	background: #1b74e4;
	color: white;
	vertical-align: middle;
	margin-right: 4px;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
.product_buy img
{
	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%);
	width: 23px;
	height: 23px;
}
.product_buy:hover
{
	background: #2f2f2f;
}
.product_fav
{
	display: inline-block;
    vertical-align: middle;
    font-size: 14px;
    font-weight: 600;
    color: #1b74e4;
    background: white;
    text-align: center;
    border: 1px solid #1b74e4;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
.product_fav:hover
{
	color: #FFFFFF;
	background: #00d308;
	border: 1px solid #00d308;
}

/*********************************
8. Extra
*********************************/

.extra
{
	width: 100%;
	padding-left: 62px;
	padding-right: 62px;
}
.extra_promo
{
	width: calc((100% - 30px) / 2);
	height: 616px;
	float: left;
}
.extra_promo_image
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}
.extra_promo_1
{
	margin-right: 30px;
	padding-top: 43px;
	padding-left: 45px;
	padding-bottom: 46px;
	padding-right: 45px;
}
.extra_1_content
{
	max-width: 425px;
	height: 100%;
	background: rgba(35, 35, 35, 0.95);
	border: solid 2px #1b74e4;
	padding-left: 40px;
	padding-right: 40px;
}
.extra_1_price
{
	font-family: 'Beyond', sans-serif;
	font-size: 72px;
	color: #FFFFFF;
	line-height: 0.75;
}
.extra_1_price span
{
	font-size: calc(18px + 0.2vw);
}
.extra_1_title
{
	font-family: 'Playfair Display', serif;
	font-size: 30px;
	color: #1b74e4;
	margin-top: 39px;
}
.extra_1_text
{
	font-size: calc(12px + 0.2vw);
	color: #aeaeae;
	margin-top: 26px;
	line-height: 2;
}
.extra_1_button
{
	margin-top: 39px;
}
.extra_promo_2
{
	border: solid 2px #1b74e4;
	padding-top: 43px;
	padding-bottom: 46px;
}
.extra_2_content
{
	max-width: 408px;
	height: 100%;
	background: transparent;
	padding-top: 27px;
	padding-left: 37px;
	padding-right: 37px;
}
.extra_2_title
{
	transform: translateX(20px);
}
.extra_2_center
{
	font-family: 'Playfair Display', serif;
	font-size: 200px;
	color: #1b74e4;
	line-height: 0.75;
	-webkit-transform: rotate(-12deg);
	-moz-transform: rotate(-12deg);
	-ms-transform: rotate(-12deg);
	-o-transform: rotate(-12deg);
	transform: rotate(-12deg);
}
.extra_2_top
{
	position: absolute;
	left: -50px;
	top: -32px;
	font-family: 'Beyond', sans-serif;
	font-size: 72px;
	line-height: 0.75;
	color: #232323;
}
.extra_2_bottom
{
	position: absolute;
	left: -43px;
	bottom: -28px;
	font-family: 'Beyond', sans-serif;
	font-size: 72px;
	line-height: 0.75;
	color: #232323;
}
.extra_2_text
{
	font-size: calc(12px + 0.2vw);
	color: #aeaeae;
	margin-top: 83px;
	line-height: 2;
}
.extra_2_button
{
	margin-top: 36px;
}

/*********************************
9. Gallery
*********************************/

.gallery
{
	width: 100%;
	padding-top: 88px;
	padding-left: 44px;
	padding-right: 44px;
	padding-bottom: 42px;
	margin-top: 0px;
}
.gallery_item a
{
	display: block;
	outline: none;
}
.gallery_image
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}

.gallery_title ul li
{
	display: inline-block;
	margin-right: 34px;
}
.gallery_title ul li:last-child
{
	margin-right: 0;
}
.gallery_title ul li a
{
	font-family: 'Playfair Display', serif;
	font-size: 36px;
	font-weight: 700;
	color: #FFFFFF;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
.gallery_title ul li a:hover
{
	color: #1b74e4;
}
.gallery_text
{
	font-size: 14px;
	color: #FFFFFF;
	margin-top: 5px;
}
.gallery_button
{
	margin: 0 auto;
	margin-top: 40px;
}
.gallery_slider_container
{
	margin-top: 55px;
}
.lupa {
	position: absolute;
    z-index: 1;
    color: white;
    font-size: 37px;
    top: calc(50% - 37px);
    left: calc(50% - 12px);
    width: 37px;
    height: 37px;
}
.lupa:hover, .lupa:active, .lupa:focus {
	color: white;
}

/*********************************
9. Parallax
*********************************/

.parallax
{
	width: 100%;
	padding-top: 88px;
	padding-left: 44px;
	padding-right: 44px;
	padding-bottom: 42px;
	margin-top: 99px;
}
.parallax_item a
{
	display: block;
	outline: none;
}
.parallax_image
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	background-attachment: fixed;
}
.parallax_title h1
{
	color: #74d233;
    font-family: 'Playfair Display', serif;
    font-size: calc(64px + 0.2vw);
}
.parallax_title h3{
	color: white;
}
.parallax_title h2 {
	color: white;
	font-size: calc(30px + 0.2vw);
}
.parallax_title ul li
{
	display: inline-block;
	margin-right: 34px;
}
.parallax_title ul li:last-child
{
	margin-right: 0;
}
.parallax_title ul li a
{
	font-family: 'Playfair Display', serif;
	font-size: 36px;
	font-weight: 700;
	color: #FFFFFF;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
.parallax_title ul li a:hover
{
	color: #1b74e4;
}
.parallax_text
{
	font-size: 14px;
	color: #FFFFFF;
	margin-top: 5px;
}
.parallax_button
{
	margin: 0 auto;
	margin-top: 40px;
}
.parallax_slider_container
{
	margin-top: 55px;
}


/*********************************
10. Testimonials
*********************************/

.testimonials
{
	width: 100%;
	padding-top: 88px;
	padding-bottom: 93px;
}
.test_slider_container
{
	margin-top: 65px;
}
.test_text
{
	font-family: 'Playfair Display', serif;
	font-size: 24px;
	color: #8a8a8a;
	font-style: italic;
	line-height: 1.75;
}
.test_image
{
	width: 86px;
	height: 86px;
	border-radius: 50%;
	overflow: hidden;
	margin: 0 auto;
	margin-top: 26px;
}
.test_image img
{
	max-width: 100%;
}
.test_name
{
	font-family: 'Playfair Display', serif;
	font-size: 16px;
	font-weight: 700;
	color: #232323;
	margin-top: 14px;
}
.test_title
{
	font-size: calc(12px + 0.2vw);
	text-transform: uppercase;
	font-weight: 600;
	color: #1b74e4;
	margin-top: 4px;
}

/*********************************
11. Newsletter
*********************************/

.newsletter
{
	width: 100%;
	padding-left: 62px;
	padding-right: 62px;
}
.newsletter_content
{
	width: 100%;
	padding-top: 88px;
	padding-bottom: 94px;
}
.newsletter_image
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}
.newsletter .section_subtitle,
.newsletter .section_title
{
	color: #FFFFFF;
}
.newsletter_container
{
	margin-top: 75px;
}
.newsletter_input
{
	width: 100%;
	height: 46px;
	background: #FFFFFF;
	padding-left: 25px;
	border: none;
	outline: none;
}
.newsletter_input::-webkit-input-placeholder
{
	font-size: calc(12px + 0.2vw) !important;
	font-weight: 400 !important;
	font-style: italic;
	color: #b3b3b3 !important;
}
.newsletter_input:-moz-placeholder
{
	font-size: calc(12px + 0.2vw) !important;
	font-weight: 400 !important;
	font-style: italic;
	color: #b3b3b3 !important;
}
.newsletter_input::-moz-placeholder
{
	font-size: calc(12px + 0.2vw) !important;
	font-weight: 400 !important;
	font-style: italic;
	color: #b3b3b3 !important;
} 
.newsletter_input:-ms-input-placeholder
{ 
	font-size: calc(12px + 0.2vw) !important;
	font-weight: 400 !important;
	font-style: italic;
	color: #b3b3b3 !important;
}
.newsletter_input::input-placeholder
{
	font-size: calc(12px + 0.2vw) !important;
	font-weight: 400 !important;
	font-style: italic;
	color: #b3b3b3 !important;
}
.newsletter_button
{
	position: absolute;
	top: 0;
	right: 0;
	width: 142px;
	height: 46px;
	background: #1b74e4;
	color: #FFFFFF;
	font-size: calc(12px + 0.2vw);
	text-transform: uppercase;
	border: none;
	outline: none;
	cursor: pointer;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
.newsletter_button:hover
{
	background: #e0e3e4;
	color: #232323;
}
.newsletter_text
{
	font-size: 14px;
	font-style: italic;
	color: #FFFFFF;
	margin-top: 19px;
}

/*********************************
12. Footer
*********************************/

.footer
{
	padding-top: 80px;
	padding-bottom: 80px;
	background-color: #222;
}
.footer_logo img {
	max-width: 100px;
	margin-bottom: 20px;
}
.footer_logo a
{
	font-family: 'Playfair Display', serif;
	font-size: 60px;
	color: white;
}
.footer_nav
{
	margin-top: 14px;
}
.footer_nav ul li
{
	display: inline-block;
	margin-right: 53px;
}
.footer_nav ul li:last-child
{
	margin-right: 0;
}
.footer_nav ul li a
{
	font-size: calc(12px + 0.2vw);
	text-transform: uppercase;
	color: white;
	font-weight: 600;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
.footer_title {
	color: white;
    font-size: calc(14px + 0.2vw);
    font-weight: 600;
	margin-bottom: 10px;
	margin-top: 10px;
}
.footer_list p a {
	color: #b2b2b2;
    font-size: calc(12px + 0.2vw);
    text-decoration: none;
}
.footer_list p a i {
	color: #74d333;
}
.footer_list p a:hover,
.footer_list p a:active,
.footer_list p a:focus {
	background: transparent;
	text-decoration: none;
	color: white;
}
.footer_list p {
	margin: 0;
}
.footer_nav ul li a:hover
{
	color: #1b74e4;
}

.footer_social ul {
	margin-bottom: 40px;
}
.footer_social ul li
{
	display: inline-block;
	margin-right: 4px;
}
.footer_social ul li:last-child
{
	margin-right: 0;
}
.footer_social ul li a i
{
	font-size: 24px;
	color: #74d333;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
.footer_social ul li a i:hover
{
	color: #e0e3e4;
}
.copywrite
{
	background: #00d308;
	padding: 10px 0;
}
.copywrite p {
	color: black;
    font-size: calc(12px + 0.2vw);
    text-decoration: none;
	margin-bottom: 0;
}
.copywrite p a {
	color: black;
    font-size: calc(12px + 0.2vw);
    text-decoration: none;
}
.copywrite p a:hover, 
.copywrite p a:active,
.copywrite p a:focus {
	background: transparent;
	text-decoration: none;
	color: black;
}



/* ****************************** */
.interna {
	padding-top:80px;
}
.interna img {
	width: 100%;
	margin-bottom: 40px;
}
.interna h1 {
	font-family: 'Playfair Display', serif;
    font-size: calc(36px + 0.2vw);
    line-height: 1.5;
    margin-bottom: 20px;
    font-weight: 600;
}
.interna .vermas {
	background: #1b74e4;
    color: white;
    border-radius: 50px;
    padding: 10px 20px;
    text-align: center;
    font-size: calc(12px + 0.2vw);
    margin-top: 15px;
    display: inline-block;
}
.interna .vermas:active, 
.interna .vermas:hover,
.interna .vermas:focus {
	background: #00d308;
}

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

.interiores {
	padding-top:280px;
}
.interiores img {
	width: 100%;
	margin-bottom: 40px;
}
.interiores h1 {
	font-family: 'Playfair Display', serif;
    font-size: calc(36px + 0.2vw);
    line-height: 1.5;
    margin-bottom: 20px;
    font-weight: 600;
}
.interiores .vermas {
	background: #1b74e4;
    color: white;
    border-radius: 50px;
    padding: 10px 20px;
    text-align: center;
    font-size: calc(12px + 0.2vw);
    margin-top: 15px;
    display: inline-block;
}
.interiores .vermas:active, 
.interiores .vermas:hover,
.interiores .vermas:focus {
	background: #00d308;
}


/**********************
Ws botón redondo con tooltip
***********************/
#chat-ws-redondo.ws.tooltip {
	position: fixed;
	bottom: 20px;
	right: 40px;
	width: 60px;
	height: 60px;
	border-radius: 50%!important;
	cursor: pointer;
	display: block;
	-webkit-box-shadow: 0px 0px 20px 0px rgba(91, 91, 91, 0.5);
			box-shadow: 0px 0px 20px 0px rgba(91, 91, 91, 0.5);
	z-index: 999;
	background: #1ca550;
	padding: 10px;
	opacity: 1;
  }
  
  #chat-ws-redondo.ws.tooltip img {
	padding-left: 0px;
	padding-top: 0px;
	width: 100%;
  }
  
  #chat-ws-redondo.ws.tooltip i {
	font-size: 44px;
	color: white;
  }
  
  .ws.tooltip .tooltiptext {
	visibility: hidden;
	width: 120px;
	background-color: #1ca550;
	color: #fff;
	text-align: center;
	border-radius: 6px;
	padding: 5px 0;
	position: absolute;
	z-index: 1;
	bottom: 125%;
	left: 50%;
	margin-left: -60px;
	opacity: 0;
	-webkit-transition: opacity 0.3s;
	transition: opacity 0.3s;
  }
  
  .ws.tooltip .tooltiptext::after {
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	margin-left: -5px;
	border-width: 5px;
	border-style: solid;
	border-color: #1ca550 transparent transparent transparent;
  }
  
  .ws.tooltip:hover .tooltiptext {
	visibility: visible;
	opacity: 1;
  }

  /*********************************
Otro css para menu
*********************************/

.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
  color: #333;
  background-color: #e6e6e6;
  background-image: none;
  border-color: #adadad;
}
.btn-default:active:hover,
.btn-default.active:hover,
.open > .dropdown-toggle.btn-default:hover,
.btn-default:active:focus,
.btn-default.active:focus,
.open > .dropdown-toggle.btn-default:focus,
.btn-default:active.focus,
.btn-default.active.focus,
.open > .dropdown-toggle.btn-default.focus {
  color: #333;
  background-color: #d4d4d4;
  border-color: #8c8c8c;
}

.btn-primary:active,
.btn-primary.active,
.open > .dropdown-toggle.btn-primary {
  color: #fff;
  background-color: #286090;
  background-image: none;
  border-color: #204d74;
}
.btn-primary:active:hover,
.btn-primary.active:hover,
.open > .dropdown-toggle.btn-primary:hover,
.btn-primary:active:focus,
.btn-primary.active:focus,
.open > .dropdown-toggle.btn-primary:focus,
.btn-primary:active.focus,
.btn-primary.active.focus,
.open > .dropdown-toggle.btn-primary.focus {
  color: #fff;
  background-color: #204d74;
  border-color: #122b40;
}

.btn-success:active,
.btn-success.active,
.open > .dropdown-toggle.btn-success {
  color: #fff;
  background-color: #449d44;
  background-image: none;
  border-color: #398439;
}
.btn-success:active:hover,
.btn-success.active:hover,
.open > .dropdown-toggle.btn-success:hover,
.btn-success:active:focus,
.btn-success.active:focus,
.open > .dropdown-toggle.btn-success:focus,
.btn-success:active.focus,
.btn-success.active.focus,
.open > .dropdown-toggle.btn-success.focus {
  color: #fff;
  background-color: #398439;
  border-color: #255625;
}

.btn-info:active,
.btn-info.active,
.open > .dropdown-toggle.btn-info {
  color: #fff;
  background-color: #31b0d5;
  background-image: none;
  border-color: #269abc;
}
.btn-info:active:hover,
.btn-info.active:hover,
.open > .dropdown-toggle.btn-info:hover,
.btn-info:active:focus,
.btn-info.active:focus,
.open > .dropdown-toggle.btn-info:focus,
.btn-info:active.focus,
.btn-info.active.focus,
.open > .dropdown-toggle.btn-info.focus {
  color: #fff;
  background-color: #269abc;
  border-color: #1b6d85;
}

.btn-warning:active,
.btn-warning.active,
.open > .dropdown-toggle.btn-warning {
  color: #fff;
  background-color: #ec971f;
  background-image: none;
  border-color: #d58512;
}
.btn-warning:active:hover,
.btn-warning.active:hover,
.open > .dropdown-toggle.btn-warning:hover,
.btn-warning:active:focus,
.btn-warning.active:focus,
.open > .dropdown-toggle.btn-warning:focus,
.btn-warning:active.focus,
.btn-warning.active.focus,
.open > .dropdown-toggle.btn-warning.focus {
  color: #fff;
  background-color: #d58512;
  border-color: #985f0d;
}

.btn-danger:active,
.btn-danger.active,
.open > .dropdown-toggle.btn-danger {
  color: #fff;
  background-color: #c9302c;
  background-image: none;
  border-color: #ac2925;
}
.btn-danger:active:hover,
.btn-danger.active:hover,
.open > .dropdown-toggle.btn-danger:hover,
.btn-danger:active:focus,
.btn-danger.active:focus,
.open > .dropdown-toggle.btn-danger:focus,
.btn-danger:active.focus,
.btn-danger.active.focus,
.open > .dropdown-toggle.btn-danger.focus {
  color: #fff;
  background-color: #ac2925;
  border-color: #761c19;
}

.dropup,
.dropdown {
  position: relative;
}
.dropdown-toggle:focus {
  outline: 0;
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 160px;
  padding: 5px 0;
  margin: 2px 0 0;
  font-size: 14px;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
}
.dropdown-menu.pull-right {
  right: 0;
  left: auto;
}
.dropdown-menu .divider {
  height: 1px;
  margin: 9px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}
.dropdown-menu > li > a {
  display: block;
  padding: 3px 20px;
  clear: both;
  font-weight: 400;
  line-height: 1.42857143;
  color: #333333;
  white-space: nowrap;
}
.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus {
  color: #262626;
  text-decoration: none;
  background-color: #f5f5f5;
}
.dropdown-menu > .active > a,
.dropdown-menu > .active > a:hover,
.dropdown-menu > .active > a:focus {
  color: #fff;
  text-decoration: none;
  background-color: #337ab7;
  outline: 0;
}
.dropdown-menu > .disabled > a,
.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
  color: #777777;
}
.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
  text-decoration: none;
  cursor: not-allowed;
  background-color: transparent;
  background-image: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
}
.open > .dropdown-menu {
  display: block;
}
.open > a {
  outline: 0;
}
.dropdown-menu-right {
  right: 0;
  left: auto;
}
.dropdown-menu-left {
  right: auto;
  left: 0;
}
.dropdown-header {
  display: block;
  padding: 3px 20px;
  font-size: 12px;
  line-height: 1.42857143;
  color: #777777;
  white-space: nowrap;
}
.dropdown-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 990;
}
.pull-right > .dropdown-menu {
  right: 0;
  left: auto;
}
.dropup .caret,
.navbar-fixed-bottom .dropdown .caret {
  content: "";
  border-top: 0;
  border-bottom: 4px dashed;
  border-bottom: 4px solid \9;
}
.dropup .dropdown-menu,
.navbar-fixed-bottom .dropdown .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-bottom: 2px;
}
@media (min-width: 768px) {
  .navbar-right .dropdown-menu {
    right: 0;
    left: auto;
  }
  .navbar-right .dropdown-menu-left {
    right: auto;
    left: 0;
  }
}

.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
	border-radius: 0;
  }
  .btn-group > .btn:first-child {
	margin-left: 0;
  }
  .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
  }
  .btn-group > .btn:last-child:not(:first-child),
  .btn-group > .dropdown-toggle:not(:first-child) {
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
  }
  .btn-group > .btn-group {
	float: left;
  }
  .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
	border-radius: 0;
  }
  .btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,
  .btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
  }
  .btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
  }
  .btn-group .dropdown-toggle:active,
  .btn-group.open .dropdown-toggle {
	outline: 0;
  }
  .btn-group > .btn + .dropdown-toggle {
	padding-right: 8px;
	padding-left: 8px;
  }
  .btn-group > .btn-lg + .dropdown-toggle {
	padding-right: 12px;
	padding-left: 12px;
  }
  .btn-group.open .dropdown-toggle {
	-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
	box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  }
  .btn-group.open .dropdown-toggle.btn-link {
	-webkit-box-shadow: none;
	box-shadow: none;
  }
  .btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,
.btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group-justified > .btn-group .dropdown-menu {
	left: auto;
  }
  .input-group .form-control:first-child,
.input-group-addon:first-child,
.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .btn-group > .btn,
.input-group-btn:first-child > .dropdown-toggle,
.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
.input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group-addon:first-child {
  border-right: 0;
}
.input-group .form-control:last-child,
.input-group-addon:last-child,
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group > .btn,
.input-group-btn:last-child > .dropdown-toggle,
.input-group-btn:first-child > .btn:not(:first-child),
.input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.nav-tabs.nav-justified > .dropdown .dropdown-menu {
	top: auto;
	left: auto;
  }
  .nav-justified > .dropdown .dropdown-menu {
	top: auto;
	left: auto;
  }
  .nav-tabs .dropdown-menu {
	margin-top: -1px;
	border-top-left-radius: 0;
	border-top-right-radius: 0;
  }
  @media (max-width: 767px) {
	.navbar-nav .open .dropdown-menu {
	  position: static;
	  float: none;
	  width: auto;
	  margin-top: 0;
	  background-color: transparent;
	  border: 0;
	  -webkit-box-shadow: none;
	  box-shadow: none;
	}
	.navbar-nav .open .dropdown-menu > li > a,
	.navbar-nav .open .dropdown-menu .dropdown-header {
	  padding: 5px 15px 5px 25px;
	}
	.navbar-nav .open .dropdown-menu > li > a {
	  line-height: 20px;
	}
	.navbar-nav .open .dropdown-menu > li > a:hover,
	.navbar-nav .open .dropdown-menu > li > a:focus {
	  background-image: none;
	}
  }

  .navbar-nav > li > .dropdown-menu {
	margin-top: 0;
	border-top-left-radius: 0;
	border-top-right-radius: 0;
  }
  .navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
	margin-bottom: 0;
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	border-bottom-right-radius: 0;
	border-bottom-left-radius: 0;
  }
  @media (max-width: 767px) {
	.navbar-default .navbar-nav .open .dropdown-menu > li > a {
	  color: #777;
	}
	.navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
	.navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
	  color: #333;
	  background-color: transparent;
	}
	.navbar-default .navbar-nav .open .dropdown-menu > .active > a,
	.navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,
	.navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
	  color: #555;
	  background-color: #e7e7e7;
	}
	.navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,
	.navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover,
	.navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
	  color: #ccc;
	  background-color: transparent;
	}
  }
  @media (max-width: 767px) {
	.navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
	  border-color: #080808;
	}
	.navbar-inverse .navbar-nav .open .dropdown-menu .divider {
	  background-color: #080808;
	}
	.navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
	  color: #9d9d9d;
	}
	.navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,
	.navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
	  color: #fff;
	  background-color: transparent;
	}
	.navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,
	.navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover,
	.navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
	  color: #fff;
	  background-color: #080808;
	}
	.navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,
	.navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover,
	.navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
	  color: #444;
	  background-color: transparent;
	}
  }

  /* index2 menú horizontal */

  
.menu_horizontal2
{
	position: relative;
    top: 0px;
    left: 0;
    width: 100%;
    height: auto;
    background: #FFFFFF;
    z-index: 100;
    padding-left: 60px;
    padding-right: 64px;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
    padding: 40px 15px;
}

.menu_horizontal2 .horizontal  li.menu_h a {
	color: white;
    text-transform: uppercase;
    border: 1px solid #1b74e4;
    border-radius: 50px;
    padding: 5px 15px;
    background: #1b74e4;
	display: inline-flex;
	text-align: center;
	font-size: 10px;
}
.menu_horizontal2 .horizontal  li.menu_h .dropdown-menu a {
    color: black;
    text-transform: uppercase;
    border: 0px solid #1b74e4;
    border-radius: 0px;
    padding: 5px 5px;
    background: transparent;
    display: inline-flex;
    text-align: left;
    font-size: 12px;
}
.menu_horizontal2 .horizontal  li.menu_h .dropdown-menu a:hover,
.menu_horizontal2 .horizontal  li.menu_h .dropdown-menu a:active,
.menu_horizontal2 .horizontal  li.menu_h .dropdown-menu a:focus {
	border:0;
}
.menu_horizontal2 .horizontal  li.menu_h a:hover,
.menu_horizontal2 .horizontal  li.menu_h a:active,
.menu_horizontal2 .horizontal  li.menu_h a:focus {
	color: #1b74e4;
    border: 1px solid #1b74e4;
    background: white;
}
.menu_horizontal2 .nav .dropdown-menu.show {
	border: 0px!important;
    padding: 10px!important;
}
.menu_horizontal2 .nav .dropdown-item {
	white-space: pre-wrap!important;
}
.menu_horizontal2 .nav .dropdown-toggle::after {
	position: absolute;
    right: 5px;
    top: 12px;
}
.menu_horizontal2 .horizontal  li.menu_h .dropdown-menu {
	min-width: 21rem!important;
}

#pc {
	display: block;
}
#movil {
	display: none;
}

@media (max-width : 768px) { 
	#pc {
		display: none;
	}
	#movil {
		display: block;
	}
}

/* Contacto */


.help-block.with-errors {
	color: #313875;
	margin-top: 5px;
	}
	
	.alert-success {
	color: #fff;
	background-color: transparent;
	border-color: #f1f0f5;
	}
	.alert-dismissable .close, 
	.alert-dismissible .close {
	position: relative;
	top: 0;
	right: -10px;
	color: inherit;
	font-weight: 300;
	}
	
	.text-muted {
	color: #313875;
	}
	.history-text p.text-muted {
	color: #313875;
	}
	.messages {background: black; color: white;}
	
	.btn.disabled, .btn[disabled], 
	fieldset[disabled] .btn  {
	background: #1b74e4;
	text-transform: uppercase;
	width: 165px;
	border: none;
	height: 46px;
	cursor: pointer;
	font-size: calc(12px + 0.4vw);
	color: white;
	opacity: 1;
	border-radius: 0;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	-ms-border-radius: 0;
	-o-border-radius: 0;
	}
	.btn.disabled:hover,  .btn.disabled:active, .btn.disabled:focus,
	.btn[disabled]:hover, .btn[disabled]:active, .btn[disabled]:focus,
	fieldset[disabled] .btn:hover, fieldset[disabled] .btn:active, fieldset[disabled] .btn:focus
	{
	  background: #313875;
	  color: white;
	  opacity: 1;
	  border-radius: 0;
	  -webkit-border-radius: 0;
	  -moz-border-radius: 0;
	  -ms-border-radius: 0;
	  -o-border-radius: 0;
	  }
	.btn-send {
	background: #1b74e4;
	color: #161717;
	text-transform: uppercase;
	width: 165px;
	border: none;
	height: 46px;
	cursor: pointer;
	font-size: calc(12px + 0.4vw);
	opacity: 1;
	}
	.btn-send:hover, .btn-send:active, .btn-send:focus {
	  background: #313875;
	  color: white;
	  opacity: 1;
	  border-radius: 0;
	  -webkit-border-radius: 0;
	  -moz-border-radius: 0;
	  -ms-border-radius: 0;
	  -o-border-radius: 0;
	}
	.btn-success {
	background: #1b74e4;
	color: #161717;
	text-transform: uppercase;
	width: 165px;
	border: none;
	height: 46px;
	cursor: pointer;
	font-size: calc(12px + 0.4vw);
	opacity: 1;
	}
	.btn-success:hover, .btn-success:active, .btn-success:focus {
	  background: #313875;
	  color: white;
	  opacity: 1;
	  border-radius: 0;
	  -webkit-border-radius: 0;
	  -moz-border-radius: 0;
	  -ms-border-radius: 0;
	  -o-border-radius: 0;
}
  
	.d-none {
	  display: none!important;
  }
  .nice-select.wide {
	  width: 100%;
	  border-radius: 0;
  }
  .input-group-addon {
	position: absolute;
	  right: 10px;
	  z-index: 1;
	  top: 8px;
  }
  
	/* Termina Contacto */

	
/**********************
Contacto
***********************/
#contacto {
	background-color: white;
  }
  #contacto .title {
	text-align: center;
	background: transparent;
	margin: 0;
	padding: 0;
  }
  #contacto .title h1 {
	color: #fbb611;
	position: relative;
	font-weight: 400;
	font-size: calc(22px + 0.4vw);
	padding: 0;
  }
  #contacto .title h1:before {
	content: "";
	position: absolute;
	bottom: -10px;
	left: 45%;
	width: 30px;
	background: #fbb611;
	height: 4px;
  }
  #contacto .title h3 {
	color: #9e9e9e;
	margin-top: 20px;
	font-size: calc(12px + 0.4vw);
  }
  #contacto .contact_contents {
	padding-right: 20px;
	margin-bottom: 40px;
  }
  #contacto .contact_contents .title {
	background: transparent;
	margin: 0;
	padding: 0;
	text-align: left;
  }
  #contacto .contact_contents h2 {
	font-family: 'Playfair Display', serif;
    font-size: calc(36px + 0.2vw);
    line-height: 1.5;
    margin-bottom: 20px;
    font-weight: 600;
}
  #contacto .contact_contents .title h1 {
	color: #fbb611;
	font-weight: 600;
	padding: 0;
	font-size: calc(22px + 0.4vw);
	margin-bottom: 20px;
	position: relative;
	font-family: "Lato", sans-serif;
  }
  #contacto .contact_contents .title h1:before {
	content: "";
	position: absolute;
	top: -20px;
	left: 0px;
	width: 30px;
	background: #fbb611;
	height: 4px;
  }
  #contacto .contact_contents .title h3 {
	color: #9e9e9e;
	margin-top: 20px;
	font-size: calc(12px + 0.4vw);
	position: relative;
	margin-bottom: 20px;
  }
  #contacto .contact_contents  p,
  #contacto .contact_contents  p a {
	color: black;
  }

  #contacto .contact_contents  p a:hover,
  #contacto .contact_contents  p a:active,
  #contacto .contact_contents  p a:focus {
	color: black;
	background: transparent;
  }
  #contacto .contact_contents  p a i {
    color: #74d333;
}
  #contacto .contact_contents .redes {
	font-size: calc(12px + 0.3vw);
	color: white;
	text-transform: uppercase;
	display: inline-block;
	/* display: inline-block; */
	position: relative;
	min-width: 50px;
	padding-right: 0px;
	padding-left: 0px;
	text-align: center;
	vertical-align: middle;
	background: transparent;
  }
  #contacto .contact_contents .redes .redes_selection {
	display: block;
	position: relative;
	margin: 0;
	width: 100%;
	z-index: 1;
  }
  #contacto .contact_contents .redes .redes_selection > div {
	display: inline-block;
	margin-right: 7px;
  }
  #contacto .contact_contents .redes .redes_selection li {
	padding-left: 10px;
	padding-right: 0px;
	line-height: 50px;
	text-align: center;
	display: inline-block;
	background: transparent;
  }
  #contacto .contact_contents .redes .redes_selection li:last-child a {
	border-bottom: none;
  }
  #contacto .contact_contents .redes .redes_selection li a {
	display: block;
	color: #fbb611;
	transition: all 0.3s ease;
	font-size: 32px;
  }
  #contacto .contact_contents .redes .redes_selection li a:hover {
	color: #000;
  }
  #contacto .contact_contents .redes .redes_selection li a i {
	margin-right: 0px;
	width: 28px;
	margin-left: 0px;
  }
  #contacto .get_in_touch_contents form .controls .form-group .form-control {
	margin-bottom: 15px;
	margin-top: 0px;
	display: block;
	width: 100%;
	height: 50px;
	border: solid 1px #eaebed;
	padding-left: 20px;
	border-radius: 0;
  }
  #contacto .get_in_touch_contents form .controls .form-group .form-control:focus {
	border: solid 1px #000 !important;
	box-shadow: none !important;
  }
  #contacto .form-group .input-group-addon:first-child {
	border-right: 0;
  }
  #contacto .form-group .input-group .form-control {
	margin-bottom: 0 !important;
  }
  #contacto .form-group .input-group .form-control:first-child, #contacto .form-group .input-group-addon:first-child, #contacto .form-group .input-group-btn:first-child > .btn, #contacto .form-group .input-group-btn:first-child > .btn-group > .btn, #contacto .form-group .input-group-btn:first-child > .dropdown-toggle, #contacto .form-group .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle), #contacto .form-group .input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
	border-bottom-right-radius: 0;
	border-top-right-radius: 0;
	width: 40px;
  }
  #contacto .form-group .input-group-addon {
	padding: 6px 12px;
	font-size: 14px;
	font-weight: normal;
	line-height: 1;
	color: #555555;
	text-align: center;
	background-color: #eeeeee;
	border: 1px solid #cccccc;
	border-radius: 4px;
  }
  #contacto .form-group .input-group-addon, #contacto .form-group .input-group-btn {
	width: 1%;
	white-space: nowrap;
	vertical-align: middle;
  }
  #contacto .form-group .input-group-addon, #contacto .form-group .input-group-btn, #contacto .form-group .input-group .form-control {
	display: table-cell;
	width: 100%;
  }
  #contacto .form-group .input-group {
	position: relative;
	display: table;
	border-collapse: separate;
  }
  

  button,
input,
select,
textarea {
  font: inherit;
  margin: 0;
  box-shadow: none!important;
  &:hover, &:active, &:focus {
    box-shadow: none!important;
  }
}
optgroup {
  font-weight: 700;
}
button,
select {
  text-transform: none;
  &:active, &:hover, &:focus {
    box-shadow: none!important;
    outline: 0!important;
  }
}
textarea.form-control {
  height: auto;
  min-height: 150px;
}
fieldset {
  border: 1px solid silver;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}
textarea {
  overflow: auto;
}
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

::placeholder
{
	font-size: 16px !important;
	font-weight: 500;
	color: #777777 !important;
}
footer input::placeholder
{
	font-size: 14px !important;
	font-weight: 500;
	color: white !important;
}
[type="search"]::placeholder
{
  font-size: 16px !important;
  font-weight: 500;
  color: white !important;
}



/*********************************
4. Home
*********************************/

.breadcrumbs
{
	margin-top: 6px;
}
.breadcrumbs ul li
{
	display: inline-block;
	position: relative;
	font-family: 'Lucida', serif;
	font-size: 16px;
	color: #FFFFFF;
}
.breadcrumbs ul li a
{
	font-family: 'Lucida', serif;
	font-size: 16px;
	color: #FFFFFF;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
.breadcrumbs ul li::after
{
	display: inline-block;
	content: '/';
	margin-left: 6px;
}
.breadcrumbs ul li:last-child::after
{
	display: none;
}
.breadcrumbs ul li a:hover
{
	color: #937c6f;
}


/*********************************
6.1 Current Page
*********************************/

.current_page ul li
{
	display: inline-block;
	position: relative;			
	font-size: calc(12px + 0.2vw);
    text-transform: uppercase;
    color: #2f2f2f;
    font-weight: 600;
}
.current_page ul li::after
{
	display: inline-block;
	content: '/';
	margin-left: 10px;
	margin-right: 6px;
}
.current_page ul li:last-child::after
{
	display: none;
}
.current_page ul li a
{
	font-family: 'Lucida', serif;
	font-size: 16px;
	color: #232323;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
.current_page ul li a:hover
{
	color: #937c6f;
}

/*********************************
6.2 Product Image
*********************************/

.product_row
{
	margin-top: 25px;
}

.product_image_large
{
	width: 100%;
}
.product_image_large img
{
	max-width: 100%;
}
.product_image_thumbnails
{
	margin-top: 28px;
}
.product_image_thumbnail
{
	width: 166px;
	height: 166px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	margin-right: 30px;
	cursor: pointer;
}
.product_image_thumbnail:last-child
{
	margin-right: 0;
}

/*********************************
6.3 Product Content
*********************************/


.product_name_name {
	font-family: 'Playfair Display', serif;
    font-size: calc(36px + 0.2vw);
    line-height: 1;
    margin-bottom: 20px;
    font-weight: 600;
}

.in_stock_container
{
	margin-top: 27px;
}
.in_stock
{
	display: inline-block;
	position: relative;
	background: #e0e3e4;
	width: 15px;
	height: 15px;
}
.in_stock.in_stock_true::after
{
	display: block;
	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%);
	content: url(../images/checked.png);
}
.in_stock_container span
{
	font-size: 14px;
	color: #232323;
	margin-left: 7px;
}
.product_text
{
	margin-top: 56px;
}
.product_text p:last-of-type
{
	margin-bottom: 0;
}
.product_quantity_container
{
	margin-top: 43px;
}
.product_quantity_container span
{
	display: inline-block;
	font-size: 14px;
	font-weight: 600;
	color: #232323;
	vertical-align: middle;
}
.product_quantity
{
	display: inline-block;
	width: 122px;
	height: 41px;
	border: solid 1px #b5b5b5;
	overflow: hidden;
	padding-left: 11px;
	vertical-align: middle;
	margin-left: 14px;
}
.product_quantity input
{
	display: block;
	width: 30px;
	height: 41px;
	border: none;
	outline: none;
	font-size: 14px;
	font-weight: 400;
	color: #232323;
	text-align: left;
	padding-left: 9px;
	line-height: 39px;
	float: left;
}
.quantity_buttons
{
	position: absolute;
	top: 0;
	right: 7px;
	height: 100%;
	width: 29px;
}
.quantity_inc, 
.quantity_dec
{
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	height: 50%;
	cursor: pointer;
}
.quantity_control i
{
	font-size: 16px;
	color: #232323;
	pointer-events: none;
}
.quantity_control:active
{
	border: solid 1px rgba(14, 140, 228, 0.2);
}
.quantity_inc
{
	padding-bottom: 0px;
	justify-content: flex-end;
}
.quantity_inc i
{
	-webkit-transform: translateY(3px);
	-moz-transform: translateY(3px);
	-ms-transform: translateY(3px);
	-o-transform: translateY(3px);
	transform: translateY(3px);
}
.quantity_dec
{
	padding-top: 0px;
	justify-content: flex-start;
}
.quantity_dec i
{
	-webkit-transform: translateY(-3px);
	-moz-transform: translateY(-3px);
	-ms-transform: translateY(-3px);
	-o-transform: translateY(-3px);
	transform: translateY(-3px);
}
.product_size_container
{
	margin-top: 54px;
}
.product_size
{
	display: inline-block;
	vertical-align: middle;
}
.product_size_container span
{
	display: inline-block;
	vertical-align: middle;
	margin-right: 15px;
	font-size: 14px;
	font-weight: 600;
	color: #232323;
}
.regular_radio
{
	display: none;
}
.regular_radio:checked + label
{
	background: #937c6f;
	color: #FFFFFF;
}
.regular_radio + label
{
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	width: 48px;
	height: 41px;
	background: #FFFFFF;
	border: solid 1px #b5b5b5;
	cursor: pointer;
	margin-right: 8px;
}
.cart_button
{
	margin-top: 55px;
}


.btn-comprar {
    background: #222222!important;
}
.btn-calcular {
	background: #1b74e4!important;
}