.cookiealert {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    margin: 0 !important;
    z-index: 99999999999999;
    opacity: 0;
    border-radius: 0;
    transform: translateY(100%);
    transition: all .5s ease-out;
    color: #fff;
    box-shadow: 0 2px 50px #fff;
    /* border:solid 1px #6826e1f2; */
    background-color: #fff;
    font-family: 'Open Sans', sans-serif;
    font-size: 12px;
    box-sizing: border-box;
    display: flex;
    justify-content: center
}

.cookiealert>div:first-child {
    max-width: 797px;
    color: #666;
    font-family: 'Open Sans', sans-serif;
    line-height: 16px;
    text-align: left;
}

.cookiealert>div:first-child+div {
    display: flex;
    align-items: center
}

.cookiealert.show {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 50ms
}

.cookiealert a {
    text-decoration: underline;
    color: #1f396a;
    font-family: Arial, Helvetica, sans-serif
}

.cookiealert .acceptcookies {
    margin-left: 10px;
    vertical-align: baseline;
    background-color: #c9f3ed;
    padding: 5px 13px;
    font-size: 13px;
    font-weight: 400;
    color: #000;
    border: 0;
    cursor: pointer;
    margin-bottom: 0;
    border-radius: 6px;
    height: 40px;
    font-family: 'Open Sans', sans-serif;
}

.cookiealert.alert {
    padding: 30px !important
}

.modal {
    font-family: -apple-system, BlinkMacSystemFont, avenir next, avenir, helvetica neue, helvetica, ubuntu, roboto, noto, segoe ui, arial, sans-serif
}

.modal__cookies_overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999
}

.modal__cookies_container {
    background-color: #fff;
    padding: 30px;
    max-width: 500px;
    max-height: 100vh;
    border-radius: 4px;
    overflow-y: auto;
    box-sizing: border-box
}

.modal__cookies_header {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.modal__cookies_title {
    margin-top: 0;
    margin-bottom: 0;
    font-weight: 600;
    font-size: 1.25rem;
    line-height: 1.25;
    color: #0062cc;
    box-sizing: border-box;
    font-family: sans-serif
}

.modal__cookies_close {
    background: 0 0;
    border: 0;
    cursor: pointer;
    outline: 0 !important
}

.modal__cookies_header .modal__cookies_close:before {
    content: "\2715"
}

.modal__cookies_content {
    margin-top: 2rem;
    margin-bottom: 2rem;
    line-height: 1.5;
    color: rgba(0, 0, 0, .8)
}

.modal__cookies_content .contato-flutuante {
    display: none
}

.modal__cookies_btn {
    font-size: .875rem;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: .5rem;
    padding-bottom: .5rem;
    background-color: #0069de;
    color: #fff;
    font-weight: 700;
    border-radius: 6px;
    border-style: none;
    border-width: 0;
    cursor: pointer;
    -webkit-appearance: button;
    text-transform: none;
    overflow: visible;
    line-height: 1.15;
    margin: 0;
    will-change: transform;
    -moz-osx-font-smoothing: grayscale;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    transition: -webkit-transform .25s ease-out;
    transition: transform .25s ease-out;
    transition: transform .25s ease-out, -webkit-transform .25s ease-out
}

.modal__cookies_btn:focus,
.modal__cookies_btn:hover {
    -webkit-transform: scale(1.05);
    transform: scale(1.05)
}

.modal__cookies_btn-primary {
    background-color: #00449e;
    color: #fff
}

@keyframes mmfadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes mmfadeOut {
    from {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

@keyframes mmslideIn {
    from {
        transform: translateY(15%)
    }

    to {
        transform: translateY(0)
    }
}

@keyframes mmslideOut {
    from {
        transform: translateY(0)
    }

    to {
        transform: translateY(-10%)
    }
}

.micromodal-slide {
    display: none
}

.micromodal-slide.is-open {
    display: block
}

.micromodal-slide[aria-hidden=false] .modal__cookies_overlay {
    animation: mmfadeIn .3s cubic-bezier(0, 0, .2, 1)
}

.micromodal-slide[aria-hidden=false] .modal__cookies_container {
    animation: mmslideIn .3s cubic-bezier(0, 0, .2, 1)
}

.micromodal-slide[aria-hidden=true] .modal__cookies_overlay {
    animation: mmfadeOut .3s cubic-bezier(0, 0, .2, 1)
}

.micromodal-slide[aria-hidden=true] .modal__cookies_container {
    animation: mmslideOut .3s cubic-bezier(0, 0, .2, 1)
}

.micromodal-slide .modal__cookies_container,
.micromodal-slide .modal__cookies_overlay {
    will-change: transform
}

@media (max-width:768px) {
    .cookiealert {
        flex-wrap: wrap
    }

    .cookiealert>div:first-child+div {
        margin-top: 20px
    }

    .cookiealert.alert {
        padding: 15px !important
    }
}