@charset "utf-8";

/* CSS Document */
.select-hide { display:none;}
.custom-select { height:50px; float:left; text-align:left; border:1px solid #ffffff; border-radius:6px; transition:all 0.25s ease-out 0s; position:relative;}
.custom-select:hover { background:#fff; border:1px solid #b9bad4;}
.custom-select select { display:none;}
.custom-select:after { content:""; width:15px; height:8px; background:url(../images/header-arrow1.png) no-repeat; transform:translateY(-50%); position:absolute; top:50%; right:16px;}
.custom-select:hover:after { background:url(../images/header-arrow2.png) no-repeat;}
.select-items { background:#9dadc4; border-radius:6px; position:absolute; top:100%; left:0; right:0; z-index:99;}
.select-items div { font-size:16px; color:#ffffff; border-radius:6px; padding:8px 16px;}
.select-items div:hover { background:#b9bad4;}
.select-selected { font-size:18px; color:#ffffff;}
.custom-select:hover .select-selected { color:#b9bad4;}
.select-items div, .select-selected { letter-spacing:-0.2px; cursor:pointer; padding:14px 30px 13px 25px; font-family: 'glacial-indifference-bold';}

/*Smartphone css*/
@media screen and (max-width: 480px) {
.custom-select { width:100%; text-align:center; float:left; margin:6px 0 0;}
.select-selected { font-size:15px;}
}

@media screen and (min-width:481px) and (max-width:600px) {
.custom-select { width:100%; text-align:center; float:left; margin:10px 0 0;}
}

@media screen and (min-width:601px) and (max-width:767px) {
.custom-select { width:100%; text-align:center; float:left; margin:10px 0 0;}
}

@media screen and (min-width:768px) and (max-width:900px) {
.custom-select { height:44px; border:1px solid #fff;}
.select-selected { font-size:13px; padding-left:10px;}
}

@media screen and (min-width:901px) and (max-width:1024px) {
.custom-select { height:46px; width:100%; border:1px solid #fff;}
.select-selected { font-size:14px;}
}

@media screen and (min-width:1025px) and (max-width:1240px) {
.custom-select { height:46px; width:100%; border:1px solid #fff;}
.custom-select:after { right:20px;}
.select-items div,.select-selected { font-size:15px; padding:13px 0px 8px 14px;}
}