html {
    scroll-behavior: smooth;
}

#char-count{

    color: gray;
}

@keyframes typingAnimation {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    50% {
        transform: translateY(-5px);
        opacity: 0.5;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.chatbot-class{
    z-index: 9999 !important;
}

/* Apply the animation to the message content */
.chatbot-class .typing-content {
    animation: typingAnimation 1s infinite;
    /* Adjust the duration and animation properties as needed */
}

/* Define a horizontal movement animation for the dots */
@keyframes dotsMove {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(5px);
    }

    100% {
        transform: translateX(0);
    }
}

/* Apply the animation to the dots */
.chatbot-class .typing-content::after {
    content: "...";
    display: inline-block;
    animation: dotsMove 1s infinite;
    /* Adjust the duration and animation properties as needed */
}

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3) !important;
    background-color: #F5F5F5 !important;
    border-radius: 10px !important;
}


::-webkit-scrollbar {
    width: 4px !important;
    background-color: #F5F5F5 !important;
    border-radius: 10px !important;
    height: 4px;
}

::-webkit-scrollbar-thumb {
    background-color: #949494 !important;
    border-radius: 10px !important;
}

.chatbot-class .frame-content {
    display: block;
    border: none;
    position: fixed;
    inset: auto 0px 0px auto;
    width: 450px;
    height: 647px;
    max-height: 100%;
    opacity: 1;
    color-scheme: none;
    background: none transparent !important;
    margin: 0px;
    max-width: 100vw;
    transform: translateY(0px);
    transition: none 0s ease 0s !important;
    visibility: visible;
    z-index: 999999999 !important;
}

.chatbot-class #chat-button {
    position: fixed;
    width: 112px;
    height: 140px;
    bottom: 12px;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    pointer-events: none;
    z-index: 1;
    right: 0px;
    z-index: 9999;
}

.chatbot-class #chat-button:not(.sidebar) .buttonWave {
    position: absolute;
    z-index: -1;
    width: 60px;
    height: 60px;
}


.chatbot-class #chat-button:not(.sidebar) .buttonWave::after {
    content: "";
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgb(20, 127, 255);
    opacity: 0.5;
}

.chatbot-class #chat-button #button-body {
    width: 60px;
    height: 60px;
    border-radius: 28px;
    display: inherit;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    pointer-events: initial;
    background-size: 130% 130%;
    transition: all 0.2s ease-in-out 0s;
    position: relative;
    color: #ff8700;
    border: 1px solid #e39c00;
}

.chatbot-class #chat-button #button-body::before {
    content: "";
    transition: opacity 0.5s ease-in-out 0s;
    position: absolute;
    inset: -1px;
    opacity: 0;
    border-radius: 50%;
    background-color: rgb(198, 204, 220);
}

.chatbot-class #chat-button button i.for-closed.active {
    transform: translateX(0px);
}

.chatbot-class #chat-button button i.for-closed {
    transform: translateX(-10px);
}

.chatbot-class #chat-button button i.active {
    opacity: 1;
}

.chatbot-class #chat-button button i {
    height: 26px;
    width: 26px;
    position: absolute;
    opacity: 0;
    transition: all 0.2s ease-in-out 0s;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    /* justify-content: center; */
}


.chatbot-class #chat-button button i.type1 svg {
    fill: currentcolor;
    width: 24px;
    height: 24px;
}

.chatbot-class #chat-button button i.type1::after {
    content: "";
    position: absolute;
    width: 68px;
    height: 68px;
    border-radius: 32px;
    background: rgb(255, 255, 255);
    transition: all 0.2s ease-in-out 0s;
    transform: scale(0);
    right: -18px;
}

.chatbot-class #chat-button button i.for-closed.active {
    transform: translateX(0px);
}

.chatbot-class #chat-button button i.for-closed {
    transform: translateX(-10px);
}


.chatbot-class button,
.chatbot-class  button.material-icons {
    background: none;
    border: 0px;
    color: inherit;
    font-style: inherit;
    font-variant: inherit;
    font-weight: inherit;
    font-stretch: inherit;
    font-size: inherit;
    font-family: inherit;
    line-height: normal;
    overflow: visible;
    padding: 0px;
    user-select: none;
    outline: none;
    cursor: pointer;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}



/* 
svg:not(:root) {
    overflow-clip-margin: content-box;
    overflow: hidden;
} */

.chatbot-class #button-body {
    box-shadow: rgba(0, 77, 255, 0.5) 0px 4px 24px;
}

/* body:not(.mobile) #button button:not(.disabled):hover i.type1 svg,
body:not(.mobile) #button button:not(.disabled):focus i.type1 svg {
    transform: scale(1.4);
}

body:not(.mobile) #button button:not(.disabled):hover i.type1::after,
body:not(.mobile) #button button:not(.disabled):focus i.type1::after {
    transform: scale(1);
} */

/* #chat-button button i.for-closed.active {
    transform: translateX(0px);
} */

.chatbot-class .chat.chrome, .start-group.chrome {
    box-shadow: rgb(245 245 245 / 67%) 0px 0px 10px 0px !important;
}

.chatbot-class .chat {
    max-height: calc(100% - 47px);
    display: flex;
    flex-direction: column;
}

.chatbot-class .chat,
.chatbot-class .start-group {
    width: 372px;
    position: fixed;
    bottom: 26px;
    border-radius: 16px;
    pointer-events: auto;
    box-shadow: rgba(0, 18, 46, 0.16) 0px 8px 22px 0px;
    overflow: hidden;
    z-index: 99999;
    right: 48px;
    left: auto;
    background-color: white;
}

.chatbot-class .message-operator.bots-quick-replies {
    width: 85%;
    background-color: rgb(255, 255, 255);
    margin-top: 0px;
    float: right;
}

.chatbot-class .message-operator.bots-quick-replies .button-wrapper {
    margin-top: 0px;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-pack: end;
    justify-content: flex-end;
    width: 100%;
    border: none;
}

.chatbot-class .message-operator {
    color: rgb(6, 19, 43);
    background: rgb(240, 242, 247);
    float: left;
}

.chatbot-class .message {
    padding: 10px 16px;
    border-radius: 12px 12px 12px 0 !important;
    margin: 2px 0px;
    font-size: 14px;
    line-height: 20px;
    overflow-wrap: break-word;
    display: inline-block;
    max-width: 85%;
    clear: both;
    position: relative;
    transition: opacity 0.5s ease-in-out;
}


.chatbot-class .user-message {
    border-radius: 12px 12px 0 12px !important;
    padding: 10px 16px;
    font-size: 14px;
    line-height: 20px;
    overflow-wrap: break-word;
    display: inline-block;
    max-width: 85%;
    clear: both;
    position: relative;
    transition: margin 0.28s ease-in-out 0s;
}

.chatbot-class .user-message span.message-content {
    white-space: pre-line;
    color: #0070ad;
}


.chatbot-class .user-message.message-operator {
    float: right !important;
    margin: 0 8px 0 auto;
}


.chatbot-class .input-group {
    padding: 1px 15px 0px;
    width: 100%;
    position: relative;
    background: rgb(249 249 249);
    z-index: 3;
    flex: 0 0 auto;
}

.chatbot-class .input-group .footer-input-wrapper,
.chatbot-class .input-group .footer-icons-wrapper {
    transition: all 0.5s ease-in-out 0s;
    opacity: 1;
    transform: translateY(0px);
}

.chatbot-class .text-area {
    width: 100%;
    height: 40px;
    padding: 10px;
    background: #f1f1f100;
    border: none;
    border-radius: 4px;
    outline: none;
    font-size: 16px;
    resize: none;
    transition: border-color 0.3s;
}


.chatbot-class .send-icon {
    width: 26px;
    height: 26px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 26px;
    flex: 0 0 26px;
    -webkit-backface-visibility: hidden;
    -webkit-transition: all .3s;
    transition: all .3s;
    cursor: pointer;
}

.chatbot-class #conversation-group {
    padding: 0px 10px;
    width: 100%;
    height: 357px;
    overflow: hidden auto;
    background: rgb(255, 255, 255);
    transition: all 0.3s ease 0s;
    max-height: 357px;
    min-height: 160px;
    flex: 0 1 auto;
}


.chatbot-class .offline-message .online::before {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    position: absolute;
    top: calc(50% - 4px);
    border-radius: 50%;
    left: 0px;
}

.chatbot-class .offline-message .online {
    z-index: 2;
    position: relative;
    display: inline-block;
    font-size: 12px;
    color: #ffffff;
}

/* .message-operator.message-with-buttons .button-wrapper,
.message-operator .message-with-buttons .button-wrapper,
.message-operator.bots-quick-replies .button-wrapper {
    background: rgb(255, 255, 255);
    width: 100%;
    margin-top: 10px;
    border-image: initial;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    border-top-style: initial;
    border-top-color: initial;
    position: relative;
} */



.chatbot-class .chat-header {
    padding: 13px 28px 0px;
    /* background: linear-gradient(-60deg, #00ccff, #002a60); */
    position: relative;
    z-index: 4;
    flex: 0 0 auto;
    background: #002a60;
    /* display: flex; */
}

.chatbot-class .chat-header .cybrain-logo {
    width: 38px;
}



.chatbot-class .chat h2.oneline {
    margin-top: 0px;
}

.chatbot-class .chat h2 {
    font-size: 14px;
    font-weight: 600;
    color: currentcolor;
    margin: 0;
    padding: 0px;
    display: inline-block;
    position: relative;
    /* max-width: calc(100% - 100px); */
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    vertical-align: middle;
    font-family: arial;
    color: #fff;
}



/* button.material-icons.exit-chat,
label.material-icons.exit-chat {
    margin-right: -5px;
} */

/* button.material-icons.options,
button.material-icons.exit-chat,
label.material-icons.options,
label.material-icons.exit-chat {
    z-index: unset;
} */

.chatbot-class button.material-icons,
.chatbot-class label.material-icons {
    position: relative;
    z-index: 1;
    margin: 15px 0px 8px 11px;
    float: right;
}

/* button.material-icons.options::before,
button.material-icons.exit-chat::before,
label.material-icons.options::before,
label.material-icons.exit-chat::before {
    background: rgba(0, 36, 92, 0.16);
}

button.material-icons::before,
label.material-icons::before {
    content: "";
    position: absolute;
    background: rgb(239, 242, 246);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    z-index: -1;
    transition: all 0.16s ease-in-out 0s;
    transform: scale(0);
    top: calc(50% - 20px);
    left: calc(50% - 20px);
} */



.chatbot-class .offline-message {
    margin: 2px 0 5px -28px;
    color: currentcolor;
    width: calc(100% + 57px);
    padding: 2px 27px 0px ;
    position: relative;
    background-size: 100% calc(100% + 13px);
    z-index: 1;
}



.chatbot-class .offline-message span.online {
    padding-left: 0px;
}

.chatbot-class .no-clip-path .offline-message::after {
    content: "";
    //position: absolute;
    width: calc(100% + 10px);
    bottom: -14px;
    left: -5px;
    border-image-source: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAzNzIgMTUiPgogIDxwYXRoIGQ9Ik0zNDkuOCAxLjRDMzM0LjUuNCAzMTguNSAwIDMwMiAwaC0yLjVjLTkuMSAwLTE4LjQuMS0yNy44LjQtMzQuNSAxLTY4LjMgMy0xMDIuMyA0LjctMTQgLjUtMjggMS4yLTQxLjUgMS42Qzg0IDcuNyA0MS42IDUuMyAwIDIuMnY4LjRjNDEuNiAzIDg0IDUuMyAxMjguMiA0LjEgMTMuNS0uNCAyNy41LTEuMSA0MS41LTEuNiAzMy45LTEuNyA2Ny44LTMuNiAxMDIuMy00LjcgOS40LS4zIDE4LjctLjQgMjcuOC0uNGgyLjVjMTYuNSAwIDMyLjQuNCA0Ny44IDEuNCA4LjQuMyAxNS42LjcgMjIgMS4yVjIuMmMtNi41LS41LTEzLjgtLjUtMjIuMy0uOHoiIGZpbGw9IiNmZmYiLz4KPC9zdmc+Cg==);
    border-image-slice: 0 0 100%;
    border-image-width: 0 0 15px;
    border-image-repeat: stretch;
    border-width: 0px 0px 15px;
    border-bottom-style: solid;
    border-color: initial;
    border-top-style: initial;
    border-left-style: initial;
    border-right-style: initial;
}

.chatbot-class .input-group .footer-input-wrapper,
.chatbot-class .input-group .footer-icons-wrapper {
    transition: all 0.5s ease-in-out 0s;
    opacity: 1;
    transform: translateY(0px);
}


.chatbot-class .message span.message-content {
    white-space: pre-line;
}

.chatbot-class #chatContainer {
    transition: all 0.3s ease-in-out;
    right: -300px;

}

.onlyBubble {
    display: none;
    transition: all 0.3s ease-in-out;
}

.chatbot-class .open {
    display: block;
    transition: all 0.3s ease-in-out;
}

.chatbot-class #chatContainer.open {
    right: 0;
}

.chatbot-class .footer-input-wrapper {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.chatbot-class .clicked {
    display: none !important;
}



.chatbot-class .exit-chat {
    position: absolute !important;
    top: -7px;
    right: 20px;
    padding: 5px !important;
    z-index: 1050 !important;
}

.chatbot-class .exit-chat img {
    width: 13px;
}

.chatbot-class .question-icon-div {
    float: left;
    position: relative;
    width: 10%;
    margin-left: 5px;
    box-sizing: border-box;
    margin-right: 5px;
    /* background: #ededed; */
    /* height: 37px; */
    vertical-align: top;
}

.chatbot-class .question-icon-smatest {
    width: 30px;
    height: 30px;
    margin-right: 5px;
    margin-top: 0;
    float: left;
    max-width: 100%;
    border-radius: 50%;
    position: absolute;
    top: 10px;
    object-fit: contain;
    background: #ededed;
    padding: 3px;
    vertical-align: top;
}

.chatbot-class #messages {
    display: -webkit-box;
    width: 100%;
    margin: 10px 0;
}

.chatbot-class #SentButton img {
    width: 25px;
    height: 25px;
    object-fit: contain;
    float: left;
}

.chatbot-class .smat-footer.bot-google-font {
    width: 100%;
    padding: 0px 10px 5px 10px;
    text-align: right;
    background-color: #002a60;
    color: #ffffff;
}

.chatbot-class .smat-footer.bot-google-font span {
    font-size: 10px;
}

.chatbot-class #MicButton img {
    width: 25px;
    /* cursor: pointer; */
}

.chatbot-class #MicButton {
    margin: 0 10px;
}

.chatbot-class .listening {
    background-color: rgb(234, 228, 228);
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.chatbot-class .radio-botest {
    margin-right: 10px !important;
    float: left;
    margin-top: 0;
    font-size: 18px;
    display: none !important;
}

.chatbot-class .radio-box-botest {
    /* margin-right: 10px !important; */
    float: left;
    margin-top: 0;
    font-size: 18px;
    /* display: none !important */
    margin-top: 0 !important;
    display: block !important;
    margin-right: 5px !important;
}

.chatbot-class .options-smatest {
    width: auto;
    background: #F2BE00 !important;
    text-align: left !important;
    border: 1px solid #F2BE00 !important;
    margin-bottom: 5px;
    margin-top: 0px;
    /* display: inline-flex !important; */
    padding: 5px 8px;
    border-radius: 20px !important;
    font-size: 12px;
    cursor: pointer;
    font-weight: 500;
    box-sizing: border-box;
    opacity: 0.8;
    color: #050505;
    margin-right: 3px;
}

.chatbot-class .options-smatest:hover {
    opacity: 1;
}

.chatbot-class .main-options-div-smatest {
    float: left;
    margin: 0 10px;
    margin-top: 0px;
    margin-bottom: 5px;
    margin-left: 45px !important;
    width: 100%;
    background: transparent;
    overflow-y: hidden;
    max-width: 90%;
    animation: 0.3s ease-in-out 0s 1 normal none running message-bubble-in;
    display: list-item;
}


.chatbot-class .more #button {
    display: none;
}

.chatbot-class .more label {
    overflow: hidden;
    cursor: pointer;
    vertical-align: text-top;
}

.chatbot-class .more label span {
    height: 20px;
    display: block;
    margin: 0 auto;
    color: #ffffff;
    content: "\22EE";
    font-size: 22px;
    font-weight: bolder;
    vertical-align: top;
    text-align: center;
    line-height: 20px;
}

.chatbot-class .more ul {
    width: 185px;
    position: absolute;
    top: 100%;
    right: -85px;
    transform: translateX(-50%) scaleY(.5);
    transform-origin: top center;
    text-align: left;
    white-space: no-wrap;
    background: #fff;
    padding: 0px 0 0px;
    border: 1px solid #ececec;
    visibility: hidden;
    opacity: 0;
    transition: all .3s ease;
}

.chatbot-class .more #button:checked~ul {
    visibility: visible;
    opacity: 1;
    transform: translateX(-50%) scaleY(1);
}

.chatbot-class .more ul a {
    color: #fff;
    display: block;
    padding: 10px 5px;
    font-size: 20px;
    text-transform: capitalize;
    transition: all .5s ease;
    float: left;
    /* border-bottom: 1px solid #eee; */
    width: 100%;
}


.chatbot-class .header-menu-item {
    float: left;
    cursor: pointer;
    width: 100%;
    text-align: left;
    padding: 8px 8px;
    /* font-size: 11px; */
    list-style: none;
    border-bottom: 1px solid #eee;
}

.chatbot-class .reload-icon {
    display: inline-block;
    background: url(../images/reload.png);
    cursor: pointer;
    width: 21px;
    height: 21px;
    /* border: 2px solid white; */
    /* border-radius: 50%; */
    cursor: pointer;
    background-size: 21px;
    background-repeat: no-repeat;
    background-position: 50%;
    float: left;
}

.chatbot-class .mute-icon {
    display: inline-block;
    background: url(../images/Mute.png);
    cursor: pointer;
    width: 21px;
    height: 21px;
    /* border: 2px solid white; */
    /* border-radius: 50%; */
    cursor: pointer;
    background-size: 21px;
    background-repeat: no-repeat;
    background-position: 50%;
    float: left;
}

.chatbot-class .header-menu-item-text {
    font-size: 13px;
    float: left;
    margin-left: 5px;
    line-height: 21px;
    vertical-align: middle;
    padding: 0;
    color: black !important;
}

.chatbot-class .header-menu-item-text-restart {
    font-size: 13px;
    float: left;
    margin-left: 5px;
    line-height: 21px;
    vertical-align: middle;
    padding: 0;
    color: black !important;
}

.chatbot-class .more {
    float: right;
}

.chatbot-class .header-menu-item:last-child {
    border: none;
}

.chatbot-class #button-body {
    background: linear-gradient(135deg, #ea7c00, #fecc00);
    box-shadow: #ff8700 0px 4px 24px;
}

.chatbot-class  span#image-for-bot {
    
}

.chatbot-class span#image-for-bot img {
    /* width: 176px; */
    height: auto;
    padding: 4px;
    margin: 0 auto;
    width: 100% !important;
    float: left;
    text-align: center;
}


.chatbot-class form.example label.select-box {
    width: auto;
    float: left;
    border: 0px solid;
    text-align: left;
    height: 35px;
    display: block;
    font-weight: 400;
    position: relative;
    border-radius: 50px;
    margin-bottom: 10px;
    margin-left: 45px;
}
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    /* background: #e56a6ac2; */
    background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
    background-position-x: 100%;
    background-position-y: 6px;
    border: 1px solid #dfdfdf;
    border-radius: 2px;
    margin-right: 2rem;
    padding: 0rem;
    padding-right: 2rem;
}
.chatbot-class form.example select {
    background-color: rgb(240, 242, 247);
    border-radius: 0px;
    background-position: 95% 42%;
    background-repeat: no-repeat;
    /* background-size: 4%; */
    display: block;
    height: 35px;
    border: none !important;
    width: auto;
    cursor: pointer;
    margin-bottom: 15px;
    padding-left: 10px;
    padding-right: 10px;
    outline: none;
    letter-spacing: 0;
    border: none;
    /* -webkit-appearance: none; */
    -moz-appearance: none;
    color: #464646;
    font-size: 14px;
    outline: transparent;
    border-radius: 50px;
}

.chatbot-class #DropdownContent {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    bottom: 100%;
    right: 0;
}

.chatbot-class #DropdownContent a:hover {
    background-color: #f1f1f1;
}


.chatbot-class #back {
    background: #0e506d !important;
    border: #0e506d !important;
}


.chatbot-class #chat-input {
    overflow-y: auto;
}

.chatbot-class textarea#chat-input::-webkit-scrollbar {
    width: 0px !important;
}


.chatbot-class #restart-chat:hover {
    background: #ededed;
    padding-left: 1px;
    padding-right: 1px;
}

.chatbot-class #mute-chat:hover {
    background: #ededed;
    padding-left: 1px;
    padding-right: 1px;
}
@media(min-width: 220px) and (max-width:445px) {

    .chatbot-class .chat, .chatbot-class .start-group {
        width: 100%;
        right: 0;
    }
}
.chatbot-class .message-content a {
    text-decoration: underline !important;
    color: #004eb9;
}


/* #bot-phone-number {
    &:before {
      content: '';
      display: none;
      position: absolute;
      z-index: 9998;
      top: 88px;
      left: 15px;
      width: 0;
      height: 0;
      border-left: 5px solid transparent;
      border-right: 5px solid transparent;
      border-bottom: 5px solid rgba(0,0,0,.72);
    }
  
    &:after {
      content: 'Copy to Clipboard';
      display: none;
      position: absolute;
      z-index: 9999;
      top: 92px;
      left: -44px;
      width: 114px;
      height: 36px;
      color: #fff;
      font-size: 10px;
      line-height: 36px;
      text-align: center;
      background: rgba(0,0,0,.72);
      border-radius: 3px;
    }
    
    &:hover {
      background-color: #eee;
      
      &:before, &:after {
        display: block;
      }
    }
    
    &:active, &:focus {
      outline: none;
      
      &:after {
        content: 'Copied!';
      }
    }
  } */

.chatbot-class #restart-chat {
    width: 100%;
    display: block;
    float: left;
    margin: 0 0 5px 0;
}

.chatbot-class #mute-chat {
    width: 100%;
    display: block;
    float: left;
}

.custom-form  form {
    display: flex;
    flex-direction: column;
    max-width: 400px;
    /* margin: 0 auto; */
    padding: 0 5px;
    width: 300px;
    float: left;
  }
  
  .custom-form  label {
    margin-bottom: 0.5rem;
  }
  
  .custom-form  input,
  .custom-form  textarea {
    padding: 0.5rem;
    height: 40px;
    border: 1px solid #d3d3d3;
    width: 100%;
  }
  
  .custom-form  input[type="submit"] {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 0.2rem 1.5rem;
    cursor: pointer;
    display: block;
    width: fit-content;
    height: 33px;
    border-radius: 100px;
  }
  
  .custom-form input[type="submit"]:hover {
    background-color: #0056b3;
  }

  .chatbot-class .error-message {
    color: red;
    margin-top: 5px;
}

img.chatbot-services-image {
    width: 270px;
}