.custom-select-wrapper {
    position: relative;
}
.custom-select {
    padding: 5px 0;
    cursor: pointer;
    background-color: #fff;
}
.custom-select.closed {
    border-radius: 40px;
}
.custom-select.dashboard {
    height: 80px;
    padding: 0;
    border: 1px solid #ccc;
}
.custom-select.open {
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    border-bottom-color: transparent;
}

/* trigger */
.select-trigger {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 15px;
    gap: 15px;
}
.select-trigger .arrows svg {
    width: 24px;
    height: 24px;
}
.select-trigger .arrows svg.down {
    vertical-align: -9px;
}
.select-trigger .arrows > div {
    display: none;
    width: 30px;
    height: 30px;
    background-color: #f1f1f1;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
}

/* options */
.select-options {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    border-top: none;
    background-color: #fff;
    z-index: 10;
    overflow-y: hidden;
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;
    padding-bottom: 10px;
}
.custom-select.dashboard .select-options {
    border-bottom: 1px solid #ccc;
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
}
.select-options .separator {
    padding: 0 15px;
    margin-bottom: 10px;
}
.select-options .separator hr {
    margin: 0;
    height: 1px;
    border: none;
    background-color: #e2e2e1;
}
.select-options .option {
    display: flex;
    align-items: center;
    padding: 15px 10px;
    margin: 0 10px;
    cursor: pointer;
    border-radius: 25px;
    gap: 8px;
    color: #1e1e1e;
    font-weight: 500;
    text-align: left;
}
.select-options .option:hover {
    background-color: #f4f3f2;
}
.select-options .option svg {
    width: 20px;
    height: 20px;
}
.select-options .option svg.s {
    stroke: #000;
    fill: none;
}
.select-options .option svg.f {
    fill: #000;
}
.custom-select.open .select-options {
    display: block;
}
#user_photo {
    width: 62px;
    height: 62px;
    box-sizing: border-box;
    background-color: #fdfcfb;
    border: 1px solid #e4e3e2;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    vertical-align: middle;
}
#user_photo img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}
#user_name {
    color: #1e1e1e;
    font-weight: 600;
}
