div.customSelect{display:flex;align-items:center;justify-content:space-between;border:solid 1px #dcdcdc;border-radius:10px;background-color:white;padding:7px 6px 7px 12px;cursor:pointer}div.customSelect span.customSelectPlaceholder{display:none;white-space:nowrap;overflow:hidden}div.customSelect ul{width:100%;overflow:hidden;max-height:302px;box-sizing:border-box;white-space:nowrap;list-style-type:none;margin:0;padding:0}div.customSelect ul li:not(.selected){display:none}div.customSelect.small{font-size:16px;padding:5px 4px 4px 6px}div.customSelect.small span.material-symbols-outlined{font-size:22px}div.customSelect.disabled{background-color:#f0f0f0;cursor:not-allowed}div.customSelect.disabled span{color:#f0f0f0}div.customSelect.open{border-color:#0093ff;box-shadow:0 0 4px 0 #0093ff;cursor:default;transition:.3s}div.customSelect.open span.customSelectPlaceholder{display:block}div.customSelect.open ul{position:fixed;overflow-x:hidden;overflow-y:auto;border:solid 1px #dcdcdc;border-radius:10px;box-shadow:0 0 4px 0 #dcdcdc;background-color:white;z-index:10}div.customSelect.open ul li{display:block;font-size:16px;border-radius:10px;padding:8px;cursor:pointer;transition:background-color .2s,color .2s;white-space:nowrap}div.customSelect.open ul li.selected{font-weight:600}div.customSelect.open ul li:hover{background-color:#0093ff;color:white}div.customSelect.small.open ul{top:35px}div.customSelect.invalid{border-color:#db3838;box-shadow:0 0 4px 0 #db3838}