#cookieConsentCollection {
    display: none;
}

#cookieConsentCollection p:last-child{
    margin-bottom: 0px;
}
#cookieConsentCollection p:first-child{
    margin-top: 0px;
}

#cookieConsentPopup {
    position: absolute;
    background-color: #FFFFFF;
    color: #3A4A27;

    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 1.5rem 3.5rem 1.5rem 3.5rem;

    /*  */
    z-index: 10001;
    display: grid;
    grid-template-columns: auto auto;
    grid-template-areas: "cookie middle settings""cookie middle button";
    column-gap: 1rem;

}

.cookieConsentLabel{
    margin: auto 0;
}

#cookieConsentLeft {
    grid-area: cookie;
}

#cookieConsentMiddle {
    border-right: 2px solid #91947D;
    grid-area: middle;
}

#cookieConsentRight {
    /* margin: 0rem 3rem 0rem 0rem; */
    grid-area: settings;
}

#cookieConsentOverlay {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 10000;
    background-color: #000000;
    opacity: 0.5;
    width: 100%;
    height: 100%;
}

#cookieConsentSettings {
    display: grid;
    grid-template-columns: auto auto;
    column-gap: 10px;
    row-gap: 10px;
}

#cookieConsentButton {
    color: #FFFFFF;
    /* color: #3A4A27; */
    /* background-color: #FFFFFF; */
    background-color: #62002D;
    grid-area: button;
    height: fit-content;
    align-self: end;
}