.cookie-banner {
   display: none;
   position: fixed;
   z-index: 9999;
   bottom: 60px;
   left: 0;
   right: 0;
   padding: 0 10px;
   text-align: center;
}

.cookie-banner__container {
   background-color: #fff;
   padding: 7px 60px;
   font-size: 18px;
   text-align: center;
   transition: all 0.2s;
   box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
   justify-content: center;
   display: inline-flex;
   margin: 0 auto;
}

.cookie-banner__content {
   display: flex;
   align-items: center;
   flex-wrap: wrap;
   justify-content: center;
}

.cookie-banner p.normal {
   margin: 10px 0;
   font-size: 16px;
}

.cookie-banner a.normal {
   margin: 10px;
   font-size: 16px;
}


.cookie-banner button {
   background-color: #000000;
   border: none;
   border-radius: 0;
   box-shadow: none;
   padding: 6px 18px;
   font-size: 16px;
   color: #fff;
   cursor: pointer;
   margin: 10px 20px;
   font-family: inherit;
   line-height: inherit;
}


@media screen and (max-width: 767px) {
   .cookie-banner {
      bottom: 10px;
   }
   .cookie-banner__container {
      padding: 7px 10px;
      font-size: 14px;
   }
   .cookie-banner p.normal,
   .cookie-banner a.normal,
   .cookie-banner button {
      font-size: 14px;
   }
}
