@charset "utf-8";
/* CSS Document */
#catalog_area {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-content: flex-start;
	padding-bottom: 100px;
}

#medianList {
	display: flex;
	flex-wrap: wrap;
}

#medianList .price_pharams{
	width: max-content;
}
#medianList .price_cell{
	width: 15em;
	min-width: 10em;
	padding: 1em;
}


@media screen and (min-width:600px){

	.up_craft_area, .cyItems {
		max-width: 720px;
		overflow-y: scroll;
		display: flex;
		flex-wrap: wrap;
		justify-content: flex-start;
		align-content: flex-start;
		padding-bottom: 20px;
	}

	.cyItems {
		max-height: 216px;
	}

	.up_craft_area{
		max-height: 216px;
	}
	.all_res_area {
		max-width: 720px;
		max-height: 180px;
		overflow-y: auto;
		display: flex;
		flex-wrap: wrap;
		justify-content: flex-start;
		align-content: flex-start;
		/*padding-bottom: 20px;*/
	}
	.crresults {
		/*max-width: 250px;*/
	}
	.craftinfo > div {
	width: 40%;
	min-width: 250px;
	display: flex;
	flex-direction: column;
	/*justify-content: space-between;*/
}
}
@media screen and (max-width:600px){
	
		.up_craft_area, .cyItems {
		max-width: 720px;
		max-height: 225px;
		overflow-x: auto;
		overflow-y: hidden;
		display: flex;
		flex-direction: column;
		flex-wrap: wrap;
		justify-content: flex-start;
		align-content: flex-start;
		padding-bottom: 20px;
		
	}

	.up_craft_area{

	}

	.all_res_area {
		/*max-width: 720px;*/
		max-height: 180px;
		overflow-y: hidden;
		overflow-x: scroll;
		display: flex;
		flex-wrap: wrap;
		flex-direction: column;
		justify-content: flex-start;
		align-content: flex-start;
		/*padding-bottom: 20px;*/
	}
	.matrow {
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	max-width: 240px;
	overflow-x: auto;
	}
	
	.craftinfo > div {
	width: 100%;
	min-width: 250px;
	display: flex;
	flex-direction: column;
	/*justify-content: space-between;*/
}

}

.item_descr_area {
	width: 320px;
	text-align: justify;
}

#catalog_right {
	width: 100%;
	max-width: 700px;
}

.crftarea {
	display: flex;
	justify-content: flex-start;
}
.matrow {
	display: flex;
	justify-content: flex-start;
}



.main_itim {
	color: #FFFFFF;
	background-color: #877575;
	background: no-repeat;
	background-size: contain;
	background-position: center;
	width: 70px;
	height: 70px;
	border: 1px solid white;
	border-radius: 2px;
	transition-duration: 200ms;
	cursor: pointer;
}

.crresults {
	display: flex;
	justify-content: space-between;
	cursor: default;

}

#isbuy {
	display: flex;
	justify-content: space-between;
	/*padding: 0 20px;*/
}

#isbuy .navicon {
	margin: 0;
}
#isbuy .navicon:hover {
	margin: 0;
	box-shadow: 0 0 3px 0 lightgreen;
}

.isby {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
}

#isbuy input[type="radio"] + label{
	opacity: 0.5;
}

#isbuy input[type="radio"]:checked + label{
	border-radius: 10px;
	box-shadow: 0px 0px 4px 2px green;
	opacity: 1;
}

.craftinfo {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;

}

.craftCard {
	background-color: rgba(211, 238, 144, 0.06);
	padding: 1em 2em;
	border-radius: 1em;
	box-shadow:  0 0 1em 0 rgba(0, 0, 0, 0.09);
	margin: 1em 0;
}

.prefType{
	height: 2em;
	text-align: center;
	vertical-align: center;
}

.flip-list-move {
	transition: transform 0.3s ease;
}

.bounce-enter-active {
	animation: bounce-in 0.5s;
}
.bounce-leave-active {
	animation: bounce-in 0.5s reverse;
}
@keyframes bounce-in {
	0% {
		transform: scale(0);
	}
	50% {
		transform: scale(1.25);
	}
	100% {
		transform: scale(1);
	}
}