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

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

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

    100% {
        transform: rotate(720deg);
    }
}

@keyframes zoom-in-zoom-out {
    0% {
        scale: 100%;
    }

    50% {
        scale: 150%;
    }

    100% {
        scale: 100%;
    }
}

#chatBox * {
    margin-block-start: 0;
    box-sizing: border-box;
}

#chat-icon {
    margin-block-start: 0;
    box-sizing: border-box;
    position: fixed;
    z-index: 9990;
    bottom: 100px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
    text-align: center;
}

#chat-icon.hide {
    opacity: 0;
    filter: alpha(opacity=0);
}

#chat-icon img {
    width: 150px;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

#chatBoxLoading {
    animation: rotate 5s infinite linear;
    width: 100%;
    position: absolute;
    height: 100%;
    top: 0;
    left: 0;
    background-image: url('./loading.png');
    z-index: 9995;
    background-size: 70%;
    background-position: center;
    background-repeat: no-repeat;
}

#chatBox {
    border-radius: 10px;
    margin-block-start: 0;
    box-sizing: border-box;
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 640px;
    min-height: 225px;
    border: none;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.5);
    transition: opacity 0.3s ease;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    background: rgb(0 0 0 / 20%);
}

#chatBox.show {
    z-index: 9991;
    opacity: 1;
    visibility: visible;
}

#chatBox.fullwidth {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 0 30000px rgba(0, 0, 0, 0.5);
    bottom: auto;
    height: auto;
    width: 90% !important;
    max-width: 1000px;
    right: auto;
}

#chatBox.fullwidth.showTranscript {
    max-width: 1300px;
}

#chatBox.fullwidth .transcriptContainer {
    border-radius: 0 10px 10px 0;
    width: 35%;
}

#chatBox.fullwidth .chatBox-action {
    background-image: url('./fullscreen.png');
}

#chat-widget {
    display: flex;
    flex-direction: column;
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 225px;
    border: 0;
    box-shadow: unset;
    background: #ffffff;
    border-radius: 10px;
    justify-content: center;
}

.chatBox-fullscreen,
#chatBox-action {
    z-index: 90;
    color: #ffffff;
    font-size: 14px;
}

#chatBox-close {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 90;
    color: #ffffff;
    font-size: 14px;
}

#chatBox-close,
.chatBox-fullscreen,
.language-switcher,
.view-transcript-button,
.avatarAndTranscriptWrapper .textInput-wrapper,
.avatarAndTranscriptWrapper .listeningIcon,
.avatarContainer .avatar_name {
    width: 30px;
    height: 30px;
    background: rgba(0, 0, 0, 0.6) !important;
    border-radius: 5px !important;
    padding: 0 !important;
    text-align: center;
    line-height: 30px;
    cursor: pointer;
    z-index: 1000;

}

.chatBox-fullscreen,
.view-transcript-button {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 10px !important;
}

.avatarContainer .avatar_name {
    position: absolute;
    left: 0;
    bottom: 0;
    border-radius: 0 !important;
    font-weight: 700;
    width: auto;
    padding: 5px 15px !important;
    color: #fff;
    height: auto;
    font-size: 15px;
    line-height: 1.4em;
    opacity: 0;
    visibility: hidden;
}

.avatarSessionStarted .avatarContainer .avatar_name {
    opacity: 1;
    visibility: visible;
}

#chatBox-close:hover,
.chatBox-fullscreen:hover,
.language-switcher:hover,
.view-transcript-button:hover {
    background: rgba(0, 0, 0, 0.75) !important;
}

.fullwidth .chatBox-fullscreen .bi-fullscreen {
    display: none;
}

.fullwidth .chatBox-fullscreen .bi-arrows-angle-contract {
    display: block !important;
}

#chatBox-heading {
    border-radius: 10px 10px 0 0;
    font-size: 18px;
    position: absolute;
    text-align: center;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    background: #000000 !important;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%) !important;
    padding: 10px 10px;
    color: #FFF;
    box-sizing: border-box;
}

#chatBox.showTranscript {
    width: 980px;
}

/** */
.avatarAndTranscriptWrapper {
    display: flex;
}

.avatarAndTranscriptWrapper .avatarContainer {
    float: left;
}

#chatBox .avatarAndTranscriptWrapper .transcriptContainer {
    display: none !important;
}

#chatBox.showTranscript .avatarAndTranscriptWrapper .transcriptContainer {
    display: block !important;
}

.avatarAndTranscriptWrapper .transcriptContainer {
    float: right;
    cursor: default;
}

.showTranscript .avatarAndTranscriptWrapper .avatarContainer {}

.showTranscript .avatarAndTranscriptWrapper .transcriptContainer {
    width: min(max(428px, 33%), 428px);
    display: block !important;
}


#chatBox .avatarContainer {
    border-radius: 10px;
    border: 0;
}

#chatBox.fullwidth .avatarContainer {
    width: 100%;
    max-width: 100%;
}

#chatBox.fullwidth.showTranscript .avatarContainer {
    width: 65%;
}

.avatarContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    overflow: hidden;
    position: relative;
    max-width: 992px;
    margin: 0 auto;
    border: 2px solid transparent;
}

#video_holder {
    width: 100%;
    height: 360px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 4px;
    min-width: 250px;
    font-size: 16px;
    isolation: isolate;
    overflow: hidden;
    -webkit-transition: opacity .2s ease, height .3s ease, width .3s ease;
    transition: opacity .2s ease, height .3s ease, width .3s ease;
}

.fullwidth #video_holder {
    height: 600px;
}

.fullwidth.showTranscript #video_holder {
    height: 500px;
}

.avatarContainer #avatarVideo {
    position: absolute;
    display: block;
    -o-object-fit: cover;
    object-fit: cover;
    height: 100%;
    width: 100%;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translate(-50%);
    -webkit-transition: height .3s ease;
    transition: height .3s ease;
}

.avatarAndTranscriptWrapper .actionContainer {
    position: absolute;
    bottom: 10px;
    left: 0px;
    display: none;
    flex-direction: row;
    gap: 10px;
    width: 100%;
    justify-content: start;
    align-items: center;
}

.fullwidth .avatarAndTranscriptWrapper .actionContainer {
    left: 0;
    justify-content: center;
}

.avatarSessionStarted .actionContainer {
    display: flex;
    justify-content: center;
}

.avatarAndTranscriptWrapper button {
    font-weight: 500;
    border-radius: 9999px;
    text-align: center;
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
}

.avatarAndTranscriptWrapper button:focus {
    outline: none;
}

.avatarAndTranscriptWrapper button:focus-visible {
    ring: 4px solid rgba(59, 130, 246, 0.3);
}

.avatarAndTranscriptWrapper #interruptTask {
    display: none;
    background-color: #1D4ED8;
    color: white;
}

.avatarAndTranscriptWrapper #interruptTask:hover {
    background-color: #1E40AF;
}

.avatarAndTranscriptWrapper #interruptTask:focus-visible {
    background-color: #1D4ED8;
}

.avatarAndTranscriptWrapper #endSession {
    background-color: #1D4ED8;
    color: white;
}

#chat-widget #endSession {
    color: white;
    border: 0 solid #ffffff6c;
    font-weight: 700;
    cursor: pointer;
    background: #000000;
}

.avatarAndTranscriptWrapper #endSession:hover {
    background-color: #1E40AF;
}

.avatarAndTranscriptWrapper #endSession:focus-visible {
    background-color: #1D4ED8;
}

.avatarAndTranscriptWrapper button.dark {
    background-color: #2563EB;
}

.avatarAndTranscriptWrapper button.dark:hover {
    background-color: #1D4ED8;
}

.avatarAndTranscriptWrapper button.dark:focus-visible {
    background-color: #1D4ED8;
}

.avatarContainer img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -1;
}

.avatarContainer .welcomeContainer {
    position: absolute;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    /* gap-8 */
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.avatarContainer .chatBtnContainer {
    max-width: 18.75rem;
    margin: 0 auto;
    padding: 1rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
    justify-content: center;
    align-items: center;
}

.avatarContainer #startSession {
    padding: 12px 50px;
    background-color: rgba(29, 78, 216, 0.8);
    color: white;
    border: 0 solid #ffffff6c;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
}

.avatarContainer #startSession:hover {
    background-color: rgba(29, 78, 216, 1);
}

.avatarContainer #startSession:focus-visible {
    background-color: #1D4ED8;
}

.avatarContainer #startSession.dark {
    background-color: #2563EB;
}

.avatarContainer #startSession.dark:hover {
    background-color: #1D4ED8;
}

.avatarContainer #startSession.dark:focus-visible {
    background-color: #1D4ED8;
}

.avatarContainer .loadingText {
    display: none;
    color: #ffffff;
    background-color: rgba(0, 0, 0, .7);
    padding: 10px 30px;
    border-radius: 50px;
    font-size: 16px;
}

.avatarContainer .loading-icon {
    display: none;
    color: teal;
    font-size: 8rem;
    animation: animate 2s infinite;
}

.avatarContainer.loading .loadingText,
.avatarContainer.loading .loading-icon {
    display: block;
}

.avatarContainer.loading .chatBtnContainer {
    display: none !important;
}

.avatarContainer.streamReady .actionContainer {
    display: flex !important;
}

.avatarContainer.streamReady .welcomeContainer {
    display: none !important;
}


.avatarContainer .switchMode {
    width: 40px;
    height: 40px;
    cursor: pointer;
    text-align: center;
    color: #fff;
    font-size: 28px;
    line-height: 40px;
    ;
}


.avatarAndTranscriptWrapper .textInput-wrapper,
.avatarAndTranscriptWrapper .listeningIcon {
    width: 100px;
    height: 40px;
    background-position: center;
    background-size: auto 60px;
    background-repeat: no-repeat;
    border-radius: 100px !important;
    position: relative;
}

.avatarAndTranscriptWrapper .textInput-wrapper {
    position: relative;
    display: none;
    background-color: rgba(255, 255, 255, .9);
}

.avatarAndTranscriptWrapper .textInput-wrapper .textInput {
    width: 100%;
    height: 100%;
    border-radius: 100px;
    background: transparent;
    padding: 5px 45px 5px 15px;
    border: 0;
    color: #111111;
}

.avatarAndTranscriptWrapper .textInput-wrapper .textInput::placeholder {
    color: rgba(0, 0, 0, 0.5) !important;
}

.text_mode .avatarAndTranscriptWrapper .textInput-wrapper {
    display: flex;
    width: 100%;
    border: 1px solid;
    justify-content: center;
}

.avatarAndTranscriptWrapper .textInput-wrapper .speakButton {
    width: 40px;
    height: 40px;
    background-position: center;
    background-size: auto 40px;
    background-repeat: no-repeat;
    background-color: rgba(0, 0, 0, 1);
    border-radius: 50px;
    cursor: pointer;
    position: absolute;
    right: 0;
    display: inline;
    text-align: center;
    font-size: 30px;
    color: #ffffff;
    line-height: 40px;
}

.text_mode .avatarAndTranscriptWrapper .listeningIcon {
    display: none;
}

.talking .avatarAndTranscriptWrapper .listeningIcon {
    background-image: url(./streaming-listening-dark.gif) !important;
    background-color: rgba(255, 255, 255, .4) !important;
    background-position: center !important;
    background-size: cover !important;
}

#chatBox img.emoji {
    height: 24px !important;
    width: 24px !important;
    margin: 7px !important;
}

button.exportTranscript {
    margin: 10px 0;
    padding: 7px 10px;
}

.transcriptContainer {
    position: relative;
    padding: 0;
    display: none;
    width: 300px;
    margin: 0 auto;
    background: #ffffff;
}

.transcriptContainer p {
    font-size: 14px;
    position: relative;
    min-height: 28px;
}


#transcriptContainer .transcript-inner {
    height: 100%;
    display: flex;
    align-items: stretch;
    justify-content: start;
    flex-direction: column;
    gap: 0;
    column-gap: 0;
    position: relative;
    padding: 0;
}

#transcriptContainer .actionContainer {
    padding: 15px;
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
}

#transcriptContainer .actionContainer .textInput-wrapper {
    background: transparent !important;
    border: 0 !important;
    outline: none !important;
}

#transcriptContainer .actionContainer .textInput-wrapper input {
    background: #ffffff;
    border: 0 !important;
    border-radius: 0;
    padding-left: 0 !important;
    outline: none !important;
    font-size: 16px;
}

#transcriptContainer .transcript-heading {
    display: flex;
    justify-content: start;
    align-items: center;
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    padding: 15px;
    margin: 0;
    height: 60px;
    border-bottom: 1px solid #dddddd;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
}

#transcriptContainer .transcript-heading h4 {
    width: 100%;
    margin: 0;
    font-weight: 700;
}

#transcriptContainer .transcript-heading button {
    padding: 6px;
    font-size: 13px;
    color: #111111;
    border: 1px solid #ddd;
    margin: 0 0 0 15px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 5px;
    cursor: pointer;
    display: flex !important;
    gap: 5px;
}

#transcriptContainer .transcript-heading button:hover {
    color: #ffffff;
    background: #111111;
    border-color: #111111;
}

#transcriptContainer #voiceTranscript {
    height: 100% !important;
    margin: 60px 0 70px;
    overflow-y: auto;
    padding: 15px;
    width: 100%;
    border-bottom: 1px solid #dddddd !important;
}

#chat-widget #transcriptContainer #voiceTranscript,
#chat-widget.text_mode #transcriptContainer #voiceTranscript {
    height: 230px;
    max-height: 230px;
}

.fullwidth #chat-widget #transcriptContainer #voiceTranscript,
.fullwidth #chat-widget.text_mode #transcriptContainer #voiceTranscript {
    height: 370px;
    max-height: 370px;
}

#chat-widget.voice_mode #transcriptContainer #voiceTranscript {
    height: 300px;
    max-height: 300px;
    margin-bottom: 0;
}

.fullwidth #chat-widget.voice_mode #transcriptContainer #voiceTranscript {
    height: 440px;
    max-height: 440px;
}


p.avatar.transcript {
    padding: 10px !important;
    margin: 0 0 10px !important;
    border-radius: 0 10px 10px !important;
    color: #111111 !important;
    background: #ffffff !important;
    max-width: 80%;
    border: 1px solid #dddddd;
}

p.user.transcript {
    padding: 10px !important;
    border-radius: 10px !important;
    background: #f3f3f3 !important;
    border: 0;
    width: auto;
    display: flex;
    margin-left: auto !important;
    margin-right: 0 !important;
    align-self: end;
    max-width: 80%;
    justify-self: end;
    margin-bottom: 10px !important;
}

.text_mode .mute-button {
    display: none !important;
}

.voice_mode .mute-button {
    display: inline !important;
}


.mute-button {
    position: absolute;
    top: 110px;
    right: 16px;
    background-color: #ffffff;
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    padding: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: none;
}

.mute-button:hover {
    background: #ffffff !important;
}

.mute-button .icon {
    width: 36px;
    height: 36px;
    pointer-events: none;
    color: #000000 !important;

}

/* Main toggle button */
.view-transcript-button {
    border: none;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1000;
    color: #ffffff;
    font-size: 14px;
    display: none;
    vertical-align: top;
}

.showTranscript .view-transcript-button {
    background: #ffffff !important;
    color: #000000 !important;
}

.view-transcript-button.active {
    background-color: #e63946;
}

.view-transcript-button .icon-view {
    display: inline !important;
}

.view-transcript-button .icon-hide {
    display: none !important;
}

.showTranscript .view-transcript-button .icon-view {
    display: none !important;
}

.showTranscript .view-transcript-button .icon-hide {
    display: inline !important;
}


.streamingCountdown-container {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 10px;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: none;
    z-index: 1000;
    color: #fff;
    text-align: center;
    font-size: 12px;
    padding: 5px 10px;
    font-weight: bold;
    display: none;
}

.streamingCountdown-container.session_ended,
.streamingCountdown-container.session_expired {
    color: #ffffff !important;
    background: #ff00004d !important;
}



.language-switcher {
    position: absolute;
    top: 10px;
    right: 50px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1000;
    font-size: 14px;
    color: #ffffff;
}

.language-switcher .lang-icon {
    cursor: pointer;
    user-select: none;
    margin: 0px !important;
    display: flex;
    font-size: inherit;
    align-items: center;
    justify-content: center;
}

#chatBox .language-switcher .lang-icon img.emoji {
    margin: 0 !important;
}

#chatBox #selectedLanguage img {
    vertical-align: middle !important;
    position: relative;
}

.language-switcher .dropdown {
    display: none;
    position: absolute;
    top: 0px;
    right: 50px;
    background-color: rgba(0, 0, 0, 0.85);
    border: 1px solid #ffffff2f;
    border-radius: 4px;
    min-width: 100px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

.language-switcher .dropdown a {
    padding: 0px;
    text-decoration: none;
    color: #ffffff;
    font-size: 14px;
    display: flex;
    justify-content: start;
    align-items: center;
}

.language-switcher .dropdown img.emoji {
    height: 20px !important;
    width: 20px !important;
    margin: 0px 5px 0px 0px !important;
    z-index: 2;
    position: relative;
}

.language-switcher .dropdown a:hover {
    background-color: #000000;
}


/* Overlay Background */
.overlayQuestion-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.overlayQuestion-container.show {
    display: flex;
}

.overlayQuestion-content {
    background-color: rgba(255, 255, 255, .9);
    width: 90%;
    max-width: 500px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.3s ease-out;
}

.overlayQuestion-header {
    background-color: rgba(255, 255, 255, .4);
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ddd;
}

.overlayQuestion-title {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.closeOverlayQuestion {
    background: transparent;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #555;
    transition: color 0.2s ease;
}

.closeOverlayQuestion:hover {
    color: #e00;
}

.overlayQuestion-body {
    padding: 20px;
    font-size: 14px;
    color: #333;
}

.overlayQuestion-body .radio-option {
    display: flex;
    gap: 10px;
}

.overlayQuestion-body .radio-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.overlayQuestion-action {
    padding: 10px;
    text-align: right;
}

.overlayQuestion-action .submit-button {
    background-color: #4CAF50;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.overlayQuestion-action .submit-button:hover {
    background-color: #45a049;
}

.avatarSessionStarted .language-switcher {
    display: none;
}

.avatarSessionStarted .view-transcript-button,
.avatarSessionStarted .mute-button {
    display: inline;
}

.avatarSessionStarted .mute-button {
    top: 60px;
    font-size: 22px;
}


div#streamingStatus {
    position: relative;
    font-size: 13px;
    height: 100px;
    overflow-y: scroll;
}

@keyframes fadeInUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}



@media (max-width:400px) {
    #chat-icon {
        bottom: 100px;
    }

    #chatBox {
        bottom: 105px;
        width: 370px;
        right: 10px;
    }

    #chat-widget {}

    #chatBox.fullwidth #chat-widget {
        position: relative;
        bottom: auto;
    }
}

@media only screen and (max-width:935px) {
    #chat-icon {
        bottom: 100px;
    }

    #chat-widget {
        min-height: 215px;
    }

    #chatBox.fullwidth #chat-widget {
        position: relative;
        bottom: auto;
    }

    #chatBox,
    #chatBox .avatarContainer,
    #chat-widget,
    #chatBox-heading {
        border-radius: 0;
    }

    .avatarAndTranscriptWrapper .actionContainer {
        bottom: 60px;
    }

    #chatBox-heading {
        padding-top: 50px;
    }

    .language-switcher,
    #chatBox-close,
    .streamingCountdown-container {
        top: 50px;
    }

    .avatarSessionStarted .mute-button {
        top: 110px;
    }


    #chatBox.show,
    #chatBox.fullwidth {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        box-shadow: 0 0 0 30000px rgba(0, 0, 0, 0.5);
        bottom: auto;
        height: auto;
        width: 100% !important;
        max-width: 1000px;
        right: auto;
    }

    .show #video_holder,
    .fullwidth #video_holder {
        height: 100vh;
    }

    #chatBox.show .avatarAndTranscriptWrapper {
        flex-direction: column;
    }

    #chatBox.show.showTranscript .avatarAndTranscriptWrapper .avatarContainer,
    .show.showTranscript #video_holder,
    .fullwidth.showTranscript #video_holder {
        height: 60vh;
    }

    #chatBox.show.showTranscript .avatarAndTranscriptWrapper .transcriptContainer {
        height: 40vh;
        width: 100%;
    }

    #transcriptContainer .actionContainer,
    #transcriptContainer .transcript-heading,
    #transcriptContainer #voiceTranscript {
        width: 100%;
    }

    #transcriptContainer .actionContainer {
        padding-bottom: 50px;
    }

    #transcriptContainer #voiceTranscript {
        margin-bottom: 100px;
    }

    #chat-widget.voice_mode #transcriptContainer #voiceTranscript {
        padding-bottom: 70px;
    }

    #chatBox .chatBox-fullscreen {
        display: none !important;
        visibility: hidden;
        opacity: 0;
    }

}


@media screen and (max-device-width:935px) and (orientation: landscape) {
    #chatBox.show .avatarAndTranscriptWrapper {
        flex-direction: row;
    }

    #chatBox.show.showTranscript .avatarAndTranscriptWrapper .avatarContainer,
    .show.showTranscript #video_holder,
    .fullwidth.showTranscript #video_holder,
    #chatBox.show.showTranscript .avatarAndTranscriptWrapper .transcriptContainer {
        height: 100vh;
    }

    #transcriptContainer .actionContainer,
    #transcriptContainer .transcript-heading,
    #transcriptContainer #voiceTranscript {
        width: 100%;
    }

    #transcriptContainer .transcript-heading {
        padding-top: 50px;
        height: 90px;
    }

    #transcriptContainer .actionContainer {
        padding: 15px 15px 60px;
    }

    #transcriptContainer #voiceTranscript {
        margin: 90px 0 115px;
    }

    #chat-widget.voice_mode #transcriptContainer #voiceTranscript {
        padding-bottom: 50px;
    }

    #chatBox.show.showTranscript .avatarAndTranscriptWrapper .avatarContainer {
        width: 65%;
    }

    #chatBox.show.showTranscript .avatarAndTranscriptWrapper .transcriptContainer {
        width: 35%;
    }

    #chat-widget #transcriptContainer #voiceTranscript,
    #chat-widget.text_mode #transcriptContainer #voiceTranscript,
    #chat-widget.voice_mode #transcriptContainer #voiceTranscript {
        max-height: unset;
    }
}