.catalogs_add_button{
	display: none;
}

.flipbook_wrap{
	display: none;
	position: fixed;
	width: 100vw;
	height: 100vh;
	z-index: 100;
	top: 0;
	left: 0;
	transition: opacity 0.3s;
	opacity: 0;
}

@media(min-width:1120px){
	.catalogs_add_button{
		display: flex;
		align-items: center;
		justify-content: center;
		width: 200px;
		height: 40px;
		margin: 30px auto;
	}
	.history_add_input_wrap{
		height: 40px;
		line-height: 40px;
		margin-bottom: 10px;
		background: rgb(43 75 155 / 10%);
	}
	.slider_add_input{
		height: 40px;
		padding: 0px 5px;
		font-size: 14px;
		font-family: 'Montserrat';
		width: 100%;
	}
	.slider_add_input_wrap{
		height: 40px;
		line-height: 40px;
		margin-bottom: 10px;
	}
	.catalogs_remove_label{
		padding-top: 20px;
	}
	.catalogs_remove_name{
		line-height: 30px;
		padding: 20px 0px;
	}
	.catalogs_remove_icon_wrap{
		position: relative;
		opacity: 0;
		transition: opacity 0.3s;
	}
	.site_list_elem:hover .catalogs_remove_icon_wrap{
		opacity: 1;
	}
	.catalogs_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;
	}
}