/*   
Template Name: MegaShop - Premium eCommerce
Version: 1.0
 
 
*/

@font-face {
    font-family: 'RobotoCondensedRegular';
    src: url('../fonts/robotocondensed-regular.eot');
    src: url('../fonts/robotocondensed-regular.eot') format('embedded-opentype'),
         url('../fonts/robotocondensed-regular.woff2') format('woff2'),
         url('../fonts/robotocondensed-regular.woff') format('woff'),
         url('../fonts/robotocondensed-regular.ttf') format('truetype'),
         url('../fonts/robotocondensed-regular.svg#RobotoCondensedRegular') format('svg');
}



body { 
	color:#737474; 
	font-size:13px;
	font-weight: 300;
	line-height:1.6;
	font-family:"RobotoCondensedRegular";
	background:#fff;
}

	.fixed-body {
		padding: 0px 20px;
	}

b, 
strong {
	font-weight: 400;
}

a {
	color: #234161;
	line-height:1.6;
}

a:hover {
	/*color: rgba(0, 0, 0, 0.5);*/
	text-decoration:none;
}

.standard-body .full-width .container {
	max-width: 1260px;
	margin: 0px auto;
	padding-left: 70px;
	padding-right: 70px;
}
	.standard-body .full-width .container .container {
		padding: 0px;
	}
	
	.standard-body .full-width .shadow {
		display: none;
	}

.standard-body .fixed {
	padding: 0px 20px;
}

	.standard-body .fixed .background {
		margin: 0px auto;
		max-width: 1220px;
		background: #fff;
		position: relative;
	}
	
		.standard-body .fixed .background .shadow {
			width: 100%;
			height: 100%;
			position: absolute;
			bottom: 0;
			top: 0;
			left: 0;
			right: 0;
			z-index: -1;
			-webkit-box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.17);
			-moz-box-shadow:    0px 0px 25px rgba(0, 0, 0, 0.17);
			box-shadow:         0px 0px 25px rgba(0, 0, 0, 0.17);
		}
	
	.standard-body .fixed .container {
		padding-left: 50px;
		padding-right: 50px;
		margin: 0px;
		max-width: 100% !important;
	}
		.standard-body .fixed .container .container {
			padding: 0px;
		}
		
.main-fixed {
	margin: 0px auto;
	max-width: 1220px;
	background: #fff;
	-webkit-box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.17);
	-moz-box-shadow:    0px 0px 25px rgba(0, 0, 0, 0.17);
	box-shadow:         0px 0px 25px rgba(0, 0, 0, 0.17);
}

	.main-fixed .fixed {
		padding: 0px !important;
	}
		
		.main-fixed .background .shadow {
			display: none !important;
		}
		
.fixed-body .container {
	padding-left: 50px;
	padding-right: 50px;
	max-width: none;
}

	.fixed-body .container .container {
		padding: 0px;
	}
	
/* Inputs
-------------------*/

textarea, 
input[type="text"], 
input[type="password"], 
input[type="datetime"], 
input[type="datetime-local"], 
input[type="date"], 
input[type="month"], 
input[type="time"], 
input[type="week"], 
input[type="number"], 
input[type="email"], 
input[type="url"], 
input[type="search"], 
input[type="tel"], 
input[type="color"], 
.uneditable-input,
select {
	background: #fff;
	color:#737474;
	font-weight: 300;
	font-family:"RobotoCondensedRegular";
	font-size: 13px;
	border: 1px solid #e5e5e5;
	margin: 5px 0px;
	padding: 8px 10px;
	box-shadow:         none;
	-moz-box-shadow:    none;
	-webkit-box-shadow: none;
	border-radius:         2px;
	-moz-border-radius:    2px;
	-webkit-border-radius: 2px;
	-webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
	-moz-transition:    border linear 0.2s, box-shadow linear 0.2s;
	-o-transition:      border linear 0.2s, box-shadow linear 0.2s;
	transition:         border linear 0.2s, box-shadow linear 0.2s;
}

	textarea:focus,
	input[type="text"]:focus,
	input[type="password"]:focus,
	input[type="datetime"]:focus,
	input[type="datetime-local"]:focus,
	input[type="date"]:focus,
	input[type="month"]:focus,
	input[type="time"]:focus,
	input[type="week"]:focus,
	input[type="number"]:focus,
	input[type="email"]:focus,
	input[type="url"]:focus,
	input[type="search"]:focus,
	input[type="tel"]:focus,
	input[type="color"]:focus,
	.uneditable-input:focus {
	  border-color: #282828;
	  outline: 0;
	  outline: thin dotted \9;
	}
	
	textarea {
		max-width: 100%;
	}
	
	select {
		height: 32px;
	}
	
/* Dropdown 
-------------------*/

#main .open > .dropdown-menu {
  -webkit-transform: scale(1, 1);
  -moz-transform: scale(1, 1);
  -o-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  transform: scale(1, 1);
  opacity:1 !important;
  filter: alpha(opacity=100) !important;
  visibility: visible !important;
}
  
#main .dropdown-menu {
  opacity:0;
  filter: alpha(opacity=0);
  visibility: hidden;
  display: block; 
  -webkit-transform-origin: top;
  -moz-transform-origin: top;
  -o-transform-origin: top;
  -ms-transform-origin: top;
  transform-origin: top;
  
  -webkit-animation-fill-mode: forwards;
  -moz-animation-fill-mode: forwards;
  -ms-animation-fill-mode: forwards;
  -o-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  
  -webkit-transform: scale(1, 0);
  -moz-transform: scale(1, 0);
  -o-transform: scale(1, 0);
  -ms-transform: scale(1, 0);
  transform: scale(1, 0);
  
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.dropdown-menu {
	background: #fff;
	border: 1px solid #e5e5e5;
	color: #737474;
	padding: 0px;
	margin-top: 0px;
	font-size: 13px;
	border-radius:         0px;
	-moz-border-radius:    0px;
	-webkit-border-radius: 0px;
	box-shadow:            0px 2px 10px rgba(0, 0, 0, 0.06);
	-moz-box-shadow:       0px 2px 10px rgba(0, 0, 0, 0.06);
	-webkit-box-shadow:    0px 2px 10px rgba(0, 0, 0, 0.06);
}
	
	#cart_block .dropdown-menu {
		padding: 0px;
	}
	
	.dropdown-menu a {
		color: #737474 !important;
	} 
	
		.dropdown-menu > li {
			/*padding: 0px;*/
			border-top: 1px solid #e5e5e5;
			transition:         all 0.15s;
			-moz-transition:    all 0.15s;
			-webkit-transition: all 0.15s;
		}
		
			.dropdown-menu > li:first-child {
				border: none;
			}
	
			.dropdown-menu > li > a {
				padding: 8px 8px 8px 15px;
				background: none !important;
			}
			
				.dropdown-menu > li:hover {
					background: #084d9b none repeat scroll 0% 0%;
				}
		
	.nav-header {
		color: #667280;
	}
	
/* Buttons 
------------------*/

.button,
.btn {
	display:inline-block;
	cursor:pointer;
	border: none;
	color:#fff !important;
	font-size: 14px;
	font-weight: 400;
	text-transform: uppercase;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.15);
	padding: 6px 15px 6px 15px;
	border-radius:         20px;
	-moz-border-radius:    20px;
	-webkit-border-radius: 20px;
	transition:         box-shadow 0.2s;
	-moz-transition:    box-shadow 0.2s;
	-webkit-transition: box-shadow 0.2s;
	background: #084d9b; /* Old browsers */
	background: -moz-linear-gradient(top, #FF4945 0%, #FF4945 50%, #FF4945 51%, #FF4945 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#084d9b), color-stop(50%,#084d9b), color-stop(51%,#084d9b), color-stop(100%,#084d9b)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #084d9b 0%,#084d9b 50%,#084d9b 51%,#084d9b 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #FF4945 0%,#FF4945 50%,#FF4945 51%,#FF4945 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top, #FF4945 0%,#FF4945 50%,#FF4945 51%,#FF4945 100%); /* IE10+ */
	background: linear-gradient(to bottom, #084d9b 0%,#084d9b 50%,#084d9b 51%,#084d9b 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#FF4945', endColorstr='#FF4945',GradientType=0 ); /* IE6-9 */
}

	.button:hover,
	.btn:hover {
		color: #fff;
		background: #084d9b; /* Old browsers */
		background: -moz-linear-gradient(top, #FF4945 0%, #FF4945 50%, #FF4945 51%, #FF4945 100%); /* FF3.6+ */
		background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#084d9b), color-stop(50%,#084d9b), color-stop(51%,#084d9b), color-stop(100%,#084d9b)); /* Chrome,Safari4+ */
		background: -webkit-linear-gradient(top, #084d9b 0%,#084d9b 50%,#084d9b 51%,#084d9b 100%); /* Chrome10+,Safari5.1+ */
		background: -o-linear-gradient(top, #FF4945 0%,#FF4945 50%,#FF4945 51%,#FF4945 100%); /* Opera 11.10+ */
		background: -ms-linear-gradient(top, #FF4945 0%,#FF4945 50%,#FF4945 51%,#FF4945 100%); /* IE10+ */
		background: linear-gradient(to bottom, #084d9b 0%,#084d9b 50%,#084d9b 51%,#084d9b 100%); /* W3C */
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#FF4945', endColorstr='#FF4945',GradientType=0 ); /* IE6-9 */
	}
	
	.buttons .left .button,
	.buttons .center .button,
	.btn-default,
	.input-group-btn .btn-primary {
		text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.15) !important;
		background: #282828; /* Old browsers */
		background: -moz-linear-gradient(top, #282828 0%, #282828 50%, #282828 51%, #282828 100%); /* FF3.6+ */
		background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#282828), color-stop(50%,#282828), color-stop(51%,#282828), color-stop(100%,#282828)); /* Chrome,Safari4+ */
		background: -webkit-linear-gradient(top, #282828 0%,#282828 50%,#282828 51%,#282828 100%); /* Chrome10+,Safari5.1+ */
		background: -o-linear-gradient(top, #282828 0%,#282828 50%,#282828 51%,#282828 100%); /* Opera 11.10+ */
		background: -ms-linear-gradient(top, #282828 0%,#282828 50%,#282828 51%,#282828 100%); /* IE10+ */
		background: linear-gradient(to bottom, #282828 0%,#282828 50%,#282828 51%,#282828 100%); /* W3C */
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#282828', endColorstr='#282828',GradientType=0 ); /* IE6-9 */
	}
	
		.buttons .left .button:hover,
		.buttons .center .button:hover,
		.btn-default:hover,
		.input-group-btn .btn-primary:hover {
			background: #282828; /* Old browsers */
			background: -moz-linear-gradient(top, #282828 0%, #282828 50%, #282828 51%, #282828 100%); /* FF3.6+ */
			background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#282828), color-stop(50%,#282828), color-stop(51%,#282828), color-stop(100%,#282828)); /* Chrome,Safari4+ */
			background: -webkit-linear-gradient(top, #282828 0%,#282828 50%,#282828 51%,#282828 100%); /* Chrome10+,Safari5.1+ */
			background: -o-linear-gradient(top, #282828 0%,#282828 50%,#282828 51%,#282828 100%); /* Opera 11.10+ */
			background: -ms-linear-gradient(top, #282828 0%,#282828 50%,#282828 51%,#282828 100%); /* IE10+ */
			background: linear-gradient(to bottom, #282828 0%,#282828 50%,#282828 51%,#282828 100%); /* W3C */
			filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#282828', endColorstr='#282828',GradientType=0 ); /* IE6-9 */
		}
	
	.input-group input {
		border-right: none;
	}
	
	.input-group-btn .btn {
		height: 38px;
		margin: 5px 0px;
	}

.buttons { 
	overflow: auto;
	margin: 0px 0px 20px 0px; 
}
	
	.buttons .btn {
		margin-top: 10px;
	}
	
	.buttons .left { 
		float: left; 
		text-align: left; 
	}
	
	.buttons .right { 
		float: right;
		text-align: right; 
	}
	
		.buttons .right .button {
			margin-left: 10px;
		}
	
	.buttons .center { 
		text-align: center;
		margin-left: auto;
		margin-right: auto; 
	}
	
.button-continue-shopping {
	display: block;
	float: left;
	text-transform: uppercase;
}

.button-checkout {
	display: block;
	float: right;
	text-transform: uppercase;
}
	
/* Header 
------------------*/

header {
	position: relative;
}

	header .background-header {
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: -3;
	}

/* Top Bar
------------------*/

#top-bar {
	position: relative;
}

#top-bar .background-top-bar {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: -1;
}

#top-bar .background {
	background: #084d9b;
	border-bottom: 1px solid #3d4c68;
}

#top-bar .container {
	padding-top: 8px;
	padding-bottom: 8px;
}
#top-bar .container a {
	color: #ffffff;
}

	#top-bar .row > div {
		min-height: 12px !important;
	}

	/* Top Bar -> Welcome text */
 
	#top-bar .welcome-text {
		padding: 3px 20px 1px 0px;
		color: #ffffff;
		text-align:right;
		
	}
	
	/* Top Bar -> Links */
	
	#top-bar .header-links {
		padding: 3px 0px 0px 10px;
		margin: 0px;
		float: left;
	}
	
		#top-bar .header-links li {
		display: inline-block;
padding: 0 16px;
padding-right: 8px;
border-right: 1px solid #3d4c68;
margin-right: 8px;
		}
 
	/* Top Bar -> Currency and Language */
 
	#top-bar .dropdown {
		float: left;
		margin: 3px 20px 1px 0px;
	}
	
		#top-bar form {
			float: left;
			width: auto;
		}
	
	#top-bar-right .dropdown {
		float: left;
		position: relative;
		margin: -8px 0px -8px 20px;
		padding: 11px 0px 9px 17px;
		
	}
	
		#top-bar-right .dropdown:before {
			content: '';
			position: absolute;
			top: 0;
			bottom: 0;
			left: 0;
			width: 1px;
			height: 100%;
		}
		
		
		#top-bar-right .dropdown {
		padding-right: 17px;
		background: #084D9B;
		}
		
			#top-bar-right .dropdown:after {
				content: '';
				position: absolute;
				top: 0;
				bottom: 0;
				right: -2px;
				width: 1px;
				height: 100%;
			}
			
			#top-bar-right form:nth-child(2) .dropdown {
				margin-right: -21px;
			}
	
		#top-bar-right form {
			float: left;
			width: auto;
		}
 
	 	#top-bar .dropdown .caret {
	 		border-top: 4px solid #fff;
	 	}
	 	
	 	#top-bar .dropdown > a img {
	 		margin: 0px 2px 2px 0px;
	 	}
	 	
	 		#top-bar .dropdown img {
	 			vertical-align: middle;
	 		}

	 		#top-bar-right .dropdown-menu {
	 			left: -43px;
	 		}
	 			#top-bar-right .dropdown-menu img {
	 				margin: 0px 5px 3px 0px;
	 			}
	 			
		 		#top-bar-right .dropdown-menu:after {
		 			right: 12px;
		 			left: auto;
		 		}

/* Top of pages
------------------*/

#top {
	position: relative;
}	

	#top .background {
	}

	#top .container {
		padding-top: 10px;
		padding-bottom: 25px;
	}
	
		#top .container .container {
			padding-top: 0px;
			padding-bottom: 0px;
		}
	
	#top .background-top {
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: -1;
	}

	/* Top -> Logo */
	
	#top .logo {
		padding: 17px 10px 0px 0px;
		margin: 0px;
		line-height: 100%;
		font-size: 100%;
		text-align:center;
	}
	
	/* Top -> Search */
	
	#top .search_form {
		margin: 25px 0px 0px 0px;
		padding: 0px;
		position: relative;
	}
	
		#top .search_form input {
			padding: 2px 35px 0px 18px;
			margin: 0px;
			height: 40px;
			width: 100%;
			font-size: 14px;
			border-radius:30px;
		}
		
		.search_form .button-search,
		.search_form .button-search2 {
			position: absolute;
			right: 10px;
			top: 9px;
			width: 23px;
			height: 23px;
			background: url(../img/search.png) no-repeat;
			cursor: pointer;
		}
			
	/* Top -> Cart block */
	
	#top #cart_block {
		padding: 26px 0px 10px 0px;
		display: inline-block;
	}
	
		#top #cart_block .cart-heading {
			cursor: pointer;
			padding: 6px 0px 6px 0px;
		}
			
			#top #cart_block .cart-heading p {
				display: inline-block;
				vertical-align: top;
				padding: 2px 0px 1px 0px;
				margin: 0px 0px 0px 0px;
				font-size: 14px;
				font-weight: 400;
			}
			
				#top #cart_block .cart-heading p #cart-total {
					font-weight: 300;
				}

			#top #cart_block .cart-heading .cart-icon {
				display: inline-block;
				height: 38px;
				margin: 0px 6px 0 0;
				vertical-align: top;
				width: 38px;
				background: url("../img/icon-cart.png") no-repeat scroll 5px 6px rgba(0,0,0,.3);
				border-radius: 100%;
			}
			
			#top #cart_block .cart-heading div {
				vertical-align: top;
				display: inline-block;
				width: 25px;
				height: 25px;
				border-radius:         2px;
				-webkit-border-radius: 2px;
				-moz-border-radius:    2px;
				background: #282828; /* Old browsers */
				background: -moz-linear-gradient(top, #282828 0%, #282828 50%, #282828 51%, #282828 100%); /* FF3.6+ */
				background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#282828), color-stop(50%,#282828), color-stop(51%,#282828), color-stop(100%,#282828)); /* Chrome,Safari4+ */
				background: -webkit-linear-gradient(top, #282828 0%,#282828 50%,#282828 51%,#282828 100%); /* Chrome10+,Safari5.1+ */
				background: -o-linear-gradient(top, #282828 0%,#282828 50%,#282828 51%,#282828 100%); /* Opera 11.10+ */
				background: -ms-linear-gradient(top, #282828 0%,#282828 50%,#282828 51%,#282828 100%); /* IE10+ */
				background: linear-gradient(to bottom, #282828 0%,#282828 50%,#282828 51%,#282828 100%); /* W3C */
				filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#282828', endColorstr='#282828',GradientType=0 ); /* IE6-9 */
				margin: 0px 0px 0px 7px;
				position: relative;
			}
			
				#top #cart_block .cart-heading div:before {
					content: '';
					position: absolute;
					width: 25px;
					height: 25px;
					background: url(../img/icon-down.png) no-repeat;
					top: 0;
					left: 0;
				}
		
		#top #cart_block .dropdown-menu {
			width: 450px;
			margin-top: 0px;
			text-align: left;
			padding: 0px;
			right: 0 !important;
			border-radius: 2px;
			-moz-border-radius: 2px;
			-webkit-border-radius: 2px;
			box-shadow: none;
			-webkit-box-shadow: none;
			-moz-box-shadow: none;
		}
			
			#top #cart_block .dropdown-menu:before {
			  position: absolute;
			  top: -8px;
			  right: 4px;
			  display: inline-block;
			  border-right: 8px solid transparent;
			  border-bottom: 8px solid #ccc;
			  border-left: 8px solid transparent;
			  border-bottom-color: #e5e5e5;
			  content: '';
			}
			
			#top #cart_block .dropdown-menu:after {
			  position: absolute;
			  top: -7px;
			  right: 5px;
			  display: inline-block;
			  border-right: 7px solid transparent;
			  border-bottom: 7px solid #ffffff;
			  border-left: 7px solid transparent;
			  content: '';
			}
			
				#top #header-right #cart_block .dropdown-menu {
					right: 0px;
					left: auto;
				}

					/* Content Top Cart */
					
					.mini-cart-info table {
						border-collapse: collapse;
						width: 100%;
					}
					
						.mini-cart-info td {
							padding: 10px;
							border-bottom: 1px solid #ececec;
						}
						
							.mini-cart-info .image {
								padding: 20px 10px 20px 20px;
							}
							
							.mini-cart-info .image img {
								border: 1px solid #ececec;
								display: block;
							}
							
							.mini-cart-info .name {
								padding: 20px 10px;
								font-weight: 400;
							}
							.mini-cart-info .quantity {
								text-align: right;
								padding: 20px 10px;
							}
							
							.mini-cart-info td.total {
								text-align: right;
								padding: 20px 10px;
								color: #1e233f;
							}
							
							.mini-cart-info .remove {
								text-align: right;
								padding: 10px 20px 13px 10px;
							}
							
								.mini-cart-info .remove img {
									cursor: pointer;
								}
					
					.mini-cart-total {
						text-align: right;
					}
					
						.mini-cart-total table {
							border-collapse: collapse;
							display: inline-block;
							padding: 20px 14px 10px 20px;
						}
						
							.mini-cart-total td {
								padding: 0px 6px;
							}
								
								.mini-cart-total td:last-child {
									color: #1e233f;
								}
					
					#cart_block .checkout {
						text-align: right;
						clear: both;
						padding: 0px 16px 20px 20px;
					}
					
						#cart_block .checkout .button:first-child {
							margin-right: 7px;
						}
					
					#cart_block .empty {
						padding: 50px 20px;
						text-align: center;
					}
			
	/* Top -> Right */
	
	#top #header-right {
		text-align: right;
	}
		
/* Breadcrumb
------------------*/

.breadcrumb {
}
	
	.breadcrumb .container > div {
		padding: 20px 0px 0px 0px;
	}
		
		.breadcrumb .container h1 {
			margin: 0px;
			padding: 0px;
			font-size: 30px;
			font-weight: 600;
			color: #0b486b;
		}
		
			.breadcrumb .container .strip-line {
				display: none;
			}
		
		.breadcrumb .container img {
			margin: 0px 0px 20px 0px;
		}
		
		.breadcrumb .container ul {
			list-style: none;
			padding: 0px;
			margin: 0px;
		}
		
			.breadcrumb .container ul li {
				display: inline-block;
				padding-right: 6px;
			}
			
				.breadcrumb .container ul li a {
					color: #0b486b;
					font-weight: 400;
				}
				
					.breadcrumb .container ul li:last-child a {
						color: #084d9b;
					}
			
				.breadcrumb .container ul li:before {
					content: "»";
					color: #084d9b;
					padding-right: 9px;
				}
				
					.breadcrumb .container ul li:first-child:before {
						display: none;
					}
					
/* Main Content
------------------*/

.main-content .container,
.standard-body .main-content .container {
	padding-bottom: 35px;
}

	/* Banner */
	
	.banners > div {
		padding-top: 20px;
	}
	
		.banners > div img {
			display: block;
			position: relative;
			-webkit-backface-visibility: hidden;
			-webkit-transition: opacity 0.4s linear, -webkit-transform 0.4s ease-in-out, filter 0.4s ease-in-out;
			-moz-transition: opacity 0.4s linear, -moz-transform 0.4s ease-in-out, filter 0.4s ease-in-out;
			-o-transition: opacity 0.4s linear, -o-transform 0.4s ease-in-out, filter 0.4s ease-in-out;
			-ms-transition: opacity 0.4s linear, -ms-transform 0.4s ease-in-out, filter 0.4s ease-in-out;
			transition: opacity 0.4s linear, transform 0.4s ease-in-out, filter 0.4s ease-in-out;
		}
		
			.banners:hover > div img {
				-webkit-transform: scale(0.97);
				-moz-transform: scale(0.97);
				-o-transform: scale(0.97);
				-ms-transform: scale(0.97);
				transform: scale(0.97);
				opacity: 0.7;
				-webkit-filter: blur(.4px);
				-moz-filter: blur(.4px);
				-o-filter: blur(.4px);
				-ms-filter: blur(.4px);
				filter: blur(.4px);
			}
		
			.banners > div:hover img {
				-webkit-transform: scale(1.05);
				-moz-transform: scale(1.05);
				-o-transform: scale(1.05);
				-ms-transform: scale(1.05);
				transform: scale(1.05);
				z-index: 100;
				opacity: 1;
				-webkit-filter: none;
				-moz-filter: none;
				-o-filter: none;
				-ms-filter: none;
				filter: none;
			}
			
			.banners > div.col-sm-12 img {
				-webkit-transform: none;
				-moz-transform: none;
				-o-transform: none;
				transform: none;
			}
	
	/* Center column */
	
	.center-column {
		padding-top: 20px;
		position: relative;
		margin-bottom: -20px;
	}
		
		.center-column h1,
		.center-column h2,
		.center-column h3,
		.center-column legend {
			margin: 0px !important;
			padding: 6px 0px 7px 0px;
		}
		
			.center-column h1:after,
			.center-column h2:after,
			.center-column h3:after,
			.center-column legend:after {
				position: absolute;
				width: 100%;
				max-width: 100px;
				height: 1px;
				background: #e4e4e4;
				bottom: 20px;
				left: 0;
				right: 0;
			}
	
	/* Block */
	
	.box {
		margin: 20px 0px 0px 0px;
		position: relative;
		background: #f6f6f6;
border-radius: 5px;
margin-bottom: 40px;
	}

		.box .box-heading {
			padding: 0px 0px 14px 10px;
			margin: 0px 0px 20px 0px;
			font-size: 22px;
			font-weight: 300;
			border-bottom: 1px solid #e5e5e5;
		}
		
		.col-sm-3 .box,
		.col-sm-4 .box {
			border: 1px solid rgba(0,0,0,.2);
			border-radius:         2px;
			-moz-border-radius:    2px;
			-webkit-border-radius: 2px;
			background: #fff;
		}
		
			.col-sm-3 .box.with-scroll,
			.col-sm-4 .box.with-scroll {
				margin-bottom: 12px;
			}
		
			.col-sm-3 .box .box-heading,
			.col-sm-4 .box .box-heading {
				padding:10px 30px 10px 30px;
				margin: 0px;
			}
			
				.box-categories .box-heading {
					font-weight: 400;
					background: #f7f7f7;
					border-radius:         2px 2px 0px 0px;
					-moz-border-radius:    2px 2px 0px 0px;
					-webkit-border-radius: 2px 2px 0px 0px;
				}
		
		.box .strip-line {
			display: none;
		}
		
			.center-column .box {
				margin-top: 0px;
				margin-bottom: 20px;
			}
			
		.box .box-content {
			clear: both;
			padding: 0px;
		}
		
			.col-sm-3 .box .box-content,
			.col-sm-4 .box .box-content {
				padding: 30px;
			}
		
		.box > .prev, 
		.box > .next {
			float: right;
			margin: 2px 0px 0px 0px;
			width: 30px;
			height: 27px;
			border-radius:   0px;
			-moz-border-radius:  0px;
			-webkit-border-radius:  0px;
			background: #fff;
			border: 1px solid #e5e5e5;
			-webkit-box-shadow: 0px 1px 1px 0px rgba(0,0,0,0.1);
			-moz-box-shadow: 0px 1px 1px 0px rgba(0,0,0,0.1);
			box-shadow: 0px 1px 1px 0px rgba(0,0,0,0.1);
		}
		
			.box > .prev:hover, 
			.box > .next:hover {
				background: #f7f7f7;
			}
			
			.box > .prev {
				border-right: none;
				margin-left: 15px;
				border-radius: 0px;
				-moz-border-radius:  0px;
				-webkit-border-radius:0px;
			}
			
			.col-sm-3 .box > .prev,
			.col-sm-3 .box > .next,
			.col-sm-4 .box > .prev,
			.col-sm-4 .box > .next {
				float: none;
				position: absolute;
				bottom: -13px;
				left: 50%;
				margin: 0px;
				z-index: 1;
			}
			
				.col-sm-3 .box > .prev,
				.col-sm-4 .box > .prev {
					margin-left: -30px;
				}
				
				.col-sm-3 .box > .next,
				.col-sm-4 .box > .next {
				}
		
				.box > .prev span, 
				.box > .next span {
					font-family: FontAwesome;
					font-style: normal;
					font-weight: normal;
					line-height: 1;
					-webkit-font-smoothing: antialiased;
					-moz-osx-font-smoothing: grayscale;
					color: #333;
					font-size: 20px;
					display: block;
					width: 28px;
					height: 25px;
					text-align: center;
					padding: 2px 0px 0px 1px;
				}
				
					.box > .next span {
						padding-right: 3px;
					}
				
					.box > .next span:before {
						content: "\f105";
					}
					
					.box > .prev span:before {
						content: "\f104";
					}
				
	/* Block Category */
	
	.box-category {
		position: relative;
		padding: 0px !important;
	}
	
		.box-category ul {
			list-style: none;
			padding: 0px;
			margin: 0px;
			background-color: rgb(216, 216, 216);
		}
		
			.box-category > ul li {
				border-top: 1px solid rgba(0, 0, 0, 0.10);
				position: relative;
			}
			
				.box-category > ul > li:first-child {
					border: none;
				}
			
				.box-category ul li a {
					display: block;
					padding: 11px 30px 9px 30px;
					font-size: 14px;
					font-weight: 400;
					text-transform: uppercase;
				}
				
					.box-category ul li a.active,
					.box-category ul li:hover > a {
						background: #f7f7f7;
						color: #0e5db7;
					}
				
					.box-category ul li .head a {
						font-size: 14px;
						line-height: 10px;
						padding: 0px !important;
						margin: 0px;
						position: absolute;
						top: 14px;
						right: 15px;
						width: 14px;
						height: 14px;
						color: #084d9b;
						border: 1px solid #084d9b;
						text-align: center;
						display: block;
					}
					
						.box-category ul li .head a.collapsed {
							line-height: 11px;
						}
					
						.box-category ul li .head .plus {
							display: none;
						}
						
							.box-category ul li .head .collapsed .plus {
								display: block;
							}
							
							.box-category ul li .head .collapsed .minus {
								display: none;
							}
				
				.box-category ul li ul a {
					font-size: 13px;
					font-weight: 300;
					text-transform: none;
				}
				
					.box-category ul li ul a:before {
						content: '•';
						color: #084d9b;
						padding-right: 10px;
					}
		
	/* Product */

	.product-grid {
		position: relative;
		margin-top: -20px;
		clear: both;
	}
	
		.box-product .carousel-inner {
			overflow: visible;
		}
		
		.box-content .carousel {
			
		}
		
			.box-content:hover .carousel {
				overflow: visible;
			}
		
		.box-product .owl-carousel:hover {
			margin-bottom: -230px;
		}
		
			.box-product .owl-carousel:hover .owl-wrapper-outer {
				padding-bottom: 220px;
			}
			
			.box-product .owl-carousel .owl-wrapper {
				z-index: 2;
			}
		
		.col-sm-3 .product-grid,
		.col-sm-4 .product-grid {
			display: table !important;
		}
				
		.center-column .product-grid {
			margin-bottom: 20px;
		}
		
		.center-column .related-products .product-grid {
			margin-bottom: 20px;
		}
		
		.carousel-indicators { 
			display: none;
		}
	
		.product-grid .product {
			margin-top: 20px;
			background: #fff;
			border: 1px solid #e5e5e5;
			padding: 15px;
			text-align: center;
			border-radius:         2px;
			-moz-border-radius:    2px;
			-webkit-border-radius: 2px;
			position: relative;
		}
			
			.product-grid .product:hover {
				z-index: 2;
				border: 1px solid #fff;
				box-shadow:            0px 0px 25px rgba(0, 0, 0, 0.10);
				-moz-box-shadow:       0px 0px 25px rgba(0, 0, 0, 0.10);
				-webkit-box-shadow:    0px 0px 25px rgba(0, 0, 0, 0.10);
			}

			.product-grid .product-hover .only-hover {
				opacity: 0;
				visibility: hidden;
				position: absolute;
				padding: 0px 15px 15px 15px !important;
				background: #fff;
				border: 1px solid #fff;
				left: -1px;
				right: -1px;
				border-radius: 0px 0px 2px 2px;
			}
			
				.product-grid .product-hover:hover .only-hover {
					opacity: 1;
					visibility: visible;
				}
				
					.product-grid .product-hover:hover .only-hover:before {
						content: '';
						position: absolute;
						top: 20px;
						left: 0;
						bottom: 0;
						right: 0;
						box-shadow:            0px 0px 25px rgba(0, 0, 0, 0.10);
						-moz-box-shadow:       0px 0px 25px rgba(0, 0, 0, 0.10);
						-webkit-box-shadow:    0px 0px 25px rgba(0, 0, 0, 0.10);
						z-index: -1;
					}
					
					.product-grid .product-hover .only-hover > * {
						filter: alpha(opacity=30);
						opacity: .3;
						-webkit-transition: opacity .3s ease-in-out;
						-moz-transition: opacity .3s ease-in-out;
						-ms-transition: opacity .3s ease-in-out;
						-o-transition: opacity .3s ease-in-out;
						transition: opacity .3s ease-in-out;
					}
					
						.product-grid .product-hover:hover .only-hover > * {
							filter: alpha(opacity=100);
							opacity: 1;
						}
			
			.sale {
				width: 38px;
				height: 38px;
				border-radius:         20px;
				-moz-border-radius:    20px;
				-webkit-border-radius: 20px;
				text-align: center;
				background: #FF4945; /* Old browsers */
				background: -moz-linear-gradient(top, #FF4945 0%, #FF4945 50%, #FF4945 51%, #FF4945 100%); /* FF3.6+ */
				background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#FF4945), color-stop(50%,#FF4945), color-stop(51%,#FF4945), color-stop(100%,#FF4945)); /* Chrome,Safari4+ */
				background: -webkit-linear-gradient(top, #FF4945 0%,#FF4945 50%,#FF4945 51%,#FF4945 100%); /* Chrome10+,Safari5.1+ */
				background: -o-linear-gradient(top, #FF4945 0%,#FF4945 50%,#FF4945 51%,#FF4945 100%); /* Opera 11.10+ */
				background: -ms-linear-gradient(top, #FF4945 0%,#FF4945 50%,#FF4945 51%,#FF4945 100%); /* IE10+ */
				background: linear-gradient(to bottom, #FF4945 0%,#FF4945 50%,#FF4945 51%,#FF4945 100%); /* W3C */
				filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#FF4945', endColorstr='#FF4945',GradientType=0 ); /* IE6-9 */
				padding: 9px 0px;
				color: #fff;
				font-weight: 400;
				font-size: 12px;
				text-transform: uppercase;
				position: absolute;
				z-index: 1;
			}
			
				.product-info .sale,
				#quickview .sale {
					left: 25px;
					top: 15px;
					z-index: 3;
					
				}
				
			.product-grid .product .image {
				position: relative;
			}
			
				.product-grid .product .image img {
					display: block;
					margin: 0px auto;
				}

				.product-grid .product .image .quickview {
					position: absolute;
					top: 50%;
					margin-top: -7px;
					width: 100%;
					z-index: 1;
				}
				
					.product-grid .product .image .quickview a {
						margin: 0px auto;
						display: inline-block;
						background: #fefefe;
						border: 1px solid #e6e6e6;
						font-size: 12px;
                        padding: 7px 30px;
						border-radius: 2px;
						-moz-border-radius: 2px;
						-webkit-border-radius: 2px;
						opacity: 0;
						filter: alpha(opacity=0);
						-webkit-transform: scale(0);
						-ms-transform: scale(0);
						transform: scale(0);
						-webkit-transition: all 0.2s;
						-moz-transition:    all 0.2s;
						-o-transition:      all 0.2s;
						transition:         all 0.2s;
						cursor: pointer;
					}
					
						.product-grid .product:hover .image .quickview a {
							opacity: 1;
							filter: alpha(opacity=100);
							-webkit-transform: scale(1,1);
							-ms-transform: scale(1,1);
							transform: scale(1,1);
						}
	
				.product-grid .product .image img.zoom-image-effect {
					-webkit-transform: scale(1,1);
					-webkit-transition-timing-function: ease-out;
					-webkit-transition-duration: 250ms;
					-moz-transform: scale(1,1);
					-moz-transition-timing-function: ease-out;
					-moz-transition-duration: 250ms;
				}
				
					.product-grid .product:hover .image img.zoom-image-effect {
						-webkit-transform: scale(1.05,1.07);
						-webkit-transition-timing-function: ease-out;
						-webkit-transition-duration: 250ms;
						-moz-transform: scale(1.05,1.07);
						-moz-transition-timing-function: ease-out;
						-moz-transition-duration: 250ms;
					}
					
					.product-grid .product .image-swap-effect {
						position: relative;
					}
					
						.product-grid .product .image-swap-effect .swap-image {
							position: absolute;
							visibility: hidden;
							opacity: 0.1;
							-webkit-transition: all 0.15s;
							-moz-transition:    all 0.15s;
							-o-transition:      all 0.15s;
							transition:         all 0.15s;
						}
	
							.product-grid .product:hover .image-swap-effect .swap-image {
								visibility: visible;
								opacity: 1;
							}
			
			.product-grid .product .name {
				padding-top: 13px;
			}
			
				.product-grid .product .name a {
					font-size: 15px;
					line-height: 1.1;
					font-weight: 400;
				}
				
			.product-grid .product .price {
				color: #084d9b;
				font-size: 16px;
				line-height: 1.2;
				font-weight: 400;
			}
			
				.product-grid .product .price .price-old {
					color: #808080;
					text-decoration: line-through;
					padding-right: 2px;
					font-weight: 300;
					font-size: 13px;
				}
				
				.product-grid .product .price .price-new {
					color: #FF4945;
				}

			.product-grid .product .rating {
				padding-top: 8px;
			}

			.product-grid .product .only-hover {
				padding: 4px 0px 0px 0px;
			}
			
				.product-grid .product .only-hover ul {
					list-style: none;
					margin: 0px;
					padding: 17px 0px 0px 0px;
					line-height: 1.3;
				}
					
					.product-grid .product .only-hover ul li a {
						cursor: pointer;
						color: #737474;
					}
				
				.product-grid .product .only-hover .button {
					margin-top: 15px;
				}
				
				@media (max-width: 1240px) { 
					.responsive .product-grid .product .only-hover .button {
						padding: 5px 15px;
					}
					
					.responsive .product-grid .product .only-hover .button span {
						font-size: 12px;
					}
				}
				
	/* Product for column left & right */
	
	.col-sm-3 .products,
	.col-sm-4 .products {
	}
	
	.col-sm-3 .item,
	.col-sm-4 .item {
		overflow: hidden;
	}
		
		.col-sm-3 .carousel-indicators,
		.col-sm-4 .carousel-indicators {
			display: none;
		}
		
		.col-sm-3 .products .product-grid,
		.col-sm-4 .products .product-grid {
			margin: -10px 0px;
		}
		
		.col-sm-3 .products .row > div,
		.col-sm-4 .products .row > div {
			width: 100%;
			margin: 0px;
		}
		
			.col-sm-3 .products .row > div .product,
			.col-sm-4 .products .row > div .product {
				margin: 0px;
				padding: 10px 0px;
				text-align: left;
				border: none;
				box-shadow:            none;
				-moz-box-shadow:       none;
				-webkit-box-shadow:    none;
			}
			
				.col-sm-3 .products .row > div .product .left,
				.col-sm-4 .products .row > div .product .left {
					float: left;
					width: 29%;
				}
					
					.col-sm-3 .products .row > div .product .left .sale,
					.col-sm-4 .products .row > div .product .left .sale {
						display: none;
					}
					
					.col-sm-3 .products .row > div .product .left .image,
					.col-sm-4 .products .row > div .product .left .image {
						border: 1px solid #e5e5e5;
						border-radius: 2px;
						-webkit-border-radius: 2px;
						-moz-border-radius: 2px;
						padding: 2px;
					}
				
				.col-sm-3 .products .row > div .product .right,
				.col-sm-4 .products .row > div .product .right {
					float: left;
					width: 63%;
					margin-left: 8%;
					padding-top: 0px;
				}
				
					.col-sm-3 .products .row > div .product .right .name,
					.col-sm-4 .products .row > div .product .right .name {
						padding: 1px 0px 0px 0px;
					}
					
					.col-sm-3 .products .row > div .product .rating,
					.col-sm-4 .products .row > div .product .rating {
						padding-top: 1px;
					}
				
				.col-sm-3 .products .product .only-hover,
				.col-sm-4 .products .product .only-hover {
					display: none;
				}
			
	/* Product list */
	
	.product-list {
		
	}
	
		.product-list > div {
			position: relative;
			margin: 0px 0px 20px 0px;
			padding: 20px;
			border: 1px solid #e6e6e6;
			background: #fff;
			cursor: pointer;
			border-radius:         2px;
			-moz-border-radius:    2px;
			-webkit-border-radius: 2px;
		}

			.product-list > div:hover {
				box-shadow:            0px 0px 25px rgba(0, 0, 0, 0.10);
				-moz-box-shadow:       0px 0px 25px rgba(0, 0, 0, 0.10);
				-webkit-box-shadow:    0px 0px 25px rgba(0, 0, 0, 0.10);
				border: 1px solid #fff;
			}
		
			.product-list .image {
				text-align: center;
			}
			
			.product-list .name-desc {
				padding-top: 10px;
			}
				
				.product-list .name-desc .name a {
					font-size: 20px;
					font-weight: 400;
				}
				
				.product-list .name-desc .description {
					font-size: 12px;
					padding: 18px 0px 0px 0px;
				}
				
				.product-list .name-desc .rating-reviews {
					margin: 26px 0px 0px 0px;
					padding: 17px 0px 0px 0px;
					border-top: 1px solid #e6e6e6;
				}
					
					.product-list .name-desc .rating-reviews .rating {
						float: left;
						width: auto;
						padding: 0px 20px 0px 0px;
					}
									
					.product-list .name-desc .rating-reviews .reviews {
						float: left;
						width: auto;
					}
					
						.product-list .name-desc .rating-reviews .reviews span {
							color: #4ecdc4;
						}
						
			.product-list .actions {
				position: static;
			}
			
				.product-list .actions > div {
					padding: 15px 0px 0px 20px;
				}
				
					.product-list .actions > div:before {
						width: 1px;
						background: #e6e6e6;
						content: '';
						position: absolute;
						top: 0;
						bottom: 0;
						margin: 0px 0px 0px -20px;
					}
					
					.product-list .actions > div .price {
						text-align: center;
						font-size: 20px;
						color: #084d9b;
						font-weight: 400;
						padding: 0px 0px 10px 0px;
					}
					
						.product-list .actions > div .price .price-old {
							text-decoration: line-through;
							color: #667280;
							font-size: 12px;
							display: block;
						}
						
						.product-list .actions > div .price .price-new {
							color: #FF4945;
						}
					
					.product-list .actions > div .add-to-cart {
						text-align: center;
					}
					
					.product-list .actions > div ul {
						text-align: center;
						list-style: none;
						margin: 0px;
						padding: 13px 0px 0px 0px;
						color: #080808;
					}
				
	/* Category page */
	
	.category-info {
		padding: 0px 0px 0px 0px;
		position: relative;
		margin: 0px -20px 0px 0px;
	}
	
		.category-info .image {
			padding: 0px 20px 20px 0px;
			float: left;
			width: auto;
			max-width: 100%;
		}
		
			.category-info .image img {
				border: 1px solid #e5e5e5;
				border-radius: 2px;
				-webkit-border-radius: 2px;
				-moz-border-radius: 2px;
				display: block;
			}
		
		.category-info > p {
			padding: 0px 20px 10px 0px;
		}
		
	.refine_search {
		padding-top: 0px !important;
	}
	
	.category-list {
		
	}
	
	.category-list-text-only {
		margin-bottom: 20px;
	}
	
		.category-list .row > div {
			margin-bottom: 20px;
			text-align: center;
		}
		
			.category-list-text-only .row > div {
				margin-bottom: 6px;
				text-align: left;
			}
		
			.category-list img {
				display: block;
				margin-bottom: 15px;
				margin-left: auto;
				margin-right: auto;
				border: 1px solid #e5e5e5;
				border-radius:         2px;
				-moz-border-radius:    2px;
				-webkit-border-radius: 2px;
			}
			.category-list img:hover {
			-webkit-box-shadow: 0 15px 10px -10px rgba(0, 0, 0, 0.5), 0 1px 0px rgba(0, 0, 0, 0.3); 
 -moz-box-shadow: 0 15px 10px -10px rgba(0, 0, 0, 0.5), 0 1px 0px rgba(0, 0, 0, 0.3); 
 box-shadow: 0 15px 10px -10px rgba(0, 0, 0, 0.3), 0 1px 0px rgba(0, 0, 0, 0.1); 
			}
	
	.product-filter {
		background: #fff;
		border: 1px solid #e5e5e5;
		border-radius:         2px;
		-moz-border-radius:    2px;
		-webkit-border-radius: 2px;
		padding: 10px;
		margin: 0px 0px 20px 0px;
		font-size: 14px;
	}
		
		.product-filter .list-options {
			float: left;
			width: auto;
			padding: 0px 8px;
		}
		
			.product-filter .list-options .sort {
				padding: 6px 0px;
				float: left;
				width: auto;
			}
			
			.product-filter .list-options .limit {
				padding: 6px 0px 6px 16px;
				float: left;
				width: auto;
			}
			
				.product-filter .list-options select {
					margin: 0px 0px 0px 10px;
					width: auto;
					height: auto;
				}
		
		.product-filter .options {
			float: right;
			width: auto;
			padding: 10px 8px 8px 8px;
		}
		
			.product-filter .options .product-compare {
				float: left;
				width: auto;
				padding: 0px 20px 0px 0px;
			}
			
			.product-filter .options .button-group {
				float: left;
				width: auto;
			}
			
				.product-filter .options .button-group button {
					margin: 0px;
					padding: 0px 5px;
					line-height: 22px;
					border: none;
					background: none;
					color: #737474;
					border-radius:         2px;
					-moz-border-radius:    2px;
					-webkit-border-radius: 2px;
				}
				
					.product-filter .options .button-group button:hover,
					.product-filter .options .button-group .active {
						background: #084d9b;
						color: #fff;
					}
					
	/* ------- PRODUCT INFO ---------- */
	
	.product-info {
	}
				
		/* Product info - Image */
				
		.product-info .product-image {
			margin: 0px 0px 20px 0px;
			border: 1px solid #e5e5e5;
			background: #fff;
			border-radius:         2px;
			-moz-border-radius:    2px;
			-webkit-border-radius: 2px;
			text-align: center;
		}
				
			.product-info .product-image a {
				display: block;
			}
					
			.product-info .product-image img {
				display: block;
				cursor: pointer;
			}
						
						
		/* Product info - thumbnails */
					
		.product-info .thumbnails {
		}
				
			.product-info .thumbnails ul {
				list-style: none;
				margin: 0px 0px 0px -20px;
				position: relative;
				padding: 0px;
			}
		
				.product-info .thumbnails ul li {
					width: 25%;
					float: left;
				}
						
					.product-info .thumbnails-left li {
						float: none;
						width: 100%;
					}
						
					.product-info .thumbnails li p {
						margin: 0px;
						padding: 0px 0px 20px 20px;
					}
				
					.product-info .thumbnails li img {
						border: 1px solid #e5e5e5;
						display: block;
						border-radius:         2px;
						-moz-border-radius:    2px;
						-webkit-border-radius: 2px;
						height:80px;
					}
		
		/* Product info - product center */
				
		.product-info .product-center {
			position: relative;
			margin-top: -23px;
			margin-bottom: 20px;
		}
									
			.product-info .description,
			.product-info .price,
			.product-info .options,
			.product-info .cart {
				padding: 20px 0px 20px 0px;
				border-bottom: 1px solid #e5e5e5;
			}
					
				.product-info .price .price-new {
					font-size: 36px;
					line-height: 40px;
					color: #FF4945;
					font-weight: 400;
				}
				
					.product-info .price .price-sale {
						color: #FF4945;
					}
					
				.product-info .price .price-old {
					text-decoration: line-through;
				}
			
			/* Product info -> Options */
					
			.product-info .options {
				padding-bottom: 10px;
			}
					
				.product-info .options h2 {
					padding: 0px;
				}
				
					.product-info .options h2:after {
						display: none;
					}
						
				.product-info .options .form-group {
					margin: 10px 0px 10px 0px;
				}
						
					.product-info .options .error {
						margin: 0px;
					}
			
			/* Product info -> Buttons */
							
			.product-info .cart {
			}
						
				.product-info .cart .add-to-cart {
				}
						
					.product-info .cart .add-to-cart p,
					.product-info .cart .add-to-cart input,
					.product-info .cart .add-to-cart .quantity {
						display: block;
						float: left;
					}
							
					.product-info .cart .add-to-cart p {
						padding: 6px 10px 5px 0px;
					}
								
					.product-info .cart .add-to-cart input {
						margin: 0px 10px 0px 0px !important;
						height: 34px;
					}
								
					.product-info .cart .add-to-cart .quantity {
						position: relative;
					}
					
						.product-info .cart .add-to-cart #button-more-details {
							display: none;
						}
									
						.product-info .cart .add-to-cart .quantity input {
							padding-right: 24px;
						}
									
							.product-info .cart .add-to-cart .quantity #q_up {
								display: block;
								position: absolute;
								right: 11px;
								top: 1px;
								background: #f7f7f7;
								border: 1px solid #e5e5e5;
								border-top: none;
								border-right: none;
								height: 16px;
								width: 18px;
								text-align: center;
								font-size: 10px;
							}
									
							.product-info .cart .add-to-cart .quantity #q_down {
								display: block;
								position: absolute;
								right: 11px;
								top: 17px;
								background: #f7f7f7;
								border-left: 1px solid #e5e5e5;
								height: 16px;
								width: 18px;
								text-align: center;
								font-size: 10px;
							}
				
				/* Product info -> Add to compare, wishlist */
												
				.product-info .cart .links {
					padding: 10px 0px 0px 0px;
				}
						
					.product-info .cart .links a {
						padding-right: 10px;
						cursor: pointer;
					}
							
						.product-info .cart .links a:before {
							content: "";
							padding-right: 5px;
							color: #FF4945;
						}
				
				/* Information about minimum products */
								
				.product-info .cart .minimum {
					padding: 10px 0px 0px 0px;
				}
				
				/* Reviews */
							
				.product-info .review {
					padding: 13px 0px 3px 0px;
				}
					
					.product-info .review > div {
						padding: 7px 0px;
					}
						
						.product-info .review a {
							cursor: pointer;
						}
						
	
		/* Tags */
		
		.tags_product {
			margin: 0px 0px 20px 0px;
		}

		/* ----------- QUICKVIEW ------------- */
		
		#quickview {
		}
		
			#quickview .product-image {
				margin: 0px 0px 20px 0px;
				border: 1px solid #e6e6e6;
				background: #fff;
				border-radius:         2px;
				-moz-border-radius:    2px;
				-webkit-border-radius: 2px;
				text-align: center;
			}
			
				#quickview .product-image a {
					display: block;
				}
				
					#quickview .product-image img {
						display: block;
						cursor: pointer;
					}
					
			/* Thumbnails */
				
			#quickview .thumbnails {
				position: relative;
				margin: 0px 0px -20px 0px;
			}
			
				#quickview .thumbnails ul {
					list-style: none;
					margin: 0px 0px 0px -20px;
					position: relative;
					padding: 0px;
				}
	
					#quickview .thumbnails li {
						width: 25%;
						float: left;
					}
					
						#quickview .thumbnails-left li {
							float: none;
							width: 100%;
						}
					
						#quickview .thumbnails li p {
							margin: 0px;
							padding: 0px 0px 20px 20px;
						}
			
							#quickview .thumbnails li img {
								border: 1px solid #e5e5e5;
								display: block;
								border-radius:         2px;
								-moz-border-radius:    2px;
								-webkit-border-radius: 2px;
							}
			
			#quickview .product-center {
				position: relative;
				margin-top: -23px;
				margin-bottom: -20px;
			}
								
				#quickview .description,
				#quickview .price,
				#quickview .options,
				#quickview .cart {
					padding: 20px 0px 20px 0px;
					border-bottom: 1px solid #e5e5e5;
				}
				
					#quickview .options {
						display: none;
					}
					
					#quickview .cart {
						border-bottom: none;
					}
				
				#quickview .price .price-new {
					font-size: 36px;
					line-height: 40px;
					color: #FF4945;
					font-weight: 400;
				}
				
					#quickview .price .price-sale {
						color: #FF4945;
					}
				
				#quickview .price .price-old {
					text-decoration: line-through;
				}
				
				#quickview .options {
					padding-bottom: 10px;
				}
				
					#quickview h2 {
						padding: 0px;
					}
					
					#quickview .options .option {
						padding: 10px 0px;
					}
					
						#quickview .options .error {
							margin: 0px;
						}
						
				#quickview .cart {
				}
					
					#quickview .cart .add-to-cart p,
					#quickview .cart .add-to-cart .quantity,
					#quickview .cart .links,
					#quickview .cart .minimum,
					#quickview .review {
						display: none;
					}
							
					#quickview .cart .add-to-cart input {
						margin: 0px 10px 0px 0px;
						height: 34px;
					}
		
	/* Product Block */
							
	.product-block {
		border: 1px solid #e5e5e5;
		background: #fff;
		border-radius:         2px;
		-moz-border-radius:    2px;
		-webkit-border-radius: 2px;
		margin: 0px 0px 20px 0px;
	}
				
		.product-block .title-block {
			font-weight: 400;
			font-size: 22px;
			padding: 23px 20px 12px 20px;
			margin: 0px;
		}
				
			.product-block .strip-line {
				width: auto;
				max-width: 100px;
				height: 1px;
				background: #e4e4e4;
				margin: 0px 20px 0px 20px;
			}
					
		.product-block .block-content {
			clear: both;
			padding: 20px;
		}
				
	/* Ratings */
		
	.rating i {
		margin: 0px 1px 0px 2px;
		font-size: 12px;
		color: #c2c2c2;
	}
		
		.rating i.active {
			 color: #f36909;
		}

/* CustomFooter
------------------*/	

.custom-footer {
	position: relative;
}

	.custom-footer .background-custom-footer {
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: -1;
	}
	
	.custom-footer .background,
	.standard-body .custom-footer .background {
		background: #fafafa;
		border-top: 1px solid #e5e5e5;
		border-bottom: 1px solid #e5e5e5;
	}
	
	.custom-footer .pattern {
		padding: 30px 0px 30px 0px;
		background: #282828;
	}
	
		.custom-footer .pattern p {
			padding: 0px;
			margin: 0px;
			color: #333;
		}
	
		.custom-footer h4 {
			font-size: 20px;
			font-weight: 300;
			border-bottom: 1px solid #e4e4e4;
			padding: 0px 0px 20px 0px;
			margin: 0px 0px 25px 0px;
			color: #333;
		}
		
/* Footer
------------------*/	

.footer {
	position: relative;
}

	.footer .background-footer {
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: -1;
	}
	
	.footer .pattern {
		padding: 5px 0px 30px 0px;
		background: #084D9B;
		color: #DBE4ED;
	}
		
		.footer .pattern p {
			padding: 0px;
			margin: 0px;
		}
	
		.footer h4 {
			font-size: 20px;
			font-weight: 300;
			padding: 25px 0px 17px 0px;
			margin: 0px;
			font-weight:bold;
		}
			
			.footer .strip-line {
				width: auto;
				max-width: 100px;
				height: 1px;
				background: #e4e4e4;
				margin: 0px 0px 25px 0px;
			}
		
		/* Facebook */
		
		#facebook {
			position: relative;
			margin: -7px -4px;
		}
		
			.fb-like-box, .fb-like-box span, .fb-like-box span iframe[style] { 
				width: 100% !important; 
			}
			
			.fb-like-box {
			}
			
		/* List */
		
		.footer ul {
			list-style: none;
			position: relative;
			margin: -5px 0px -3px 0px;
			padding: 0px;
			clear: both;
		}
		
			.footer ul li a {
				line-height: 30px;
				color: #fff;
			}
			
				.footer ul li a:before {
				
					color: #333;
					padding-right: 6px;
				}
				
		/* Contact us */
		
		ul.contact-us {
			margin: 0px;
			padding: 0px;
			list-style: none;
		}
		
			ul.contact-us li {
				clear: both;
				font-size: 16px;
				line-height: 1.4;
				margin: 30px 0px 0px 0px;
			}
			
				ul.contact-us li:first-child {
					margin: 0px;
				}
			
				ul.contact-us li i {
					float: left;
					width: 37px;
					height: 40px;
					padding: 0px 0px 0px 0px;
					margin: 0px 20px 0px 0px;
					text-align: center;
					font-size: 36px;
					color: #FF4945;
				}
				
					ul.contact-us li i.fa-mobile-phone {
						font-size: 45px;
					}
					
					ul.contact-us li i.fa-envelope {
						font-size: 30px;
						padding-top: 7px;
					}
					
					ul.contact-us li i.fa-skype {
						padding-top: 5px;
					}
				
				ul.contact-us li span {
					color: #FF4945;
					text-decoration: underline;
				}
		
/* Copyright
------------------*/	

.copyright {
	position: relative;
	background: #1E233F;	
}
	
	.copyright .pattern {
		padding: 25px 0px 25px 0px;
		border-top: 1px solid #e5e5e5;
	}
	
		.copyright .pattern .line {
			display: none;
		}
		
		.copyright p {
			margin: 0px;
			padding: 0px;
		}
		
		.copyright ul {
			float: right;
			width: auto;
			list-style: none;
			padding: 5px 0px 0px 0px;
			margin: 0px;
		}
		
			.copyright ul li {
				display: inline-block;
				margin-left: 8px;
			}
			
/* OPENCART STYLE
--------------------------- */

/* content */

.main-content .content { 
	padding: 0px 0px 20px 0px;
}

	.main-content .content:before,
	.main-content .content:after {
	  display: table;
	  content: " ";
	}
	
	.main-content .content:after {
	  clear: both;
	}

	.main-content .content .left { 
		float: left;
		width: 47%; 
		padding: 0px;
	}
	
	.main-content .content .right { 
		float: right;
		width: 47%; 
		padding: 0px;
	}
	
/* List content */

.center-column .list-unstyled li:before {
	content: "»";
	color: #FF4945;
	padding-right: 6px;
}

/* Login content */

.login-content { 
}

	.login-content:before,
	.login-content:after {
	  display: table;
	  content: " ";
	}
	
	.login-content:after {
	  clear: both;
	}

	.login-content .left { 
		float: left;
		width: 47%; 
	}
	
	.login-content .right { 
		float: right;
		width: 47%; 
	}
	
		.login-content .content {
			margin: 20px 0px 0px 0px;
		}
		
			.login-content .left .button {
				margin-top: 10px;
			}
	
/* Autocomplete */

.ui-helper-hidden {
	display: none;
}
.ui-helper-hidden-accessible {
	border: 0;
	clip: rect(0 0 0 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
}
.ui-helper-reset {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	line-height: 1.3;
	text-decoration: none;
	font-size: 100%;
	list-style: none;
}
.ui-helper-clearfix:before,
.ui-helper-clearfix:after {
	content: "";
	display: table;
	border-collapse: collapse;
}
.ui-helper-clearfix:after {
	clear: both;
}
.ui-helper-clearfix {
	min-height: 0; /* support: IE7 */
}
.ui-helper-zfix {
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	position: absolute;
	opacity: 0;
	filter:Alpha(Opacity=0);
}

.ui-front {
	z-index: 100;
}

.ui-autocomplete {
	position: absolute;
	top: 0;
	left: 0;
	cursor: default;
	z-index: 999;
}

.autocomplete-results {
	position: relative;
}
	
	.ui-autocomplete {
		background: #fff !important;
		border: 1px solid #e5e5e5 !important;
		padding: 0px !important;
		margin-top: 14px !important;
		top: 0 !important;
		right: 0 !important;
		left: 0 !important;
		min-width: 300px !important;
		border-radius:         2px !important;
		-moz-border-radius:    2px !important;
		-webkit-border-radius: 2px !important;
		box-shadow:            none !important;
		-moz-box-shadow:       none !important;
		-webkit-box-shadow:    none !important;
	}
		
		.ui-autocomplete:before {
		  position: absolute;
		  top: -8px;
		  left: 17px;
		  display: inline-block;
		  border-right: 8px solid transparent;
		  border-bottom: 8px solid #ccc;
		  border-left: 8px solid transparent;
		  border-bottom-color: #e5e5e5;
		  content: '';
		}
		
		.ui-autocomplete:after {
		  position: absolute;
		  top: -7px;
		  left: 18px;
		  display: inline-block;
		  border-right: 7px solid transparent;
		  border-bottom: 7px solid #ffffff;
		  border-left: 7px solid transparent;
		  content: '';
		}
		
		.container-megamenu .ui-autocomplete {
			left: auto !important;
		}
		
			.container-megamenu .ui-autocomplete:after {
				left: auto;
				right: 19px;
			}
			
			.container-megamenu .ui-autocomplete:before {
				left: auto;
				right: 18px;
			}

		.ui-autocomplete li {
			padding: 0px !important;
			margin: 0px !important;
			cursor: pointer !important;
			border: none !important;
			border-top: 1px solid #ececec !important;
			background: none !important;
			list-style: none !important;
		}
		
			.ui-autocomplete li:first-child {
				border-top: none !important;
			}
			
			.ui-autocomplete li a {
				display: block;
				padding: 10px !important;
				margin: 0px !important;
				cursor: pointer !important;
				border: none !important;
				background: none !important;
				overflow: hidden;
				border-radius:         0px !important;
				-moz-border-radius:    0px !important;
				-webkit-border-radius: 0px !important;
				color: #737474 !important; 
				font-size: 13px !important;
				font-weight: 400 !important;
				line-height: 1.6 !important;
				font-family:'Lato' !important;
			}
			
				.ui-autocomplete li a.ui-state-focus {
					background: #f7f7f7 !important;
				}
			
				.ui-autocomplete li img {
					float: left;
					width: 70px;
					margin-right: 10px;
				}
				
				.ui-autocomplete li span.description {
					font-size: 11px !important;
					opacity: 0.7 !important;
				}
				
				.ui-autocomplete li span.price {
					color: #FF4945 !important;
					display: block !important;
					padding-top: 4px !important;
				}
				
				.ui-autocomplete-loading  {  
					background-image: url('../img/loader.gif') !important; 
					background-repeat: no-repeat !important;
					background-position: center !important; 
				}
				

/* Pagination */

div.pagination-results { 
	clear:both;
	padding:0px 0px 0px 0px;
	margin:0px 0px 10px 0px;
	position: relative;
	overflow:auto; 
}
	
	div.pagination-results .text-right { 
		padding:4px 0px 10px 10px; 
	}
	
	div.pagination-results .text-left { 
		padding:0px 10px 0px 0px; 
	}
	
	div.pagination-results ul { 
		padding:0px;
		margin: 0px;
		list-style: none;
	}
		
		div.pagination-results ul li { 
			display:inline-block;
			width:30px;
			height:30px;
			background:#fff;
			border:1px solid #e6e6e6;
			transition: background-color 0.4s;
			-webkit-transition: background-color 0.4s;
			-moz-transition: background-color 0.4s;
			border-radius:        4px;
			-moz-border-radius:   4px;
			-webkit-border-radius:4px;
			text-align:center;
			padding:4px 0px 0px 0px; 
			margin: 0px 7px 10px 0px;
		}
		
		div.pagination-results ul li.active { 
			background-color: rgba(171, 171, 171, 0.49); 
		}

/* List Box */

.box-account .box-content {
	padding: 0px !important;
}

.list-box {
	list-style: none;
	margin: 0px;
	padding: 0px;
}

	.list-box li {
		border-top: 1px solid #e5e5e5;
		position: relative;
	}
	
		.list-box li:first-child {
			border: none;
		}
		
		.list-box li {
			display: block;
			padding: 11px 30px 9px 30px;
			text-transform: uppercase;
		}
		
			.list-box li:hover {
				background: #f7f7f7;
				color: #FF4945;
			}
	
/* Error form */

span.error {
	padding: 5px 0px;
	display: block;
	color: red;
}

	.form span.error {
		display: inline-block;
		padding-left: 20px;
	}
	
	.product-info span.error {
		padding-top: 0px;
	}

/* Help */

.help {
	font-size: 10px;
	display: block;
}

/* Table form */

table.form {
	
}

	table.form td {
		padding: 5px 13px 0px 0px;
	}
	
		table.form td input,
		table.form td select,
		table.form td textarea {
			margin-left: 7px;
		}
		
/* Htabs */

.htabs {
	margin: -10px 0px -1px 0px;
	position: relative;
	z-index: 1;
}

	.ie8 .htabs {
		margin-bottom: 0px !important;
	}

	.htabs:before,
	.htabs:after {
	  display: table;
	  content: " ";
	}
	
	.htabs:after {
	  clear: both;
	}

	.htabs a {
		float: left;
		margin: 10px 2px 0px 0px;
		border: 1px solid #e6e6e6;
		-moz-border-radius: 2px 2px 0 0;
		-webkit-border-radius: 2px 2px 0 0;
		border-radius: 2px 2px 0 0;
		background: #f7f7f7;
		padding: 17px 20px 14px 20px;
		font-size: 14px;
		text-transform: uppercase;
		font-weight: 400;
		display: block;
	}
	
		.htabs a.selected {
			border-bottom: 1px solid #fff;
			background: #fff;
		}
	
.center-column .tab-content {
	border: 1px solid #e6e6e6;
	background: #fff;
	margin: 0px 0px 20px 0px;
	padding: 20px;
	-moz-border-radius: 0px 0px 2px 2px;
	-webkit-border-radius: 0px 0px 2px 2px;
	border-radius: 0px 0px 2px 2px;
}

	.center-column .tab-content > *:last-child {
		padding-bottom: 0px;
		margin-bottom: 0px;
	}
	
	.center-column .tab-content > *:first-child {
		padding-top: 0px;
		margin-top: 0px;
	}
	
	.center-column .tab-content h2,
	.center-column .tab-content h3,
	.center-column .tab-content h4 {
		padding: 15px 0px 34px 0px;
		margin: 0px;
		font-weight: 400;
	}
		
		.center-column .tab-content h2#review-title {
			padding: 0px 0px 20px 0px;
		}
		
		.center-column .tab-content h2#review-title:after {
			display: none;
		}
	
/* Notification */

.success, 
.warning, 
.attention, 
.information { 
	padding: 10px 10px 10px 40px;
	margin:0px 0px 20px 0px;
	clear: both;
	border-radius:2px;
	-webkit-border-radius:2px;
	-moz-border-radius:2px; 
}

	.success { 
		background: #EAF7D9 url('../img/success.png') 13px center no-repeat;
		border: 1px solid #BBDF8D; 
	}
	
	.warning { 
		background: #FFD1D1 url('../img/warning.png') 13px center no-repeat;
		border: 1px solid #F8ACAC; 
	}
	
	.attention { 
		background: #FFF5CC url('../img/attention.png') 13px center no-repeat;
		border: 1px solid #F2DD8C; 
	}
	
	.information { 
		background: #E8F6FF url('../img/information.png') 13px center no-repeat;
		border: 1px solid #B8E2FB; 
	}
	
/* Review */

.review-list .author,
.review-list .rating {
	display: inline-block;
}

	.review-list .rating {
		float: right;
		width: auto;
	}
	
	.review-list .author span {
		font-size: 10px;
		opacity: 0.8;
		font-style: italic;
		padding-left: 3px;
	}
	
.review-list .text {
	margin: 15px 0px 20px 0px;
	padding: 20px;
	position: relative;
	background: #fff;
	border: 1px solid #e5e5e5;
	border-radius:         2px;
	-moz-border-radius:    2px;
	-webkit-border-radius: 2px;
}

	.review-list .text:before {
		position: absolute;
		top: -9px;
		left: 9px;
		display: inline-block;
		border-right: 9px solid transparent;
		border-bottom: 9px solid #ccc;
		border-left: 9px solid transparent;
		border-bottom-color: #e5e5e5;
		content: '';
	}
	
	.review-list .text:after {
		position: absolute;
		top: -8px;
		left: 10px;
		display: inline-block;
		border-right: 8px solid transparent;
		border-bottom: 8px solid #ffffff;
		border-left: 8px solid transparent;
		content: '';
	}
	
/* Tables
------------------*/

table.attribute,
table.list,
.wishlist-product table,
.wishlist-info table,
.compare-info,
.cart-info table,
.checkout-product table,
.table {
	border-collapse: separate;
	border-spacing: 0;
    border: solid #e5e5e5 1px;
    width: 100%;
    margin: 0px 0px 20px 0px;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
}

	table.attribute tr,
	table.list tr,
	.wishlist-product table tr,
	.wishlist-info table tr,
	.compare-info tr,
	.cart-info table tr,
	.checkout-product table tr,
	.table {
	    background: #fff;    
	}
	
		table.attribute tr:hover,
		table.list tr:hover,
		.wishlist-product table tr:hover,
		.wishlist-info table tr:hover,
		.compare-info tr:hover, 
		.cart-info table tr:hover,
		.checkout-product table tr:hover,
		.table tr:hover {
		    background: #f9f9f9;    
		    -webkit-transition: all 0.1s ease-in-out;
		    -moz-transition: all 0.1s ease-in-out;
		    transition: all 0.1s ease-in-out;
		}

	table.attribute td,
	table.list td,
	.wishlist-product table td,
	.wishlist-info table td,
	.compare-info td,
	.cart-info table td,
	.checkout-product table td,
	.table td {
	    border-left: 1px solid #e5e5e5;
	    border-top: 1px solid #e5e5e5;
	    padding: 17px 15px;
	    text-align: left;
	    vertical-align: top;
	}
	
		.table td.text-center {
			text-align: center;
		}
		
			.table td.text-center .input-group {
				margin: 0px auto;
			}
		
		.table td.text-right {
			text-align: right;
		}

	table.attribute thead td,
	table.list thead td,
	.wishlist-product table thead td,
	.wishlist-info table thead td,
	.compare-info thead td,
	.cart-info table thead td,
	.checkout-product table thead td,
	.table thead td {
	    background-color: #f7f7f7;
	    font-size: 14px;
	    font-weight: 400;
	    text-transform: uppercase;
	}
	
		table.attribute thead:first-child td,
		table.list thead:first-child td,
		.wishlist-product table thead:first-child td,
		.wishlist-info table thead:first-child td,
		.compare-info thead:first-child td,
		.cart-info table thead:first-child td,
		.checkout-product table thead:first-child td,
		.table thead:first-child td {
			border-top: none;
		}

	table.attribute td:first-child,
	table.list td:first-child,
	.wishlist-product table td:first-child,
	.wishlist-info table td:first-child,
	.compare-info td:first-child,
	.cart-info table td:first-child,
	.checkout-product table td:first-child,
	.table td:first-child {
	    border-left: none;
	}

	table.attribute thead td:first-child,
	table.list thead td:first-child,
	.wishlist-product table thead td:first-child,
	.wishlist-info table thead td:first-child,
	.compare-info thead td:first-child,
	.cart-info table thead td:first-child,
	.checkout-product table thead td:first-child,
	.table thead td:first-child {
	    -moz-border-radius: 2px 0 0 0;
	    -webkit-border-radius: 2px 0 0 0;
	    border-radius: 2px 0 0 0;
	}
	
	table.attribute thead td:last-child,
	table.list thead td:last-child,
	.wishlist-product table thead td:last-child,
	.wishlist-info table thead td:last-child,
	.compare-info thead td:last-child,
	.cart-info table thead td:last-child,
	.checkout-product table thead td:last-child,
	.table thead td:last-child {
	    -moz-border-radius: 0 2px 0 0;
	    -webkit-border-radius: 0 2px 0 0;
	    border-radius: 0 2px 0 0;
	}
	
	table.attribute thead td:only-child,
	table.list thead td:only-child,
	.wishlist-product table thead td:only-child,
	.wishlist-info table thead td:only-child,
	.compare-info thead td:only-child,
	.cart-info table thead td:only-child,
	.checkout-product table thead td:only-child,
	.table thead td:only-child {
	    -moz-border-radius: 2px 2px 0 0;
	    -webkit-border-radius: 2px 2px 0 0;
	    border-radius: 2px 2px 0 0;
	}
	
	table.attribute tr:last-child td:first-child,
	table.list tr:last-child td:first-child,
	.wishlist-product table tr:last-child td:first-child,
	.wishlist-info table tr:last-child td:first-child,
	.compare-info tr:last-child td:first-child,
	.cart-info table tr:last-child td:first-child,
	.checkout-product table tr:last-child td:first-child,
	.table tr:last-child td:first-child {
	    -moz-border-radius: 0 0 0 2px;
	    -webkit-border-radius: 0 0 0 2px;
	    border-radius: 0 0 0 2px;
	}
	
	table.attribute tr:last-child td:last-child,
	table.list tr:last-child td:last-child,
	.wishlist-product table tr:last-child td:last-child,
	.wishlist-info table tr:last-child td:last-child,
	.compare-info tr:last-child td:last-child,
	.cart-info table tr:last-child td:last-child,
	.checkout-product table tr:last-child td:last-child,
	.table tr:last-child td:last-child {
	    -moz-border-radius: 0 0 2px 0;
	    -webkit-border-radius: 0 0 2px 0;
	    border-radius: 0 0 2px 0;
	} 
	
/* Wishlist info */

.wishlist-info table td {
	vertical-align: middle;
	text-align: center;
}
	
/* Cart info */

.cart-info table td {
	vertical-align: middle;
	text-align: center;
}
	
/* Price Compare */
	
.compare-info .price-new {
	color: #FF4945;
}

	.compare-info .price-old {
		color: #808080;
		text-decoration: line-through;
		padding-right: 2px;
	}
	
/* Cart Module */

.cart-module { 
	border-bottom: 1px solid #e5e5e5; 
	margin: 0px 0px 22px 0px;
	position: relative;
}
	
	.cart-module > div { 
		padding:20px !important;
		margin:0px 0px 20px 0px;
		background:#fff;
		border: 1px solid #e5e5e5;
		border-radius: 2px;
		-moz-border-radius: 2px;
		-webkit-border-radius: 2px;
		box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.15);
		-moz-box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.15);
		-webkit-box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.15);
	}
	
		.cart-module > div:before {
		  position: absolute;
		  top: -8px;
		  left: 9px;
		  display: inline-block;
		  border-right: 9px solid transparent;
		  border-bottom: 9px solid #ccc;
		  border-left: 9px solid transparent;
		  border-bottom-color: #e5e5e5;
		  content: '';
		}
		
		.cart-module > div:after {
		  position: absolute;
		  top: -7px;
		  left: 10px;
		  display: inline-block;
		  border-right: 8px solid transparent;
		  border-bottom: 8px solid #ffffff;
		  border-left: 8px solid transparent;
		  content: '';
		}
		
		.cart-module table {
			margin: 0px 0px 10px 0px;
		}
		
			.cart-module table td {
				padding: 0px 20px 3px 0px;
			}
			
			.cart-module input[type=text],
			.cart-module select {
				margin: 5px 5px 5px 10px;
			}
			
/* Table img */

table img {
	max-width: none;
}
	
/* Cart Total */

.cart-total { 
	overflow: auto;
	margin-bottom: 10px; 
	padding-top: 10px;
}

	.cart-total table { 
		float: right; 
	}
	
		.cart-total td {
			padding: 0px 0px 0px 10px;
			text-align: right;
		}
		
		.cart-total table tr td:last-child { 
			color: #FF4945;
		}
	
/* Download List, Orders */
 
.download-list,
.order-list { 
	overflow:auto; 
}

	.download-list .download-id,
	.order-list .order-id { 
		width: 49%;
		float: left;
		margin-bottom: 2px; 
	}
	
	.download-list .download-status,
	.order-list .order-status { 
		width: 49%;
		float: right;
		text-align: right;
		margin-bottom: 2px; 
	}
	
	.download-list .download-content,
	.order-list .order-content { 
		padding: 10px 0px;
		display: inline-block;
		width: 100%;
		margin-bottom: 20px;
		border-top: 1px solid #e5e5e5;
		border-bottom: 1px solid #e5e5e5; 
	}
	
	.download-list .download-content div,
	.order-list .order-content div { 
		float: left;
		width: 33.3%; 
	}
	
	.download-list .download-info,
	.order-list .order-info { 
		text-align: right; 
	}
	
/* manufacturer */

.manufacturer-list { 
	border: 1px solid #e5e5e5;
	border-radius:         2px;
	-moz-border-radius:    2px;
	-webkit-border-radius: 2px;
	padding: 0px;
	overflow: auto;
	margin-bottom:20px; 
	background: #fff;
}

	.manufacturer-heading { 
		background: #f7f7f7;
		border-bottom: 1px solid #e6e6e6;
		padding: 15px; 
		font-weight: 400;
		text-transform: uppercase;
		font-size: 14px;
	}
	
	.manufacturer-content { 
		padding: 15px;
		overflow:auto; 
	}
	
	.manufacturer-list ul { 
		float: left;
		width: 25%;
		margin: 0 0 0 20px;
		padding: 0;
	}
	
/* checkout */

.center-column .panel { 
	position:relative;
	margin: 0px 0px 20px 0px;
}

	.center-column .panel-heading { 
		border-radius:2px;
		-moz-border-radius:2px;
		-webkit-border-radius:2px;
		background: #f7f7f7;
		border: 1px solid #e5e5e5;
		padding: 15px;
	}
		
		.center-column .panel-heading h4 {
			padding: 0px;
			margin: 0px;
			font-size: 14px !important;
			font-weight: 400;
			text-transform: uppercase;
		}

	.center-column .panel-body { 
		border-radius:0px 0px 2px 2px;
		-moz-border-radius:0px 0px 2px 2px;
		-webkit-border-radius:0px 0px 2px 2px;
		position:relative;
		border: 1px solid #e6e6e6;
		background: #fff;
		padding:20px; 
		position: relative;
		margin-top: -1px;
	}
	
		.center-column .panel-body .buttons {
			margin: 0px;
		}
	
 /* returns */
 
.return-list { 
}

	.return-list .return-id { 
		width: 49%;
		float: left;
		margin-bottom: 2px; 
	}
	
	.return-list .return-status { 
		width: 49%;
		float: right;
		text-align: right;
		margin-bottom: 2px; 
	}
	
	.return-list .return-content { 
		padding: 10px 0px;
		display: inline-block;
		width: 100%;
		margin-bottom: 20px;
		border-top: 1px solid #e5e5e5;
		border-bottom: 1px solid #e5e5e5; 
	}
	
	.return-list .return-content div { 
		float: left;
		width: 33.3%; 
	}
	
	.return-list .return-info { 
		text-align: right; 
	}

.return-product { 
	overflow: auto;
	margin-top: 10px;
	margin-bottom: 20px; 
}

.return-detail { 
}

	.return-opened textarea { 
		width: 100%;
	}
	
/* Scroll up */

.scrollup {
    width: 35px;
    height: 35px;
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
	background: #fff;
	border: 1px solid #e6e6e6;
	font-size: 16px;
	padding: 4px 0px 0px 0px;
	text-align: center;
	transition: background-color 0.4s;
	-webkit-transition: background-color 0.4s;
	-moz-transition: background-color 0.4s;
	border-radius:        4px;
	-moz-border-radius:   4px;
	-webkit-border-radius:4px;
}

	.scrollup:hover {
		background: #fafafa;
	}

	@media (max-width: 960px) {
		.scrollup {
			display: none !important;
		}
	}
	
/* Banner */

.banner {
	text-align: center;
	width: 100%;
	margin: 20px 0px 0px 0px;
}

	.banner img.with-link {
		cursor: pointer;
	}

/* Filter */

ul.box-filter {
	list-style: none;
	margin: 0px;
	padding: 0px 0px 5px 0px;
}
	
	ul.box-filter > li {
		padding: 0px 0px 15px 0px;
	}
	
		ul.box-filter > li > span {
			font-weight: bold;
		}
		
	ul.box-filter ul {
		list-style: none;
		padding: 0px;
	}

/*  Facebook Widget  */

.facebook_left {
    width: 250px;
    position: fixed;
	left: -250px;
	top: 151px;	
	z-index: 999;
}

.facebook_right {
    width: 250px;
    position: fixed;
	right: -250px;
	top: 151px;
	z-index: 999;
}	

	.facebook_left .facebook-icon,
	.facebook_right .facebook-icon {
		height: 50px;
	    width: 50px;
		right: -50px;
	    background: url(../img/facebook-icon.png) no-repeat;
		cursor: pointer;	
		position: absolute;	
	    z-index: 999;	
	}
	
	.facebook_right .facebook-icon {
		left: -50px;
		right: auto;
	}

	.facebook_right .facebook-content,
	.facebook_left .facebook-content {
	    background-color: #FFFFFF;
		border: 4px solid #4b6baf;
		position: relative;
	    z-index: 999;		
	}

/*  Twitter Widget  */

.twitter_left {
    width: 250px;
    position: fixed;
	left: -250px;
	top: 151px;	
	z-index: 998;
}

.twitter_right {
    width: 250px;
    position: fixed;
	right: -250px;
	top: 151px;
	z-index: 998;
}

	.facebook_right + .twitter_right,
	.facebook_left + .twitter_left {
		top: 211px;
	}
	
	.twitter_left .twitter-icon,
	.twitter_right .twitter-icon {
		height: 50px;
	    width: 50px;
		right: -50px;
	    background: url(../img/twitter-icon.png) no-repeat;
		cursor: pointer;	
		position: absolute;	
	    z-index: 998;	
	}
	
	.twitter_right .twitter-icon {
		left: -50px;
		right: auto;
	}
	
	.twitter_right .twitter-content,
	.twitter_left .twitter-content {
	    background-color: #FFFFFF;
		border: 4px solid #36a7e5;
		position: relative;
	    z-index: 998;		
	}
	
/*  Custom Widget  */

.custom_left {
    width: 250px;
    position: fixed;
	left: -250px;
	top: 151px;	
	z-index: 996;
}

.custom_right {
    width: 250px;
    position: fixed;
	right: -250px;
	top: 151px;
	z-index: 996;
}

	.facebook_right + .twitter_right + .custom_right,
	.facebook_left + .twitter_left + .custom_left {
		top: 271px;
	}
	
	.facebook_right + .custom_right,
	.twitter_right + .custom_right,
	.twitter_left + .custom_left,
	.facebook_left + .custom_left {
		top: 211px;
	}
	
	.custom_left .custom-icon,
	.custom_right .custom-icon {
		height: 50px;
	    width: 50px;
		right: -50px;
	    background: url(../img/custom-icon.png) no-repeat;
		cursor: pointer;	
		position: absolute;	
	    z-index: 996;	
	}
	
		.custom_left .custom-icon {
			background: url(../img/custom-icon-right.png) no-repeat;
		}
	
	.custom_right .custom-icon {
		left: -50px;
		right: auto;
	}
	
	.custom_right .custom-content,
	.custom_left .custom-content {
	    background-color: #FFFFFF;
		border: 4px solid #ea2e49;
		position: relative;
	    z-index: 996;	
	    padding: 10px;	
	}
	
/* Opencart 2.0 */

.picker-switch .btn {
	background: none !important;
	color: #808080 !important;
	text-shadow: none !important;
	-webkit-text-shadow: none !important;
	-moz-text-shadow: none !important;
}

.timepicker-picker .btn {
	background: none !important;
	color: #808080 !important;
	text-shadow: none !important;
	-webkit-text-shadow: none !important;
	-moz-text-shadow: none !important;
}

div.required .control-label:before {
	content: '* ';
	color: #F00;
	font-weight: bold;
}

/* Testimonials */

div.testimonial {
	padding: 5px 0px 0px 0px;
}

	div.testimonial .avatar {
		float: left;
		width: auto;
		padding: 5px 30px 10px 0px;
		background: #fff;
	}
	
		div.testimonial .avatar img {
			border: 1px solid #e5e5e5;
			border-radius:         2px;
			-webkit-border-radius: 2px;
			-moz-border-radius:    2px;
		}
		
	div.testimonial .description {
		font-size: 16px;
	}
	
		div.testimonial .description p {
			border-bottom: 1px solid #e5e5e5;
			padding: 0px 0px 21px 0px;
			margin: 0px;
			line-height: 1.5;
		}
	
		div.testimonial .description .author {
			font-size: 18px;
			float: right;
			background: #fff;
			position: relative;
			margin-top: -20px;
			padding-left: 15px;
			font-style: italic;
		}
		
			div.testimonial .description .author strong {
				color: #0b486b;
				padding-right: 5px;
			}
			
			
			 #top .pattern{background-color: #084D9B; /*background-image: url(23-2019.png);*/}
			#top-bar .pattern{background:#1E233F;}
			.cart-heading p span{ color:#fff;}
			.myacc{ background:url(../img/myacc.png) no-repeat 0px;}
			.shopcart{ background:url(../img/shop_cart.png) no-repeat 0px;}
				.heart{ background:url(../img/heart.png) no-repeat 0px;}
				.check_ic{ background:url(../img/checkout_ic.png) no-repeat 0px;}
				.last{ border-right:0 !important;}
				.custom-footer .pattern{ background:url(../img/slide2.jpg) 0 -354px no-repeat;}
				.custom-footer .col-sm-3{background: rgba(0,0,0,0.2);
border-radius: 10px;
padding: 10px;width: 23%;
margin-right: 20px;
min-height: 350px;}
.bg-filter-tabs2{margin: auto;
text-align: center;
width: 325px; background:url(../img/dot_line.png) -8px bottom no-repeat;}
.latest ul li{float:left; max-width:259px; width:100%; margin:0 7px; list-style:none;}
.latest ul{ margin:0; padding:0;}
.latest ul li img{width:100%; height:175px;}
.latest ul li span{ width:100%; float:left; font-weight:bold;}
.ftr_btm li{float:left; max-width:265px; width:100%; margin:0 7px; list-style:none; padding-left:75px;}
.ftr_btm{
margin: 0;
border-top: 1px solid #ddd;
border-bottom: 1px solid #ddd;
padding: 15px 0 !important;
width: 100%;
float: left;
background-color: #f1f1f1;
border-radius: 300px;
margin-bottom:15px !important;
}

.ftr_btm h2{margin-top: 0;
font-weight: bold;
font-size: 17px;}
.custom-footer .col-sm-6{width: 45%;
background: #fff;
margin-right:50px;
min-height: 292px;
padding: 15px;
color: #333; border-top:4px solid #FF4945; display:inline-block;}
.footer .strip-line{ display:none;}
.care{ background:url(../img/care.png) 15px no-repeat;}

.back{ background:url(../img/back.png) 15px no-repeat;}

.gift{ background:url(../img/gift.png) 15px no-repeat;}
.free{ background:url(../img/shipping.png) 15px no-repeat;}
.latest h3{font-size: 22px;
border-bottom: 1px solid #ddd;
padding-bottom: 5px;
margin-bottom: 20px;
float: left;
width: 100%;
}
.logos li{ list-style:none; display:inline-block; margin:0 12px;}
ul.logos{ margin:0; padding:0;}
.wish{ background: RGBA(255, 255, 255, 0);}
.comp{ background: RGBA(255, 255, 255, 0);}
.links .wish{ background: RGBA(255, 255, 255, 0);) 0px no-repeat; padding-left:10px;}
.links .comp{ background: RGBA(255, 255, 255, 0);) 0px no-repeat; padding-left:10px;}
.sub-menu .menu li a{ text-transform:uppercase; color: WHITE; border-bottom: 1px solid #999999;}


.footer .footer-panel li{ list-style:disc; margin-left:17px;}
.product-hover .only-hover a span{background: url(../img/shop_cart.png) 1px no-repeat;
display: block;
padding-left: 23px;}
.add-to-cart input#button-cart{background: url(../img/shop_cart.png) 14px 10px no-repeat #084d9b;
display: inline-block;
padding-left: 35px;}
.product-list .add-to-cart > a, .product-list .add-to-cart > a:hover{background: url(../img/shop_cart.png) 14px 10px no-repeat #084d9b;padding-left:36px;}
.dropdown-menu .checkout a{ color:#fff !important;}
 @media all and (min-width: 480px) and (max-width: 767px) {
	 
	 .bg-filter-tabs2{ background:none;}
.ftr_btm{ border-radius:0 !important;}
body{ overflow-x:hidden;}
		
		.custom-footer .col-sm-6{ width:100%;}
		#top-bar .pattern {
background: #1E233F;
}
.product-info .thumbnails li img{ height:auto;}
	 
}
	 
	@media all and (max-width: 479px) {
		
		 .bg-filter-tabs2{ background:none;}
		 .product-hover .only-hover a span{ background:none; padding-left:0;}
		  .ftr_btm{ border-radius:0 !important;}
		  body{ overflow-x:hidden;}
		  .custom-footer .col-sm-6{ width:100%;}
		  .product-grid .product .image .quickview a{ padding:7px 10px;}
		  #top-bar .pattern {
background: #1E233F;
}
.product-info .thumbnails li img{ height:auto;}

		
}
@media all and (min-width: 768px) and (max-width: 1199px) {
	
		  body{ overflow-x:hidden;}
		  .custom-footer .col-sm-6{ margin-right:30PX;}
		  .comp, .wish{ background:transparent;}
	
	}
.banner_ar li{ display:inline-block; list-style:none; margin-right:10px;}
ul.banner_ar{ margin:0; padding:0;}
.box-categories .box-heading{text-transform:uppercase;background-color: #084D9B;color: #fff;}

   
 .rejim_budni {
    padding: 1px;
    background: #084d9b none repeat scroll 0% 0%;
    margin: 0px auto 0px 24px;
    width: 33%;
    opacity: 0.7;
    text-align: center;
    color: #FFF;
    float: left;
    margin-top: 5px;
}

   .rejim_vremya {
    background: #084d9b none repeat scroll 0% 0%;
    margin: 0px 27px 0px auto;
    width: 33%;
    opacity: 0.7;
    text-align: center;
    color: #FFF;
    float: right;
    padding: 12px 1px 11px;
    margin-top: 5px;
}

 .rejim_budni1 {
    /*padding: 1px;*/
    background: #084d9b none repeat scroll 0% 0%;
    margin: 8px 0px 0px 24px;
    width: 33%;
    opacity: 0.7;
    text-align: center;
    color: #FFF;
    float: left;
}

   .rejim_vremya1 {
    background: #084d9b none repeat scroll 0% 0%;
    margin: 0px 27px 0px auto;
    width: 33%;
    opacity: 0.7;
    text-align: center;
    color: #FFF;
    float: right;
    padding: 1px 1px 1px;
    margin-top: 5px;
}

 .rejim_budni2 {
    padding: 1px 1px 1px;
    background: #084d9b none repeat scroll 0% 0%;
    margin: 0px auto 0px 24px;
    width: 33%;
    opacity: 0.7;
    text-align: center;
    color: #FFF;
    float: left;
    margin-top: 5px;
    margin-bottom:5px;
}

   .rejim_vremya2 {
    background: #084d9b none repeat scroll 0% 0%;
    margin: 0px 27px 0px auto;
    width: 33%;
    opacity: 0.7;
    text-align: center;
    color: #FFF;
    float: right;
    padding: 1px 1px 1px;
    margin-top: 5px;
    margin-bottom:5px;
}
.zvonok {								
font-size: 22px;
font-weight: bold;
color: #EEF5FC;
font-family: Schlange,Helvetica,Arial,sans-serif;
text-align: center;
}
.contacts {
    color: #B7D2FB;
    text-decoration: none;
    font-size: 14px;
    text-align: center;
    margin-left: 60px;
    margin-right: 60px;
    
}

ul#karta {

color: #fff;
margin: 0;
padding: 0.3em 0em;
}


ul#karta li {
display: inline;
margin: 0.1em 1em;
position: relative;
}

ul#karta h2, ul#menu h3 {
font-size: 100%;
font-weight: normal;
display: inline;
}


ul#karta li a {
color: #fff;
text-decoration: none;
padding: 0 0.4em;
}

ul#karta li a:hover {
text-decoration: underline;
}

ul#karta li.mega a {
background: transparent url(arrow.gif) center right no-repeat;
padding: 0 1.2em;
}

ul#karta li.mega a:hover {
text-decoration: underline;
}

ul#karta div {
display: none;
}

ul#karta li.mega div {
border: 1px solid #dda;
width: 500px;
position: absolute;
top: 1.6em;
background: #ffc;
color: #930;
z-index: 1000;
}

ul#karta li.hovering div {
display: block;
}

ul#karta li.mega div a {
color: #300;
padding: 0;
background-image: none;
text-decoration: underline;
}

ul#karta li div a.more {
color: #390;
font-weight: bold;
}


ul#karta div h3 {
color: #f70;
font-weight: bold;
font-size: 1.1em;
}
ul#karta div p {
margin: 0 0 0.8em 0;
padding: 0;
}

#aside1 {
    position: fixed;
    z-index: 101;
    bottom: 165px;
    margin-left: -10px;
}
aside {
    display: block;
    
}
.containerchackout {
    padding-right: 70px;
    padding-left: 70px;
    margin-right: auto;
    margin-left: auto;
    max-width: 1170px;
}
.panel-body {
    border-radius: 0px 0px 2px 2px;
    border: 1px solid #C6C1C1;
    background: #FFF none repeat scroll 0% 0%;
    position: relative;
    margin-top: -1px;
    padding-left: 20px;
    padding-bottom: 20px;
 }
 
 
 .stroka123 {
    background: #FFF;
}
.vxod {
background: #FFF;
height: 34px;
line-height: 34px;
padding: 0px 10px;
margin-right: 10px;
border-radius: 5px;
font-size: 16px;
}


.switch { 
 position: relative;
 height: 56px;
 width: 350px;
 margin: 20px auto;
 background: #DEEEFC; 
 border-radius: 3px; -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3), 0 1px rgba(255, 255, 255, 0.1);
  }
 
.switch-label { 
 position: relative; 
 z-index: 2; 
 float: left; 
 width: 147px;
 line-height: 26px;
 font-size: 15px;
 color: #1581CF; 
 text-align: center; 
 text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.72);
 cursor: pointer;
 padding-top: 13px;
 margin-left: 27px;
  } 
 
.switch-label:active {
 font-weight: bold; }
  
.switch-label-off {
 padding-left: 2px;
 height: 52px;
 margin-left: 10px; } 
 
.switch-label-on 
 { padding-right: 2px;
  height: 52px;} 
 /* * Note: using adjacent or general sibling selectors combined with * pseudo classes doesn't work in Safari 5.0 and Chrome 12. * See this article for more info and a potential fix: * http://css-tricks.com/webkit-sibling-bug/ */ 
.switch-input { 
 display: none; } 
.switch-input:checked + .switch-label {
 font-weight: bold;
 color: #FFF; 
 text-shadow: 0 1px rgba(255, 255, 255, 0.25); -webkit-transition: 0.15s ease-out; -moz-transition: 0.15s ease-out; -ms-transition: 0.15s ease-out; -o-transition: 0.15s ease-out; transition: 0.15s ease-out; -webkit-transition-property: color, text-shadow; -moz-transition-property: color, text-shadow; -ms-transition-property: color, text-shadow; -o-transition-property: color, text-shadow; transition-property: color, text-shadow;
 height: 52px; 
 font-size: 17px;
 width: 150px;
 padding-top: 16px;
 line-height: 0.8;
  } 
 
 .switch-input:checked + .switch-label-on ~ .switch-selection { 
  left: 176px; /* Note: left: 50%; doesn't transition in WebKit */ }
   
 .switch-selection { 
 position: absolute; 
 z-index: 1; 
 top: 2px; 
 left: 2px; 
 display: block; 
 width: 172px;
 height: 52px;
 border-radius: 3px; 
 background-color: #1581CF; 
 } 
 
 
 .switch-blue .switch-selection { background-color: #3aa2d0; background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #4fc9ee), color-stop(100%, #3aa2d0)); background-image: -webkit-linear-gradient(top, #4fc9ee, #3aa2d0); background-image: -moz-linear-gradient(top, #4fc9ee, #3aa2d0); background-image: -ms-linear-gradient(top, #4fc9ee, #3aa2d0); background-image: -o-linear-gradient(top, #4fc9ee, #3aa2d0); background-image: linear-gradient(top, #4fc9ee, #3aa2d0); } .switch-yellow .switch-selection { background-color: #c4bb61; background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #e0dd94), color-stop(100%, #c4bb61)); background-image: -webkit-linear-gradient(top, #e0dd94, #c4bb61); background-image: -moz-linear-gradient(top, #e0dd94, #c4bb61); background-image: -ms-linear-gradient(top, #e0dd94, #c4bb61); background-image: -o-linear-gradient(top, #e0dd94, #c4bb61); background-image: linear-gradient(top, #e0dd94, #c4bb61); }
 
	.yellow_win {
    background: #FF4945 none repeat scroll 0% 0%;
    float: left;
    height: 34px;
    line-height: 34px;
    padding: 0px 10px;
    margin-right: 10px;
    border-radius: 5px;
    font-size: 16px;
    color: #FFF;
}
.stroka123 {
    background: #FFF;
}



	.modalDialog {
		position: fixed;
		font-family: Arial, Helvetica, sans-serif;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		background: rgba(70, 70, 71, 0.4) none repeat scroll 0% 0%;
		z-index: 99999;
		-webkit-transition: opacity 400ms ease-in;
		-moz-transition: opacity 400ms ease-in;
		transition: opacity 400ms ease-in;
		display: none;
		pointer-events: none;
	}

	.modalDialog:target {
		display: block;
		pointer-events: auto;
	}

	.modalDialog > div {
		width: 400px;
		position: relative;
		margin: 10% auto;
		padding: 5px 20px 13px 20px;
		border-radius: 10px;
		background: #fff;
		background: -moz-linear-gradient(#fff, #fff);
		background: -webkit-linear-gradient(#fff, #fff);
		background: -o-linear-gradient(#fff, #fff);
		padding-bottom: 30px;
	}

	.close {
	
		color: #fff;
		line-height: 25px;
	
		right: -12px;
	
		top: -10px;
		width: 24px;
		
	
		-webkit-border-radius: 12px;
		-moz-border-radius: 12px;
		border-radius: 12px;
		background-color: RGB(255, 73, 69);
	
	}

	.close:hover { background: #000; }
	
	.close1 {
		background: #AE0303;
		color: #FFFFFF;
		line-height: 25px;
		position: absolute;
		right: -12px;
		text-align: center;
		top: -27px;
		width: 24px;
		text-decoration: none;
		font-weight: bold;
		-webkit-border-radius: 12px;
		-moz-border-radius: 12px;
		border-radius: 12px;
		-moz-box-shadow: 1px 1px 3px #000;
		-webkit-box-shadow: 1px 1px 3px #000;
		box-shadow: 1px 1px 3px #000;
		padding-left: 3px;
	}
	
.chackoutlogin{	
background: #EA4B48 none repeat scroll 0% 0%;
width: 400px;
color: white;
margin-left: -20px;
margin-top: -25px;
border-radius: 10px 10px 0 0;
height: 55px;
margin-bottom: 40px;
padding-top: 1px;
}

.chackoutlogin_text {	
width: 230px;
height: 30px;
margin-left: 88px;
}

.login_alert{
background: #e9e9e9;
color: #080505;
border-radius: 5px;
}


.login_alert_icon{
background: no-repeat url(img_oform/znak.png);
color: white;
width: 20px;
height: 20px;
margin-left: 5px;
}


.login_alert_text{
margin-left: 28px;
margin-top: -20px;
}

.col-md-866{
    width: 66.66666666666666%;
    margin-left: 67px;
}
.col-md-121111 {
    width: 100%;
    background: #084D9B;
    border-radius: 5px;
    padding-right: 10px;
    padding-left: 10px;
    color: white;
    padding-bottom: 5px;
}
.col-md-121111_icon_list{
background: no-repeat url(img_oform/list.png);
color: white;
width: 61px;
height: 51px;
margin-left: 5px;
}	
.col-md-121111_text{
margin-left: 68px;
margin-top: -40px;
font-size: 18pt;
}	

.col-md-121111_icon_dostavka{
background: no-repeat url(img_oform/dostavka.png);
color: white;
width: 61px;
height: 51px;
margin-left: 5px;
}

.payment_zakaz {

width: 165px;
height: 43px;
margin-left: 300px;
}

.slider 
{
	position: relative;
    z-index:0; 
} 

.slider input
{
	display: none;
}
.slider label
{
	bottom: 10px;
	display: inline-block;
	z-index: 2;
	width: 26px;
	height: 27px;
	transition: all 0.1s linear;
	-moz-transition: all 0.1s linear;
	-webkit-transition: all 0.1s linear;
	-o-transition: all 0.1s linear;
	background: #f4f4f5;
	border: 1px solid #e6e6e6;
	border-bottom-color: #bfbfbf;
	border-radius: 4px;
	box-shadow: inset 0 1px 0 #ffffff, 0 1px 2px #000000;
	text-align: center;
	cursor: pointer;
	font: 14px/27px arial, tahoma;
	color: #333;
}
.slider .selector_list
{
	position: absolute;
	bottom: 15px;
	right: 15px;
	z-index: 11;
}
.slider .itemnew
{ 
	width: 80%;
	margin-left: 15%;
	opacity: 1.0;
	transition: opacity 0.0s linear 0.2s;
	-moz-transition: opacity 0.0s linear 0.2s;
	-webkit-transition: opacity 0.0s linear 0.2s;
	-o-transition: opacity 0.0s linear 0.2s;
}

.slider img {
	display:block;
	height: auto;
	width: 100%;
	}

.image-tape:hover .image-tape__itemnew
{
	-moz-animation-play-state: paused;
	-webkit-animation-play-state: paused;
	-o-animation-play-state: paused;
	animation-play-state: paused;
}

.slider .itemnew ~ .itemnew
{
	position: absolute;
	top: 0px;
	left: 0px;
	opacity: 0.0;
}
.slider input:nth-of-type(1):checked ~ .selector_list label:nth-of-type(1),
.slider input:nth-of-type(2):checked ~ .selector_list label:nth-of-type(2),
.slider input:nth-of-type(3):checked ~ .selector_list label:nth-of-type(3),
.slider input:nth-of-type(4):checked ~ .selector_list label:nth-of-type(4),
.slider input:nth-of-type(5):checked ~ .selector_list label:nth-of-type(5),
.slider input:nth-of-type(6):checked ~ .selector_list label:nth-of-type(6),
.slider input:nth-of-type(7):checked ~ .selector_list label:nth-of-type(7),
.slider input:nth-of-type(8):checked ~ .selector_list label:nth-of-type(8),
.slider input:nth-of-type(9):checked ~ .selector_list label:nth-of-type(9)
{
	color: #fff;
}
.slider input:nth-of-type(1):checked ~ .itemnew:nth-of-type(1),
.slider input:nth-of-type(2):checked ~ .itemnew:nth-of-type(2),
.slider input:nth-of-type(3):checked ~ .itemnew:nth-of-type(3),
.slider input:nth-of-type(4):checked ~ .itemnew:nth-of-type(4),
.slider input:nth-of-type(5):checked ~ .itemnew:nth-of-type(5),
.slider input:nth-of-type(6):checked ~ .itemnew:nth-of-type(6),
.slider input:nth-of-type(7):checked ~ .itemnew:nth-of-type(7),
.slider input:nth-of-type(8):checked ~ .itemnew:nth-of-type(8),
.slider input:nth-of-type(9):checked ~ .itemnew:nth-of-type(9)
{
	opacity: 1.0;
	transition: opacity 0.2s linear;
	-moz-transition: opacity 0.2s linear;
	-webkit-transition: opacity 0.2s linear;
	-o-transition: opacity 0.2s linear;
	z-index: 6;
}

/* авторотация слайдов */
@keyframes itemnew-autoplay_count_2 {0%{opacity:0;}20%{opacity:1;}50%{opacity:1;}70%{opacity:0;}100%{opacity:0;}}
@keyframes itemnew-autoplay_count_3 {0%{opacity:0;}10%{opacity:1;}33% {opacity:1;}43% {opacity:0;}100%{opacity:0;}}
@keyframes itemnew-autoplay_count_4 {0%{opacity:0;}8% {opacity:1;}25% {opacity:1;}33% {opacity:0;}100%{opacity:0;}}
@keyframes itemnew-autoplay_count_5 {0%{opacity:0;}7% {opacity:1;}20%{opacity:1;}27% {opacity:0;}100%{opacity:0;}}
@keyframes itemnew-autoplay_count_6 {0%{opacity:0;}6% {opacity:1;}15%{opacity:1;}27% {opacity:0;}100%{opacity:0;}}
@keyframes itemnew-autoplay_count_7 {0%{opacity:0;}5% {opacity:1;}10%{opacity:1;}27% {opacity:0;}100%{opacity:0;}}
@keyframes itemnew-autoplay_count_8 {0%{opacity:0;}5% {opacity:1;}10%{opacity:1;}27% {opacity:0;}100%{opacity:0;}}
@keyframes itemnew-autoplay_count_9 {0%{opacity:0;}5% {opacity:1;}10%{opacity:1;}27% {opacity:0;}100%{opacity:0;}}

@-moz-keyframes itemnew-autoplay_count_2 {0%{opacity:0;}20%{opacity:1;}50%{opacity:1;}70%{opacity:0;}100%{opacity:0;}}
@-moz-keyframes itemnew-autoplay_count_3 {0%{opacity:0;}10%{opacity:1;}33% {opacity:1;}43% {opacity:0;}100%{opacity:0;}}
@-moz-keyframes itemnew-autoplay_count_4 {0%{opacity:0;}8% {opacity:1;}25% {opacity:1;}33% {opacity:0;}100%{opacity:0;}}
@-moz-keyframes itemnew-autoplay_count_5 {0%{opacity:0;}7% {opacity:1;}20%{opacity:1;}27% {opacity:0;}100%{opacity:0;}}
@-moz-keyframes itemnew-autoplay_count_6 {0%{opacity:0;}6% {opacity:1;}15%{opacity:1;}27% {opacity:0;}100%{opacity:0;}}
@-moz-keyframes itemnew-autoplay_count_7 {0%{opacity:0;}5% {opacity:1;}10%{opacity:1;}27% {opacity:0;}100%{opacity:0;}}
@-moz-keyframes itemnew-autoplay_count_8 {0%{opacity:0;}5% {opacity:1;}10%{opacity:1;}27% {opacity:0;}100%{opacity:0;}}
@-moz-keyframes itemnew-autoplay_count_9 {0%{opacity:0;}5% {opacity:1;}10%{opacity:1;}27% {opacity:0;}100%{opacity:0;}}

@-webkit-keyframes itemnew-autoplay_count_2 {0%{opacity:0;}20%{opacity:1;}50%{opacity:1;}70%{opacity:0;}100%{opacity:0;}}
@-webkit-keyframes itemnew-autoplay_count_3 {0%{opacity:0;}10%{opacity:1;}33% {opacity:1;}43% {opacity:0;}100%{opacity:0;}}
@-webkit-keyframes itemnew-autoplay_count_4 {0%{opacity:0;}8% {opacity:1;}25% {opacity:1;}33% {opacity:0;}100%{opacity:0;}}
@-webkit-keyframes itemnew-autoplay_count_5 {0%{opacity:0;}7% {opacity:1;}20%{opacity:1;}27% {opacity:0;}100%{opacity:0;}}
@-webkit-keyframes itemnew-autoplay_count_6 {0%{opacity:0;}6% {opacity:1;}15%{opacity:1;}27% {opacity:0;}100%{opacity:0;}}
@-webkit-keyframes itemnew-autoplay_count_7 {0%{opacity:0;}5% {opacity:1;}10%{opacity:1;}27% {opacity:0;}100%{opacity:0;}}
@-webkit-keyframes itemnew-autoplay_count_8 {0%{opacity:0;}5% {opacity:1;}10%{opacity:1;}27% {opacity:0;}100%{opacity:0;}}
@-webkit-keyframes itemnew-autoplay_count_9 {0%{opacity:0;}5% {opacity:1;}10%{opacity:1;}27% {opacity:0;}100%{opacity:0;}}

@-o-keyframes itemnew-autoplay_count_2 {0%{opacity:0;}20%{opacity:1;}50%{opacity:1;}70%{opacity:0;}100%{opacity:0;}}
@-o-keyframes itemnew-autoplay_count_3 {0%{opacity:0;}10%{opacity:1;}33% {opacity:1;}43% {opacity:0;}100%{opacity:0;}}
@-o-keyframes itemnew-autoplay_count_4 {0%{opacity:0;}8% {opacity:1;}25% {opacity:1;}33% {opacity:0;}100%{opacity:0;}}
@-o-keyframes itemnew-autoplay_count_5 {0%{opacity:0;}7% {opacity:1;}20%{opacity:1;}27% {opacity:0;}100%{opacity:0;}}
@-o-keyframes itemnew-autoplay_count_6 {0%{opacity:0;}6% {opacity:1;}15%{opacity:1;}27% {opacity:0;}100%{opacity:0;}}
@-o-keyframes itemnew-autoplay_count_7 {0%{opacity:0;}5% {opacity:1;}10%{opacity:1;}27% {opacity:0;}100%{opacity:0;}}
@-o-keyframes itemnew-autoplay_count_8 {0%{opacity:0;}5% {opacity:1;}10%{opacity:1;}27% {opacity:0;}100%{opacity:0;}}
@-o-keyframes itemnew-autoplay_count_9 {0%{opacity:0;}5% {opacity:1;}10%{opacity:1;}27% {opacity:0;}100%{opacity:0;}}

.slider.slider_count_2 .itemnew
{
	animation: itemnew-autoplay_count_2 10s infinite;
	-moz-animation: itemnew-autoplay_count_2 10s infinite;
	-webkit-animation: itemnew-autoplay_count_2 10s infinite;
	-o-animation: itemnew-autoplay_count_2 10s infinite;
}
.slider.slider_count_3 .itemnew
{
	animation: itemnew-autoplay_count_3 15s infinite;
	-moz-animation: itemnew-autoplay_count_3 15s infinite;
	-webkit-animation: itemnew-autoplay_count_3 15s infinite;
	-o-animation: itemnew-autoplay_count_3 15s infinite;
}
.slider.slider_count_4 .itemnew
{
	animation: itemnew-autoplay_count_4 20s infinite;
	-moz-animation: itemnew-autoplay_count_4 20s infinite;
	-webkit-animation: itemnew-autoplay_count_4 20s infinite;
	-o-animation: itemnew-autoplay_count_4 20s infinite;
}
.slider.slider_count_5 .itemnew
{
	animation: itemnew-autoplay_count_5 25s infinite;
	-moz-animation: itemnew-autoplay_count_5 25s infinite;
	-webkit-animation: itemnew-autoplay_count_5 25s infinite;
	-o-animation: itemnew-autoplay_count_5 25s infinite;
}
.slider.slider_count_6 .itemnew
{
	animation: itemnew-autoplay_count_6 30s infinite;
	-moz-animation: itemnew-autoplay_count_6 30s infinite;
	-webkit-animation: itemnew-autoplay_count_6 30s infinite;
	-o-animation: itemnew-autoplay_count_6 30s infinite;
}
.slider.slider_count_7 .itemnew
{
	animation: itemnew-autoplay_count_7 35s infinite;
	-moz-animation: itemnew-autoplay_count_7 35s infinite;
	-webkit-animation: itemnew-autoplay_count_7 35s infinite;
	-o-animation: itemnew-autoplay_count_7 35s infinite;
}
.slider.slider_count_8 .itemnew
{
	animation: itemnew-autoplay_count_8 40s infinite;
	-moz-animation: itemnew-autoplay_count_8 40s infinite;
	-webkit-animation: itemnew-autoplay_count_8 40s infinite;
	-o-animation: itemnew-autoplay_count_8 40s infinite;
}
.slider.slider_count_9 .itemnew
{
	animation: itemnew-autoplay_count_9 45s infinite;
	-moz-animation: itemnew-autoplay_count_9 45s infinite;
	-webkit-animation: itemnew-autoplay_count_9 45s infinite;
	-o-animation: itemnew-autoplay_count_9 45s infinite;
}
.slider .itemnew:nth-of-type(2) {

	animation-delay:5s;-moz-animation-delay:5s;
	-webkit-animation-delay:5s;-o-animation-delay:5s;
}
.slider .itemnew:nth-of-type(3) {
	animation-delay:10s;
	-moz-animation-delay:10s;
	-webkit-animation-delay:10s;
	-o-animation-delay:10s;
}
.slider .itemnew:nth-of-type(4){
	animation-delay:15s;
	-moz-animation-delay:15s;
	-webkit-animation-delay:15s;
	-o-animation-delay:15s;
}
.slider .itemnew:nth-of-type(5){ 
	animation-delay:20s;
	-moz-animation-delay:20s;
	-webkit-animation-delay:20s;
	-o-animation-delay:20s;
}
.slider .itemnew:nth-of-type(6){ 
	animation-delay:25s;
	-moz-animation-delay:25s;
	-webkit-animation-delay:25s;
	-o-animation-delay:20s;
}
.slider .itemnew:nth-of-type(7){ 
	animation-delay:30s;
	-moz-animation-delay:30s;
	-webkit-animation-delay:30s;
	-o-animation-delay:30s;
}
.slider .itemnew:nth-of-type(8){ 
	animation-delay:35s;
	-moz-animation-delay:35s;
	-webkit-animation-delay:35s;
	-o-animation-delay:35s;
}
.slider .itemnew:nth-of-type(9){ 
	animation-delay:40s;
	-moz-animation-delay:40s;
	-webkit-animation-delay:40s;
	-o-animation-delay:40s;
}

.slider input:checked ~ .itemnew
{
	animation: none;
	-moz-animation: none;
	-webkit-animation: none;
	-o-animation: none;
}
    

.slider label:hover
{
	background: #dfdfdf;
}
.slider input:nth-of-type(1):checked ~ .selector_list label:nth-of-type(1),
.slider input:nth-of-type(2):checked ~ .selector_list label:nth-of-type(2),
.slider input:nth-of-type(3):checked ~ .selector_list label:nth-of-type(3),
.slider input:nth-of-type(4):checked ~ .selector_list label:nth-of-type(4),
.slider input:nth-of-type(5):checked ~ .selector_list label:nth-of-type(5),
.slider input:nth-of-type(6):checked ~ .selector_list label:nth-of-type(6),
.slider input:nth-of-type(7):checked ~ .selector_list label:nth-of-type(7),
.slider input:nth-of-type(8):checked ~ .selector_list label:nth-of-type(8),
.slider input:nth-of-type(9):checked ~ .selector_list label:nth-of-type(9)
{
	background: #ac2827;
}

