#cookie_container {
    display: none;
    width: 400px;
    height: auto;
    position: fixed;
    bottom: 40px;
    right: 40px;
    background-color: #fff;
    z-index: 9999;
    padding: 50px 0;
    border: 2px solid pink;
}

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

.cookie_close {
    position: absolute;
    top: 10px;
    left: 0;
    width: var(--full-width);
    text-align: right;
}

.cookie_close span {
    color: pink;
    padding: 3px 12px;
    border: 1px solid pink;
    border-radius: 50%;
    right: 20px;
    position: inherit;
    background-color: #fff;
    cursor: pointer;
    transition: 0.3s;
    -webkit-transition: 0.3s;
}

.cookie_close span:hover {
    color: #fff;
    background-color:pink;
}

.cookie_logo img {
    height: 70px;
}

.cookie_text {
    text-align: center;
    margin-bottom: 30px;
}

.cookie_text a {
    color: #2c2a33;
}

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

.cookie_button {
    width: var(--full-width);
    text-align: center;
}

.cookie_button a {
    padding: 15px 32px;
    text-decoration: none;
    background: pink;
    border-radius: 50px;
    border: 2px solid pink;
    color: #fff;
    font-weight: 800;
    transition: 0.3s;
    -webkit-transition: 0.3s;
}

.cookie_button a:hover {
    background: #fff;
    color: pink
}

/***/

.cookie_internal_text {
    width: var(--static-width);
    height: auto;
    margin: 0 auto;
    text-align: left;
    margin: 200px auto 100px auto;
}

.cookie_internal_text h2 {
    font-size: 2rem;
    line-height: 2.5rem;
}

.cookie_internal_text a {
    color: #2c2a33;
    display: inline-block;
}

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

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

    .cookie_internal_text {
        width: var(--calc-width);
        margin: 150px auto 100px auto;
    }

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

    #cookie_container {
        width: var(--full-width);
        right: 0;
        left: 0;
        margin: 0 auto;
        bottom: 0;
        padding: 25px 0;
    }

}