.cookies{

    position: fixed;
    z-index: 10000;
  

    bottom: 0;

background: #EEEEEE;

/*    border-radius: 24px;*/ 

    width: 100%;

    

    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 15px;
    gap: 16px;
   

    



    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    transition: opacity .6s;

}



.cookies.active{

    opacity: 1;

    visibility: visible;

    pointer-events: auto;

}



.cookies_text{

   

    font-size: 18px;
    font-weight: 400;
    color:#C6C6C6;

    a{
        color: inherit;
        border-bottom: 1px solid #C6C6C6;
    }

}



.cookies_btn{





border: 1px solid #CCCCCC;
border-radius: 10px;
padding: 12px 24px;

    

    width: fit-content;

   

    color: #C6C6C6;
   

   
   

    cursor: pointer;


    font-size: 18px;
    font-style: normal;
    font-weight: 500;

}