/* FAQS, added by paul kane */

.faq-list {
    align-self: stretch;
}

.faq-item {
    border-bottom: 1px solid;
    width: 100%;
}

.faq-item:last-child {
    border: unset;
}

.faq-item--q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px;
    cursor: pointer;
    gap: 15px;
}

.faq-item h3 {
    margin: unset;
}

.faq-item--a {
    padding: 0 25px;
    display: none;
}

.faq-item--a p {
    font-size: 16px;
    margin-bottom: 24px;
}

.faq-item--chevron {
    transition: .1s all;
}

.faq-item.active .faq-item--chevron {
    transform: rotate(90deg);
}

.faq-nav {
    font-weight: bold;
}

.faq-nav li {
    margin-bottom: 10px;
}

.faq-nav a {
    text-decoration: none;
}

.faq-nav a.active {
    color: #386F38;
}

.faq-nav ul {
    margin: 20px;
}


/* cookie notice */

.cookie {
    position: fixed;
    bottom: 0;
    width: 100%;
    display: flex;
    background: #000;
    border-top: 1px solid #fff;
    color: #fff;
    align-items: center;
    gap: 50px;
    padding: 35px calc(35px/2);
    z-index: 1;
}

.cookie-copy {
    flex: 1;
    color: #E9DFD6;
}

.cookie .btns {
    flex-direction: column;
}

.nav-backdrop {
    display: none;
}

.module-block p:empty {
    min-height: 13px;
}


.error-bar:after {
    content: '';
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: red;
    z-index: 100000;
    pointer-events: none;
    top: 0;
}


.warning-bar:after {
    content: '';
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: BA8E23;
    z-index: 100000;
    pointer-events: none;
    top: 0;
}