﻿body {
}

.marquee {
    cursor: pointer;
    height: 33%;
    width: 300px; /* the plugin works for responsive layouts so width is not necessary */
    overflow: hidden;
    -ms-scroll-limit: 0 0 0 0;
    position: absolute;
}

.contenedorNoticias {
    margin: 58% 0;
    position: relative;
}

@import "https://fonts.googleapis.com/css?family=Noto+Sans";

* {
    box-sizing: border-box;
}

body {
    background: #f2f3f8;
    font: 12px/16px 'Noto Sans', sans-serif;
}

.floating-chat {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #202945;
    position: fixed;
    bottom: 10px;
    right: 2px;
    width: 100px;
    height: 100px;
    transform: translateY(70px);
    transition: all 250ms ease-out;
    border-radius: 50%;
    opacity: 0;
    background: white;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

    .floating-chat.enter:hover {
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
        opacity: 1;
    }

    .floating-chat.enter {
        transform: translateY(0);
        opacity: 0.6;
        box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.12), 0px 1px 2px rgba(0, 0, 0, 0.14);
        animation: botPulse 1.5s infinite;
        z-index: 1500;
    }

    .floating-chat.expand {
        width: 396px;
        max-height: 550px;
        height: 700px;
        border-radius: 5px;
        cursor: auto;
        opacity: 1;
        animation: none;
    }

    .floating-chat :focus {
        outline: 0;
        box-shadow: 0 0 3pt 2pt rgba(14, 200, 121, 0.3);
    }

    .floating-chat button {
        background: transparent;
        border: 0;
        color: #202945;
        text-transform: uppercase;
        border-radius: 3px;
        cursor: pointer;
    }

    .floating-chat .chat {
        display: flex;
        flex-direction: column;
        position: absolute;
        opacity: 0;
        width: 1px;
        height: 1px;
        border-radius: 50%;
        transition: all 250ms ease-out;
        margin: auto;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
    }

        .floating-chat .chat.enter {
            opacity: 1;
            border-radius: 0;
            /*margin: 10px;*/
            width: auto;
            height: auto;
        }

        .floating-chat .chat .header {
            flex-shrink: 0;
            padding-bottom: 10px;
            display: flex;
            background: transparent;
        }

            .floating-chat .chat .header .title {
                flex-grow: 1;
                flex-shrink: 1;
                padding: 0 5px;
            }

            .floating-chat .chat .header button {
                flex-shrink: 0;
            }

        .floating-chat .chat .messages {
            padding: 10px;
            margin: 0;
            list-style: none;
            overflow-y: scroll;
            overflow-x: hidden;
            flex-grow: 1;
            border-radius: 4px;
            background: transparent;
        }

            .floating-chat .chat .messages::-webkit-scrollbar {
                width: 5px;
            }

            .floating-chat .chat .messages::-webkit-scrollbar-track {
                border-radius: 5px;
                background-color: rgba(25, 147, 147, 0.1);
            }

            .floating-chat .chat .messages::-webkit-scrollbar-thumb {
                border-radius: 5px;
                background-color: rgba(25, 147, 147, 0.2);
            }

            .floating-chat .chat .messages li {
                position: relative;
                clear: both;
                display: inline-block;
                padding: 14px;
                margin: 0 0 20px 0;
                font: 12px/16px 'Noto Sans', sans-serif;
                border-radius: 10px;
                background-color: rgba(25, 147, 147, 0.2);
                word-wrap: break-word;
                max-width: 81%;
            }

                .floating-chat .chat .messages li:before {
                    position: absolute;
                    top: 0;
                    width: 25px;
                    height: 25px;
                    border-radius: 25px;
                    content: '';
                    background-size: cover;
                }

                .floating-chat .chat .messages li:after {
                    position: absolute;
                    top: 10px;
                    content: '';
                    width: 0;
                    height: 0;
                    border-top: 10px solid rgba(25, 147, 147, 0.2);
                }

                .floating-chat .chat .messages li.other {
                    animation: show-chat-odd 0.15s 1 ease-in;
                    -moz-animation: show-chat-odd 0.15s 1 ease-in;
                    -webkit-animation: show-chat-odd 0.15s 1 ease-in;
                    float: right;
                    margin-right: 45px;
                    color: #0AD5C1;
                }

                    .floating-chat .chat .messages li.other:after {
                        border-right: 10px solid transparent;
                        right: -10px;
                    }

                .floating-chat .chat .messages li.self {
                    animation: show-chat-even 0.15s 1 ease-in;
                    -moz-animation: show-chat-even 0.15s 1 ease-in;
                    -webkit-animation: show-chat-even 0.15s 1 ease-in;
                    float: left;
                    margin-left: 45px;
                    color: #0EC879;
                }

                    .floating-chat .chat .messages li.self:after {
                        border-left: 10px solid transparent;
                        left: -10px;
                    }

        .floating-chat .chat .footer {
            flex-shrink: 0;
            display: flex;
            padding-top: 10px;
            max-height: 90px;
            background: transparent;
        }

            .floating-chat .chat .footer .text-box {
                border-radius: 3px;
                background: rgba(25, 147, 147, 0.2);
                min-height: 100%;
                width: 100%;
                margin-right: 5px;
                color: #0EC879;
                overflow-y: auto;
                padding: 2px 5px;
            }

                .floating-chat .chat .footer .text-box::-webkit-scrollbar {
                    width: 5px;
                }

                .floating-chat .chat .footer .text-box::-webkit-scrollbar-track {
                    border-radius: 5px;
                    background-color: rgba(25, 147, 147, 0.1);
                }

                .floating-chat .chat .footer .text-box::-webkit-scrollbar-thumb {
                    border-radius: 5px;
                    background-color: rgba(25, 147, 147, 0.2);
                }

@keyframes show-chat-even {
    0% {
        margin-left: -480px;
    }

    100% {
        margin-left: 0;
    }
}

@-moz-keyframes show-chat-even {
    0% {
        margin-left: -480px;
    }

    100% {
        margin-left: 0;
    }
}

@-webkit-keyframes show-chat-even {
    0% {
        margin-left: -480px;
    }

    100% {
        margin-left: 0;
    }
}

@keyframes show-chat-odd {
    0% {
        margin-right: -480px;
    }

    100% {
        margin-right: 0;
    }
}

@-moz-keyframes show-chat-odd {
    0% {
        margin-right: -480px;
    }

    100% {
        margin-right: 0;
    }
}

@-webkit-keyframes show-chat-odd {
    0% {
        margin-right: -480px;
    }

    100% {
        margin-right: 0;
    }
}

@-webkit-keyframes botPulse {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(148, 74, 150, 0.8);
    }

    70% {
        -webkit-box-shadow: 0 0 0 10px rgba(148, 74, 150, 0);
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(148, 74, 150, 0);
    }
}

@keyframes botPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(148, 74, 150, 0.8);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(148, 74, 150, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(148, 74, 150, 0);
    }
}

#chat-bot-launcher-container.chat-bot-avatar-launcher, #chat-bot-launcher-container.chat-bot-launcher-notext {
    bottom: 32px;
}

#chat-bot-launcher-container {
    position: fixed;
    bottom: 20px;
    right: 70px;
    direction: ltr !important;
    z-index: 2147482999;
}

.chat-bot-flex-end {
    justify-content: flex-end;
}

.chat-bot-flex-center, .chat-bot-flex-end {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
}

#chat-bot-launcher-container.chat-bot-launcher-enabled.chat-bot-avatar-launcher #chat-bot-avatar-text {
    display: block;
}

#chat-bot-launcher-container #chat-bot-avatar-text {
    width: 250px;
    font-family: "Open Sans",sans-serif;
    font-size: 16px !important;
    line-height: 24px !important;
    font-weight: 400;
    position: relative;
    z-index: 2147482999;
    cursor: pointer;
    background-color: #fff;
    color: #666;
    padding: 7px 10px;
    border-radius: .625rem !important;
    white-space: normal;
    text-overflow: ellipsis;
    max-width: 300px;
    margin: 0px 15px;
    display: none;
    box-shadow: 0 0 20px 0 rgba(0,0,0,.15);
    animation: launcher-frame-appear 0.25s ease forwards;
}

    #chat-bot-launcher-container #chat-bot-avatar-text:before {
        content: ' ';
        position: absolute;
        width: 0;
        height: 0;
        left: auto;
        right: -15px;
        top: 34%;
        bottom: auto;
        border: 8px solid;
        border-color: transparent transparent transparent #fff;
    }

#chat-bot-launcher-container #chat-bot-avatar-text-inner {
    text-overflow: ellipsis;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    max-height: 80px;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

#chat-bot-launcher-container #chat-bot-launcher-close {
    display: none;
    width: 20px;
    height: 20px;
    z-index: 2147483001;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAACXBIWXMAAAsTAAALEwEAmpwYAAAFFmlUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNS42LWMxNDAgNzkuMTYwNDUxLCAyMDE3LzA1LzA2LTAxOjA4OjIxICAgICAgICAiPiA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPiA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtbG5zOmRjPSJodHRwOi8vcHVybC5vcmcvZGMvZWxlbWVudHMvMS4xLyIgeG1sbnM6cGhvdG9zaG9wPSJodHRwOi8vbnMuYWRvYmUuY29tL3Bob3Rvc2hvcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RFdnQ9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZUV2ZW50IyIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ0MgKE1hY2ludG9zaCkiIHhtcDpDcmVhdGVEYXRlPSIyMDE3LTA2LTMwVDAyOjQ1OjM2KzA1OjMwIiB4bXA6TW9kaWZ5RGF0ZT0iMjAxOS0xMC0wMlQwMDo1OToxMyswNTozMCIgeG1wOk1ldGFkYXRhRGF0ZT0iMjAxOS0xMC0wMlQwMDo1OToxMyswNTozMCIgZGM6Zm9ybWF0PSJpbWFnZS9wbmciIHBob3Rvc2hvcDpDb2xvck1vZGU9IjMiIHBob3Rvc2hvcDpJQ0NQcm9maWxlPSJzUkdCIElFQzYxOTY2LTIuMSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpkZjQ0YTY5ZS01Y2ViLTQ0YWEtYTU2Yi03ZTI0Y2I0NjA5MmUiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6ZGY0NGE2OWUtNWNlYi00NGFhLWE1NmItN2UyNGNiNDYwOTJlIiB4bXBNTTpPcmlnaW5hbERvY3VtZW50SUQ9InhtcC5kaWQ6ZGY0NGE2OWUtNWNlYi00NGFhLWE1NmItN2UyNGNiNDYwOTJlIj4gPHhtcE1NOkhpc3Rvcnk+IDxyZGY6U2VxPiA8cmRmOmxpIHN0RXZ0OmFjdGlvbj0iY3JlYXRlZCIgc3RFdnQ6aW5zdGFuY2VJRD0ieG1wLmlpZDpkZjQ0YTY5ZS01Y2ViLTQ0YWEtYTU2Yi03ZTI0Y2I0NjA5MmUiIHN0RXZ0OndoZW49IjIwMTctMDYtMzBUMDI6NDU6MzYrMDU6MzAiIHN0RXZ0OnNvZnR3YXJlQWdlbnQ9IkFkb2JlIFBob3Rvc2hvcCBDQyAoTWFjaW50b3NoKSIvPiA8L3JkZjpTZXE+IDwveG1wTU06SGlzdG9yeT4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz7PEDaIAAACtUlEQVRogc3ZTW7UMBjG8X8GIcFsuQBdUNhUAuY0DKNBBek9AeISXABZ4qMVZXbcgQ2sRmyKYAcbJA6AECqIsqhduZ5M7PgreXbNvLHzk2snTsCJiFwVkSvu8bFERK63HZ84RVPgE/BxjBgRWQJfRWTh/tZYRVPgGNjRh74Ad5RSv6tcpScacWAdWiiljswfjS5yESajwLQgTOZKqRVA04EwGRTTgTCZK6VWjYg8BR572hsEE4AAOAGuTYAnwMpTfIvKC4CIPCAMcVMp9dPMkQY4Au55TqwyMhrxylNmEN/g4qo1CkwMAiyIbmRQTCwCHIhubBBMCgKcOzuAUuoUuE/FBUBE9klAQMuIWI1XGRmNeOEp60RAB0R3UhSTCwEeiO6sCCYnAgIgutOsmNwIaJnsbcm5AIjIQzIjIHBErItIGhmNeO45tzcCekL0xURhSiIgAqIvqg/mrq4rhoBICPTC/AKmnpokBMCl2BPX6zWz2ewtsAvsdZRe9jSVjIAECPTCbEsWBCRCIAmTDQEZIBCFyYqAwBtiSPRN811g+XfgR66+ISNE3yeeBZbvkPkdQPTyayfwZteWbJuzZEgCwiQLJgmSAWGSjImeIz2enfaosG2OgvR8ADymwjuAmKffqKfY0tvmvvuRpEfxkphgSK79RClM0BzJuSmyts1vPO31mjMhb1GK7Oz0yLwG5p7SoJHxvdcquj3Niel601gUYfWTBdMKqYWw+kvGbEz22gg4XwAWnGG6snUBcL+PVEc4/TfAIWeormyMjP3FalCEdR1RGPMNcRQIkxhMk/qlqFR6Ym5PgA/Av47C6gg4XwCW+BeA98CJ+dfaBT6zuYoNgrDjGZmXwCOl1Kk92V3M4AiTLZgDYF+P3MbyazB/GQnCxMFcQED75+kbwJ8xIUw0Zgkc2giA/37w+3zIK1eVAAAAAElFTkSuQmCC);
    position: absolute;
    cursor: pointer;
    background-size: 8px;
    background-repeat: no-repeat;
    background-position: 50%;
    position: absolute;
    top: 3px;
    left: -30px;
    right: initial;
    background-color: #afafaf;
    border-radius: 50%;
    box-shadow: 0 2px 6px 0 rgba(0,0,0,.4);
}

.hidepopchat {
    display: none !important;
}