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

1. CSS RESET

2. VARIABLES
2.1 CSS3 TRANSITIONS

3. GLOBAL THEME STYLES

4. TYPOGRAPHY
4.1 HEADINGS
4.2 PARAGRAPHS & LISTS
4.3 LINKS
4.4 PRODUCT ATTRIBUTES (name, description, price)
4.5 RTE

5. FORMS & COMPONENTS
5.1 FORMS
5.2 ALERTS
5.3 BUTTONS

6. GLOBAL PAGE LAYOUT

7. SIDEBAR CONFIGURATION

8. MAIN PAGE
8.1 HEADER
8.2 MEGAMENU
8.3 NIVOSLIDER
8.4 SHOWCASE
8.5 MAIN PRODUCT LISTING
8.6 FOOTER

9. COLLECTION PAGES
9.1 PAGES CONTENT
9.2 BREADCRUMBS
9.3 COLLECTION LISTING
9.4 PAGINATION

10. SIDEBAR WIDGETS
10.1 LINKS LIST
10.2 SIDEBAR PRODUCT LISTING

11. SEARCH RESULTS PAGE

12. PRODUCT PAGE
12.1 PRODUCT IMAGES
12.2 PRODUCT INFO
12.3 PRODUCT PAGINATION
12.4 RELATED PRODUCTS

13. BLOG
13.1 POSTS LISTING
13.2 SINGLE POST

14. CUSTOMER PAGES
14.1 LOG IN
14.2 ACCOUNT
14.3 ADDRESSES
14.4 ORDERS

15. CART PAGE
15.1 CART PRODUCTS
15.2 GUEST CHECKOUT

16. CONTACTS PAGE

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



/********************************************************************************************************
                           1. CSS RESET
********************************************************************************************************/

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, 
del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, 
fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, input, textarea, button
{
	margin: 0;
	padding: 0;
	border: 0;
	outline: none !important;
	vertical-align: top;
	background: transparent;
	font-weight: normal;
	line-height: 1.6em;
}

ol, ul {
	list-style:none;
}
a, span {
	vertical-align:baseline;
	line-height:inherit;
	font-weight:inherit;
}
b, strong {
	font-weight: bold;
	font-weight: bold;
	vertical-align:baseline;
}
i, dfn {
	font-style: italic;
}

img {
	max-width: 100%;
}




/********************************************************************************************************
                                    3. GLOBAL THEME STYLES
********************************************************************************************************/

/* hiding placeholder text on focus in webkit, thanks to http://www.kolodvor.net/2012/03/23/webkit-placeholder-attribute-behavior */
input:focus::-webkit-input-placeholder,
textarea:focus::-webkit-input-placeholder {
	color: transparent;
}

/* clearfix - nicolasgallagher.com/micro-clearfix-hack/ */
.clearfix {
	zoom: 1;
}

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

.clearfix:after {
	clear: both;
}


/* utility classes: hidden, float left, float right, etc. */
.hidden,
.visuallyhidden {
	display: none;
}
 
.left {
	float: left;
}
.right {
	float: right;
}


/* PAGE PRELOADER */
#page_preloader {
	width: 100%;
	height: 100%;
	background: url(img/loader.gif) 50% 50% no-repeat #ffffff;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 1000;
}


/********************************************************************************************************
                           4. TYPOGRAPHY
********************************************************************************************************/

body {
	font-family: Lato;
	font-size: 17px;
	color: #000000;
}

/* 4.1 HEADINGS */

h1,
h2,
h3,
h4,
h5,
h6 {
	font: 25px Lato;
	color: #000000;
}

h4 {
	font-size: 20px;
}

h5,
h6 {
	font-size: 17px;
}

h3 + h4 {
	margin-top: 40px;
}

.column_center h1,
.column_center h2,
.column_center h3,
.column_center h4,
.column_center h5,
.column_center h6 {
	margin: 15px 0;
}

.column_center .page_heading,
.page_heading {
	text-align: center;
	margin: 0;
	margin-bottom: 20px;
	font-size: 50px;
	font-weight: 900;
	font-family: Dancing Script;
	color: #000000;
	line-height: 85%
}
.column_center .page_heading a {
	float: right;
	text-align: center;
}

.column_center .index-scope .page_heading {
	/*font-size: 20px;*/
}


/* 4.2 PARAGRAPHS & LISTS */
p {
	margin: 14px 0;
	padding: 0;
	font-weight: 300;
}


.column_center ul {
	list-style-type: square;
	list-style-position: inside;
}
.column_center ol {
	list-style-type: decimal;
	list-style-position: inside;
}


/* 4.3 LINKS */
a {
	color: #000000;
	text-decoration: none;
	-webkit-transition: background .3s ease-in-out, border-color .3s ease-in-out, color .3s ease-in-out, box-shadow .3s ease-in-out;
	        transition: background .3s ease-in-out, border-color .3s ease-in-out, color .3s ease-in-out, box-shadow .3s ease-in-out;
	}

a:hover,
a:active {
	color: #777777;
}


/* 4.4 PRODUCT ATTRIBUTES (name, description, price) */
.product_name {
	font-size: 30px;
	font-weight: 600;
	color: #000000;
}
.product_name a {
	color: #000000;
	
-webkit-transition: .3s ease-in-out;
	   -moz-transition: .3s ease-in-out;
	    -ms-transition: .3s ease-in-out;
	     -o-transition: .3s ease-in-out;
	        transition: .3s ease-in-out;
	
}
.product_name a:hover {
	color: #777777;
}

.product_desc {
	font-size: 14px;
	color: #888888;
}

.money {
  white-space:nowrap;
	/*font-family: Dancing Script;*/
	color: #000000;
}

.product_price {
	margin-top: 15px;
}

.product_price .money {
	font-size: 35px;
}


/********************************************************************************************************
                           5. FORMS & COMPONENTS
********************************************************************************************************/

/* 5.1 FORMS */
label {
	font-weight: bold;
	font-size: 17px;
}

select,
select.form-control,
textarea,
textarea.form-control,
input[type="text"],
input[type="email"],
input[type="number"],
input[type="password"],
input[type="telephone"] {
	padding: 6px;
	border:1px solid #dddddd;
	font: normal 13px 'Arial';
	color: #000000;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
	border-radius: 0;
	box-shadow: none;
}

input[type="text"],
input[type="email"],
input[type="number"],
input[type="password"],
input[type="telephone"] {
	height:34px;
	line-height:18px;
	padding-top:7px;
	padding-bottom:7px;
}

select,
select.form-control {
	padding: 8px 3px;
}

textarea,
textarea.form-control {
	min-width: 100%;
	max-width: 100%;
}

select:focus,
select.form-control:focus,
textarea:focus,
textarea.form-control:focus,
input[type="text"]:focus,
input[type="email"]:focus,
input[type="number"]:focus,
input[type="password"]:focus,
input[type="telephone"]:focus {
	border-color: #aaa;
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px #ddd;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px #ddd;
}


.form-group {
	vertical-align: top !important;
	margin-top: 10px;
	margin-bottom: 0;
}


.form-horizontal label {
	padding-top: 0 !important;
	text-align: right;
	line-height: 34px;
}
.form-horizontal select {
	width: 100%;
}

.action_bottom span.note {
	margin-left: 5px;
}
.action_bottom span.note a {
	margin-left: 5px;
}





/* 5.3 BUTTONS */
.btn,
.btn:focus,
.btn a,
.btn-info,
.btn-primary {
	font-size: 20px;
	font-weight: 300;
	padding: 10px 27px;
	background: #000000;
	border: 1px solid #000000;
	color: #ffffff;
	border-radius: 0 !important;
	box-shadow: none !important;
	
-webkit-transition: .3s ease-in-out;
	   -moz-transition: .3s ease-in-out;
	    -ms-transition: .3s ease-in-out;
	     -o-transition: .3s ease-in-out;
	        transition: .3s ease-in-out;
	
}

.btn a {
	padding: 0 !important;
	border: none !important;
}

.btn:hover,
.btnfocus:hover,
.btn:hover a,
.btn-info:hover,
.btn-primary:hover {
	color: #000000;
	background: #ffffff;
	border-color: #000000;
}



/********************************************************************************************************
                           6. GLOBAL PAGE LAYOUT
********************************************************************************************************/


html, body {
	height: 100%;
}

#wrapper {
	position: relative;
	z-index: 1;
	background:  #ffffff;
	}
#wrapper2 {
	overflow: hidden;
}

.container {
	padding: 0;
}

#main {
	margin-top: 15px;
	margin-bottom: 15px;

}

#main_content {
	margin-bottom: 30px !important;
}

.template-index #main_content {
	margin-bottom: 0 !important;
}

#catalog {
	margin-top: 100px;
	padding-bottom: 60px;
	border-bottom: 1px solid #ddd;
}

#thanks {
	margin-top: 100px;
	padding-bottom: 0px;
	border-bottom: 1px solid #ddd;
}

.t-shirts {
	margin-bottom: 60px;
	border-bottom: 1px solid #ddd;
}

#product_file {
	margin-top: 180px;
	padding-bottom: 10px;
	border-bottom: 1px solid #ddd;
}

.about_images {
	margin-top: 20px;
}

/********************************************************************************************************
                           7. SIDEBAR CONFIGURATION
********************************************************************************************************/

/* NO SIDEBAR */
.sidebar_none {
}


/* LEFT SIDEBAR */
.sidebar_left {
}
.sidebar_left .column_center {
	width: 100%;
}
.sidebar_left .column_center #main_content {
	margin: 0 0 0 0%;
}
.sidebar_left .column_left {
	margin-left: -100%;
}


/* NOSIDEBAR PAGES */
.sidebar_off .column_center #main_content {
	margin: 0;
}



/********************************************************************************************************
                           8. MAIN PAGE
********************************************************************************************************/

/* 8.1 HEADER */
#header {
	margin-bottom: 10px;
}

.header_top {
	padding-bottom: 2px;
	background: #f2f2f2;
}

.logo {
	text-align: center;
	margin-top: 41px;
}
.logo a {
	display: inline-block;
}


/* 8.3 NIVOSLIDER */
.slider_parallax_wr {
    margin-top:0px;
    height: 700px;
    overflow: hidden;
    position: relative;
}
.slider_top svg {
    pointer-events: none;
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    width: 100%;
    height: 225px;
    z-index: 10;
}
.slider_bottom svg {
    pointer-events: none;
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    width: 100%;
    height: 95px;
    z-index: 10;
}
.slider_parallax_wr svg path {
    fill:#ffffff;
}

.slider_parallax_wr .slider_wrap {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
}

.nivoSlider {
	width: 100%;
	height: auto;
	overflow: hidden;
	position: relative;
}
.nivoSlider img {
	max-width: none;
	position: absolute;
	top: 0;
	left: 0;
}
.nivo-main-image {
	width: 100% !important;
	display: block !important;
	position: relative !important;
}

.nivoSlider a.nivo-imageLink {
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	border: 0;
	z-index: 6;
	position: absolute;
	left: 0;
	top: 0;
	display: none;
	filter: alpha(opacity=0);
	opacity: 0;
}

.nivo-slice {
	height: 100%;
	display: block;
	position: absolute;
	top: 0;
	z-index: 5;
}

.nivo-box {
	display: block;
	overflow: hidden;
	position: absolute;
	z-index: 5;
}
.nivo-box img {
	display: block;
}

.nivoSlider > a,
.nivoSlider > img,
.caption_hidden {
	display: none;
}

.slider_wrap {
	height: 100%;
	position: relative;
	z-index: 1;
}

.nivo-caption {
	position: absolute;
	left: 0;
	top: 0;
	z-index: 8;
	display: none;
}

.nivo-directionNav a {
	display: block;
	vertical-align: top;
	position: absolute;
	top: 50%;
	z-index: 9;
	cursor: pointer;
}
.nivo-directionNav a span {
	display: none;
}
.nivo-directionNav a i {
	display: inline-block;
}
.nivo-prevNav {
	left: 0;
}
.nivo-nextNav {
	right: 0;
}

.nivo-controlNav {
	width: 100%;
	text-align: center;
	position: absolute;
	left: 0;
	top: 615px;
	z-index: 10;
}
.nivo-controlNav a {
	display: inline-block;
	cursor: pointer;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	box-shadow:0 0 5px 1px rgba(0,0,0,.40);
	border: 2px solid #ffffff;
	background: #000000;
}
.nivo-controlNav a {
	margin: 0 5px;
}
.nivo-controlNav a span {
	display: none;
}
.nivo-controlNav a i {
	display: none;
}
.nivo-controlNav a.active,
.nivo-controlNav a:hover {
	background: #777777;
}
.nivo-controlNav a.active {
	cursor: default;
}



/* 8.4 CUSTOM BLOCKS BLOCK */

/* TOP BLOCK */
#top_block {
    margin-bottom: 76px;
    text-align: center;
    margin-top: -35px;
    position: relative;
    z-index: 20;
    -moz-transform:    rotate(3.7deg);
    -o-transform:      rotate(3.7deg);
    -webkit-transform: rotate(3.7deg);
    transform:         rotate(3.7deg);
    background-color:#000000;
}
.top_block_wrapper {
    overflow: hidden;
}
.top_block_wr {
    position: relative;
    top: -43px;
    margin-bottom: -90px;
    text-align: center;
    padding-top: 135px;
    padding-bottom: 120px;
    -moz-transform:    rotate(-3.7deg);
    -o-transform:      rotate(-3.7deg);
    -webkit-transform: rotate(-3.7deg);
    transform:         rotate(-3.7deg);
    
    background-image: url(../img/top_custom_img.png);
        background-position: 50% 0;
        background-repeat: no-repeat;
    
}
#top_block:before {
	position: absolute;
	top: 0;
	bottom: 0;
	right: -100%;
	left: -100%;
	content: "";
	background: #000000;
}
.top_block_wr h3 {
	color: #ffffff;
}
.top_block_wr h4 {
	color: #ffffff;
}
.top_block_wr p {
	color: #fff;
	font-weight: 400;
}
.top_block_wr h3 {
	margin-bottom: 23px;
	font-size: 75px;
	text-transform: none;
	line-height: 0.75em;
	font-family: Dancing Script;
} 



/*  BLOCK */
#block {
	text-align: center;
	padding-top: 30px;
	padding-bottom: 40px;

}
#block .btn {
	margin-top: 28px;
}

/* BOTTOM BLOCK */
#bottom_block {
	text-align: center;
	padding-top: 50px;
	padding-bottom: 40px;
		background: #f2f2f2;
}
#bottom_block .btn {
	margin-top: 28px;
}

/* TOP BLOCK */
#catalog_block {
	text-align: center;
	padding-top: 50px;
	padding-bottom: 30px;
	
}



/* 8.5 MAIN PRODUCT LISTING */

.product .product_img .img_change {
	display: block;
	position: relative;
	padding: 20px 5px 10px 5px;
	text-align: center;
	background: #fff;
}
.product .product_img .img_change .prod_inside {
	position: relative;
  	display:block;
}

.product .product_img .product_links {
	display: none;
}
.product .product_links form + .btn {
	border: none;
	padding: 0;
	background: none;
}
.product .product_links .btn i {
	font-size: 20px;
	color: #000000;
}

.product .product_links i {
	font-size: 30px;
	color: #000000;
}

.product .product_img:hover {
	opacity: 0.5;
}

.product .product_info {
	text-align: center;
}

.product .product_price {
	margin-top: 15px;
}

.product .product_price .money {
	font-size: 17px;
	display: block;
	font-size: 25px;
}
.product .product_price .compare-at-price {
	font-size: 24px;
	margin-top: 8px;
}

.product .product_info .product_links {
	margin-top: 15px;
}

.product .product_links form {
	display: block;
	margin-bottom: 17px;
}

.product .btn i {
	position: relative;
	width: 20px;
	height: 20px;
	text-align: center;
	font-size: 20px;
	color: #000;
}
.product .product_info .btn i {
	color: #000000;
}
.product .product_info .btn i::after {
	border-color: #000000; 
}
.product .btn i:after {
	position: absolute;
	left: -5px;
	right: -5px;
	top: -5px;
	bottom: -5px;
	content: "";
	border-radius: 50%;
	opacity: 0;
	border: 10px solid #000000;
	
-webkit-transition: .3s ease-in-out;
	   -moz-transition: .3s ease-in-out;
	    -ms-transition: .3s ease-in-out;
	     -o-transition: .3s ease-in-out;
	        transition: .3s ease-in-out;
	 
}
.product .btn i:hover:after {
	opacity: 1;
	left: -4px;
	right: -4px;
	top: -4px;
	bottom: -4px;
	border-width: 2px;
}

.product_listing_main .product_img {
	position: relative;
	margin-top: 20px;
}
.product_listing_main .product_img img {
	background-color: #fff;
	position: relative;
	z-index: 1;
}
.product_listing_main .product_img .img__2 {
	position: absolute;
	left: 0;
	top: 0;
	z-index: 10;
	opacity: 0;
	
}



.product_listing_main .product_img span.product_badge {
	display: block;
	padding: 5px 8px;
	line-height: 1em;
	font-size: 14px;
	font-weight: 300;
	color: #ffffff;
	position: absolute;
	top: 8px;
	z-index: 100;
}
.product_listing_main .product_img span.new {
	background: #000000;
	left: 10px;
}
.product_listing_main .product_img span.sale {
	background: #777777;
	right: 10px;
}


.product_listing_main .product .product_price {
	min-height: 0px;
}



.product-listing__index .product .product_img .product_links {
	opacity: 0;
	display: block;
	position: absolute;
	bottom: 30px;
	text-align: center;
	left: 0;
	right: 0;
	z-index: 20;
	margin-bottom: 5px;
	
-webkit-transition: .3s ease-in-out;
	   -moz-transition: .3s ease-in-out;
	    -ms-transition: .3s ease-in-out;
	     -o-transition: .3s ease-in-out;
	        transition: .3s ease-in-out;
	 
}
.product-listing__index .product .product_img:hover .product_links {
	opacity: 1;
}




/* 8.6 FOOTER */
footer {
	margin-top: 0px;

	padding-top: 50px;
}

footer .logo {
	position: relative;
	z-index: 1;
}
footer .logo a {
	padding: 0 20px;
	
}
footer .logo:before {
	position: absolute;
	margin-top: -6px;
	content: "";
	left: 0;
	right: 0;
	top: 50%;
	border-bottom: 1px solid #dddddd;
	z-index: -1;
}

.footer_block {
	margin-top: 12px;
}

ul.footer_links {
}
ul.footer_links li + li {
	margin-top: 5px;
}
ul.footer_links li a {
	font-size: 14px;
	font-weight: 300;
}

ul.footer_links li.active a,
ul.footer_links li a:hover {
	text-decoration: underline;
	color: #000000;
}
.footer_social {
	text-align: right;
}
.footer_social li {
	display:inline-block;
	margin:8px 0px 0 8px;
	text-align: center;
}
.footer_social li a {
	width:81px;
	height:81px;
	display:block;
	border-radius:50%;
	position:relative;
	font-size: 28px;
	color: #000000;
	background:#ffffff;
	
-webkit-transition: .5s ease-in-out;
	   -moz-transition: .5s ease-in-out;
	    -ms-transition: .5s ease-in-out;
	     -o-transition: .5s ease-in-out;
	        transition: .5s ease-in-out;
	;
}
.footer_social li a:hover {
	color:#777777;
}
.footer_social li i {
	line-height: 81px;
}
.footer_social li a:after {
	position:absolute;
	left:1px;
	right:1px;
	bottom:1px;
	top:1px;
	border:2px solid #ffffff;
	content:"";
	border-radius:50%;
	
-webkit-transition: .5s ease-in-out;
	   -moz-transition: .5s ease-in-out;
	    -ms-transition: .5s ease-in-out;
	     -o-transition: .5s ease-in-out;
	        transition: .5s ease-in-out;
	;
}
.footer_social li a:hover:after {
	position:absolute;
	left:-5px;
	right:-5px;
	bottom:-5px;
	top:-5px;
	border:2px solid #ffffff;
	content:"";
	border-radius:50%;
}
footer .copyright {
	margin-top: 70px;
	text-align: center;
	border-top: 1px solid #dddddd;
}
footer .copyright p {
	font-size: 13px;
	font-weight: 300;
	margin: 31px 0;
	color: #777777;
}
footer .copyright a {
	color: #777777;
}
footer .copyright a:hover {
	text-decoration: underline;
	color: #000000;
}



/* BACK TO TOP BUTTON */
#back_top {
	width: 34px;
	height: 34px;
	display: block;
	margin-right: 0px;
	background: #000000;
	text-align: center;
	position: fixed;
	right:15px;
	bottom: 20px;
	z-index: 999;
	border-radius: 15%;
	border: 1px solid #000000;
}
#back_top i {
	display: block;
	font-size: 18px;
	line-height: 30px;
	color: #ffffff;
}
#back_top:hover {
	background: #ffffff;
}
#back_top:hover i {
	color: #000000;
}



/********************************************************************************************************
                           12. PRODUCT PAGE
********************************************************************************************************/



/* 12.1 PRODUCT IMAGES */
/* BIG IMAGE + ZOOM */
.zoomWrapper,
#elevatezoom_big {
	width: 100% !important;
	height: auto !important;
	position: relative !important;
}

#elevatezoom_big ~ #elevatezoom_big {
	width: 0 !important;
	height: 0 !important;
}

.zoomWrapper {
	border: 1px solid #dddddd;
}

.zoomContainer {
	z-index: 1 !important;
}
.zoomLens {
	z-index: 1 !important;
}
.zoomWindow {
	margin: -1px 0 0 0 !important;
}



/* THUMBS */
.product_images .bx-wrapper {
	width: 100% !important;
	margin: 12px 0 20px 0;
/*	padding: 0 30px;*/
	position: relative;
}

#elevatezoom_gallery a {
	width: 90px !important;
	display: block;
	margin: 0 12px 0 0;
	border: 1px solid #dddddd;
}

.product_images .bx-controls a {
	width: 20px;
	height: 20px;
	display: block;
	overflow: hidden;
	margin: -10px 0 0 0;
	line-height: 1em;
	text-align: center;
	position: absolute;
	top: 50%;
	background: rgba(0,0,0,.7);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    
-webkit-transition: .3s ease-in-out;
	   -moz-transition: .3s ease-in-out;
	    -ms-transition: .3s ease-in-out;
	     -o-transition: .3s ease-in-out;
	        transition: .3s ease-in-out;
	
}
.product_images .bx-controls a:hover {
	background: rgba(0,0,0,1);
}

.product_images .bx-controls a:before {
	font: 10px/21px 'FontAwesome';
	color: #ffffff;
}

.product_images .bx-controls a.bx-prev {
	left: 0;
}
.product_images .bx-controls a.bx-prev:before {
	content: '\f053';
}
.product_images .bx-controls a.bx-next {
	padding: 0 0 0 1px;
	right: 0;
}
.product_images .bx-controls a.bx-next:before {
	content: '\f054';
}



/* 12.2 PRODUCT INFO */
.product_wrap .product_name {
	margin: -2px 0 0 0;
	font-size: 30px;
	font-weight: 600;
	border-bottom: 1px solid #ddd;
}



.product_wrap .product-price {
	margin: 15px 0 0 0;
	padding: 0;
}
.product_wrap .product-price .money {
	margin: 0 5px 0 0;
	font-size: 30px;
}
.product_wrap .product-price .compare-at-price {
	font-size: 20px;
}



#purchase label {
	display: inline-block;
	margin: 15px 10px 0 0;
	padding: 0 !important;
	line-height: 37px;
}
#purchase #quantity {
	width: 50px;
	height: 37px;
	display: inline-block;
	margin: 15px 10px 0 0;
	padding: 9px 0 8px;
	outline: none;
	text-align: center;
}

#purchase .variants-wrapper {
	display: inline-block;
	margin: 15px 10px 0 0;
}
#purchase .variants-wrapper select {
	width: auto;
	height: 37px;
	max-width: 150px;
	padding: 9px 6px;
}

#purchase #add-to-cart {
	height: 37px;
	margin: 15px 10px 0 0;
	padding: 7px 15px 10px;
	line-height: 1em;
}


    
.product_wrap .product_details {
	margin: 15px 0 0 0;
	padding: 0px 0 0px 0;
	border-top: 1px solid #dddddd;
	border-width: 1px 0;
}
.product_wrap .product_details > div {
	padding: 5px 0 0 0;
}

.product_wrap #product_description h4 {
	padding-bottom: 0;
	border: none;
	text-transform: none;
}



.product_image-additioanl a {
	width: 33%;
	display: block;
	float: left;
	-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}



/* 12.3 PRODUCT PAGINATION */
.product_wrap .pagination_product {
	width: 100%;
	overflow: hidden;
	list-style-type: none;
	margin: 15px 0;
	padding: 0;
}
.product_wrap .pagination_product li.left-arrow {
	float: left;
}
.product_wrap .pagination_product li.right-arrow {
	float: right;
}



/* 12.4 RELATED PRODUCTS */
.widget_related_products h3 {
	margin: 30px 0 0 0;
	padding-bottom: 10px;
	padding-left: 15px;
	border-bottom: 1px solid #ddd;
}

ul.product_listing_related {
	list-style-type: none;
}

ul.product_listing_related .product_img {
	display: block;
	padding: 10px;
	text-align: center;
;
}
ul.product_listing_related .product_img img {
	width: 60%;
}
ul.product_listing_related .product_name {
	font-size: 20px;
}
ul.product_listing_related .product_price{
	font-size: 20px;
	margin-top: 0;
}
ul.product_listing_related .product_price .money {
	font-size: 20px;
}
ul.product_listing_related .product_price .compare-at-price {
	font-size: 20px;
}

