#cookie__wrapper {
    position: fixed;
    bottom: 1.3rem;
    right: 1.3rem;
    z-index: calc(var(--navbar-z-index) + 100);
    background-color: var(--gray-500);
    border-radius: var(--border-radius-small);
    padding: 1.3rem;
    opacity: 0.9;
}

#cookie__text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: flex-start;
}

#cookie__text > span:first-child {
    font-size: 1.3rem;
    font-weight: 600;
}


#cookie__text > span:last-child {
    font-size: 0.9rem;
    font-weight: 300;
    max-width: 50ch;
    word-wrap: break-word;
    overflow: hidden;
}

#cookie__actions {
    display: flex;
    gap: 0.8rem;
    margin-top: 1rem;
}

#cookie__actions button {
    font-size: 0.9rem;
    font-weight: 400;
    border-radius: var(--border-radius-small);
}

#cookie__actions button:first-child {
    background-color: var(--green-200);
    color: var(--gray-500);
}

#cookie__actions button:first-child:hover {
    background-color: var(--green-400);
}

@media (max-width: 1175px) {
    #cookie__wrapper {
        bottom: 0;
        right: 0;
    }

    #cookie__actions {
        justify-content: flex-end;
    }
}