.order-select {
	position      : relative;
	border        : 1px solid #7a3035;
	border-radius : 5px;
}

.order-select select {
	display : none;
}

.order-select__title {

}

.order-select__title a {
	display         : block;
	position        : relative;
	z-index         : 3;
	font            : 300 18px 'San Francisco', sans-serif;
	color           : #7a3035;
	padding         : 18px 20px;
	box-sizing      : border-box;
	text-decoration : none;
	background      : #ffffff url(/packages/mega45-core/images/arrow-down.png) no-repeat 100% 26px;
	border-radius   : 5px;
	margin-bottom   : 1px;
}

.order-select--opened .order-select__title a {
	border-bottom : 1px solid #7a3035;
	margin-bottom : 0;
}

.order-select__options {
	position           : absolute;
	top                : 50px;
	left               : -1px;
	right              : -1px;
	border             : 1px solid #7a3035;
	border-radius      : 5px;
	padding-top        : 5px;
	background-color   : #ffffff;
	z-index            : 2;
	overflow           : hidden;
	height             : 0;
	-webkit-transition : .5s ease height;
	-moz-transition    : .5s ease height;
	-ms-transition     : .5s ease height;
	-o-transition      : .5s ease height;
	transition         : .5s ease height;
}

.order-select--opened .order-select__options {
	height : auto;
}

.order-select__option {

}

.order-select__option a {
	display            : block;
	position           : relative;
	z-index            : 3;
	font               : 300 18px 'San Francisco', sans-serif;
	color              : #7a3035;
	padding            : 18px 20px;
	box-sizing         : border-box;
	text-decoration    : none;
	border-bottom      : 1px solid #7a3035;
	-webkit-transition : .3s ease background -moz-transition : .3 s ease background;
	-ms-transition     : .3s ease background;
	-o-transition      : .3s ease background;
	transition         : .3s ease background;
}

.order-select__option:last-child a {
	border-bottom : 0;
}

.order-select__option a:hover, .order-select__option--selected a {
	background-color : #7a3035;
	color            : #ffffff;
}