/*
Theme Name: Aguavidafont
Author: SA Publicidad SpA
Author URI: https://www.sapublicidad.cl/
Description: Template desarrollado por SA Publicidad, el uso de este template es privado y de exclusivo uso de SA Publicidad SpA.
Version: 2.0
License: Privada
Tags: minimalista, responsive, modern, full width

Este tema tiene una licencia privada y el uso de esta es exclusiva de Aguavidafont
*/

*{
	font-family: 'Open Sans', sans-serif;
	padding: 0;
	margin:0;
}
* img{
	height: auto;
}

.wrap{
	width: 90%;
	margin:auto;
	max-width: 1200px;
}

@media(max-width: 800px){
	.wrap{
		width: 95%;
	}
}

.clear{
	clear: both;	
}

/* top-banner */
.top-banner{
	background-color: #6dea6a;
}

@media(max-width: 800px){
	.top-banner{
		display: none;
	}
}

.top-banner li{
	float: left;
	list-style: none;
	width: 25%;
	text-align: center;
	font-size: 12px;
	position: relative;
}

.top-banner li:last-child:after{
	display: none;
}

.top-banner li:after{
	content: "";
	width: 1px;
	height: 20px;
	position: absolute;
	right: 0;
	top:50%;
	transform: translateY(-50%);
	background-color: #333333;
}

.top-banner li a{
	color: #333333;
	text-decoration: none;
	font-weight: 500;
	line-height: 35px;
}

.top-banner li a span{
	color: #1482AD;
}

/* header */
header{
	padding: 5px 0;
}

header .logo{
	width: 200px;
	float: left;
	max-width: 25%;
}

@media(max-width: 800px){
	header{
		padding: 5px 0 30px 5px;
	}
	header .logo{
		float: none;
		margin:0 auto 20px auto;
		width: 50%;
		max-width: 50%;
	}
}

header .logo img{
	width: 100%;
	margin:0 0 -5px 0;
}

/* search-box */
.search-box{
	float: right;
	margin:35px 0 0 10%;
	width: 50%;
}

.search-box input[type="search"]{
    -webkit-appearance: none;
    -webkit-border-radius: 0;
	padding: 10px;
	float: left;
	width: 50%;
	outline: none;
	line-height: 20px;
	border:solid 1px rgba(0,0,0,.1);
	border-radius: 3px 0 0 3px;
}


.search-box button{
	position: relative;
	line-height: 20px;
	width: 50px;
	padding: 10px;
	outline: none;
	float: left;
	border-radius: 0 3px 3px 0;
	border:solid 1px transparent;
	background-color: #333333;
	color: #ffffff;
	font-size: 18px;
	cursor: pointer;
	transition: all 400ms ease;
}

@media(max-width: 800px){
	.search-box{
		float: none;
		width: 100%;
		margin:10px auto 20px auto;
	}

	.search-box input[type="search"]{
		width: 76%;
		padding: 8px 1%;
		margin:0 0 0 2%;
	}

	.search-box button{
		padding: 8px 1%;
		width: 20%
	}
}

.search-box button:hover{
	background-color: #1482AD;
	color: #333333;
}

/* social-box */
.social-box{
	float: right;
	text-align: right;
	margin:25px 0 0 0;
}


@media(max-width: 800px){
	.social-box{
		float: none;
		margin:auto;
		width: 100%;
		text-align: center;
	}
}

.social-box li{
	margin:0 0 0 5px;
	display: inline-block;
	position: relative;
}

.social-box li a{
	display: block;
	text-decoration: none;
	color: #1482AD;
	background-color: #333333;
	line-height: 35px;
	width: 35px;
	text-align: center;
	border-radius: 3px;
	transition: all 400ms ease;
}

.social-box li:nth-child(4) a{
	line-height: 60px;
	height: 60px;
	width: 60px;
	text-indent: -2px;
	margin:0 0 0 10px;
	background-color: #1482AD;
	color: #ffffff;
	font-size: 20px;
	text-align: center;
	border-radius: 50%;
	position: relative;
}

.social-box li:nth-child(4) a:hover{
	background-color: #333333;
	color: #ffffff;
}

.social-box li a:hover{
	background-color: #1482AD;
	color: #333333;
}

.social-box li  .bounce{
	position: absolute;
	left: 50%;
	padding: 10px;
	background-color: #f0f0f0;
	margin:15px 0 0 0;
	width: 200%;
	text-align: center;
	font-size: 13px;
	color: #777777;
	pointer-events: none;
	transform: translateY(10px) translateX(-50%);
	transition: all 400ms ease;
	opacity: 0;
}

.social-box li:hover  .bounce{
	transform: translateY(0px) translateX(-50%);
	opacity: 1;
	box-shadow: 0 5px 20px rgba(0,0,0,.3);

}

.social-box li  .bounce:before{
	content: "";
	border-bottom: solid 10px #f0f0f0;
	border-left: solid 10px transparent;
	border-right: solid 10px transparent;
	left: 50%;
	transform: translateX(-50%);
	z-index: 10;
	top:-10px;
	position: absolute;
}

/* btn-nav */
#btn-nav{
	display: none;
}

@media(max-width: 800px){
	.wrap-nav label{
		position: absolute;
		top:15px;
		right: 15px;
		height: 35px;
		width: 35px;
		cursor: pointer;
	}

	.wrap-nav label span{
		position: absolute;
		width: 100%;
		height: 3px;
		background-color: #1482AD;
		-webkit-transition: all 400ms ease;
		-moz-transition: all 400ms ease;
		-ms-transition: all 400ms ease;
		-o-transition: all 400ms ease;
		transition: all 400ms ease;
		
	}

	.wrap-nav label span:nth-child(1){
		top:4px;
	}

	.wrap-nav label span:nth-child(2){
		top:15px;
	}

	.wrap-nav label span:nth-child(3){
		top:26px;
	}

	.wrap-nav #btn-nav:checked ~ label span:nth-child(1){
		transform: rotate(45deg);
		top:15px;
	}

	.wrap-nav #btn-nav:checked ~ label span:nth-child(2){
		opacity: 0;
		top:15px;
	}

	.wrap-nav #btn-nav:checked ~ label span:nth-child(3){
		transform: rotate(-45deg);
		top:15px;
	}
}

/* nav */
nav{
	background-color: #6dea6a;
	line-height: 65px; 
}

nav .wrap ul > li{
	float: left;
	list-style: none;
	position: relative;
}

@media(max-width: 800px){
	nav{
		position: absolute;
		top:0px;
		left: 0;
		z-index: 999999;
		width: 60%;
		line-height: 45px;
		transform: translateX(-100%);
		transition: all 400ms ease;
	}

	.wrap-nav #btn-nav:checked ~ nav{
		transform: translateX(0%);
	}


	nav .wrap ul > li{
		float: none;
		border-bottom: solid 1px rgba(255,255,255,.1);
	}
}

nav .wrap ul > li > a{
	color: rgba(0,0,0,.8);
	padding: 0 20px;
	text-decoration: none;
	font-size: 15px;
	display: block;
	position: relative;
}

nav .wrap ul > li > a:after{
	content: "";
	width: 0;
	height: 5px;
	background-color: #1482AD;
	position: absolute;
	left: 0;
	bottom: 0;
	transition: all 400ms ease;
}

nav .wrap ul > li:hover > a:after{
	width: 100%;
}

nav .wrap ul > li:hover a{
	color: #111111;
}

/* sub-nav */
nav .wrap ul > li > ul{
	position: absolute;
	left: 0;
	background-color: #333333;
	z-index: 9999999;
	top:100%;
	width: 200%;
	max-height: 0px;
	overflow: hidden;
	transition: all 400ms ease;
}

@media(max-width: 800px){
	nav .wrap ul > li > ul{
		position: static;
		width: 100%;
	}
}

nav .wrap ul > li:hover > ul{
	max-height: 500px;
}

nav .wrap ul > li > ul > li{
	display: block;
	line-height: 40px;
	float: none;
	width: 100%;
}

nav .wrap ul > li > ul > li > a{
	display: block;
}

nav .wrap ul > li > ul > li:hover > a{
	background-color: #222222;
}

nav .wrap ul > li > ul > li:hover > a:after{
	display: none;
}

/* slider */
.slider{
	position: relative;
}

.slidesjs-navigation{
	position: absolute;
	top:50%;
	z-index: 10;
	line-height: 45px;
	width: 100%;
	transform: translateY(-50%);
}

 a.slidesjs-navigation{
	color: #ffffff;
	text-decoration: none;
	transition: all 400ms ease;
}

 a.slidesjs-navigation:hover{
 	color: #1482AD;
 }

.slidesjs-next{
	position: absolute;
	line-height: 45px;
	height: 50px;
	width: 50px;
	font-size: 30px;
	right: 10px;
	opacity: .7;
}

.slidesjs-previous{
	position: absolute;
	line-height: 45px;
	height: 50px;
	width: 50px;
	font-size: 30px;
	left: 10px;
	opacity: .7;
}

.slidesjs-previous:hover,
.slidesjs-next:hover{
	opacity: 1;
}

.slidesjs-pagination{
	position: absolute;
	bottom: 20px;
	width: 100%;
	text-align: center;
	z-index: 10;
}

@media(max-width: 800px){
	.slidesjs-pagination{
		display: none;
	}
}

.slidesjs-pagination-item{
	width: 15px;
	height: 15px;
	line-height: 15px;
	display: inline-block;
	margin:0 5px;
}

.slidesjs-pagination-item a{
	display: block;
	text-decoration: none;
	font-size: 0;
	background-color: rgba(255,255,255,.7);
	border-radius: 3px;
}

.slidesjs-pagination-item a:hover{
	background-color: #ffffff;
}

.slidesjs-pagination-item a.active{
	background-color: #1482AD;
}

/* banner-0 */
.banner-0{
	padding: 100px 0;
}

.banner-0 article{
	width: 43%;
	float: left;
	margin:0 3% 0 3%;
	position: relative;
	height: 300px;
}

@media(max-width: 800px){
	.banner-0{
		padding: 40px 0;
	}

	.banner-0 article{
		width: 100%;
		float: none;
		margin:0 0 30px 0;
	}
}

.banner-0 article .image{
	width: 100%;
	height: 300px;
	overflow: hidden;
	position: relative;
}

.banner-0 article .image img{
	height: 100%;
	position: absolute;
	right: 0;
	top:0;
	-webkit-transition: all 400ms ease;
	-moz-transition: all 400ms ease;
	-ms-transition: all 400ms ease;
	-o-transition: all 400ms ease;
	transition: all 400ms ease;
	
}

.banner-0 article:hover .image img{
	transform: translateX(20px);
}

.banner-0 article .middle{
	position: absolute;
	width:76%;
	padding: 0 10%;
	margin:2%;
	height: 94%;
	background-color: rgba(0,0,0,.5);
	display: table;
	top:0;
}

.banner-0 article .middle .inter{
	vertical-align: middle;
	display: table-cell;
}

.banner-0 article .middle .inter span:nth-child(3){
	width: 3px;
	height: 80%;
	background-color: #ffffff;
	position: absolute;
	top:10%;
	left: 10%;
	transform: translateX(-20px);
	opacity: 0;
}

.banner-0 article .middle .inter span{
	transition: all 400ms ease;
}

.banner-0 article .middle .inter span:nth-child(4){
	width: 80%;
	height: 3px;
	background-color: #ffffff;
	position: absolute;
	top:10%;
	left: 10%;
	transform: translateX(-20px);
	opacity: 0;
}

.banner-0 article .middle .inter span:nth-child(5){
	width: 3px;
	height: 80%;
	background-color: #ffffff;
	position: absolute;
	top:10%;
	right: 10%;
	transform: translateX(-20px);
	opacity: 0;
}


.banner-0 article .middle .inter span:nth-child(6){
	width: 80%;
	height: 3px;
	background-color: #ffffff;
	position: absolute;
	bottom:10%;
	left: 10%;
	transform: translateX(-20px);
	opacity: 0;
}

.banner-0 article:hover .middle .inter span:nth-child(3),
.banner-0 article:hover .middle .inter span:nth-child(4),
.banner-0 article:hover .middle .inter span:nth-child(5),
.banner-0 article:hover .middle .inter span:nth-child(6){
	transform: translateX(0%);
	opacity: 1;
}

.banner-0 article .middle .inter h2{
	text-align: right;
	color: #ffffff;
	font-weight: 300;
	margin:0 5% 0 0;
	text-transform: uppercase;
}

.banner-0 article .middle .inter h2:first-letter{
	color: #1482AD;
}

.banner-0 article .middle .inter h3{
	text-align: right;
	margin:0 5% 0 0;
	color: #ffffff;
	letter-spacing: 5px;
	transform: translateX(-20px);
	transition: all 400ms ease;
	opacity: 0;
}

.banner-0 article:hover .middle .inter h3{
	transform: translateX(0);
	opacity: 1;
}

/* banner-1 */
.banner-1{
	background-color: #1482AD;
}

.banner-1 .left{
	width: 50%;
	float: left;
}

.banner-1 .left img{
	margin:0 0 -5px 0;
	width: 100%;
}

.banner-1 .right{
	width: 50%;
	float: right;
	height: 100%;
}

.banner-1 .right .middle{
	padding: 40px 20px;
	background-color: #ffffff;
	margin:50px 50px 50px 0;
	box-shadow: 5px 3px 10px rgba(0,0,0,.5);
}

.banner-1 .right .middle h3{
	text-transform: uppercase;
	color: #333333;
	margin:0 0 15px 0;
	position: relative;
	line-height: 50px;
}

.banner-1 .right .middle h3:after{
	content: "";
	width: 50px;
	height: 4px;
	background-color: #1482AD;
	position: absolute;
	left: 0;
	bottom:0;
}

.banner-1 .right .middle p{
	color: #555555;
	margin:0 0 14px 0;
}

@media(max-width: 800px){
	.banner-1 .left{
		width: 100%;
		float: none;
	}

	.banner-1 .right{
		width: 100%;
		float: none;
	}

	.banner-1 .right .middle{
		background-color: transparent;
		box-shadow: 0 0 0 0;
		text-align: center;
		color: #ffffff;
		padding: 50px 5%;
		margin:0 0 0 0;
	}

	.banner-1 .right .middle h3{
		color: #ffffff;
	}

	.banner-1 .right .middle p{
		color: rgba(255,255,255,.9);
	}
}

.banner-1 .right .middle p:last-child{
	margin:0 0 0 0;
}

.banner-1 .right .middle a{
	background-color: #333333;
	color: #ffffff;
	border-radius: 3px;
	padding: 10px 20px;
	display: inline-block;
	text-decoration: none;
	font-size: 14px;
}

/* showcase */
.showcase{
	padding: 100px 0;
	text-align: center;
}

.showcase > h2{
	color: #333333;
	font-size: 20px;
	letter-spacing: 3px;
}

.showcase .subtitle{
	margin:0 0 30px 0;
	color: #777777;
}

.showcase article{
	width: 18%;
	display: inline-block;
	margin:0 2% 4% 2%;
	padding:1%;
	border-radius: 3px;
	transition: all 400ms ease;
}

.showcase article:hover{
	box-shadow: 0 10px 40px rgba(0,0,0,.3);
}

.showcase article .image{
	width: 100%;
	height: 200px;
	overflow: hidden;
	position: relative;
}

.showcase article .image img{
	position: absolute;
	left: 50%;
	top:50%;
	transform: translateX(-50%) translateY(-50%);
	height: 100%;
	width: auto;
}

.showcase article h3{
	font-weight: bold;
	color: #444444;
	font-size: 15px;
}

.showcase article h4{
	color: #1482AD;
	margin:10px 0;
}

.showcase article .btn-a{
	width: 80%;
	margin:auto;
}

.showcase article .btn-a a{
	display: block;
	text-decoration: none;
	line-height: 40px;
	border-radius: 3px;
	color: #ffffff;
	background-color: #1482AD;
	-webkit-transition: all 400ms ease;
	-moz-transition: all 400ms ease;
	-ms-transition: all 400ms ease;
	-o-transition: all 400ms ease;
	transition: all 400ms ease;
	
}

.showcase article .btn-a a:hover{
	background-color: #3eaf99;
}

/* banner-2 */
.banner-2{
	padding: 150px 0;
	text-align: center;
	background-image: url(img/img5.jpg);
	background-size: 100%;
	background-attachment: fixed;
	box-shadow: inset 0em 100em rgba(0,0,0,.7);
}

.banner-2 h2{
	color: #ffffff;
	letter-spacing: -3px;
	font-size: 40px;
}

@media(max-width: 800px){
	.banner-2{
		padding: 50px 0;
		background-size:200%;
		background-position: center;
	}

	.banner-2 h2{
		font-size: 20px;
		letter-spacing: 0;
	}
}

.banner-2 p{
	display: inline-block;
	margin:20px 0 0 0;
	line-height: 45px;
}

.banner-2 p a{
	background-color:  #1482AD;
	padding: 12px 30px;
	color: #ffffff;
	text-decoration: none;
	border-radius: 3px;
}

.banner-2 p a:hover{
	background-color: #1482AD;
}

/* page-banner */
.page-banner{
	padding: 20px 0;
	background-color: #f0f0f0;
	text-align: center;
}

.page-banner h1{
	font-size: 24px;
	color: #222222;
	letter-spacing: 1px;
}

@media(max-width: 800px){
	.page-banner h1{
		font-size: 18px;
		letter-spacing: 0;
	}
}

/* content */
.content{
	padding: 40px 0;
}

.content input[type="text"],
.content input[type="number"],
.content input[type="email"],
.content input[type="tel"],
.content select,
.content textarea{
    -webkit-appearance: none;
    -webkit-border-radius: 0;
	padding: 10px;
	border-radius: 3px;
	outline: none;
	border:solid 1px rgba(0,0,0,.2);
}

.content label{
	font-size: 14px;
	font-weight: bold;
	color: #777777;
}

.content input[type="submit"],
.content input[type="button"]{
	padding: 10px;
	border:none;
	border-radius: 3px;
	background-color: #1482AD;
	color: #ffffff;
	outline: none;
	cursor: pointer;
}

.content a{
	color: #1482AD;
	text-decoration: none;
	font-weight: bold;
}

.content p{
	margin:0 0 15px 0;
	color: #333333;
}

/* result */
article.result{
	padding: 15px;
	border-bottom: solid 1px rgba(0,0,0,.1);
}

article.result:last-child{
	border-bottom: none;
}

article.result .image{
	width: 10%;
	float: left;
	position: relative;
	height: 100px;
	overflow: hidden;
}

article.result .image img{
	height: 100%;
	width: auto;
	position: absolute;
	left:50%;
	top:50%;
	transform: translateX(-50%) translateY(-50%);
}

article.result .info{
	width: 88%;
	float: right;
}

@media(max-width: 800px){
	article.result .image{
		width: 100%;
		float: none;
		height: auto;
	}

	article.result .image img{
		position: relative;
		transform: translateY(0) translateX(0);
		left: 0;
		top:0;
	}

	article.result .info{
		text-align: center;
		width: 100%;
		float: none;
	}
}

article.result .info h2{
	margin:0 0 0 0;
	line-height: 20px;
}

article.result .info p{
	color: #777777;
	line-height: 20px;
	margin:0 0 0 0;
	font-weight: 400;
}

/* sub-footer */
.sub-footer{
	padding: 80px 0 40px 0;
	background-color: #333333;
	color: #777777;
}

.sub-footer article{
	width: 70%;
	margin:0 auto 0 auto;
	text-align: center;
}

.sub-footer article:nth-child(1) img{
	max-width: 50%;
	margin:0 0 10px 0;
}

.sub-footer article p{
	font-size: 15px;
	margin:20px 0;
}


.sub-footer article ul{
	margin:20px 0 0 0;
}

.sub-footer article li{
	display: inline-block;
}

@media(max-width: 800px){
	.sub-footer{
		padding: 40px 0 40px 0;
	}

	.sub-footer article li{
		display: block;
		line-height: 35px;
	}
}

.sub-footer article li a{
	color: #888888;
	text-decoration: none;
	font-size: 13px;
	margin:0 10px;
	text-transform: uppercase;
}

.sub-footer article li a:hover{
	color: #999999
}

/* footer */
footer{
	text-align: center;
	font-size: 14px;
	color: #666666;
	padding: 40px 0 20px 0;
	background-color: #333333;
	position: relative;
}

footer:before{
	content: "";
	width: 80%;
	height: 3px;
	background-color: #444444;
	top:0;
	left: 50%;
	transform: translateX(-50%);
	position: absolute;
}

footer a{
	color: #777777;
	text-decoration: none;
	-webkit-transition: all 400ms ease;
	-moz-transition: all 400ms ease;
	-ms-transition: all 400ms ease;
	-o-transition: all 400ms ease;
	transition: all 400ms ease;
	
}

footer a:hover{
	color: #1482AD;
}

/* woocommerce */
.product_meta{
	padding: 15px 0;
	color: #777777;
	font-size: 12px;
	clear: both;
}

.product_meta a{
	color: #1482AD;
	text-decoration: none;
}

.summary .price .woocommerce-Price-amount{
	font-size: 20px;
	padding: 5px 15px;
	color: #333333;
	border-radius: 3px;
	font-weight: bold;
	margin:20px 0 0 0;
	display: inline-block;
}

.woocommerce-product-details__short-description{
	font-size: 15px;
	color: #333333;
	padding: 20px 0 0 0;
}

.woocommerce-Tabs-panel{
	padding: 20px;
}

.woocommerce-Tabs-panel h2{
	display: none;
}

.woocommerce-Tabs-panel ul{
	padding:0 20px;
	color: #444444;
}

.woocommerce-Tabs-panel p strong{
	margin:20px 0 0 0;
	display: block;
}

/* related products */
.related{
	padding: 20px 0;
	text-align: center;
}

.related > h2{
	font-weight: 400;
	font-size: 20px;
	text-transform: uppercase;
	margin:0 0 40px 0;
	letter-spacing: 3px;
}

.related .woocommerce-loop-product__title{
	color: #333333;
	text-align: center;
	font-weight: bold;
}

.related .woocommerce-Price-amount{
	color: #444444;
	font-weight: bold;
	text-align: center;
	display: block;

}

.related .add_to_cart_button{
	display: block;
	text-align: center;
	margin:auto;
}

.product-thumbnail{
	width: 50px;
}

.cart{
	color: #444444;
	font-size: 14px;
}

.cart a{
	color: #333333;
	text-decoration: none;
}

.coupon input[type="text"]{
    -webkit-appearance: none;
    -webkit-border-radius: 0;
	padding: 7px;
	width: 40%;
	border-radius: 3px;
	outline: none;
	border:solid 1px #f0f0f0;
}

.products li{
	transition: all 400ms ease;
	padding: 0 0 20px 0 !important;
}

.products li:hover{
	box-shadow: 0 10px 40px rgba(0,0,0,.3);
}

.woocommerce #content input.button.alt:hover, 
.woocommerce #respond input#submit.alt:hover, 
.woocommerce a.button.alt:hover, 
.woocommerce button.button.alt:hover, 
.woocommerce input.button.alt:hover, 
.woocommerce-page #content input.button.alt:hover, 
.woocommerce-page #respond input#submit.alt:hover, 
.woocommerce-page a.button.alt:hover, 
.woocommerce-page button.button.alt:hover, 
.woocommerce-page input.button.alt:hover{
    -webkit-appearance: none;
    -webkit-border-radius: 0;
	background:#1482AD !important;
	background-color:#1482AD !important;
	color:white !important;
	text-shadow: transparent !important;
	box-shadow: none;
	border-radius: 3px;
	border-color:#1482AD !important;
}

.woocommerce #content input.button:hover, 
.woocommerce #respond input#submit:hover, 
.woocommerce a.button:hover, 
.woocommerce button.button:hover, 
.woocommerce input.button:hover, 
.woocommerce-page #content input.button:hover, 
.woocommerce-page #respond input#submit:hover, 
.woocommerce-page a.button:hover, 
.woocommerce-page button.button:hover, 
.woocommerce-page input.button:hover{
    -webkit-appearance: none;
    -webkit-border-radius: 0;
	background:#1482AD !important;
	background-color:#1482AD !important;
	color:white !important;
	text-shadow: transparent !important;
	box-shadow: none;
	border-color:#1482AD !important;
	border-radius: 3px;
}

.woocommerce #content input.button, 
.woocommerce #respond input#submit, 
.woocommerce a.button, 
.woocommerce button.button, 
.woocommerce input.button, 
.woocommerce-page #content input.button, 
.woocommerce-page #respond input#submit, 
.woocommerce-page a.button, 
.woocommerce-page button.button, 
.woocommerce-page input.button{
    -webkit-appearance: none;
    -webkit-border-radius: 0;
	background: #1482AD !important;
	color:white !important;
	text-shadow: transparent !important;
	border-color:#1482AD !important;
	border-radius: 3px;
}

.woocommerce #content input.button.alt:hover, 
.woocommerce #respond input#submit.alt:hover, 
.woocommerce a.button.alt:hover, 
.woocommerce button.button.alt:hover, 
.woocommerce input.button.alt:hover, 
.woocommerce-page #content input.button.alt:hover, 
.woocommerce-page #respond input#submit.alt:hover, 
.woocommerce-page a.button.alt:hover, 
.woocommerce-page button.button.alt:hover, 
.woocommerce-page input.button.alt:hover{
    -webkit-appearance: none;
    -webkit-border-radius: 0;
	background: #1482AD !important;
	box-shadow: none;
}

a.added_to_cart{
	font-size: 14px;
	bottom: -10px;
	text-align: center;
	width: 100%;
	text-decoration: none;
	color: #333333;
}

.products  .price{
	color: #1482AD;
}

.value select{
	padding: 12px;
	border:solid 1px #f0f0f0;
	border-radius: 3px;
	outline: none;
	cursor: pointer;
}

.woocommerce-variation-price{
	padding: 0px 0 20px 0;
}

.woocommerce-checkout-payment input[type="radio"]{
    -webkit-appearance: none;
    -webkit-border-radius: 0;
	display: none;
}

.woocommerce-checkout-payment img{
	width: 200px;
}

.woocommerce-checkout-payment li{
	position: relative;
}

.woocommerce-checkout-payment input[type="radio"] label{
    -webkit-appearance: none;
    -webkit-border-radius: 0;
	position: relative;
}

.woocommerce-privacy-policy-text{
	color: #333333;
	font-weight: 300;
}

.woocommerce-privacy-policy-link{
	color: #1482AD;
	text-decoration: none;
}

.woocommerce-privacy-policy-link:hover{
	color: #1482AD;
}

.woocommerce-info a,
.woocommerce-message a{
	color: #1482AD;
	text-decoration: none;
}

select.orderby{
	padding: 8px;
	border-radius: 3px;
	cursor: pointer;
	outline: none;
}


.woocommerce-loop-product__title{
	color: #333333;
	display: block;
}



.woocommerce-Price-amount{
	color: #444444;
	font-weight: bold;
}

/* user-option */
.woocommerce-MyAccount-navigation{

}

.woocommerce-MyAccount-navigation li{
	display: inline-block;
}

.woocommerce-MyAccount-navigation li a{
	display: block;
	color: #f0f0f0;
	text-decoration: none;
	font-size: 14px;
	padding: 0 10px;
	-webkit-transition: all 400ms ease;
	-moz-transition: all 400ms ease;
	-ms-transition: all 400ms ease;
	-o-transition: all 400ms ease;
	transition: all 400ms ease;
	
}

.woocommerce-MyAccount-navigation li:hover a,
.woocommerce-MyAccount-navigation .is-active a{
	color: #1482AD;
}

.woocommerce-MyAccount-content{
	padding: 20px;
}

.woocommerce-MyAccount-content p{
	margin:0 0 10px 0;
}

.woocommerce-MyAccount-content a{
	color: #1482AD;
	text-decoration: none;
	font-weight: bold;
}

nav.woocommerce-pagination{
	background-color: transparent !important;
	border:none !important;
}

nav.woocommerce-pagination ul.page-numbers{
	border:none !important;
}

nav.woocommerce-pagination ul.page-numbers li{
	border:none !important;
	margin:0 5px !important;
}

nav.woocommerce-pagination ul.page-numbers li a{
	border:none !important;
	transition: all 400ms ease;
}

nav.woocommerce-pagination .page-numbers{
	border:none;
}

.woocommerce ul.products li.product, 
.woocommerce-page ul.products li.product{
	text-align: center !important;
}