::-webkit-scrollbar {
    width: 10px;     /* Tamaño del scroll en vertical */
    height: 8px;    /* Tamaño del scroll en horizontal */
}

::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #b3b3b3;
}

::-webkit-scrollbar-thumb:active {
    background-color: #999999;
}

/* Ponemos un color de fondo y redondeamos las esquinas del track */
::-webkit-scrollbar-track {
    background: #e1e1e1;
    border-radius: 4px;
}

.my-dashboard {
    background-color: var(--backcolor);
    width: 100%;
    padding: 1em;
    box-sizing: border-box;
    height: 100%;
    overflow: auto;

    position: absolute;
    /* margin-left: 1em; */
    transition: 1s;
}


main {
    box-sizing: border-box;
    /* padding: 1em;
    background-color: violet; */
    width: 95vw;
    height: 90vh;

    overflow: hidden;
    position: fixed;
    right: 0;
    bottom: 0;

    color: #333
}

.element {
    max-width: 500px;
}

article {
    padding: 0.5em;
    border-radius: 4px;
    box-shadow: 4px 4px 8px #c2c2c2;
    display: inline-block;
    min-width: 420px;
    margin-right: 1em;
    margin-bottom: 1em;
}


/* SEARCH BOX */

.dashboard-pais__input {
    background-color: var(--second-backcolor);
    font-family: var(--font-input);
    font-size: var(--font-size-input);
    display: block;
    box-sizing: border-box; 
    min-width: 500px;
    min-height: 2em;
    text-align: center;
    
    /* margin-bottom: 1.5em; */
    border-radius: 50px;
    border: none;
    outline: none;
    color: #2d2d2d;
}

.dashboard-pais__input:active {
    filter: brightness(1.05);
}