.__link{
	font-size: 1em;
	padding: 0;
	border: 0;
	color: inherit;
	background-color: transparent;
	cursor: pointer;
	transition: color 0.2s ease-out, opacity 0.2s ease-out;
}

.__link.underline:not(:hover){
	text-decoration: underline;
}

.__link.hover-underline:hover, .__link.hover-underline.is-active{
	text-decoration: underline;
}

.__link.mod-hover-opacity:hover, .__link.mod-hover-opacity.is-active{
	opacity: 0.65;
}

.__link.mod-hover-opacity:active{
	opacity: 0.45;
}

.__link.mod-green-hover:hover, .__link.mod-green-hover.is-active{
	color: var(--color-green);
}

.__link.mod-green-hover:hover .__svg{
	fill: var(--color-green);
}

.__link.mod-grey-hover:hover, .__link.mod-grey-hover.is-active{
	color: var(--color-grey);
}

.__link.mod-light-grey-hover:hover{
	color: var(--color-light-grey);
}

.__link.mod-light-grey-hover:hover .__svg{
	fill: var(--color-light-grey);
}

.__link > span{
	vertical-align: middle;
}



.__footnote{
	font-size: 0.778em;
	white-space: nowrap;
	width: 1.4em;
	height: 1.4em;
	line-height: 1.4em;
	text-align: center;
	position: absolute;
	right: -0.2em;
	top: -0.2em;
	color: #ffffff;
	background-color: #E75B5B;
	border-radius: 50%;
	transition: all 0.2s ease-out;
}

.__footnote:empty{
	transform: scale(0);
}









.__icon{
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	vertical-align: middle;
	box-sizing: border-box;
	text-align: center;
	border: 0 solid transparent;
	width: 1.667em;
	height: 1.667em;
	padding: 0;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	background-size: contain;
	outline: none;
	transition: color 0.2s ease-out,
		background 0.2s ease-out,
		opacity 0.2s ease-out,
		box-shadow 0.2s ease-out;
}

.__icon.mod-medium{
	width: 3rem;
	height: 3rem;
}

.__icon > .__svg{
	box-sizing: border-box;
	width: 90%;
	height: 90%;
}












.__svg{
	font-size: 1em;
	position: relative;
	display: inline-block;
	vertical-align: middle;
	box-sizing: border-box;
	height: 1em;
	width: 1em;
	transition: all 0.2s ease-out;
}

.__svg.fill-transparent{
	fill: transparent;
}

.__svg.fill-white{
	fill: #ffffff;
}

.__svg.fill-black{
	fill: var(--color-black);
}

.__svg.fill-dark-green{
	fill: var(--color-dark-green);
}

.__svg.mod-icon-small{
	width: 2.4em;
	height: 2.4em;
}

.__video{
	object-fit: cover;
	position: absolute;
	top: 0%;
	right: 0%;
	bottom: 0%;
	left: 0%;
	width: 100%;
	height: 100%;
}






.__button{
    display: inline-flex;
    align-items: center;
    justify-content: center;

	/*display: inline-block;*/
    box-sizing: border-box;
    vertical-align: middle;

	position: relative;
	
	font-size: 1em;
	font-weight: 400;
	
	color: transparent;
	text-align: center;
	
	padding: 0.5em 1.5em;
	
	border: 1px solid transparent;
	border-radius: 0.5em;
	
	background-color: transparent;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	background-size: 1em;
	
	outline: none;
	cursor: pointer;
	
	width: fit-content;
	height: 2.6em;
	
	transition: color 0.2s ease-out,
		background 0.2s ease-out,
		opacity 0.2s ease-out,
		box-shadow 0.2s ease-out;
}

.__button.mod-small{
	padding: 0.2em 1em;
	height: 2.6em;
}

.__button.mod-medium{
	min-width: 15em;
	max-width: 25em;
}

.__button.mod-large{
	padding: 0.75em 2em;
	height: 4.5em;
}

.__button.mod-icon-small{
	width: 2.6em;
	height: 2.6em;
	padding: 0;
}

.__button > span{
	vertical-align: middle;
}

.__button:disabled{
	opacity: 1;
	cursor: default;
}


.__button.mod-black{
	color: #ffffff;
	background-color: var(--color-black);
	border-color: var(--color-black);
}

.__button.mod-black:hover{
	opacity: 0.75;
}

.__button.mod-black .__svg{
	fill: #FFFFFF;
}

.__button.mod-grey{
	color: #ffffff;
	background-color: var(--color-grey);
	border-color: var(--color-grey);
}

.__button.mod-grey:not(:disabled):hover{
	background-color: var(--color-grey-hover);
	border-color: var(--color-grey-hover);
}

.__button.mod-stroke-grey{
	color: var(--color-grey);
	border-color: var(--color-grey);
}


.__button.mod-brown{
	color: #4F3E35;
	border: 1px solid #B8AB9B;
	background: rgba(184, 171, 155, 0.63);
}

.__button.mod-brown:hover{
	background: rgba(184, 171, 155, 0.85);
}


/*
.__button.mod-dark{
	color: #ffffff;
	background-color: var(--color-dark);
	border-color: var(--color-dark);
}

.__button.mod-dark:hover{
	opacity: 0.75;
}

.__button.mod-stroke-black{
	color: var(--color-black);
	border-color: var(--color-black);
}

.__button.mod-stroke-black:hover, .__button.mod-stroke-black.is-active{
	color: #ffffff;
	background-color: var(--color-black);
	border-color: var(--color-black);
}

.__button.mod-stroke-black .__svg{
	fill: var(--color-black);
}

.__button.mod-stroke-black:hover .__svg{
	fill: #ffffff;
}

.__button.mod-white{
	color: var(--color-black);
	background-color: #ffffff;
	border-color: #ffffff;
}

.__button.mod-white:hover{
	color: #ffffff;
	border-color: var(--color-black);
	background-color: var(--color-black);
}

.__button.mod-stroke-white{
	color: #ffffff;
	border-color: #ffffff;
}

.__button.mod-stroke-white:hover{
	color: var(--color-black);
	background-color: #ffffff;
}

.__button.mod-stroke-white .__svg{
	fill: #ffffff;
}

.__button.mod-stroke-white:hover .__svg{
	fill: var(--color-black);
}

.__button .__svg.arrow-right{
	width: 1.5em;
}
*/




















.__input{
	display: inline-flex;
    align-items: center;
    justify-content: center;

	/*display: inline-block;*/
	box-sizing: border-box;
	vertical-align: middle;
	
	font-size: 1em;
	font-weight: 400;
	/*line-height: 1.2em;*/
	
	color: transparent;
	/*text-align: left;*/
	
	padding: 0.5em 1em;
	
	border: 1px solid transparent;
	border-radius: 0.5em;
	background-color: transparent;
	
	/*width: 100%;*/
	max-width: 23em;
	height: 2.6em;
	
	transition: color 0.2s ease-out, background 0.2s ease-out;
}

.__input.error{
	/* box-shadow: 0em 0em 0em 2px #E31E25 !important; */
	border-color: #E31E25 !important;
}

textarea.__input{
	padding-top: 0.7em;
	min-height: 5em;
	max-width: 40em;
}


.__input.mod-green{
	color: #000000;
	border-color: var(--color-green);
	background-color: var(--color-yellow);
}


.__input.mod-light-grey{
	color: #000000;
	border-color: var(--color-light-grey);
	background-color: var(--color-light-grey);
}

.__input.mod-stroke-white{
	color: #ffffff;
	border-color: #ffffff;
}

.__input.mod-stroke-black{
	color: #000000;
	border-color: #000000;
}

.__input.mod-stroke-grey{
	color: #000000;
	border-color: rgb(128 128 128 / 50%);
}

.__input.mod-white{
	border-radius: 2em;
	color: var(--color-black);
	border-color: #ffffff;
	background-color: #ffffff;
}











.__label{
	position: relative;
	display: inline-block;
	vertical-align: middle;
	box-sizing: border-box;
	cursor: pointer;
	width: 100%;
}

.__label input[type=checkbox], .__label input[type=radio]{
	display: none;
}

.__label input + .__label_for{
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: center;
}

.__label input + .__label_for .check{
	font-size: 1em;
	position: relative;
	width: 1.4em;
	height: 1.4em;
	border: 1px solid var(--color-grey);
	background-color: #ffffff;
	margin-right: 0.75em;
	flex-shrink: 0;
}

.__label input[type="checkbox"] + .__label_for .check{
	border-radius: 0.5em;
}

.__label input[type="radio"] + .__label_for .check{
	border-radius: 50%;
}

.__label input + .__label_for .check::after{
	content: "";
	display: block;
	position: absolute;
	top: 0.25em;
	right: 0.25em;
	bottom: 0.25em;
	left: 0.25em;
	border-radius: inherit;
	background-color: #828282;
	transition: all 0.2s ease-out;
	transform: scale(0);
}

.__label input:checked + .__label_for .check::after{
	transform: scale(1);
}

.__label input + .__label_for.--color-green .check{
	background-color: #F1F1E9;
}

.__label input + .__label_for.--color-green .check::after{
	background-color: #768374;
}

.__label input:checked + .__label_for.--underline .content {
	text-decoration: underline;
}



.__label input + .__label_size{
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: center;
	min-width: 2.2rem;
	border: 1px solid #f1f1f1;
	box-sizing: border-box;
	padding: 0.25rem 0.25rem;
}

.__label input:checked + .__label_size{
	border-color: var(--color-black);
}

.__label input:disabled + .__label_size{
	opacity: 0.5;
}

.__label input + .__label_color{
	display: inline-block;
	box-sizing: border-box;
	width: 2rem;
	height: 2rem;
	background-color: #909090;
	border-radius: 50%;
	border: 2px solid transparent;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: 50%;
}

.__label input:checked + .__label_color{
	border-color: var(--color-black);
}

.__label input + .__label_color.moss{
	background-image: url(/wp-content/themes/afina/assets/images/colors/moss.png);
}

.__label input + .__label_color.multicam{
	background-image: url(/wp-content/themes/afina/assets/images/colors/multicam.png);
}

.__label input + .__label_color.pixel{
	background-image: url(/wp-content/themes/afina/assets/images/colors/pixel.png);
}












.__ul li{
	display: inline-block;
	box-sizing: border-box;
	vertical-align: middle;
	width: 100%;
}

.__ul li:first-child{
	padding-top: 0em !important;
	padding-left: 0em !important;
}

.__ul.mod1 li{
	padding-top: 0.25em;
}

.__ul.mod2 li{
	padding-top: 0.5em;
}

.__ul.mod3 li{
	padding-top: 0.75em;
}

.__ul.mod4 li{
	padding-top: 1.0em;
}

@media (min-width: 1200px){
	.__ul.mod-horizontal li{
		width: auto;
	}
	.__ul.mod-horizontal li:not(:first-child){
		margin-left: 1.5em;
	}
}


.__tags{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
	gap: 1rem;
}













._toggle_block .header{
	padding-bottom: 0.4em;
	margin-bottom: 0.4em;
	border-bottom: 1px solid #84C8DD;
	cursor: pointer;
}

._toggle_block .header .name{
	position: relative;
	padding: 0em 1em 0em 0em;
	font-weight: 600;
}

._toggle_block .header .name:before, ._toggle_block .header .name:after{
	position: absolute;
	top: 0%;
	right: 0%;
	bottom: 0%;
	width: 0.5em;
	color: #84C8DD;
	font-size: 1.8em;
	line-height: 0.8em;
	text-align: center;
	transition: opacity 0.2s ease-out;
	opacity: 0.5;
}

._toggle_block .header:hover .name:before, ._toggle_block .header:hover .name:after{
	opacity: 1;
}

._toggle_block.active .header .name:before{
	content: "-";
}

._toggle_block:not(.active) .header .name:after{
	content: "+";
}

._toggle_block .content{
	display: none;
	padding-bottom: 0.5em;
}

._toggle_block.active .content{
	display: block;
}



._popup{
	position: relative;
}

._popup .header .icon{
	font-size: 0.6em;
	margin-left: 0.5em;
}

._popup .content{
	position: absolute;
	right: 0%;
	top: 120%;
	/* width: 14em; */
	/* max-width: 100%; */
	z-index: 10;
	text-align: left;
	padding: 0.5em 0em;
	border-radius: 5px;
	background-color: #ffffff;
	box-shadow: 0 0.1875rem 0.5625rem rgba(0, 0, 0, .15);
	visibility: hidden;
	opacity: 0;
	transition: opacity 0.2s ease-out;
}

._popup.right_popup .content{
	left: initial;
	right: 0%;
}

._popup.active .content{
	visibility: visible;
	opacity: 1;
}

._popup .content a{
	display: block;
	padding: 0.5em 1em;
}

._popup .content a:hover{
	background-color: #f1f1f1;
}

._popup .content a.active{
	font-weight: 600;
}



.__select{
	display: inline-block;
	position: relative;
	font-size: 1em;
	width: 100%;
	height: 2.6em;
	padding: 0;
	border-radius: 0.5em;
}

.__select .arrow{
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 2.6em;
	z-index: -1;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.2s ease-out;
}

.__select .arrow .__svg{
	transform: rotate(90deg);
}

.__select.is-active{
	z-index: 10;
}

.__select.is-active .arrow{
	transform: rotate(180deg);
}

.__select .value, .__select .values div{
	padding: 0.5em 1em;
}

.__select .value, .__select .values{
	font-size: 1em;
	color: var(--color-dark);
	border: 1px solid rgb(128 128 128 / 50%);
	border-radius: 0.5em;
}

.__select .value{
	display: block;
    width: 100%;
	height: inherit;
	padding: 0.5em 2em 0.5em 1em;
	background-color: transparent;
}

.__select .value:disabled{
	background-color: #e2e2e2;
}

.__select .value[readonly]{
	cursor: default;
}

.__select input[value=""] + .value[readonly]{
	opacity: 0.75;
}

.__select.error{
	
}

.__select .values{
	display: none;
	visibility: hidden;
	position: absolute;
    top: 100%;
    left: 0;
    right: 0;
	max-height: 16em;
    overflow: auto;
	cursor: default;
	border-radius: 0 0 0.5em 0.5em;
	background-color: #ffffff;
	z-index: 10;
	opacity: 0;
}


.__select.is-active .values{
	display: block;
	visibility: visible;
	opacity: 1;
}

.__select .values.up{
	top: inherit;
	bottom: 100%;
}

.__select.is-active .value{
	border-bottom-right-radius: 0;
	border-bottom-left-radius: 0;
}

.__select .values div{
	min-height: 1.18em;
	transition: color 0.1s ease-out, background 0.1s ease-out;
}

.__select .values div:hover, .__select .values div.is-active{
	background-color: #f1f1f1;
}

.__select .values div[data-value=""]{
	opacity: 0.5;
}

.__select .values::-webkit-scrollbar{
	width: 0.5em;
}

.__select .values::-webkit-scrollbar-button{
	background-color: transparent;
	height: 1.5em;
}

.__select .values::-webkit-scrollbar-track{
	background-color: transparent;
}

.__select .values::-webkit-scrollbar-thumb{
	border-radius: 1em;
	background-color: #c1c1c1;
}

.__select .values::-webkit-scrollbar-thumb:hover{
	background-color: #909090;
}



















.__cartquantity{
	display: inline-flex;
	flex-direction: row;
	align-items: center;
	box-sizing: border-box;
	vertical-align: middle;
	border: 1px solid rgb(128 128 128 / 50%);
	border-radius: 0.5em;
	width: 100%;
	max-width: 6em;
	height: 2.6em;
	transition: background 0.2s ease-out;
}

.__cartquantity > [name="quantity"],
.__cartquantity > [name="minus"],
.__cartquantity > [name="plus"]{
	font-size: 1em;
	font-weight: 600;
	display: inline-block;
	box-sizing: border-box;
	vertical-align: middle;
	width: 25%;
	text-align: center;
	border: 1px solid transparent;
	padding: 0em 0em;
	/*height: 2em;*/
	color: inherit;
	background-color: transparent;
	transition: color 0.2s ease-out, background 0.2s ease-out;
}

.__cartquantity > input[name="quantity"]{
	width: 50%;
}

.__cartquantity > input[name="minus"]{
	/* border-radius: 0.5em 0em 0em 0.5em; */
}

.__cartquantity > input[name="plus"]{
	/* border-radius: 0em 0.5em 0.5em 0em; */
}

.__cartquantity > input[name="minus"], .__cartquantity > input[name="plus"]{
	cursor: pointer;
	border-radius: 50%;
}

.__cartquantity > input[name="minus"]:hover, .__cartquantity > input[name="plus"]:hover{
	color: #ffffff;
}



.__scroll::-webkit-scrollbar{
	width: 0.5em;
	height: 0.5em;
}

.__scroll::-webkit-scrollbar-button{
	background-color: transparent;
	display: none;
}

.__scroll::-webkit-scrollbar-track{
	background-color: transparent;
}

.__scroll::-webkit-scrollbar-thumb{
	border-radius: 1em;
	background-color: #c1c1c1;
}

.__scroll::-webkit-scrollbar-thumb:hover{
	background-color: #909090;
}






.__modal{
	visibility: hidden;
	opacity: 0; 
	display: flex;
	flex-direction: row;
	align-items: center;
	box-sizing: border-box;
	position: fixed;
	top: 0em;
	left: 0em;
	right: 0em;
	bottom: 0em;
	padding: 2em 1em;
	background-color: rgba(0,0,0,0.7);
	backdrop-filter: blur(2px);
	z-index: 1000;
	overflow: auto;
}

.__modal_window{
	box-sizing: border-box;
	position: relative; 
	margin: auto;
	width: 100%; 
	max-width: 35em;
	min-height: 5em;
	background-color: #ffffff;
	padding: 0em;
	border-radius: 0em;
	visibility: hidden; 
	opacity: 0; 
	transition: opacity 0.2s;
	box-shadow: 0em 0em 1em rgb(0 0 0 / 50%);
	z-index: 1001;
	flex: 1;
}

.__modal_close{
	font-size: 2em;
	position: absolute;
	top: 0.5em;
	right: 0.5em;
	border-radius: 50%;
	padding: 0.5em;
	cursor: pointer;
	z-index: 1;
	opacity: 0.5;
	transition: opacity 0.2s;
}

.__modal_close:before, .__modal_close:after{
	content: "";
	position: absolute;
	top: 45%;
	left: 5%;
	width: 90%;
	height: 2px;
	background: rgb(128 128 128 / 90%);
}

.__modal_close:before {transform: rotate(45deg);}
.__modal_close:after {transform: rotate(-45deg);}

.__modal_close:hover{
	opacity: 1;
}


body.is-modal{
	overflow: hidden;
}

body.is-modal .__modal.is-active{
	transition-delay: 0s;
	visibility: visible;
	opacity: 1;
}

body.is-modal .__modal.is-active .__modal_window{
	visibility: visible;
	opacity: 1;
}









.__breadcrumbs{
	/*font-size: 0.889em;*/
	font-weight: 300;
}

.__breadcrumbs > *{
	opacity: 0.75;
}
.__breadcrumbs a:hover{
	opacity: 1;
}



.__items .__item{
	box-sizing: border-box;
	position: relative;
	transition: background 0.2s ease-out,
		box-shadow 0.2s ease-out,
		color 0.2s ease-out;
}


.__item_link{
	position: absolute;
	top: 0%;
	right: 0%;
	bottom: 0%;
	left: 0%;
	z-index: 20;
	border-radius: inherit;
	cursor: pointer;
	background-color: rgb(100 100 100 / 15%);
	transition: all 0.2s ease-out;
	opacity: 0;
}

.__item_link:hover{
	opacity: 1;
}

.__item_link.action{
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
    top: 50%;
    left: 50%;
	right: initial;
	bottom: initial;
    padding: 0;
	width: 5rem;
	height: 5rem;
    box-sizing: border-box;
    background-color: rgb(0 0 0 / 50%);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    opacity: 0.5;
    cursor: pointer;
}

.__item_link.action:hover{
	opacity: 1;
}

.__item_link.action .__svg{
	width: 50%;
	height: 50%;
}




.__section{
	box-sizing: border-box;
	padding: 0 0;
}

.__section.mod-small{
	margin: 2rem 0;
}

.__section.mod-large{
	margin: 4rem 0;
}






.__map, .__map [data-map]{
    position: absolute;
    top: 0em;
    right: 0em;
    bottom: 0em;
    left: 0em;
	overflow: hidden;
    background-color: #f1f1f1;
}



.__the_content{
	max-width: 55rem;
	/*font-weight: 300;*/
}

.__the_content > p{
	margin: 0.75em 0;
}

.__the_content > *:first-child{
	margin-top: 0;
}

.__the_content > *:last-child{
	margin-bottom: 0;
}

.__the_content strong{
	font-weight: 500;
}

.__the_content h1,
.__the_content h2,
.__the_content h3,
.__the_content h4,
.__the_content h5,
.__the_content h6{
	font-weight: 500;
	margin: 1.5em 0 0.5em;
}

.__the_content ul{
	list-style: disc;
}

.__the_content ol{
	list-style: decimal;
}

.__the_content ul, .__the_content ol{
	margin: 0 0 0 1.2em;
}

.__the_content ul li, .__the_content ol li{
	margin: 0.5em 0;
}

.__the_content a{
	text-decoration: underline;
}

.__the_content a:hover{
	text-decoration: none;
}

.__the_content table{
	width: 100%;
	border-collapse: collapse;
}

.__the_content table th{
	font-weight: 500;
}

.__the_content table th, .__the_content table td{
	border-top: 1px solid rgba(95, 94, 92, 0.60);
	border-bottom: 1px solid rgba(95, 94, 92, 0.60);
	padding: 0.75em 0.25em;
	text-align: center;
}









.__paginate .page-numbers{
	display: inline-block;
	box-sizing: border-box;
	vertical-align: middle;
	margin: 0em 0.15em;
}

.__paginate .page-numbers.current{
	width: 1.5em;
	height: 1.5em;
	background-color: var(--color-green);
	color: #ffffff;
	text-align: center;
	line-height: 1.5em;
	border-radius: 50%;
}

.__paginate .page-numbers.prev, .__paginate .page-numbers.next  {
	display: none;
}



.__rating_stars{
	position: relative;
}

.__rating_stars label input[type=radio]{
	display: none;
}

.__rating_stars label{
	cursor: pointer;
}

.__rating_stars label .__svg{
	fill: transparent;
}

.__rating_stars[data-value="1"] label:nth-of-type(1) .__svg,
.__rating_stars[data-value="2"] label:nth-of-type(1) .__svg,
.__rating_stars[data-value="2"] label:nth-of-type(2) .__svg,
.__rating_stars[data-value="3"] label:nth-of-type(1) .__svg,
.__rating_stars[data-value="3"] label:nth-of-type(2) .__svg,
.__rating_stars[data-value="3"] label:nth-of-type(3) .__svg,
.__rating_stars[data-value="4"] label:nth-of-type(1) .__svg,
.__rating_stars[data-value="4"] label:nth-of-type(2) .__svg,
.__rating_stars[data-value="4"] label:nth-of-type(3) .__svg,
.__rating_stars[data-value="4"] label:nth-of-type(4) .__svg,
.__rating_stars[data-value="5"] label:nth-of-type(1) .__svg,
.__rating_stars[data-value="5"] label:nth-of-type(2) .__svg,
.__rating_stars[data-value="5"] label:nth-of-type(3) .__svg,
.__rating_stars[data-value="5"] label:nth-of-type(4) .__svg,
.__rating_stars[data-value="5"] label:nth-of-type(5) .__svg{
	/*fill: var(--color-yellow);*/
}

.__label > input[type="radio"]:not(:checked) + .__link{
	opacity: 0.5;
}


