.select-backdrop{position:fixed;inset:0;z-index:999}.custom-select{position:relative;display:flex;flex-direction:column;z-index:10}.custom-select__label{font-size:16px;font-weight:500;margin-bottom:8px}.custom-select__input{width:100%;padding:12px 16px;border-radius:24px;background:var(--blue-light);border:1px solid var(--blue-light);cursor:pointer;text-align:left;display:flex;align-items:center;justify-content:space-between;gap:12px;transition:border-color .2s ease}.custom-select__input.is-placeholder{color:var(--gray-light)}.custom-select__input.is-open{border-color:var(--gray-dark)}.custom-select__input:hover{border:1px solid var(--gray-dark)}.custom-select__value{flex:1;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.custom-select__icon{display:flex;align-items:center;justify-content:center;pointer-events:none}.custom-select__dropdown{position:absolute;top:calc(100% + 8px);left:0;width:100%;height:212px;padding:24px;display:flex;flex-direction:column;gap:16px;background:#fff;border-radius:24px;box-shadow:0 0 14.8px rgba(0,0,0,.251);z-index:1001;overflow-y:auto}.custom-select__option{background:transparent;border:0;padding:0;text-align:left;font-size:16px;cursor:pointer}.custom-select__option:hover{opacity:.7}