<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">

@charset "UTF-8";
#megasac-chat-iframe {
    box-shadow: 10px 0 10px -10px #000;
    display: block;
    width: 350px;
    height: 100%;
    position: absolute;
    right: 0;
}
.wrapper {
    overscroll-behavior: none;
}
#megasac-chat {
    display: none;
    right: 0;
    top: 0;
}
#tallos-footer {
    display: none;
    font-size: 10px;
    padding: 4px !important;
    position: fixed;
    z-index: 9999999999;
    bottom: 0;
    color: #333333CC;
    right: 0;
    width: 340px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    text-align: center;
}
#tallos-footer a {
    text-decoration: none;
    color: rgba(0, 0, 0, 0.6);
}
#tallos-footer img {
    width: 10px !important;
    margin-right: 5px;
}
#megasac-button,
#megasac-info {
    visibility: visible;
    box-shadow: rgba(0, 0, 0, 0.1) 0 3pt 12pt;
    font-family: Arial, Helvetica, sans-serif;
}
#megasac-button,
#megasac-info,
#tallos-footer {
    font-family: Arial, Helvetica, sans-serif;
}
#megasac-button,
#megasac-chat-close {
    display: block;
    position: fixed;
    cursor: pointer;
}
#megasac-button {
    border-radius: 50%;
    width: 70px;
    height: 70px;
    background: url(". url("images/logo-mobile.svg") .") center center no-repeat #2e99ff;
    background-size: 75% 75%;
    right: 15pt;
    bottom: 15pt;
    z-index: 2147483647;
    transition: 0.3s;
}
#megasac-button:active,
#megasac-button:focus,
#megasac-button:hover {
    box-shadow: rgba(0, 0, 0, 0.6) 0 3pt 12pt;
}
#megasac-chat {
    height: 100%;
    visibility: visible;
    box-shadow: rgba(10, 10, 10, 0.2) 0 3pt 12pt;
    background: #fefefe;
    background-size: 75% 75%;
    position: fixed;
    bottom: 80pt;
    z-index: 2147483648;
}
#chat-wrapper {
    width: 350px;
    height: 470px;
    padding: 0;
    margin: 0;
}
#megasac-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 25px 0px 25px 25px;
    width: 180px;
    color: #9c9c9c;
    background: #fff;
    text-align: right;
    font-size: 13px !important;
    font-weight: normal !important;
    margin: 0;
    padding: 5px 20px 5px 10px;
    position: fixed;
    right: 70pt;
    bottom: 20pt;
    z-index: 2147483647;
}
#megasac-info img {
    display: block;
    height: 30px;
    width: auto;
    float: left;
    margin: 5px 15px 0 0;
    padding: 0;
}
#megasac-chat-close {
    position: absolute;
    right: 8px;
    top: 8px;
    width: 14px;
    height: 14px;
    background: url(https://assets.tallos.com.br/tallos-chat/images/close-widget.svg) center center no-repeat;
    z-index: inherit;
    transition: 0.5 ease-in-out;
    border-radius: 50px;
    padding: 2px;
    transition: 0.2s ease-in-out;
}
#megasac-chat-close:hover {
    background-size: 50% 50%;
}
@media (max-width: 380px) {
    #megasac-chat {
        width: 100%;
        height: 100%;
        border-radius: 0;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
    }
    #chat-wrapper {
        width: 100%;
        height: 100%;
        margin-left: -5px;
    }
}
.animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}
.animated.infinite {
    animation-iteration-count: infinite;
}

.animated.bounceIn,
.animated.bounceOut,
.animated.flipOutX,
.animated.flipOutY {
    animation-duration: 0.75s;
}

@keyframes pulse {
    from,
    to {
        transform: scale3d(1, 1, 1);
    }
    50% {
        transform: scale3d(1.05, 1.05, 1.05);
    }
}
.pulse {
    animation-name: pulse;
}

@keyframes bounceIn {
    20%,
    40%,
    60%,
    80%,
    from,
    to {
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    0% {
        opacity: 0;
        transform: scale3d(0.3, 0.3, 0.3);
    }
    20% {
        transform: scale3d(1.1, 1.1, 1.1);
    }
    40% {
        transform: scale3d(0.9, 0.9, 0.9);
    }
    60% {
        opacity: 1;
        transform: scale3d(1.03, 1.03, 1.03);
    }
    80% {
        transform: scale3d(0.97, 0.97, 0.97);
    }
    to {
        opacity: 1;
        transform: scale3d(1, 1, 1);
    }
}
.bounceIn {
    animation-name: bounceIn;
}


@keyframes bounceOut {
    20% {
        transform: scale3d(0.9, 0.9, 0.9);
    }
    50%,
    55% {
        opacity: 1;
        transform: scale3d(1.1, 1.1, 1.1);
    }
    to {
        opacity: 0;
        transform: scale3d(0.3, 0.3, 0.3);
    }
}
.bounceOut {
    animation-name: bounceOut;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
.fadeIn {
    animation-name: fadeIn;
}


@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 100%, 0);
    }
    to {
        opacity: 1;
        transform: none;
    }
}
.fadeInUp {
    animation-name: fadeInUp;
}







</pre></body></html>