/* Footer */
footer {
    padding: 0px;
    font-size: 14px;
    border-top: unset;
    font-family: Arial, Helvetica, sans-serif;
    background-color: var(--color-primary);
    box-shadow: var(--shadow-container);
}

.footerContainer {
    display: grid;
    padding: 0px 15px;
    margin-top: 5px;
}

.footer-content-wide {
    background-color: var(--color-primary-dark);
    max-width: unset;
    width: 100%;
    justify-content: center;
    padding: 5px 15px;
    font-weight: normal;
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    font-size: 0.875rem;
}

.ticket-button-call-back {
	margin-top: 2px;
	padding: 10px 15px;
    width: max-content;
    height: max-content;
    place-self: center;
}

.footer-content-wide > * {
  position: relative;
  padding-right: 6px; /* spacing between items */
}

.footer-content-wide > *:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 10%;              /* push down a bit */
  height: 80%;
  border-right: 1px solid white;
}

.footer-copyright {
    grid-template-columns: 1fr 1fr 1fr;
    margin: 15px 20px;
    padding: unset;
    width: 100%;
    width: calc(100% - 40px);
    width: -moz-calc(100% - 40px);
    width: -webkit-calc(100% - 40px);
    gap: 20px;
    overflow: hidden;
}

.footerContent a{
    width: max-content;
}

.footerContentLogo a {
    justify-content: flex-end;
}

.footerContentLogo a img {
    height: 100%;
    width: 100%;
    overflow: auto;
    max-width: unset;
    max-height: 54px;
}

.footerContentLogo {
    display: flex;
    grid-column: 3/4;
}

.content-start .footerContent {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    flex-direction: column;
}

.footer-copyright,
.footerContentLogo {
    height: min-content;
}

.ticket-button:hover {
    background-color: var(--color-tertiary);
}

@media screen and (max-width: 1350px) {
    .footer-copyright {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .footerContent {
        width: 100%;
    }

    .footerContentLogo {
        grid-column: 2/3;
        grid-row: 1/3;
        align-self: end;
    }
}

@media only screen and (max-width: 825px) {
    .footer-copyright {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .footerContentLogo {
        grid-column: 1/2;
        grid-row: 3/4;
    }

    .content-start .footerContent {
        width: 100%;
    }
}

@media only screen and (max-width: 725px) {
    footer .footerContent {
        padding: unset;
    }

    footer .footer-content-wide {
        padding: 5px 15px;
    }

    .footerContentLogo {
        width: 100%;
        justify-self: start;
        justify-content: start;
    }

    .footerContentLogo a {
        justify-content: center;
    }
}

@media only screen and (max-width: 500px) {
    .footerContentLogo {
        width: 100%;
    }
}