        

        .chatbot-launcher
        {
            box-sizing: border-box;
            border-radius: 50%;
            text-align: center;
            background-color: transparent;
            height: 87px;
            width: 87px;
            color: white;
            font-size: 30px;
            cursor: pointer;
            border: none;
            font-weight: bolder;
            position: fixed;
            outline: none;
            right: 2rem;
            bottom: 1rem;
            z-index: 10;
        }
        .chatbot-launcher img{
            width: 100%;
        }
        #loader2 {
            border: 16px solid #f3f3f3; /* Light grey */
            border-top: 16px solid #007a5e; /* Blue */
            border-radius: 50%;
            width: 80px;
            height: 80px;
            margin: auto;
            margin-top: 120px;
            align-self: center;
            animation: spin 2s linear infinite;
        }

        @keyframes spin {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(360deg);
            }
        }