.box-cookies.hide {
    display: none !important;
}

.box-cookies a {
    color: #ffffff;
    text-decoration: underline;
    font-weight: bold;
}

.box-cookies a:hover {
    color: #ffffff;
}

.box-cookies {
    position: fixed;
    box-shadow: 0 0 5px #cccccc;
    -webkit-box-shadow: 0 0 5px #0a0a0a;
    background-color: white;
    margin: 1% auto;
    left: 0;
    border-radius: 15px;
    right: 0;
    width: 80%;
    padding-top: 5px;
    padding-bottom: 5px;
    z-index: 999999999999999;
    bottom: 0;
    padding-left: 20px;
    padding-right: 20px;
    text-align: center;
    display: flex;
    align-items: center;
    color: #ffffff;
    justify-content: space-between;
}

.box-cookies .msg-cookies,
.box-cookies .btn-cookies {
    text-align: center;
    max-width: 90%;
    padding: 15px;
    color: rgb(117, 116, 116);
    font-family: 'Nunito Sans', sans-serif;
    font-size: 100%;
    margin: 0 auto;
}

.box-cookies .btn-cookies {
    background: #01833c;
    cursor: pointer;
    border: 0px;
    height: 50px;
    width: 150px; /* Defina a largura desejada aqui */
    margin-top: 10px;
    font-weight: bold;
    margin-right: 10px;
    margin-left: 10px;
    margin-bottom: 10px;
    text-transform: uppercase;
    align-self: center;
    border-radius: 10px;
}

.box-cookies .btn-decline {
    background: #ff4c4c;
    cursor: pointer;
    border: 0px;
    height: 50px;
    width: 150px; /* Defina a largura desejada aqui */
    margin-top: 10px;
    font-weight: bold;
    margin-right: 10px;
    margin-left: 10px;
    margin-bottom: 10px;
    text-transform: uppercase;
    align-self: center;
    border-radius: 10px;
}

@media screen and (max-width: 600px) {
    .box-cookies {
        max-width: 100%;
        flex-direction: column;
        align-items: center; /* Adicionado para centralizar os itens */
    }
    .box-cookies .msg-cookies {
        max-width: 100%; /* Ajustado para ocupar toda a largura */
        padding: 10px; /* Ajuste para melhor visualização em telas pequenas */
    }
    .box-cookies .btn-cookies, .box-cookies .btn-decline {
        width: 80%; /* Ajuste de largura para melhor visualização em telas pequenas */
        margin-left: 0;
        margin-right: 0;
    }
}
