.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #EDEDED;
    padding: 1rem;
    box-shadow: 0px -2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
	opacity: 1;
}

.cookie-content {
    width: 100%; /*     */
    text-align: center;
    padding: 1rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.cookie-content p {
    margin-bottom: 1rem;
    font-size: 14px;
    line-height: 1.5;
}

.cookie-content button {
    margin-top: 1rem;
    color: white;
    background-color: #FFA437;
    border: none;
    padding: 0.5rem 1rem;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease-in-out;
    display: inline-block; /*   inline-block */
    margin: 0 auto;
    width: auto; /*   */
}

.cookie-content button:hover {
    transform: scale(1.05);
}

@media screen and (max-width: 600px) {
    .cookie-content {
        padding: 1rem;
    }

    .cookie-content p {
        font-size: 14px;
    }
}