/*   font   face   */



@import url('https://fonts.googleapis.com/css?family=Lato:100,300,400,700,900|Tangerine:400,700');
/*  common  attributes  */





body {
	font-family: 'Lato', sans-serif;
	color: #7f7f7f;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
a:hover {
	text-decoration: none;
}
h1, h2 {
	font-family: 'Tangerine', cursive;
	font-weight: 700;
}
.h3, .h4, .h5, .h6, h3, h4, h5, h6 {
	line-height: 1.4;
}
/*  preloader   */



#loading {
	background-color: #537b01;
	height: 100%;
	width: 100%;
	position: fixed;
	z-index: 90;
	margin-top: 0px;
	top: 0px;
}
#loading-center {
	width: 100%;
	height: 100%;
	position: relative;
}
#loading-center-absolute {
	position: absolute;
	left: 50%;
	top: 50%;
	height: 200px;
	width: 200px;
	margin-top: -100px;
	margin-left: -100px;
	-ms-transform: rotate(-135deg);
	-webkit-transform: rotate(-135deg);
	transform: rotate(-135deg);
}
.object {
	-moz-border-radius: 50% 50% 50% 50%;
	-webkit-border-radius: 50% 50% 50% 50%;
	border-radius: 50% 50% 50% 50%;
	position: absolute;
	border-top: 5px solid #FFF;
	border-bottom: 5px solid transparent;
	border-left: 5px solid #FFF;
	border-right: 5px solid transparent;
	-webkit-animation: animate 2s infinite;
	animation: animate 2s infinite;
}
#object_one {
	left: 75px;
	top: 75px;
	width: 50px;
	height: 50px;
}
#object_two {
	left: 65px;
	top: 65px;
	width: 70px;
	height: 70px;
	-webkit-animation-delay: 0.2s;
	animation-delay: 0.2s;
}
#object_three {
	left: 55px;
	top: 55px;
	width: 90px;
	height: 90px;
	-webkit-animation-delay: 0.4s;
	animation-delay: 0.4s;
}
#object_four {
	left: 45px;
	top: 45px;
	width: 110px;
	height: 110px;
	-webkit-animation-delay: 0.6s;
	animation-delay: 0.6s;
}
 @-webkit-keyframes animate {
 50% {
 -ms-transform: rotate(360deg) scale(0.8);
 -webkit-transform: rotate(360deg) scale(0.8);
 transform: rotate(360deg) scale(0.8);
}
}
 @keyframes animate {
 50% {
 -ms-transform: rotate(360deg) scale(0.8);
 -webkit-transform: rotate(360deg) scale(0.8);
 transform: rotate(360deg) scale(0.8);
}
}
/*    bottom-button    */





.bottom-button {
	position: fixed;
	bottom: 40px;
	z-index: 100;
	float: right;
	right: 2%;
}
.bottom-button a {
	float: right;
	padding: 8px 15px;
	background: rgba(107,142,35,0.8);
	border: 1px solid #fff;
	color: #fff;
	font-size: 20px;
	display: none;
}
/*   header   */



/*  header top  */



header .header-top {
	background: #3c3c3c;
}
header .header-top ul {
	float: right;
	background: #727272;
	margin-bottom: -10px;
	padding: 10px 5%;
	-webkit-transform: skew(45deg);
	-moz-transform: skew(45deg);
	-ms-transform: skew(45deg);
	-o-transform: skew(45deg);
	transform: skew(45deg);
}
header .header-top ul li {
	display: inline-block;
	color: #aafb02;
	margin-left: 20px;
	-webkit-transform: skew(-45deg);
	-moz-transform: skew(-45deg);
	-ms-transform: skew(-45deg);
	-o-transform: skew(-45deg);
	transform: skew(-45deg);
}
header .header-top ul li i {
	margin-right: 5px;
}
header .header-top ul li a {
	color: #aafb02;
}
/*   navigation   */



.nav-area .navbar-default {
	background: none;
	border: none;
	margin: 0;
}
.nav-area .navbar-default .navbar-collapse {
	float: left;
	width: 62%;
}
.nav-area .navbar-default .navbar-nav>li {
	margin: 10px 10px 0;
}
.nav-area .navbar-default .navbar-nav>li>a {
	color: #537b01;
	font-size: 16px;
	font-weight: 700;
}
.nav-area .navbar-default .navbar-nav>li>a:hover {
	background: #537b01;
	color: #fff;
}
.get-free-code {
	float: right;
	margin-top: 10px;
	;
}
.get-free-code a {
	background: #537b01;
	color: #fff;
	padding: 15px 30px;
	text-transform: uppercase;
	font-weight: 700;
	display: inline-block;
	vertical-align: middle;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	box-shadow: 0 0 1px rgba(0, 0, 0, 0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-moz-osx-font-smoothing: grayscale;
	position: relative;
	-webkit-transition-property: color;
	transition-property: color;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
}
.get-free-code a:before {
	content: "";
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #505050;
	-webkit-transform: scaleX(0);
	transform: scaleX(0);
	-webkit-transform-origin: 0 50%;
	transform-origin: 0 50%;
	-webkit-transition-property: transform;
	transition-property: transform;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
	-webkit-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
}
.get-free-code a:hover, .get-free-code a:focus, .get-free-code a:active {
	color: white;
}
.get-free-code a:hover:before, .get-free-code a:focus:before, .get-free-code a:active:before {
	-webkit-transform: scaleX(1);
	transform: scaleX(1);
}
.navbar-default .navbar-brand {
	padding: 8px 15px;
}
.nav-area .navbar-default .navbar-nav>.active>a, .nav-area .navbar-default .navbar-nav>.active>a:focus, .nav-area .navbar-default .navbar-nav>.active>a:hover {
	background: #537b01;
	color: #fff;
}
/*   slider   */



.slider .carousel-caption {
	top: 50px;
	text-shadow: none;
	left: 25%;
	right: 25%;
}
.slider .carousel-caption h2 {
	font-size: 80px;
	font-weight: 700;
}
.slider .carousel-caption h4 {
	font-size: 20px;
	font-weight: 700;
}
.slider .carousel-control {
	width: auto;
	opacity: 1;
	background: none;
	text-shadow: none;
}
.slider .carousel-control .glyphicon-chevron-left, .slider .carousel-control .icon-prev {
	margin-left: 0;
	background: rgba(107,142,35,0.8);
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.slider .carousel-control .glyphicon-chevron-right, .slider .carousel-control .icon-next {
	margin-right: 0;
	background: rgba(107,142,35,0.8);
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.slider .carousel-indicators {
	bottom: 40px;
}
.slider .carousel-indicators li {
	width: 14px;
	height: 14px;
	border: #fff 2px solid;
	margin: 3px;
}
.slider .carousel-indicators .active {
	border: #aafb02 2px solid;
	background: #aafb02;
}
.slider .carousel-inner>.item>img {
	width: 100%;
}
/*   about   */





.about {
	background: #6b8e23;
	margin: 50px 0;
}
.about-pic {
	z-index: 10;
}
.about-pic img {
	width: 125%;
}
.col-about {
	background: url(../img/about-bg.jpg) no-repeat;
	background-size: cover;
	background-position: center;
	color: #fff;
	padding: 20px 21px 30px 7%;
	margin-top: -50px;
	margin-bottom: -40px;
}
.col-about h2 {
	font-size: 80px;
}
.col-about h5 {
	font-size: 18px;
}
.col-about h4 {
	font-weight: 900;
	margin-top: 30px;
}
.col-about ul li {
	font-size: 18px;
	margin-top: 10px;
}
.col-about ul li:before {
	content: "\f178";
	font: normal normal normal 14px/1 FontAwesome;
	margin-right: 10px;
	font-size: 18px;
}
.col-about .btn {
	border: #fff 1px solid;
	border-radius: 20px;
	padding: 7px 30px;
	color: #fff;
	text-transform: uppercase;
	font-weight: 700;
	margin-top: 25px;
	box-shadow: inset 0 0 15px rgba(0,0,0,.5), 0 0 15px rgba(0,0,0,.5);
	vertical-align: middle;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-moz-osx-font-smoothing: grayscale;
	position: relative;
	-webkit-transition-property: color;
	transition-property: color;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
	overflow: hidden;
}
.col-about .btn:before {
	content: "";
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #8dd100;
	-webkit-transform: scaleX(0);
	transform: scaleX(0);
	-webkit-transform-origin: 0 50%;
	transform-origin: 0 50%;
	-webkit-transition-property: transform;
	transition-property: transform;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
	-webkit-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
}
 .col-about .btn:hover, .col-about .btn:focus, .col-about .btn:active {
 color: white;
}
.col-about .btn:hover:before, .col-about .btn:focus:before, .hvr-sweep-to-right:active:before {
	-webkit-transform: scaleX(1);
	transform: scaleX(1);
}
/*   product   */



.product {
	text-align: center;
	margin: 70px 0 30px;
}
.product h1 {
	font-size: 80px;
	color: #537b01;
	text-transform: capitalize;
}
.product h1:after {
	content: "";
	display: block;
	background: url(../img/separator.png) no-repeat;
	background-position: center;
	height: 30px;
	margin: -10px auto 0;
}
.col-product figure {
	position: relative;
	overflow: hidden;
	border: #537b01 2px solid;
}
.pro-pic img {
	width: 100%;
}
.col-product {
	margin-top: 30px;
}
.col-product figure figcaption {
	position: absolute;
	bottom: -50px;
	width: 100%;
	transition: all 500ms ease;
	-webkit-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
}
.col-product figure figcaption:before {
	content: "";
	position: absolute;
	left: 0px;
	top: -21px;
	width: 53.1%;
	height: 90px;
	background: #ffffff;
	border-top: 1px solid #e0e0e0;
	-webkit-transform: rotate(-12deg);
	-ms-transform: rotate(-12deg);
	-o-transform: rotate(-12deg);
	-moz-transform: rotate(-12deg);
	transform: rotate(-12deg);
	transition: all 500ms ease;
	-webkit-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	z-index: 1;
}
.col-product figure figcaption:after {
	content: "";
	position: absolute;
	right: 0px;
	top: -21px;
	width: 53.1%;
	height: 90px;
	background: #ffffff;
	border-top: 1px solid #e0e0e0;
	-webkit-transform: rotate(12deg);
	-ms-transform: rotate(12deg);
	-o-transform: rotate(12deg);
	-moz-transform: rotate(12deg);
	transform: rotate(12deg);
	transition: all 500ms ease;
	-webkit-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	z-index: 1;
}
.pro-text {
	position: relative;
	left: 0px;
	bottom: 0px;
	width: 100%;
	height: auto;
	padding: 0 6% 15px;
	background: #ffffff;
	/*border: 1px solid #e0e0e0;*/

	border-top: none;
	z-index: 2;
}
.pro-text h4 {
	color: #537b01;
	text-transform: uppercase;
	font-weight: 700;
}
.col-product figure:hover figcaption {
	bottom: 0;
}
.col-product figure:hover figcaption:before, .col-product figure:hover figcaption:after {
	border-top-color: #537b01;
	border-top-width: 5px;
	-webkit-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	transform: rotate(0deg);
}
.view-btn .btn {
	border: #537b01 1px solid;
	border-radius: 20px;
	padding: 7px 20px;
	font-weight: 700;
	text-transform: uppercase;
	color: #537b01;
	font-size: 12px;
	margin-top: 10px;
	vertical-align: middle;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	box-shadow: 0 0 1px rgba(0, 0, 0, 0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-moz-osx-font-smoothing: grayscale;
	position: relative;
	-webkit-transition-property: color;
	transition-property: color;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
	overflow: hidden;
}
.view-btn .btn:before {
	content: "";
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #537b01;
	-webkit-transform: scaleX(0);
	transform: scaleX(0);
	-webkit-transform-origin: 0 50%;
	transform-origin: 0 50%;
	-webkit-transition-property: transform;
	transition-property: transform;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
	-webkit-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
}
.view-btn .btn:hover, .view-btn .btn:focus, .view-btn .btn:active {
	color: white;
}
.view-btn .btn:hover:before, .view-btn .btn:focus:before, .view-btn .btn:active:before {
	-webkit-transform: scaleX(1);
	transform: scaleX(1);
}
.pro-view-btn .view-btn .btn {
	margin-top: 30px;
	padding: 10px 50px;
	font-size: 14px;
}
/*   testimonials    */





.testimonials {
	background: url(../img/test/bg.jpg) no-repeat;
	background-size: cover;
	background-position: center;
	color: #fff;
	padding: 50px 0;
}
.testimonials h2 {
	font-size: 80px;
}
.testimonials .item {
	margin: 20px 0;
}
.test-pic {
	border-radius: 50%;
	border: #fff 5px solid;
	float: right;
	width: 12%;
	overflow: hidden;
	margin-left: 6%;
}
.test-pic img {
	width: 100%;
}
.testimonials h4 {
	font-weight: 300;
	margin: 0;
	color:#fff;
}
.testimonials h3 {
	float: right;
}
.testimonials .carousel-indicators {
	position: relative;
	bottom: 0;
	left: 0;
	width: auto;
	margin-left: 0;
}
.testimonials .carousel-indicators li {
	width: 14px;
	height: 14px;
	border: #fff 2px solid;
	margin: 3px;
}
.testimonials .carousel-indicators .active {
	border: #aafb02 2px solid;
	background: #aafb02;
}
/*   footer   */





footer {
	background: #505050;
	margin-top: 70px;
	position: relative;
	color: #fff;
	padding: 50px 0;
}
footer:before {
	content: "";
/*	background: url(../img/footer-top.png) no-repeat; */
	height: 93px;
	display: block;
	width: 100%;
	background-size: cover;
	position: absolute;
	top: -70px
}
.col-footer {
	padding: 0 5%;
}
.col-footer h3 {
	color: #8dd100;
	font-weight: 700;
}
.col-footer ul {
	margin-top: 20px;
	overflow: hidden;
}
.col-footer ul li {
	margin-top: 10px;
	font-size: 16px;
}
.col-footer ul li a {
	color: #fff;
}
.col-footer ul li i {
	color: #8dd100;
	margin-right: 5px;
}
.col-ft-prd ul li {
	width: 43%;
	margin-right: 5%;
	display: inline-block;
}
.col-ft-prd ul li a {
	display: block;
	height: 60px;
	overflow: hidden;
}
.col-ft-prd ul li img {
	width: 100%;
}
.col-ft-abt h5 {
	margin-top: 30px;
}
.col-ft-social {
	text-align: center;
	margin-top: 40px;
}
.col-ft-social ul li {
	display: inline-block;
	border: 1px solid #fff;
	border-radius: 50%;
	padding: 5px;
	width: 35px;
	height: 35px;
	margin: 0 8px;
}
.col-ft-social ul li a {
	color: #fff;
}
.col-ft-social ul li:hover a {
	color: #8dd100;
}
.copy-right {
	background: #819f44;
	color: #fff;
	padding: 10px 0;
}
.copy-right ul li {
	display: inline-block;
}
.copy-right ul .develop {
	float: right;
}
.copy-right ul li a {
	color: #fff;
}
/*---mukit-----*/





/*   product   page   */



.product-page {
	margin-top: 30px;
}
.product-banner {
	background: url(../img/product-banner.jpg) 0 0 no-repeat;
	height: 200px;
}
.product-img img {
	max-width: 100%;
	transition: all 500ms ease-in-out;
}
.product-info h4 {
	color: #333333;
}
.product-info > h5 {
	display: inline-block;
	width: 100%;
	margin-bottom: 0;
}
.product-info h5 span {
	float: left;
	padding: 8px 20px;
	background: #f1f1f1;
	border-radius: 25px;
	color: #333333;
}
.product-info h5 a.btn-buy {
	float: right;
	padding: 8px 20px;
	color: #ffffff;
	background: #537B01;
	border-radius: 25px;
	position: relative;
	transition: all 0.4s ease-in-out;
}
.product-info h5 a.btn-buy:hover {
	background: #4B5B2C;
}
.product-box {
	padding: 20px;
	border: 1px solid #ebebeb;
	transition: all 400ms ease-in-out;
	background: #ffffff;
	margin-bottom: 30px;
}
.product-row {
	position: relative;
	display: flex;
	flex-flow: row wrap;
	margin-top: 30px;
}
.product-box:hover {
	border: 1px solid #537B01;
}
.product-box:hover .product-img img {
	transform: scale(1.1);
}
.product-box:hover .product-img {
	overflow: hidden;
}
/*   gallery   page  */



.gallery-banner {
	background: url(../img/gallery-banner.jpg) 0 0 no-repeat;
	height: 200px;
}
.title-bg1 {
	background: #f5f5f5 url(../img/titlebg1.png) 100% 0 no-repeat;
}
.title-bg2 {
	background: #f5f5f5 url(../img/titlebg2.png) 100% 0 no-repeat;
}
.title-bg3 {
	background: #f5f5f5 url(../img/titlebg3.png) 100% 0 no-repeat;
}
.title-bg4 {
	background: #f5f5f5 url(../img/titlebg4.png) 100% 0 no-repeat;
}
.title-bg5 {
	background: #f5f5f5 url(../img/titlebg5.png) 100% 0 no-repeat;
}
.gallerytitle-row {
	padding: 20px;
	text-align: left;
	margin-top: 40px;
	margin-bottom: 40px;
}
.gallerytitle-row h2 {
	font-size: 50px;
	color: #333333;
	margin-top: 0;
}
.gallerytitle-row h5 {
	font-size: 14px;
	text-transform: uppercase;
}
.gallery-page {
	margin-top: 30px;
}
/*   about   page  */





.about-banner {
	background: url(../img/about-page-bg.jpg) 0 0 no-repeat;
	height: 200px;
}
.about-page {
	text-align: left;
	margin-top: 30px;
}
.about-page h1 {
	text-align: center;
}
.about-page .col-about {
	background: none;
	color: #7f7f7f;
	padding: 0;
	margin-top: 0;
	margin-bottom: 0;
}
.about-page img {
	float: right;
}
/*    testimonials  page   */





.test-banner {
	background: url(../img/test/page-bg.jpg) 0 0 no-repeat;
	height: 200px;
}
.testimonials-page {
	margin-top: 30px;
}
.test-page {
	-moz-column-width: 400px;
	-webkit-column-width: 400px;
	-ms-column-width: 400px;
	-o-column-width: 400px;
	-moz-column-gap: 16px;
	-webkit-column-gap: 16px;
	-ms-column-gap: 16px;
	-o-column-gap: 16px;
	margin: 20px 0;
}
.col-test {
	display: inline-block;
	margin: 15px 7px;
	padding: 16px;
	width: 100%;
	border: #ebebeb 3px solid;
	text-align: left;
}
.col-test .test-pic {
	border: #e0e0e0 5px solid;
	float: left;
	width: 25%;
	margin-left: 0;
	margin-right: 3%;
	box-shadow: #537b01 0 0 20px;
}
.col-test h4 {
	font-size: 15px;
}
.col-test h3 {
	font-size: 20px;
	font-weight: 900;
	color: #537b01;
	margin: 10px;
}
/*   contact-page   */





.contact-banner {
	background: url(../img/contact-banner.jpg) 0 0 no-repeat;
	height: 200px;
}
.inner-banner {
	background-size: cover;
}
.contact-page {
	margin-top: 30px;
}
.contact-page .row {
	margin-top: 30px;
}
.contact-page .col-footer {
	text-align: left;
	padding: 0;
}
.col-cnt-form h2 {
	color: #fff;
	font-size: 60px;
}
.contact-page .col-footer ul {
	margin: 10px 0 30px;
}
.contact-page .col-footer ul li a {
	color: #7f7f7f;
}
.col-cnt-form {
	background: url(../img/about-bg.jpg) no-repeat;
	background-size: cover;
	text-align: center;
	padding: 40px 0;
	background-position: center;
}
.col-cnt-form h3 {
	color: #fff;
	font-weight: 700;
}
.col-cnt-form form {
	width: 90%;
	margin: auto;
}
.group {
	position: relative;
	width: 90%;
	margin: 25px auto 25px;
}
input[type=email], input[type=search], input[type=number], input[type=password], input[type=tel], input[type=text], textarea {
	width: 100%;
	max-width: 100%;
}
.col-cnt-form input, .col-cnt-form textarea {
	font-size: 14px;
	padding: 10px 10px 10px 5px;
	display: block;
	width: 100%;
	border: none;
	border-bottom: 1px solid #fff;
	background: transparent;
	color: #fff;
}
.col-cnt-form input:focus, .col-cnt-form textarea:focus {
	outline: none;
}
/* LABEL ======================================= */

.col-cnt-form label {
	color: #fff;
	font-size: 14px;
	font-weight: normal;
	position: absolute;
	pointer-events: none;
	left: 5px;
	top: 0;
	transition: 0.2s ease all;
	-moz-transition: 0.2s ease all;
	-webkit-transition: 0.2s ease all;
}



/* active state */

.col-cnt-form input:focus ~ label, .col-cnt-form input:valid ~ label, .col-cnt-form textarea:focus ~ label, .col-cnt-form textarea:valid ~ label {
 top:-20px;
 font-size:12px;
 color:#fff;
}
/* BOTTOM BARS ================================= */

.col-cnt-form .bar {
	position: relative;
	display: block;
	width: 100%;
}
.col-cnt-form .bar:before, .col-cnt-form .bar:after {
	content: '';
	height: 2px;
	width: 0;
	bottom: 1px;
	position: absolute;
	background: #fff;
	transition: 0.2s ease all;
	-moz-transition: 0.2s ease all;
	-webkit-transition: 0.2s ease all;
}
.col-cnt-form .bar:before {
	left: 50%;
}
.col-cnt-form .bar:after {
	right: 50%;
}
/* active state */

.col-cnt-form input:focus ~ .bar:before, .col-cnt-form input:focus ~ .bar:after, .col-cnt-form textarea:focus ~ .bar:before, .col-cnt-form textarea:focus ~ .bar:after {
	width: 50%;
}
/* HIGHLIGHTER ================================== */

.col-cnt-form .highlight {
	position: absolute;
	height: 60%;
	width: 100px;
	top: 25%;
	left: 0;
	pointer-events: none;
	opacity: 0.5;
}
/* active state */

.col-cnt-form input:focus ~ .highlight, .col-cnt-form textarea:focus ~ .highlight, .col-cnt-form textarea:focus ~ .bar:before, .col-cnt-form textarea:focus ~ .bar:after {
	-webkit-animation: inputHighlighter 0.3s ease;
	-moz-animation: inputHighlighter 0.3s ease;
	animation: inputHighlighter 0.3s ease;
}



/* ANIMATIONS ================ */

@-webkit-keyframes inputHighlighter {
 from {
background:#aafb02;
}
 to {
width:0;
background:transparent;
}
}
 @-moz-keyframes inputHighlighter {
 from {
background:#aafb02;
}
 to {
width:0;
background:transparent;
}
}
 @keyframes inputHighlighter {
 from {
background:#aafb02;
}
 to {
width:0;
background:transparent;
}
}
.col-cnt-form .cntct-frm-btn {
	border: #fff 1px solid;
	width: 100%;
	float: right;
	border-radius: 2px;
	font-weight: 700;
	padding: 10px 0;
	font-size: 14px;
	color: #fff;
	border-radius: 20px;
}
.col-cnt-form .cntct-frm-btn:hover {
	color: #537b01;
}
.col-cnt-form .cont-in-btn {
	width: 35%;
	position: relative;
	overflow: hidden;
	display: inline-block;
	vertical-align: middle;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	box-shadow: 0 0 1px rgba(0, 0, 0, 0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-moz-osx-font-smoothing: grayscale;
	position: relative;
	-webkit-transition-property: color;
	transition-property: color;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
}
.col-cnt-form .cont-in-btn:before {
	content: "";
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #fff;
	-webkit-transform: scaleY(0);
	transform: scaleY(0);
	-webkit-transform-origin: 50% 100%;
	transform-origin: 50% 100%;
	-webkit-transition-property: transform;
	transition-property: transform;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
	-webkit-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
	border-radius: 20px;
}
.col-cnt-form .cont-in-btn:hover::before {
	-webkit-transform: scaleY(1);
	transform: scaleY(1);
}
.map {
	padding-right: 7%;
}
.scrollof {
	pointer-events: none;
}
/*  quote-form-page */





.quote-banner {
	background: url(../img/get-bg.jpg) 0 0 no-repeat;
	height: 200px;
	background-size: cover;
}
.quote-form-page .col-cnt-form {
	background: url(../img/quote-form-bg.jpg) no-repeat;
	background-size: cover;
	background-position: center;
	width: 60%;
	margin: auto;
	float: none;
}
.product-box .buy-now {
	background: #537b01 none repeat scroll 0 0;
	border-radius: 25px;
	color: #ffffff;
	float: right;
	padding: 8px 20px;
	position: relative;
	transition: all 0.4s ease-in-out 0s;
}
.product-box .woocommerce-Price-amount.amount {
	background: #f1f1f1 none repeat scroll 0 0;
	border-radius: 25px;
	color: #333333;
	float: left;
	padding: 8px 20px;
}
.attachment-shop_single.size-shop_single.wp-post-image {
	width: 100%;
	height: auto;
}
.col-lg-3.col-md-4.col-xs-6.col-pro-page {
	list-style-type: none;
}
.product-box h4 {
	color: #333333;
}
.book-cart .yith-wcwl-add-to-wishlist{
	margin-top:20px;
}
.book-cart .yith-wcwl-add-to-wishlist a.add_to_wishlist{
	margin-left:21px;
    color: #7a9e30;
    font-size: 16px;
}
a, .book-cart .yith-wcwl-add-to-wishlist a.add_to_wishlist:hover{
	color:#669011;
}
a:focus, a:hover{
	color:#537b01;
}
.result-count{
	text-align:right;
}
.result-count p{
	font-size:16px;
	color:#888;
}
.result-count .orderby{
	border-color:#ccc;
	padding:5px 0;
	color:#999;
}
.book-cart .add-pro{
    display: inline-block;
    background: #727272;
    padding: 7px 15px;
    border-radius: 20px;
	color:#ffffff;
	font-weight:bold;
}
.book-cart .add-pro i{
	color:#fff;
}
.col-book-rt h2{
	font-family:'Lato', sans-serif;
	color: #537b01;
    font-size: 30px;
}
.col-book-rt h3{
	margin:15px 0;
}
.col-book-rt h3 span{
	font-weight:600;
	color:#555;
}
.pro-details{
	margin:40px 0 10px;
}
.col-book .thumbnails{
	text-align:center;
}
.col-book .thumbnails a{
	display:inline-block;
	width:32.333%;
	margin-right:1%;
	border:1px solid #537b01;
	padding:5px;
}
.col-book .thumbnails a img{
	max-width:100%;
	height:auto;
}
.col-book-rt .content-description p{
	font-size:16px;
	line-height:normal;
	margin-bottom:30px;
}
.col-book-rt .cart-btn, .col-book-rt .yith-wcwl-add-to-wishlist, .col-book-rt .cart-btn .add-cart-details, .col-book-rt .cart-btn .quantity{
	display:inline-block;
}
.col-book-rt .product_meta{
	margin-top:30px;
}
.col-book-rt .cart-btn .quantity input[type=number].qty{
	width:60px;
	height:42px;
}
.col-book-rt .cart-btn .add-cart-details{
	background: #537b01;
    color: #fff;
    padding: 9px 20px;
	vertical-align:top;
	margin:0 10px;
	border-radius:2px;
	font-size:16px;
	height:42px;
}
.col-book-rt .cart-btn .add-cart-details:hover, .col-book-rt .cart-btn .add-cart-details:focus{
	background:#4a6e00;
}
.col-book-rt .cart-btn .add-cart-details i{
	margin-left:5px;
}
.col-book-rt .yith-wcwl-add-to-wishlist .add_to_wishlist{
	color: #fff;
    padding: 11px 20px;
	vertical-align:top;
	border-radius:2px;
	font-size:16px;
	background:#727272;
}
.col-book-rt .yith-wcwl-add-to-wishlist .add_to_wishlist:hover, .col-book-rt .yith-wcwl-add-to-wishlist .add_to_wishlist:focus{
	background:#464646;
}
.col-book-rt .woocommerce-tabs{
	margin-top:30px;
}
.col-book-rt .woocommerce-tabs ul.tabs{
	margin-bottom:0;
}
.col-book-rt .woocommerce-tabs ul.tabs li{
	display:inline-block;
	padding:5px 10px;
	margin:0 5px;
	border-style:solid;
	border-color:#eee;
	border-width:1px 1px 0 1px;
	font-size:16px;
	border-radius:3px 3px 0 0;
}
.col-book-rt .woocommerce-tabs ul.tabs li a{
	color:#666;
}
.col-book-rt .woocommerce-tabs ul.tabs li:hover{
	background:#929292;
}
.col-book-rt .woocommerce-tabs ul.tabs li:hover a{
	color:#fff;
}
.col-book-rt .woocommerce-tabs ul.tabs li.active{
	background:#f60;
	border-color:#f60;
}
.col-book-rt .woocommerce-tabs ul.tabs li.active a, .col-book-rt .woocommerce-tabs ul.tabs li.active a:focus{
	color:#fff;
	outline:none;
	text-decoration:none;
}
.col-book-rt .woocommerce-tabs .panel{
	border:1px solid #eee;
	padding:10px 15px;
	border-radius:2px;
}
.col-book-rt .woocommerce-Reviews h2.woocommerce-Reviews-title{
	font-size:24px;
	color:#888;
	margin:5px 0 10px;
}
.col-book-rt .woocommerce-tabs .commentlist .comment_container .meta{
	font-size:14px !important;
}
.col-book-rt .woocommerce-tabs .commentlist .comment_container .meta strong{
	font-size:16px;
    color: #5c8900;
}
.col-book-rt .comment-respond h3.comment-reply-title{
	font-size:20px;
	color:#666;
}
.col-book-rt .comment-form label{
	font-family:inherit;
}
.col-book-rt .comment-form textarea, .col-book-rt .comment-form input[type=text], .col-book-rt .comment-form input[type=email]{
	border:1px solid #ddd;
	border-radius:3px;
}
.col-book-rt .comment-form textarea{
	height:100px;
}
.col-book-rt .comment-form input[type=text], .col-book-rt .comment-form input[type=email]{
	height:40px;
}
.col-book-rt .comment-form .form-submit input.submit{
	background: #537b01 !important;
    color: #fff !important;
    border: none !important;
    padding: 8px 15px !important;
    border-radius: 3px !important;
    text-transform: uppercase;
    font-weight: 500 !important;
	line-height:inherit !important;
}
.col-book-rt .comment-form .form-submit input.submit:hover, .col-book-rt .comment-form .form-submit input.submit:focus{
	background:#4a6e00 !important;
}
.col-book-rt p.stars a{
	font-size:20px;
	margin:0 2px;
}
.woocommerce-cart .woocommerce .shop_table .coupon #coupon_code{
	width:130px !important;
	padding:6px;
}
.woocommerce-cart .woocommerce .shop_table .product-thumbnail a img{
	width:60px;
}
.woocommerce-cart .wc-proceed-to-checkout .checkout-button{
	background:#999 !important;
}
.woocommerce-cart .wc-proceed-to-checkout .checkout-button:hover{
	background:#727272 !important;
}
.woocommerce-cart section h1, .woocommerce-cart section h2, .woocommerce-checkout section h1, .woocommerce-wishlist section h1, .logged-in h1, .woocommerce-account h1{
	font-size:40px;
	color:#537b01;
}
.woocommerce-cart .woocommerce a.remove, .woocommerce-wishlist .woocommerce a.remove_from_wishlist{
	font-size:20px;
	width:20px;
	height:20px;
	line-height:18px;
}
.woocommerce-checkout section form.woocommerce-checkout{
	border: 1px solid #eee;
    padding: 10px;
    box-shadow: 5px 0px 15px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}
.woocommerce-checkout section form.woocommerce-checkout .col2-set .col-1, .woocommerce-checkout section form.woocommerce-checkout .col2-set .col-2{
	padding:0;
}
.woocommerce-checkout section form.woocommerce-checkout input, .woocommerce-checkout section form.woocommerce-checkout .select2-choice{
	border-color: #ddd;
    height: 35px;
}
.woocommerce-checkout section form.woocommerce-checkout textarea{
	height:100px;
	border-color: #ddd;
}
.woocommerce-checkout section form.woocommerce-checkout .select2-choice{
	line-height:35px;
}
.woocommerce-checkout .wc_payment_method .about_paypal{
	font-size:18px !important;
	line-height:normal !important;
	margin-top:15px;
	float:none !important;
	display:inline-block;
	color:#666;
}
.woocommerce-checkout .wc_payment_method img{
	margin:0 !important;
}
.woocommerce-wishlist .book-cart .add-pro{
	text-transform:uppercase;
    border-radius: 3px;
    font-weight: 500;
}
.woocommerce-wishlist .book-cart .yith-wcwl-add-to-wishlist{
	margin-top:5px;
}
.woocommerce-checkout .form-row.place-order input.button.alt, .woocommerce-wishlist .book-cart .add-pro, .woocommerce-message a.button{
	background:#537b01 !important;
	color:#fff;
}
.woocommerce-checkout .form-row.place-order input.button.alt:hover, .woocommerce-wishlist .book-cart .add-pro:hover, .woocommerce-message a.button:hover{
	background:#456700 !important;
	color:#fff;
}
.woocommerce-wishlist .wishlist-title{
	display:none;
}
.single-product .details-page, .woocommerce-cart section#content, .woocommerce-checkout section#content, .woocommerce-wishlist section#content, .logged-in section#content, .woocommerce-account section#content{
	box-shadow:inset 0 10px 20px -7px rgba(0,0,0,0.08);
}
.woocommerce .star-rating span{
	color:#f60;
}
.post-type-archive-product.woocommerce .star-rating, .home .woocommerce .star-rating{
	float:none;
	margin:0 auto 15px;
}
p.woocommerce-thankyou-order-received{
	font-size: 20px;
    color: #f60;
    font-weight: 600;
    padding-bottom: 15px;
}
.woocommerce .woocommerce-thankyou-order-details.order_details li{
	float:none;
	display:inline-block;
	font-size:12px;
}
.single-product .col-book-rt span.woocommerce-Price-amount.amount, .single-product .col-book-rt .woocommerce-Price-currencySymbol{
	color:#f60;
}
.woocommerce-account form.login label{
	font-size:16px;
}
.logged-in .woocommerce{
	margin-bottom:30px;
}
.logged-in .woocommerce .woocommerce-MyAccount-navigation{
	width:18%;
}
.logged-in .woocommerce .woocommerce-MyAccount-content, .logged-in .woocommerce .woocommerce-MyAccount-content1{
	width:80%;
	font-size:16px;
	color:#777;
    background: #f9f9f9;
    padding: 10px 15px;
    border: 1px solid #eee;
    box-shadow: 5px 5px 10px rgba(0,0,0,0.05);
}
.logged-in .woocommerce .woocommerce-MyAccount-navigation ul{
	background:#f9f9f9;
	border:1px solid #eee;
}
.logged-in .woocommerce .woocommerce-MyAccount-navigation ul li a{
	font-size:16px;
	display:block;
	padding:6px 15px;
}
.logged-in .woocommerce .woocommerce-MyAccount-navigation ul li:not(:last-child) a{
	border-bottom:1px solid #e5e5e5;
}
.logged-in .woocommerce .woocommerce-MyAccount-navigation ul li.is-active a, .logged-in .woocommerce .woocommerce-MyAccount-navigation ul li a:hover{
	background:#537b01;
	color:#fff;
}
.logged-in .woocommerce .woocommerce-MyAccount-content form h3, .logged-in .woocommerce .woocommerce-MyAccount-content1 form h3{
	margin-top:0;
}
.logged-in .woocommerce .woocommerce-EditAccountForm legend{
	margin:10px 0;
    color: #537b01;
}
.logged-in .woocommerce .woocommerce-MyAccount-content .woocommerce-info, .logged-in .woocommerce .woocommerce-MyAccount-content1 .woocommerce-info{
	border:none;
	background:none;
	margin-bottom:0 !important;
}

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


/*    media   css   */


@media screen and (min-width:1500px) {
footer::before {
	height: 113px;
	top: -100px;
}
}

@media screen and (max-width:1200px) {
.image-set .row {
	margin: 0;
}
.bottom-button {
	bottom: 40px;
}
}

@media screen and (min-width:992px) and (max-width:1200px) {
.main-container, .footer-container {
	max-width: 980px;
}
.nav-area .navbar-default .navbar-collapse {
	width: 56%;
}
.nav-area .navbar-default .navbar-nav>li {
	margin: 10px 2px 0;
}
.nav-area .navbar-default .navbar-nav>li>a {
	font-size: 14px;
	padding: 15px 10px;
}
.get-free-code a {
	padding: 15px 12px;
	font-size: 12px;
}
.slider .carousel-caption h2 {
	font-size: 65px;
}
.slider .carousel-caption {
	top: 20px;
}
.slider .carousel-caption h4 {
	font-size: 17px;
}
.col-product figure figcaption:after, .col-product figure figcaption:before {
	width: 54.1%;
}
.col-footer {
	padding: 0 3%;
}
.gallerytitle-row h5 {
	padding-right: 35%;
}
}

@media screen and (min-width:768px) and (max-width:991px) {
.main-container, .footer-container {
	max-width: 740px
}
.nav-area .navbar-header {
	width: 20%;
}
.navbar-default .navbar-brand {
	padding: 8px 0;
}
.navbar-default .navbar-brand img {
	width: 100%;
}
.nav-area .navbar-default .navbar-collapse {
	width: 60%;
}
.nav-area .navbar-default .navbar-nav>li {
	margin: 10px 0 0;
}
.nav-area .navbar-default .navbar-nav>li>a {
	font-size: 13px;
	padding: 15px 7px;
}
.get-free-code a {
	padding: 15px 10px;
	font-size: 10px;
}
.slider .carousel-caption h2 {
	font-size: 50px;
}
.slider .carousel-caption {
	top: 0;
}
.slider .carousel-caption h4 {
	font-size: 14px;
}
.test-pic {
	width: 16%;
}
.col-product figure figcaption:before {
	width: 54.1%;
}
.col-about h2 {
	font-size: 50px;
	margin-bottom: 0;
}
.col-about h5 {
	font-size: 14px;
	margin-top: 0;
}
.col-about h4 {
	margin-top: 5px;
}
.col-about ul li {
	font-size: 14px;
	margin-top: 5px;
}
.product h1 {
	font-size: 50px;
}
.testimonials h2 {
	font-size: 50px;
}
.testimonials .item {
	margin: 0;
}
.testimonials h4 {
	font-size: 14px;
	font-weight: 500;
}
.title-bg1, .title-bg2, .title-bg3, .title-bg4, .title-bg5 {
	background-size: 30%;
}
.quote-form-page .col-cnt-form {
	width: 80%;
}
.col-cnt-form .cont-in-btn {
	width: 50%;
}
.col-test {
	margin: 15px 0;
}
.about-page .col-about {
	padding: 0 15px;
}
}

@media screen and (min-width:481px) and (max-width:767px) {
.main-container, .footer-container {
/* max-width: 530px;*/

}
.col-product figure figcaption::before {
	width: 55.1%;
}
.col-product figure figcaption::after {
	width: 55.1%;
}
.get-free-code {
	padding-top: 10px;
}
.title-bg1, .title-bg2, .title-bg3, .title-bg4, .title-bg5 {
	background-size: 40%;
}
.gallerytitle-row h2 {
	padding-right: 40%;
}
.about-page img {
	width: 50%;
}
}
@media only screen and (max-width:992px) {
.logged-in .woocommerce .woocommerce-MyAccount-navigation{
	width:25%;
}
.logged-in .woocommerce .woocommerce-MyAccount-content, .logged-in .woocommerce .woocommerce-MyAccount-content1{
	width:72%;
}
}
@media only screen and (max-width:767px) {
.logged-in .woocommerce .woocommerce-MyAccount-navigation{
	width:30%;
	float:left;
}
.logged-in .woocommerce .woocommerce-MyAccount-content, .logged-in .woocommerce .woocommerce-MyAccount-content1{
	width:65%;
	float:right;
}
.navbar-header {
	margin-top: 8px;
}
.navbar-default .navbar-toggle {
	margin-right: 0;
	border: none;
}
.navbar-default .navbar-toggle {
	transition: all 0.4s ease-in-out;
}
.navbar-default .navbar-toggle:focus,  .navbar-default .navbar-toggle:hover {
	background-color: #537B01;
}
.navbar-default .navbar-toggle .icon-bar {
	background-color: #537B01;
	transition: all 0.4s ease-in-out;
}
.navbar-default .navbar-toggle:focus .icon-bar,  .navbar-default .navbar-toggle:hover .icon-bar {
	background-color: #ffffff;
}
.slider .carousel-indicators {
	display: none;
}
.slider .carousel-control .glyphicon-chevron-left,  .slider .carousel-control .icon-prev {
	width: 24px;
}
.slider .carousel-control .glyphicon-chevron-right,  .slider .carousel-control .icon-next {
	width: 24px;
}
.slider .carousel-caption {
	left: 7%;
	right: 7%;
	top: 30px;
}
.slider .carousel-caption h2 {
	margin-top: 0;
	font-size: 40px;
}
.slider .carousel-caption h4 {
	font-size: 18px;
}
.get-free-code {
	padding-right: 0;
	margin: 10px 0;
}
.get-free-code a {
	padding: 10px 25px;
}
header .header-top ul {
	margin-right: 5px;
}
.about-pic img {
	width: auto;
}
.col-about h2 {
	font-size: 40px;
	margin-bottom: 0;
}
.col-about h5 {
	font-size: 12px;
	margin-top: 0;
}
.col-about h4 {
	font-size: 15px;
	margin-top: 10px;
	font-weight: 700;
}
.col-about ul li {
	font-size: 13px;
	margin-top: 5px;
}
.col-about .btn {
	font-size: 12px;
	margin-top: 15px;
}
.product h1 {
	font-size: 40px;
}
.pro-text h4 {
	font-size: 14px;
	margin-bottom: 0;
}
.uper-cap > h5 {
	font-size: 12px;
	line-height: 17px;
	margin-bottom: 0;
}
.pro-view-btn .view-btn .btn {
	font-size: 12px;
	margin-top: 16px;
	padding: 10px 30px;
}
.testimonials {
	padding: 20px 0;
}
.testimonials h2 {
	font-size: 40px;
	margin-top: 0;
}
.testimonials .item {
	margin: 0;
}
.testimonials h4 {
	font-size: 12px;
	font-weight: 500;
}
.testimonials h3 {
	font-size: 18px;
	margin-top: 5px;
}
footer {
	padding: 20px 0;
}
.col-footer ul {
	margin-top: 0;
}
.col-ft-social {
	margin-top: 0;
}
.nav-area .navbar-default .navbar-collapse {
	position: absolute;
	left: 0;
	width: 100%;
	z-index: 999;
	background: #727272;
}
.navbar-nav {
	margin: 0;
}
.nav-area .navbar-default .navbar-nav > li > a {
	color: #ffffff;
}
.nav-area .navbar-default .navbar-nav > li {
	margin-top: 6px;
	margin-left: 0;
}
header .header-top ul {
	padding: 5px 5%;
}
.quote-form-page .col-cnt-form {
	width: 90%;
}
.contact-page .col-footer {
	padding: 0 15px;
}
.col-test {
	margin: 15px 0;
}
.about-page .col-about {
	padding: 0 15px;
}
.result-count, p.woocommerce-thankyou-order-received{
	text-align:center;
}
.woocommerce .woocommerce-thankyou-order-details.order_details li{
	display:block;
	width:100%;
	border-right:none;
	border-bottom:1px dashed #d3ced2;
	margin:0 0 5px;
	padding:10px 0;
	text-align:center;
	font-size:13px;
}
}

@media only screen and (max-width:480px) {
.navbar-default .navbar-brand {
	padding: 8px 0;
}
.navbar-brand > img {
	width: 80%;
}
.get-free-code {
	float: none;
	text-align: center;
	padding-top: 6px;
}
.get-free-code a {
	padding: 8px 22px;
	font-size: 12px;
}
.slider .carousel-caption {
	top: 2px;
}
.slider .carousel-caption h2 {
	font-size: 30px;
	margin-top: 0;
	margin-bottom: 0;
}
.slider .carousel-caption h4 {
	margin-top: 0;
	font-size: 12px;
}
.about-pic img {
	width: 100%;
}
.col-product {
	width: 100%;
}
.col-product figure figcaption {
/*position: relative;*/

}
.col-product figure figcaption {
	bottom: -70px;
}
.col-product figure figcaption:before, .col-product figure figcaption:after {
	width: 54.1%;
}
.pro-text {
	padding: 0 3% 35px;
}
.col-footer,  .col-ft-social {
	width: 100%;
}
.copy-right {
	text-align: center;
}
.copy-right ul .develop {
	text-align: center;
	float: none;
}
header .header-top ul {
	margin-right: 16px;
}
.col-footer h3 {
	font-size: 20px;
}
.col-footer ul li {
	font-size: 14px;
}
.col-ft-abt h5 {
	margin-top: 0;
	font-size: 13px;
}
.product-info > h5 {
	line-height: 43px;
	text-align: center;
}
.product-info h5 span {
	float: none;
}
.product-info h5 a.btn-buy {
	float: none;
}
.col-pro-page {
	width: 100%;
}
.title-bg1, .title-bg2, .title-bg3, .title-bg4, .title-bg5 {
	background-size: 70%;
}
.gallerytitle-row h2 {
	margin-top: 40px;
}
.image-set .col-xs-6 {
	width: 100%;
}
.quote-form-page .col-cnt-form {
	width: 95%;
}
.col-cnt-form form {
	width: 100%;
}
.col-cnt-form .cont-in-btn {
	width: 50%;
}
.col-test .test-pic {
	width: 40%;
}
.product h1:after {
	background-size: 50%;
}
.about-page img {
	width: 100%;
}
.logged-in .woocommerce .woocommerce-MyAccount-navigation, .logged-in .woocommerce .woocommerce-MyAccount-content, .logged-in .woocommerce .woocommerce-MyAccount-content1{
	width:100%;
}
.logged-in .woocommerce .woocommerce-MyAccount-navigation{
	margin-bottom:30px;
}
.logged-in .woocommerce .woocommerce-MyAccount-content .woocommerce-info, .logged-in .woocommerce .woocommerce-MyAccount-content1 .woocommerce-info
	{}
@media only screen and (max-width:420px) {

.single-product .col-book-rt .woocommerce-tabs ul.tabs li{
	padding:5px;
}
.single-product .col-book-rt .comment_container img{
	position:relative !important;
	float:none !important;
}
.single-product .col-book-rt .comment_container .comment-text{
	margin:10px 0 0 !important;
}
.single-product .col-book-rt .cart-btn .quantity{
	width:48%;
	margin:0 2% 0 0;
}
.single-product .col-book-rt .yith-wcwl-add-to-wishlist .add_to_wishlist, .single-product .col-book-rt .cart-btn .add-cart-details{
	text-align:center;
}
.single-product .col-book-rt .yith-wcwl-add-to-wishlist .add_to_wishlist{
	display:block;
}
.single-product .col-book-rt .cart-btn .quantity input[type=number].qty, .single-product .col-book-rt .yith-wcwl-add-to-wishlist{
	width:100%;
}
.single-product .col-book-rt .cart-btn .add-cart-details{
	font-size:15px;
	width:49%;
	margin:0;
}

}
@media only screen and (max-width:320px) {
.view-btn .btn {
	font-size: 10px;
	padding: 5px 10px;
}
.single-product .col-book-rt .cart-btn .add-cart-details{
	width:48%;
	padding:9px 10px;
}
	}}