.visioselect .liste_container {
	position: absolute;
	z-index: 1;
    background: #ffffff;
    width: 300px;
    height: 350px;
    overflow: hidden;
    border: 1px solid #ededed;
    visibility: visible;
    transition: height .5s ease;
}

.visioselect .liste_container.hidden {
	display: block;
	height: 0;
	visibility: hidden;
}

.visioselect .liste {
	width: 100%;
    height: 315px;
    overflow: auto;
}

.visioselect .select_input {
	width: 90%;
    background: #ffffff;
    padding: 2px .5rem;
    box-sizing: border-box;
    color: #717171;
    cursor: pointer;
    border: 1px solid #5f83b9;
}

.visioselect .select_input:after {
    content: '\f107';
    font-family: 'fontAwesome';
    float: right;
}

.visioselect .liste_container .select_title,
.visioselect .liste_container .top_val {
    text-align: center;
    padding: 7px 0;
    border-bottom: 1px solid #ededed;
    height: 20px;
    overflow: hidden;
}

.visioselect .liste_container .select_title {
	font-weight: 600;
}

.visioselect .liste_container .select_title .select_close {
	float: right;
    margin-top: -7px;
    width: 11px;
    height: 11px;
    padding: 10px 12px 14px 12px;
    background: #000000;
    color: #ffffff;
    cursor: pointer;
}

.visioselect .liste_container li {
	text-align: center;
    padding: 5px 0;
}

.visioselect .liste_container li:not(.select_title):hover,
.visioselect .liste_container li.selected:not(.select_title) {
	background: #5f83b9;
    color: #ffffff;
    cursor: pointer;
}

@media screen and (max-device-width: 1100px)  { 
	.visioselect .select_input {
		padding: 2px .3em;
		font-size: .8em;
	}
}

@media screen and (max-device-width: 900px)  {
	.visioselect .select_input {
		margin: 10px 0;
	}

	.visioselect .liste_container {
		background: rgba(0,0,0,.9);
	    width: 100%;
	    height: 100%;
	    position: fixed;
	    top: 0;
	    left: 0;
	    z-index: 1001;
	    box-sizing: border-box;
	    padding: 30px;
	    transition: opacity .5s ease;
	}

	.visioselect .liste_container.hidden {
		opacity: 0;
	}

	.visioselect .liste{
		background: #ffffff;
		height: calc(100% - 67px);
		visibility: visible;
	}

	.visioselect .liste_container .select_title {
		background: #ffffff;
	}
}