.voice-selector-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px var(--popup-padding);
    border-bottom: 1px solid var(--text-color-0-5);
    width: 100%;
}


.voice-selector-item .left {
    display: flex;
    align-items: center;
    justify-content: center;
}


.voice-selector-item .voice-name {
    margin: 0 10px;
    max-width: 100px;
    font-weight: bold;
}

.voice-selector-item .voice-gender {
    font-size: 12px;
    margin-top: 2px;
}

.voice-selector-item .voice-gender.male {
    color: var(--male-color);
}

.voice-selector-item .voice-gender.female {
    color: var(--female-color);
}


.voice-selector-item .select-voice-btn {
    background: var(--text-color-0-8);
    padding: 4px 12px;
    border-radius: 30px;
    outline: none;
    border: none;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.voice-selector-item .select-voice-btn .active-text {
    display: none;
}

.voice-selector-item .select-voice-btn.active {
    background: var(--text-color);
    color: #0A0A0A;
}

.voice-selector-item .select-voice-btn span {
    font-size: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    color: inherit;
}



.voice-selector-item .select-voice-btn span i {
    font-size: 10px;
    margin-right: 3px;
    color: inherit;
}

.voice-selector-item .select-voice-btn.active .default-text {
    display: none;
}

.voice-selector-item .select-voice-btn.active .active-text {
    display: block;
}



.voice-selector-item .waveform .wave-bar {
    background: var(--text-color-2);
}

.voice-selector-item .waveform.playing .wave-bar{
    background: var(--text-color);
}


.voice-selector-item .right {
    display: flex;
    align-items: center;

}

.voice-selector-item .right .edit-btn {
    /*margin-left: 5px;*/
    width: 20px;
    text-align: right;
    height: 100%;
}

.voice-selector-item .right .edit-btn i {
    font-size: 12px;
    opacity: 0.8;
}


.select-voice-media-wrapper {
    height: 100%;
    width: 100%;
    padding: 0 var(--popup-padding);
    padding-bottom: 40px;
    display: flex;
    flex-direction: column;
}


.select-voice-media-wrapper .select-voice-media-btn {
    flex: 1;
    width: 100%;
    background: var(--text-color-0-5);
    border-radius: 4px;

    position: relative;

    display: flex;
    align-items: center;
    padding: 20px;
}


.select-voice-media-btn input {
    position: absolute;
    opacity: 0;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}


.select-voice-media-wrapper .select-voice-media-btn .left {
    flex: 1;
    margin-right: 20px;
}

.select-voice-media-btn-title {
    font-weight: bold;
}

.select-voice-media-btn-intro {
    font-size: 12px;
    opacity: 0.5;
    margin-top: 10px;
}


.select-voice-media-btn .icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(134, 247, 252, 0.5);
}

.select-voice-media-btn .icon i{
    font-size: 18px;
}

.select-voice-media-btn .video-icon {
    background: rgba(134, 247, 252, 0.5);
}


.select-voice-media-btn .audio-icon {
    background: rgba(252, 237, 134, 0.5);
}

.select-voice-media-wrapper .select-voice-media-btn:not(:last-child) {
    margin-bottom: 10px;
}