    /* ------------------------------ */
/* ------------ Table ----------- */
/* ------------------------------ */

.fake_table {
    max-width: var(--width-text);
    line-height: var(--line-height-2);
}

.fake_table--entry.fake_table--half {
    margin-bottom: var(--spacing-5);
}

.fake_table__row {
    border-bottom: 2px solid var(--border-color);
}

.fake_table > .fake_table__row:not(.fake_table__row--header):first-of-type {
    border-top: 2px solid var(--border-color);
}

.fake_table__row--header, .fake_table__cell--title {
    font-weight: bold;
}

.fake_table__cell {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    padding: 13px 15px 10px 0;
}

.fake_table__cell:last-child {
    padding-right: 0;
}

.fake_table .fake_table__cell--mail, .fake_table .fake_table__cell--contact {
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.fake_table__cell--mail::after, .fake_table__cell--contact::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
}

.fake_table__row:not(.fake_table__row--highlighted) .fake_table__cell--mail::after, .fake_table__row:not(.fake_table__row--highlighted) .fake_table__cell--contact::after {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 1) 100%);
}

.fake_table--status, .fake_table--contact, .fake_table--history, .fake_table--placements, .fake_table--sanctuaries {
    max-width: 100%;
}

.fake_table--status, .fake_table--placements {
    font-size: var(--font-size-3);
}

.fake_table__cell--actions {
    width: 52px;
}

.fake_table__cell a {
    display: inline-block;
    transition: var(--transition-2);
}

.no-touchevents .fake_table__cell > a:hover {
    opacity: var(--opacity-2);
}

.fake_table__row--faded {
    opacity: var(--opacity-2);
}



/* Sizes */
.fake_table__cell--col-2 {
    -ms-flex-preferred-size: 16.66666667%;
    flex-basis: 16.66666667%;
    max-width: 16.66666667%;
}

.fake_table__cell--col-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
}

.fake_table__cell--col-4 {
    -ms-flex-preferred-size: 33.33333333%;
    flex-basis: 33.33333333%;
    max-width: 33.33333333%;
}

.fake_table__cell--col-5 {
    -ms-flex-preferred-size: 41.66666667%;
    flex-basis: 41.66666667%;
    max-width: 41.66666667%;
}

.fake_table__cell--col-6, .fake_table--half .fake_table__cell {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
}


/* Animal */
.fake_table__cell--title {
    text-align: left;
}

.fake_table__cell--value {
    text-align: right;
}


/* Status */
.fake_table--status .fake_table__cell--status {
    position: relative;
    width: 20%;
}

.fake_table__cell--status .icon {
    position: absolute;
}

.fake_table__cell--status .icon--cross {
    width: 18px;
    height: 18px;
}

.fake_table--status .fake_table__cell--contact {
    position: relative;
    width: 44%;
    overflow: hidden;
}

.fake_table--status .fake_table__cell--actions {
    width: 4%;
}





/* Contact & History */
.fake_table--history .fake_table__cell--address {
    width: 20%;
}

.fake_table--contact .fake_table__cell--name, .fake_table--history .fake_table__cell--name {
    width: 22%;
}



/* Contact */
.fake_table--contact .fake_table__cell--contact {
    width: 24%;
}

.fake_table--contact .fake_table__cell--comment {
    width: 22%;
}




/* History */
.fake_table--history .fake_table__cell {
    padding: var(--spacing-2) var(--spacing-0) var(--spacing-1);
}

.fake_table--placements .fake_table__cell--date, .fake_table--placements .fake_table__cell--timestamp {
    width: 140px;
}

.fake_table--placements .fake_table__cell--home {
    width: 230px;
}

.fake_table--placements .fake_table__cell--comment {
    width: 272px;
}

.fake_table__cell--animals li > a {
    margin-right: 5px;
}

.fake_table__cell--home .typography--xs {
    display: block;
}

.fake_table.fake_table--history .fake_table__cell--animals ul {
    margin-top: 8px;
}


/* Sanctuaries */
.fake_table--sanctuaries .fake_table__cell--address {
    width: 21%;
}

.fake_table--history .fake_table__cell--address {
    width: 23%;
}

.fake_table--sanctuaries .fake_table__cell--sanctuary {
    width: 24%;
}

.fake_table--sanctuaries .fake_table__cell--contact, .fake_table--history .fake_table__cell--contact {
    width: 23%;
}

.fake_table--history .fake_table__cell--animals {
    width: 32%;
}

.fake_table--sanctuaries .fake_table__cell--sanctuary span.typography--xs {
    display: block;
}

.fake_table--sanctuaries .fake_table__cell--actions .tooltip__content {
    min-width: 110px;
}

.accordion__content .fake_table__cell--actions .tooltip__content {
    background-color: var(--brand-white);
}

.accordion__content .fake_table__cell--actions .tooltip:hover .tooltip__content::after {
    border-top-color: var(--brand-white);
}



/* ------------------------------ */
/* -------- Media Queries ------- */
/* ------------------------------ */

@media screen and (min-width: 768px) {

    .fake_table.fake_table--half .fake_table__row {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
        flex: 0 1 auto;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        border-bottom: 2px solid var(--border-color);
    }

    .fake_table__cell--actions a, .fake_table__cell--actions button {
        position: relative;
        display: inline-block;
        margin-top: 0;
        line-height: 0;
        text-align: left;
        -webkit-transition: var(--transition-1);
        -o-transition: var(--transition-1);
        transition: var(--transition-1);
    }

    .no-touchevents .fake_table__cell--actions button:hover, .no-touchevents .fake_table__cell--actions a:hover {
        opacity: var(--opacity-2);
    }

    .fake_table--contact, .fake_table--sanctuaries, .fake_table--history {
        margin-top: var(--spacing-5); 
    }

}


@media all and (min-width: 1240px) {

    .fake_table__cell--status .icon {
        top: 15px;
        left: 0;
        transform: scale(.9);
    }

    .fake_table__cell--status .icon.icon--question {
        margin-top: -2px;
        margin-left: 3px;
    }

    .fake_table:not(.fake_table--half) .fake_table__row {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
        flex: 0 1 auto;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .fake_table__cell--mail::after, .fake_table__cell--contact::after {
        width: 60px;
    }

    .fake_table__cell--actions {
        text-align: right;
    }

    .fake_table__cell a + br + a {
        margin-top: var(--spacing-0);
    }

    .fake_table--placements .fake_table__cell--amount {
        width: 100px;
        text-align: center;
    }

    /* Tooltip */
    .fake_table__cell--actions .tooltip {
        position: relative;
        display: inline-block;
        line-height: 0;
    }

    .fake_table__cell--actions .tooltip + .tooltip {
        margin-left: var(--spacing-1);
    }

    .fake_table__cell--actions .tooltip__content {
        pointer-events: none;
        position: absolute;
        z-index: -1;
        left: 50%;
        top: 0;
        min-height: 20px;
        padding: 4px 7px 3px;
        font-size: var(--font-size-1);
        font-weight: bold;
        text-align: center;
        line-height: var(--line-height-2);
        background-color: var(--brand-beige);
        visibility: hidden;
        opacity: 0;
        box-shadow: var(--box-shadow);
        -webkit-transition: var(--transition-1);
        -o-transition: var(--transition-1);
        transition: var(--transition-1);
    }

    .fake_table:not(.fake_table--sanctuaries):not(.fake_table--status) .fake_table__cell--actions .tooltip__content {
        -webkit-transform: translate(-50%, -35px);
        -ms-transform: translate(-50%, -35px);
        transform: translate(-50%, -35px);
    }

    .fake_table--sanctuaries .fake_table__cell--actions .tooltip__content, .fake_table--status .fake_table__cell--actions .tooltip__content {
        -webkit-transform: translate(-50%, -30px);
        -ms-transform: translate(-50%, -30px);
        transform: translate(-50%, -30px);
    }

    .fake_table:not(.fake_table--sanctuaries):not(.fake_table--status) .fake_table__cell--actions .tooltip:hover .tooltip__content {
        -webkit-transform: translate(-50%, -42px);
        -ms-transform: translate(-50%, -42px);
        transform: translate(-50%, -42px);
    }

    .fake_table--sanctuaries .fake_table__cell--actions .tooltip:hover .tooltip__content, .fake_table--status .fake_table__cell--actions .tooltip:hover .tooltip__content {
        -webkit-transform: translate(-50%, -42px);
        -ms-transform: translate(-50%, -42px);
        transform: translate(-50%, -42px);
    }

    .fake_table__cell--actions .tooltip:hover .tooltip__content, .fake_table__cell--actions .tooltip:hover .tooltip__content::after {
        z-index: 10;
        visibility: visible;
        opacity: 1;
    }

    .fake_table__cell--actions .tooltip .tooltip__content::after {
        content: "";
        position: absolute;
        left: 50%;
        bottom: -6px;
        width: 0;
        height: 0;
        border-style: solid;
        visibility: hidden;
        opacity: 0;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
        -webkit-transition: opacity var(--transition-1);
        -o-transition: opacity var(--transition-1);
        transition: opacity var(--transition-1);
    }

    .fake_table__cell--actions .tooltip:hover .tooltip__content::after {
        border-width: 6px 6px 0 6px;
        border-color: var(--brand-beige) transparent transparent transparent;
    }

    .fake_table__cell--actions .tooltip {
        transform: translateY(2px);
    }

    .fake_table--status .fake_table__cell--actions .tooltip__content {
        min-width: 110px;
    }

    .fake_table--status .fake_table__cell--status {
        font-weight: bold;
    }

    .fake_table__cell--status span {
        padding-left: 29px;
    }

    .fake_table__row.fake_table__row--highlighted .fake_table__cell--mail::after {
        background: -webkit-gradient(linear, left top, right top, from(rgba(251,250,248,0)), to(rgba(251,250,248,1)));
        background: -o-linear-gradient(left, rgba(251,250,248,0) 0%, rgba(251,250,248,1) 90%);
        background: linear-gradient(90deg, rgba(251,250,248,0) 0%, rgba(251,250,248,1) 90%);
    }
    
    .fake_table__row--highlighted {
        background-color: rgb(237 232 220 / 20%);
    }

    .fake_table__row--empty {
        display: none !important;
    }

    .accordions .fake_table__row:not(.fake_table__row--highlighted) .fake_table__cell--contact::after {
        background: linear-gradient(90deg, rgba(237,232,220, 0) 0, rgba(237,232,220, 1) 50%, rgba(237,232,220, 1) 100%);
    }

}


@media screen and (min-width: 1400px) {

    .fake_table--status .fake_table__cell--sanctuary {
        width: 32%;
    }

    .fake_table--contact .fake_table__cell--species, .fake_table--sanctuaries .fake_table__cell--residents {
        width: calc(32% - 52px);
    }

}


@media screen and (max-width: 1399.98px) and (min-width: 1240px) {

    .fake_table--status .fake_table__cell--sanctuary {
        width: 31%;
    }

    .fake_table--contact .fake_table__cell--species, .fake_table--sanctuaries .fake_table__cell--residents {
        width: calc(31% - 52px);
    }

}


@media screen and (max-width: 1239.98px) {

    .accordion .fake_table:not(.fake_table--half), .fake_table--contact .fake_table__content, .fake_table--sanctuaries .fake_table__content {
        display: -ms-flexbox;
        display: flex;
        -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
        flex: 0 1 auto;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin: 0 calc(-1 * var(--spacing-0)) calc(-1 * var(--spacing-2)) calc(-1 * var(--spacing-0));
    }

    .fake_table:not(.fake_table--half) .fake_table__row--header, .fake_table__cell .tooltip__content, .fake_table--status .tooltip__icon__icon, .fake_table--sanctuaries .tooltip__icon__icon,
    .fake_table__row--faded .fake_table__cell--mail, .fake_table__row--faded .fake_table__cell--phone {
        display: none;
    }

    .fake_table:not(.fake_table--half) .fake_table__row:not(.fake_table__row--header):not(.fake_table__row--empty) {
        box-shadow: var(--box-shadow);
        border: 0 !important;
    }

    .fake_table:not(.fake_table--half) .fake_table__row:not(.fake_table__row--header):not(.fake_table__row--empty), .fake_table.fake_table--history .fake_table__cell--animals {
        border-radius: var(--border-radius-small);
    }

    .fake_table:not(.fake_table--half) .fake_table__cell {
        width: 100%;
        padding: 0;
    }

    .fake_table:not(.fake_table--half) .fake_table__cell + .fake_table__cell:not(.fake_table__cell--phone):not(.fake_table__cell--actions):not(.fake_table__cell--species):not(.fake_table__cell--residents):not(.fake_table__cell--animals) {
        margin-top: var(--spacing-1);
    }

    .fake_table:not(.fake_table--half) .fake_table__cell + .fake_table__cell.fake_table__cell--phone, .fake_table.fake_table--status .fake_table__cell + .fake_table__cell--actions,
    .fake_table.fake_table--sanctuaries .fake_table__cell + .fake_table__cell--actions {
        margin-top: var(--spacing-2);
    }

    .fake_table.fake_table--contact .fake_table__cell--contact + .fake_table__cell--species, .fake_table.fake_table--sanctuaries .fake_table__cell--contact + .fake_table__cell--residents {
        margin-top: var(--spacing-2);
    }

    .fake_table__cell--status .icon {
        right: -2px;
        top: -2px;
    }

    .fake_table__cell--mail::after, .fake_table__cell--contact::after {
        width: 20px;
    }

    .fake_table:not(.fake_table--status):not(.fake_table--sanctuaries) .fake_table__cell .tooltip {
        line-height: 0;
    }

    .fake_table:not(.fake_table--status):not(.fake_table--sanctuaries) .fake_table__cell .tooltip a, .fake_table:not(.fake_table--status):not(.fake_table--sanctuaries) .fake_table__cell .tooltip button {
        border: 2px solid var(--brand-brown);
        border-radius: var(--border-radius-small);
        transition: var(--transition-2);
    }

    .no-touchevents .fake_table:not(.fake_table--status):not(.fake_table--sanctuaries) .fake_table__cell .tooltip a:hover, .no-touchevents .fake_table:not(.fake_table--status):not(.fake_table--sanctuaries) .fake_table__cell .tooltip button:hover {
        background-color: var(--brand-brown);
        color: var(--brand-white);
        opacity: 1;
    }

    .fake_table:not(.fake_table--status):not(.fake_table--sanctuaries) .fake_table__cell .tooltip .tooltip__icon__icon {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        transition: var(--transition-2);
    }

    .fake_table:not(.fake_table--status):not(.fake_table--sanctuaries) .fake_table__cell .tooltip .tooltip__icon__icon.icon--bin {
        width: 15px;
        height: 17px;
    }

    .fake_table__cell .tooltip .tooltip__icon__icon.icon--pen, .fake_table__cell .tooltip .tooltip__icon__icon.icon--archive {
        width: 16px;
        height: 16px;
    }

    .no-touchevents .fake_table:not(.fake_table--status):not(.fake_table--sanctuaries) .fake_table__cell .tooltip a:hover .tooltip__icon__icon, .no-touchevents .fake_table:not(.fake_table--status):not(.fake_table--sanctuaries) .fake_table__cell .tooltip button:hover .tooltip__icon__icon {
        fill: var(--brand-white);
    }

    .fake_table .fake_table__cell .tooltip__icon__text {
        position: relative;
        clip: unset;
    }

    .fake_table:not(.fake_table--status):not(.fake_table--sanctuaries) .fake_table__cell .tooltip__icon__text {
        display: block;
        width: auto;
        height: auto;
        text-transform: uppercase;
        font-size: var(--font-size-1);
        line-height: var(--line-height-1);
        font-weight: bold;
    }

    .fake_table--status .fake_table__cell--actions a, .fake_table--sanctuaries .fake_table__cell--actions a {
        position: relative;
        border-bottom: 2px dashed;
        line-height: 1.2;
        -webkit-transition: var(--transition-2);
        -o-transition: var(--transition-2);
        transition: var(--transition-2);
    }

    .fake_table__row.fake_table__row--highlighted .fake_table__cell--mail::after {
        background: -webkit-gradient(linear, left top, right top, from(rgba(237,232,220,0)), to(rgba(237,232,220,1)));
        background: -o-linear-gradient(left, rgba(237,232,220,0) 0%, rgba(237,232,220,1) 90%);
        background: linear-gradient(90deg, rgba(237,232,220,0) 0%, rgba(237,232,220,1) 90%);
    }

    .fake_table__row--highlighted {
        border-color: var(--brand-beige) !important;
        background-color: var(--brand-beige);
    }

    .fake_table:not(.fake_table--half) .fake_table__row.fake_table__row--empty {
        width: 100%;
        border: 0;
    }

    .fake_table:not(.fake_table--status):not(.fake_table--sanctuaries) .fake_table__cell:not(.fake_table__cell--actions)::before, .fake_table.fake_table--status .fake_table__cell::before, .fake_table.fake_table--sanctuaries .fake_table__cell::before {
        content: attr(title);
        display: block;
        font-weight: bold;
    }

    .fake_table:not(.fake_table--half):not(.fake_table--status):not(.fake_table--sanctuaries) .fake_table__row {
        position: relative;
    }

    .fake_table__cell a + br + a {
        margin-top: var(--spacing-0);
    }

    .fake_table.fake_table--history .fake_table__cell--animals {
        padding: var(--spacing-1) var(--spacing-2) var(--spacing-2);
        background-color: var(--brand-beige);
        margin-top: var(--spacing-4);
    }

    .fake_table--half .fake_table__cell {
        max-width: 100%;
    }

}


@media all and (max-width: 1239.98px) and (min-width: 992px) {

    .section__table:not(.section__table--sanctuary_list) .fake_table .fake_table__cell--actions {
        display: -ms-flexbox;
        display: flex;
        -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
        flex: 0 1 auto;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .fake_table--contact .fake_table__cell--actions .tooltip {
        margin-right: var(--spacing-1);
    }

    .fake_table:not(.fake_table--half):not(.fake_table--history) .fake_table__row:not(.fake_table__row--header):not(.fake_table__row--empty) {
        margin: 0 var(--spacing-0) var(--spacing-2) var(--spacing-0);
    }

    .fake_table__cell--status .icon {
        transform: scale(1.25);
    }

    .fake_table:not(.fake_table--half) .fake_table__row:not(.fake_table__row--header):not(.fake_table__row--empty) {
        padding: var(--spacing-3) var(--spacing-3) var(--spacing-4);
    }

    .fake_table:not(.fake_table--half):not(.fake_table--status):not(.fake_table--sanctuaries) .fake_table__cell--actions {
        left: var(--spacing-3);
    }

}


@media all and (max-width: 1239.98px) and (min-width: 768px) {

    .fake_table:not(.fake_table--half):not(.fake_table--history) .fake_table__row:not(.fake_table__row--header):not(.fake_table__row--empty) {
        width: calc(50% - 2 * var(--spacing-0));
    }

    .fake_table:not(.fake_table--half):not(.fake_table--status):not(.fake_table--sanctuaries) .fake_table__cell--actions {
        position: absolute;
        bottom: var(--spacing-3);
        width: calc(100% - 2 * var(--spacing-3));
    }

    .fake_table:not(.fake_table--half):not(.fake_table--status):not(.fake_table--sanctuaries):not(.fake_table--history):not(.fake_table--contact) .fake_table__cell:nth-last-of-type(2) {
        margin-bottom: calc(var(--spacing-5) + 15px);
    }

    .fake_table--contact .fake_table__cell:nth-last-of-type(2) {
        margin-bottom: calc(var(--spacing-5) + 85px);
    }

    .fake_table:not(.fake_table--status):not(.fake_table--sanctuaries) .fake_table__cell .tooltip a, .fake_table:not(.fake_table--status):not(.fake_table--sanctuaries) .fake_table__cell .tooltip button {
        padding: 7px 14px 5px 36px;
    }

    .fake_table:not(.fake_table--status):not(.fake_table--sanctuaries) .fake_table__cell .tooltip .tooltip__icon__icon {
        left: 12px;
        transform: translateY(-50%) scale(.9);
    }

    .fake_table__cell {
        padding-top: 12px;
    }

    .fake_table--history .fake_table__content {
        display: -ms-flexbox;
        display: flex;
        -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
        flex: 0 1 auto;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin: 0 calc(-1 * var(--spacing-0)) calc(-1 * var(--spacing-2)) calc(-1 * var(--spacing-0));
    }

    .fake_table.fake_table--history .fake_table__row:not(.fake_table__row--header):not(.fake_table__row--empty) {
        width: calc(50% - 2 * var(--spacing-0));
        margin: 0 var(--spacing-0) var(--spacing-2) var(--spacing-0);
    }

    .fake_table--placements .fake_table__row:not(.fake_table__row--header), .fake_table--status .fake_table__row:not(.fake_table__row--header) {
        background-color: var(--brand-white);
    }

}



@media screen and (max-width: 991.98px) {

    .macos .order-total .fake_table__cell, .ios .order-total .fake_table__cell {
        padding-bottom: 13px;
    }

    .fake_table.fake_table--history .fake_table__cell--animals ul li {
        padding-left: 0;
    }

    .fake_table.fake_table--history .fake_table__cell--animals ul li + li {
        padding-top: var(--spacing-0);
        margin-top: var(--spacing-0);
        border-top: 1px solid var(--border-color);
    }
    

    .fake_table.fake_table--history .fake_table__cell--animals ul li::before {
        display: none;
    }

}


@media screen and (max-width: 991.98px) and (min-width: 768px) {

    .fake_table--contact .fake_table__cell--actions .tooltip + .tooltip {
        margin-top: var(--spacing-1);
    }

    .fake_table:not(.fake_table--half):not(.fake_table--history) .fake_table__row:not(.fake_table__row--header):not(.fake_table__row--empty) {
        margin: 0 var(--spacing-0) 16px var(--spacing-0);
    }

    .fake_table:not(.fake_table--half) .fake_table__row:not(.fake_table__row--header):not(.fake_table__row--empty) {
        padding: var(--spacing-2) var(--spacing-2) var(--spacing-3);
    }

    .fake_table:not(.fake_table--half):not(.fake_table--status):not(.fake_table--sanctuaries) .fake_table__cell--actions {
        left: var(--spacing-2);
    }

}


@media screen and (max-width: 991.98px) and (min-width: 390px) {

    .fake_table--history .fake_table__content, .fake_table--sanctuaries .fake_table__content {
        margin: 0 calc(-1 * var(--spacing-0)) calc(-1 * var(--spacing-3));
    }

    .fake_table.fake_table--history .fake_table__row:not(.fake_table__row--header):not(.fake_table__row--empty) {
        margin-bottom: var(--spacing-3);
    }

}


@media screen and (max-width: 767.98px) {  

    .fake_table.fake_table--history .fake_table__row:not(.fake_table__row--header):not(.fake_table__row--empty) {
        width: 100%;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
        flex: 0 1 auto;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .fake_table:not(.fake_table--half) .fake_table__row:not(.fake_table__row--header):not(.fake_table__row--empty) {
        padding: var(--spacing-2) var(--spacing-2) var(--spacing-3);
    }

    .fake_table__row:not(.fake_table__row--empty) {
        padding-top: 5px;
        padding-bottom: 5px;
    }

    .fake_table.fake_table--contact .fake_table__cell--contact + .fake_table__cell--species, .fake_table.fake_table--sanctuaries .fake_table__cell--contact + .fake_table__cell--residents {
        margin-top: var(--spacing-1);
    }

    .fake_table__row--header {
        display: none;
    }

    .fake_table__row--header + .fake_table__row {
        border-top: 1px solid var(--color-border-1);
    }

    .fake_table:not(.fake_table--half):not(.fake_table--history) .fake_table__row:not(.fake_table__row--header):not(.fake_table__row--empty) {
        width: 100%;
    }

    .fake_table--half.fake_table--entry {
        margin-bottom: 0;
    }

    .fake_table--half.fake_table--entry .fake_table__row, .fake_table--half.fake_table--entry .fake_table__cell {
        width: 100%;
    }

    .fake_table--half.fake_table--entry .fake_table__row {
        border-width: 1px !important;
    }

    .fake_table--half.fake_table--entry .fake_table__cell {
        width: 100%;
        padding: 0;
        text-align: left;
    }

    .form_preview p + .fake_table > .fake_table__row:not(.fake_table__row--header):first-of-type {
        border-top: 0;
    }

    .fake_table.fake_table--placements .fake_table__cell--actions, .fake_table.fake_table--contact .fake_table__cell--actions {
        margin-top: var(--spacing-4);
    }

    .fake_table:not(.fake_table--status):not(.fake_table--sanctuaries) .fake_table__cell .tooltip a, .fake_table:not(.fake_table--status):not(.fake_table--sanctuaries) .fake_table__cell .tooltip button {
        padding: 7px 14px 5px 32px;
    }

    .fake_table:not(.fake_table--status):not(.fake_table--sanctuaries) .fake_table__cell .tooltip .tooltip__icon__icon {
        left: 10px;
        transform: translateY(-50%) scale(.85);
    }

    .table__filters {
        display: block;
    }

    .table__filters .filter_buttons + .button--control {
        margin-top: var(--spacing-7);
    }

    .fake_table--contact, .fake_table--sanctuaries, .fake_table--history {
        margin-top: var(--spacing-2);
    }

    .filter_buttons + .fake_table--sanctuaries, .filter_buttons + .fake_table--history, .fake_table--contact {
        margin-top: var(--spacing-5); 
    }

    .tooltip a {
        position: relative;
    }

    .fake_table.fake_table--contact .fake_table__row:not(.fake_table__row--header):not(.fake_table__row--empty) {
        padding-bottom: var(--spacing-1);
    }

    .fake_table--contact .fake_table__cell--actions {
        display: -ms-flexbox;
        display: flex;
        -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
        flex: 0 1 auto;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .fake_table--contact .tooltip {
        margin-right: var(--spacing-1);
        margin-bottom: 10px;
    }

}


@media screen and (max-width: 767.98px) and (min-width: 576px) { 

    .fake_table--half.fake_table--entry .fake_table__row {
        padding: var(--spacing-1) 0;
    }

}


@media all and (max-width: 767.98px) and (min-width: 390px) {

    .accordion .fake_table.fake_table--status, .accordion .fake_table.fake_table--placements, .fake_table--contact .fake_table__content, .fake_table--sanctuaries .fake_table__content {
        margin: 0 0 calc(-1 * var(--spacing-3));
    }

    .fake_table:not(.fake_table--half):not(.fake_table--history) .fake_table__row:not(.fake_table__row--header):not(.fake_table__row--empty) {
        margin-bottom: var(--spacing-3);
    }

}


@media screen and (max-width: 575.98px) { 

    .fake_table--half.fake_table--entry .fake_table__row {
        padding: 10px 0;
    }

    .fake_table__cell--animals li > a {
        margin-bottom: 5px;
    }

    .fake_table__cell--animals ul li + li {
        margin-top: 10px;
    }

}


@media all and (max-width: 389.98px) and (min-width: 360px) {

    .accordion .fake_table.fake_table--status, .accordion .fake_table.fake_table--placements, .fake_table--contact .fake_table__content, .fake_table--sanctuaries .fake_table__content, .fake_table--history .fake_table__content {
        margin: 0 0 calc(-1 * var(--spacing-2));
    }

    .fake_table:not(.fake_table--half) .fake_table__row:not(.fake_table__row--header):not(.fake_table__row--empty) {
        margin-bottom: var(--spacing-2);
    }

}


@media all and (max-width: 359.98px) {

    .accordion .fake_table.fake_table--status, .accordion .fake_table.fake_table--placements, .fake_table--contact .fake_table__content, .fake_table--sanctuaries .fake_table__content, .fake_table--history .fake_table__content {
        margin: 0 0 calc(-1 * var(--spacing-1));
    }

    .fake_table:not(.fake_table--half) .fake_table__row:not(.fake_table__row--header):not(.fake_table__row--empty) {
        margin-bottom: var(--spacing-1);
    }

    .fake_table:not(.fake_table--half) .fake_table__row:not(.fake_table__row--header):not(.fake_table__row--empty), .fake_table.fake_table--history .fake_table__cell--animals {
        padding: var(--spacing-2);
    }

}