.good_line_add{
	display: none;
}

@media (min-width: 1120px){
	.good_line_add{
		width: 360px;
		height: 288px;
		position: relative;
		border: 5px dashed #2B4B9B;
		display: block;
		cursor: pointer;
	}
	.good_line_add::before{
		content: '';
		display: block;
		background: #2B4B9B;
		width: 30px;
		height: 160px;
		border-radius: 3px;
		position: absolute;
		left: 160px;
		top: 64px;
	}
	.good_line_add::after{
		content: '';
		display: block;
		background: #2B4B9B;
		width: 160px;
		height: 30px;
		border-radius: 3px;
		position: absolute;
		left: 95px;
		top: 129px;
	}
	.good_line_add_input_wrap{
		margin-bottom: 10px;
	}
	.good_line_add_input{
		height: 40px;
		padding: 0px 5px;
		font-size: 14px;

		background: rgb(43 75 155 / 10%);
		display: block;
		width: 100%;
		font-family: 'Montserrat';
	}
	.good_line_remove_label{
		padding-top: 20px;
	}
	.good_line_remove_name{
		line-height: 30px;
		padding: 20px 0px;
	}
	.good_line_remove_icon_wrap{
		position: relative;
		opacity: 0;
		transition: opacity 0.3s;
	}
	.site_list_elem:hover .good_line_remove_icon_wrap {
		opacity: 1;
	}
	.good_line_remove_icon{
		position: absolute;
		top: 5px;
		right: 5px;
		width: 25px;
		height: 25px;
		cursor: pointer;
		background: url(/static/img/header/close.png) center top/auto no-repeat;
		z-index: 2;
	}
}