:root {
    --n5: #208dcc; 
    --n4: #bdbdbc;
    
  }

  header nav #tel2 {
    font-family: SF-UI-Display-Medium;
    font-size: 20px;
    color: #039be5;
    text-decoration: none;
    float: right;
    padding: 5px 0px;
    padding-left: 32px;
    background: url(../images/tel.png) no-repeat left center;
    margin-top: 0;
    opacity: 1;
    transition: all 0.5s ease;
}

.cookie-popup {
    
    font-family: SF-UI-Text-Medium;
    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 ; */
   border-radius: 10px;
   color: #ffffff !important;
   /* background: linear-gradient(90deg, rgba(10, 10, 10, 0) 0%,var(--n5)30% , var(--n5)100%); */
   
   }
   .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;
   }
   .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; }
   }
   