.last {
	display: none;
}

.calendar_menu.active {
	background: #dd5251;
    color: #ffffff;
}
.disp_none{
	display: none!important;
}
.show_more{
	display: flex;
	align-items: center;
	justify-content: center;
	background: #20788c;
	transition: 300ms;
	text-transform: uppercase;
	text-align: center;
	color: #fff;
	height: 20px;
	width: 140px;
	margin-right: 10px;
	font-weight: 700;
	font-size: 10px;
	cursor: pointer;
	border-radius: 2px;
}
.block_show{
	display: flex;
	justify-content: flex-end;

}
.show_more:hover {
	background: #dd5251;
}

/******************************************/
.mob_calendar_filter_wrap {
	display: flex;
	position: relative;
	justify-content: space-between;
}
.mob_calendar_select_wrap {
	width: calc(50% - 5px);
	position: relative;
}
.mob_calendar_selected_list_wrap {
	position: absolute;
	background: #fff;
	z-index: 9;
	left: 0;
	right: 0;
	box-shadow: 2px 5px 7px 0 #bbb;
}
.mob_calendar_selected_items {
	padding: 10px;
	cursor: pointer;
}
.mob_calendar_selected_active_wrap {
	background: #F4F4F4;
	line-height: 110%;
	color: #151B20;
	padding: 15px 15px 15px 20px;

	text-transform: uppercase;
	cursor: pointer;
	position: relative;
	height: 41px;
	display: flex;
	align-items: center;
    font-size: 14px;
    font-weight: 700;
    color: #151b20;
    font-family: "Bebas Neue";
}
.mob_calendar_selected_active_wrap:after {
	content: "";
	width: 0;
	height: 0;
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
	border-top: 7px solid #DD5251;
	position: absolute;
	right: 35px;
	top: 40%;
}


.mob_calendar_selected_list_wrap{
	display: none;
}
.mob_calendar_filter_wrap{
	display: none;
}
.border_bottom_tb{
	border-bottom: 1px solid #000000;
}
@media screen and (max-width: 600px){
	.mob_calendar_filter_wrap{
		display: flex;
		margin-bottom: 20px;
	}
	.calendar__items.filter_turnirs{
		display: none;
	}
}