   .popup-cookies-box{
        position:fixed;
        z-index:10000;
        left:0px;
        right:0px;
        top:0px;
        bottom:0px;
        justify-content:center;
        align-items:center;
        display:none;
    }
    .popup-cookies-box.active{
        display:flex;
    }
    .popup-cookies-box ul{
        list-style-type:none;
        padding:0px;
        margin:0px;
    }
    .popup-cookies-box .background{
        position:absolute;
        left:0px;
        right:0px;
        top:0px;
        bottom:0px;
        background-color:#000;
        opacity:0.4;
    }
    .popup-cookies-box .container{
        max-width: 740px;
        background-color: #fff;
        border-radius: 10px;
        padding: 20px 30px;
        position: relative;
        height: 450px;
        display: flex;
        justify-content: space-between;
        flex-direction: column;
    }
    .popup-cookies-box .header{
        display:flex;
        justify-content:space-between; 
    }
    .popup-cookies-box .header > div{
        cursor: pointer;
        font-weight: 600;
        font-size: 18px;
        border-bottom: 1px solid grey;
        padding: 10px 0px;
    }
    .popup-cookies-box .header > div.active{
        color:green;
    }
    .popup-cookies-box .container .body{
        height:250px;
        overflow-y: auto;
        padding:30px 0px;
        font-size: 14px;
        margin-top:10px;
    }
    .popup-cookies-box .container .body > div{
        display:none;
    }
    .popup-cookies-box .container .body > div.active{
        display:block;
    }
    .popup-cookies-box .container .actions{
        display:flex;
        justify-content:right;
    }
    .popup-cookies-box .container .actions button{
        padding: 8px 18px;
        cursor: pointer;
        border: 1px solid #dbdada;
        font-size: 14px;
        color: #fff;
    }
    .popup-cookies-box .container .title{
        display: flex;
        align-items: flex-end;
        gap: 5px;
    }
    .popup-cookies-box .container .actions button{
        display:none;
    }
    .popup-cookies-box .container .actions button.active{
        display:block;
    }
    @media screen and (max-width:640px){
      .popup-cookies-box .header{
            flex-direction:column;
      }
    }