@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');
.contenedorGiganteCentral {
    font-family: 'Montserrat', sans-serif;
    margin: auto;
}
.subtituloReporte{
    font-family: 'Montserrat', sans-serif;
}

.Filtros {
    display: grid;
    margin-left: 10%;
    margin-right: 10%;
    grid-template-columns: 1fr 1fr 1fr;
    margin-bottom: 50px;
    grid-column-gap: 10px;
}
h3{

    font-size: 1.0em;
}
.filtro_row {
    display: grid;
    grid-template-rows: auto;
    font-size: 20px;
    font-weight: bold;
    font-family: 'Montserrat', sans-serif;
}

.filtro_row > select {
    max-width: 50%;
    align-content: center;

}


.content-select select {

    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

}


.content-select select::-ms-expand {
    display: none;
}

.content-select {
    position: relative;

}

.content-select select {
    display: inline-block;
    width: 100%;
    cursor: pointer;
    padding-left: 20px;
    height: 42px;
    outline: 0;
    border: 0;
    border-radius: 0;

    color: #000000;
    font-size: 0.8em;


    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 500;

    border: 1px solid #60D075;
    border-radius: 36px;
    position: relative;
    transition: all 0.25s ease;
}

.content-select select:disabled {

    color: #A5A5A5;


    border: 1px solid #A5A5A5;
}


/*
Creamos la fecha que aparece a la izquierda del select.
Realmente este elemento es un cuadrado que sólo tienen
dos bordes con color y que giramos con transform: rotate(-45deg);
*/
.content-select i {
    position: absolute;
    right: 20px;
    top: calc(50% - 13px);
    width: 12px;
    height: 12px;
    display: block;
    border-left: 1px solid #2AC176;
    border-bottom: 1px solid #2AC176;
    transform: rotate(-45deg); /* Giramos el cuadrado */
    transition: all 0.25s ease;
}

.content-select:hover i {
    margin-top: 3px;
}


/* CSS */
.button-17 {
    align-items: center;
    appearance: none;
    color: #fff;
    background-color: #712A62;
    border-radius: 24px;
    border-style: none;
    box-shadow: rgba(0, 0, 0, .2) 0 3px 5px -1px, rgba(0, 0, 0, .14) 0 6px 10px 0, rgba(0, 0, 0, .12) 0 1px 18px 0;
    box-sizing: border-box;

    cursor: pointer;
    display: inline-flex;
    fill: currentcolor;
    font-family: "Google Sans", Roboto, Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    height: 48px;
    width: 250px;
    justify-content: center;
    letter-spacing: .25px;
    line-height: normal;
    max-width: 100%;
    overflow: visible;
    padding: 2px 24px;
    position: relative;
    text-align: center;
    text-transform: none;
    transition: box-shadow 280ms cubic-bezier(.4, 0, .2, 1), opacity 15ms linear 30ms, transform 270ms cubic-bezier(0, 0, .2, 1) 0ms;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;

    will-change: transform, opacity;
    z-index: 0;
}

.button-17:hover {
    background: #5D2A58;
    color: #EEE;
}

.button-17:active {
    box-shadow: 0 4px 4px 0 rgb(60 64 67 / 30%), 0 8px 12px 6px rgb(60 64 67 / 15%);
    outline: none;
}

.button-17:focus {
    outline: none;
    border: 2px solid #4285f4;
}

.button-17:not(:disabled) {
    box-shadow: rgba(60, 64, 67, .3) 0 1px 3px 0, rgba(60, 64, 67, .15) 0 4px 8px 3px;
}

.button-17:not(:disabled):hover {
    box-shadow: rgba(60, 64, 67, .3) 0 2px 3px 0, rgba(60, 64, 67, .15) 0 6px 10px 4px;
}

.button-17:not(:disabled):focus {
    box-shadow: rgba(60, 64, 67, .3) 0 1px 3px 0, rgba(60, 64, 67, .15) 0 4px 8px 3px;
}

.button-17:not(:disabled):active {
    box-shadow: rgba(60, 64, 67, .3) 0 4px 4px 0, rgba(60, 64, 67, .15) 0 8px 12px 6px;
}

.button-17:disabled {
    box-shadow: rgba(60, 64, 67, .3) 0 1px 3px 0, rgba(60, 64, 67, .15) 0 4px 8px 3px;
}
@media (max-width: 800px) {
    .Filtros {

        grid-template-columns: auto;
        grid-template-rows: auto;

    }
}