    .accept-cookie-wrapper {
        position: fixed;
        left: 10px;
        right: 100px;
        bottom: 10px;
        display: flex;
        gap: 20px;
        align-items: center;
        background-color: #fff;
        border-radius: 10px;
        padding: 20px;
        z-index: 10000;
        box-shadow: 0px 4px 20px 0px #0000001A;
    }

    .no-display-block {
        display: none;
    }

    .accept-cookie {
        cursor: pointer;
        -moz-border-radius: 8px;
        -webkit-border-radius: 8px;
        border-radius: 5px;
        background-color: #085394;
        color: #fff;
        border-radius: 10px;
        padding: 5px 15px;
        width: fit-content;
    }
    
    .politic-button{
        color: #216DB4;
        cursor: pointer;
    }
    
    .close-cookie{
        position:absolute;
        top:5px;
        right:5px;
        width:14px;
        height:14px;
        cursor:pointer;
        opacity: 0.6;
    }
    .close-cookie img{
        width:100%;
    }
    @media (max-width: 768px) {
        .accept-cookie-wrapper {
            flex-direction: column;
            font-size:0.8em;
            line-height: 16px;
            box-shadow: 0px 4px 20px 0px #0000008a;
            padding: 15px;
        }
    }