.content-extrato {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(10, 10%);
    margin-left: 100px;
}

.extrato-title {
    grid-column: span 10;
    color: var(--tertiary-color);
    font-size: 24px;
    font-weight: 700;
}

.searchbar-container {
    grid-column: span 10;
}

.content-extrato i {
    border: solid var(--secondary-color);
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 3px;
}

.extrato-advanced-search {
    color: var(--secondary-color);
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    text-align: right;
    text-decoration: underline;
    margin-top: 25px;
    grid-column: 9 / span 2;
    cursor: pointer;
}

.down {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}

.up {
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
}

.extrato-table {
    border-collapse: collapse;
    margin-top: 50px;
    margin-bottom: 50px;
    grid-column: span 10;
    box-shadow: 0 2px 4px rgba(var(--primary-color-rgb), 0.2);
    border-radius: 4px;
    background-color: var(--alternative-background);
}

.extrato-table tr {
    height: 50px;
    border-bottom: 1px solid var(--content-background);
}

.extrato-table td {
    font-size: 16px;
    font-weight: 400;
    font-family: Roboto;
    color: var(--primary-font-color)
}

.extrato-table tr:last-child {
    border-bottom: none;
}

.extrato-table .extrato-table-title {
    font-family: Roboto;
    font-weight: 900;
    font-size: 16px;
    color: var(--primary-font-color)
}

.extrato-table-status {
    color: #3c3c3c;
    list-style: none;
    margin: 0 0 16px 1.1225em;
    position: relative;
}

.extrato-table-status-red::before {
    color: var(--status-red);
    content: "\2022";
    font-size: 2em;
    left: -5px;
    position: absolute;
    top: 11px;
}

.extrato-table-status-yellow::before {
    color: var(--status-yellow);
    content: "\2022";
    font-size: 2em;
    left: -5px;
    position: absolute;
    top: 11px;
}

.extrato-table-status-green::before {
    color: var(--status-green);
    content: "\2022";
    font-size: 2em;
    left: -5px;
    position: absolute;
    top: 11px;
}

.extrato-table-status-orange::before {
    color: var(--status-orange);
    content: "\2022";
    font-size: 2em;
    left: -5px;
    position: absolute;
    top: 11px;
}

.extrato-table-status-blue::before {
    color: var(--status-blue);
    content: "\2022";
    font-size: 2em;
    left: -5px;
    position: absolute;
    top: 11px;
}

.advanced-search-fields {
    height: 163px;
    box-shadow: 0 2px 4px rgba(var(--primary-color-rgb), 0.2);
    border-radius: 4px;
    background-color: var(--alternative-background);
    grid-column: span 10;
    margin-top: 25px;
    grid-template-columns: repeat(10, 10%);
    display: none;
}

.advanced-search-fields-active {
    display: grid;
}

.extrato-filter-title {
    color: var(--primary-font-color);
    font-weight: 900;
    grid-column: span 10;
}

.extrato-filter-btn {
    margin-right: 10px;
    margin-bottom: 25px;
    height: 35px;
    font-family: Roboto;
    font-weight: 700;
    font-size: 16px;
    border-radius: 4px;
    color: var(--secondary-color);
    background: var(--alternative-background);
    border: 1px solid var(--secondary-color);
    grid-column: span 1;
    cursor: pointer;
    outline: none;
}

.extrato-filter-btn-first {
    grid-column-start: 2;
}

.extrato-filter-btn-selected {
    color: var(--content-background);
    background: var(--secondary-color);
    cursor: pointer;
}

.extrato-filter-search-btn {
    grid-column: 5 / span 2;
    height: 48px;
    font-family: Roboto;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 3px 6px rgba(var(--shadow-color), 0.4);
    border-radius: 4px;
    background-color: var(--secondary-color);
    color: var(--content-background);
    border: none;
    cursor: pointer;
    outline: none;
}

.extrato-filter-search-btn:hover {
    background-color: var(--hover-color);
}

.extrato-filter-title {
    color: var(--primary-font-color);
    font-weight: 900;
    grid-column: span 10;
    margin: 10px 0 0 10px;
}

.extrato-input-date-start {
    height: 31px;
    border-radius: 4px 0 0 4px;
    border: 1px solid var(--secondary-color);
    grid-column: span 2;
    margin-left: 10px;
    text-align: center;
    font-family: Roboto;
    font-weight: 400;
    font-size: 16px;
    color: var(--secondary-color);
}

.extrato-input-date-end {
    height: 31px;
    border-radius: 0px 4px 4px 0px;
    border: 1px solid var(--secondary-color);
    font-family: Roboto;
    font-weight: 400;
    font-size: 16px;
    grid-column: span 2;
    border-left: none;
    text-align: center;
    color: var(--secondary-color);
}
