@import 'https://fonts.googleapis.com/css?family=Noto+Sans';

/* line 48, ../../xampp/htdocs/Chat/float/sass/floater.SCSS */

* {
    box-sizing: border-box;
}


/* line 52, ../../xampp/htdocs/Chat/float/sass/floater.SCSS */


/* line 57, ../../xampp/htdocs/Chat/float/sass/floater.SCSS */

.floating-chat {
    z-index: 300000000000000000;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(230 230 230);
    position: fixed;
    bottom: 10px;
    right: 10px;
    width: 57px;
    height: 39px;
    transform: translateY(70px);
    transition: all 250ms ease-out;
    border-radius: 50%;
    opacity: 1;
    background: -moz-linear-gradient(-45deg, #2d2a2a 0, #ffffff 25%, #686b6f 50%, #0d0d0e 75%, #575656 100%);
    background: -webkit-linear-gradient(-45deg, #2d2a2a 0, #ffffff 25%, #686b6f 50%, #0d0d0e 75%, #585656 100%);
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.floating-chat>i {
    font-size: xx-large;
}

.floating-chat.chat.header.title {
    text-align: right;
}

.floating-chat.chat.header.ad-staus {
    text-align: right;
}


/* line 73, ../../xampp/htdocs/Chat/float/sass/floater.SCSS */

.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;
}


/* line 77, ../../xampp/htdocs/Chat/float/sass/floater.SCSS */

.floating-chat.enter {
    transform: translateY(0);
    opacity: 1;
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.12), 0px 1px 2px rgba(0, 0, 0, 0.14);
}


/* line 82, ../../xampp/htdocs/Chat/float/sass/floater.SCSS */

.floating-chat.expand {
    width: 395px;
    max-height: 470px;
    height: 470px;
    border-radius: 5px;
    cursor: auto;
    opacity: 1;
}


/* line 90, ../../xampp/htdocs/Chat/float/sass/floater.SCSS */

.floating-chat :focus {
    outline: 0;
    box-shadow: 0 0 3pt 2pt rgba(14, 200, 121, 0.3);
}


/* line 94, ../../xampp/htdocs/Chat/float/sass/floater.SCSS */

.floating-chat button {
    background: transparent;
    border: 0;
    color: white;
    text-transform: uppercase;
    border-radius: 3px;
    cursor: pointer;
}


/* line 102, ../../xampp/htdocs/Chat/float/sass/floater.SCSS */

.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;
}


/* line 116, ../../xampp/htdocs/Chat/float/sass/floater.SCSS */

.floating-chat .chat.enter {
    opacity: 1;
    border-radius: 0;
    margin: 10px;
    width: auto;
    height: auto;
}


/* line 123, ../../xampp/htdocs/Chat/float/sass/floater.SCSS */

.floating-chat .chat .header {
    flex-shrink: 0;
    padding-bottom: 10px;
    display: flex;
    background: transparent;
}


/* line 128, ../../xampp/htdocs/Chat/float/sass/floater.SCSS */

.floating-chat .chat .header .title {
    flex-grow: 1;
    flex-shrink: 1;
    padding: 0 5px;
}


/* line 133, ../../xampp/htdocs/Chat/float/sass/floater.SCSS */

.floating-chat .chat .header button {
    flex-shrink: 0;
}


/* line 137, ../../xampp/htdocs/Chat/float/sass/floater.SCSS */

.floating-chat .chat .messages {
    padding: 10px;
    margin: 0;
    list-style: none;
    overflow-y: scroll;
    overflow-x: hidden;
    flex-grow: 1;
    border-radius: 4px;
    background: #2d2e2f;
}


/* line 22, ../../xampp/htdocs/Chat/float/sass/floater.SCSS */

.floating-chat .chat .messages::-webkit-scrollbar {
    width: 5px;
}


/* line 25, ../../xampp/htdocs/Chat/float/sass/floater.SCSS */

.floating-chat .chat .messages::-webkit-scrollbar-track {
    border-radius: 5px;
    background-color: rgba(25, 147, 147, 0.1);
}


/* line 29, ../../xampp/htdocs/Chat/float/sass/floater.SCSS */

.floating-chat .chat .messages::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background-color: rgba(25, 147, 147, 0.2);
}


/* line 147, ../../xampp/htdocs/Chat/float/sass/floater.SCSS */

.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(255, 255, 255, 0.959);
    border: solid 2px #f39c12bf;
    word-wrap: break-word;
    max-width: 39%;
}


/* line 158, ../../xampp/htdocs/Chat/float/sass/floater.SCSS */

.floating-chat .chat .messages li:before {
    position: absolute;
    top: 0;
    width: 25px;
    height: 25px;
    border-radius: 25px;
    content: '';
    background-size: cover;
}


/* line 167, ../../xampp/htdocs/Chat/float/sass/floater.SCSS */

.floating-chat .chat .messages li:after {
    position: absolute;
    top: 10px;
    content: '';
    width: 0;
    height: 0;
    border-top: 10px solid #f39c12;
}


/* line 176, ../../xampp/htdocs/Chat/float/sass/floater.SCSS */

.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: #f39c12;
}


/* line 184, ../../xampp/htdocs/Chat/float/sass/floater.SCSS */

.floating-chat .chat .messages li.other:before {
    right: -45px;
    background-image: url(../../img/team/member-5.jpg);
}


/* line 189, ../../xampp/htdocs/Chat/float/sass/floater.SCSS */

.floating-chat .chat .messages li.other:after {
    border-right: 10px solid transparent;
    right: -10px;
}


/* line 193, ../../xampp/htdocs/Chat/float/sass/floater.SCSS */

.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: #f39c12;
}

.floating-chat .chat .messages li.self>small>em {
    color: rgb(0, 0, 0);
}

.floating-chat .chat .messages li.other>small>em {
    color: rgb(0, 0, 0);
}


/* line 201, ../../xampp/htdocs/Chat/float/sass/floater.SCSS */

.floating-chat .chat .messages li.self:before {
    left: -45px;
    background-image: url(../../images/bart-simpson.png);
}


/* line 206, ../../xampp/htdocs/Chat/float/sass/floater.SCSS */

.floating-chat .chat .messages li.self:after {
    border-left: 10px solid transparent;
    left: -10px;
}


/* line 211, ../../xampp/htdocs/Chat/float/sass/floater.SCSS */

.floating-chat .chat .footer {
    flex-shrink: 0;
    display: flex;
    padding-top: 10px;
    max-height: 90px;
    background: transparent;
}


/* line 218, ../../xampp/htdocs/Chat/float/sass/floater.SCSS */

.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: rgba(25, 147, 147, 0.2);
    overflow-y: auto;
    padding: 2px 5px;
}


/* line 22, ../../xampp/htdocs/Chat/float/sass/floater.SCSS */

.floating-chat .chat .footer .text-box::-webkit-scrollbar {
    width: 5px;
}


/* line 25, ../../xampp/htdocs/Chat/float/sass/floater.SCSS */

.floating-chat .chat .footer .text-box::-webkit-scrollbar-track {
    border-radius: 5px;
    background-color: rgba(25, 147, 147, 0.1);
}


/* line 29, ../../xampp/htdocs/Chat/float/sass/floater.SCSS */

.floating-chat .chat .footer .text-box::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background-color: rgba(25, 147, 147, 0.2);
}

.fa-send-o:before,
.fa-paper-plane-o:before {
    content: "\f1d9";
    color: #f08801f6 !important;
}

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


/*# sourceMappingURL=floater.css.map */