
.accordion .accordion-item {
    border-bottom: 1px solid #e5e5e5;
}

    .accordion .accordion-item button[aria-expanded='true'] {
        border-bottom: 1px solid #3e5e0c;
        background: #3e5e0c;
        color: #fff;
    }

.accordion button {
    position: relative;
    display: block;
    text-align: left;
    width: 100%;
    padding: 1em 0;
    color: #7288a2;
    font-size: 1.15rem;
    font-weight: 400;
    border: none;
    background: none;
    outline: none;
}

    .accordion button:hover,
    .accordion button:focus {
        cursor: pointer;
        color: #3e5e0c;
    }

        .accordion button:hover::after,
        .accordion button:focus::after {
            cursor: pointer;
            color: #3e5e0c;
            border: 1px solid #3e5e0c;
        }

    .accordion button .accordion-title {
        padding: 0.5em 1em 1em;
        font-weight:500;
    }

    .accordion button .icon {
        display: inline-block;
        position: absolute;
        top: 18px;
        right: 10px;
        width: 22px;
        height: 22px;
        border: 1px solid;
        border-radius: 22px;
        color: #344519;
    }

        .accordion button .icon::before {
            display: block;
            position: absolute;
            content: '';
            top: 9px;
            left: 5px;
            width: 10px;
            height: 2px;
            background: currentColor;
        }

        .accordion button .icon::after {
            display: block;
            position: absolute;
            content: '';
            top: 5px;
            left: 9px;
            width: 2px;
            height: 10px;
            background: currentColor;
        }

    .accordion button[aria-expanded='true'] {
        color: #000;
    }

        .accordion button[aria-expanded='true'] .icon::after {
            width: 0;
        }

        .accordion button[aria-expanded='true'] + .accordion-content {
            opacity: 1;
            max-height: 9em;
            transition: all 200ms linear;
            will-change: opacity, max-height;
        }

.accordion .accordion-content {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 200ms linear, max-height 200ms linear;
    will-change: opacity, max-height;
}

    .accordion .accordion-content p {
        font-size: 1rem;
        margin: 2em 0;
        font-weight: 400;
    }


.cookies {
    position: fixed;
    bottom: 10px;
    max-width: 345px;
    width: 100%;
    background: #fff;
    padding: 15px 25px 22px;
    transition: right 0.3s ease;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    z-index:999;
}


    .cookies .header {
        display: flex;
        align-items: center;
        column-gap: 15px;
    }

.header i {
    color: #344518;
    font-size: 32px;
}

.header h4 {
    color: #344518;
    font-weight: 500;
}

.cookies .data {
    margin-top: 16px;
}

    .cookies .data p {
        color: #333;
        font-size: 16px;
        text-align: justify;
    }

.data p a {
    color: #344518;
    text-decoration: none;
}

    .data p a:hover {
        text-decoration: underline;
    }

.cookies .buttons {
    margin-top: 16px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.buttons .button {
    border: none;
    color: #fff;
    padding: 8px 0;
    border-radius: 4px;
    background: #344518;
    cursor: pointer;
    width: calc(100% / 2 - 10px);
    transition: all 0.2s ease;
}

.buttons #acceptBtn:hover {
    background-color: #ed8a19;
}


#oopss {
    background: #fcfff8;
    left: 0px;
    top: 0;
    width: 100%;
    height: 100%;
    line-height: 1.5em;
    z-index: 9999;
}

    #oopss #error-text {
        font-size: 40px;
        display: flex;
        flex-direction: column;
        align-items: center;
        color: #000;
    }

        #oopss #error-text img {
            margin: 85px auto 20px;
            height: 342px;
        }

        #oopss #error-text span {
            position: relative;
            font-size: 3.3em;
            font-weight: 900;
            margin-bottom: 50px;
        }

        #oopss #error-text p.p-a {
            font-size: 19px;
            margin: 30px 0 15px 0;
        }

        #oopss #error-text p.p-b {
            font-size: 15px;
        }

        #oopss #error-text .back {
            background: #fff;
            color: #000;
            font-size: 30px;
            text-decoration: none;
            margin: 2em auto 0;
            padding: .7em 2em;
            border-radius: 500px;
            
            font-weight: 900;
            -webkit-transform: translateY(-13px);
            transform: translateY(-13px);
            box-shadow: 0 0px 0px 0 rgba(0, 0, 0, 0.3), inset 0px 0 0 3px #000;
        }
