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

    .box-cookies {
        position: fixed;
        background: rgba(0, 0, 0, .9);
        width: 100%;
        z-index: 49;
        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;
        font-size: 12px;
    }

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

    .box-cookies .btn-cookies {
        background: linear-gradient(90deg, #ffa700 33.59%, #ff8a00 89.84%);
        cursor: pointer;
        align-self: normal;
        border: none;
    }

    @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;

        }
    }


    .cookie-close {
        position: absolute;
        top: 0;
        right: 0;
        width: 35px;
        height: 30px;
        background: linear-gradient(90deg, #ffa700 33.59%, #ff8a00 89.84%);
        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: 420px;*/
        height: 480px;
        background: white;
        z-index: 100;
        visibility: hidden;
        opacity: 0;
        transform: translate(-50%, -50%);
        padding: 20px;
        transition: 0.5s ease-out;
    }

    .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: linear-gradient(90deg, #ffa700 33.59%, #ff8a00 89.84%);
    }
    .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: linear-gradient(90deg, #ffa700 33.59%, #ff8a00 89.84%);
    }
    .cookie-modal-checkbox:disabled + label {
        color: #b8b8b8;
        cursor: auto;
    }
    .cookie-modal-checkbox:disabled + label:before {
        box-shadow: none;
        background: linear-gradient(90deg, #ffa700 33.59%, #ff8a00 89.84%);
    }
    .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: #ffa700;
        color: white;
        border: none;
        padding: 3px 10px;
    }

    #cookie-modal-btn-accept-all{
        margin-top: 15px;
        background-color: white;
        color: linear-gradient(90deg, #ffa700 33.59%, #ff8a00 89.84%);
        border: 1px solid #ffa700;
        padding: 3px 10px;
    }

    .cookie-modal {
        overflow: scroll;
    }
    .cookie-modal-accept-container .box {
        background: #ccc;
        padding: 20px 20px 20px 0;
        font-size: 12px;
        border-radius: 5px;
        margin-bottom: 20px;
    }
    .cookie-modal-accept-container .box>ul {
        margin-bottom: 0;
    }
    .btn-privacidade {
        font-size: 16px;
        font-weight: bold;
    }