@charset "utf-8";

/* CSS Document */
.custom-select1 { width:260px; float:left; background:none; border:1px solid #ffffff; transition:all 0.25s ease-out 0s; margin:0 10px 0 0; position:relative;}
.custom-select1:hover { background:#ffffff; border-color:#ffffff;}
.custom-select1 select { display:none;}
.custom-select1 .select-hide { display:none;}
.custom-select1 .select-items { max-height:166px; overflow-y:scroll; background:#ffffff; position:absolute; top:102%; left:0; right:0; z-index:9;}
.custom-select1 .select-items div { color:#c9b391; transition:all 0.25s ease-out 0s; padding:15px 16px 13px 22px;}
.custom-select1 .select-items div:hover { color:#ffffff; background:#c9b391;}
.custom-select1 .select-selected { color:#ffffff; transition:all 0.25s ease-out 0s; padding:15px 16px 13px 22px;}
.custom-select1:hover .select-selected { color:#c9b391;}
.custom-select1 .select-selected:after { content:""; width:16px; height:16px; background:url(../images/down-white-circle-arrow.svg) no-repeat center / 100% 100%; transform:translateY(-50%); transition:all 0.25s ease-out 0s; margin:0 0 0; position:absolute; top:50%; right:16px;}
.custom-select1:hover .select-selected:after { background:url(../images/down-grey-circle-arrow.svg) no-repeat center / 100% 100%;}
.custom-select1 .select-items div, .custom-select1 .select-selected { cursor:pointer; font-size:12px; font-weight:500; letter-spacing:0.6px; text-transform:uppercase;}

.custom-select1 .select-items::-webkit-scrollbar { width: 6px;}
.custom-select1 .select-items::-webkit-scrollbar-track { background: #f1f1f1eb; box-shadow: inset 1px 0 5px #dfdfdf; border-radius: 25px;}
.custom-select1 .select-items::-webkit-scrollbar-thumb { background: #bbae71; border-radius: 25px;}

/*Smartphone css*/
@media screen and (max-width: 480px) {
.custom-select1 { width:100%;}
.custom-select1 .select-items div, .custom-select1 .select-selected { font-size:10px;}
} 

@media screen and (min-width:481px) and (max-width:600px) {
.custom-select1 { width:100%;}
.custom-select1 .select-items div, .custom-select1 .select-selected { font-size:10px;}
}

@media screen and (min-width:601px) and (max-width:767px) {
.custom-select1 { width:100%;}
.custom-select1 .select-items div, .custom-select1 .select-selected { font-size:10px;}
}

@media screen and (min-width:768px) and (max-width:900px) {
.custom-select1 .select-items div, .custom-select1 .select-selected { font-size:10px;}
}

@media screen and (min-width:901px) and (max-width:1024px) {
.custom-select1 .select-items div, .custom-select1 .select-selected { font-size:11px;}
}

@media screen and (min-width:1025px) and (max-width:1240px) {
.custom-select1 .select-items div, .custom-select1 .select-selected { font-size:11px;}
}