﻿.popupChatPC {
    position: fixed;
    bottom: 10px;
    left: 10px;
    width: 480px;
    height: 580px;
    background-color: #eeeeee;
    border: 1px solid #ccc;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    border-radius: 25px;
    padding: 0px;
    border-color: #df9707;
    display: none;
    padding: 15px;
    z-index: 10000;
}

.popupChatLayout {
    position: fixed;
    bottom: 10px;
    right: 10px;
    width: 480px;
    height: 580px;
    background-color: #eeeeee;
    border: 1px solid #ccc;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    border-radius: 25px;
    padding: 0px;
    border-color: #df9707;
    display: none;
    padding: 15px;
    z-index: 10000;
}


.close-button {
    position: absolute;
    top: 5px;
    right: 8px;
    font-size: 40px;
    background-color: transparent;
    color: gray;
    border: none;
    cursor: pointer;
    opacity: 0.5;
}

.download-button {
    position: absolute;
    top: 5px;
    right: 38px;
    font-size: 40px;
    background-color: transparent;
    color: gray;
    border: none;
    cursor: pointer;
    padding-right: 14px;
    opacity: 0.5;
}

.min-button {
    position: absolute;
    top: 5px;
    right: 22px;
    font-size: 40px;
    background-color: transparent;
    color: gray;
    border: none;
    cursor: pointer;
    padding-right: 12px;
    opacity: 0.5;
}

.webchat__send-box__main {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    /* border-top-right-radius: 10px;
  border-top-left-radius: 10px; */
    background-color: transparent !important;
    border-top: 1px solid #ccc !important;
}


.ChatBotPCButton {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #df9707;
    color: #ffffff;
    padding: 15px 15px;
    text-align: center;
    font-weight: bold;
    border: none;
    cursor: pointer;
    border-radius: 40px;
    transition: background-color 0.3s ease;
}

    .ChatBotPCButton:hover {
        background-color: #414e56;
    }

.ChatBotLayoutButton {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #df9707;
    color: #ffffff;
    padding: 15px 15px;
    text-align: center;
    font-weight: bold;
    border: none;
    cursor: pointer;
    border-radius: 40px;
    transition: background-color 0.3s ease;
}

    .ChatBotLayoutButton:hover {
        background-color: #414e56;
    }

.chatbot-header {
    padding: 36px;
    background-color: transparent;
    color: gray;
    text-align: center;
    background-image: url('/images/chatbot/hero_logo.png');
    background-repeat: no-repeat;
    background-position: center;
    background-blend-mode: darken;
    background-position-x: center;
    background-position-y: -58px;
    background-size: 80%;
}

    .chatbot-header h2 {
        margin: 0;
    }
/*
.close-button {
    position: absolute;
    top: 15px;
    right: 18px;
    font-size: 40px;
    background-color: transparent;
    color: gray;
    border: none;
    cursor: pointer;
}*/

    .close-button:hover {
        color: #ff0000;
    }
/* width */
::-webkit-scrollbar {
    width: 6px !important;
}
/* Track */
::-webkit-scrollbar-track {
    background: transparent !important;
}
/* Handle */
::-webkit-scrollbar-thumb {
    background: #888 !important;
}
    /* Handle on hover */
    ::-webkit-scrollbar-thumb:hover {
        background: #555 !important;
    }
