.cookie-popup { display: block; width: 100%; padding: 40px 20px 30px 20px; position: fixed; top: 0; right: 0; z-index: 999999; background: #FFF; color: #000; font-size: 15px; line-height: 1.5; }
  .cookie-popup .cookieTitle { text-align: center; }
  .cookie-popup .cookieContent { text-align: left; }
  .cookie-popup .cookieButtonsContainer { display: flex; align-items: center; justify-content: space-around; padding-top: 20px; }
    .cookie-popup .cookieButton { display: inline-block; width: 130px; padding: 1px 0; border: 2px solid #000; border-radius: 2px; color: #000; text-align: center; cursor: pointer; color: #000; }

@media only screen and (max-width: 768px) {
  .cookie-popup { width: 88%; left: 50%; transform: translate(-50%,0); }
}