.cookie_img {
    padding: 5%; 
    padding-left: 0; 
    padding-bottom: 0; 
    display: inline-flex;
}
.cookie_img img {
    width: 65px;
    height: 65px; 
    border: 3.5px solid white;
}
.cookie_img p {
    font-size: 2rem;
    padding-bottom: 2%; 
    font-weight: bold; 
    margin-top: 4%;
}
#cookies {
    width: 100%;
    position: fixed;
    bottom: 0;
    color: white;
    padding: 0 5%;
    background-color: teal;
    z-index: 10;
    display: block;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
}
#cookies.visible {
    transform: translateY(0);
}
.cookies {
    min-height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.cookies p {
    font-size: 1.2rem;
    font-weight: 500;
}
.cookies a {
    color: yellow;
    font-size: 1.2rem;
    font-weight: 500;
    text-decoration: none;
}
.cookies a:hover {
    color: gold;
    text-decoration: underline;
    font-weight: bolder;
}
#cookies-btn {
    border-radius: 5px;
    padding: 8px 12px 8px 12px;
    font-size: 1rem;
    font-family: inherit;
    cursor: pointer;
    border: 3px solid white;
    background-color: black;
    color: white;
}
#cookies-btn:hover {
    border-radius: 5px;
    padding: 10px 14px 10px 14px;
    font-weight: 600;
    border: 3.5px solid white;
    background-color: gold;
    color: #000;
}
@media (max-width:1600px) {

    .container {
    width: 100%;
}
}
@media (max-width:1024px) {
    .cookies {
        padding: 10px 0;
    }
    
}