------------- Common-CSS----------------*/

body { font-family: 'Open Sans', sans-serif; color: #555; font-size: 14px; font-weight: 300; }
li { list-style: none;}
a:hover { text-decoration: none; }

/*Headers*/
h1,h2,h3,h4,h5,h6 { font-family: 'Yanone Kaffeesatz', sans-serif;color: #555}

h1 { font-size: 50px; }
h2 { font-size: 40px; }
h3 { font-size: 35px; }
h4 { font-size: 30px; }
h5 { font-size: 25px; }
h6 { font-size: 20px; }
ul {padding-left: 0;}
/*Add space between sections*/
section+section { margin-top: 50px; }

.block-heading {
	background-image: url("../images/titleBorder.png");
	background-repeat: repeat-x;
	height: 20px;
	margin: 60px 0;
	text-align: center;
}

.block-heading h2 {
	background: #fff;
	display: inline-block;
	color: #000;
	margin-top: -28px;
	padding: 5px 30px 10px 30px;
	border: 1px solid #dedede;
}
.block-heading h2:hover {
	box-shadow: 0 0 5px #dedede;
}
#back-top {
	position: fixed;
	bottom: 30px;
	width: 40px;
	color: #bbb;
	height: 50px;
	right: 30px;
	display: block;
	text-align: center;
	background: url("../images/top.png") no-repeat;
}


/*------------- Top bar----------------*/
#top {
	width: 100%;
	background: #3376B5;
	font-size: 12px;
	color: #fff;
	padding: 18px 0 2px 0;

}
#top .contact-action { margin-bottom: 0; }
#top p i {
	font-size: 16px;
	margin-right: 10px;
}
#top .login-cart li {
	float: left;
}
#top .login-cart li a {
	color: #fff ;
	padding: 0 15px;
	font-size: 14px;
	-webkit-transition: .4s ease-in-out;
	-moz-transition: .4s ease-in-out;
	-ms-transition: .4s ease-in-out;
	-o-transition: .4s ease-in-out;
	transition: .4s ease-in-out;
}
#top .login-cart li a:hover {
	color: #555;
}
#top .login-cart li a i {
	margin-right: 3px;
}
header {
	padding: 40px 0;
	text-align: center;
}

/*	Search Box Start
    ==================================================*/

.search-box input {
	outline: none;
	border:none;
	font-size: 12px;
	padding: 5px;
	height: 25px;
}
.search-box button {
	height: 25px;
	background: url("../images/search.png") no-repeat;
	background-color: #fff;
	padding:10px 16px;
	background-position: 8px;
	border: 0;
	outline: 0;
}
.search-box label {
	display: none;
}
.cart .dropdown {
	padding: 10px;
	
}
.cart .dropup .caret {
	margin-top: -36px;
	margin-left: -130px;
	text-align: left;
	border-bottom: 4px solid #FFF;
}
.cart .dropdown-menu {
	text-align: center;
	width: 220px;
	margin-top: 7px;
}
.cart .dropdown-cart-body {
	margin: 0 0 15px 0;
}
.cart .dropdown-menu img {
	border: 1px solid #dedede;
	border-radius:100%;
	height: 64px;
	width: 64px;
	margin-left: 10px;
	padding: 8px;
}
.cart .dropdown-menu h6 {
	margin-top: 20px;
}
.cart .dropdown-menu h6 span {
	color: #3376B5;
}
.cart .dropdown-menu button {
	margin: 15px 0;
}



/*	Login Modal Start
    ==================================================*/


#create-account_form, #login_form {
	float: left;
	text-align: center;
	width: 48%;
}
#create-account_form {
	margin-right: 11px;
	margin-top: 0;
	min-height: 245px;
}
#create-account_form h3,
#login_form h3 {
	background: none repeat scroll 0 0 #212224;
	color: #FFFFFF;
	padding:8px 0;
	font-size: 24px;
}
#authentication #create-account_form .form_content,
#authentication #login_form .form_content {
	min-height: 185px;
	padding: 15px 10px;
}
#create-account_form h4 {
	font-size: 18px;
	font-weight: normal;
	margin: 0 10px;
	padding-bottom: 22px;
	text-align: left;
}
#create-account_form #email_create,
#login_form #email,
#login_form #passwd,
#login_form #login_email,
#login_form #login_passwd {
	height: auto;
	padding: 5px;
	width: 220px;
	border: 1px solid #dedede;
}


#create-account_form .text label {
	display: none;
}
#create-account_form h3,
#authentication #login_form h3 {
	background: none repeat scroll 0 0 #212224;
	color: #FFFFFF;
}
#authentication #create-account_form .form_content,
#authentication #login_form .form_content {
	background: none repeat scroll 0 0 #F0F0F0 !important;
}
.text label {
	display: none;
}
#login_form > fieldset ,
#create-account_form > fieldset {
	background: #f5f5f5;
}



/*	Nav Start
    ==================================================*/

.nav-main li {
	-webkit-transition: .2s ease-in-out;
	-moz-transition: .2s ease-in-out;
	-ms-transition: .2s ease-in-out;
	-o-transition: .2s ease-in-out;
	transition: .2s ease-in-out;
	font-size: 17px;
}

.nav-main > li::before {
	top: -2px;
	-webkit-transform: translateY(-10px);
	-moz-transform: translateY(-10px);
	transform: translateY(-10px);
}
.nav-main > li:after{
	bottom: -2px;
	-webkit-transform: translateY(10px);
	-moz-transform: translateY(10px);
	transform: translateY(10px);
}
.nav-main > li::before, 
.nav-main > li::after {
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
	background: #3376B5;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, 
	-webkit-transform 0.3s;
	-moz-transition: opacity 0.3s, -moz-transform 0.3s;
	transition: opacity 0.3s, transform 0.3s;
}
.nav-main > li:hover:before,
.nav-main > li:hover:after{
	opacity: 1;
	-webkit-transform: translateY(0px);
	-moz-transform: translateY(0px);
	transform: translateY(0px);	
}
.nav-main > li a:hover, .nav-main > li a:focus {
	color: #3376B5;
}
.nav-main > li a {
	padding: 20px 15px;
	color: #555;
	font-size: 16px;
}
.navbar-nav {
	float: none;
	text-align: center;
}

.navbar-nav>li {
	float: none;
	display: inline-block;
	margin:0 5px;
}
.nav-main .dropdown-menu a:hover{
	background: #fff;
}
.nav-main .dropdown-menu li a {
	color: #555;
	text-align: left;
	padding: 6px 10px;

}
.nav-main .dropdown-menu li:hover {
	color: #fff;
}
.navbar-nav .active {
	border-top: 2px solid #3376B5;
	border-bottom: 2px solid #3376B5;
	margin: -1px 0;
}
.navbar-default .navbar-nav .active > a {
	background: #fff;
}
.nav-main .dropdown-menu li a:hover {
	color: #fff;
	background: #3376B5;
}
.navbar-nav .dropdown-menu .active > a {
	color: #555;
}

.navbar-nav .dropdown-menu .active > a:hover {
    color: #fff;
    background: #3376B5 !important;
}

.navbar-default .navbar-nav>.open>a,
.navbar-default .navbar-nav>.open>a:hover,
.navbar-default .navbar-nav>.open>a:focus {
	background: transparent;
}
.nav-main .dropdown-menu {
	margin-top: 5px;
	padding: 0;
}
.navbar-nav>li>.dropdown-menu {
	margin-top: 2px;
}



/*	 Slider Start
    ==================================================*/

#slider-area {
	margin-top: 30px;
}
.nivo-prevNav,
.nivo-nextNav{
	height: 40px;
	width: 40px;
	text-indent: 9999px;
	background-position: 0px 0px;
	-webkit-transition: margin 0.3s ease-in-out;
	-moz-transition: margin 0.3s ease-in-out;
	-ms-transition: margin 0.3s ease-in-out;
	-o-transition: margin 0.3s ease-in-out;
	transition: margin 0.3s ease-in-out;
	background-repeat: no-repeat;
}
.nivo-prevNav {
	background: url("../images/large_left.png");
	margin-left: -60px;
}
.nivo-nextNav {
	background: url("../images/large_right.png");
	margin-right: -60px;
}
.nivo-prevNav:hover {
	background-position: 0px -40px;
}

.nivo-nextNav:hover {
	background-position: 0px -40px;
}
#slider:hover .nivo-prevNav {
	margin-left: 20px;
}
#slider:hover .nivo-nextNav {
	margin-right: 20px;
}
.nivo-controlNav {
	display: none;
}
.nivo-caption {
	background: none;
}
.nivo-directionNav a{ 
	display: block;
}
.nivoSlider {
	border:10px solid #fff;
	-webkit-box-shadow:0 0 4px rgba(0,0,0,.3) ;
	-moz-box-shadow:0 0 4px rgba(0,0,0,.3) ;
	box-shadow:0 0 4px rgba(0,0,0,.3) ;
}



/*	 Feature Start
    ==================================================*/


#features .block {
	background:#3376B5;
	color: #fff;
	padding: 4px;
}
#features .block .media {
	border: 1px solid #fff;
}
#features .block .media-heading {
	margin-top: 10px;
	margin-bottom: 0;
	color: #fff;
}
#features .block i {
	font-size: 60px;
	margin: 15px 20px;
}



/*	 Catagorie Start
    ==================================================*/


#catagorie .block {
	margin-top: 30px;
}

#catagorie .block .thumbnail {
	border: none;
	cursor: pointer;
}
#catagorie .block .thumbnail:hover .catagotie-head img {
 opacity: 0.7;
}
#catagorie .block .thumbnail a img  {
	width: 100%;
	border:1px solid #dedede;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-ms-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}
#catagorie .block .thumbnail a img:hover {
	opacity: 0.7;
}
#catagorie .block .thumbnail:hover h3 {
	color: #3376B5;
}
#catagorie .block .thumbnail a  h3 {
	font-weight: 500;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-ms-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}
#catagorie .block .thumbnail .caption p {
	font-size: 14px;
	color: #4b4b4b;
	font-weight: 300;
}
#catagorie .block .thumbnail .caption {
	padding: 0;
}
.catagorie-box p span {
	font-weight: bold;
}
.catagorie-box .catagotie-head h3 {
	color: #121212;
}

/*	 New Products Start
    ==================================================*/


.products-heading {
	margin-top: 20px;
	background: url("../images/titleBorder.png");
	background-repeat: repeat-x;
    padding-top: 5px;
}
.products-heading h2 {
	margin: 0px 0 20px ;
	border-top: 5px solid #3376B5;
	display: inline-block;
}
.products {
	text-align: center;
	margin-bottom: 65px;
	cursor: pointer;
}

.products a img {
	width: 100%;
	border: 1px solid #dedede;
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-ms-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}
.products:hover a img{
	opacity: 0.7;
	border: 1px solid #3376B5;
}
.products:hover h4 {
	color: #3376B5;
}
.products a h4 {
	margin-top: 14px;
	-webkit-transition: 0.2s ease-in-out;
	-moz-transition: 0.2s ease-in-out;
	-ms-transition: 0.2s ease-in-out;
	-o-transition: 0.2s ease-in-out;
	transition: 0.2s ease-in-out;
}
.products a h4:hover {
	color: #3376B5;
}
#products + section{ 
	margin-top: 20px;
	margin-bottom: 30px;
}
.view-link {
	text-align: center;
	border: 1px solid #dedede;
	display: block;
	padding: 8px 10px;
	font-size: 17px;
	color: #555;
	font-weight: bold;
}
.view-link:hover {
	border: 1px solid #3376B5;
}
.view-link:hover i {
	color: #fff;
}
.view-link i {
	padding-right: 10px;
	color: #555;
	-webkit-transition: .2s ease-in-out;
	-moz-transition: .2s ease-in-out;
	-ms-transition: .2s ease-in-out;
	-o-transition: .2s ease-in-out;
	transition: .2s ease-in-out;
}
.price {
	font-size: 22px;
	color: #3376B5;
	font-weight: bold;
	margin-bottom: 8px;
}




/*	 Call To Action Start
    ==================================================*/




/*	 Footer Start
    ==================================================*/

footer {
	background: #383838;
	color: #fff;
	padding-top: 40px;
}
footer .block {
	color: #B6B6B6;
}

footer .block p i {
	color: #dedede;
	margin-right: 10px;
	background: #555;
	width: 24px;
	line-height: 24px;
	text-align: center;
}
footer .block h4 {
	margin-bottom: 20px;
	color: #fff;
}

footer .block .logo img {
	text-align: left;
	display: block;
}
footer .block .media-object {
	border:1px solid #747474;
	padding: 2px;
	height: 75px;
}

footer .block .media>.pull-left {
	margin-bottom: 10px;
}
footer .block span {
	color: #fff;
}
.footer-bottom {
	width: 100%;
	margin-top: 70px;
	border-top: 1px solid #2C2C2C;
	box-shadow: 0 -1px 0 #575656;
	padding-top: 10px;
}
.copyright-text {
	margin-top: 12px;
	color: #B6B6B6;
}
.copyright-text a {
	color: #3376B5;
}
.copyright-text a:hover {
	text-decoration: underline;
}


/*	Social Icon Start
    ==================================================*/


.social-icon li {
	float: left;
	margin-right: 8px;
}
.social-icon li a i {
	color: #fff;
	font-size: 20px;
}
.social-icon li a {
	padding: 8px;
	background: #3376B5;
	display: inline-block;
}
.facebook-icon .fa-facebook {
	padding: 0px 7px;
}
.facebook-icon:hover {
	background: #4965a0;
}
.twitter-icon:hover {
	background: #3bc1ed;
}
.pinterest-icon:hover {
	background: #d02128;
}
.linkedin-icon:hover {
	background: #1d87be;
}
.twitter-icon:hover {
	background: #3bc1ed;
}
.plus-icon:hover {
	background: #dd4b39;
}

/*----------------Cash Out--------------------*/

.cash-out {
	padding: 0;
	margin-bottom: 0px;
}
.cash-out li {
	float: left;
}
.cash-out li a {
	padding-right: 10px;
}
.cash-out li a img {
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
.cash-out li a img:hover {
	opacity: 0.7;
}




/*	Shutter Button Start
    ==================================================*/


.shutter {
	position: relative;
	-webkit-transition: .2s ease-in-out;
	-moz-transition: .2s ease-in-out;
	-ms-transition: .2s ease-in-out;
	-o-transition: .2s ease-in-out;
	transition: .2s ease-in-out;
	
}
.shutter:before {
	width: 100%;
	height: 0;
	top: 0;
	left: 0;
	display: block;
	content: "";
	position: absolute;
	-webkit-transition: .2s ease-in-out;
	-moz-transition: .2s ease-in-out;
	-ms-transition: .2s ease-in-out;
	-o-transition: .2s ease-in-out;
	transition: .2s ease-in-out;
	z-index: -1;
}
.shutter:hover:before {
	height: 100%;
	background: #3376B5;
	color: #fff;
}
.shutter:hover {
	color: #fff;
	
}

.btn-transparent {
	position: relative;
	border-radius: 0;
}
.btn-transparent:hover {
	border-color: #3376B5;
}
.btn-transparent:before {
	position: absolute;
	width: 100%;
	height: 0;
	content: "";
	display: block;
	top: 0;
	left: 0;
	z-index: 3;
	-webkit-transition: .2s ease-in-out;
	-moz-transition: .2s ease-in-out;
	-ms-transition: .2s ease-in-out;
	-o-transition: .2s ease-in-out;
	transition: .2s ease-in-out;
}
.btn-transparent:hover:before {
	height: 100%;
	background: #3376B5;
	color: #fff;
}
.btn-transparent:hover span {
	color: #fff;
}
.btn-transparent span {
	z-index: 5;
	position: relative;
	-webkit-transition: .2s ease-in-out;
	-moz-transition: .2s ease-in-out;
	-ms-transition: .2s ease-in-out;
	-o-transition: .2s ease-in-out;
	transition: .2s ease-in-out;


}



/*	Owl Slider Start
    ==================================================*/
#owl-example {
	cursor: pointer;
}
#owl-example img {
	width: 100%;
}
.owl-theme .owl-controls {
	margin-top: 0;
	margin-bottom: 20px;
}
.connect-heading {
	margin-top: 40px;
}



/*	End Of Home Page.......
    ==================================================*/














/*	Blog Page Start.......
    ==================================================*/



#topic-header {
    background: #FCFCFC;
    width: 100%;
    padding: 20px 0;
    margin: -20px 0px 20px;
}
#topic-header h1,#topic-header p {
	margin: 0;
}
#topic-header .breadcrumb {
	background: transparent;
	padding: 30px 0 0;
}
#topic-header .breadcrumb li a {
	color: #3376B5;
}


#blog {
	margin-bottom: 50px;
}
.blog-body .block {
	border: 1px solid #dedede;
	box-shadow: 0 0 3px #C4C4C4;
	padding: 5px;
}


.blog-body .block img {
	width: 100%;
}
.blog-text {
	padding: 20px;
}

 .btn.btn-success.button_buy {
    background: transparent;
    color: #111;
}

.btn.btn-info.button_detail {
    background: transparent;
    color: #111;
}









 
#blog .blog-zone {
    margin: 30px 0 0 0;
    position: relative;
} 
 
/* The line */
#blog .blog-zone:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 6px;
    background: #c7e488;
    left: 1%;
    margin-left: -8px;
}
 
#blog .blog-zone > li {
    position: relative;
}
 
/* The date/time */
#blog .blog-zone > li .cbp_tmtime {
    display: block;
    width: 25%;
    padding-right: 100px;
    position: absolute;
}
 
#blog .blog-zone > li .cbp_tmtime span {
    display: block;
    text-align: right;
}
 
#blog .blog-zone > li .cbp_tmtime span:first-child {
    font-size: 0.9em;
    color: #bdd0db;
}
 
#blog .blog-zone > li .cbp_tmtime span:last-child {
    font-size: 2.9em;
    color: #3376B5;
}
 

 
/* Right content */
#blog .blog-zone > li .blog-box {
    margin: 0 0 30px 8%;
    background: #fff;
    border: 1px solid #dedede;
    color: #fff;
    padding: 8px;
    font-size: 1.2em;
    font-weight: 300;
    line-height: 1.4;
    position: relative;
    border-radius: 2px;
}
 
#blog .blog-zone > li:nth-child(odd) .blog-box {
    background: #fff;
    border: 1px solid #dedede;
}
 
 

 
#blog .blog-zone > li:nth-child(odd) .blog-box:after {
    border-right-color: #3376B5;
}
 
/* The icons */
#blog .blog-zone > li .blog-icon {
    width: 40px;
    height: 40px;
    font-size: 1.4em;
    line-height: 40px;
    position: absolute;
    color: #fff;
    background: #3376B5;
    border-radius: 50%;
    box-shadow: 0 0 0 8px #C7E488;
    text-align: center;
    left: 1%;
    top: 0;
    margin: 0 0 0 -25px;
}

 



.blog-box img {
		width: 100%;
}
.blog-box p {
	color: #666;
}
.blog-post-tag {
	background: #eee;
	padding-left: 17px;
	border-left: 3px solid #90c222;
}
.blog-post-tag .block i {
	color: #3376B5;
}
.blog-post-tag .block p{
	display: inline-block;
	color: #999;
	font-size: 14px;
}
.blog-post-tag .block p a {
	color: #999;
}
.blog-post-tag .block {
	margin-right: 10px;
	display: inline-block;
}
.blog-post-body {
	padding: 15px;
}
.blog-post-body a h2 {
	color: #3376B5;
	margin-bottom: 20px;
}
.blog-post-body p {
	font-size: 16px;
	color: #555;
	padding-top: 10px;
}
#blog .pagination>.active>a {
	background: #3376B5;
	border-color: #3376B5;
	color: #fff;
}
#blog .pagination>li>a {
	color: #333;
}
#blog .blog-zone > li:last-child .blog-box {
	margin-bottom: 0;
}



/*	Blog Single Page Start.......
    ==================================================*/

.blog-post-body blockquote {
	font-size: 13px;
	border-left: 5px solid #3376B5;
	padding: 0 0 0 25px;
	margin: 20px 0 20px 20px;
	color: #AFAFAF;

}
.blog-post-body blockquote p {
	color: #AFAFAF;
	font-size: 18px;
}

.author-id ,.comments-box,.leave-comment  {
	border: 1px solid #dedede;
	margin-top: 30px;
	padding:10px;
}
.author-id .media h4 {
	margin: 0;
}
.author-id .media img ,.comments-box .media img{
	width: 64px;
	height: 64px;
}
.author-id .media-heading {
	color: #555;
}
.author-id .media-body p {
	color: #777;
	font-size: 13px;

}
.author-id .media  h5 {
	background: #EEE;
	margin: 0 0 20px;
	padding: 0 0 0 20px;
	line-height: 38px;
	color: #999;
	text-shadow: 1px 1px 1px #FFF;
}
.comments-box .media-heading span,.comments-box .media-heading a {
	font-style: italic;
	font-size: 13px;
	color: #3376B5;
}
.comments-box .media {
	background: #f7f7f7;
	padding:10px;
	border-bottom: 3px solid #dedede;
	color: #878787;
}
.comments-box .media-body {
	padding: 0 20px;
}
.comments-box .reply {
	margin-left: 75px;
	border-bottom: none;
}
.leave-comment .form-group textarea {
	resize:none;
}

/*-------- Blog Sidebar-------------*/

.blog-sidebar .block {
	margin-bottom: 50px;
}
.blog-sidebar .block .media-heading {
	color: #666;
	font-size: 17px;
	display: block;
	margin:0;
	-webkit-transition: .2s ease-in-out;
	-moz-transition: .2s ease-in-out;
	-ms-transition: .2s ease-in-out;
	-o-transition: .2s ease-in-out;
	transition: .2s ease-in-out;
}
.blog-sidebar .block .media-heading:hover {
	color: #3376B5;
}
.blog-sidebar .block .media-list {
	padding-top: 10px;
}
.blog-sidebar .block .media-body p {
	color: #777;
	font-size: 13px;
}
.blog-sidebar .block .media a img {
	width: 64px;
	border-radius: 2px;
}
.blog-sidebar {
	padding: 20px 0;
}
.blog-sidebar .block .list-group-item:first-child,
.blog-sidebar .block .list-group-item:last-child  {
	border-top-right-radius: 0px;
	border-top-left-radius: 0px;
	border-bottom-right-radius: 0px;
	border-bottom-left-radius: 0px;
}
.blog-sidebar .block .list-group .list-group-item {
	color: #333;
	-webkit-transition: .2s ease-in-out;
	-moz-transition: .2s ease-in-out;
	-ms-transition: .2s ease-in-out;
	-o-transition: .2s ease-in-out;
	transition: .2s ease-in-out;
}
.blog-sidebar .block .list-group .list-group-item  i {
	margin-right: 5px;
}
.blog-sidebar .block .list-group .list-group-item:hover {
	background: #3376B5;
	color: #fff;
	padding-left: 20px;
}



/*-------- Tag-----------*/

.tag-link h2 {
	margin-top: 0px;
	margin-bottom: 20px;
}
.tag-link a {
	color: #fff;
	background: #3376B5;
	padding: 8px 10px;
	display: inline-block;
	margin-bottom: 5px;

}
.tag-link a:hover {
	text-decoration: underline;
}






/*	Shop Page Start.......
    ==================================================*/


 
 

.product-grid ul {
    text-align: center;
}
 
.product-grid ul li {
    width: 33%;
    text-align: center;
    padding: 10px 20px 0 0px;
    display: inline-block;
    vertical-align: top;
}
 
@media screen and (max-width: 57em) {
    .product-grid ul li {
        width: 49%;
    }
}

@media screen and (max-width: 40.125em) {
    .product-grid ul li {
        width: 100%;
    }
}


#shop .products-heading h2 {
	font-size: 30px;
}
.pagination-bottom {
	text-align: center;
}
.pagination-bottom .pagination .active a {
	background: #3376B5;
	border:1px solid #3376B5;
	color: #fff;
}
.pagination-bottom .pagination a {
	color: #333;
}

/*	Shop Single Page Start.......
    ==================================================*/
#single-product .tab-content {
	padding: 10px;
	border-left:1px solid #dedede;
	border-right:1px solid #dedede;
	border-bottom:1px solid #dedede;

}
#single-product .nav-tabs {
	margin-top:30px; 
}
#single-product  .nav-tabs .active a {
	background: #3376B5;
	color: #fff;
}
#single-product  .nav-tabs li a {
	color: #333;
	border-top:1px solid #dedede; 
	border-left:1px solid #dedede; 
	border-right:1px solid #dedede; 
}
.single-product-img {
	border:1px solid #dedede;
}
.product-des {
	border:1px solid #dedede;
	padding:10px 15px;
}
.product-des .view-link {
	background: #3376B5;
	color: #fff;
}
.product-des .view-link i {
	color: #fff;
}
.top-catagori-heading {
	margin-top: 0;
}





ul.nav.navbar-nav.nav-main li a {
    text-transform: uppercase;
    padding: 20px 6px;
}

.block-heading h2 {
    text-transform: uppercase;
}


#features, #catagorie, #new, #popular{
    margin-top: 50px;
}

.mod-languages {
    float: left;
    padding: 0 15px;
}

.lang-inline li a   {
    color:#eceaea;
}
.lang-inline li {
    padding: 4px;
    border: 1px solid #eceaea;
    border-radius: 2px;
}
#top strong  {
    font-size: 16px;
}

#top .fa {
    font-size: 16px;
}

 li.lang-active a {
    font-weight: bolder;
}

 .lang-inline li.lang-active {
    border: 2px solid #fff;
    color:#fff;
}

.latest_products .block_item {
    display: inline-block;
    width: 24%;
}


img.jshop_img {
    width: 100% !important;
}

.block_item .image {
    border: 1px solid #ccc;
    margin: 10px 5px;
}

.block_item .image:hover {
    border: 1px solid #3376B5;
     opacity: 0.7;
     -webkit-transition: all .3s ease-in-out;
-moz-transition: all .3s ease-in-out;
-ms-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out;
}
.name a {
    text-transform: uppercase;
}

.products:hover a img {
    opacity: 0.7;
}




.button_buy {
    border: 1px solid #ccc;
    padding: 10px 35px;
    display: block;
    float: left;
    width: 97%;
    border-radius: 0;
}
.btn.btn-success.button_buy {
    color: #fff;
    border-color: #3376B5;
    height: 100%;
    background: #3376B5;
    color: #fff;
}
.btn.btn-success.button_buy:hover {
    color: #fff;
    border-color: #124F88;
    height: 100%;
    background: #124F88;
    color: #fff;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.button_detail {
    border: 1px solid #ccc;
    padding: 10px 35px;
    display: block;
    float: left;
    width: 97%;
    border-radius: 0;
}
.button_buy:hover {
    color: #fff;
    border-color: #3376B5;
    height: 100%;
    background: #3376B5;
    color: #fff;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.button_detail:hover {
    color: #fff;
    border-color: #3376B5;
    height: 100%;
    background: #3376B5;
    color: #fff;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.jshop_list_product .product .buttons {
    padding-top: 11px;
    overflow: hidden;
}

.block_product.product div.buttons a.button_detail{
    display: none;
}

.btn.btn-success.buy {
    border: 1px solid #ccc;
    padding: 10px 40px;
    display: block;
    background: transparent;
    color: #101010;
    text-transform: uppercase;
    border-radius: 0;
}

.btn.btn-success.buy:hover {
    color: #fff;
    border-color: #3376B5;
    height: 100%;
    background: #3376B5;
    color: #fff;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.moduletable.block.right-block {
    padding: 10px;
    border-bottom: 3px solid #a6a6a6;
    text-transform: uppercase;
}
.moduletable.block.right-block>div {
    padding: 10px;
    border: 1px solid #a6a6a6;
    text-transform: uppercase;
}

.jshop_menu_level_1_a,.jshop_menu_level_2_a, .jshop_menu_level_3_a{
    text-transform: none !important;
}

.moduletable.block.right-block a {
    color: #111;

}
.jshop_menu_level_1 {
    padding: 10px 10px 10px 20px !important;
    border: 1px solid #a6a6a6;
    text-transform: none !important;

}
.col-md-3.right-m {
    margin-top: 20px;
}

.jshop_categ a.product_link {
    font-size: 24px;
    text-transform: uppercase;
}

#top .login-cart li a i {

    font-size: 22px;

}

.btn-primary {

    color: #fff;
    background-color: transparent;
    border: 1px solid #fff;
    border-radius: 0;

}
.btn-primary:hover {

    color: #fff;
    background-color: #56a1e4;
    border-color: #fff;

}
#top .login-cart li a:hover {
    color: #fff;
}


/* mobile menu */

#jf_mm_menu.jf_hidden {
    display: block !important;
    z-index: 9999999999;
}

.breadcrumb.pull-right {

    display: none;

}





.preloader {
    /*������������� ����������������*/
    position: fixed;
    /* ���������� ��������� */
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    /* ������� ���� �������� */
    background: #e0e0e0;
    /* ��������� ���� ��� ����� ���������� �� �������� (��� �������� ������ ���� ������, ��� � ������ ������� ������������������ �������� �� ��������) */
    z-index: 1001;
}

.preloader__row {
    position: relative;
    top: 50%;
    left: 50%;
    width: 70px;
    height: 70px;
    margin-top: -35px;
    margin-left: -35px;
    text-align: center;
    animation: preloader-rotate 2s infinite linear;
}

.preloader__item {
    position: absolute;
    display: inline-block;
    top: 0;
    background-color: #337ab7;
    border-radius: 100%;
    width: 35px;
    height: 35px;
    animation: preloader-bounce 2s infinite ease-in-out;
}

.preloader__item:last-child {
    top: auto;
    bottom: 0;
    animation-delay: -1s;
}

@keyframes preloader-rotate {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes preloader-bounce {

    0%,
    100% {
        transform: scale(0);
    }

    50% {
        transform: scale(1);
    }
}

.loaded_hiding .preloader {
    transition: 0.3s opacity;
    opacity: 0;
}

.loaded .preloader {
    display: none;
}


.jshop.productfull {margin-top: 20px;}
.product_header > h1 {color: #3376B5;}
.productfull #block_price {color: #3376B5;}
.productfull .nav-tabs h3 {font-size: 21px;}
.prod_qty_input input#quantity {width: 40px;font-size: 18px;}
.jshop_list_product .product .product_title a {font-size: 22px;text-transform: uppercase;color: #3376B5;}
.media a {color: #fff;}
footer .block p a {color:#B6B6B6;}
.btn-success {
    border: 1px solid #ccc;
    padding: 10px 35px;
    display: block;
    float: left;
    border-radius: 0;
    background-color: #3376B5;
    color: #fff;
    margin: 10px;
}

.btn-success:hover, .btn-success:focus, .btn-success:active, .btn-success.active, .open .dropdown-toggle.btn-success {
    color: #fff;
    background-color: #20609D;
    border-color: #20609D;
}

#active_step {font-weight: bold;padding: 10px 30px;margin: 10px;text-transform: uppercase;border: 1px solid #ccc;background: #f6f6f6;}
.jshop_order_step {display: inline-block;margin-top: 10px;}
.thumbnail.form-horizontal {overflow: hidden;}
.jshop_order_step a { text-decoration: none;font-size: 14px;background: #a6ffab;display: block;padding: 10px 20px;color: #000;}
.cont {font-size: 54px;text-align: center;display: block;color: #3376B5;padding-bottom: 20px;}
.col-md-4.contact-col {text-align: center; border-left: 1px solid #ccc;}
.col-md-4.contact-col.one {border: none;}
.pt40 {padding-top: 40px;}
.pb30 {padding-bottom: 40px;}
.span12 {padding-bottom: 40px;}
.item-page img {max-width: 100%; padding: 20px 10px}
.item-page li {list-style: disc;}
.return-list {margin-left: 20px;}

.categor {text-align: center;margin: 40px;}
.mycat .jshop_menu_level_0 {float: left;width: 33%;}
.mycat .jshop_menu_level_0 a {font-family: 'Yanone Kaffeesatz', sans-serif;color: #555;font-size: 30px;}
.mycat .jshop_menu_level_0 img {padding-top:15px;}
.span4.extra_fields_name {color: #fd0707;font-weight: bold;width: 100%;}
.span8.extra_fields_value {width: 100%;font-size: 25px;color: #3376B5;font-weight: bold;}
.jshop.filters {margin: 30px auto;}
.jshop.filters .button {border: none; background: #428bca;color: #fff; padding: 5px 30px;}
.box_manufacrurer {color: #428bca;font-weight: bold;}
.filter_price {color: #428bca;font-weight: bold;}
.jshop.filters {border: 2px solid #c6c6c6;padding: 30px 10px;}
.nav.nav-tabs {margin: 25px auto;}
.block_item .name {height: 96px;}
.name a { font-size: 14px;}
.pagination li {float: left;padding: 10px;border: 1px solid #ccc;margin: 5px;}
.thanksfinish { border: 1px solid #3376B5; padding: 10px;}
.thanksfinish2 {margin: 20px auto;font-size: 16px;font-weight: bold;}
.col-md-6.text-cart.tel {font-size: 20px;padding:7px;}
.col-md-6.text-cart.tel {padding-left: 20px;}
.fa.fa-phone-square {font-size: 26px;color: #3376B5;}


















