#cookie_container {
    width: 100%;
    height: auto;
    // background-color: rgb(69, 35, 37, 0.7);
	background-color: #2da749;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    padding: 25px 0;
    display: none;
}

.cookie_closure {
    position: absolute;
    width: 30px;
    height: 30px;
    border: 2px solid #fff;
    border-radius: 20px;
    background-color: transparent;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
    -webkit-transition: 0.3s;
}

.cookie_closure span {
    color: #fff;
    font-size: 0.8rem;
    font-weight: 500;
    transition: 0.3s;
    -webkit-transition: 0.3s;
}

.cookie_closure:hover {
    background-color: #fff;
}

.cookie_closure:hover span {
    color: #452325;
}

.cookie_logo {
    height: 70px;
}

.cookie_logo svg {
    height: 100%;
}

.cookie_logo svg .cls-1 {
    fill: #fff;
}

.cookie_content.d_flex {
    width: var(--static-width);
    height: auto;
    margin: 0 auto;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
}

.cookie_text p {
    color: #fff;
    margin: 0;
    padding: 30px 0;
}

.cookie_text a {
    color: #fff;
    text-decoration: underline;
}

.cookie_text a:hover {
    text-decoration: none;
}

.cookie_button a.primary_button {
    display: block;
}

.cookie_page {
    width: 1280px;
    margin: 0 auto;
    text-align: left;
}

.cookie_title {
    width: 100%;
    text-align: left;
}

.cookie_page_text {
    text-align: left;
}

.cookie_page_text .h3 {
    font-size: 1rem;
}

.cookie_page_text a {
    text-decoration: underline;
    color: #6d6d6d;
}

@media screen and (max-width: 1280px) {

    .cookie_page {
        width: 1024px;
    }

}

@media screen and (max-width: 1024px) {

    #cookie_container {
        bottom: 0;
        top: unset;
    }

    .cookie_content.d_flex {
        width: var(--main-width);
    }

    .cookie_page {
        width: var(--main-width);
    }

}

@media screen and (max-width: 600px) {

    #cookie_container {
        padding: 30px 0;
    }

}

@media screen and (max-width: 414px) {

    .cookie_closure {
        width: 20px;
        height: 20px;
        top: 10px;
        right: 10px;
    }

    .cookie_closure span {
        font-size: 0.7rem;
    }
    
    .cookie_logo {
        height: 50px;
    }

    .cookie_text p {
        font-size: 0.8rem;
    }

}