* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    max-width: 100%;
}
.browser-compatibility,
.browser-compatibility body{
    height: 99%;
}

.mobile-visible {
    display: none;
}
body.is-mobile .mobile-visible {
    display: initial;
}
body.is-mobile .mobile-visible.block {
    display: block;
}
body.is-mobile .mobile-visible.inline-block {
    display: inline-block;
}

.vertical-align-area {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.vertical-align-area .align-container {
    display: table;
    width: 100%;
    height: 100%;
}
.vertical-align-area .align-container .align-content {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}

.ratio-box {
    width: 100%;
    display: block;
    position: relative;
}
.ratio-box:after {
    padding-top: 100%;
    display: block;
    content: '';
}
.ratio-box .ratio-content {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    overflow: hidden;
}
.ratio-box.ratio-4-3:after {
    padding-top: 75%;
}
.ratio-box.ratio-16-9:after {
    padding-top: 56.25%;
}
.ratio-box.ratio-15-5:after {
    padding-top: 33.3%;
}
.ratio-box.ratio-5-1:after {
    padding-top: 20%;
}
.ratio-box.ratio-map-wide .map-container,
.ratio-box.ratio-map-wide .map-container * {
    max-width: initial;
}

.ratio-box.ratio-map-wide:after { /*usado em mapas 1100/400*/
    padding-top: 36.7%;
}

.ratio-box.ratio-map-wide .block-map-mobile {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 996;
    display: none;
    background-color: #fff;
    opacity: 0.6;
}
.ratio-box.ratio-map-wide .block-map-mobile .block-content {
    display: table;
    width: 100%;
    height: 100%;
    font-size: 18px;
    font-weight: bold;
}
.ratio-box.ratio-map-wide .block-map-mobile .block-content .block-message {
    display: table-cell;
    vertical-align: middle;
    color: #000;
    text-align: center;
}

#cookie-warning {
    position: fixed;
    display: none;
    bottom: 0px;left: 0px;
    right: 0px;
    z-index: 1001;
    opacity: 0.95;
}
#cookie-warning.transitioning {
    -webkit-transition: bottom .5s ease 0s;
    -moz-transition: bottom .5s ease 0s;
    -ms-transition: bottom .5s ease 0s;
    -o-transition: bottom .5s ease 0s;
    transition: bottom .5s ease 0s;
    /*bottom: 0px !important;*/
}
#cookie-warning .warning-main-container {
    padding: 15px;
    background-color: #3C4148;
}
#cookie-warning .warning-main-container .warning-inner-container {
    max-width: 1200px;
    padding-right: 150px;
    margin: 0 auto;
    position: relative;
}
#cookie-warning .warning-main-container .warning-inner-container button {
    position: absolute;
    display: inline-block;
    width: 100px;
    margin-top: -16px;
    padding: 8px 8px;
    right: 23px;
    top: 50%;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px;
    background-color: #0E7FE2;
    color: #fff;
    border-color: #0E7FE2;
}
#cookie-warning .warning-main-container .warning-inner-container .message-container {
    font-size: 14px;
    color: #fff;
}
#cookie-warning .warning-main-container .warning-inner-container .message-container a {
    color: #fff;
    text-decoration: underline !important;
    font-size: 1em;
}

.privacy-policy-title {
    margin: 15px 0;
    font-size: 1.7em;
    font-weight: bold;
}
.privacy-policy-table {
    margin: 15px 0;
}
.privacy-policy-table tr td {
    padding: 10px;
    border: 1px solid transparent;
    border-color: inherit;
    text-align: left;
}

.chat-float {
    position: fixed;
    font-size: 14px;
    z-index: 30;
}
.chat-float.chat-float--opened {
    z-index: 9999;
}
.chat-float__button-title {
    font-size: 14px;
    font-weight: bold;
    margin: 2px 5px;
}
.chat-float__content-first {
    display: flex;
    align-items: left;
    flex-direction: row;
    height: 1.4em;
}
.chat-float__content-second {
    display: flex;
    align-items: left;
    flex-direction: column;
    overflow: hidden;
    cursor: pointer;
    height: 1.6em;
    padding: 3px 5px;
}
.chat-float__content-animated {
    transition: transform 0.4s ease;
}
.chat-float__button:hover .chat-float__content-animated {
    transform: translateY(-2.7em);
}
.chat-float__button:hover .chat-float__icon {
    color: #fff;
}
.chat-float__text {
    text-align: left;
    font-size: 13px;
}
.chat-float__enter {
    text-align: left;
    font-size: 13px;
    color: #2377f3;
    font-weight: bold;
}
.chat-float__icon {
    position: relative;
    background-color: #2377f3;
    border-radius: 100%;
    padding: 8px;
    font-size: 16px;
    color: #bdd6fb;
    margin: 0 auto;
    float: left;
}
.chat-float__nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    height: 30px;
}
.chat-float__nav-content p {
    margin: 0 0 0 10px;
}
.chat-float__nav-content i {
    padding: 7px 10px;
    cursor: pointer;
}
.chat-float__button {
    flex-direction: column;
    padding: 4px 6px;
    border: none;
    font-size: 11px;
    border-radius: 33px;
    cursor: pointer;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    color: #000000;
    width: 175px;
    height: 50px;
}
.chat-float__nav {
    width: 300px;
    max-width: 100%;
    height: 430px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    background-color: #2377f3;
    color: #fff;
    border-radius: 10px;
    display: none;
    bottom: 3px;
}
.chat-float--right {
    right: 10px;
}
.chat-float--left {
    left: 10px;
}
.chat-float--small-bottom {
    bottom: 15px;
}
.chat-float--med-bottom {
    bottom: 70px;
}
.chat-float iframe {
    position: relative;
    border-radius: 5px;
    height: calc(100% - 30px) !important;
    background: #ebebeb;
}
.chat-float__online-icon {
    display: none;
    position: absolute;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    border: 2px solid #fff;
    top: -1px;
    right: -3px;
    background-color: #28a745;
}
.chat-float__messages-count {
    display: none;
    position: absolute;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    border-radius: 50%;
    background-color: #db4646;
    right: 0px;
    top: 0px;
    color: #fff;
    font-weight: 600;
    transition: all 0.2s ease-in-out
}

.content-size-1 .content-size { width: 1100px; }
.content-size-2 .content-size { width: 1440px; }
.content-size-3 .content-size { width: 1600px; }

@media screen and (max-height: 500px) {
    .chat-float__nav {
        top: 10px;
        bottom: 10px;
        right: 10px;
        position: fixed;
        height: auto;
    }
    .chat-float--left .chat-float__nav {
        left: 10px;
        right: auto;
    }
}
@media (max-width: 1620px) {
    .content-size-3 .content-size-break {
        padding: 0 14px;
    }
}
@media (max-width: 1460px) {
    .content-size-2 .content-size-break {
        padding: 0 14px;
    }
}
@media (max-width: 1120px) {
    .content-size-1 .content-size-break {
        padding: 0 14px;
    }
}

@media (max-width: 1020px) {
    .ratio-box.ratio-map-wide .block-map-mobile {
        display: block;
    }
}

@media screen and (max-width: 600px) {
    #cookie-warning .warning-main-container .warning-inner-container {
        padding-right: 0px;
        padding-bottom: 47px;
    }
    #cookie-warning .warning-main-container .warning-inner-container button {
        right: unset;
        left: 0px;
        bottom: 0;
        top: unset;
    }
}
