

.cookie-popup {

    font-size: 0.875rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: fixed;
  
    padding: 0.625rem 0.9375rem;
  
  
    -webkit-box-shadow: var(--box-x);
    box-shadow: var(--box-x);
    line-height: 150%;
    transition: opacity .5s;
    opacity: 0;
    z-index: 9999;
  
    background: var(--n5);
    border-radius: 0 50px 50px 0 ;
    border-radius: 0 10px 10px 0 ;
    color: #ffffff !important;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%,var(--n5)30% , var(--n5)100%);
    background: #2f2f2f;
  }
  
  .cookie-popup a {
   color: #ffffff !important;
  }
  
  .cookie-popup--short {
    right: auto;
    /* width: 21.875rem; */
    /* width: clamp(150px, 71vw, 16rem); */
  
  }
  
  #cookie-popup {
   flex-wrap:nowrap;
   align-items:center;
   padding: 30px;
  }
  
  .cookie-popup--not-accepted {
    opacity: 1;
    animation: cookie-popup-in .5s ease forwards;  
  
  }
  
  .cookie-popup--accepted {
    opacity: 0;
  }
  
  .cookie-popup a {
  
  }
  
  .cookie-popup a:visited {
    text-decoration: none;
  }
  
  .cookie-popup-actions {
    flex: 1;
    text-align: right;
  }
  
  .cookie-popup-actions button {
    color: var(--n4);
    border: none;
    background: none;
    font-family: inherit;
    font-style: inherit;
    font-size: inherit;
    font-weight: bold;
    text-transform: uppercase;
    font-size:   0.75rem;
    padding: 0;
    cursor: pointer;
    border: 3px solid var(--n3);
    padding: 9px;
    background: var(--n4);
    color: var(--c6);
  }
  
  .cookie-popup-actions button:hover {
    text-decoration: underline;
  }
  
  @keyframes cookie-popup-in {
    from { bottom: -6.25rem; }
    to { bottom: 1.25rem; }
  }