.selectbox { position: relative; display: inline-block; }
.selectbox.block { display: block; width: 100%; }
.selectbox select { overflow: hidden; white-space: nowrap; text-overflow: ellipsis; display: inline-block; vertical-align: middle; width: 100%; height: 53px; padding: 0 20px 0 15px; background-color: #fff; border: 1px solid var(--line); border-radius: 5px; cursor: pointer; font-size: 1.5rem; }
.selectbox select:disabled { background: #f2f2f2; cursor: default; }
.selectbox select:hover,
.selectbox select:focus { border-color: #aaa; }
.selectbox:after { content: ''; width: 6px; height: 6px; right: 20px; top: 50%; border-left: 1px solid #000; border-bottom: 1px solid #000; position: absolute; transform: translateY(-50%) rotate(-45deg); cursor: pointer; }
.selectbox.w-140px { width: 140px; }
.selectbox.w-200px { width: 200px; }

@media (max-width: 1024px) {
	.selectbox { font-size: 1.4rem; }
}
@media (max-width: 820px) {
	.selectbox.w-200px { width: 100% !important; }
}
@media (max-width: 580px) {
	.selectbox select { height: 45px; }
}
