.fc_flex-container {
    display: flex;
    flex-wrap: wrap;
}

.fc_menu_header {
    flex: 10%;
}

.fc_info_text {
    text-wrap: nowrap;
    font-weight: 700;
    color: #f5521e;
}

.fc_content_header {
    display: flex;
    flex: 50%;
}

/*Botão Ativo*/
.fc_btn_active{
    background-color: #2d32bd;
    border: 1px solid #2d32bd;
    color: white;
}


/*Botão Inativo*/
.fc_btn_default{
    background-color: white;
    border: 1px solid #2d32bd;
    color: blue;

}

.fc_btn_year {
    padding: 10px 20px;
    margin: 0 auto;
    height: fit-content;
    border-radius: 26px;
}

span.fc_header_tx {
    font-weight: 600;
}

button.fc_btn_year:hover {
    background-color: blue;
    color: white;
}

.fc_menu {
    flex: 10%;
    margin-top: 10px;
    color: white;
    font-weight: 400;
    background-color: #42aef2;
    padding: 30px 40px;
    height: fit-content;
    border-radius: 20px;
}
.fc_content {
    flex: 50%;
    margin-top: 10px;
    padding: 30px;
}


li.fc_li {
    list-style-type: none;
}

/*Botão Ativo*/
.btn-menu-cat-active{
    border: 5px solid #f5521e;
}

/*Botão Inativo*/
.btn-menu-cat-default{
    border: none;
}

.btn-menu-cat {
    background-color: #2d32bd;
    color: white;
    width: 100%;
    font-size: 16px;
    text-align: left;
    text-wrap: pretty;
    padding: 14px;
    border-radius: 26px;
    margin-bottom: 12px;
    cursor: pointer;
}

ul li.fc_li button:hover {
    background-color: blue;
}

.yellow_pointer {
    color: #f8c627;
}

li.fc_li.child {
    margin-left: 10px;
}

li.fc_li.parent {
    margin-left: -20px;
}

/*Load*/
#fc_content_load{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

#fcload {
    width: 20%;
}

.post_container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: -28px;
}
.post_column {
    padding: 0px 10px 0px 10px;
}

.post_img {
    border-radius: 20px;
    width: 80%;
    aspect-ratio: 12/8;
    margin: 0 !important;
    padding: 0 !important;
}

.post_cat {
    color: blue;
}

.post_title>a {
    color: #000;
    font-size: 25px;
    text-decoration: none;
    font-weight: 600;
}

.fcpagination {
    visibility: hidden;
    display: flex;
    justify-content: space-between;
    margin-top: 20px;

}
.fcpagination div {
    cursor: pointer;
}

span.fcarrow {
    color: blue;

    font-weight: 400;
}


/*Botão Ativo*/
button.fc_btn_active_page{
    background-color: #2d32bd;
    border: 1px solid #2d32bd;
    color: white;
}


/*Botão Inativo*/
button.fc_btn_default_page{
    background-color: white;
    border: 1px solid #2d32bd;
    color: blue;

}

button.fc_btn_page{
    padding: 2px 10px;
    border-radius: 26px;
    cursor: inherit;
    margin: 3px;
}

button.fc_btn_page:hover {
    background-color: blue;
    color: white;
}


/*Mobile*/

@media (max-width: 60rem) {
    .fc_menu_headert, .fc_content_header {
        flex: 100%;
    }

    .post_container {
        display: grid;
        grid-template-columns: 1fr;
    }

    .fc_content_header {
        display: flow;

    }

    .fc_btn_year {
        margin: 10px;
    }
}

