
html {
    font-size: inherit !important;
}

.agilentchat-chatbox-button {
    box-shadow: none !important;
    width: 180px !important;
    height: 60px !important;
    background-repeat: no-repeat !important;
    background-image: url(../asset/chatImages/Chat-Now-English.gif) !important;
    background-size: 95% !important;
    background-position: 10px 10px !important;
    cursor: pointer !important;
    position: absolute;
    right: 8px;
    bottom: 10px;
    z-index: 999;
}
/* .agilentchat-chatbox-button .agilentchat-innerbox */
.agilentchat-innerbox{
    width: 150px;
    height: 40px;
    line-height: 40px;
    text-align: right;
    padding-right: 20px;
    border-radius: 30px 30px 0 30px;
    font-family: "roboto";
    font-size: 16px;
    /* color: #fff; */
    /* background-color: #00426a; */
    background: transparent;
    color: transparent;
    font-weight: 200;
}

.agilentchat-chatbox-wrapper {
    width: 438px;
    max-width: 100%;
    max-height: 780px;
    z-index: 9999;
    padding-top: 8px !important;
    padding-bottom: 8px !important;
}

.agilentchat-chatbox-wrapper .agilentchat-iframe {
    width: 100%;
    border-radius: 4px !important;
    filter: drop-shadow(0px 8px 12px rgba(0, 0, 0, 0.15));
    z-index: 1000;
    margin-bottom: 4px !important;
}

.agilentchat-chatbox-button img {
    width: 100% !important;
    height: auto !important;
    display: none !important;
}



  /* Modal window */
   * {
            box-sizing: border-box;
        }

    /*    body {
            margin: 0;
            padding: 0;
            font-family: 'Roboto', sans-serif;
        } */

        h2.chatbox-modal-heading {
            font-size: 18px;
            font-weight: 700;
            margin: 0 0 10px 0;
            padding: 0;
            color: #202020;
            font-family: 'Roboto', sans-serif;
        }

        .chatbox-modal-text {
            color: #202020;
            font-size: 14px;
            line-height: 22px;
            margin: 0;
            font-weight: 300;
        }

        .chatbox-popup-action {
            margin: 30px 0 0 0;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .chatbox-popup-action .chatbox-btn {
            width: 47%;
            cursor: pointer;
            border: 1px solid #0085D5;
            border-radius: 4px;
            padding: 10px 20px;
            background-color: #FFF;
            box-shadow: none;
            font-style: normal;
            font-weight: 700;
            font-size: 14px;
            line-height: 20px;
            text-align: center;
            transition: 0.2s;
        }

        .chatbox-popup-action .chatbox-close-btn {
            background-color: #0085D5;
            color: #fff;
        }

        .chatbox-popup-action .chatbox-close-btn:hover {
            background-color: #0074b9;
        }

        .chatbox-popup-action .chatbox-continue-btn {
            background-color: #fff;
            color: #0085D5;
        }

        .chatbox-popup-action .chatbox-continue-btn:hover {
            background-color: #EDEFF0;
        }

        .chatbox-open-modal {
            border: 1px solid #0085D5;
            border-radius: 4px;
            padding: 10px 20px;
            background-color: #FFF;
            box-shadow: none;
            font-style: normal;
            font-weight: 700;
            font-size: 15px;
            line-height: 24px;
            text-align: center;
            color: #0085D5;
            display: block;
            margin: 20px auto;
            cursor: pointer;
        }

        .chatbox-modal {
            display: none;
            position: fixed;
            z-index: 10001; /* bigger than #draggable */
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgba(0, 0, 0, 0.45);
            font-family: 'Roboto', sans-serif;
        }

        .chatbox-modal-content {
            background-color: #fefefe;
            margin: 0 auto;
            border-radius: 4px;
            padding: 20px;
            width: 60%;
            max-width: 400px;
            box-shadow: rgb(150 150 150 / 20%) 0.1rem 0.2rem 0.4rem;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        @media only screen and (max-width: 480px) {
            .chatbox-modal-content {
                width: 75%;
            }

            .chatbox-popup-action .chatbox-btn {
                width: 100%;
            }

            .chatbox-popup-action .chatbox-btn:last-child {
                margin-top: 20px;
            }

            .chatbox-popup-action {
                flex-direction: column;
            }

        }


        #draggable::before{
            content: '';
            position: fixed;
            left: 1.5rem;
            top: 8px;
            height: 64px;
            right: 100px;
            cursor: move;
            z-index: 999;
        }
        .dragging#draggable::before{
            top: 0;
            right: 0;
            left: 0;
            bottom: 0;
            height: auto;
        }