#cookie_container {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: #fff;
    z-index: 5;
}

.cookie_content {
    width: 1440px;
    height: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}

.cookie_logo {
    width: 300px;
}

.cookie_logo .first {
    margin-bottom: 0;
    text-transform: uppercase;
    font-size: 2rem;
}

.cookie_logo .second {
    margin-top: 0;
    text-transform: uppercase;
    font-size: 1.2rem;
}

.cookie_text {
    width: calc(100% - 500px);
}

.cookie_text a {
    color: #000;
    transition: 0.3s;
    -webkit-transition: 0.3s;
}

.cookie_text a:hover {
    color: #8e0700;
}

.cookie_button {
    width: 200px;
    text-align: center;
}

.cookie_button a {
    font-family: 'Overpass Mono', monospace;
    padding: 10px 20px;
    color: #8e0700;
    border: 2px solid #8e0700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
    -webkit-transition: 0.3s;
}

.cookie_button a:hover {
    background: #8e0700;
    color: #fff;
    cursor: pointer;
}

#cookie_icon_close {
    position: absolute;
    top: 15px;
    right: 30px;
    width: 30px;
    height: 30px;
    border: 2px solid #8e0700;
    border-radius: 50px;
    transition: 0.3s;
    -webkit-transition: 0.3s;
}

#cookie_icon_close i {
    color: #8e0700;
    position: absolute;
    left: 10px;
    top: 6px;
}

#cookie_icon_close:hover {
    cursor: pointer;
    background-color: #8e0700;
}

#cookie_icon_close:hover i {
    color: #fff;
}

/*RULES FOR INTERNAL COOKIE PAGE*/

.cookie_internal_container {
    width: 1440px;
    margin: 0 auto;
    text-align: left;
    padding-top: 150px;
    padding-bottom: 50px;
}

.cookie_internal_container a {
    color: #000;
}

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

    .cookie_content {
        width: 1280px;
    }

    /*RULES FOR INTERNAL COOKIE PAGE*/

    .cookie_internal_container {
        width: 1280px;
    }

}

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

    #cookie_container {
        height: auto;
        padding: 50px 0;
    }
    
    .cookie_content {
        width: calc(100% - 100px);
        height: auto;
        flex-direction: column;
    }

    .cookie_logo {
        text-align: center;
    }

    .cookie_logo .first {
        margin-top: 0;
    }

    .cookie_text {
        width: calc(100% - 250px);
        text-align: center;
    }

    .cookie_button {
        margin-top: 30px;
    }

    /*RULES FOR INTERNAL COOKIE PAGE*/

    .cookie_internal_container {
        width: 1024px;
    }

}

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

    .cookie_text {
        width: calc(100% - 100px);
    }

    /*RULES FOR INTERNAL COOKIE PAGE*/

    .cookie_internal_container {
        width: calc(100% - 100px);
        padding-top: 50px;
    }

}

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

    .cookie_text {
        width: calc(100% - 50px);
    }

}

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

    .cookie_content {
        width: calc(100% - 50px);
    }
    
    .cookie_text {
        width: 100%;
    }

}

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

    /*RULES FOR INTERNAL COOKIE PAGE*/

    .cookie_internal_container {
        width: calc(100% - 50px);
        padding-top: 50px;
    }

}

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

    #cookie_container {
        padding: 20px 0 30px 0;
    }

    .cookie_content {
        width: calc(100% - 20px);
    }

    .cookie_logo .first {
        font-size: 1.5rem;
    }

    .cookie_logo .second {
        font-size: 1rem;
        margin-bottom: 0;
    }

    .cookie_text p {
        font-size: 0.9rem;
        line-height: 1.7rem;
    }

    .cookie_button {
        margin-top: 20px;
    }

    .cookie_button a {
        font-size: 0.9rem;
    }
    
    /*RULES FOR INTERNAL COOKIE PAGE*/

    .cookie_internal_container h3 {
        font-size: 1.5rem;
    }

    .cookie_internal_container a {
        font-size: 0.9rem;
        display: block;
    }

}

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

    #cookie_container {
        padding: 30px 0;
    }

}