.cookie-popup {
    background-color: #fffddfed;
    z-index: 9999;
    display: inline-flex;
    position: fixed;
    left: 15%;
    right: 15%;
    padding: 10px 15px;
    box-shadow: 0 0 0.6rem 0 rgb(0 0 0 / 15%);
    height: 58px;
    line-height: 150%;
    transition: opacity .5s;
    opacity: 0;
    border-radius: 20px;
    border: 2px solid #979797;
    font: 12.5pt verdana, geneva, lucida, 'lucida grande', arial, helvetica, sans-serif;
    text-align: center;
    justify-content: space-between;
    align-content: space-around;
    align-items: center;
}

.ltd.cookie-popup {
  left: 0px;
  right: 0px;
  border-radius: 0px;
  justify-content: center;  
}

.ltd.cookie-popup--not-accepted {
  animation: cookie-popup-in-ltd .5s ease forwards;
}

.ltd .cookie-popup-text {
  flex-basis: unset;
}

.cookie-popup--not-accepted {
  opacity: 1;
  animation: cookie-popup-in .5s ease forwards;
}

.cookie-popup--accepted {
  opacity: 0;
}

.cookie-popup-text {
  display: inline-block;
  flex-basis: 80%;
}

.cookie-popup-actions {
  display: inline-block;
  /* height: 44px; */
  flex-basis: 20%;
  font: 17.5pt verdana, geneva, lucida, 'lucida grande', arial, helvetica, sans-serif;
  /* padding: 2em; */
  margin: 0px 0px 0px 10px;
  height: 100%;
}

.cookie-popup-actions button {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000000;
  border: none;
  background: linear-gradient(177deg, rgb(255 255 251) 0%, rgb(255 249 192) 50%, rgb(246 231 103) 100%);
  border: 1px solid black;
  white-space: nowrap;
  border-radius: 10px;
  width: 100%;
    height: 35px;
  padding: 5px 10px 5px 10px;
  font-family: inherit;
  font-style: inherit;
  font-size: 19px;
  letter-spacing: 1px;
  font-weight: bold;
  text-transform: uppercase;
  padding: 5px;
  cursor: pointer;
  box-shadow: darkgrey 1px 1px 4px 0px;
}

.cookie-popup-actions button:hover {
  text-decoration: underline;
}

@keyframes cookie-popup-in {
  from { bottom: -6.25rem; }
  to { bottom: 1.25rem; }
}

@keyframes cookie-popup-in-ltd {
  from { bottom: -6.25rem; }
  to { bottom: 0px; }
}

@media handheld, only screen and (max-width: 767px) {
  .cookie-popup {
    font: 2.5em verdana;
    border-radius: 50px;
    left: 2%;
    right: 2%;
    height: 6%;
    border: 2px dashed #d2464a;
  }
  .cookie-popup-actions button {
    font: 2em verdana;
    height: 70%;
    vertical-align: middle;
    border-radius: 0.5em;
    white-space: unset;
  }
  .cookie-popup-actions {
    display: flex;
    padding-right: 15px;
    flex-direction: column;
    justify-content: space-around;
  }
}

