.table-wrapper .table-container {
    position: relative;
    display: flex;
    justify-content: space-between;
    place-items: center;
    padding: 20px 35px;
    margin-bottom: 20px;
    box-shadow: 0 16px 29px rgba(29,39,48,.1);
}
.table-wrapper .table-container .description-container {
    width: 500px;
}
.table-wrapper .table-container .mention {
    text-align: center;
}
.table-wrapper .item-counter {
    position: absolute;
    background-color: #1E73BE;
    height: 40px;
    color: white;
    width: 40px;
    padding-left: 3px;
    top: 0;
    left: 0;
    clip-path: polygon(0 0, 0% 100%, 99% 0);
}
.table-wrapper .logo-container img {
    max-width: 160px;
    height: auto;
}
.table-wrapper .filter {
    display: flex;
    margin: 10px 0;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
}
.table-wrapper .filter a {
    font-size: 1.5rem;
    line-height: 1.33;
    padding: 1.25rem 1.5625rem;
    color: #465664;
    -webkit-box-shadow: 0 16px 29px rgba(29,39,48,.1);
    box-shadow: 0 16px 29px rgba(29,39,48,.1);
    background-color: white;
    display: inline-block;
    margin-right: 0.9375rem;
    margin-bottom: 0.9375rem;
    border-radius: 5px;
    text-decoration: none;
}
.table-wrapper .filter a:hover {
    color: white;
    background-color: #631111;
}
.table-wrapper .table-container .action-container div.visit-here a {
    background: #631111;
    color: #fff !important;
    text-decoration: none;
    padding: 5px 10px;
    text-transform: uppercase;
    line-height: 1em;
    display: block;
    text-align: center;
    margin-top: 0;
    border: 1px solid #4d0e0e;
    border-radius: 2px;
    box-shadow: 1px 1px rgb(0 0 0 / 32%);
}
.table-wrapper .table-container .action-container div.visit-here a:hover {
    background: #a92222;
}
.table-wrapper .action-container {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}
.filter a.active {
    background-color: #631111;
    color: white;
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (max-width: 768px) {
    .table-wrapper .table-container {
        flex-direction: column;
        row-gap: 20px;
		padding: 20px;
    }
    .table-wrapper .action-container {
        display: flex;
        flex-direction: row;
        column-gap: 20px;
    }
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
	.table-wrapper .table-container .description-container {
		width: auto;
	}
}
