
#lista-edicoes {
    background: #000;
}
.lista-edicoes-wrapper {
    margin: 0 auto;
    max-width: 1200px;
    padding: 20px 0;
}
.lista-edicoes-wrapper header{
    display: flex;
    gap: 20px;
    margin: 20px 0;
    justify-content: center;
    align-items: center;
}
.lista-edicoes-wrapper header h1{
    color: white;
    margin: 0;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
}
#news-content {
    padding: 20px 0;
    width: 100%;
}
#news-category {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
#news-category a {
    width: 18%;
    height: 340px;
    margin-bottom: 25px;
}
#news-category a .img-responsive {
    width: 100%;
    height: 95%;
    transition: all 0.2s ease-in;
    object-fit: contain;
}
#news-category a .img-responsive:hover{
    filter: brightness(0.5);
}
#news-category a footer h4{
    color: white;
    text-align: center;
    font-weight: bold;
    font-size: 16px;
}

#news-content h3 {
	color: white;
	text-align: center;
}
.form-dia {
	display: flex;
	flex-direction: row;
	gap: 20px;
	justify-content: center;
	align-content: center;
	align-items: center;
}
.mw-icon-header-search-date{
    margin-right: 0;
}
.form-date {
	display: flex;
	gap: 5px;
	align-items: center;
	border: 1px solid #303030;
	box-sizing: border-box;
	border-radius: 10px;
}

.form-dia select {
    background: #262626;
    color: white;
    border: 0;
    padding: 8px 47px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: bold;
    -moz-appearance:none; /* Firefox */
    -webkit-appearance:none; /* Safari and Chrome */
    appearance:none;
    background-image: url('../img/arrow-down-white.png');
    background-position: 104px 10px;
    background-repeat: no-repeat;
    outline: none;
}

.form-dia select:first-child {
    background-position: 84px 10px;
}

.form-dia select:last-child {
    padding: 8px 34px;
}

.form-dia button {
    background: #262626;
    padding: 6px 17px;
    border-radius: 5px;
    color: white;
    margin-left: 11px;
}

.search-box-menu-lateral-publicidade {
	display: flex;
	align-items: center;
	background-color: #303030;
	padding: 12px 15px;
	border-radius: 10px;
	width: 250px;
}
input {
	overflow: visible;
	background: inherit;
	border: none;
	color: white;
	font-weight: bold;
	text-transform: uppercase;
}
.button-submit {
	width: 30px;
	height: 30px;
	padding: 5px;
	display: flex;
	align-content: center;
    margin: 0;
	justify-content: center;
	background-color: #303030;
	border: none;
	border-radius: 10px;
}

.paginacao-div {
    display: flex;
    justify-content: center;
    gap: 22px;
}

.paginacao-div button {
    color: white;
    border: 1px solid white;
    padding: 10px;
}

.paginacao-div .ellipsis-pagination-label {
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    font-size: 22px;
}

@media (max-width:700px){
    .lista-edicoes-wrapper header {
        flex-direction: column;
    }

    #news-category {
        display: flex;
        width: 100%;
        padding: 0 20px;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        flex-direction: column;
    }
    #news-category a {
        width: 18%;
        height: 500px;
        width: 100%;
        margin-bottom: 25px;
    }

    .form-dia select:first-child {
        background-position: 67px 10px;
    }

    .form-dia select {
        padding: 8px 27px;
    }
}