.vot-generator {
    background-color: white;
    box-shadow: 0px 2px 8px rgb(0 0 0 / 20%);
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    position: relative;
}

.vot-generator,
.vot-results {
    width: 100%;
    margin: 0 auto;
    margin-bottom: 2rem;
    max-width: 600px;
}

.vot-generator .vot-row {
    padding: 20px 20px 0 20px;
}

.vot-generator .vot-row:nth-child(2) {
    padding-top: 0;
    padding-bottom: 20px;
}

.vot-generator label,
.vot-results label {
    font-weight: 700;
    color: #ff486a;
    width: 170px;
}

.vot-results audio {
    display: none;
}

.vot-generator textarea {
    padding: 20px;
    border: 0;
    border-radius: 10px;
}

.vot-generator #button_container {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 0 20px;
    justify-content: center;
}

.vot-generator .btn-voice {
    width: 100%;
    text-align: center;
    border-radius: 25px;
    -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.3);
    background-color: #ff486a;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    cursor: pointer;
}

.vot-generator #button_container .range-container {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.vot-generator .generate {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: transparent;
    margin: 0 auto;
    padding: 10px;
    color: white;
}

.vot-generator svg,
.vot-results svg {
    width: 30px;
    height: 30px;
}

.vot-generator svg {
    fill: white;
}

.vot-results {
    display: block;
}

.vot-results .vot-row {
    position: relative;
    border: 1px dashed;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 1rem;
    display: flex;
    flex-direction: row;
    column-gap: 20px;
    justify-content: space-between;
}

.vot-results .vot-row .info {
    display: flex;
    column-gap: 5px;
    align-items: center;
    flex-direction: row;
}

.vot-results .vot-row .info .play,
.vot-results .vot-row .info .download {
    opacity: 0.5;
    cursor: pointer;
    display: grid;
}

.vot-results .vot-row .info .play:hover,
.vot-results .vot-row .info .download:hover {
    opacity: 1;
}

.vot-results .vot-text {
    line-height: 1.5;
}

.vot-results .param {
    font-style: italic;
    color: #ff486ad1;
}

.range-container {
    width: 300px;
    position: relative;
}

.range-slider {
    /* -webkit-appearance: none; */
    width: 100%;
    height: 10px;
    background: #d3d3d3;
    outline: none;
    opacity: 0.7;
    transition: opacity .2s;
    border-radius: 5px;
}

.range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: #4CAF50;
    cursor: pointer;
    border-radius: 50%;
    position: relative;
    z-index: 2;
}

.range-slider::-webkit-slider-thumb:before {
    content: '';
    width: 10px;
    height: 10px;
    background: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

.range-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: #4CAF50;
    cursor: pointer;
    border-radius: 50%;
    position: relative;
    z-index: 2;
}

.range-slider::-moz-range-thumb:before {
    content: '';
    width: 10px;
    height: 10px;
    background: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

@media only screen and (max-width: 600px) {
    .vot-generator #button_container {
        display: block;
    }

    .vot-generator #button_container .setting {
        margin-bottom: 1rem;
    }

    .vot-generator #button_container .range-container {
        width: 100%;
    }

    .vot-generator #button_container .range-container label {
        width: 170px;
    }

    .vot-results .vot-row .info {
        flex-direction: column;
        gap: 10px;
    }
}