@font-face{
	font-family:admin;
	src:url("../fonts/admin.ttf");
}
@font-face{
    font-family:colab;
    src:url("../fonts/abel.ttf");
}
@font-face{
    font-family:nunito;
    src:url("../fonts/nunito.ttf");
}
*{
	font-family:colab,arial,sans-serif;
	font-size:11pt;
/*	scroll-behavior:smooth;*/
}
body{
	margin:0;
	min-height:100vh;
	box-sizing:border-box;
	padding:0;
}
#body{
	background-size:cover;
	background-repeat:no-repeat;
	display: flex;
}
#loginform{
	width: 40%;
	background-color: #FFF;
	box-sizing:border-box;
}
#loginformside{
	background-color: #000;
	width: 60%;
	background-image: url("../images/supplier/back_home_page.jpg");
	background-size: cover;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	box-sizing: border-box;
}
.cover{
	width: 100%;
	box-sizing: border-box;
	min-height: 100%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	background-color: rgba(0,0,0,0.3);
	padding: 40px;
}
#loginformside h1{
	font-size: 40pt;
	line-height: 40pt;
	color: #FFF;
	margin: 0;
	text-shadow: 0 0 8px rgba(0,0,0,0.7);
}
#loginformside p{
	color: #FFF;
	font-size: 14pt;
	text-shadow: 0 0 8px rgba(0,0,0,0.7);
}
#loginformside a{
	display: block;
	width: 300px;
	margin-top: 30px;
}

#login{
	padding: 20px;
	box-sizing: border-box;
	width: 400px;
	margin: auto;
}
.label{
	margin-top: 10px;
	font-family: nunito,sans-serif;
	font-weight: bold;
	line-height: 18px;
	margin-bottom: 2px;
}
.label>span{
	font-family: inherit;
	font-weight: normal;
}

.input{
	outline: none;
}
.wrap{
	border: solid 1px #000;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.input_with_icon{
	width: 90%;
}
.greenButton{
	background-color: #6ADB36;
	display: inline-block;
	color: #000;
	text-align: center;
	box-sizing: border-box;
	text-decoration: none;
	transition: all 0.3s ease;
	border: none;
	outline: none;
	padding: 10px 10px;
	margin-bottom: 20px;
	cursor: pointer;
	font-family: nunito,sans-serif;
}
.greenButton:hover{
	background-color: #5ACB26;
	color: #000;
}
.whiteButton{
	background-color: #FFF;
	display: inline-block;
	color: #000;
	text-align: center;
	box-sizing: border-box;
	text-decoration: none;
	transition: all 0.3s ease;
	border: none;
	outline: none;
	padding: 10px 10px;
	margin-bottom: 20px;
	cursor: pointer;
	font-family: nunito,sans-serif;
	border: solid 1px #000;
}
.whiteButton:hover{
	background-color: #DDD;
	color: #000;
}
.blackButton{
	background-color: #000;
	color: #FFF;
	text-align: center;
	box-sizing: border-box;
	text-decoration: none;
	transition: all 0.3s ease;
	border: none;
	outline: none;
	padding: 12px 10px;
	margin-top: 20px;
	margin-bottom: 20px;
	cursor: pointer;
	font-family: nunito,sans-serif;
}
.blackButton:hover{
	background-color:#444;
}
.filter_blackButton{
	background-color: #000;
	color: #FFF;
	text-align: center;
	box-sizing: border-box;
	text-decoration: none;
	transition: all 0.3s ease;
	border: none;
	outline: none;
	padding: 9px 10px;
	cursor: pointer;
	font-family: nunito,sans-serif;
}
.filter_blackButton:hover{
	background-color:#444;
}
.large{
	width: 100%;
}
.input{
	box-sizing: border-box;
	border: solid 1px #000;
	padding: 10px;
}
.input_hide{
	box-sizing: border-box;
	border: none;
	padding: 10px;
	outline: none;
}
.h1form{
	font-size: 20pt;
	font-family: nunito,sans-serif;
	margin: 0;
	margin-bottom: 20px;
	line-height: 30px;
}
.h1form>span{
	display: block;
	font-size: inherit;
	font-family: inherit;
	line-height: inherit;
	color: #5ACB26;
}
#logo_acc{
	width: 90%;

}
#parent_logo_acc{
	border-bottom: solid 0.5px #000;
	margin: 20px;
	text-align: center;

}
.anchor{
	color: #000;
	text-decoration: none;
	font-family: nunito, sans-serif;
	transition: all 0.3s ease;
}
.anchor:hover{
	color: #D00;
	font-family: nunito, sans-serif;
}
.forgot_pass{
	display: flex;
	align-items: center;
}
.forgot_pass>img{
	height: 16px;
	margin-right: 6px;
}
#show_hide,#show_hide_1,#show_hide_2{
	width: 22px;
	margin: 0 8px;
	cursor: pointer;
	transition: all 0.3s ease;
}
#show_hide:hover,#show_hide_1:hover,#show_hide_2:hover{
	transform: scale(1.1);
}
.for_small_media{
	display: none;
}
#response_login{
	height: 50px;
	padding: 20px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
#response_login>img{
	width: 50px;
}
.welcome{
	font-family:nunito,sans-serif; 
	font-weight:bold;
	color: #5ACB26;
}
.wrong{
	width: 100%;
	color: #D00;
	text-align: center;
}





/* INDEX */




#header{
	display: flex;
	align-items: center;
	justify-content: space-between;
	background-color: #000;
	padding: 10px;
	box-sizing: border-box;
}
#logout{
	display: flex;
	align-items: center;
	justify-content: center;
}
#logout img{
	width: 24px;
	margin-left: 10px;
	transition:all 0.3s ease;
}
#logout img:hover{
	transform: scale(1.1);
}
.white_anchor{
	color: #FFF;
	text-decoration: none;
}
.white_anchor:hover{
	color: #5ACB26;
	text-decoration: none;
}
#mainbody{
	display: flex;
	align-items: stretch;
	min-height: 100vh;
}
#container{
	width: 80%;
	padding: 10px;
	box-sizing: border-box;
	transition: all 0.3s ease;
	padding-bottom:80px;
}
#welcomeuser{
	display: flex;
	align-items: center;
	color: #AAA;
}
#welcomeuser span{
	color: #5ACB26;
}

/* MENU */

#main{
	width: 20%;
	box-sizing: border-box;
	border-right: solid 0.5px #CCC;
	transition: all 0.3s ease;
	white-space: nowrap;
	padding-bottom:40px;
}
#backmain{
	position: sticky;
	top: 0;
}
*.main_title{
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px;
}
.main_title_wrap{
	display: flex;
	align-items: center;
	font-family: nunito,sans-serif;
	font-weight: bold;
	border-bottom: solid 0.5px #000;
	padding: 8px 0;
	width: 100%;
}
.main_title img{
	width: 20px;
	margin-right: 6px;
}
.main_section{
	/*height: 0;
	overflow: hidden;*/
}
.main_section a{
	color: #000;
	padding: 4px 10px;
	box-sizing: border-box;
	text-decoration: none;
	display: block;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.main_section a:hover{
	background-color: #EEE;
	text-decoration: none;
}
.nbr_main{
	min-width: 14px;
	height: 14px;
	padding: 2px;
	display: flex;
	align-items: center;
	display: flex;
	justify-content: center;
	background-color: #D00;
	border-radius: 10px;
	color: #FFF;
	font-size: 8pt;
	font-family: nunito,sans-serif;
}

#place_to_hamb{
	display: inline-block;
	width: 0;
	height: 26px;
	margin-right: 0;
	cursor: pointer;
	transition: all 0.3s ease;
}
#checkmain{
	display: none;
}
#hamb{
	display: inline-block;
	width: 26px;
	height: 26px;
	background: linear-gradient(to bottom,#FFF 0%,#FFF 20%,transparent 20%, transparent 40%,#FFF 40%,#FFF 60%,transparent 60%,transparent 80%,#FFF 80%,#FFF 100%);
	cursor: pointer;
	position: absolute;
	left: -100px;
	top: 14px;
	transition: all 0.3s ease;
}
#hamb:hover{
	transform: scale(1.1);
}


/* GENERAL */

.h1under{
	border-bottom: solid 0.5px #5ACB26;
	padding-bottom: 6px;
	color: #5ACB26;
	font-size: 18pt;
	display: flex;
	align-items: center;
}

.rowflex_title{
	display: flex;
	align-items: flex-start;
}
.rowflex_title>.rowflex_wrap{
	border-bottom: solid 2px #000;
	font-family: nunito,sans-serif;
	font-weight: bold;
}
.rowflex_title .rowflex_single{
	font-family: nunito,sans-serif;
	font-weight: bold;
}
.rowflex_value{
	display: flex;
	align-items: flex-start;
	border-bottom: solid 0.5px #CCC;
}
.rowflex_wrap{
	display: flex;
	align-items: flex-start;
	width: 100%;
}
.rowflex_single{
	padding: 10px;	
	box-sizing: border-box;
}
#filter_form{
	display: flex;
}
.filter_item{
	margin-right: 10px;
	width: 200px;
}
.pagination{
	margin: 10px 0;
}
.pagination>a{
	border: solid 1px #000;
	min-width: 36px;
	height: 36px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	background-color: #000;
	color: #FFF;
}
.pagination>a[href]{
	background-color: #FFF;
	color: #000;
	transition: all 0.3s ease;
}
.pagination>a[href]:hover{
	background-color: #EEE;
	color: #000;
}
#nbritems{
	display: flex;
	align-items: center;
	margin-top: 10px 0;
}
#nbritems *{
	font-family: nunito, sans-serif;
}
#fonbr{
	margin-bottom: 20px;
}
#nbrpages{
	margin-bottom: 20px;
	color: #888;
}
#nbrpages select{
	border: none;
	outline: none;
	margin: 0 4px;
	background: none;
	width: 50px;
	padding-left: 10px;
	background-color: #EEE;
	border-radius: 10px;
}
.title_resp{
	font-family: nunito,sans-serif;
	font-weight: bold;
	margin: 0;
	display: none;
}
#item_add{
	display: inline-block;
	width: 40px;
	height: 34px;
	box-sizing: border-box;
	margin-left: 16px;
	padding: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	border: solid 2px #000;
	border-radius: 4px;
	color: #000;
	transition: all 0.3s ease;
}
#item_add:hover{
	background-color: #000;
	color:#FFF;
}
.controls{
	text-align: right;
}
.controls_icon{
	width: 18px;
	opacity: 0.8;
	margin-left: 2px;
	cursor: pointer;
	transition: all 0.3s ease;
}
.controls_icon:hover{
	transform: scale(1.1);
	opacity: 1;
}
#confirm_action{
	display: flex;
	align-items: stretch;
	justify-content: space-between;
	width: 300px;
}
.icon_confirm{
	display: inline-block;
	width: 100%;
	padding: 8px 10px;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	color: #FFF;
	transition: all 0.3s ease;
}
.icon_confirm:hover{
	filter: brightness(1.1);
}
.icon_confirm>img{
	height: 20px;
	margin-right: 6px;
	transition: all 0.3s ease;
}
.icon_confirm:hover>img{
	transform: scale(1.2);
}
#ac_conf{
	background-color: #D00;
	margin-right: 2px;
}
#ac_abort{
	background-color: #5ACB26;
	margin-left: 2px;
}
.is_admin{
	filter: grayscale(1);
}
.subh1under{
	font-size: 18pt;
	font-family: nunito,sans-serif;
}

/*General forms*/
.wrapper{ /* Parent of the input tag to force the relavie width */
	width: 500px;
	box-sizing: border-box;
}
.inp_parent{
	width: 100%;
	border: solid 1px #000;
	padding: 6px 6px;
	box-sizing: border-box;
	display: flex;
	margin-bottom: 20px;
}
.inp_self{
	width: 100%;
	border: none;
	outline:none;
	box-sizing: border-box;
	background: none;
}
.button_parent{
	width: 100%;
	border: none;
	padding: 0;
	box-sizing: border-box;
	display: flex;
	margin-bottom: 20px;
}
.button_self{
	width: 100%;
	background-color:#000;
	border: none;
	outline:none;
	color: #FFF;
	padding: 7.2px 6px;
	box-sizing: border-box;
	cursor: pointer;
	font-family: nunito, sans-serif;
	transition: all 0.3s ease;
}
.button_self:hover{
	background-color:#444;
}
#show_hide_yet,#show_hide_yet_1,#show_hide_yet_2{
	width: 22px;
	margin-left: 6px;
	cursor: pointer;
	transition: all 0.3s ease;
}
#show_hide_yet:hover{
	transform: scale(1.1);
}

.checkbox_flex_wrapper{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-bottom: 20px;
}
.checkbox_group{
	margin-top: 8px;
	margin-bottom: 10px;
	width: 48%;
}
.checkbox_group_title{
	font-family: nunito,sans-serif;

}
.checkbox_parent{
	display: flex;
	align-items: center;
	margin: 2px 0;
}
.checkbox_input{
	display: none;
}
.checkbox_label{
	display: inline-block;
	width: 14px;
	height: 14px;
	margin-right: 10px;
	border: solid 2px #000;
	cursor: pointer;
	background-size: cover;
	background-position: 50% 50%;
}
.checkbox_input:checked+.checkbox_label{
	background-color: #000;
	background-image: url("../images/supplier/icon_checked.png");
}
#errorForm{
	color: #D00;
	font-family: nunito,sans-serif;
}
#errorForm>div{
	font-style: italic;
}
.fetch_other_notif{
	text-align: center;
	font-family: nunito,sans-serif;
	color: #000;
	font-weight: normal;
}
.confirm_change{
	color: #5ACB26;
	font-family: nunito, sans-serif;
}
.confirm_cange_assoc{
	font-family: nunito, sans-serif;
}
#footer{
	padding: 10px;
	text-align:right;
	margin-top:-40px;
}
.icon_h1{
	height: 18pt;
	margin-right: 6px;
}
.required_field{
	color: #D00;
}
.explain_field{
	font-family: nunito,sans-serif;
	font-weight: normal;
	font-size: 10pt;
}
#mActive{
	color:#5ACB26;
}
#listing_details{
	font-family: nunito,sans-serif;
	font-size: 16pt;
	font-weight: bold;
	margin: 10px 0;
}
#listing_details>span{
	font: inherit;
	color: #5ACB26;
}
.listing_details_section{
	font-size: 16pt;
	font-family: nunito,sans-serif;
	border-bottom: solid 0.5px #000;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.listing_attributes{
	display: flex;
}
.listing_attributes_item{
	width: 50%;
	padding: 10px;
	box-sizing: border-box;
}
.listing_attributes_item_key{
	font-family: nunito,sans-serif;
	font-weight: bold;
}
.listing_attributes_item_value{

}


/* Album */

#listing_photos{
	border: solid 1px #EEE;
	padding: 10px;
	box-sizing: border-box;
	margin-top: 10px;
}
#album{
	display:flex;
}
#gimage{
	order: 1;
	width:600px;
	min-height:300px;
	position: relative;
}
.next_prev{
	position: absolute;
	width: 50px;
	height: 50px;
	background-color: rgba(0,0,0,0.4);
	top: 20px;
	border-radius: 100px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #FFF;
	cursor: pointer;
	transition: all 0.3s ease;
	font-family: nunito,sans-serif;
}
.next_prev>img{
	width: 20px;
}
.next_prev:hover{
	transform: scale(1.1);
	background-color: rgba(0,0,0,0.6);
}
#toRight{
	right: 20px;
}
#toLeft{
	left: 20px;
}
#toLeft>img{
	transform: rotateY(180deg);
}
#vignettes{
	order: 2;
	width:600px;
	min-height:300px;
	margin-left: 10px;
}
.pvgntt{
	display:inline-flex;
	justify-content: flex-end;
	align-items: flex-start;
	margin:0;
	margin-bottom: 3px;
	width:80px;
	height:80px;
	background-size:cover;
	background-position:center center;
	cursor:pointer;
	transition:all 0.3s ease;
	vertical-align: top;
}
.pvgntt:hover{
	opacity:0.8;
}
.pvgntt>a{
	margin: 4px;
	padding:0;
	width: 20px;
	height: 20px;
	border-radius: 20px;
	visibility: hidden;
	text-align:center;
	text-decoration: none;
	color: #FFF;
	transition: background 0.3s ease;
}
.pvgntt>a>img{
	filter:grayscale(1) brightness(4);
	width: 20px;
	transition: transform 0.3s ease;
}
.pvgntt>a>img:hover{
	transform: scale(1.1);
}
.pvgntt:hover>a{
	visibility: visible;
}
#imimg{
	width:100%;
}
.thumbnail{
	width:60px;
	height:60px;
	border:solid 1px #CCC;
	background-color:#EEE;
	background-size:cover;
	background-position:center center;
}
.tag_elems{
	padding: 4px 10px;
	text-align: center;
	min-width: 60px;
	background-color: #5ACB26;
	color: #FFF;
	border-radius: 8px;
	display: inline-block;
	margin: 6px;
	margin-left: 0;
}
.button_upload_photos{
	padding: 10px;
	background-color: #000;
	border: none;
	color: #FFF;
	transition: all 0.3s ease;
	cursor: pointer;
}
.button_upload_photos:hover{
	background-color: #444;
}
#ulvariants{
	margin: 0;
	padding: 0;
	list-style-position: inside;
}
.tag_elems_anchor{
	padding: 2px 10px;
	text-decoration: none;
	text-align: center;
	min-width: 40px;
	background-color: #5ACB26;
	color: #FFF;
	border-radius: 8px;
	display: inline-block;
	margin: 2px;
	margin-left: 0;
	transition: all 0.3s ease;
}
.tag_elems_anchor:hover{
	background-color: #6ADB36;
}
.nowrap{
	white-space: nowrap;
}
.grpelem{
	display:flex;
	border-bottom: solid 0.5px #000;
}
.grpelemsub{
	display:flex;
	width: 100%;
}
.removevariantoffset{
	display: none;
}
.labelinput{
	margin-right:6px;
	width: 100%;
}
.suppsku{
	cursor: pointer;
	transform: translate(0,38px);
}

.suppsku>img{
	height: 20px;
	transition: all 0.3s ease;
}
.suppsku>img:hover{
	transform: scale(1.2);
}
#addItem{
	width: 40px;
	height: 34px;
	border: solid 2px #000;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 20px;
	margin-top: -10px;
	border-radius: 4px;
	cursor: pointer;
	transition: all 0.3s ease;
}
#addItem:hover{
	background-color: #000;
	color:#FFF;
}
.distotal{
	margin-top: 0px;
	margin-bottom: 20px;
	display: flex;
}
#total{
	margin-left: 114px;
}
.thumbtxt{
	width: 100px;
}
.thumbph{
	height: 80px;
	background-size: cover;
	background-position: 50% 50%;
	background-image:url("../images/no_img.jpg");
	background-color: #EEE;
	margin: 4px 0;
	cursor: pointer;
	transition: all 0.3s ease;
}
.thumbph:hover{
	opacity: 0.8;
}
.ph_supp{
	display: block;
	width: 80px;
	height: 80px;
}
.order_listing_det{
	display: flex;
	margin: 20px 0;
	border-bottom: solid 0.5px #DDD;
}
.order_listing_det_photo{
	margin-right: 10px;
}
.order_listing_det_text{

}
.order_listing_det_text_det{
	display: flex;
}
.kval{
	width: 130px;
}
.vval{
	font-family: nunito,sans-serif;
	font-weight: bold;
}
.radio_parent{
	margin-bottom: 4px;
}
.ra_deliv{
	display: none;
}
.ra_delivered{
	display: inline-flex;
	justify-content: center;
	align-items: center;
	border: solid 2px #000;
	width: 16px;
	height: 16px;
	border-radius: 20px;
	vertical-align: middle;
}
.ra_delivered>div{
	width: 10px;
	height: 10px;
	background-color: transparent;
	border-radius: 20px;
	transition: all 0.3s ease;
}
.ra_deliv:checked+.ra_delivered>div{
	background-color: #000;
}
.ra_delivered+span{
	vertical-align: middle;
}
.insight_det_photo{
	display: block;
	width: 110px;
	height: 110px;
}
#autocvalue{
	background-color: #FFF;
	position: absolute;
	min-width: 160px;
	cursor: pointer;
	border: solid 1px #CCC;
	display: none;
}
.autoc_item{
	padding: 4px;
	display: flex;
	align-items: center;
}
.autoc_item:hover{
	background-color:#F4F4F4;
}
.autoc_item_img{
	height: 40px;
	width: 40px;
	background-size: cover;
	background-position: 50% 50%;
	background-image:url("../images/no_img.jpg");
	background-color: #EEE;
	cursor: pointer;
	transition: all 0.3s ease;
	margin-right: 6px;
}
.export_qr{
	margin-top: 20px;
	text-decoration: none;
	padding: 6px 10px;
	display: inline-flex;
	width: 260px;
	align-items: center;
	justify-content: center;
	gap: 4px;
}
.export_qr img{
	width: 20px;
}

#loading_image{
	background-color:rgba(0,0,0,0.8);
	height:100vh;
	align-items:center;
	justify-content: center;
	position:fixed;
	left:0;
	right:0;
	top:0;
	display:none;
}

#loading_image>div{
	width:300px;
	height:200px;
	display:flex;
	flex-direction:column;
	align-items:center;
	justify-content: center;
	background-color:#FFF;
	box-shadow:0 0 14px rgba(0,0,0,0.8);
}
#loading_image *{
	font-family:nunito,sans-serif;
}
#loading_image img{
	height:40px;
}
#formdz{
	display:flex;
	justify-content:space-between; 
	align-items:center;
}
.dphz{
	display:flex;
	align-items:center;
	color:#000;
	font-family:nunito,sans-serif;
	text-decoration:none;
	transition:all 0.3s ease;
}
.dphz:hover{
	color:#5ACB26;
}
.dphz>img{
	margin-left:6px;
	transition:all 0.3s ease;
}
.dphz:hover>img{
	transform:scale(1.1);
}
#go_back{
	padding:10px;
	background-color:#000;
	color:#FFF;
	text-decoration:none;
	width:160px;
	margin-top:20px;
	text-align:center;
	transition:all 0.3s ease;
}
#go_back:hover{
	opacity:0.8;
}
.icon_alert{
	display:block;
	margin-bottom:10px;
}
.sold_item{
	background-color:#5ACB26;
	width:18px;
	height:18px;
	display:flex;
	justify-content: center;
	align-items: center;
	color:#FFF;
	border-radius:20px;
	margin-top:2px;
}

#err_cont{
	display:flex;
	align-items:center;
	justify-content: center;
	gap:40px;
}

#err_cont>a img{
	display:block;
	margin:10px auto;
}
#err_cont>a{
	color:#000;
	text-align:center;
	text-decoration:none;
	font-family:nunito,sans-serif;
	transition:all 0.3s ease;
}
#err_cont>a:hover{
 	color:#5ACB26;
 	transform:scale(1.05);
}
#pwdnotif{
	background-color:#C00;
	color:#FFF;
	padding:10px;
}
#pwdnotif img{
	width:26px;
	vertical-align:middle;
	margin-right:6px;
}
#pwdnotif span{
	vertical-align:middle;
}
#pwdnotif a{
	display:inline-block;
	vertical-align:middle;
	padding:2px 8px;
	background-color:#FFF;
	color:#C00;
	text-decoration:none;
	border-radius:6px;
	transition:all 0.3s ease;
}
#pwdnotif a:hover{
	background-color:#EEE;
	color:#000;
}
.linkintolist{
	color:#5ACB26;
	text-decoration:none;
	font-family:nunito,sans-serif;
	transition:all 0.3s ease;
}
.linkintolist:hover{
	color:#F80;
	text-decoration:none;
}

#chvar{
	display:none;
}

#labelchvar{
	display:inline-block;
	padding:10px;
	background-color:#5ACB26;
	color:#FFF;
	padding:8px 16px;
	cursor:pointer;
	transition:all 0.3s ease;
	margin:10px 0;
}
#labelchvar:hover{
	background-color:#6ADB36;
}
#chvar+#labelchvar+#filter_form{
	display:none;
}
#chvar:checked+#labelchvar+#filter_form{
	display:flex;
	border-bottom:solid 0.5px #000;
	margin-bottom:20px;
}

.sn_for_client{
	border-top:solid 0.5px #000;
	padding:10px 0;
	margin-top:100px;
	display:flex;
	gap:8px;
	justify-content: center;
}
.sn_for_client a{
	text-decoration:none;
}
.sn_for_client img{
	width:30px;
	transition:all 0.3s ease;
}
.sn_for_client img:hover{
	transform:scale(1.1);
}



