.simple_models_list { 
	display: grid;
	grid-template-columns:repeat(4, 1fr);
	//grid-column-gap:10px;
	overflow: hidden;
	position: relative;
	padding-bottom: 20px;
	&.close{
		//max-height: 128px;
	}
	.show {
		//position: absolute;
		//right:0;
		//bottom:0;
	 	//width: 25%;
	 	margin-top: 10px;
		div {
		    font-family: 'Mulish';
		    font-style: normal;
		    font-weight: 700;
		    font-size: 18px;
		    line-height: 100%;
		    letter-spacing: -0.02em;
	        color: #F44125;
		    cursor: pointer;
			@media (max-width: 639px) {
				& {
				   font-size: 14px;
				}
			}
		}
	}
	//column-count: 4;
	.item { 
	    margin-top: 5px;
		a { 
			// display: flex;
			// justify-content: space-between;
			font-family: Lato;
			font-style: normal;
			font-weight: normal;
			font-size: 18px;
			line-height: 150%;
			color: #000000;
			text-decoration: none;
			@media (max-width: 639px) {
				& {
				   font-size: 14px;
				}
			}
			>span {
				margin-left: 8px;
				color: #8C8C8C;
			}
		}
		&.hidden{
			display: none;
		}		
		&.hiddenMobile{
			display: none;
		}
	}
	.sh_but {
		margin-top: 20px;
		display: flex;
		span{
			font-family: 'Mulish';
			font-style: normal;
			font-weight: 700;
			font-size: 18px;
			line-height: 100%;
			letter-spacing: -0.02em;
			color: #000000;
			
		}
		.ic {
			margin-left: 10px;
			height: 18px;
			width: 18px;
			background: url(/images/icons/small_array_down.svg) no-repeat center center;
		}
	}
}
@media (max-width: 1199px) {
	.simple_models_list {
	    grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 769px) {
	.simple_models_list {
	   // grid-template-columns: repeat(3, 1fr);
	}
}
@media (max-width: 639px) {
	.simple_models_list {
	    grid-template-columns: repeat(2, 1fr);
	}

}
@media (max-width: 540px) {
	// .simple_models_list {
	//     grid-template-columns: repeat(2, 1fr);
	//     grid-column-gap: 5px;
	// }
	// .simple_models_list .item a > span {
	//     margin-left: 0px;
	//     color: #8C8C8C;
	// }
}