#consent-banner { position: fixed; bottom: 0; right: 0; width: 57%; background-color: #f9f9f9; color: #333; padding: 10px; box-sizing: border-box; display: flex; justify-content: space-between; align-items: center; z-index: 9999; } #consent-banner a { color: #1e90ff; text-decoration: none; } #consent-banner .close { cursor: pointer; font-size: 18px; } @media (min-width: 768px) { #consent-banner { flex-direction: row; max-width: 600px; } } @media (max-width: 767px) { #consent-banner { flex-direction: column; align-items: stretch; width: 90%; } }