<style>
    .box-cookies.hide {
        display: none !important;
    }

    .box-cookies {
        position: fixed;
        background: rgba(0, 0, 0, .9);
        width: 94%;
        z-index: 99999 !important;
        bottom: 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .box-cookies .btn-container {
        display: flex;
        flex-direction: row;
        align-items: center;
    }

    .box-cookies a {
        color: #fff;
        margin-right: 20px;
    }

    .box-cookies .msg-cookies{
        text-align: center;
        padding: 25px;
        color: #fff;
        font-size: 18px;
        margin: 0;
    }
    .box-cookies .btn-cookies {
        text-align: center;
        padding: 25px;
        color: #fff;
        font-size: 18px;
        margin: 0;
    }

    .box-cookies .btn-cookies {
        /*background: #e22525;*/
        background: #004B8D;
        cursor: pointer;
        align-self: normal;
        border: none;
    }

    @media screen and (max-width: 999px) {
        .box-cookies .msg-cookies,
        .box-cookies .btn-cookies {
            font-size: 15px;
           
        }

    }

   

    @media screen and (max-width: 600px) {

      
        .box-cookies {
            flex-direction: column;
        }

        .box-cookies .btn-container {
            flex-direction: column;
            width: 100%;
        }

        .box-cookies .btn-cookies {
            width: 100%;
        }

        .box-cookies a {
            margin-bottom: 15px;
            margin-right: 0;
        }
    }


    @media screen and (max-width: 399px) {
          .box-cookies {
            width: 100%;
            z-index: 99999 !important;
            bottom: 0;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .box-cookies .btn-cookies {
            padding: 10px;
        }


        

    }


    .cookie-close {
        position: absolute;
        top: 0;
        right: 0;
        width: 35px;
        height: 30px;
        /*background: #e22525;*/
        background: #004B8D;
        color: #fff;
        cursor: pointer;
        border: 0;
    }


    .cookie-mask {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, .9);
        z-index: 50;
        visibility: hidden;
        opacity: 0;
        transition: 0.7s;
    }

    .cookie-modal-title{
        font-size: 1.2rem;
    }

    .cookie-modal-subtitle {
        font-size: 1rem;
        margin-bottom: 0;
    }

    .cookie-modal hr {
        margin-top: .5rem;
        margin-bottom: .8rem;
    }

    .cookie-modal-description{
        font-size: .7rem;
        color: black;
    }

    .cookie-modal {
        position: fixed;
        top: 50%;
        left: 50%;
        width: 95%;
        max-width: 400px;
        height: 470px;
        background: white;
        z-index: 100;
        visibility: hidden;
        opacity: 0;
        transform: translate(-50%, -50%);
        padding: 20px;
        transition: 0.5s ease-out;
        z-index: 99999999 !important;
    }

    .active {
        visibility: visible;
        opacity: 1;
    }

    .active + .cookie-modal {
        visibility: visible;
        opacity: 1;
    }

    .cookie-modal-accept-container {
        display: flex;
        justify-content: space-between;
    }

    .cookie-modal-checkbox {
        position: absolute;
        opacity: 0;
    }
    .cookie-modal-checkbox + label {
        position: relative;
        cursor: pointer;
        padding: 0;
        justify-self: flex-end;
        margin-left: 15px;
    }
    .cookie-modal-checkbox + label:before {
        content: '';
        display: inline-block;
        vertical-align: text-top;
        width: 20px;
        height: 20px;
        background: white;
        border: 2px solid black;
    }
    .cookie-modal-checkbox:hover + label:before {
        background: #004B8D;
    }
    .cookie-modal-checkbox:focus + label:before {
        box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.12);
    }
    .cookie-modal-checkbox:checked + label:before {
        background: #004B8D;
    }
    .cookie-modal-checkbox:disabled + label {
        color: #b8b8b8;
        cursor: auto;
    }
    .cookie-modal-checkbox:disabled + label:before {
        box-shadow: none;
        background: #ddd;
    }
    .cookie-modal-checkbox:checked + label:after {
        content: '';
        position: absolute;
        left: 5px;
        top: 9px;
        background: white;
        width: 2px;
        height: 2px;
        box-shadow: 2px 0 0 white, 4px 0 0 white, 4px -2px 0 white, 4px -4px 0 white, 4px -6px 0 white, 4px -8px 0 white;
        transform: rotate(45deg);
    }
    #cookie-modal-btn-save{
        margin-top: 15px;
        /*background-color: #e22525;*/
        background-color: #004B8D;
        color: white;
        border: none;
        padding: 3px 10px;
        margin-left: -20px;
    }

    #cookie-modal-btn-accept-all{
        margin-top: 15px;
        background-color: white;
        color: #e22525;
        border: 1px solid #e22525;
        padding: 3px 10px;
    }



</style>