/* Estilos para la parte Cliente */

.progress-container {
    width: 25px;
    margin: 20px;
    position: relative;
}

.progress-bar {
    width: 25px;
    height: 300px;
    background-color: #e0e0e0;
    border-radius: 12px;
    position: relative;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.2);
}

.progress-fill {
    /* height: 100%; */
    background: linear-gradient(to top, #5bb520, #144420);
    border-radius: 12px;
    position: relative;
    transition: height 0.5s ease-in-out;
}

.progress-indicator {
    position: absolute;
    left: 25px;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background-color: #ab38b5;
    border-radius: 50% 50% 50% 0;
    transform: rotate(45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: bold;
    font-size: 12px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    transition: top 0.5s ease-in-out;
}

.indicator-text {
    transform: rotate(-45deg);
    position: relative;
    font-size: 11px;
    color: #ffffff;
}


#plugin_barra_proyecto_social {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    gap: 30px;
}

#plugin_barra_proyecto_social h1 {
    margin: 20px;
    font-size: 40px;
    line-height: 1.35;
    text-align: left;
    color: #144420;
    max-width: 500px;
}

@media(min-width: 769px) {
	#plugin_barra_proyecto_social h1 {
        margin: 20px;
        font-size: 40px;
        line-height: 1.35;
        text-align: left;
        color: #144420;
        max-width: 500px;
    } 
}

@media (max-width: 768px) {
	#plugin_barra_proyecto_social h1 {
        margin: 0;
        font-size: 2em;
    }

    #plugin_barra_proyecto_social {
        gap: 60px;
    }
}

@media (max-width: 420px) {
    #plugin_barra_proyecto_social {
        display: grid;
        align-items: center;
        justify-content: space-evenly;
        grid-template-columns: 60px 1fr;
        gap: 35px;
    }

	#plugin_barra_proyecto_social h1 {
        font-size: 1.5em;
        word-break: break-word;
    }

    .progress-container {
        margin: 0;
    }
}