.custom-select {
    position: relative;
    user-select: none;
}
.config[data-type='duration'] .value,.config[data-type='bandwidth'] .value{
    cursor: pointer;
}
.custom-select .cut{
    font-weight: 400;
    font-size: 12px;
    color: #FF2C00;
    position: absolute;
    top: 12px;
    right: 24px;
}
.custom-select .selected {
    padding-left: 12px;
    width: 100%;
}
.custom-select .options {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    border: 1px solid #DDE8F5;
    border-radius: 3px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 10;
}
.custom-select .option {
    padding: 10px 12px;
    font-size: 14px;
    color: #3C4D70;
    position: relative;
}
.custom-select .option:hover {
    background-color: #F0F8FF;
}
.config[data-type='duration'] .value.selected,
.config[data-type='duration'] .custom-select.selected,
.config[data-type='bandwidth'] .value.selected,
.config[data-type='bandwidth'] .custom-select.selected{
    border: 1px solid #5EABFB !important;
}
.custom-select .selected .arrow {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    color: #999;
    pointer-events: none;
}
.custom-select.open .arrow {
    transform: translateY(-50%) rotate(180deg);
}
.config[data-type='duration'] .value.selected,
.config[data-type='duration'] .custom-select.selected .selected .text,
.config[data-type='duration'] .custom-select.selected .selected .arrow,
.config[data-type='bandwidth'] .value.selected,
.config[data-type='bandwidth'] .custom-select.selected .selected .text,
.config[data-type='bandwidth'] .custom-select.selected .selected .arrow{
    color: #5EABFB !important;
}
