body {
	font-family: 'Poppins', sans-serif;
    font-size: 14px;
	color: #666;
	font-weight: 400;
	overflow-x: hidden;
	-webkit-transition: background-color .5s;
	-o-transition: background-color .5s;
	-moz-transition: background-color .5s;
	transition: background-color .5s;
	height:100%;
}

/* globals start */

a {
	color: #222;
	text-decoration:none!important;
	-webkit-transition: color 0.3s ease;
	-moz-transition: color 0.3s ease;
	-o-transition: color 0.3s ease;
	transition: color 0.3s ease;
}
a:hover {
	color:#8e8e8e;
}
p {
	margin:0;
}
::-webkit-input-placeholder {
	opacity: 1;
	filter: alpha(opacity=100);
	font-size: 13px;
	color: #888!important;
}
:-moz-placeholder { /* Firefox 18- */
	opacity: 1;
	filter: alpha(opacity=100);
	font-size: 13px;
	color: #888!important;
}
::-moz-placeholder {  /* Firefox 19+ */
	opacity: 1;
	filter: alpha(opacity=100);
	font-size: 13px;
	color: #888!important;
}
:-ms-input-placeholder {  
	opacity: 1;
	filter: alpha(opacity=100);
	font-size: 13px;
	color: #888!important;
}

.btn-red {
	background-color: #B70E0C;
	color:#fff;
}
.btn-outline-red {
	font-weight: 600;
    color: #333;
    text-transform: uppercase;
    border: 2px solid #ddd;
	font-size: 13px;
}
.btn-outline-red:hover {
	color: #fff;
    background-color: #b70e0c;
    border-color: #b70e0c;
}
.btn-blue {
	background:#15284b;
	-webkit-box-shadow: 0 0 6px 0 #404040;
	-moz-box-shadow: 0 0 6px 0 #404040;
	box-shadow: 0 0 6px 0 #404040;
	color:#fff!important;
}
.btn-red:hover {
	background-color: #222!important;
	color:#fff;
}
.text-orange {
    color: #f77d1a;
}
.text-red {
	color: #b70e0c;
}

#address_warning .close
{
	position:absolute;
	top:-4px;
	right:-8px;
	font-size:0px;
	opacity:1;
}

#address_warning  .close span
 {
	background-color: #000;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    color: rgb(255, 255, 255);
	padding:0px 5px;
	font-size:13px;
}
#address_enter input[type=text],
#address_enter select,
#address_enter textarea
{ 
	background-color: #f6f6f6;
    border: 1px solid #ededed;
    color: #666;
    font-size: 12px;
}
.custom-form {
	background-color: #f6f6f6!important;
    border: 1px solid #ededed!important;
    color: #666!important;
    font-size: 12px!important;
}
.custom-form2 {
	background-color: #f6f6f6!important;
    border: 1px solid #ededed!important;
    color: #666!important;
}

button:focus,button:active,img
{
   outline: none !important;
   -webkit-box-shadow: none!important;
   -moz-box-shadow: none!important;
   box-shadow: none!important;
}
.pointer {
	cursor:pointer!important;
}
/* globals end */

/* custom alerts */
.custom-alert-primary {
	color: #4816a2;
    background-color: #e2ccff;
    border-color: #d6b8ff;
}
.custom-alert-dark {
	background-color: #273444;
    color: #FFF;
    border: 0;
}

/* blog page start */

/* top strip start */
.strip {
	height:4px;
	width:100%;
	background: #fd163c;
	background: -moz-linear-gradient(left,  #fd163c 0%, #fd163c 50%, #ac0c26 50%, #ac0c26 100%);
	background: -webkit-linear-gradient(left,  #fd163c 0%,#fd163c 50%,#ac0c26 50%,#ac0c26 100%);
	background: -webkit-gradient(linear,  left top, right top,  from(#fd163c),color-stop(50%, #fd163c),color-stop(50%, #ac0c26),to(#ac0c26));
	background: -moz-linear-gradient(left,  #fd163c 0%,#fd163c 50%,#ac0c26 50%,#ac0c26 100%);
	background: -o-linear-gradient(left,  #fd163c 0%,#fd163c 50%,#ac0c26 50%,#ac0c26 100%);
	background: linear-gradient(to right,  #fd163c 0%,#fd163c 50%,#ac0c26 50%,#ac0c26 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fd163c', endColorstr='#ac0c26',GradientType=1 );
	-webkit-background-size:244px 244px;
	-moz-background-size:244px;
	-o-background-size:244px;
	background-size:244px;
}
/* top strip end */

/* left side start */
.content {
	-moz-box-shadow: 0 0 5px #a7a7a7;
    -webkit-box-shadow: 0 0 5px #a7a7a7;
    box-shadow: 0 0 5px #a7a7a7;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    background: #fff;
    margin-bottom: 10px;
}
.post-title {
	color:#504c41;
}
.blog-info {
	position:relative;
	font-size:0;
}
.blog-info:before {
	content:"";
	width:100%;
	height:111px;
	background:red;
	position:absolute;
	top:0;
	left:0;
	z-index:0;
}
.date {
	display:inline-block;
	position:relative;
	-webkit-transform:translateY(-50%);
	-ms-transform:translateY(-50%);
	-moz-transform:translateY(-50%);
	-o-transform:translateY(-50%);
	transform:translateY(-50%);
}
.month {
	background:#fe163c;
	color:#fff;
	display:inline-block;
	font-size:12px;
}
.year {
	background:#504c41;
	color:#fff;
	display:inline-block;
	font-size:12px;
}
.author {
	background:#8f061c;
	color:#fff;
	display:inline-block;
	font-size:12px;
	position:relative;
	-webkit-transform:translateY(-50%);
	-ms-transform:translateY(-50%);
	-moz-transform:translateY(-50%);
	-o-transform:translateY(-50%);
	transform:translateY(-50%);
}
.post-text {
	position:relative;
}

.read-more {
	border-top: 1px dotted #999;
    border-bottom: 1px dotted #999;
	text-align:right;
}
.post-text img {
	width:100%!important;
	height:auto!important;
}
/* left side end */

/* widget section start */
.widget-title {
	background: url(images/widget-title.png);
	background-repeat:no-repeat;
	height: 26px;
    color: #FFF;
	font-size:15px;
    padding: 3px 15px 3px 0px;
}
.widget-topbg {
	background-position:right top;
}
.widget-bottombg {
	background-position:right bottom;
}
ul.latest-post li a {
	color:#4f4f4f;
	font-size:13px;
}
ul.latest-post li {
	padding: 10px;
	border-bottom: 1px dashed #999;
}
.facebook {
	background: url(images/faceTwitter.png) no-repeat 0 0;
	width: 97px;
	height: 44px;
}
.twitter {
	background: url(images/faceTwitter.png) no-repeat -100px 0;
	width: 97px;
	height: 44px;
}
/* widget section end */

/* scrol to top start */
.scroll_to_top.show {
    filter: alpha(opacity=100);
    opacity: 1;
    bottom: 1em;
    line-height: 30px;
}
.scroll_to_top {
	cursor: pointer;
	border:2px solid #777;
	-webkit-border-radius: 999px !important;
	-moz-border-radius: 999px !important;
	border-radius: 999px !important; 
    filter: alpha(opacity=0);
    opacity: 0;
	width:34px;
	height:34px;
	position: fixed;
	z-index:999;
	right: 1.5em;
	bottom: 1em; 
	text-align:center;
}
.scroll_to_top:hover {
	background-color: #11519B;
	color:#fff;
	border-color: #11519B;
}

/* scroll to top end */

/* blog page end */

/* pay page start */

/* header start */
header {
	background-color: #f9f9f9;
    border-bottom: 1px solid #e6e6e6;
	
}
header ul.user li a  {
	font-size: 13px;
    color: #555;
    font-weight: 500;
	text-decoration:none;
	line-height: 33px;
}
header ul.user li a:hover {
	color: #b70e0c!important;
}
header ul.user.acc-dropdown li .dropdown-menu a:active {
	background-color: #ffceca!important;
}

header .dropdown-menu {
	display: block; 
	-webkit-box-shadow: 0 6px 12px rgba(0,0,0,.175);
    -moz-box-shadow: 0 6px 12px rgba(0,0,0,.175);
    box-shadow: 0 6px 12px rgba(0,0,0,.175);
	opacity: 0;
    visibility: hidden;
	min-width: 307px;
    -webkit-border-top-right-radius: 0;
    -moz-border-radius-topright: 0;
    border-top-right-radius: 0;
    -webkit-border-top-left-radius: 0;
    -moz-border-radius-topleft: 0;
    border-top-left-radius: 0;
    -webkit-border-bottom-left-radius: 10px;
    -moz-border-radius-bottomleft: 10px;
    border-bottom-left-radius: 10px;
    -webkit-border-bottom-right-radius: 10px;
    -moz-border-radius-bottomright: 10px;
    border-bottom-right-radius: 10px;
	border-top: 3px solid #b70e0c;
    padding: 30px 20px;
	-webkit-transition: opacity 0.5s, -webkit-transform 0.2s;
    transition: opacity 0.5s, -webkit-transform 0.2s;
    -o-transition: opacity 0.5s, -o-transform 0.2s;
    -moz-transition: opacity 0.5s, transform 0.2s, -moz-transform 0.2s;
    transition: opacity 0.5s, transform 0.2s;
    transition: opacity 0.5s, transform 0.2s, -webkit-transform 0.2s, -moz-transform 0.2s, -o-transform 0.2s;
    -webkit-transform: translate(0,40px);
    -moz-transform: translate(0,40px);
    -o-transform: translate(0,40px);
    -ms-transform: translate(0,40px);
    transform: translate(0,40px);
	font-size:14px;
}
header .dropdown-menu:before {
    content: "";
    height: 0;
    width: 0;
    border-bottom: 9px solid #b70e0c;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    position: absolute;
    top: 0;
    right: 21px;
    margin-top: -11px;
}

header .dropdown > .dropdown-toggle:active {
    /*Without this, clicking will make it sticky*/
    pointer-events: none;
}
form.login {
    width: 300px;
}
form.login::-webkit-input-placeholder {
  color: peachpuff;
  font-size: 13px;
}
form.login:-moz-placeholder {
  color: peachpuff;
  font-size: 13px;
}
form.login::-moz-placeholder {
  color: peachpuff;
  font-size: 13px;
}
form.login:-ms-input-placeholder {
  color: peachpuff;
  font-size: 13px;
}
form.login::-ms-input-placeholder {
  color: peachpuff;
  font-size: 13px;
}
form.login::placeholder {
  color: peachpuff;
  font-size: 13px;
}

header label b{
	font-weight:500;
}

.custom-control-label{
	padding-left:10px;
}
.custom-checkbox .custom-control-input:checked~.custom-control-label::before{
  background-color:#b70e0c!important;
  border-color:#b70e0c!important;
}

.custom-control-input:focus:not(:checked)~.custom-control-label::before {
    border-color: red!important;
}	
.custom-control-label::before, 
.custom-control-label::after {
top: 8px;
width: 20px;
height: 20px;
border-color:red;
border-width:2px;
}
.custom-checkbox .custom-control-input:focus~.custom-control-label::before{
	-webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(255, 0, 247, 0.25);
	-moz-box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(255, 0, 247, 0.25);
	box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(255, 0, 247, 0.25); 
}

.breadcrumb li a {
	font-size: 11px;
    color: #222;
}
.breadcrumb li {
	font-size:11px;
}

.pay-page .summary {
    padding: 25px 20px 20px;
    border: 1px solid #e6e6e6;
    background: #fff;
}
.pay-page .summary h4 {
	color: #222;
	font-size:22px;
}

.shipping-address .box {
	background:#fff;
	width:180px;
	height:112px;
	text-align:center;
	border: 1px solid #e6e6e6;
	position:relative;
	padding:2px;
}
.shipping-address .box.active {
	background:#B70E0C;
	color:#fff;
}
.checkout .btn-outline-secondary:not(:disabled):not(.disabled).active {
	background:#B70E0C!important;
}
.checkout .btn-outline-secondary:hover {
	background:#B70E0C!important;
}

.shipping-address .box .custom-control {
	position:absolute;
	top:-33px;
	left:0;
}
.shipping-address .box i.fa-pencil-alt {
	position:absolute;
	top:-20px;
	right:0;
	color:#666!important;
}


.shipping-address .box.new-address {
	background:#ebebea;
	cursor:pointer;
}

.pay-page .custom-control-input:checked~.custom-control-label::before {
    color: #fff;
	background-color: #b70e0c!important;
    border-color: #b70e0c!important;
}
.pay-page .custom-control-input:focus~.custom-control-label::before{
	-webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(255, 0, 247, 0.25);
	-moz-box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(255, 0, 247, 0.25);
	box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(255, 0, 247, 0.25); 
}
.cart-info {
	max-width:90px;
}

.bg-green {
	background-color: #f6f6f6;
}
.contract-content {
	font-size: 12px;
    margin-top: 10px;
    padding: 10px;
    border: solid 1px #e5e5e5;
    background-color: #fcfbfa;
    max-height: 111px;
    height: 111px;
    overflow-y: scroll;
    color: #333;
}

.infobar {
	position: fixed;
	left: 0;
	bottom: 0;
	width: 100%;
	background-color: #fff;
	color: white;
	padding:10px;
	color: #666;
	z-index:999;
}
.golge {
	-webkit-box-shadow: 0px 10px 21px 7px #808080;
	-moz-box-shadow: 0px 10px 21px 7px #808080;
	box-shadow: 0px 10px 21px 7px #808080;
}
.infobar-panel {
	border-bottom: 1px solid #eee;
	display:none;
}
.panel-trigger {
	cursor:pointer;
}

footer {
    background: #fbfbfb;
    border-top: 1px solid #e4e5e5;
}
.pay-men a:not(:last-child) img{
	margin-right:5px;
}

.cargo-img {
	border: 1px solid;
    -webkit-border-radius: 1px;
    -moz-border-radius: 1px;
    border-radius: 1px;
    height: 21px;
    width: 21px;
}

#address_content [data-value] {
	display:none;
}

.customNavigation button {
    background: #333333;
    color: #fff;
    -webkit-transition: all 0.5s ease;
    -webkit-transition-delay: 0s;
    -moz-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
}
.customNavigation button:hover {
	background: #085dad;
	color:#fff;
}
.heading {
    border-bottom: 1px solid #e6e6e6;
    position: relative;
    padding: 0 0 12px;
    margin: 0 auto 15px;
    color: #292929;
    font-size: 20px;
    font-weight: 600;
    font-family: "Open Sans",sans-serif;
}
.heading:after {
    border-bottom: 2px solid #b70e0c;
    content: "";
    position: absolute;
    bottom: -1px;
    width: 60px;
    left: 0;
}
.shipping-address .owl-stage-outer {
	padding-top:40px;
}

.bg-yellow {
	background:#dcf8c6;
}
/* pay pages end */

.minicart .cart-icon {
	position:relative;
}
.minicart .counter-number {
	position: absolute;
    top: -11px;
    right: -11px;
    background-color: #000;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    color: #fff;
    font-size: 11px;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
}
.minicart .subtitle {
	font-weight: 500;
    color: #333;
    font-size: 13px;
    margin-bottom: 20px;
}
ul.minicart-item li {
	border-bottom: 1px solid #e6e6e6;
    padding: 7px 0 17px 0;
}
.cart-sticker {
    background: #7bbfec;
    color: #fff;
    position: absolute;
    top: 5px;
    width: 25px;
    height: 25px;
    line-height: 25px;
    color: #fff;
    left: 5px;
    text-align: center;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    font-size: 12px;
}
.product-name a {
    color: #222;
    text-transform: capitalize;
    font-size: 14px;
    line-height: 20px;
    text-decoration: none;
}
.product-name a:hover {
    color: #941a11;
}
.cart-content > span {
    display: block;
    color: #222;
    font-weight: 400;
    font-size: 12px;
}
span.product-price {
    color: #00468b;
    font-size: 14px;
    font-weight: 700;
}
.minicart .dropdown-menu ul:first-of-type li {
    border-bottom: 1px solid #ededed;
}
.cart-price {
    border-bottom: 1px solid #ededed;
}
/* side toggle menu start */
nav.sidetoggle {
    height: 100%;
    position: fixed!important;
	z-index:999;
	top:43px;
    left: 0;
    width: 320px;
	-webkit-transform: translateX(-350px);
	-ms-transform: translateX(-420px);
	-moz-transform: translateX(-420px);
	-o-transform: translateX(-420px);
	transform: translateX(-420px);
    -webkit-transition: -webkit-transform 260ms ease-in-out;
    transition: -webkit-transform 260ms ease-in-out;
    -o-transition: transform 260ms ease-in-out;
    -o-transition: -o-transform 260ms ease-in-out;
    -moz-transition: transform 260ms ease-in-out, -moz-transform 260ms ease-in-out;
    transition: transform 260ms ease-in-out;
    transition: transform 260ms ease-in-out, -webkit-transform 260ms ease-in-out, -moz-transform 260ms ease-in-out, -o-transform 260ms ease-in-out;
    transition: transform 260ms ease-in-out, -webkit-transform 260ms ease-in-out;
    background-color: white;
    border-right: 1px solid #eee;
	overflow-y:auto;
	overflow-x:hidden;
	-webkit-box-shadow: 0 0 12px rgba(0, 0, 0, 0.5);
	-moz-box-shadow: 0 0 12px rgba(0, 0, 0, 0.5);
	box-shadow: 0 0 12px rgba(0, 0, 0, 0.5);
}
nav.sidetoggle ul {
	margin:0;
	padding:0;
	border-top: 1px solid #eee;
}
nav.sidetoggle > ul>li {
	list-style: none;
	color: #fff;
	cursor: pointer;
	border-bottom: 1px dashed #eee;
	-webkit-transition: .25s;
	-o-transition: .25s;
	-moz-transition: .25s;
	transition: .25s
}
nav.sidetoggle ul>li span {
    display: block;
    /* font-size: 12px; */
    color: #353535;
	font-weight:500;
}
nav.sidetoggle > ul > li > a {
    color: #353535;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
	/* font-size: 12px; */
	padding: .5rem;
	display:inline-block;
}
nav.sidetoggle > ul>li:hover {
	background-color: #fdfdfd;
}
.sidetoggle ul.submenu {
	background:#b70e0c;
}
.sidetoggle ul.submenu li:not(:last-child) {
	border-bottom: 1px dashed #eee;
}
.sidetoggle ul.submenu li a {
	padding: .5rem;
	display:block;
	color:#fff;
	text-decoration:none;
}
.sidetoggle ul.submenu li {
	margin: 0 15px;
}
/* side toggle menu end */

/* navbar start */
#mynavbar {
	z-index:999;
	background:#fff;
}
#mynavbar .dropdown-menu {
	margin-top: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    min-width: 122px;
    border: none;
    opacity: 0;
    visibility: hidden;
    -webkit-box-shadow: 0 0px 5px 2px rgba(0,0,0,.175);
    -moz-box-shadow: 0 0px 5px 2px rgba(0,0,0,.175);
    box-shadow: 0 0px 5px 2px rgba(0,0,0,.175);
	-webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
	display: block;
	background: #b70e0c;
	padding: 0 15px;
}
#mynavbar .dropdown-menu a{
	border-bottom: 1px dashed #e6e6e6;
	color: #fff;
	line-height: 28px;
	font-size: 13px;
}
#mynavbar .dropdown-item:hover,
#mynavbar .dropdown-item:focus,
#mynavbar .dropdown-item:active
 {
	color: #e6e6e6;
	background:transparent;
}
#mynavbar .dropdown-menu a:last-child {
	border:none;
}

#mynavbar .dropdown:hover > .dropdown-menu {
	display:block;
    opacity: 1;
    visibility: visible;
}
#mynavbar .dropdown > .dropdown-toggle:active {
	pointer-events:none;
}

/* navbar end */



/* showcase start */

.showcase .nav-tabs {
	border:0;
}
.showcase .nav-tabs .nav-link {
	border:0;
	position:relative;
	color: #666666;
}
.showcase .nav-tabs .nav-link.active {
	color: #222;
    font-weight: 600;
}
.showcase .nav-tabs .nav-link.active:after {
	content: "";
    display: inline-block;
    background-color: #b70e0c;
    width: 100%;
    height: 2px;
    position: absolute;
    bottom: 0;
    left: 0;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	-moz-transition: 0.3s;
	transition: 0.3s;
}
.showcase .item,
.products .item
{
	border-right:1px solid #eaeaea;
	border-left:1px solid #eaeaea;
	border-bottom:1px solid #eaeaea;
	border-top:1px solid #eaeaea;
	cursor:pointer;
}

.basket .item {
	border-right:1px solid #eaeaea;
	border-left:1px solid #eaeaea;
	border-bottom:1px solid #eaeaea;
	border-top:1px solid #eaeaea;
	cursor:pointer;
	padding-bottom:10px;
}
.basket .item:hover {
	-webkit-box-shadow: 0 0 22px 0 #e6e6e6;
	-moz-box-shadow: 0 0 22px 0 #e6e6e6;
	box-shadow: 0 0 22px 0 #e6e6e6;
    z-index: 2;
}
/* .showcase .owl-item {
	opacity:0;
	transition: opacity 500ms;
}
.showcase .owl-item.active {
	opacity:1;
} */

/* .firstActiveItem {
  border-left:1px solid #eaeaea;
} */
/* stage padding 2 */

.showcase .item:hover,
.products .item:hover
 {
	-webkit-box-shadow: 0 0 22px 0 #e6e6e6;
	-moz-box-shadow: 0 0 22px 0 #e6e6e6;
	box-shadow: 0 0 22px 0 #e6e6e6;
    z-index: 2;
}
.showcase .item a,
.products .item a
{
	font-size: 12px;
    text-align: left;
    color: #333;
	text-decoration:none;
}
.showcase .prev,
.showcase .next {
	cursor:pointer;
}
.bg-red {
	background:#b70e0c;
}
.main-title {
	color: #fff;
    font-size: 19px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 45px;
}
/* products start */

span.onsale {
	position: absolute;
    height: 20px;
    line-height: 19px;
    left: 10px;
    bottom: 4px;
	background-color: #c30c0c;
    color: #fff;
    font-size: 13px;
    padding: 1px 10px;
}
span.onsale:before {
	position: absolute;
    top: 0;
    right: -3px;
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 20px 3px 0 13px;
    border-color: #c30c0c transparent transparent transparent;
}
.product-thumb {
	position: relative;
    overflow: hidden;
    text-align: center;
}
.products .price {
    display: block;
    margin-bottom: 3px;
	text-align:center;
}
.price ins {
    font-size: 15px;
	color: #c30c0c;
    font-weight: 600;
    text-decoration: none;
	display:block;
}
.price del {
    font-size: 13px;
    text-decoration: line-through;
	color: #bbbbbb;
	display:block;
}



/* products end */

/* siteinfo start */
.siteinfo {
    background: #fbfbfb;
    border-top: 1px solid #e4e5e5;
}
.siteinfo h3 {
	font-size: 16px;
    color: #222;
	font-weight: bold;
    text-transform: uppercase;
}
.links li a {
    display: inline-block;
    margin-bottom: 7px;
    color: #666;
	text-decoration:none;
	-webkit-transition: all 0.45s cubic-bezier(0.165,0.84,0.44,1) 0s;
	-o-transition: all 0.45s cubic-bezier(0.165,0.84,0.44,1) 0s;
	-moz-transition: all 0.45s cubic-bezier(0.165,0.84,0.44,1) 0s;
	transition: all 0.45s cubic-bezier(0.165,0.84,0.44,1) 0s;
}
.links li a:hover {
    color: #b70e0c;
	padding-left: 10px;
}
.socials .social {
    display: inline-block;
    width: 38px;
    height: 38px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    line-height: 38px;
    text-align: center;
    background-color: #d1d1d1;
    margin: 10px 10px 10px 0px;
    font-size: 18px;
	color:#000;
	-webkit-transition: 500ms;
	-o-transition: 500ms;
	-moz-transition: 500ms;
	transition: 500ms;
}
.socials .social:hover {
    background-color: #b70e0c;
    color: #fff;
}
.socials .social-link {
	margin-left:4px;
}

.preloader {
	position:fixed;
	top:0;
	left:0;
	right:0;
	bottom:0;
	background-color:#fff;
	z-index:1031;
}
.bg-gray {
	background-color: #f9f9f9;
}
/* siteinfo end */

/* gridlist start */
.leftside h3 {
	color: #313942;
	font-size:16px;
	font-weight:700;
	display:inline-block;
	margin-bottom:0;
}
.filter-header {
    font-weight: 700;
    border-top: 1px solid #ddd;
    border-right: 1px solid #ddd;
    border-left: 1px solid #ddd;
    background-color: #f9f9f9;
}

.max-height {
	max-height: 160px;
    overflow-y: auto;
}

.gridlist .slider.slider-horizontal {
	width:100%;
}

.slider-handle {
	width: 22px;
    height: 22px;
	top:50%;
	-webkit-transform:translateY(-50%);
	-ms-transform:translateY(-50%);
	-moz-transform:translateY(-50%);
	-o-transform:translateY(-50%);
	transform:translateY(-50%);
	background-color: #fff!important;
    -webkit-box-shadow: 0 0 0 2px #999, 0 0 6px 2px rgba(169,169,169,.5);
    -moz-box-shadow: 0 0 0 2px #999, 0 0 6px 2px rgba(169,169,169,.5);
    box-shadow: 0 0 0 2px #999, 0 0 6px 2px rgba(169,169,169,.5);
	background-image:none;
}
.gridlist .text-muted {
	color: #aaa;
}
.gridlist .item {
	-webkit-box-shadow: 0 0 0 1px #eaeaea;
	-moz-box-shadow: 0 0 0 1px #eaeaea;
	box-shadow: 0 0 0 1px #eaeaea;
    z-index: 1;
    position: relative;
}
.gridlist .item:hover {
	-webkit-box-shadow: 0 0 12px 0 #e6e6e6;
	-moz-box-shadow: 0 0 12px 0 #e6e6e6;
	box-shadow: 0 0 12px 0 #e6e6e6;
    z-index: 2;
}
.product-name a {
    font-size: 12px;
    color: #333;
}
.gridlist .item-inner {
	background:#fff;
}

.pagination .page-item {
	margin-left:5px;
}
.pagination .page-item.active a {
	color: #fff;
    background-color: #b70e0c;
    border: 1px solid #b70e0c;
}
.pagination .page-item:hover a {
	color: #fff;
    background-color: #b70e0c;
    border: 1px solid #b70e0c;
}

.pagination .page-item a {
	color: #333;
    border: 1px solid #e6e6e6;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    padding: 9.5px 15px;
}



/* sidefilter menu start */
nav.sidefilter {
    height: 100%;
    position: fixed!important;
	z-index:999;
	top:43px;
    left: 0;
    width: 320px;
	-webkit-transform: translateX(-350px);
	-ms-transform: translateX(-420px);
	-moz-transform: translateX(-420px);
	-o-transform: translateX(-420px);
	transform: translateX(-420px);
    -webkit-transition: -webkit-transform 260ms ease-in-out;
    transition: -webkit-transform 260ms ease-in-out;
    -o-transition: transform 260ms ease-in-out;
    -o-transition: -o-transform 260ms ease-in-out;
    -moz-transition: transform 260ms ease-in-out, -moz-transform 260ms ease-in-out;
    transition: transform 260ms ease-in-out;
    transition: transform 260ms ease-in-out, -webkit-transform 260ms ease-in-out, -moz-transform 260ms ease-in-out, -o-transform 260ms ease-in-out;
    transition: transform 260ms ease-in-out, -webkit-transform 260ms ease-in-out;
    background-color: white;
    border-right: 1px solid #eee;
	overflow-y:auto;
	overflow-x:hidden;
	-webkit-box-shadow: 0 0 12px rgba(0, 0, 0, 0.5);
	-moz-box-shadow: 0 0 12px rgba(0, 0, 0, 0.5);
	box-shadow: 0 0 12px rgba(0, 0, 0, 0.5);
}
.sidefilter .slider.slider-horizontal {
	width:100%;
}
/* sidefilter menu end */

/* product detail start */
.product-detail h5 a {
	color: #000;
	text-decoration:none;
}
.product-detail h5 a:hover {
	color: #666;
}
.btn-zoom {
	position: absolute;
    width: 40px;
	height: 40px;
    top: 50%;
    left: 50%;
	-webkit-transform:translate(-50%,-50%);
	-ms-transform:translate(-50%,-50%);
	-moz-transform:translate(-50%,-50%);
	-o-transform:translate(-50%,-50%);
	transform:translate(-50%,-50%);
    right: 0;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    overflow: hidden;
    z-index: 32;
    border: 1px solid #ddd;
    color: #ddd;
    text-align: center;
    line-height: 40px;
}
.image-preview {
	position:relative;
	width:100%;
	/* height:90%; */
}
.thumb-wrapper {
	position:relative;
}
.image-preview .owl-carousel {
	width: 100%;
	position: absolute;
	left: 0;
	top: 0;
	opacity: 0;
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.image-preview .owl-carousel.active {
	opacity: 1;
	z-index:31;
}

.thumbnails.owl-carousel {
	width: 100%;
	position: absolute;
	left: 0;
	top: 0;
	opacity: 0;
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.thumbnails.owl-carousel.active {
	opacity: 1;
	z-index:31;
}

.thumbnails .item {
	border: 1px solid #eaeaea;
}
.thumbnails .item:hover:after,
.thumbnails .item.active:after
{
    content: "";
    display: inline-block;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #b70e0c;
    width: 100%;
    height: 4px;
}

a.disabled {
  pointer-events: none;
  cursor: default;
}

/* slider icons start */

.thumbnails .owl-nav .owl-prev, 
.thumbnails .owl-nav .owl-next {
	width: 32px;
    height: 32px;
    line-height: 32px!important;
    color: #fff;
    font-size: 18px;
	position: absolute;
    top: 50%;
	-webkit-transform:translateY(-50%)!important;
	-ms-transform:translateY(-50%)!important;
	-moz-transform:translateY(-50%)!important;
	-o-transform:translateY(-50%)!important;
	transform:translateY(-50%)!important;
    text-align: center;
    border:1px solid #fff!important;
	color:#000;
	opacity: 0;
	background: #fff!important;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	-webkit-box-shadow: 0 1px 3px rgba(0,0,0,.1);
	-moz-box-shadow: 0 1px 3px rgba(0,0,0,.1);
	box-shadow: 0 1px 3px rgba(0,0,0,.1);
	-webkit-transition: .3s ease;
	-o-transition: .3s ease;
	-moz-transition: .3s ease;
	transition: .3s ease;
	margin:0!important;
}
.thumbnails .owl-nav .owl-prev{
    left: 2%;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -o-transition: 0.4s;
    -ms-transition: 0.4s;
	padding-right:9px;
}
.thumbnails .owl-nav .owl-next {
    right: 2%;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -o-transition: 0.4s;
    -ms-transition: 0.4s;
	padding-left:9px;
}

.thumbnails:hover .owl-nav .owl-next:hover,
.thumbnails:hover .owl-nav .owl-prev:hover{
    opacity: .9;
	background-color: #B70E0C!important;
	color:#fff!important;
}

.thumbnails .owl-nav i {
    font-size: 18px;
}
.thumbnails:hover .owl-nav .owl-next,
.thumbnails:hover .owl-nav .owl-prev
 {
	opacity:1;
}
/* slider icons end */

.star-wrapper {
	font-size: 14px;
    font-weight: 600;
    color: #333;
    text-transform: none;
    border: 2px solid #ddd;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    display: inline-block;
    padding: 4px 10px;
    text-align: center;
}
.star-rating {
	display: inline-block;
    color: #f29f29;
    padding-left: 10px;
    font-size: 12px;
}
.product-infomation {
    border-top: 1px solid #e6e6e6;
}
.stock.available {
    color: #b70e0c;
    font-weight: 600;
    border-bottom: 1px solid #e6e6e6;
    padding-bottom: 13px;
}
.label-stock {
    color: #666;
}
.transportation {
    background-color: #ececec;
    text-align: center;
    color: #555;
    padding: 9px 0;
    font-weight: 600;
}
.product-detail .price {
    margin: 4px 0;
	display:inline-block;
}
.product-detail .price ins {
    display: inline-block;
    font-size: 25px;
    font-weight: bold;
}
.product-detail .price del {
    font-size: 13px;
    text-decoration: line-through;
	color: #bbbbbb;
}
.quantity-title {
    font-size: 13px;
    color: #333;
    margin-bottom: 8px;
    font-weight: 600;
}
.buttons-added {
    border: 1px solid #e6e6e6;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    max-width: 102px;
}
.buttons-added input {
    border: none;
    font-size: 14px;
    width: 30px;
    color: #b70e0c;
    font-weight: bold;
    margin-left: 4px;
}
.buttons-added .sign.plus {
    margin-right: 5px;
}
.buttons-added .sign {
    width: 25px;
    height: 25px;
    border: 1px solid #e6e6e6;
    display: inline-block;
    text-align: center;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    color: #666;
    line-height: 23px;
    margin-bottom: 4px;
    margin-top: 4px;
}

.product-detail .tab-content {
	border-right: 1px solid #e6e6e6;
	border-bottom: 1px solid #e6e6e6;
	border-left: 1px solid #e6e6e6;
    padding: 30px 20px 40px 20px;
}

#tabmenu {
	margin-top: 43px;
    border-top: 1px solid #e6e6e6;
    padding-top: 35px;
}
#tabmenu #urun img {
	width:100%!important;
	height:auto;
}
#tabmenu iframe {
	width:100%!important;
}
.product-detail .nav-tabs .nav-link.active {
	background-color: #b70e0c;
    color: #fff;
}
.product-detail .nav-tabs .nav-link {
	font-size: 14px;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    background-color: #eee;
    padding: 10px 18px;
    -webkit-border-top-left-radius: 4px;
    -moz-border-radius-topleft: 4px;
    border-top-left-radius: 4px;
    -webkit-border-top-right-radius: 4px;
    -moz-border-radius-topright: 4px;
    border-top-right-radius: 4px;
}
.product-detail .nav-tabs .nav-item {
	margin-right: 5px;
}
.interest .item {
	border-right: 1px solid #eaeaea;
    border-left: 1px solid #eaeaea;
    border-bottom: 1px solid #eaeaea;
    border-top: 1px solid #eaeaea;
    cursor: pointer;
}
.interest .item:hover {
	-webkit-box-shadow: 0 0 22px 0 #e6e6e6;
    -moz-box-shadow: 0 0 22px 0 #e6e6e6;
    box-shadow: 0 0 22px 0 #e6e6e6;
    z-index: 2;
}
.interest .item a {
	font-size: 12px;
    text-align: left;
    color: #333;
    text-decoration: none;
}
.interest .item .price {
	display: inline-block;
    margin-bottom: 3px;
}
/* basket start */
.basket .continueShopping {
    height: 40px;
    padding: 0;
    font-size: 14px;
    line-height: 39px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    color: #666;
    background-color: #fcfbfa;
    border: 1px solid #e6e6e6;
    display: block;
    letter-spacing: .5px;
}
.continueShopping:active {
    background-image: none;
    outline: 0;
    -webkit-box-shadow: inset 0 3px 5px rgba(0,0,0,.125);
    -moz-box-shadow: inset 0 3px 5px rgba(0,0,0,.125);
    box-shadow: inset 0 3px 5px rgba(0,0,0,.125);
}
.basket  h1 {
    height: 39px;
    color: #333;
    font-size: 23px;
    font-weight: 400;
    margin: 7px 0 0;
}
.basket .infobox {
    border: 1px solid #deddbe;
    background: #fffff1;
    padding: 15px;
}

.basket .infobox i {
    display: inline-block;
    background: url(images/info-icon.png) center center no-repeat;
    width: 17px;
    height: 17px;
    -webkit-background-size: 17px 17px;
    -moz-background-size: 17px 17px;
    -o-background-size: 17px 17px;
    background-size: 17px 17px;
    margin-right: 10px;
    vertical-align: sub;
}
.basket .login-link {
    color: #f68428;
    text-decoration: underline;
    cursor: pointer;
}
.basket .basketlist {
    border: 1px solid #e6e6e6;
    background: #fff;
}
.basket .basketlist hr {
	margin:0;
}
.basket .basketlist .description {
	font-size:12px;
}
.basket .basketlist .deliverydate {
	font-size:13px;
}
.basketlist .title {
	font-size:13px;
}
.basket img.product-image {
    margin: 0 auto;
}
.basket h5 {
    font-size: 12px;
}
.basket .remove-item {
    position: absolute;
    top: 0;
    right: 20px;
}
.basket .item a {
	font-size: 12px;
    color: #333;
}

.btn-color {
	background:#a9a9a9;
	color:#fff;
}
.btn-color:hover {
	background-color: #B70E0C;
    color: #fff;
}
.btn-color.active {
	background-color: #B70E0C;
    color: #fff;
}
.showcase .owl-carousel .owl-item img {
	width:auto;
	height:150px;
	margin:0 auto;
	
}
.bg-gri {
	background-color: #f9f9f9;
	border:1px solid #e6e6e6;
}
/* basket end */

/* account start */
.title {
	color: #000;
    font-size: 19px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 45px;
}
.account .box-wrapper .box {
	border-radius: 4px;
    border: 1px #ddd solid;
    background-color: #fff;
	cursor:pointer;
}
.account .box-wrapper .box:hover {
	background: #eee;
}
.account .box[aria-expanded=true] {
	background: #eee;
}

.account .box .text {
	font-size:13px;
}
.account .box .box-title {
	color: #111;
    font-size: 14px;
}
.account .box img {
	transform:scale(0.9);
	transition:transform 0.5s;
}
.account .box:hover img {
	transform:scale(1);
}
ul.acc-dropdown .dropdown-menu {
	min-width:auto;
	width:auto!important;
}
ul.acc-dropdown li a {
	line-height:22px!important;
}
ul.acc-dropdown li.dropdown a:last-child{
	border-bottom-right-radius: 10px;
	border-bottom-left-radius: 10px;
}
.account .nav-tabs .nav-link.active {
	background-color: #b70e0c;
    color: #fff;
}
/* account end */

