.custom-select-google {
    position: relative;
    font-family: Arial;
    width: 110px;
}
.custom-select-google select {display: none;}
.select-selected {
    background-color: #fff;
    padding: 10px 10px 8px 12px !important;
}
.select-selected:hover {
    background-color: #f1f3f4;
    border-radius: 4px;
}
.select-selected:after {
    position: absolute;
    content: "▼";
    top: 12px;
    right: 20px;
    width: 0;
    height: 0;
    font-size: 10px;
    background: none;
    color: var(--color-google-grey);
}
.select-items div, .select-selected {
    color: var(--text-color);
    font-size: 15px;
    padding: 12px 0 12px 15px;
    cursor: pointer;
    user-select: none;
}
.select-items {
    position: absolute;
    background-color: #fff;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
    box-shadow: 0 1px 3px 0 rgb(60 64 67 / 30%), 0 4px 8px 3px rgb(60 64 67 / 15%);
    border-width: 1px;
    border-radius: 4px;
}
.select-hide {display: none;}
.select-items div:not(.same-as-selected):hover {
    background-color: #f8f9fa;
    border-radius: 4px;
}
.same-as-selected {
    color: #174ea6 !important;
    background-color: #e8f0fe;
    border-radius: 4px;
}