<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";


.sort_form{
	background-color: #FFFFFF;	
}

select{
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	padding: 0;
	margin: 0;
	height: 40px;
	background: transparent;
	position: relative;
	z-index: 1;
	padding-right: 40px;
	padding-left: 1em;
	border: 1px solid #ccc;
	font-size: 1em;
}
select::-ms-expand {
    display: none;
}
.selectWrap{
	position: relative;
	display: inline-block;
	background-color: #FFFFFF;
	margin-left: 2.4em;

}
.selectWrap::before{
    content: '';
    position: absolute;
    z-index: 0;
    top: 0;
    right: 0;
    background: #144998;
    height: 100%;
    width: 30px;
}
.selectWrap::after{
    content: '';
    position: absolute;
    z-index: 0;
    top: 0;
    bottom: 0;
    margin: auto 0;
    right: 9px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 6px 0 6px;
    border-color: #fff transparent transparent transparent; 
}</pre></body></html>