
.select-container
{
	/*max-width: 300px;*/
	cursor: default;
	position: relative;
	text-align: left;
}

.select-container select 
{
	display: none;
}


.select-placeholder
{
	position: relative;
	display: block;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.select-placeholder:after
{
	content: "\25BC";
	display: inline-block;
	position: absolute;
	height: 100%;
	top: 0;
	padding: 10px;
	right: 0;
	color: #cacaca;
}
.select-placeholder:hover:after {}


/*main dropdown block*/
.select-container > ul
{
	display: none;
	width: 100%;
	/*max-height: 200px;
	overflow-y: auto;*/
	border: 1px solid #CCC;
	position: absolute;
	z-index: 10;
	top:100%;
	box-shadow: 1px 1px 3px rgba(0,0,0,.3);
	-webkit-box-shadow: 1px 1px 3px rgba(0,0,0,.3);
	-moz-box-shadow: 1px 1px 3px rgba(0,0,0,.3);
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	border-radius: 0 0 5px 5px;
	-webkit-border-radius: 0 0 5px 5px;
	-moz-border-radius: 0 0 5px 5px;
}

/*Optiongroup*/
.select-container li > span
{
	display: block;
	font-style: italic;
	border-top: 1px solid #ccc;
	color: #777;
}
.select-container ul
{
	margin: 0;
	padding: 0;
	list-style: none;
}

/*Options*/
.select-container li
{
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	padding: 10px;
	border-top: 1px dotted transparent;
	border-bottom: 1px dotted transparent;
}
.select-container li[data-value]:hover {}

/*Selected*/
.select-container li._selected {}
/*Disabled*/
.select-container li._disabled
{
	font-style: italic;
	color: #737373;
}


.select-container._active .select-placeholder
{
	background: #e6e6e6;
	color: #232323;
	border-radius: 5px 5px 0 0;
	-webkit-border-radius: 5px 5px 0 0;
	-moz-border-radius: 5px 5px 0 0;
	box-shadow: inset 0 3px 5px rgba(0,0,0,.125);
	-webkit-box-shadow: inset 0 3px 5px rgba(0,0,0,.125);
	-moz-box-shadow: inset 0 3px 5px rgba(0,0,0,.125);
}
.select-container._active .select-placeholder:after
{
	content: "\25B2";
}
.select-container._active ul
{
	display: block;
	animation: select-effect .1s;
	-webkit-animation: select-effect .1s;
}
@-webkit-keyframes select-effect {
	from {opacity: 0; }
	to {opacity: 1; }
}
@keyframes select-effect {
	from {opacity: 0; }
	to {opacity: 1; }
}


.modal-substrate
{
	position: fixed;
	z-index: 110;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgb(0, 0, 0);
	background-color: rgba(0, 0, 0, .4);
}

.modal-window
{
	position: relative;
	top: 10%;
	margin: auto;
	background-color: #fefefe;
	/*border: 2px solid #888;
	border-radius: 4px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;*/
	box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
	-webkit-box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
	-moz-box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
}

.modal-header 
{
	/*padding: 15px;*/
	border-bottom: 1px solid #e5e5e5;
	font-weight: bold;
	font-size: 1.3em;
	/*background-color: #F1F4F7;*/
	color: #3B475F;
	border-radius: 4px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
}
.modal-header span
{
	padding: 10px 20px;
	display: inline-block;
}
.modal-header button
{
	padding: 0px 10px;
	float: right;
	color: #000;
	opacity: .2;
	cursor: pointer;
	border: 0;
	background: none;
	font-weight: bold;
	font-size: 21px;
}

.modal-body 
{
	padding: 10px 16px;
	overflow: auto;
}

.modal-footer 
{
	padding: 10px;
	border-top: 1px solid #e5e5e5;
}


.modal-substrate ._fade
{
	display: none;
}
.modal-substrate ._fade._in
{
	display: block;
	animation: modal-animatetop .3s;
	-webkit-animation: modal-animatetop .3s;
}
@-webkit-keyframes modal-animatetop {
	from {top: -300px; opacity: 0}
	to {top: 10%; opacity: 1}
}
@keyframes modal-animatetop {
	from {top: -300px; opacity: 0}
	to {top: 10%; opacity: 1}
}

.pv-autocomplete.wrapper
{
	display: inline-block;
	position: relative;
}

.pv-autocomplete .suggestions
{
	position: absolute;
	top: 100%;
	width: 100%;
	box-sizing: border-box;
	margin: -10px 0 0 0;
	padding: 0;
	border: 1px solid #000;
	background-color: #fff;
	box-shadow: 1px 1px 3px rgba(0,0,0,.3);
	z-index: 150;
	max-height: 300px;
	overflow-y: auto;
}
.pv-autocomplete .suggestions > div
{
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	padding: 10px;
	border-top: 1px dotted transparent;
	border-bottom: 1px dotted transparent;
	cursor: pointer;
}
.pv-autocomplete .suggestions > div.__active
{
	background-color: #f3f3f3;
}