

.container {
    width: 50%;
    margin: 0 auto;
    text-align: center;

}

.slider-container {
    position: relative;
    width: 100%;
}

.slider {
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
    height: 15px;
    border-radius: 5px;
    background: #d3d3d3;
    outline: none;
    opacity: 0.7;
    -webkit-transition: .2s;
    transition: opacity .2s;
}

.slider:hover {
    opacity: 1;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #4caf50;
    cursor: pointer;
}

.slider::-moz-range-thumb {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #4caf50;
    cursor: pointer;
}

.value-label {
    position: absolute;

    width: 100%;
}

.image-container {
    display: inline-block;
    margin-top: 20px;
}

.image-container img {

    height: auto;
    display: block;
    margin: 0 auto;
}

.image-container input[type="text"] {
    width: 100px; /* Tamaño de los cuadros de texto */
    text-align: center;
    margin-top: 5px;
    background-color: #f5cf9e;
}
        .checkbox-label {
           margin-top: 3%;
            align-items: center;
            margin-bottom: 10px;
        }

        #checkbox {
            margin-right: 5px;
        }
        /* Estilos generales */
        h1 {
    color: #343a40;
}
p.value-label {
    color: #343a40;
}
label {
       color: #343a40;
}         ul.dropdown-menu.show {
         background-color: #7e0c0b;
         /* color: white; */
         }
         a.dropdown-item {
         color: white !important;
         }
         a.dropdown-item:hover {
         background-color: rgb(91 11 10) !important;
         }