.chat-bar-collapsible {
    position: fixed;
    bottom: 17px;
    right: 14px;
    z-index: 9999;
    padding: 0px;
}

.chat-bar-Advisorcustomer{
    position: fixed;
    bottom: 0px;
    right: 0px;
    z-index: 9999;    
}

.collapsible {
    background-color: floralwhite;
    color: #FFFFFF;
    cursor: pointer;
    width: 320px;
    text-align: left;
    outline: none;
    font-size: 24px;
    font-family: 'LivvicSemiBold', serif;
    border-radius: 10px 10px 0px 0px;
    font-weight: 500;
    padding: 0;
    border: 1px solid #FFFFFF;
    border-bottom: 0;
}

    .collapsible.active {
        border-bottom: 1px solid #FFFFFF;
    }

    .collapsible .header-container {
        display: block;
        padding: 15px;
        background-color: #0D2C41;
        border-radius: 10px 10px 0px 0px;
        width: 282px;
        margin: 3px;
        margin-bottom: 0;
    }

    .collapsible.active .header-container {
        margin-bottom: 3px;
    }

    .collapsible span {
        vertical-align: middle;
    }

.collapsibleSiteCore {
    background-color: #178830;
    color: #FFFFFF;
    width: 320px;
    text-align: left;
    outline: none;
    font-size: 24px;
    font-family: 'LivvicSemiBold', serif;
    border-radius: 10px 10px 0px 0px;
    font-weight: 500;
    padding: 0;
    border: 1px solid #178830;
    border-bottom: 0;
}

    .collapsibleSiteCore img {
        max-width: 34px;
    }

    .collapsibleSiteCore.active {
        border-bottom: 1px solid #178830;
    }

    .collapsibleSiteCore .header-container {
        display: block;
        padding: 15px;
        background-color: #178830;
        border-radius: 10px 10px 0px 0px;
        width: 282px;
        margin: 3px;
        margin-bottom: 0;
    }

    .collapsibleSiteCore.active .header-container {
        margin-bottom: 3px;
    }

    .collapsibleSiteCore span {
        vertical-align: middle;
        display: inline-block;
    }


.content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    background-color: #f1f1f1;
}


.contentSiteCore {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    background-color: #f1f1f1;
    border-radius: 1rem;
    
}

.full-chat-block {
    width: 320px;
    background: white;
    text-align: center;
    overflow: auto;
    scrollbar-width: thin;
    height: max-content;
    transition: max-height 0.2s ease-out;
}

.input-container {
    position: relative;
}

.outer-container {
    min-height: 372px;
    bottom: 0;
    position: relative;
}

.loader-icon {
    display: none;
}

.loader-text {
    padding-bottom: 130px;
    font-size: 20px;
    font-family: 'Livvic', serif;
    font-weight: lighter;
    color: #4A4A49;
    display: none;
}

.chat-container {
    max-height: 372px;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    scroll-behavior: smooth;
}

div#chatbox {
    padding-bottom: 5px;
}

.chat-container::-webkit-scrollbar {
    display: none;
}

.chat-bar-input-block {
    display: flex;
    float: left;
    box-sizing: border-box;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    background-color: rgb(235, 235, 235);
    border-radius: 10px 10px 0px 0px;
    padding: 10px 0px 10px 10px;
}

.chat-bar-icons {
    display: flex;
    justify-content: space-evenly;
    box-sizing: border-box;
    width: 16%;
    float: right;
    font-size: 20px;
}

#chat-icon:hover {
    opacity: .7;
}

/* Chat bubbles */


.typing-indicator {
    display: none;
}

#typing-indicator {
    font-family: 'MuliLight', serif;
    font-weight: normal;
    color: #4A4A49;
    font-size: 11px;
    text-align: left;
    padding-left: 15px;
    position: absolute;
    bottom: 2px;
}

.agent-disconnected {
    font-family: 'MuliLight', serif;
    font-weight: normal;
    color: #4A4A49;
    font-size: 11px;
    text-align: center;
    clear: both;
    padding-left: 5px;
}

    .agent-disconnected span {
        font-family: 'MuliLight', serif;
        max-width: 80%;
        font-weight: normal;
        color: #517686;
    }

.data-protection-statement {
    font-family: 'MuliLight', serif;
    font-weight: normal;
    color: #4A4A49;
    font-size: 14px;
    text-align: left;
    margin-left: 10px;
    clear: both;
    padding-left: 5px;
}

    .data-protection-statement span {
        font-family: 'MuliLight', serif;
        max-width: 80%;
        font-weight: normal;
        color: #4A4A49;
    }

#userInput {
    width: 75%;
}

.input-box {
    float: left;
    border: none;
    box-sizing: border-box;
    width: 116%;
    border-radius: 10px;
    padding: 10px;
    font-size: 13px;
    font-family: 'MuliRegular', serif;
    color: #000;
    background-color: white;
    outline: none
}

.userText {
    color: white;
    font-family: 'MuliRegular', serif;
    font-size: 11px;
    font-weight: normal;
    text-align: right;
    clear: both;
    margin-top: 0;
}

    .userText span {
        line-height: 1.5em;
        display: inline-block;
        background: #178830;
        padding: 10px;
        border-radius: 8px;
        border-bottom-right-radius: 2px;
        font-family: 'MuliRegular', serif;
        font-weight: normal;
        color: #FFFFFF;
        max-width: 80%;
        margin-right: 10px;
        animation: floatup .5s forwards;
        text-align: justify;
    }

.botButton {
    display: inline-block;
    background: #e0e0e0;
    border-radius: 10px;
    border: 2px single #cccccc;
    color: #000;
    text-align: center;
    font-family: 'Trebuchet MS', serif;
    font-weight: bold;
    font-size: 12px;
    padding: 9px;
    width: auto;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    cursor: pointer;
    margin: 5px;
}

.botButtonimage {
    display: block;
    background: #71A8B8;
    border-radius: 0px;
    border: 1px double #71A8B8;
    color: black;
    text-align: center;
    font-family: 'Trebuchet MS', serif;
    font-weight: bold;
    font-size: 12px;
    padding: 9px;
    width: 273px;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    cursor: pointer;
    margin: 0px;
}

.botimage {
    display: block;
    border: 0px solid #ddd;
    border-radius: 0px;
    padding: 0px;
    width: 100%;
    float: left;
    height: 225px;
    padding-left: 0px;
}

.bgimage {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 5px;
    width: 1240px;
    height: 600px;
}

.botText {
    color: #000;
    font-family: 'MuliRegular', serif;
    font-weight: normal;
    font-size: 11px;
    text-align: left;
    margin-bottom: 20px;
}

    .botText span {
        line-height: 1.5em;
        display: inline-block;
        background: #ECF5F8;
        padding: 10px;
        border-radius: 8px;
        border-bottom-left-radius: 2px;
        font-family: 'MuliRegular', serif;
        font-weight: normal;
        color: #4A4A49;
        max-width: 80%;
        margin-left: 10px;
        animation: floatup .5s forwards;
    }

.agentText {
    color: grey;
    font-family: 'Trebuchet MS', serif;
    font-size: 13px;
    font-weight: normal;
    text-align: center;
    clear: both;
}

    .agentText span {
        font-family: 'Mulish', serif;
        max-width: 80%;
        font-weight: normal;
    }

.chat-timestamp {
    display: flex;
    color: #6B7585;
    font-family: 'MuliLight', serif;
    text-align: left;
    align-items: center;
    margin-top: 4px;
    font-size: 8px;
    clear: both;
}

    .chat-timestamp span {
        line-height: 1.5em;
        display: inline-block;
        border-radius: 8px;
        border-bottom-right-radius: 2px;
        font-family: 'MuliLight', serif;
        max-width: 80%;
        font-weight: normal;
        color: #517686;
        padding-left: 10px;
    }

.chat-timestamp-customer {
    color: #6B7585;
    font-family: 'MuliLight', serif;
    text-align: right;
    align-items: center;
    margin-top: 4px;
    font-size: 8px;
    clear: both;
}

    .chat-timestamp-customer span {
        line-height: 1.5em;
        display: inline-block;
        border-radius: 8px;
        border-bottom-right-radius: 2px;
        font-family: 'MuliLight', serif;
        max-width: 80%;
        margin-right: 10px;
        color: #517686;
        font-size: 9px;
    }


.humanText {
    color: grey;
    font-family: 'MuliLight', serif;
    font-size: 9px;
    text-align: left;
    clear: both;
    padding-left: 13px;
    line-height: 1px;
    display: flex;
    padding-right: 10px
}

    .humanText span {
        font-family: 'MuliLight', serif;
        max-width: 80%;
        font-weight: normal;
        color: #517686;
    }

        .humanText span:last-child {
            margin-left: 7px;
        }

.slideshow-container {
    max-width: 1000px;
    position: relative;
    margin: 30px;
    display: none;
}

.slideshow-container1 {
    max-width: 1000px;
    position: relative;
    margin: 30px;
    display: none;
}

img {
    vertical-align: middle;
}

/* Next & previous buttons */
.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -78px;
    color: black;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    margin-right: 0px;
    margin-left: -140px
}


/* Position the "next button" to the right */
.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.text {
    color: black;
    font-size: 12px;
    padding: 3px;
    width: 265px;
    display: block;
    background: #e0e0e0;
    border-radius: 0px;
    border: 1px double #cccccc;
    text-align: left;
    font-family: 'Trebuchet MS', serif;
}

.fade {
    animation-name: fade;
    animation-duration: 1.5s;
    border-style: none;
}


.card-img-top {
    width: 90%;
    border-top-left-radius: calc(.25rem - 1px);
    border-top-right-radius: calc(.25rem - 1px);
}

.slick-prev:before,
.slick-next:before {
    color: red;
}


@keyframes floatup {
    from {
        transform: translateY(14px);
        opacity: .0;
    }

    to {
        transform: translateY(0px);
        opacity: 1;
    }
}

.msg-container {
    margin: 10px 0;
}

.agent-name {
    font-family: 'MuliLight', serif;
    font-weight: normal;
    color: #517686;
    font-size: 12px;
    margin-bottom: 5px;
    margin-left: 12px;
    text-align: left;
}

.msg-wrapper {
    animation: floatup .5s forwards;
    min-width: 65px;
    padding: 10px;
    max-width: 80%;
    font-size: 14px;
    font-family: 'MuliRegular', serif;
    font-weight: normal;
    text-align: left;
}

    .msg-wrapper p {
        margin: 0;
    }

.left-msg {
    float: left;
    background: #ECF5F8;
    color: #4A4A49;
    margin-left: 10px;
    border-radius: 8px 8px 8px 0;
}

.right-msg {
    float: right;
    background: #178830;
    color: #FFFFFF;
    margin-right: 10px;
    border-radius: 8px 8px 0 8px;
}

.msg-wrapper .chat-timestamp-txt {
    font-family: 'MuliLight', serif;
    font-size: 11px;
    text-align: right;
    margin-top: 5px;
}

.left-msg .chat-timestamp-txt {
    color: #848788;
}

.clear-both {
    clear: both;
}

span.w-100 {
    display: block;
    margin: 3px 0;
}

.picklist {
    background-color: #FFFFFF;
    border: 1px solid #D2D9DC;
    min-width: 242px;
    max-width: 242px;
    border-radius: 1.5rem;
    box-sizing: border-box;
    cursor: pointer;
    display: inline-block;
    font-family: 'Livvic', sans-serif;
    font-weight: bold;
    font-size: 14px;
    padding: 0.5rem 1rem;
    text-align: center;
    color: #04589B;
    text-decoration: none;
    text-decoration-thickness: auto;
    margin-bottom: 3px;
}

.buttonsDisabled {
    background-color: #DEDEDE;
    color: #04589B;
    cursor: not-allowed;
    opacity: 0.6;
}

.picklist:hover {
    background-color: #178830;
    color: #FFFFFF;
}

#chat-widget {
    background: transparent;
    border: none;
    float: right;
    cursor: pointer;
}

.padding-buttons {
    margin-bottom: 15px;
}

.logo-container {
    float: left;
    margin-right: 7px;
}

.title-container {
    width: auto;
}

.close-btn-container {
    float: right;
}

.advisor-chat-icon {
    overflow: hidden;
    max-width: none;
    width: 170px;
    height: 140px;
    display: block;
    object-fit: contain;
}


/* Selected button (green) */
.sc-advisor-button.selected {
    background-color: #178830;
    color: white;
}

.sc-advisor-button:hover:not(.buttonsDisabled) {
    background-color: #003578;
    color: white;
    cursor: pointer;
}



.sc-advisor-button.buttonsDisabled {
    background-color: #4A4A49;
    color: #FFFFFF;
    cursor: default;
}


.data-protection-statement a {
    color: #04589B;
    font-weight: 700;
    text-decoration: underline;
}



.shadow-box {
    border-radius: 1rem;
    transition: box-shadow 0.3s ease-in-out;
    background-color: #fff;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    border: 2px solid #178830;
    
    box-shadow: -3px 3px 10px 0px rgba(0, 0, 0, 0.30) 
}
