#terms-popup-box { position: fixed; bottom: 0; width: 100%; background-color: #333; color: white; padding: 20px; box-sizing: border-box; display: flex; justify-content: space-between; align-items: center; z-index: 1000; } #terms-popup-box p { margin: 0; font-size: 16px; } #terms-popup-box .close { background: none; color: white; border: none; font-size: 20px; cursor: pointer; } @media (max-width: 768px) { #terms-popup-box { flex-direction: column; align-items: flex-start; } }