
:root{
	--sorting-body-color: rgb(245,245,245);
	--sorting-box_box-color: white;
	--sorting-box_box-box-show: rgba(0,0,0,.3);
	--sorting-box_box-hover-box-show: rgba(0,0,0,.2);
	--text-color: black;
	--text3-color: rgba(0,0,0,0.5);
	--sorting-box_image-color: rgb(230,230,230);
}
.dark{
	--sorting-body-color: rgb(34,35,40);
	--sorting-box_box-color: rgb(44, 42, 53);
	--sorting-box_box-box-show: rgba(0, 0, 0, 0.5);
	--sorting-box_box-hover-box-show: rgba(0, 0, 0, 0.4);
	--text-color: white;
	--text3-color: rgba(255, 255, 255, 0.5);
	--sorting-box_image-color: rgb(20, 20, 20);
}
.sorting_box{
	position:absolute;
	text-align: center;
	width: 100%;
	top: 150px;
	left: 0;
}
body{
	background-color: var(--sorting-body-color);
	transition: .5s;
}
.box_box{
	position: relative;
	display: inline-block;
	width: 300px;
	height: 250px;
	margin-left: 15px;
	margin-right: 15px;
	margin-bottom: 30px;
	background: var(--sorting-box_box-color);
	box-shadow: var(--sorting-box_box-box-show) 0px 5px 10px;
	transition: box-shadow 0.25s, background .5s;
	cursor: pointer;
}
.box_box:hover {
	box-shadow: var(--sorting-box_box-hover-box-show) 0px 10px 30px;
}
.box_textbox{
	text-align: left;
	padding-left: 20px;
	padding-top: 165px;
}
.box_text1{
	font-size: 15px;
	line-height: 0px;
	font-weight: bold;
	color: var(--text-color);
	transition: .5s;
}
.box_text2{
	font-size: small;
	line-height: 10px;
	white-space: nowrap;
	color: var(--text-color);
	transition: .5s;
}
.box_text3{
	font-size: 11px;
	line-height: 15px;
	color: var(--text3-color);
	transition: .5s;
}
.box_image{
	position: absolute;
	width: 100%;
	height: 155px;
	background-color: var(--sorting-box_image-color);
	background-repeat: no-repeat;
	background-size: cover;
}

#box_image_1{background-image: url("../images/box_CPS.png");}
#box_image_2{background-image: url("../images/ossicles.png");}
#box_image_3{background-image: url("../images/box_REACTION.png");}
#box_image_4{background-image: url("../images/box_COVID-19.png");}