/*//////////////////////////////////////////*/
/* Item brands */
/*//////////////////////////////////////////*/

/* Brands m */

.item_brands_m{
	display:block;
	background:#ffffff;
	position:relative;
	padding:15px;
}
.item_brands_m img{
	display:block;
	width:100%;
	height:auto;

	-webkit-transform: scale(0.8);
	-moz-transform: scale(0.8);
	transform: scale(0.8);
}
.item_brands_m:hover img{
	-webkit-transform: scale(0.7);
	-moz-transform: scale(0.7);
	transform: scale(0.7);
}
.item_brands_m.fade img{
	opacity:0.4;

	-webkit-filter:grayscale(100%);
	-moz-filter:grayscale(100%);
	filter:grayscale(100%);
}
.item_brands_m .title{
	position:absolute;
	bottom:15px;
	left:15px;
	right:15px;
	opacity:0;
}
.item_brands_m:hover .title{
	opacity:1;
}
.item_brands_m .title h2{
	display:block;
	font-weight:700;
}

/* Brands l */

.item_brands_l{
	display:block;
	background:#ffffff;
	position:relative;
	padding:15px 15px 15px 180px;
	min-height:180px;
}
@media (max-width:599px) {
	.item_brands_l{
		padding:180px 15px 15px 15px;
		text-align:center;
	}
}
.item_brands_l .thumb{
	display:block;
	width:150px;
	height:150px;
	position:absolute;
	top:15px;
	left:15px;
}
@media (max-width:599px) {
	.item_brands_l .thumb{
		left:50%;
		margin-left:-75px;
	}
}
.item_brands_l .thumb img{
	display:block;
	width:150px;
	height:150px;
}
.item_brands_l strong{
	display:block;
	font-weight:700;
}
.item_brands_l strong h2{
	display:inline-block;
}
.item_brands_l p{
	display:block;
	margin:15px 0;
}
/*//////////////////////////////////////////*/
/* 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;
}
/*//////////////////////////////////////////*/
/* Single store */
/*//////////////////////////////////////////*/

/* Single store / overview */

.single_store .overview{
	background:#ffffff;
	padding:15px;
	margin-bottom:45px;
	position:relative;
	overflow:hidden;
}
.single_store .overview .store_closed{
	padding:10px;
	margin-bottom:10px;
	background:#d32f2f;
	color:#ffffff;
	line-height: 20px;
}
.single_store .overview .store_closed strong{
	font-weight:700;
}
.single_store .overview .details{
	padding:5px 15px 0 0;
	margin-bottom:30px;
}
@media (max-width:899px) {
	.single_store .overview .details{
		padding:0;
		text-align:center;
	}
}
.single_store .overview .details h1{
	display: block;
    width: 100%;
    font-weight: 700;
	margin-bottom:5px;
}
.single_store .overview .details .section{
	font-size:14px;
    line-height: 20px;
	color:#807e7e;
}
.single_store .overview .details .section a{
	display: inline-block;
	margin-left:3px;
}
.single_store .overview .details .badge{
	display: inline-block;
	margin: 20px 0 15px 0;
	position:relative;
	background:#82b43c;
}
.single_store .overview .details .badge.false{
	display: block;
	height:1px;
	background:#dcdcdc;
}
.single_store .overview .details .badge:before{
	content:'';
	position:absolute;
	top:-9px;
	left:15px;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 10px 10px 10px;
	border-color: transparent transparent #82b43c transparent;
}
.single_store .overview .details .badge.false:before{
	display:none;
}
@media (max-width:899px) {
	.single_store .overview .details .badge:before{
		left:50%;
		margin-left:-7px;
	}
}
.single_store .overview .details .badge p{
	padding: 3px 10px;
	line-height:20px;
	font-size:14px;
	color:#ffffff;
	font-weight:700;
}
.single_store .overview .details .meta{
	margin-bottom:25px;
}
.single_store .overview .details .meta .item{
	padding-top:5px;
    line-height: 26px;
	max-width: 100%;
	max-height:57px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
@media (max-width:599px) {
	.single_store .overview .details .meta .item{
		white-space: normal;
	}
}
.single_store .overview .details .meta .item div{
	display:inline-block;
}
@media (max-width:599px) {
	.single_store .overview .details .meta .item div{
		display:block;
		max-width: 100%;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
	}
}
.single_store .overview .details .meta .item .key{
	font-size:14px;
	color:#b7b7b7;
}
.single_store .overview .details .meta .item .value{
	display:inline-block;
}
.single_store .overview .details .meta .item .value.ttp{
	cursor:help;
}
.single_store .overview .details .meta .item .value.bold{
	font-weight:700;
}
.single_store .overview .details .meta .item .value.num em{
	display:inline-block;
	min-width: 34px;
	font-weight:700;
	background:#82b43c;
	color:#ffffff;
	padding:0 8px;
	margin: 0;
}
.single_store .overview .details .note{
	line-height:22px;
}
.single_store .overview .details .note strong{
	font-weight:700;
}
@media (max-width:599px) {
	.single_store .overview .details .note{
		padding:15px;
		text-align:center;
	}
}
.single_store .overview .details .note span{
	display:block;
	font-size:14px;
	color:#b7b7b7;
	line-height:18px;
	padding-top:5px;
}
.single_store .overview .details .add2cart .submit{
	margin-left:15px;
}
@media (max-width:599px) {
	.single_store .overview .details .add2cart .submit{
		display:block;
		margin:15px auto 0;
	}
}
.single_store .overview .details .buy_in_credit{
	display:inline-block;
	margin-top:15px;
    position:relative;
    padding:8px 50px 8px 15px;
    border:1px solid rgba(0, 0, 0, 0.1);
}
.single_store .overview .details .buy_in_credit span{
	display:block;
	font-size:14px;
	color:#b7b7b7;
    padding-top:4px;
}
.single_store .overview .details .buy_in_credit strong{
	display:block;
	width:40px;
    height:100%;
	position:absolute;
    right:0;
    top:0;
    bottom:0;
    border-left:1px solid rgba(0, 0, 0, 0.1);
}
.single_store .overview .details .buy_in_credit strong i{
	display:block;
	width:40px;
	height:40px;
	line-height:40px;
    text-align:center;
	position:absolute;
    top:calc(50% - 20px);
    right:0;
}
.single_store .overview .details .to_versions{
	display:block;
	position:relative;
	border:2px solid #82b43c;
	padding:15px 65px 15px 15px;
	overflow:hidden;
	font-weight:700;
	line-height:24px;
}
.single_store .overview .details .to_versions i{
	width:50px;
	position:absolute;
	top:0;
	bottom:0;
	font-size:20px;
	background:#82b43c;
	color:#ffffff;
	right:0;
}

/* Single store / images */

.single_store .overview .thumbnail{
	border:1px solid rgba(0, 0, 0, 0.1);
	overflow:hidden;
	margin-bottom:30px;
}
.single_store .overview .slider{
	border:1px solid rgba(0, 0, 0, 0.1);
	margin-bottom:30px;
}
.single_store .overview .slider .arrow{
	display:block;
	position:absolute;
	top:10px;
	width:40px;
	height:40px;
	border:0;
	background:#ffffff;
	padding:0;
	cursor:pointer;
	z-index:1000;
	font-size:20px;
}
.single_store .overview .slider .arrow:hover{
	background:#82b43c;
	color:#ffffff;
}
.single_store .overview .slider .arrow.disabled{
	display:none !important;
}
.single_store .overview .slider .arrow.prev{
	left:10px;
}
.single_store .overview .slider .arrow.next{
	right:10px;
}
.single_store .overview .slider .dots{
	position:absolute;
	bottom:-22px;
	left:0;
	right:0;
	line-height:10px;
	height:10px;
	overflow:hidden;
}
.single_store .overview .slider .dots li{
	display:inline-block;
	margin:0 5px;
	height:10px;
}
.single_store .overview .slider .dots li button{
	display:block;
	width:10px;
	height:10px;
	text-indent:-9999px;
	border:0;
	padding:0;
	margin:0;
	background:#dcdcdc;
	cursor:pointer;

	-webkit-border-radius:5px;
	-moz-border-radius:5px;
	border-radius:5px;
}
.single_store .overview .slider .dots li.slick-active button{
	background:#82b43c;
}
.single_store .overview .thumbs{
	margin:0 25px 30px;
	max-height:86px;
	overflow: hidden;
	visibility: hidden;
}
.single_store .overview .thumbs.slick-initialized{
	overflow: visible;
	visibility: visible;
}
.single_store .overview .thumbs.no_arrows{
	margin:0 -5px 30px;
}
.single_store .overview .thumbs .thumb{
	display:inline-block;
	margin: 0 5px;
	border:1px solid rgba(0, 0, 0, 0.1);
}
.single_store .overview .thumbs .thumb img{
	display:block;
	width:100%;
	height:auto;
}
.single_store .overview .thumbs .thumb .video{
	display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
	aspect-ratio: 1 / 1;
	position: relative;
	overflow: hidden;
	background-color: #323232;
}
.single_store .overview .thumbs .thumb .video i{
	position: relative;
	z-index: 10;
	color: #ffffff;
	font-size: 20px;
}
.single_store .overview .thumbs .thumb .video div{
	position: absolute;
	top: -5%;
	left: -5%;
	width: 150%;
	height: 150%;
	z-index: 5;
	opacity: 0.6;
	animation: videothumb 5000ms infinite;
	background-repeat: no-repeat;
	background-position: center;
}
@keyframes videothumb {
	25% { top: -15%; left: -25%; }
	50% { top: -40%; left: -40%; }
	75% { top: -20%; left: -10%; }
}
.single_store .overview .thumbs button{
	display:block;
	position:absolute;
	top:0;
	bottom:0;
	width:20px;
	border:1px solid rgba(0, 0, 0, 0.1);
	background:#ffffff;
	padding:0;
	cursor:pointer;
}
.single_store .overview .thumbs button:hover{
	border:1px solid #82b43c;
	background:#82b43c;
	color:#ffffff;
}
.single_store .overview .thumbs button.disabled{
	border:1px solid rgba(0, 0, 0, 0.1) !important;
	background:#ffffff !important;
	color:#ffffff !important;
	cursor:default;
}
.single_store .overview .thumbs button.prev{
	left:-25px;
}
.single_store .overview .thumbs button.next{
	right:-25px;
}
.single_store .overview .description{
	margin:0 -15px -15px;
}

/* Single store / versions */

.single_store .versions{
	background:#ffffff;
	margin-bottom:45px;
	padding:15px 0;
}
.single_store .versions .title{
	margin-bottom:15px;
	padding:0 15px;
}
.single_store .versions .title h1,
.single_store .versions .title h2{
	display:block;
	font-weight:700;
}
.single_store .versions .title span{
	display:block;
	line-height:22px;
}
.single_store .versions .title span .how_to_credit{
	cursor:help;
}
.single_store .versions .cards{
	border-top:1px solid rgba(0, 0, 0, 0.1);
}
.single_store .versions .cards .version{
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	position: relative;
	padding: 15px;
}
@media (max-width:899px) {
	.single_store .versions .cards .version{
		display:block;
		text-align:center;
	}
}
.single_store .versions .cards.highlight .version{
	border-top: 2px solid #82b43d;
	border-bottom: 2px solid #82b43d;
}
.single_store .versions .cards .version .thumb{
	position: relative;	
	display: block;
	width: 100px;
	flex-shrink: 0;
	border: 1px solid rgba(0, 0, 0, 0.1);
}
@media (max-width:899px) {
	.single_store .versions .cards .version .thumb{
		position:relative;
		margin:0 auto 15px;
		width:150px;
	}
}
.single_store .versions .cards .version .thumb img.empty{
	display:block;
	width:100%;
	height:100%;
}
.single_store .versions .cards .version .thumb .video{
	display: block;
}
.single_store .versions .cards .version .thumb .video a{
	display: block;
	line-height: 30px;
	color: #bd081d;
	border-top: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 0 0 15px 15px;
	font-size: 12px;
	text-transform: uppercase;
	font-weight:500;
	white-space: nowrap;
}
.single_store .versions .cards .version .inner{
	width:100%;
	padding:0 15px;
	flex-shrink: 1;
}
@media (max-width:899px) {
	.single_store .versions .cards .version .inner{
		padding:0;
	}
}
.single_store .versions .cards .version .inner .desc{
	position:relative;
	line-height:24px;
}
.single_store .versions .cards .version .inner .desc strong{
	display:block;
	font-size: 14px;
	color: #b7b7b7;
}
.single_store .versions .cards .version:target .inner .desc strong{
	display:inline-block;
	font-weight:700;
	color: #82b43c;
	position:relative;
	padding-left:18px;
}
.single_store .versions .cards .version:target .inner .desc strong:before{
	content:'';
	display:block;
	width:12px;
	height:12px;
	background: #82b43c;
	position:absolute;
	top:5px;
	left:0;

	-webkit-border-radius:50%;
	-moz-border-radius:50%;
	border-radius:50%;

	-webkit-animation: pulse 600ms linear infinite;
	-moz-animation: pulse 600ms linear infinite;
	animation: pulse 600ms linear infinite;
}
.single_store .versions .cards .version .inner .desc p{
	display:block;
	padding-bottom:5px;
}
.single_store .versions .cards .version .inner .desc span{
	display:inline-block;
	position:relative;
	padding:0 15px 0 0;
	font-size: 14px;
}
@media (max-width:899px) {
	.single_store .versions .cards .version .inner .desc span{
		padding:0 5px;
	}
}
.single_store .versions .cards .version .inner .desc span i{
	padding-right:3px;
	color:#82b43c;
}
.single_store .versions .cards .version .inner .meta{
	position:relative;
	padding-top:20px;
}
.single_store .versions .cards .version .inner .meta:before{
	content:'';
	position:absolute;
	left:0;
	top:10px;
	height: 2px;
	width: 100px;
	background:#82b43c;
}
@media (max-width:899px) {
	.single_store .versions .cards .version .inner .meta:before{
		left:50%;
		height: 1px;
		margin-left:-50px;
	}
}
.single_store .versions .cards .version .inner .meta .item{
	display:inline-block;
	line-height:22px;
	padding-right:10px;
	font-size: 14px;
}
@media (max-width:899px) {
	.single_store .versions .cards .version .inner .meta .item{
		padding:0 5px;
	}
}
.single_store .versions .cards .version .inner .meta span{
	display:inline-block;
	color: #b7b7b7;
}
.single_store .versions .cards .version .inner .meta strong{
	display:inline-block;
	font-weight:700;
}
.single_store .versions .cards .version .inner .meta strong.status{
	font-size:12px;
	line-height:18px;
	margin:2px 0;
	padding:0 7px;
	color: #ffffff;
	cursor:help;
}
.single_store .versions .cards .version .inner .meta strong.status.instock{
	background:#82b43c;
	box-shadow: 0 0 0 rgba(130, 180, 60, 0.4);

	-webkit-animation: flashing 2s infinite linear;
	-moz-animation: flashing 2s infinite linear;
	animation: flashing 2s infinite linear;
}
.single_store .versions .cards .version .inner .meta strong.status.expected{
	background:#e6ab51;
}
.single_store .versions .cards .version .inner .meta strong.status.preorder{
	background:#b7b7b7;
}
.single_store .versions .cards .version .inner .meta strong.status.not-available,
.single_store .versions .cards .version .inner .meta strong.status.discontinued{
	font-size: 14px;
	color: #323232;
	padding:0;
}
.single_store .versions .cards .version .action{
	display:block;
}
@media (max-width:899px) {
	.single_store .versions .cards .version .action{
		margin:15px auto 0;
	}
}
.single_store .versions .more{
	padding:30px 0 15px;
}

/* Single store / help */

.single_store .store_help{
	margin-bottom:45px;
}
.single_store .store_help ul{
	display: flex;
	justify-content: space-between;
}
.single_store .store_help ul li{
	display:block;
	width:20%;
	border-right:1px solid rgba(0, 0, 0, 0.1);
}
.single_store .store_help ul li:last-child{
	border-right:0;
}
.single_store .store_help ul li a{
	display:block;
	padding:15px;
	color: #b7b7b7;
}
.single_store .store_help ul li a:hover,
.single_store .store_help ul li.active a{
	color: #82b43c;
}
.single_store .store_help ul li a i{
	display:block;
	margin:0 auto;
	font-size:24px;
}
.single_store .store_help ul li a span{
	display:block;
	font-weight:700;
	text-transform:uppercase;
	font-size:14px;
	margin-top:10px;
}
@media (max-width:899px) {
	.single_store .store_help ul li a span{
		display:none;
	}
}
.single_store .store_help .item{
	padding:15px 15px 5px;
	line-height:24px;
	border-top:1px solid rgba(0, 0, 0, 0.1);
}
.single_store .store_help .item em{
	display:block;
	font-weight:700;
	text-transform:uppercase;
	margin-bottom:20px;
}
@media (min-width:1100px) {
	.single_store .store_help .item em{
		display:none;
	}
}
.single_store .store_help .item p{
	display:block;
	margin-bottom:10px;
}
.single_store .store_help .item strong{
	font-weight:700;
}

/* Single store / item */

.single_store .item_brands_l{
	margin-bottom:45px;
}

/* Single store / discussion */

.single_store .discussion{
	margin-bottom:45px;
}

/* Single store / catalogues */

.single_store .catalogues{
	margin-bottom:45px;
}

/* Single store / nav_dropdown */

.single_store .nav_dropdown{
	margin-bottom:30px;
}
