/*//////////////////////////////////////////*/
/* Item store */
/*//////////////////////////////////////////*/

/* Store m */

.item_store_m{
	background:#ffffff;
	position:relative;
	padding:15px;
	height:430px;
	overflow:hidden;
}
.item_store_m .img_action{
	width:100%;
	height:300px;
}
.item_store_m .gallery{
	display:block;
	width:100%;
	height:300px;
	position:relative;
	overflow: hidden;
}
.item_store_m .gallery .quick{
	position: relative;
	z-index:5;
}
.item_store_m .gallery .quick .img_src{
	width:100%;
	height:300px;
}
.item_store_m .gallery .quick .img_src img{
	display: none !important;
}
.item_store_m .gallery .dots{
	display: flex;
	position:absolute;
	bottom:0;
	left:5px;
	width:calc(100% - 10px);
	height:100%;
	z-index: 10;
	transition:all 150ms linear;
}
.item_store_m .gallery .dots li{
	flex-basis: 100%;
	height:100%;
	padding: 0 5px;
	position: relative;
}
.item_store_m .gallery .dots li:before{
	content:'';
	width:calc(100% - 10px);
	height:6px;
	position: absolute;
	left:5px;
	bottom:10px;
	background:rgba(0, 0, 0, 0.2);
	border-radius: 3px;
	transition:all 150ms linear;
}
.item_store_m .gallery .dots li.active:before{
	background:rgba(130, 180, 60, 0.6);
}
.item_store_m .title{
	width:100%;
	height:100px;
}
.item_store_m .title h2{
	display:block;
	width:100%;
	font-weight: 700;
	padding:0 30px;
}
.item_store_m .details{
	display: none !important;
	border-top:1px solid rgba(0, 0, 0, 0.1);
	margin:0 -15px;
	padding:3px 15px;
}
.item_store_m .details .detail{
	margin-top:10px;
}
.item_store_m .details .detail span{
	display:block;
	font-size:14px;
	margin-bottom:5px;
	color:#b7b7b7;
    line-height: 14px;
	max-width: 100%;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.item_store_m .details .detail span b{
	font-weight:400;
}
.item_store_m .details .detail em{
	display:block;
}
.item_store_m .details .detail strong{
	display:block;
	font-weight:700;
	position:relative;
}
@media (max-width:599px) {
	.item_store_m .details .detail strong{
		font-size:16px;
	}
}

/* Store l */

.item_store_l{
	background:#ffffff;
	position:relative;
	height:400px;

	-webkit-border-radius:0 20px 20px 0;
	-moz-border-radius:0 20px 20px 0;
	border-radius:0 20px 20px 0;
}
@media (max-width:899px) {
	.item_store_l{
		height:500px;
	}
}
.item_store_l .text{
	position:relative;
	width:50%;
	height:400px;
	z-index:10;
	padding:40px 15px 15px;
}
@media (max-width:899px) {
	.item_store_l .text{
		width:100%;
		height:500px;
		text-align:center;
		align-items:flex-end;
	}
}
.item_store_l .text div{
	width:100%;
}
.item_store_l .text strong{
	display:block;
	font-weight:700;
	text-transform:uppercase;
	color:#82b43c;
	margin-bottom:10px;
	font-size:14px;
}
.item_store_l .text h2{
	display:block;
	font-weight:300;
	margin-bottom:10px;
}
.item_store_l .text span{
	display:inline-block;
	line-height:20px;
	position:relative;
	color:#807e7e;
}
.item_store_l .text span.old{
	color:#b7b7b7;
	margin-left:5px;
}
.item_store_l .text span.old:before{
	content:'';
	position:absolute;
	top:9px;
	left:0;
	width:100%;
	height:1px;
	background:#d32f2f;

	-webkit-transform: rotate(-10deg);
	-moz-transform: rotate(-10deg);
	transform: rotate(-10deg);
}
.item_store_l .text span.new{
	margin-left:0;
}
.item_store_l .text .bttn{
	margin-top:30px;
}
.item_store_l .image{
	position:absolute;
	width:60%;
	height:400px;
	top:0;
	right:0;
	z-index:5;

	-webkit-border-radius:0 15px 15px 0;
	-moz-border-radius:0 15px 15px 0;
	border-radius:0 15px 15px 0;
}
@media (max-width:899px) {
	.item_store_l .image{
		width:100%;
		height:300px;
		left:auto;
		right:auto;
	}
}
.item_store_l .image:before{
	content:'';
	position:absolute;
	width:200px;
	height:400px;
	top:0;
	left:0;

	background: -moz-linear-gradient(left, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
	background: -webkit-linear-gradient(left, rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%);
	background: linear-gradient(to right, rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%);
}
@media (max-width:899px) {
	.item_store_l .image:before{
		width:100%;
		height:200px;
		top:auto;
		left:0;
		right:0;
		bottom:0;

		background: -moz-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
		background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%);
		background: linear-gradient(to bottom, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%);
	}
}
/*//////////////////////////////////////////*/
/* Sidebar store */
/*//////////////////////////////////////////*/

/* Instock toggler */

.sidebar .instock{
    display: block;
    position: absolute;
    font-size: 0;
    white-space: nowrap;
    top: -90px;
    left: 0px;
}
@media (max-width:1099px) {
    .sidebar .instock{
        top: 13px;
        right: 15px;
        left: auto;
    }
}
.sidebar .instock span{
    position: relative;
    display: inline-block;
    height:30px;
    line-height:30px;
    vertical-align: middle;
    font-size: 16px;
    font-weight: 700;
    color:#ffffff;
}
@media (max-width:1099px) {
    .sidebar .instock span{
        height:20px;
        line-height:20px;
        color:#323232;
        font-size: 14px;
        font-weight: 400;
    }
}
.sidebar .instock span.toggler{
    width:50px;
    background: #ffffff;
    margin:0 8px;
    border-radius: 15px;
}
@media (max-width:1099px) {
    .sidebar .instock span.toggler{
        background: #82b43c;
        margin:0 4px 0;
    }
}
.sidebar .instock:hover span.toggler{
    -webkit-box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.2);
    -moz-box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.2);
}
.sidebar .instock span.toggler:before{
    content:'';
    position: absolute;
    width:26px;
    height:26px;
    background: #82b43c;
    top:2px;
    border-radius: 15px;
    z-index:10;
    border-radius: 15px;

    -webkit-transition:all 150ms linear;
    -moz-transition:all 150ms linear;
    transition:all 150ms linear;
}
@media (max-width:1099px) {
    .sidebar .instock span.toggler:before{
        height:16px;
        background: #ffffff;
    }
}
.sidebar .instock.off span.toggler:before{
    left:2px;
}
.sidebar .instock.on span.toggler:before{
    left:22px;
}
.sidebar .instock span.toggler:after{
    width:100%;
    height:100%;
    background: rgba(255, 255, 255, 0.4);
    z-index:5;
    top:0;
    left:0;
}

/* Store cart */

.sidebar .store_cart{
	border:2px solid #82b43c;
	margin-bottom:30px;
	overflow:hidden;
}
.sidebar .store_cart strong{
	display:block;
	background:#82b43c;
	padding:15px;
	color:#ffffff;
	font-weight:700;
}
.sidebar .store_cart p{
	display:block;
	padding:15px;
	line-height:20px;
}
.sidebar .store_cart a{
	display:inline-block;
	font-size:14px;
	line-height:18px;
	margin:0 10px 10px;
}

/* Store sections */

.sidebar .store_sections{
	font-weight:700;
}
.sidebar .store_sections .sb_title{
	margin-bottom:10px;
}
.sidebar .store_sections .section_parent{
	position:relative;
    z-index:10;
}
.sidebar .store_sections .section_parent a{
    display:block;
	padding:8px 0 8px 30px;
	line-height:24px;
	color:#807e7e;
	position:relative;
    z-index: 5;
}
.sidebar .store_sections .section_parent a:hover,
.sidebar .store_sections .section_parent.current a{
	background:#82b43c;
	color:#ffffff;
}
.sidebar .store_sections .section_parent a:before{
	content:'';
	display:block;
	width:10px;
	height:10px;
	position:absolute;
	left:10px;
	top:15px;
	background:#82b43c;

	-webkit-border-radius:50%;
	-moz-border-radius:50%;
	border-radius:50%;
}
.sidebar .store_sections .section_parent a:hover:before,
.sidebar .store_sections .section_parent.current a:before{
    background:#ffffff;
}
.sidebar .store_sections .section_child{
	position:relative;
    z-index: 5;
}
.sidebar .store_sections .section_child:before,
.sidebar .store_sections .section_child:after{
    content:'';
    display: block;
    position:absolute;
    background:#807e7e;
}
.sidebar .store_sections .section_child:before{
    width:10px;
    height:1px;
    left:15px;
    top:12px;
}
.sidebar .store_sections .section_child:after{
    width: 1px;
    height: 26px;
    left: 15px;
    top: -13px;
}
.sidebar .store_sections .section_child a{
    display:inline-block;
	line-height:26px;
	margin-left:22px;
    padding:0 8px;
	color:#807e7e;
	position:relative;
    font-weight:400;
}
.sidebar .store_sections .section_child a:hover,
.sidebar .store_sections .section_child.current a{
	text-decoration: underline;
}

/* Store toggling */

.sidebar .store_sections .sb_title span{
	display:inline-block;
	height:18px;
	line-height:18px;
	padding:0 7px;
	background: #82b43c;
	color:#ffffff;
	font-size:10px;
	font-weight: 400;
	text-transform: uppercase;
    vertical-align: top;
    cursor: pointer;

	-webkit-border-radius:9px;
	-moz-border-radius:9px;
	border-radius:9px;
}
.sidebar .store_sections .sb_title span i:first-of-type,
.sidebar .store_sections .sb_title span.closed i:last-of-type{
	display:none;
}
.sidebar .store_sections .sb_title span.closed i:first-of-type{
	display:inline-block;
}
.sidebar .store_sections .section_parent span{
	display:block;
	width:30px;
	height:40px;
	padding:11px 6px;
	text-align: center;
	position:absolute;
	left:0;
	top:0;
	z-index: 10;
	cursor: pointer;
}
.sidebar .store_sections .section_parent span i{
	display:block;
	width:18px;
	height:18px;
	line-height:18px;
	background: #82b43c;
	color:#ffffff;
	font-size: 0;

	-webkit-border-radius:50%;
	-moz-border-radius:50%;
	border-radius:50%;
}
.sidebar .store_sections .section_parent span i:before{
    font-family: 'Font Awesome 5 Pro';
    font-weight: 400 !important;
    font-size: 14px;
}
.sidebar .store_sections .section_parent span i:first-of-type:before{
    content:'\f067';
}
.sidebar .store_sections .section_parent span i:last-of-type:before{
    content:'\f068';
}
.sidebar .store_sections .section_parent a:hover + span i,
.sidebar .store_sections .section_parent.current span i{
	background: #ffffff;
	color:#82b43c;
}
.sidebar .store_sections .section_parent span i:first-of-type,
.sidebar .store_sections .section_parent span.closed i:last-of-type{
	display:none;
}
.sidebar .store_sections .section_parent span.closed i:first-of-type{
	display:block;
}
/*//////////////////////////////////////////*/
/* Archive store */
/*//////////////////////////////////////////*/

/* Archive store / slider */

.archive_store .slider{
	margin-bottom:30px;
	background:#ffffff;
	position:relative;
	padding:15px;
}
.archive_store .slider button.slick-arrow{
	display:block;
	width:40px;
	height:40px;
	position:absolute;
	bottom:10px;
	z-index:10;
	border:0;
	cursor:pointer;
	background:#dcdcdc;
	color:#807e7e;
	font-size:16px;
}
.archive_store .slider button.slick-arrow.prev{
	left:15px;
}
.archive_store .slider button.slick-arrow.next{
	left:70px;
}
.archive_store .slider button.slick-arrow:hover{
	-webkit-transform: scale(1.2);
	-moz-transform: scale(1.2);
	transform: scale(1.2);
}
.archive_store .slider .slick-dots{
	position:absolute;
	right:10px;
	bottom: 23px;
	font-size: 0;
}
@media (max-width:899px) {
	.archive_store .slider .slick-dots{
		display:none !important;
	}
}
.archive_store .slider .slick-dots li{
	display: inline-block;
	margin:0 5px;
}
.archive_store .slider .slick-dots li button{
	display: block;
	width:14px;
	height:14px;
	border-radius: 10px;
	border:0;
	cursor: pointer;
	border:2px solid #82b43c;
	background: #ffffff;
	font-size: 0;
	padding:0;
}
.archive_store .slider .slick-dots li.slick-active button{
	background: #82b43c;
}

/* Archive store / intro */

.archive_store .intro{
	margin-bottom:15px;
	background:#f9f9f9;
	position:relative;
	padding:15px 15px 15px 80px;
	line-height:24px;
}
@media (max-width:1099px) {
	.archive_store .intro{
		margin-bottom:30px;
	}
}
.archive_store .intro i{
	position:absolute;
	top:0;
	left:15px;
	bottom:0;
	width:50px;
	color:#dcdcdc;
	font-size:30px;
}
.archive_store .intro span{
	color:#b7b7b7;
}
.archive_store .intro ul{
	display: block;
    margin-top:-10px;
}
.archive_store .intro ul li{
	display: inline-block;
    padding-top:10px;
}
.archive_store .intro ul li a{
	display: inline-block;
	border:1px solid #82b43c;
	background: #ffffff;
	color:#82b43c;
    padding:0 7px;

	-webkit-border-radius:15px;
	-moz-border-radius:15px;
	border-radius:15px;
}
.archive_store .intro ul li a:hover{
    background: #82b43c;
    color:#ffffff;
}

/* Archive store / various */

.archive_store .item_store_m{
	margin-bottom:30px;
}
.archive_store .nav_dropdown{
	margin-bottom:30px;
}
.archive_store .catalogues{
	margin-bottom:30px;
}
.archive_store .no_items{
	margin-bottom:30px;
}
