/* -------------------------- Табы ------------------------ */

.box {  
	display: none; /* по умолчанию прячем все блоки */
	padding: 10px 0;
}  
.box.visible {  
	display: block; /* по умолчанию показываем нужный блок */  
}  

.section {
	
}

.global.tabs {
    padding: 15px 0 0;
    font-size: 0;
    border-bottom: 2px solid hsl(205deg 9% 41%);
}

.global.tabs li h2 {
    font-family: "Bahnschrift Light SemiCondensed", "Bahnschrift SemiCondensed", "Bahnschrift", "Roboto Condensed", Helvetica, Arial, sans-serif;
    font-stretch: semi-condensed;
    font-weight: 300;
    letter-spacing: 0.3px;
    font-size: 21px;
}

.global.tabs li:hover {
	background: #dedede;
}
.global.tabs li {
    display: inline-block;
    margin-right: 5px;
    /* border: 1px solid #e0e0e0; */
    /* border-bottom: 1px solid #e0e0e0; */
    border-radius: 3px 3px 0 0;
    z-index: 999;
    /* margin-bottom: -2px; */
    padding: 6px 15px 0;
    /* color: gray; */
    background: #ebebeb;
    cursor: pointer;
    font-family: "Bahnschrift Light SemiCondensed", "Bahnschrift SemiCondensed", "Bahnschrift", "Roboto Condensed", Helvetica, Arial, sans-serif;
    font-stretch: semi-condensed;
    font-weight: 300;
    font-size: large;
    transition: all ease 200ms;
}

.global.tabs li.current {
    /* border-bottom: 2px solid #5f6a72; */
    color: white;
    background: hsl(210deg 8% 45%);
    cursor: default;
}

#item_description_tabs > ul > li:before {
	/* content: ''; */
	display: inline-block;
	position: relative;
	margin-right: 2px;
	width: 16px;
	height: 16px;
	-webkit-mask-size: 16px;
	background-color: #636c72;
}
#item_description_tabs > ul > li.current:before {
	background-color: white;
}

#item_description_tabs > ul > li.description:before {
	-webkit-mask-image: url(../images/items/description.svg);
	-webkit-mask-image: url(../images/items/details.svg);
    -webkit-mask-size: 14px;
    width: 14px;
    height: 14px;
}
#item_description_tabs > ul > li.payments:before {
	-webkit-mask-image: url(../images/items/credit-card.svg);
	-webkit-mask-image: url(../images/items/payments.svg);
}
#item_description_tabs > ul > li.cashback:before {
	-webkit-mask-image: url(../images/items/cashback.svg);
	-webkit-mask-image: url(../images/items/money-back.svg);
}
#item_description_tabs > ul > li.help:before {
	-webkit-mask-image: url(../images/items/question.svg);
	-webkit-mask-image: url(../images/items/help.svg);
	-webkit-mask-image: url(../images/items/question-mark.svg);
	/* -webkit-mask-image: url(../images/items/faq.svg); */
}



.box .article img {
    max-width: 100%;
    margin: auto;
    display: block;
}

@media all and (max-width: 640px) {
	.global.tabs li {		
		font-size: small;
		padding: 10px 10px 6px;
	}
}