@media (prefers-reduced-motion: no-preference) {
    :root {
        scroll-behavior: smooth;
    }
}

:root {
    --light-bg-img: url("../images/a8.jpg");
    --dark-bg-img: url("../images/a6.jpg");
    --light-bg-body-color: $bs-gray-100;
    --dark-bg-body-color: linear-gradient(90deg, #212529, #495057, #212529);
    --orange-color: #fd7e14;
    --green-color: #198754;
    --black-color: #000;
    --red-color: red;
    --buttonBackgroundColor: rgba(42, 102, 199, 0.89);
}
body {
    /* padding-top: 0.5rem; */
    background: var(--light-bg-body-color);
}
[data-bs-theme="dark"] body {
    background: var(--dark-bg-body-color);
    --black-color: #fff;
}

.theme_mode .btn-bd-primary {
    --bd-violet-bg: #712cf9;
    --bd-violet-rgb: 112.520718, 44.062154, 249.437846;
    --bs-btn-font-weight: 600;
    --bs-btn-color: var(--bs-white);
    --bs-btn-bg: var(--bd-violet-bg);
    --bs-btn-border-color: var(--bd-violet-bg);
    --bs-btn-hover-color: var(--bs-white);
    --bs-btn-hover-bg: #6528e0;
    --bs-btn-hover-border-color: #6528e0;
    --bs-btn-focus-shadow-rgb: var(--bd-violet-rgb);
    --bs-btn-active-color: var(--bs-btn-hover-color);
    --bs-btn-active-bg: #5a23c8;
    --bs-btn-active-border-color: #5a23c8;
}
.theme_mode .bd-mode-toggle {
    z-index: 1500;
}
.theme_mode .bd-mode-toggle .dropdown-menu .active .bi {
    display: block !important;
}
.theme_mode .bi {
    vertical-align: -0.125em;
    fill: currentColor;
}
.chatbot_main_section {
    display: flex;
    align-items: center;
    height: 85vh;
    text-align: center;
}
.chatbot_main_section .btn {
    font-weight: 600;
}
.chatbot_main_section .chatbot_video {
    width: 80%;
    height: auto;
    -o-object-fit: contain;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
}
.chat_btn_container {
    display: flex;
    gap: 1rem;
}
.chatbot_entry_section {
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.chatbot_entry_section .inner_container {
    background: --bs-gray;
    padding: 10px;
    border-radius: 0.4rem;
    border: 1px solid #e0e0e0;
}
.chatbot_entry_section .inner_container .form-control {
    background: none;
    box-shadow: none;
    width: 100%;
    border: 1px solid rgba(233, 236, 239, 0.7490196078);
}
.chatbot_entry_section .inner_container .chat_input_controlls {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.chatbot_entry_section .inner_container .chat_input_controlls button {
    font-size: 0.8rem;
}
.chatbot_entry_section .inner_container .send_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    height: 2rem;
    width: 2rem;
}
.chatbot_entry_section .inner_container .send_btn .bi {
    font-size: 1rem;
}
.bot_image_container {
    margin-bottom: 0.7rem;
}
.bot_image_container .bot_image {
    height: 7rem;
    width: 7rem;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 50%;
    padding: 4px;
    background: linear-gradient(135deg, #07ace2, #e22478);
    box-shadow: 0 0px 10px rgba(0, 0, 0, 0.2);
    border: 4px solid rgba(0, 0, 0, 0);
    background-clip: padding-box, border-box;
    background-origin: border-box;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.bot_image_container .bot_image:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.play_btn_container .bi {
    font-size: 2.2rem;
    color: #fff;
}
.play_btn_container .btn {
    height: 5rem;
    width: 5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    background-color: rgba(0, 0, 0, 0.6);
    transition: transform 0.2s ease-in-out;
}
.play_btn_container .btn:hover {
    transform: scale(1.3);
}
.cortexAiInput {
    overflow-y: hidden;
    resize: none;
    min-height: 32px;
    max-height: 150px;
    box-sizing: border-box;
}
.cortexAiChatbox {
    background: --bs-tertiary-color;
    border-radius: 0.4rem;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease-in-out;
}
.chat-header {
    background: #6c757d;
    color: #fff;
    padding: 10px;
    font-size: 16px;
    border-top-left-radius: 0.4rem;
    border-top-right-radius: 0.4rem;
}
.card_border_bottom {
    border-bottom: 1px solid #e9ecef;
}
.chat_body_container {
    background: #f8f9fa;
    border-bottom-left-radius: 0.4rem;
    border-bottom-right-radius: 0.4rem;
}
.chat-body {
    padding: 10px;
    height: 250px;
    overflow-y: auto;
}
.chat-footer {
    padding: 10px;
    border-top: 1px solid #ddd;
    display: flex;
}
.chat-message {
    background: #fff;
    color: #212529;
    padding: 8px 12px;
    font-size: 0.9rem;
    border-radius: 0px 15px 15px 15px;
    max-width: 80%;
    margin-bottom: 10px;
}
.incoming {
    background: #fff;
    align-self: flex-start;
}
.outgoing {
    background: #007bff;
    color: #fff;
    align-self: flex-end;
}
.quick-replies {
    display: flex;
    justify-content: end;
}
.quick-replies span {
    text-align: left;
    margin-top: 5px;
    background: #dee2e6;
    color: #212529;
    font-size: 0.9rem;
    padding: 8px 12px;
    border-radius: 15px 0px 15px 15px;
}
.speedtech_chat_logo {
    width: 4rem;
}
.chat_logo_container {
    display: flex;
    gap: 2rem;
}
.flip_chat_icon {
    transform: scaleX(-1);
    display: inline-block;
}
.chat_img_container {
    border-radius: 50%;
    padding: 2px;
    background: #fff;
    border: 1px solid #e0e0e0;
}
.chat-profile-img {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    -o-object-fit: cover;
    object-fit: cover;
}
.cortexAiHelpMsgBlack {
    color: var(--black-color);
}
.cortexAiHelpMsggreen {
    color: var(--green-color);
    display: block !important;
}
.cortexAiHelpMsgOrange {
    color: var(--orange-color);
    display: block !important;
}
.cortexAiHelpMsgred {
    color: var(--red-color);
    display: block !important;
}
#cortexAiHelpMsg {
    transition: all 0.3s ease;
}
.cortexAi_msg_container_inner p,
.cortexAi_msg_container_outer p {
    font-size: 0.9rem;
    font-weight: 400;
}
@media screen and (max-width: 767px) {
    .bot_image_container {
        display: flex;
        justify-content: center;
    }
    .telephiny_container .h2,
    .telephiny_container .h5 {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .try_it_container {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 2rem;
    }
    .video-container {
        border-radius: 4rem;
        width: 100% !important;
    }
}
@media (max-width: 991px) {
    .cortexAiInput {
        width: 100% !important;
    }
    .login_buttons_container .d-flex {
        margin-top: 15px;
    }
    .login_buttons_container .d-flex .btn {
        width: 100%;
        padding: 10px;
        font-size: 16px;
        font-weight: 600;
        border-radius: 5px;
        transition: all 0.3s ease-in-out;
    }
    .btn-outline-primary:hover {
        background: #007bff;
        color: #fff;
    }
}
.allow {
    background: #28a745;
    color: #fff;
}
.allow:hover {
    background: #218838;
}
.deny {
    background: #007bff;
    color: #fff;
}
.deny:hover {
    background: #0056b3;
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
}
#cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 400px;
    background-color: #fff5f5;
    color: #000;
    text-align: center;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}
#cookie-banner p {
    font-size: 14px;
    margin-bottom: 10px;
}
#cookie-banner button {
    background-color: #712cf9;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
#cookie-banner button:hover {
    background-color: #45a049;
}
.animated_container {
    position: fixed;
    z-index: 9999999;
    width: 64px;
    height: 64px;
    color: #6558f6;
    cursor: pointer;
    border-radius: 32px;
    background-color: var(--mainColor);
}
.animated_container::before {
    content: "";
    position: absolute;
    inset: 0;
    width: 100%;
    background-color: #6558f6;
    border-radius: 32px;
    animation: ease-out 1.6s infinite blinking;
    z-index: -1;
}
@keyframes blinking {
    0% {
        opacity: 0;
        transform: scale(100%);
    }
    50% {
        opacity: 0.4;
        transform: scale(160%);
    }
    81.25%,
    100% {
        opacity: 0;
        transform: scale(240%);
    }
}

/*# sourceMappingURL=styles.css.map */
/* new add jayesh */
.inner_container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Textarea full width */
textarea.cortexAiInput {
    width: 100%;
    min-height: 100px;
    resize: vertical;
    font-size: 1rem;
}

/* Controls container: flex row on desktop, column on mobile */
.chat_input_controlls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

/* Left and right groups for buttons */
.chat_left_controls,
.chat_right_controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Start button styling */
#startSessionBtn {
    height: 40px;
    padding: 0 12px;
    font-size: 0.9rem;
    border-radius: 0.5rem;
}

#startSessionBtn i {
    font-size: 1.2rem;
}

#startSessionBtn .start-session-text {
    display: inline;
}

@media (max-width: 576px) {
    .chat_input_controlls {
        flex-direction: column !important;
        align-items: stretch;
        justify-content: center;
        gap: 10px;
        flex-wrap: nowrap; /* Optional: you can remove this or set to wrap if needed */
        width: 100%;
    }

    .chat_left_controls,
    .chat_right_controls {
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
    }

    .chat_right_controls button {
        flex: 1 1 auto;
    }

    #startSessionBtn {
        width: 100%;
        border-radius: 0.5rem !important;
    }

    /* Optionally reset button circular shape */
    .chat_left_controls button,
    .chat_right_controls button {
        width: auto;
        height: 40px;
        border-radius: 0.5rem !important;
    }
}

/* new jayesh css  */

/* Chatbot */
.botIcon {
    position: fixed;
    z-index: 9999999;
}

.botIcon h2 {
    font-size: 22px;
}

.botIcon h2 {
    font-size: 20px;
}

.iconInner1 {
    -webkit-align-items: center;
    -ms-align-items: center;
    align-items: center;
    background: #a64bf4;
    background: -webkit-linear-gradient(
        to left,
        #00dbde,
        #fc00ff,
        #00dbde,
        #fc00ff
    );
    background: -o-linear-gradient(to left, #00dbde, #fc00ff, #00dbde, #fc00ff);
    background: -moz-linear-gradient(
        to left,
        #00dbde,
        #fc00ff,
        #00dbde,
        #fc00ff
    );
    background: linear-gradient(to left, #00dbde, #fc00ff, #00dbde, #fc00ff);
    background-position: 50%;
    background-size: 300%;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    font-size: 1.7em;
    height: 2em;
    justify-content: center;
    width: 2em;
    cursor: pointer;
}

.botSubject,
.messages,
.showBotSubject .botIconContainer,
.showMessenger .botIconContainer {
    display: none;
}

.botIcon .Messages,
.botIcon .Messages_list {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.chat_close_icon {
    color: var(--custom-black);
    cursor: pointer;
    font-size: 1.6rem;
    z-index: 9;
    margin-top: -5px !important;
}

.refresh_icon {
    color: #6c757d;
    cursor: pointer;
    font-size: 16px;
    position: absolute;
    right: 35px;
    z-index: 9;
}

.Raiyatextchat {
    font-size: 31px;
    font-weight: bold;
    color: #166cb0;
}

.chat_on {
    background-color: #8a57cf;
    bottom: 20px;
    border-radius: 50%;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.16),
        0 2px 10px 0 rgba(0, 0, 0, 0.12) !important;
    color: #fff;
    cursor: pointer;
    display: block;
    height: 45px;
    padding: 9px;
    position: fixed;
    right: 15px;
    text-align: center;
    width: 45px;
    z-index: 10;
}

.chat_on_icon {
    color: #fff;
    font-size: 25px;
    text-align: center;
}

.botIcon .Layout {
    -webkit-animation: appear 0.15s cubic-bezier(0.25, 0.25, 0.5, 1.1);
    -ms-animation: appear 0.15s cubic-bezier(0.25, 0.25, 0.5, 1.1);
    animation: appear 0.15s cubic-bezier(0.25, 0.25, 0.5, 1.1);
    -webkit-animation-fill-mode: forwards;
    -ms-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    /* background: rgba(255, 255, 255, 0.97); */
    background: var(--bs-gray-100) !important;
    bottom: 20px;
    border-radius: 10px;
    box-shadow: 5px 0 20px 5px rgba(0, 0, 0, 0.1);
    box-sizing: content-box !important;
    color: rgb(255, 255, 255);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    max-height: 30px;
    max-width: 300px;
    min-width: 50px;
    opacity: 0;
    pointer-events: auto;
    position: fixed;
    -webkit-transition: right 0.1s cubic-bezier(0.25, 0.25, 0.5, 1),
        bottom 0.1s cubic-bezier(0.25, 0.25, 0.5, 1),
        min-width 0.2s cubic-bezier(0.25, 0.25, 0.5, 1),
        max-width 0.2s cubic-bezier(0.25, 0.25, 0.5, 1),
        min-height 0.2s cubic-bezier(0.25, 0.25, 0.5, 1),
        max-height 0.2s cubic-bezier(0.25, 0.25, 0.5, 1),
        border-radius 50ms cubic-bezier(0.25, 0.25, 0.5, 1) 0.15s,
        background-color 50ms cubic-bezier(0.25, 0.25, 0.5, 1) 0.15s,
        color 50ms cubic-bezier(0.25, 0.25, 0.5, 1) 0.15s;
    -ms-transition: right 0.1s cubic-bezier(0.25, 0.25, 0.5, 1),
        bottom 0.1s cubic-bezier(0.25, 0.25, 0.5, 1),
        min-width 0.2s cubic-bezier(0.25, 0.25, 0.5, 1),
        max-width 0.2s cubic-bezier(0.25, 0.25, 0.5, 1),
        min-height 0.2s cubic-bezier(0.25, 0.25, 0.5, 1),
        max-height 0.2s cubic-bezier(0.25, 0.25, 0.5, 1),
        border-radius 50ms cubic-bezier(0.25, 0.25, 0.5, 1) 0.15s,
        background-color 50ms cubic-bezier(0.25, 0.25, 0.5, 1) 0.15s,
        color 50ms cubic-bezier(0.25, 0.25, 0.5, 1) 0.15s;
    transition: right 0.1s cubic-bezier(0.25, 0.25, 0.5, 1),
        bottom 0.1s cubic-bezier(0.25, 0.25, 0.5, 1),
        min-width 0.2s cubic-bezier(0.25, 0.25, 0.5, 1),
        max-width 0.2s cubic-bezier(0.25, 0.25, 0.5, 1),
        min-height 0.2s cubic-bezier(0.25, 0.25, 0.5, 1),
        max-height 0.2s cubic-bezier(0.25, 0.25, 0.5, 1),
        border-radius 50ms cubic-bezier(0.25, 0.25, 0.5, 1) 0.15s,
        background-color 50ms cubic-bezier(0.25, 0.25, 0.5, 1) 0.15s,
        color 50ms cubic-bezier(0.25, 0.25, 0.5, 1) 0.15s;
    z-index: 999999999;
}

.botIcon .Layout-open {
    border-radius: 10px;
    color: #fff;
    height: 70%;
    max-width: 60%;
    min-width: 60% !important;
    overflow: hidden;
    -webkit-transition: right 0.1s cubic-bezier(0.25, 0.25, 0.5, 1),
        bottom 0.1s cubic-bezier(0.25, 0.25, 0.5, 1.1),
        min-width 0.2s cubic-bezier(0.25, 0.25, 0.5, 1.1),
        max-width 0.2s cubic-bezier(0.25, 0.25, 0.5, 1.1),
        max-height 0.2s cubic-bezier(0.25, 0.25, 0.5, 1.1),
        min-height 0.2s cubic-bezier(0.25, 0.25, 0.5, 1.1),
        border-radius 0ms cubic-bezier(0.25, 0.25, 0.5, 1.1),
        background-color 0ms cubic-bezier(0.25, 0.25, 0.5, 1.1),
        color 0ms cubic-bezier(0.25, 0.25, 0.5, 1.1);
    -ms-transition: right 0.1s cubic-bezier(0.25, 0.25, 0.5, 1),
        bottom 0.1s cubic-bezier(0.25, 0.25, 0.5, 1.1),
        min-width 0.2s cubic-bezier(0.25, 0.25, 0.5, 1.1),
        max-width 0.2s cubic-bezier(0.25, 0.25, 0.5, 1.1),
        max-height 0.2s cubic-bezier(0.25, 0.25, 0.5, 1.1),
        min-height 0.2s cubic-bezier(0.25, 0.25, 0.5, 1.1),
        border-radius 0ms cubic-bezier(0.25, 0.25, 0.5, 1.1),
        background-color 0ms cubic-bezier(0.25, 0.25, 0.5, 1.1),
        color 0ms cubic-bezier(0.25, 0.25, 0.5, 1.1);
    transition: right 0.1s cubic-bezier(0.25, 0.25, 0.5, 1),
        bottom 0.1s cubic-bezier(0.25, 0.25, 0.5, 1.1),
        min-width 0.2s cubic-bezier(0.25, 0.25, 0.5, 1.1),
        max-width 0.2s cubic-bezier(0.25, 0.25, 0.5, 1.1),
        max-height 0.2s cubic-bezier(0.25, 0.25, 0.5, 1.1),
        min-height 0.2s cubic-bezier(0.25, 0.25, 0.5, 1.1),
        border-radius 0ms cubic-bezier(0.25, 0.25, 0.5, 1.1),
        background-color 0ms cubic-bezier(0.25, 0.25, 0.5, 1.1),
        color 0ms cubic-bezier(0.25, 0.25, 0.5, 1.1);
    width: 60%;
    right: 10px;
}

.botIcon .Layout-expand {
    display: none;
    height: 70%;
    max-height: 100vh;
    min-height: 300px;
}

.showBotSubject.botIcon .Layout-expand {
    display: block;
}

.botIcon .Layout-mobile {
    bottom: 10px;
}

.botIcon .Layout-mobile.Layout-open {
    min-width: calc(100% - 20px);
    width: calc(100% - 20px);
}

.botIcon .Layout-mobile.Layout-expand {
    border-radius: 0 !important;
    bottom: 0;
    height: 100%;
    min-height: 100%;
    min-width: 100%;
    width: 100%;
}

.botIcon .Messenger_messenger {
    height: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative;
    width: 100%;
}

.botIcon .Messenger_header,
.botIcon .Messenger_messenger {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.Messenger_header {
    border-bottom: 3px solid #4e87d9;
}

.botIcon .Messenger_header {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    color: rgb(255, 255, 255);
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding: 0.5rem 0.5rem 0.5rem 2rem;
}

.botIcon .Messenger_header h4 {
    -webkit-animation: slidein 0.15s 0.3s;
    -ms-animation: slidein 0.15s 0.3s;
    animation: slidein 0.15s 0.3s;
    -webkit-animation-fill-mode: forwards;
    -ms-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    font-size: 16px;
    opacity: 0;
}

.botIcon .Messenger_prompt {
    font-size: 16px !important;
    font-weight: 400;
    line-height: 18px;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #fff;
}

.botIcon .Messenger_content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    height: 80px;
}

.botIcon .Messages {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-shrink: 1;
    -ms-flex-negative: 1;
    flex-shrink: 1;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 10px;
    position: relative;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-end;
}

.botIcon .Input {
    background-color: #fff;
    border-top: 1px solid #e6ebea;
    color: #96aab4;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-bottom: 15px;
    padding-top: 17px;
    position: relative;
    width: 100%;
}

.botIcon .Input-blank .Input_field {
    max-height: 20px;
}

.botIcon .Input_field {
    background-color: transparent;
    border: none;
    outline: none;
    padding-left: 20px;
    padding-right: 45px;
    resize: none;
    width: 100%;
    font-size: 14px;
    line-height: 20px;
    min-height: 20px !important;
}

.botIcon .Input_button-emoji {
    right: 45px;
}

.botIcon .Input_button {
    background-color: transparent;
    border: none;
    bottom: 15px;
    cursor: pointer;
    height: 25px;
    outline: none;
    padding: 0;
    position: absolute;
    width: 25px;
}

.botIcon .Input_button-send {
    right: 15px;
}

.botIcon .Input-emoji .Input_button-emoji .Icon,
.botIcon .Input_button:hover .Icon {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-transition: all 0.1s ease-in-out;
    -ms-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
}

.botIcon .Input-emoji .Input_button-emoji .Icon path,
.botIcon .Input_button:hover .Icon path {
    fill: #2c2c46;
}

.Icon svg {
    height: auto;
    width: 100%;
}

.msg {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.msg.user {
    -webkit-box-direction: row-reverse;
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.msg + .msg {
    margin-top: 15px;
}

span.responsText {
    color: #000;
    display: inline-block;
    margin-left: 10px;
    vertical-align: top;
    max-width: calc(100% - 50px);
}

span.responsText strong {
    width: 100%;
    display: block;
}

.msg.user span.responsText {
    margin-left: 0;
    margin-right: 10px;
}

span.avtr {
    display: inline-block;
    width: 30px;
}

span.avtr figure {
    background-color: #fff;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    display: block;
    margin: 0;
    padding-bottom: 100%;
}

.chabot_inner_btns {
    font-size: 0.9rem !important;
    border: none;
    border-radius: 8px;
    text-wrap-mode: nowrap;
    color: var(--custom-white);
    background: var(--buttonBackgroundColor);
}
.chabot_inner_btns:disabled {
    color: var(--custom-white) !important;
    background: rgb(59 129 242 / 89%) !important;
}
.chabot_resend_otp_btn {
    padding: 0.4rem 0.6rem;
    font-size: 0.9rem !important;
    border: none;
    border-radius: 8px;
    text-wrap-mode: nowrap;
}

/* DEMO-SPECIFIC STYLES */
.typewriter {
    width: fit-content;
    padding: 10px;
    display: none;
}

.typewriter h6 {
    color: #000;
    overflow: hidden;
    white-space: nowrap;
    margin-left: 0;
    animation: typing 1s steps(30, end) infinite;
}

@keyframes typing {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

/* The typewriter cursor effect */
@keyframes blink-caret {
    from,
    to {
        border-color: transparent;
    }

    50% {
        border-color: orange;
    }
}

@-webkit-keyframes appear {
    0% {
        opacity: 0;
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@-ms-keyframes appear {
    0% {
        opacity: 0;
        -ms-transform: scale(0);
        transform: scale(0);
    }

    100% {
        opacity: 1;
        -ms-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes appear {
    0% {
        opacity: 0;
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@-webkit-keyframes slidein {
    0% {
        opacity: 0;
        -webkit-transform: translateX(10px);
        transform: translateX(10px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@-ms-keyframes slidein {
    0% {
        opacity: 0;
        -ms-transform: translateX(10px);
        transform: translateX(10px);
    }

    100% {
        opacity: 1;
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes slidein {
    0% {
        opacity: 0;
        -webkit-transform: translateX(10px);
        transform: translateX(10px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}



@media only screen and (max-width: 450px) {
    .botIcon .Layout-open {
        width: 96%;
        max-width: 380px;
        height: 97% !important;
    }

    .botIcon {
        display: flex;
        justify-content: center;
        right: 10px !important;
    }
}



.chat_btn {
    margin-top: 0px !important;
    height: auto;
    font-family: sans-serif;
    white-space: normal;
    font-weight: 600;
    padding: 4px 13px;
    border: none;
    font-size: 1.3rem;
    border-radius: 20px;
    opacity: 1 !important;
    color: #fff !important;
    /* background: #9f0742 !important; */
        background: var(--buttonBackgroundColor) !important;
}

.bot_img {
    width: 145px;
}
.raiya-avatar {
  width: 150px;
  border-radius: 50%;
  border: 2px solid white;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  background-color: rgba(250, 250, 250, 0.7);
  padding: 5px;
}

.bot_iconcontainer {
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

#refresh-icon {
    cursor: pointer;
    transition: transform 0.3s ease;
}

#refresh-icon:hover {
    transform: rotate(360deg);
}

.styled-hr {
    background-color: #166cb0;
    height: 2px;
    border: none;
    margin: 10px 0;
}

.responsive-img {
    width: 124px;
    height: 123px;
}

@media (max-width: 768px) {
    .responsive-img {
        width: 125px;
        height: 120px;
    }
}

@media (max-width: 480px) {
    .responsive-img {
        width: 80px;
        height: 70px;
    }
}

#userModal .modal-content {
    background-color: white !important;
    color: black !important;
    top: -6px !important;
    max-width: 100% !important;
}
.modal_bottom_text {
    font-size: 10px;
    background: #6c757d38;
    padding: 4px 8px;
    border-radius: 5px;
    margin-top: 35px;
}

.modal_sub_heading {
    font-size: 13px;
    margin-top: 4px;
    display: flex;
    text-align: center;
}

.chatbotUserForm .form-control {
    font-size: 1rem !important;
}

.modal_submit_btn {
    padding: 0.4rem 1.75rem;
    font-size: 1rem !important;
    border-radius: 8px;
    text-wrap-mode: nowrap;
    color: var(--custom-white) !important;
    background: var(--buttonBackgroundColor) !important;
}
.chatbotResendOtpBtn {
    padding: 0.4rem 0.75rem;
    border-radius: 8px;
    text-wrap-mode: nowrap;
    font-size: 1rem !important;
}

#userModal {
    margin-top: 30px;
}

/* Gray Circle Animation */
/* .circle-container {
position: relative;
width: 146px;
height: 146px;
display: flex;
align-items: center;
justify-content: center;
}

.circle-animation {
width: 100%;
height: 100%;
border-radius: 50%;
position: relative;
overflow: hidden;
display: flex;
align-items: center;
justify-content: center;
}

.circle-image {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid #e3e6e8;
  padding: 10px;
  background: rgba(255, 255, 255, 0.9) !important;
}

.progress-bar {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border-radius: 50%;
background-color: transparent !important;
border: 5px solid #80808047;
border-top: 5px solid #80808047;
animation: progressAnimation 2s linear infinite;
}

@keyframes progressAnimation {
0% {
  transform: rotate(0deg);
}

100% {
  transform: rotate(360deg);
}
} */

/* Ensure the AI bot image stays on top */
.bot-image {
    width: 100px;
    height: 100px;
    position: relative;
    z-index: 2;
}

.image_container {
    margin-top: 1rem;
    position: relative;
}

#micModal {
    /* margin-top: 5% !important; */
    height: 70% !important;
    display: flex;
    align-items: center;
}

.connecting-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.connecting-span {
    background: #80808047;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 14px;
    display: inline-block;
    position: relative;
    color: #495057;
}

.circle {
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-left: 5px;
    background-color: #aaa;
    border-radius: 50%;
    opacity: 0;
    animation: circleBlink 2s infinite;
}

.circle1 {
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-left: 5px;
    background-color: #aaa;
    border-radius: 50%;
    opacity: 1;
}

.circle:nth-child(1) {
    animation-delay: 0s;
}

.circle:nth-child(2) {
    animation-delay: 0.3s;
}

.circle:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes circleBlink {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

#otp::-webkit-outer-spin-button,
#otp::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

#otp {
    -moz-appearance: textfield;
}

#recordint_mutetoggle {
    background-color: red;
    color: white;
    padding: 10px;
    font-size: 18px;
    border: none;
    cursor: pointer;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.on {
    background-color: green !important;
}

.validation_span {
    font-size: 11px;
    color: red;
    margin-left: 5px;
}

#stop-record,
#start-recording {
    border: none !important;
    outline: none !important;
}

.iconInner {
    animation: expandContract 1.4s infinite alternate ease-in-out;
}

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

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

.chatbot_header_container {
    color: black;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
}

.chat_input_controlls {
    flex-wrap: wrap;
    gap: 1rem;
    padding: 0.7rem 1rem;
    border-radius: 10px;
    border: 1px solid #e3e6e8;
}

.start-button-container {
    flex: 1;
    min-width: 120px;
}

.chat_btn_container {
    flex-shrink: 0;
}

.chat_mic_btns {
    height: 2.5rem;
    width: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media screen and (min-width: 1280px) and (max-width: 1366px) {
    .botIcon .Layout-expand{
        height: 80% !important;
    }
    .image_container {
        width: 7rem !important;
    }
  }

@media (max-width: 768px) {
    .botIcon .Layout {
        background: var(--bs-gray-100) !important;
        max-width: 100% !important;
        width: 100% !important;
        right: 0px !important;
    }
    .image_container {
        width: 10rem !important;
    }
}
  .time_session_msg {
    font-family: monospace;
    font-size: 14px;
    min-width: 180px; /* Increased to accommodate longer text */
    display: block;
    margin: 0 auto;
    white-space: nowrap; /* Prevent line breaks */
    overflow: hidden;
    text-overflow: ellipsis;
}
#startSessionBtn i { display: flex}


@media (max-width: 767px) {
        .botIcon {
        display: flex;
        justify-content: center;
        right: 10px !important;
    }
  .bot_img {
      width: 90px !important;
  }
      .chat_btn {
        font-size: 10px;
    }
}
