.row-btn{
    display: flex;
    margin:20px 0 0;
    justify-content: center !important;
}
.evs-finalizar-btn {
    width:120px;
    border: 0;
    border-radius: 12px;
    background: #F47600;
    display: flex;
    height: 56px;
    padding: 0 20px;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    color: #F7FAFC;
    text-align: center;
    text-overflow: ellipsis;
    font-family: "Roboto Condensed";
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    transition: all 0.3s ease;
    text-transform:uppercase!important;
}

.evs-finalizar-btn:hover {
    background: #CD6300;
    transform: scale(1.05);
}

button:disabled {
    background: #AD845D;
    cursor: not-allowed;
}
/*form.learn-press-form.form-button button.lp-button.button-complete-lesson.lp-btn-complete-item.hideAll{
    display:none!important;
}
form.learn-press-form.form-button button.lp-button.button-complete-lesson.lp-btn-complete-item.showAll{
    display:inline-block!important;
}*/
    
.evs-container {
    width: 100%;
    margin: 0;
    font-size:20px;
    font-family: 'Roboto Condensed', Helvetica, Arial, Lucida, sans-serif;
}
.evs-container p{
    text-align:left;
    margin-bottom:1rem;
}
.evs-title {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 30px;
}

.evs-value-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.evs-value-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
}

.evs-value-title {
    color: #3498db;
    margin-top: 0;
    margin-bottom: 15px;
    text-align: center;
}

.evs-slider-container {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 15px;
}

.evs-slider {
    flex-grow: 1;
    height: 8px;
    -webkit-appearance: none;
    background: linear-gradient(to right, #e74c3c 0%, #f1c40f 50%, #2ecc71 100%);
    border-radius: 4px;
    outline: none;
    transition: all 0.3s ease;
}

.evs-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    background: #3498db;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease;
}

.evs-slider::-webkit-slider-thumb:hover {
    transform: scale(1.1);
    background: #2980b9;
}

.evs-slider-label {
    font-size: 0.85em;
    color: #7f8c8d;
    width: 150px;
    text-align: center;
    line-height: 1.3;
}

.evs-slider-label.left {
    color: #e74c3c;
}

.evs-slider-label.right {
    color: green;
}

.evs-notice {
    text-align: center;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 5px;
    color: #6c757d;
}

@media (max-width: 768px) {
    .evs-slider-container {
        flex-direction: column;
    }
    
    .evs-slider-label {
        min-width: 100%;
    }
}