body,
html {
    height: 100%;
    min-height: 100%;
    background-color: #fff !important;
    font-family: Quicksand, "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
}

.custom-container {
    min-height: 100%;
    height: calc(100% - 0px);
    display: flex;
    flex-direction: row;
    width: 100%;
}

main, .panel--main, .container--shadow, .main-app {
    min-height: 100%;
    height:100%;
}

.custom-sidebar {
    background: rgb(153, 69, 255);
    background: linear-gradient(169deg, #f3ecff 0%, #e8faf1 100%);
    height: calc(100% - 0px);
    border-radius: 0 10px 10px 0;
    width: 270px;
    min-width: 270px;
    display: inline-flex;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.custom-content {
    display: flex;
    width: 100%;
    margin: 0 auto;
    position: relative;
}

.custom-content--inner {
    min-height: 100%;
    height: calc(100% - 0px);
    width: 100%;
    overflow-y: auto;
    overflow-x: hidden;
}

.custom-content--inner--width {
    width: 100%;
    margin: 0 auto;
    max-width: 1000px;
    padding-left: 20px;
    padding-right: 20px;
}

.form-container {
    position: absolute;
    bottom: 0;
    left: 0px;
    right: 16px;
    padding: 20px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1;
    background: #fff;
    background: linear-gradient( 0deg, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0) 100% );
}

.chat-header {
    position: absolute;
    top: 0;
    left: 20px;
    right: 36px;
    padding: 20px;
    background-color: #ffffff;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
    border-radius: 0 0 10px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.chat-header--title {
    width: 100%;
    padding-left: 20px;
}

.bot-name {
    font-size: 16px;
    font-weight: 500;
}

.progress-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    opacity: 0.7;
}

.progress {
    margin: 5px 0;
    height: 6px !important;
}

.progress-bar {
    background: linear-gradient(90deg, #9945ff 0%, #19c977 100%) !important;
    border-radius: 10px;
}

.form {
    position: relative;
    width: 100%;
    max-width: 860px;
    margin: 0 auto;
}

    .form .fa-comment-o {
        position: absolute;
        top: 14px;
        left: 20px;
        color: #9ca3af;
    }

    .form span {
        position: absolute;
        right: 12px;
        top: 9px;
        padding: 2px;
        border-left: 1px solid #434446;
    }

.left-pan {
    padding-left: 7px;
}

    .left-pan i {
        padding-left: 10px;
    }

.form-input {
    height: 45px;
    text-indent: 10px;
    border-radius: 5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
    border: 1px solid #dfe2e7 !important;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

    .form-input:focus {
        box-shadow: none;
        border: none;
    }

.chat {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 200px;
    padding-bottom: 150px;
}

.message-content {
    display: inline-block;
    padding: 10px;
    margin-top: 10px;
    max-width: calc(100%);
    width: auto;
    word-wrap: break-word;
    border-radius: 5px;
    background-color: #f0f2f5;
    line-height: 1.2;
}

    .message-content p {
        margin-bottom: 5px;
    }

    .message-content.user {
        background-color: #e4ecf6;
        align-self: flex-end;
    }

.copyright {
    padding-top: 10px;
    color: #47546799;
    font-size: 12px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    max-width: 860px;
    margin: 0 auto;
}

    .copyright a {
        color: #47546799;
        display: inline;
    }

.bottom {
    margin-top: auto;
}

button.btn-primary,
button.btn-secondary {
    width: 100%;
    background-color: #00000033;
    border: none;
    margin-bottom: 10px;
    transition-duration: 0.2s;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 15px;
    padding-right: 15px;
}

    button.btn-primary:hover,
    button.btn-primary:active,
    button.btn-primary.show {
        background-color: #19c97777 !important;
    }

    button.btn-secondary:hover,
    button.btn-secondary:active,
    button.btn-secondary.show {
        background-color: #9945ff77 !important;
    }

.dropdown-item:hover {
    background-color: #e4ecf6 !important;
}

.dropdown-item:focus {
    background-color: #9945ff !important;
}

.logo {
    margin-bottom: 20px;
    width: 140px;
    height: 46px;
    cursor: pointer;
}

.logo--mobile {
    margin-bottom: 0px;
    width: 100px;
    height: 33px;
    margin-right: 20px;
    margin-top: 15px;
    display: none;
}

.dropdown {
    margin-bottom: 20px;
}

    .dropdown label {
        font-size: 14px;
        opacity: 0.7;
    }

.video-container {
    background-color: #2f333a;
    overflow: hidden;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    margin-bottom: 10px;
    max-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-right: 10px;
}

    .video-container video {
    }

.navbar-toggler img {
    opacity: .7;
}

.navbar-toggler img {
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
}

.navbar-toggler.collapsed img {
    transform: rotate(270deg);
    -webkit-transform: rotate(270deg);
    -moz-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    -o-transform: rotate(270deg);
}

.feedback, .points {
    font-size: 12px;
    opacity: .7;
    margin-bottom: 0 !important;
    display: inline-block;
}

.points {
    padding-right: 7px;
}

.panel--additional.panel--login {
    height:100%;
    min-height:100%;
}

main.login {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e0e4e7 !important;
}

.container--login {
width:90%;
max-width:500px;
font-weight:500;
border-radius:5px;
background-color:#fff;
padding:40px;
box-shadow: 0 3px 4px rgba(0,0,0,.07);
}

.error-block {
    padding: 10px;
    color: #c22020;
    background-color: #b7151524;
    border-radius:5px;
    font-size:14px;
    margin-top:10px;
}

.container--login h2 {
    font-weight: bold;
    margin-bottom: 30px;
}
    .container--login .btn.btn-success {
    margin-top:20px;
    width:100%;
    }

    @media screen and (max-width: 800px) {
        .custom-container {
        flex-direction: column;
    }

    .chat {
        padding-top: 0;
    }

    .navbar-toggler img {
        transform: rotate(180deg);
        -webkit-transform: rotate(180deg);
        -moz-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        -o-transform: rotate(180deg);
    }

    .navbar-toggler.collapsed img {
        transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
    }

    .custom-sidebar {
        width: 100%;
        border-radius: 0 0 10px 10px;
        position: fixed;
        top: 60px;
        padding-top: 22px;
        padding-bottom: 10px;
        z-index: 1;
        height: auto;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        -webkit-border-radius: 0 0 10px 10px;
        -moz-border-radius: 0 0 10px 10px;
        -ms-border-radius: 0 0 10px 10px;
        -o-border-radius: 0 0 10px 10px;
        display: flex;
        flex-direction: row;
    }

    .custom-content--inner {
        padding-top: 260px;
    }

    .form-container {
        position: fixed;
        right: 0;
    }

    .bottom {
        display: none;
    }

    .chat-header {
        position: fixed;
        right: 0;
        left: 0;
        z-index: 2;
    }

    .copyright {
        flex-direction: column;
    }

    .logo {
        display: none;
    }

    .logo--mobile {
        display: block;
    }

    .chat-header {
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .mobile-hide {
        display: none;
    }

    .form-container {
        padding-bottom: 10px;
    }

    .copyright div {
        text-align: center;
    }
}

.load-6 .letter {
    animation-name: loadingF;
    animation-duration: 1.6s;
    animation-iteration-count: infinite;
    animation-direction: linear;
}

.l-1 {
    animation-delay: 0.48s;
}

.l-2 {
    animation-delay: 0.6s;
}

.l-3 {
    animation-delay: 0.72s;
}

.l-4 {
    animation-delay: 0.84s;
}

.l-5 {
    animation-delay: 0.96s;
}

.l-6 {
    animation-delay: 1.08s;
}

.l-7 {
    animation-delay: 1.2s;
}

.l-8 {
    animation-delay: 1.32s;
}

.l-9 {
    animation-delay: 1.44s;
}

.letter {
    float: left;
    font-size: 14px;
    color: #777;
}

@keyframes loadingF {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

#send {
    margin-right: 34px;
}

    #send:hover {
        color: #19c977 !important;
    }

#recordButton:hover {
    color: #19c977 !important;
}

#message {
    padding-right: 80px !important;
    text-indent: 0 !important;
}
