/* CSS del cambio del usuario */
#select-container {
    justify-content: center;
    padding: 5px;
    width: 200px;
    height: 150px;
    background-color: #5e9ffe;
    position: fixed;
    bottom: 20px;
    right: -200px;
    z-index: 1;
    transition: right 0.5s ease-out;
}

#select-container.active:before {
    content: '';
    position: absolute;
    left: -28.8px;
    top: 0;
    width: 0;
    height: 0;
    border: transparent solid 15px;
    border-right-color: #5e9ffe;
}

#select-container.open {
    right: 0;
}

#country-select {
    max-width: 180px;
    z-index: 2;
    height: 20px;
}

label.testingSlider {
    padding-right: 5px;
}

.testingRow {
    display: grid;
    margin-bottom: 20px;
    margin-left: 5px;
}

/* fin del CSS cambio del usuario */