/* ========================================
   FOOTER
   ======================================== */

.push {
    height: 400px;
    width: 100%;
    background-color: red;
}

.footer-container {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    height: 100%;
    padding-top: 30px;
    padding-bottom: 30px;
    background-image:linear-gradient(to top, #000000c4, #434343cf );
    backdrop-filter: blur(10px) saturate(180%);
    -webkit-backdrop-filter: blur(10px) saturate(180%);
    color: var(--white);
}

.details-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.detail {
    display: flex;
    align-self: flex-start;
}

.detail-icon {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

.operating-hours-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    gap: 20px;
}

.footer-end-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 15px;
    padding-bottom: 15px;
    background-color: var(--white);
    box-shadow: inset 0 -5px 20px 0 rgba(0, 0, 0, 0.25);
}

.details-wrapper div a.footer-links {
    display: block;
    text-decoration: none;
    color: var(--white);
    transition: text-decoration 0.1s ease-in-out;
}

.details-wrapper div a.footer-links:hover {
    cursor: pointer;
    text-decoration: underline;
}

.div-line {
    width: 1px;
    height: 160px;
    background-color: var(--medium-grey);
    align-self: center;
}