/* huluDS_ChatStyles */
/* -- variables -- */
/* assigned variables to fallback on set colors in the event that the global stylesheet is not present */
:root {
    --font-family-primary: 'Graphik-Medium', sans-serif;
    --font-family-secondary: 'Graphik-Regular', sans-serif;
    --hds-chat-color-primary-green: var(--hds-color-primary-green, #26D997);
    --hds-chat-color-primary-blue: var(--hds-color-primary-blue, #176EE1);
    --hds-chat-color-blue-2: var(--hds-color-blue-2, #A2C5F3);
    --hds-chat-color-black: var(--hds-color-black, #040405);
    --hds-chat-color-darkui-3: var(--hds-color-darkui-3, #31353D);
    --hds-chat-color-darkui-4: var(--hds-color-darkui-4, #424752);
    --hds-chat-color-lightui-2: var(--hds-color-lightui-2, #F0F1F5);
    --hds-chat-color-lightui-5: var(--hds-color-lightui-5, #636E85);
    --hds-chat-color-lightui-6: var(--hds-color-lightui-6, #272C35);
    --hds-chat-color-black-transparent-90: var(--hds-color-black-transparent-90, rgba(4, 4, 5, 0.9));
    --hds-chat-color-black-transparent-70: var(--hds-color-black-transparent-70, rgba(4, 4, 5, 0.7));
    --hds-chat-color-black-transparent-50: var(--hds-color-black-transparent-50, rgba(4, 4, 5, 0.5));
    --hds-chat-color-blue-5: var(--hds-color-blue-5, #104C9D);
}

/*-- animations --*/
@keyframes moveInAgent {
    0% {
        opacity: 0;
        transform: translateY(72px);
    }
    100% {
        opacity: 1.0;
        transform: translateY(0);
    }
}

@keyframes moveInChasitor {
    0% {
        opacity: 0;
        position: relative;
        bottom: -72px;
        right: 100%;
    }
    100% {
        opacity: 1.0;
        position: relative;
        bottom: 0;
        right: 0;
    }
}

@keyframes opacityIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes pingPongBar {
    0% {
        width: 25%;
        left:0;
    }
    12.5% {
        width: 50%;
        left: 0;
    }
    25% {
        width: 50%;
        left: 25%;
    }
    37.5% {
        width: 50%;
        left: 50%;
    }
    50% {
        width: 25%;
        left: 75%;
    }
    62.5% {
        width: 50%;
        left: 50%;
    }
    75% {
        width: 50%;
        left: 25%;
    }
    87.5% {
        width: 50%;
        left: 0;
    }
    100% {
        width: 25%;
        left: 0;
    }
}

@keyframes fillBar {
    0% {
        width: 0;
    }
    75% {
        width: 100%;
        height: 100%;
        opacity: 1.0;
        top: 0;
    }
    100% {
        opacity: 0;
        height: 0;
        top: 8px;
    }
}

@keyframes typingIndicatorMoveIn {
    0% {
        bottom: -58px;
    }
    100% {
        bottom: 0;
    }
}
@keyframes typingIndicatorAvatarMoveIn {
    0% {
        bottom: -44px;
    }
    100% {
        bottom: 0;
    }
}

@keyframes paddingMoveIn {
    from {
        max-height: 0;
        padding: 0;
    }
    to {
        max-height: 100px;
        padding: 21px 0.25ch;
    }
}

@keyframes fadeOut {
    0% {
        height: 100%;
        opacity: 1;
    }
    85% {
        opacity: 1;
    }
    99% {
        height: 100%;
        opacity: 0;
    }
    100% {
        height: 0;
    }
}

/* -- activate button -- */
div.forceCommunityEmbeddedServiceHelpButton {
    position: fixed;
    bottom: 48px;
    right: 48px;
}

.forceCommunityEmbeddedServiceHelpButton button.flatButton:hover,
.forceCommunityEmbeddedServiceHelpButton button.flatButton:focus {
    background-color: var(--hds-chat-color-lightui-6);
    outline: none;
    box-shadow: none;
}

.forceCommunityEmbeddedServiceHelpButton button.flatButton {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 56px;
    height: 56px;
    background-color: var(--hds-chat-color-lightui-6);
    box-shadow: 0 10px 20px -10px rgba(0, 0, 0, 0.25);
    border-radius: 28px;
}

@media screen and (max-width: 767px) {
    div.forceCommunityEmbeddedServiceHelpButton .flatButton {
        right: 24px;
        bottom: 24px;
    }
}
@media screen and (min-width: 768px) {
    div.forceCommunityEmbeddedServiceHelpButton .flatButton {
        right: 48px;
        bottom: 48px;
    }
}

div.forceCommunityEmbeddedServiceHelpButton .flatButton .helpButtonLabel::before {
    display: block;
    position: absolute;
    content: "";
    height: 13px;
    width: 13px;
    background-color: var(--hds-chat-color-lightui-6);
    bottom: -6px;
    border-radius: 2px;
    transform: rotate(45deg);
}

div.forceCommunityEmbeddedServiceHelpButton .flatButton .helpButtonLabel {
    position: absolute;
    display: flex;
    justify-content: center;
    height: initial;
    width: initial;
    min-width: max-content;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-size: 10px;
    line-height: 10px;
    color: #FFF;
    top: -42px;
    background-color: var(--hds-chat-color-lightui-6);
    padding: 8px 10px;
    border-radius: 2px;
    overflow: visible;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s ease-in-out;
}
@media (hover: hover) {
    div.forceCommunityEmbeddedServiceHelpButton:hover .flatButton .helpButtonLabel {
        visibility: visible;
        opacity: 1;
    }
}
span.help.x-small.embeddedServiceIcon::before {
    content: "";
    display: block;
    height: 32px;
    width: 32px;
    background-image: url("/resource/huluDS_chatResources/images/Chat.svg");
    background-size: cover;
}

span.help.x-small.embeddedServiceIcon {
    padding-right: 0;
}
/* hide the original icon */
div.forceCommunityEmbeddedServiceHelpButton .help svg {
    display: none;
}

/* Custom chat popup button */
.hulubotButtonWrapper lightning-button button {
    background-color: #292c33;
    border-radius: 30px;
    padding: 0 20px;
    color: #fff;
    font-family: var(--font-family-primary);
    text-transform: uppercase;
    font-size: 14px;
    line-height: 50px;
    letter-spacing: 2px;
    font-weight: 500;
    border: none;
}

/* replaces default styles for button active, hover, focus state */
.hulubotButtonWrapper lightning-button button:active,
.hulubotButtonWrapper lightning-button button:hover,
.hulubotButtonWrapper lightning-button button:focus {
    background-color: #292c33;
    color: #FFF;
}

/* fixes box border for focus state */
.cHuluHelpV2ThemeLayout .hulubotButtonWrapper lightning-button button:focus-visible,
.cHuluHelpV2ThemeLayout .hulubotButtonWrapper lightning-button button:focus {
    outline: none;
}
.cHuluHelpV2ThemeLayout .hulubotButtonWrapper lightning-button button:focus {
    box-shadow: none;
}
.hulubotButtonWrapper lightning-button button:focus-visible {
    border: 2px solid var(--hds-chat-color-primary-blue);
}

/* adds the custom chat icon */
.hulubotButtonWrapper lightning-button button lightning-primitive-icon::before {
    content:" ";
    display: block;
    background-repeat: no-repeat;
    background-position: center;
    height: 22px;
    width: 24px;
    margin-right: 1ch;
    background-image: url(/resource/HuluHelp_Assets/help_hulubot_chat_icon.png);
}
/* hides the slds icon */
.hulubotButtonWrapper lightning-button button lightning-primitive-icon svg {
    display: none;
}
/*-- frame --*/
/* aligns the chat window to the bottom of the screen */
div.embeddedServiceSidebar.sidebarMaximized {
    display: flex;
    align-items: flex-end;
    background-color: transparent;
    width: 100%;
}

/* removes the margin on the bottom */
div.embeddedServiceSidebar.layout-float .dockableContainer {
    margin: 12px auto 0;
}

div.embeddedServiceSidebar.layout-docked .dockableContainer {
    max-width: 375px;
    max-height: 640px;
    width: 100%;
    height: 100%;
    right: 0;
    box-shadow: 0 10px 20px -10px rgba(0, 0, 0, 0.25);
    left: 0;
}

div.cHulu_EmbeddedChatEventListener#iframeDiv {
    width: 100%;
    height: 100%;
}

@media screen and (min-width: 768px) {
    div.cHulu_EmbeddedChatEventListener#iframeDiv {
        max-width: 406px;
        max-height: 640px;
    }
    div.embeddedServiceSidebar.layout-docked .dockableContainer {
        margin: 0 20px 0 auto;
    }
}

@media screen and (max-width: 768px) {
    div.embeddedServiceSidebar.layout-docked .dockableContainer {
        max-height: 100%;
    }
    div.embeddedServiceSidebar.layout-docked .dockableContainer {
        margin: 0 auto;
    }
}

.mainContentArea .forceCommunityEmbeddedServiceHelpButton, .embeddedServiceSidebar button.minimizedContainer {
    z-index: 998;
}

/*-- waiting screen --*/
.waitingStateContainer {
    justify-content: center;
    align-items: center;
    height: 100%;
 /*   background: linear-gradient(313.03deg, #025864 -1.96%, #01212C 102.01%); */
    color: #FFF;
}

.embeddedServiceSidebar c-hulu-help_-snap-in_-auth_-header + .sidebarBody {
    position: absolute;
    height: calc(100% - 48px);
    bottom: 0;
    height: 93% !important;
    background: linear-gradient(141deg, #0D1C24 29.2%, #183949 68.37%);
    background-color: #183949;
}

.embeddedServiceSidebar c-hulu-help_-snap-in_-auth_-header + .sidebarBody .embeddedServiceLiveAgentQueuePosition .embeddedServiceIcon>svg {
    display: none;
}

.ui-widget .embeddedServiceLiveAgentStateWaiting .waitingGreetingContent {
    position: absolute;
    width: 100%;
}

.embeddedServiceSidebar c-hulu-help_-snap-in_-auth_-header + .sidebarBody .embeddedServiceLiveAgentStateWaiting .embeddedServiceLiveAgentQueuePosition {
    margin-bottom: 4px;
    width: 100%;
    margin-top: auto;
}

.embeddedServiceSidebar c-hulu-help_-snap-in_-auth_-header + .sidebarBody .embeddedServiceLiveAgentQueuePosition .queuePositionChatIcon {
    order: 2;
}

/* Removed as it was causing miss alignment on hulubot live agent transfer */
/*.embeddedServiceSidebar c-hulu-help_-snap-in_-auth_-header + .sidebarBody div.embeddedServiceLiveAgentQueuePosition .queuePositionMessage {
    padding-bottom: 56px;
} */

.waitingStateContainer.customWait::before {
    opacity: 0;
    transition: opacity 0.3s;
}

.waitingStateContainer:not(.customWait)::before {
    opacity: 1;
}

.waitingStateContainer::before {
    content: "";
    background-image:url("/resource/dtcvx_chat_assets_2025/Hulu/loading-hulu@2x.gif");
    background-color: #000;
    position: absolute;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100px, auto;
    z-index: 3;
    width: 100%;
    height: auto;
    display: block;
}

.waitingStateContainer .LAwrapper {
    align-items: center;
    justify-content: center;
    background-color: #183949;
}

.chatHeader {
    width: 100%;
}
.waitingBlock {
    margin-top: 8px;
}

.waitingBlock img {
    width: 100px;
}

.waitingBlock p {
    margin-top: 14px;
    font-size: 14px;
    font-family: var(--font-family-primary);
    font-weight: 500;
    letter-spacing: 1px;
}

#waitingMessage {
    position: absolute;
    bottom: 0;
    width: 100%;
}

.startMsg {
    font-family: var(--font-family-primary);
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 0.25px;
}
#timestamp {
    font-family: var(--font-family-primary);
    font-size: 40px;
    letter-spacing: -0.5px;
    line-height: 44px;
    margin-top: 24px;
}
.timeMeasure {
    font-family: var(--font-family-primary);
    font-weight: 400;
    font-size: 18px;
    letter-spacing: 0.32px;
}

.queueInfo {
    padding-bottom: 44px;
}

/* Broadcast */
#broadCastMessage {
    position: absolute;
    width: 100%;
    bottom: 0;
    padding: 30px 30px 20px;
    background: #000;
    color: white;
    font-family: 'Graphik',sans-serif;
    font-weight: 400;
    font-size: 16px;
    min-height: 160px;
}
#msg p {
    font-family: 'Graphik';
    font-weight: 300;
    font-size: 16px;
    margin: 0 0 50px 0;
    padding: 0;
    line-height: 26px;

}

#msg a {
    color: #40de91;
}
#msg input {
    display: inline-block;
    margin: 15px 30px;
    background: transparent;
    border: none;
    padding: 10px 0 !important;
    height: auto;
    font-family: 'Graphik', sans-serif;
    font-weight: 300;
    text-transform: uppercase;
    color: #40de91;
    font-size: 14px;
    letter-spacing: .2em;
    position: absolute;
    bottom: 0;
    z-index: 9;
}
#msg input.secondBtn {
    margin-left: 0;
}
#msg input.firstBtn {
    right: 0;
}

/* Unauth bot loading screen */
body .embeddedServiceLiveAgentStateWaiting .waitingStateContainer::before {
    animation-name: fadeOut;
    animation-duration: 2000ms;
}
body .embeddedServiceLiveAgentStateWaiting .waitingStateContainer::before {
    opacity: 0;
}
body .embeddedServiceLiveAgentStateWaiting .waitingStateContent {
    padding: 0;
    background: linear-gradient(141deg, #0D1C24 29.2%, #183949 68.37%);
}

body .waitingStateButtonContainer {
    display: none;
}

body span.loadingBallContainer.animated.embeddedServiceLoadingBalls {
    padding: 0;
}

body span.loadingBallContainer.animated.embeddedServiceLoadingBalls .loadingBall {
    display: none;
}

body .embeddedServiceLiveAgentStateWaiting .waitingGreetingContent {
    justify-content: center;
    align-items: center;
    flex-grow: 1;
    margin: 0;
}
body .embeddedServiceLiveAgentStateWaiting .embeddedServiceLoadingBalls{
    background: rgba(255, 255, 255, 0.3);
    height: 8px;
}
.body .embeddedServiceLiveAgentStateWaiting .embeddedServiceLoadingBalls::before {
    content: "";
    display: block;
}

body .embeddedServiceLiveAgentStateWaiting .waitingGreeting, .embeddedServiceLiveAgentStateWaiting .waitingMessage {
    margin-top: auto;
}
body .embeddedServiceLiveAgentStateWaiting .waitingMessage::before {
    content: "Your chat will begin shortly...";
    font-size: 14px;
    font-family: 'Graphik', sans-serif;
    font-weight: 500;
    letter-spacing: 0.25px;
    padding-bottom: 48px;
    display: block;
}

body .embeddedServiceLiveAgentStateWaiting .waitingMessage {
    font-size: 0;
}

body .embeddedServiceLiveAgentStateWaiting .waitingGreeting {
    font-size: 0;
}

body .embeddedServiceLiveAgentStateWaiting .waitingGreeting::before {
    content: "";
    font-size: 14px;
    background-image:url("/resource/dtcvx_chat_assets_2025/Hulu/loading-hulu@2x.gif");
    width: 135px;
    height: 80px;
    background-repeat: no-repeat;
    display: block;
    background-position: top center;
    background-size: contain;

}

/* auth bot loading screen */
/* hide wait time */
.authBotChat #timestamp {
    display: none;
}
/* hide unit of measurement label */
.authBotChat .timeMeasure {
    display: none;
}

/* loading bar */
span.loadingBallContainer.animated.embeddedServiceLoadingBalls,
#waitingMessage .Loader__bar {
    background: rgba(255, 255, 255, 0.3);
    height: 8px;
}

/* arranges the loading transfer bar to the bottom */
span.loadingBallContainer.animated.embeddedServiceLoadingBalls {
    order: 2;
    width: 100%;
    display: block;
    position:absolute;
    bottom:0;
}

/* loading bar animation */
.ui-widget .embeddedServiceLiveAgentStateWaiting .embeddedServiceLoadingBalls::before,
.queuePositionContainer span.loadingBallContainer.animated.embeddedServiceLoadingBalls::before,
#waitingMessage .Loader__animation-progress {
    position: relative;
    height: 8px;
    width: 100%;
    background-color: var(--hds-chat-color-primary-green);
    animation: pingPongBar 3.5s infinite linear;
}

/* agent transfer loading bar */
.queuePositionContainer span.loadingBallContainer.animated.embeddedServiceLoadingBalls::before {
    content: "";
    display: block;
}

/* hides the three loading balls */
div.queuePositionContainer span.loadingBallContainer .loadingBall,
div.embeddedServiceLiveAgentQueuePosition .embeddedServiceLoadingBalls .loadingBall {
    display: none;
}

/* transfer queue position container */
div.queuePositionContent.queuePositionTransferring.embeddedServiceLiveAgentQueuePosition {
    background-color: #424752;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
}

/* hides giant position number */
div.embeddedServiceLiveAgentQueuePosition.queuePositionTransferring .queuePositionNumber {
    display: none;
}
/* make line break not split the lines and also ads space between the text */
div.embeddedServiceLiveAgentQueuePosition .queuePositionMessage br {
    padding-left: 0.25ch;
    content: " ";
}

div.embeddedServiceLiveAgentQueuePosition.queuePositionTransferring .youAreNextMessage,
div.embeddedServiceLiveAgentQueuePosition .queuePositionMessage {
    font-size: 14px;
    line-height: 14px;
    font-weight: 400;
    font-family: var(--font-family-primary);
    margin: 0;
    padding: 21px 0.25ch;
    /*animation-name: paddingMoveIn;*/
    /*animation-duration: 500ms;*/
}

div.embeddedServiceLiveAgentQueuePosition,
span.embeddedServiceLiveAgentQueuePosition {
    margin-bottom: 0;
}

/*-- chat bubbles --*/
div.chat-content.chasitor[c-huluHelp_SnapIn_UnAuth_Messages_huluHelp_SnapIn_UnAuth_Messages],
div.chat-content.chasitor[c-huluHelp_SnapIn_Messages_huluHelp_SnapIn_Messages] {
    background-color: #176EE1;
    font-family: var(--font-family-primary);
    font-size: 14px;
    margin-right: 0;
    padding: 10px 12px;
    text-align: left;
    border-radius: 8px;
}

.chasitor {
    justify-content: flex-end;
}
.chatMessage.agent + .chatMessage.chasitor,
.chatMessage.chasitor + .chatMessage.agent {
    padding-top: 16px;
    margin-bottom: 0;
}

/* links */
.chat-content a {
    font-family: 'Graphik', sans-serif;
    font-size: 14px;
    color: var(--hds-chat-color-primary-blue);
}
.chat-content .slds-rich-text-editor__output a,
.chat-content a:visited,
.chat-content a:hover {
    text-decoration: underline!important; /* had to !important due to body css adding !important */
}
.chasitor .chat-content a {
    color: #FFF;
}
.agent .chat-content a:hover {
    color: var(--hds-chat-color-blue-5);
}

/*-- Chat Header --*/
.chat-header[c-huluHelp_SnapIn_UnAuth_Header_huluHelp_SnapIn_UnAuth_Header],
embeddedservice-chat-header[embeddedservice-chatheader_chatheader-host] {
    height: 56px;
    min-height: 56px;
    background-color: var(--hds-chat-color-darkui-3);
}

header.sidebarHeader[embeddedService-chatHeader_chatHeader] {
    padding: 0 16px;
}

header h2[embeddedService-chatHeader_chatHeader] {
    display: flex;
    align-items: center;
    font-family: var(--font-family-primary);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.25px;
    color: #FFF;
}

/* override default close and minimize icon color to white */
.slds-scope svg.slds-icon-text-default {
    fill: #FFF;
}
.chat-header .button-close svg.slds-icon.slds-icon_x-small {
    fill: #fff;
}
/* override default close icon size */
.slds-scope .slds-icon-utility-close svg.slds-icon_x-small {
    height: 20px;
    width: 20px;
}
/* override default minimize icon size */
.slds-scope .slds-icon-utility-minimize-window svg.slds-icon_x-small {
    height: 15px;
    width: 15px;
}
.sidebarHeader .minimizeButton {
    margin-right: 6px;
}
/* hide the x for the close button */
[embeddedservice-chatheader_chatheader].slds-icon-utility-close.slds-icon_container {
    /*display: none;*/
}
/* minimize and close hovers*/
header[embeddedService-chatHeader_chatHeader] button[embeddedService-chatHeader_chatHeader] {
    display: flex;
    justify-content: center;
    align-items: center;
}
header[embeddedService-chatHeader_chatHeader] button[embeddedService-chatHeader_chatHeader]:focus {
    border: none;
    outline: none;
    box-shadow: none;
}
header[embeddedService-chatHeader_chatHeader] button[embeddedService-chatHeader_chatHeader]:focus-visible {
    outline: -webkit-focus-ring-color auto 1px;
}
header[embeddedService-chatHeader_chatHeader] button[embeddedService-chatHeader_chatHeader]:hover:before {
    border-radius: 16px;
    height: 32px;
    width: 32px;
    margin: 0 auto;
    top: 12px;
    opacity: 0.3;
}
header[embeddedService-chatHeader_chatHeader] button[embeddedService-chatHeader_chatHeader].minimizeButton:hover:before {
    right: 39px;
}
header[embeddedService-chatHeader_chatHeader] button.closeButton:hover[embeddedService-chatHeader_chatHeader]:before {
    right: 8.5px;
}

header[embeddedservice-chatheader_chatheader] button.closeButton[embeddedService-chatHeader_chatHeader] {
    padding: 0;
    height: initial;
    min-height: initial;
    width: initial;
    min-width: initial;
}

/* hulu logo */
h2[embeddedService-chatHeader_chatHeader]::before {
    content: "";
    display: inline-block;
    width: calc(48px + 8px);
    height: 16px;
    background-image: url("/resource/huluHelpImageAssets/huluLogoGreen.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left center;
    margin-right: 8px;
    border-right: 1px solid rgba(255, 255, 255, 0.5);
}

.featureBody.embeddedServiceSidebarFeature img.logo {
    margin: .5rem auto 0 auto;
}

/*-- chat window --*/
.embeddedServiceLiveAgentStateChat div.messageArea:focus {
    border: none;
}
div.embeddedServiceSidebar.layout-docked .dockableContainer {
    border-radius: 12px 12px 0 0;
}

div.embeddedServiceLiveAgentStateChat .chatSessionStartTime {
    color: var(--hds-chat-color-darkui-3);
    margin-bottom: 24px;
    font-size: 12px;
    line-height: 12px;
    font-family: var(--font-family-primary);
    font-weight: 400;
}
/* hide scroll bar */
.embeddedServiceLiveAgentStateChat .messageArea.smoothScroll::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.embeddedServiceLiveAgentStateChat .messageArea.smoothScroll {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

/* chat bubble */
div.agent.chat-content[c-huluHelp_SnapIn_UnAuth_Messages_huluHelp_SnapIn_UnAuth_Messages] {
    margin-left: 0;
}

div.agent.chat-content[c-huluHelp_SnapIn_UnAuth_Messages_huluHelp_SnapIn_UnAuth_Messages],
div.agent.chat-content[c-huluHelp_SnapIn_Messages_huluHelp_SnapIn_Messages] {
    font-family: var(--font-family-primary);
    font-size: 14px;
    font-weight: 400;
    background-color: #E7EAF0;
    color: var(--hds-chat-color-black);
    text-align: left;
    padding: 10px 12px;
    margin-right: auto;
    border-radius: 8px;
}
.embeddedServiceLiveAgentStateChatItem.chatMessage.agent .chatContent .chat-content {
    margin-left: 38px;
}
.isCommunitiesContext.embeddedServiceLiveAgentStateChatAvatar + .chatContent .chat-content.agent {
    margin-left: 0!important; /* needs important or the above overwrites it */
}
.messageWrapper .embeddedServiceLiveAgentStateChatItem.chatMessage {
    padding-left: 18px;
    padding-right: 8px;
    padding-bottom: 4px;
    margin-bottom: 0;
}
.messageWrapper .embeddedServiceLiveAgentStateChatItem.chatMessage:last-of-type {
    padding-bottom: 12px;
}
.embeddedServiceLiveAgentStateChatItem.chatMessage.agent .chatContent {
    width: calc(100% - 44px);
    background-color: transparent;
}
.embeddedServiceLiveAgentStateChatItem.chatMessage.agent .typingIndicatorBallsContainer {
    display: flex;
    background-color: var(--hds-chat-color-lightui-2);
    padding: 10px;
    border-radius: 10px 10px 10px 0;
    width: max-content;
}
.embeddedServiceLiveAgentStateChatTypingIndicator .typingIndicatorBall {
    float: initial;
}
.embeddedServiceLiveAgentStateChatItem.chatMessage:not(.agent) .chatContent {
    width: 100%;
}

.embeddedServiceLiveAgentStateChatItem.agent div.nameAndTimeDotDivider {
    margin: 4px 6px 0;
    background-color: var(--hds-chat-color-lightui-5);
}

.embeddedServiceLiveAgentStateChatItem.agent .agentName,
.embeddedServiceLiveAgentStateChatItem.agent .nameAndTimeDotDivider,
.embeddedServiceLiveAgentStateChatItem.agent .timeContent {
    font-size: 12px;
    line-height: 11px;
    color: var(--hds-chat-color-darkui-3);
    font-family: var(--font-family-primary);
    font-weight: 400;
}
/* chat animation */
.chatMessage.chasitor:last-of-type .chat-content {
    /*animation-name: moveIn;*/
    /*animation-duration: 500ms;*/
}

li.embeddedServiceLiveAgentStateChatItem:last-of-type .chasitor {
    animation-name: moveInChasitor;
    animation-duration: 500ms;
}

li.embeddedServiceLiveAgentStateChatItem.agent:last-of-type > div.embeddedServiceLiveAgentStateChatAvatar {
    /*animation-name: opacityIn;*/
    /*animation: 500ms;*/
}

li.embeddedServiceLiveAgentStateChatItem.agent:last-of-type > div:not(.embeddedServiceLiveAgentStateChatAvatar)  {
    /*animation-name: moveInAgent;*/
    /*animation-duration: 500ms;*/
}

.embeddedServiceLiveAgentStateChatAvatar + .chatContent
.content-wrapper .chat-content.agent {
    margin-left: 0;
}

.chat-content.agent {
    margin-left: 40px;
}

/* chat agent */
li.embeddedServiceLiveAgentStateChatItem.chatMessage {
    display: flex;
    flex-wrap: wrap;
}

.embeddedServiceLiveAgentStateChatAvatar {
    display: flex;
    margin-bottom: -18px;
}

.embeddedServiceLiveAgentStateChatItem .isLightningOutContext .avatar {
    position: relative;
    align-self: flex-end;
}

.chatMessage.embeddedServiceLiveAgentStateChatItem .nameAndTimeContent {
    width: 100%;
    align-items: center;
    padding-top: 0;
}

.activeFeature .embeddedServiceLiveAgentStateChatItem .nameAndTimeContent > div:not(.nameAndTimeDotDivider) {
    padding-top: 7px;
}

/* chat agent avatar */
div.embeddedServiceLiveAgentStateChatAvatar.isCommunitiesContext {
    position: static;
    color: var(--hds-chat-color-black);
    box-sizing: border-box;
    width: initial;
    height: initial;
    border-radius: 0;
    background-size: 0;
    background-color: transparent;
    margin: 0;
}
.embeddedServiceLiveAgentStateChatItem .isLightningOutContext div.avatar {
    margin-bottom: 4px;
}
.embeddedServiceLiveAgentStateChatItem .isLightningOutContext div.avatar {
    margin-right: 9px;
}

.embeddedServiceLiveAgentStateChatItem .isLightningOutContext div.avatar,
li.embeddedServiceLiveAgentStateChatItem .isCommunitiesContext .avatar,
.embeddedServiceLiveAgentStateChatItem.chatMessage .embeddedServiceLiveAgentStateChatAvatar.isLightningOutContext .agentIconColor0 {
    font-size: 14px;
    line-height: 22px;
    font-family: var(--font-family-primary);
    font-weight: 400;
    margin-bottom: 0;
    position: relative;
}
li.embeddedServiceLiveAgentStateChatItem .isCommunitiesContext .avatar {
    background-color: var(--hds-chat-color-primary-green);
    color: var(--hds-chat-color-black);
    align-self: flex-end;
    margin-bottom: -14px;
}

div.embeddedServiceLiveAgentStateChatAvatar.isLightningOutContext .agentIconColor1,
.embeddedServiceLiveAgentStateChatItem.chatMessage .embeddedServiceLiveAgentStateChatAvatar.isLightningOutContext .agentIconColor0 {
    background: linear-gradient(141deg, #0D1C24 29.2%, #183949 68.37%);
    background-color: #183949;
    color: #1CE783;
}

/* -- chat agent typing indicator -- */
li.embeddedServiceLiveAgentStateChatBubble.agent .chatContent {
    width: initial;
    float: none;
}
.embeddedServiceLiveAgentStateChatTypingIndicator {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.embeddedServiceLiveAgentStateChatItem .isLightningOutContext .agentInitial.avatar {
    position: relative;
    margin-right: 8px;
}
.typingIndicatorContainer {
    position: relative;
}

.typingIndicatorContainer .embeddedServiceLiveAgentStateChatBubble .chatContent {
    margin-left: 0;
}

.typingIndicatorContainer .nameAndTimeContent {
    margin-left: 38px;
}

.typingIndicatorContainer .isLightningOutContext.embeddedServiceLiveAgentStateChatAvatar {
    margin-bottom: -21px;
}

.embeddedServiceLiveAgentStateChat div.messageWrapper .embeddedServiceLiveAgentStateChatItem.chatMessage .chatContent,
.embeddedServiceLiveAgentStateChat div.typingIndicatorContainer .embeddedServiceLiveAgentStateChatItem.chatMessage .chatContent,
.embeddedServiceLiveAgentStateChat div.queuePositionContainer .embeddedServiceLiveAgentStateChatItem.chatMessage .chatContent  {
    animation-name: typingIndicatorMoveIn;
    animation-duration: 500ms;
}

.embeddedServiceLiveAgentStateChat div.messageWrapper .embeddedServiceLiveAgentStateChatItem.chatMessage,
.embeddedServiceLiveAgentStateChat div.typingIndicatorContainer .embeddedServiceLiveAgentStateChatItem.chatMessage,
.embeddedServiceLiveAgentStateChat div.queuePositionContainer .embeddedServiceLiveAgentStateChatItem.chatMessage {
    position: relative;
}
.embeddedServiceLiveAgentStateChat div.messageWrapper .embeddedServiceLiveAgentStateChatItem.chatMessage .embeddedServiceLiveAgentStateChatAvatar,
.embeddedServiceLiveAgentStateChat div.typingIndicatorContainer .embeddedServiceLiveAgentStateChatItem.chatMessage .embeddedServiceLiveAgentStateChatAvatar,
.embeddedServiceLiveAgentStateChat div.queuePositionContainer .embeddedServiceLiveAgentStateChatItem.chatMessage .embeddedServiceLiveAgentStateChatAvatar {
    animation-name: typingIndicatorAvatarMoveIn;
    animation-duration: 500ms;
    position: relative;
}

.chatMessage.embeddedServiceLiveAgentStateChatItem:last-of-type {
    margin-bottom: 0;
}

/*-- Chat bot selectable options --*/
li.embeddedServiceLiveAgentStateChatButtonMessage.agent .chatContent {
    padding-right: 20px;
}

li.embeddedServiceLiveAgentStateChatButtonMessage.agent .chatContent,
.embeddedServiceLiveAgentStateChatMenuMessage div.rich-menu {
    margin: 0 40px 0;
    width: 100%;
    max-width: 82%;
}

.embeddedServiceLiveAgentStateChatMenuMessage div.rich-menu {
    animation-name: moveInAgent;
    animation-duration: 500ms;
}

button.embeddedServiceLiveAgentStateChatButtonItem:first-of-type,
.embeddedServiceLiveAgentStateChatItem div.chatContent ul.rich-menu-items li:first-of-type button {
    border-radius: 4px 4px 0 0;
}
button.embeddedServiceLiveAgentStateChatButtonItem:last-of-type,
.embeddedServiceLiveAgentStateChatItem div.chatContent ul.rich-menu-items li:last-of-type button {
    border-radius: 0 0 4px 4px;
}

.embeddedServiceLiveAgentStateChatItem div.chatContent ul.rich-menu-items li:first-of-type,
.embeddedServiceLiveAgentStateChatItem div.chatContent ul.rich-menu-items li {
    background-color: var(--hds-chat-color-lightui-2);
    border: none;
}

button.embeddedServiceLiveAgentStateChatButtonItem:last-of-type:focus,
.embeddedServiceLiveAgentStateChatItem div.chatContent ul.rich-menu-items li:last-of-type:focus button,
.embeddedServiceLiveAgentStateChatItem.chatMessage li button:focus,
.embeddedServiceLiveAgentStateChatItem.chatMessage .chatContent li button.rich-menu-item:focus:focus {
    outline: none;
}
.embeddedServiceLiveAgentStateChatItem.chatMessage li button:focus-visible,
.embeddedServiceLiveAgentStateChatItem.chatMessage .chatContent li button.rich-menu-item:focus:focus-visible {
    outline: -webkit-focus-ring-color auto 1px;
}

.embeddedServiceLiveAgentStateChatMenuMessage button.rich-menu-itemOptionIsClicked,
li.embeddedServiceLiveAgentStateChatItem.chatMessage button span,
.embeddedServiceLiveAgentStateChatMenuMessage button.rich-menu-item {
    color: var(--hds-chat-color-primary-blue);
    font-size: 14px;
}

.embeddedServiceLiveAgentStateChatItem .chatContent li button.rich-menu-itemOptionIsClicked {
    opacity: 0.7;
    color: var(--hds-chat-color-primary-blue);
    display: none;
}

button.embeddedServiceLiveAgentStateChatButtonItem {
    border: none;
    box-shadow: none;
    float: none;
    height: 42px;
    max-width: 279px;
    min-width: 0;
    border-radius: 0;
    width: 100%;
    margin: 1px 0;
}


button.embeddedServiceLiveAgentStateChatButtonItem,
button.embeddedServiceLiveAgentStateChatButtonItem:focus,
.embeddedServiceLiveAgentStateChatItem.chatMessage li button,
.embeddedServiceLiveAgentStateChatItem.chatMessage li button:focus,
.embeddedServiceLiveAgentStateChatItem.chatMessage .chatContent li button.rich-menu-item:focus {
    font-family: var(--font-family-primary);
    font-weight: 400;
    background: var(--hds-chat-color-lightui-2);
    text-align: center;
    text-decoration: none;
    opacity: 1;
}

.embeddedServiceLiveAgentStateChatItem.chatMessage li button,
.embeddedServiceLiveAgentStateChatItem.chatMessage li button:focus,
.embeddedServiceLiveAgentStateChatItem.chatMessage .chatContent li button.rich-menu-item:focus {
    padding: 12px;
    margin: 4px 15px 4px 0;
}

.embeddedServiceLiveAgentStateChatMenuMessage div.chatContent button.rich-menu-item:focus:hover,
li.embeddedServiceLiveAgentStateChatItem.chatMessage button:hover:focus,
li.embeddedServiceLiveAgentStateChatItem.chatMessage button:hover,
li.embeddedServiceLiveAgentStateChatItem.chatMessage button:hover span,
.embeddedServiceLiveAgentStateChatItem.chatMessage li button.rich-menu-item:hover {
    background-color: var(--hds-chat-color-lightui-5);
    color: #FFF;
    opacity: 1;
}

li.embeddedServiceLiveAgentStateChatItem .rich-button-item,
.embeddedServiceLiveAgentStateChatMenuMessage button.rich-menu-itemOptionIsClicked {
    color: var(--hds-chat-color-black);
}

li.embeddedServiceLiveAgentStateChatItem.chatMessage button:focus span,
li.embeddedServiceLiveAgentStateChatItem .rich-menu-item {
    color: var(--hds-chat-color-primary-blue);
    text-decoration: none;
    font-size: 14px;
    line-height: 18px;
}

li.embeddedServiceLiveAgentStateChatItem.chatMessage button:focus,
li.embeddedServiceLiveAgentStateChatMenuMessage .chatContent .rich-menu-item:focus {
    box-shadow: none;
    color: var(--hds-chat-color-primary-blue);
    background-color: #E7EAF0;
    opacity: 1;
    outline: none;
    text-decoration: none;
}

li.embeddedServiceLiveAgentStateChatItem.chatMessage button:focus-visible,
li.embeddedServiceLiveAgentStateChatMenuMessage .chatContent .rich-menu-item:focus-visible {
    box-shadow: none;
    color: var(--hds-chat-color-primary-blue);
    background-color: #E7EAF0;
    opacity: 1;
    outline: -webkit-focus-ring-color auto 1px;
    text-decoration: none;
}

/* -- chat announcement -- */
.announcement[embeddedService-chatHeaderAnnouncement_chatHeaderAnnouncement] {
    font-weight: 400;
    background-color: var(--hds-chat-color-darkui-4);
}

/*-- Chat input --*/
/* hides the input menu button */
.embeddedServiceLiveAgentStateChatInputFooter .footerMenuWrapper .footer-menu {
    display:none;
}

.embeddedServiceLiveAgentStateChatInputFooter textarea.chasitorText {
    font-family: var(--font-family-primary);
    color: var(--hds-chat-color-black);
    font-weight: 400;
}

.embeddedServiceLiveAgentStateChatInputFooter textarea.chasitorText.textAreaIsFocused {
    border: 2px solid var(--hds-chat-color-black);
    box-shadow: none;
    outline: none;
}

/* send chat button (mobile only)*/
.embeddedServiceLiveAgentStateChatInputFooter button.chatActionButton.Send {
    width: initial;
    opacity: 0.3;
    padding: 12.5px;
    margin: 0 4px 0 8px;
    background-color: var(--hds-chat-color-black);

}

.embeddedServiceLiveAgentStateChatInputFooter button.chatActionButton.Send .embeddedServiceIcon::before {
    content: "";
    display: block;
    width: 20px;
    height: 23px;
    background-image: url("/resource/huluDS_chatResources/images/Vector.svg");
    background-size: contain;
    background-repeat: no-repeat;
}

.embeddedServiceLiveAgentStateChatInputFooter button.chatActionButton.Send .embeddedServiceIcon svg {
    display: none;
}

.embeddedServiceLiveAgentStateChatInputFooter textarea.chasitorText.textAreaIsFocused + button.chatActionButton.Send {
    opacity: 1;
}

/* -- buttons -- */
button.embeddedServiceSidebarButton,
.embeddedServiceLiveAgentStateChat .endChatContainer .closeChatButton {
    font-family: var(--font-family-primary);
    font-size: 16px;
    font-weight: 500;
    background-color: #FFF;
    border-radius: 4px;
    border: 1px solid var(--hds-chat-color-black);
    outline: none;
    text-decoration: none;
    letter-spacing: 1px;
    box-shadow: none;
    width: 100%;
}

div.embeddedServiceLiveAgentStateChat .endChatContainer {
    display: none;
}

button.embeddedServiceSidebarButton.dialog-button-0 {
    background-color: var(--hds-chat-color-black);
    border: none;
    font-weight: 500;
}

button.embeddedServiceSidebarButton.uiButton--inverse:not(:disabled):hover {
    border-color: var(--hds-chat-color-black-transparent-50);
    background-color: transparent;
}

button.embeddedServiceSidebarButton.uiButton--inverse:not(:disabled):focus {
    border: 2px solid var(--hds-chat-color-primary-blue);
    text-decoration: none;
}

button.embeddedServiceSidebarButton.dialog-button-0:hover,
.embeddedServiceLiveAgentStateChat .endChatContainer .closeChatButton:hover {
    background-color: var(--hds-chat-color-black-transparent-90);
    border: none;
    font-family: var(--font-family-primary);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    opacity: 1;
    box-shadow: none;
    border-radius: 4px;
}

div.embeddedServiceSidebarDialogState .dialog-button-1 {
    margin: 0;
}

button.embeddedServiceSidebarButton.uiButton--inverse:not(:disabled):focus-visible {
    outline: none;
    box-shadow: none;
    background-color: transparent;
}

div.embeddedServiceLiveAgentStateChat .endChatContainer .endChatButton:first-of-type:hover {
    font-weight: 600;
}

button.embeddedServiceSidebarButton:not(:disabled):focus {
    background-color: var(--hds-chat-color-black);
    border-color: var(--hds-chat-color-black);
    outline: none;
    box-shadow: none;
    text-decoration: none;
}

button.embeddedServiceSidebarButton:not(:disabled):focus-visible {
    border: 2px solid var(--hds-chat-color-blue-2);
    box-shadow: 0 0 3px var(--hds-chat-color-primary-blue);
}

div.embeddedServiceLiveAgentStateChat .endChatContainer .endChatButton:first-of-type:hover,
button.embeddedServiceSidebarButton:not(:disabled):hover {
    background-color: var(--hds-chat-color-darkui-3);
    border-color: var(--hds-chat-color-darkui-3);
    color: #FFF;
    text-decoration: none;
}

button.embeddedServiceSidebarButton:hover .label,
button.embeddedServiceSidebarButton:hover:disabled .label,
button.embeddedServiceSidebarButton:focus .label,
button.embeddedServiceSidebarButton:focus:disabled .label {
    text-decoration: none;
    color: #FFF;
}

button.embeddedServiceSidebarButton:not(.dialog-button-0) .label,
button.embeddedServiceSidebarButton:not(.dialog-button-0):disabled .label {
    color: var(--hds-chat-color-black);
    text-decoration: none;
}

/* -- End Chat -- */


div.embeddedServiceLiveAgentStateChat .endChatContainer .endChatButton {
    position: relative;
    background-color:#FFF;
    margin-bottom: 8px;
    bottom: 18px;
}

div.embeddedServiceLiveAgentStateChat .endChatContainer .endChatButton::before {
    content: "";
    position: fixed;
    background: #FFF;
    box-shadow: 0px 10px 20px -10px rgba(0, 0, 0, 0.25);
    border-radius: 4px;
    left: 16px;
    right: 16px;
    bottom: 16px;
    height: 27%;
    z-index: -1;
}

div.embeddedServiceLiveAgentStateChat .endChatContainer .endChatButton:first-of-type {
    background-color: var(--hds-chat-color-black);
}

div.embeddedServiceLiveAgentStateChat .endChatContainer .endChatButton:first-of-type,
div.embeddedServiceLiveAgentStateChat .endChatContainer .endChatButton:first-of-type span {
    color: #FFF;
}

.embeddedServiceSidebarDialogState .dialogTextContainer {
    align-items: center;
}

.embeddedServiceSidebarDialogState #dialogTextBody div {
    font-family: var(--font-family-primary);
    color: #FFF;
    line-height: 24px;
    font-size: 14px;
    font-weight: 400;
}

.embeddedServiceSidebarDialogState h3#dialogTextTitle {
    font-family: var(--font-family-primary);
    font-weight: 400;
    font-size: 24px;
    line-height: 30px;
    color: #FFF;
}

div.embeddedServiceSidebarDialogState .dialogButtonContainer {
    padding: 0 32px 32px;
}

/* -- end chat survey -- */
div.embeddedServiceLiveAgentStatePostchat iframe {
    width: 100%;
    height: 100%;
    margin: 0;
}

/* Credit Card Request Style Start */
/* hide the input */
.ccHide {
    display: none;
}

#ccDiv {
    display: -webkit-box;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    color: black;
    animation: 1s ease 0s 1 ccDiv;
    position: fixed;
    bottom: 0;
}

#ccWaiting{
    width: 100%;
    margin-top: 75px;
    position: absolute;
}

.auraLoadingBox.ccProcessing{
    background: black;
}
.auraLoadingBox.ccProcessing:after{
    background: black;
}

#msgCC {
    animation: 3s ease 0s 1 msgCC;
    background: #FFF;
    opacity: 1;
    margin: 10px;
    border-radius: 5px;
    overflow: hidden;
    bottom: 0;
    position: absolute;
    width: calc(100% - 20px);
}

#msgCC p {
    display: inline-block;
    font-family: var(--font-family-primary);
    font-weight: 600;
    /*font-weight: semibold*/
    text-align: center;
    padding: 20px 0px 10px 0px;
    color: #0e0e0e;
    font-size: 18px;
    background-color: #FFF;
}

#ccInputDiv {
    color: #FFF;
    display: inline-flex;
    margin: 20px 0;
    height: 50px;
    justify-content: space-between;
    width: 100%;
    padding: 0 25px;
}

#ccInputDiv .slds-form__item {
    padding-left: 0;
    padding-right: 0;
}

#ccInputDiv .slds-form__row {
    margin-top: 10px;
}

#ccInputDiv input {
    height: 48px;
    width: 100%;
    -webkit-appearance: none;

    padding-left: 10px;
    padding-right: 10px;
    margin-left: 0;
    border-radius: 4px;
    border: 2px solid rgb(185, 191, 203);
}

#ccInputDiv input.submitcc {
    background: rgb(4, 4, 5);
    border-radius: 4px;
    height: 46px;
    font-family: var(--font-family-primary);
    font-weight: 600;
    /*font-weight: semibold*/
    text-transform: uppercase;
    font-size: 14px;
    color: #FFF;
    letter-spacing: 2px;
    border: none;
}

#ccInputDiv label {
    color: rgb(103, 114, 138);
    font-family: var(--font-family-primary);
    font-weight: 600;
    /*font-weight: semibold*/
    padding-right: 0;
    letter-spacing: 0.6px;
    line-height: 12px;
    text-transform: uppercase;
    font-size: 12px;
}

.ccInputFields input {
    color:#000;
    margin-left: 10px;
}

select.input.monthSelector {
    background-color: white;
    height: 48px;
    width: 39%;
    color: #0e0e0e;
    border-radius: 4px;
    border: 2px solid rgb(185, 191, 203);
}

select.input.yearSelector {
    height: 48px;
    margin-left: 3px;
    width: calc(100% - 44%);
    color: #0e0e0e;
    border-radius: 4px;
    border: 2px solid rgb(185, 191, 203);
    background-color: #FFF;
}

input .submitcc{
    font-family: var(--font-family-primary);
    /*font-weight: semibold*/
    font-weight: 600;
    background: #040405;
    border-radius: 4px;
    font-size: 14px;
    letter-spacing: 2px;
    text-align: center;
    text-transform: uppercase;
    padding: 15px 24px 14px;
    line-height: initial;
    border: 2px solid #040405;
    color: #fff;
}

#headerCCButton{
    border: none;
    font-size: 14px;
    float: right;
    margin-top: 10px;
}

#headerCC span:hover{
    cursor: pointer;
}

@keyframes ccDiv {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes msgCC {
    0% {
        bottom: -400px;
    }
    25% {
        bottom: 0;
    }
    100% {
        bottom: 0;
    }
}

button.swal-button.swal-button--confirm:focus{
    box-shadow: 0px!important;
}

#textError1.block{
    display: none;

}
#textError2.block{
    display: none;

}
#textError4.block{
    display: none;
}
#textError5.block{
    display: none;
}
#textError1{
    text-align: left;
    padding: 5px;
    width: 100%;
    color: #c23934;
    border-left: 1px solid;
    font-style: italic;
    font-size: 12px;
}
#textError2{
    text-align: left;
    padding: 5px;
    width: 100%;
    color: #c23934;
    border-left: 1px solid;
    font-style: italic;
    font-size: 12px;
}

#textError4{
    text-align: left;
    padding: 5px;
    width: 100%;
    color: #c23934;
    border-left: 1px solid;
    font-style: italic;
    font-size: 12px;
}

#textError5{
    text-align: left;
    padding: 5px;
    width: 100%;
    color: #c23934;
    border-left: 1px solid;
    font-style: italic;
    font-size: 12px;
}

/* For Firefox */
input[type='number'] {
    -moz-appearance:textfield;
}

/* Webkit browsers like Safari and Chrome */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

@media all and (max-width: 1050px) {
    .ccInputFields input{margin-left: 0px;}
}

@media all and (max-width: 730px) {
    #ccInputDiv {
        display: block;
        height: auto;
        /*width: 85%;*/
        margin: 10px auto;
    }

    input.submitcc {
        float: none;
        margin: 0px auto;
        display: block;
    }

    .ccInputFields input {
        margin-left: 10px;
    }
}


/* swal customization */
.swal-icon--success__line--long {
    width: 41px;
    background-color: rgb(41, 44, 51);
}
.swal-icon--success__line--tip {
    width: 24px;
    background-color: rgb(41, 44, 51);
}

.swal-icon--success__ring {
    border: 2px solid rgb(41, 44, 51);
}

.swal-title {
    color: rgb(41, 44, 51);
    font-family: var(--font-family-primary);
    font-weight: 400;
    font-size: 32px;
    letter-spacing: -0.5px;
    line-height: 32px;
    text-align: center;
}

.swal-text {
    color: rgb(41, 44, 51);
    font-family: var(--font-family-primary);
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 0;
    line-height: 24px;
    text-align: center;
}

.swal-overlay {
    background-color: rgba(0, 0, 0, 0.7);
}

.swal-overlay--show-modal .swal-modal {
    bottom: 0;
    left: 10px;
    position: absolute;
    margin-bottom: 10px;
}

.swal-button:not([disabled]):hover {
    background: rgb(4, 4, 5);
}

body button.swal-button.swal-button--confirm {
    background: rgb(4, 4, 5);
    width: 100%;
    display: inline-block;
    height: 100%;
    color: rgb(255, 255, 255);
    font-family: var(--font-family-primary);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.swal-icon {
    border-width: 2px;
}

.swal-icon--info:after,
.swal-icon--info:before {
    background-color: rgb(41, 44, 51);
}

.swal-icon--info {
    border-color: rgb(41, 44, 51);
}

.swal-button-container {
    width: 100%;
    height: 48px;
}

body .embeddedServiceLiveAgentStatePostchat iframe {
    height: 100%;
    width: 100%;
    margin: 0;
}

@media (max-width: 730px) {
    body #ccInputDiv {
        text-align: left;
    }
    .dockableContainer > .embeddedServiceSidebarHeader.sidebarHeader {
        position: absolute;
        top:0;
    }
}

#ccProcessing {
    margin: 0 auto;
    padding: 50% 0;
}
.ccProcessing .auraLoadingBox {
    background: #000;
}
.ccProcessing .auraLoadingBox:after {
    background: #000;
}

#timestamp .auraLoadingBox {
    display: none;
}

/* TIME LOADER GIF */
.auraLoadingBox,
.auraLoadingBox:before,
.auraLoadingBox:after {
    border-radius: 50%;
}
.auraLoadingBox:before,
.auraLoadingBox:after {
    position: absolute;
    content: '';
}
.auraLoadingBox {
    color: white;
    font-size: 11px;
    text-indent: -99999em;
    margin: 0 auto;
    position: relative;
    width: 10em;
    height: 10em;
    box-shadow: inset 0 0 0 1em;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    display:block;
    background: #2b2f57;
}
.auraLoadingBox:before {
    width: 5.2em;
    height: 10.2em;
    background: transparent;
    border-radius: 10.2em 0 0 10.2em;

}
.auraLoadingBox:after {
    width: 5.2em;
    height: 10.2em;
    background: #2b2f57;
    border-radius: 0 10.2em 10.2em 0;
    top: -0.1em;
    left: 5.1em;
    -webkit-transform-origin: 0 5.1em;
    transform-origin: 0 5.1em;
    -webkit-animation: load2 2s infinite ease;
    animation: load2 2s infinite ease;
}
@-webkit-keyframes load2 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes load2 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/* Salesforce loading dots. */
.siteforceSpinnerManager .mask {
    background-color: #000;
    opacity: 0;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    z-index: 99999;
    margin-left: 40px
}

.siteforceSpinnerManager .spinner {
    text-align: center;
    background: var(--lwc-colorBackgroundAltInverse,rgb(22, 50, 92));
    opacity: .4;
    border-radius: var(--lwc-borderRadiusSmall,0.125rem);
    padding: 35px;
    color: var(--lwc-colorTextInverse,rgb(233, 251, 243));
    top: 50%;
    left: 50%;
    margin-left: -50px;
    margin-top: -50px;
    position: fixed;
    z-index: 99999;
    display: block;
    font-size: 30px
}


.siteforceLoadingBalls.loadingCon {
    transition: all .3s ease-in-out 0s;
    margin-top: 10px
}

.siteforceLoadingBalls .loadingBall {
    display: inline-block;
    width: 1em;
    height: 1em;
    border-radius: 1em;
    animation: bouncedelay 1.4s infinite ease-in-out;
    animation-delay: -.48s;
    animation-fill-mode: both;
    background-color: var(--lwc-inlineSpinnerBackground,#c2cacf);
    margin-right: 16px
}

.siteforceLoadingBalls.global {
    text-align: center;
    /*     background: var(--lwc-globalSpinnerBackground,rgba(255,255,255,0.8)); */
    border-radius: var(--lwc-borderRadiusSmall,0.125rem);
    padding: 40px;
    color: #ccc;
    top: 50%;
    left: 50%;
    margin-left: -86px;
    margin-top: -50px;
    position: fixed;
    z-index: 99999;
    display: block;
    font-size: 20px
}

.siteforceLoadingBalls .loadingBall.second {
    animation-delay: -.32s
}

.siteforceLoadingBalls .loadingBall.third {
    animation-delay: -.16s;
    margin-right: 0
}

.siteforceLoadingBalls.loadingInlineIndicator {
    text-align: center;
    margin-bottom: 10px
}

.siteforceLoadingBalls .assistiveText {
    position: absolute;
    height: 1px;
    width: 1px;
    overflow: hidden;
    clip: rect(1px 1px 1px 1px);
    clip: rect(1px,1px,1px,1px);
    margin: -1px
}

/** prechat **/
.embeddedServiceSidebarFeature.featureBody {
    background: linear-gradient(141deg, #0D1C24 29.2%, #183949 68.37%);
    display: inline-block;

}

/*-- postchat --*/

.stateBody.embeddedServiceSidebarState.embeddedServiceLiveAgentStatePostchat {
    background-color: #FFF;
}

@keyframes bouncedelay {
    0%,80%,100% {
        transform: scale(0.0)
    }

    40% {
        transform: scale(1.0)
    }
}

@keyframes temporaryHeight {
    0% {
        height: 100%;
    }
    99% {
        height: 100%;
    }
    100% {
        height: 0;
    }
}

/*-- New Styles for Hulu Chat 01/2024--*/

.dtcvx-hulu-prechat-instructions {
    display: block;
    padding: 20px 0 32px 0;
}

.dockableContainer.showDockableContainer {
    border-radius: 0 !important;
}

.embeddedServiceSidebarState.stateBody {
    width: 100%;
    height: 100%;
}

.slds-input-has-icon_right button.slds-combobox__input {
    font-weight: 400;
    line-height: 1;
    min-height: 40px;
    text-align: left;
    background-color: rgba(0, 0, 0, 0.40);
    border: 1px solid rgba(255, 255, 255, 0.30);
    font-size: 14px;
    font-family: var(--font-family-secondary, sans-serif);
    border-radius: 4px;
    padding: 6px 12px;
    color: #FFF;
    height: auto;
    transition: all 0.3s;
    width: -webkit-fill-available;
}

/*
.chat-header[c-huluHelp_SnapIn_Auth_Header_huluHelp_SnapIn_Auth_Header] {
    display: none !important;
}
*/

.embeddedServiceSidebar label.slds-form-element__label {
    text-align: left;
    width: 100%;
    display: block;
    font-size: 13px;
    font-weight: 400;
    margin-bottom: 8px;
    margin-top: 2px;
    letter-spacing: 0.5px;
}

.slds-combobox__form-element.slds-input-has-icon.slds-input-has-icon_right {
    position: relative;
}

.slds-input__icon-group.slds-input__icon-group_right {
    width: 15px;
    height: auto;
    position: absolute;
    top: 13px;
    right: 12px;
}

.slds-input__icon-group.slds-input__icon-group_right svg.slds-icon-text-default {
    fill: #FFFFFF;
}

/*-- selection drop down --*/

.slds-combobox.slds-dropdown-trigger.slds-dropdown-trigger_click .slds-dropdown{
    display: none;
}

.slds-combobox.slds-dropdown-trigger.slds-dropdown-trigger_click.slds-is-open .slds-dropdown{
    display: block;
    z-index: 1;
}

lightning-combobox.slds-form-element .slds-form-element__control .slds-dropdown {
    padding: 8px 0;
    margin: 2px 0 0;
    border: 0 none;
    box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.2), 0px 5px 8px rgba(0, 0, 0, 0.14), 0px 1px 14px rgba(0, 0, 0, 0.12);
    background-color: #FFF;
    border-radius: 0 0 5px 5px;
    position: absolute;
    width: 100%;
}

.embeddedServiceSidebar .slds-combobox_container {
    position: relative;
}

.embeddedServiceSidebar lightning-base-combobox-item {
    padding: 6px 16px;
    display: block;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 13px;
}



.embeddedServiceSidebar lightning-base-combobox-item:hover {
    cursor: pointer;
}


/*-- Imported form Hulu Overrides --*/

.embeddedServiceSidebarState .slds-form-element__control input.slds-input {
    font-weight: 400;
    line-height: 1;
    min-height: 24px;
    text-align: left;
    background-color: rgba(0, 0, 0, 0.40);
    border: 1px solid rgba(255, 255, 255, 0.30);
    font-size: 14px;
    font-family: var(--font-family-secondary, sans-serif);
    border-radius: 4px;
    padding: 6px 12px;
    color: #FFF;
    height: auto;
    transition: all 0.3s;
    width: -webkit-fill-available;
}

.embeddedServiceSidebarState button.slds-button.slds-button_neutral {
    background-color: #FFF;
    font-family: var(--font-family-primary);
    color: #000;
    border: 1px solid #FFF;
    min-width: 150px;
    line-height: 20px;
    padding: 9px 24px;
    font-size: 1rem;
    letter-spacing: .25px;
    font-weight: 500;
    border-radius: 4px;
    transition: none;
    width: 100%;
}

.embeddedServiceSidebarState .slds-form-element__control input[disabled].slds-input {
    background-color: #d4d4d4 !important;
    color: #7e838d !important;
}

.embeddedServiceSidebarState button.slds-button.slds-button_neutral:hover {
    cursor: pointer;
}

.embeddedServiceSidebarFeature.featureBody {
    background: linear-gradient(141deg, #0D1C24 29.2%, #183949 68.37%);
}

c-hulu-help_-contact-pre-chat {
    background: linear-gradient(313.03deg, #025864 -1.96%, #01212C 102.01%);
}


.embeddedServiceSidebar button.slds-button.slds-button_brand {
    background: blue;
    height: 25px;
    width: 200px;
}

.embeddedServiceSidebar lightning-combobox.slds-form-element.slds-has-error,
.embeddedServiceSidebar lightning-input.slds-form-element.slds-has-error {
    display: contents;
    flex-basis: 100%;
    flex-grow: 1;
    flex-wrap: wrap;
}

.embeddedServiceSidebar .slds-form-element__control {
    order: 2;
    flex-basis: 100%;
}


.embeddedServiceSidebar .slds-form-element__help {
    flex-grow: 1;
    text-align: right;
}

.embeddedServiceSidebar .slds-has-error input[lightning-basecombobox_basecombobox].slds-input,
.embeddedServiceSidebar .slds-has-error input[lightning-input_input].slds-input {
    background-color: rgba(255, 255, 255, 0.1);
}

.embeddedServiceSidebar button.closeButton .slds-icon-utility-close.slds-icon_container svg {
    height: 16px;
    width: 16px;
}

.embeddedServiceSidebar .slds-form-element {
    margin-bottom: 15px;
}

.embeddedServiceSidebar .slds-form-element__label {
    font-family: var(--font-family-secondary, sans-serif);
    text-align: left;
    width: 100%;
}

.embeddedServiceSidebar lightning-base-combobox-item {
    color: black;
}

.embeddedServiceSidebar button.slds-button.slds-button_brand {
    border-radius: var(--hds-chat-button-border-radius, 4px);
    border: none;
    color: var(--hds-chat-button-color);
    background: var(--hds-chat-button-background);
    /*text-transform: uppercase;*/
    text-transform: none;
    height: 40px;
    white-space: nowrap;
    padding: 6px 12px;
    font-family: Avenir, sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.1em;
    line-height: 100%;
    display: inline-block;
    margin-bottom: 16px;
    text-align: center;
    vertical-align: middle;
    touch-action: manipulation;
    cursor: pointer;
    /*outline: 0;*/
    width: 100%;
    transition: all 0.3s;
}

.embeddedServiceSidebar button.slds-button.slds-button_brand:hover {
    background: var(--hds-chat-button-hover-background);
}

.embeddedServiceSidebar button.slds-button.slds-button_brand:active {
    /*background: var(--hds-chat-button-active-background);*/
    background: var(--hds-chat-button-hover-background);
}

.embeddedServiceSidebar lightning-button button:hover {
    background: #3173cc;
}

.embeddedServiceSidebar [role=combobox] input[readonly],
.embeddedServiceSidebar input[readonly][role=combobox],
.embeddedServiceSidebar input[lightning-basecombobox_basecombobox],
.embeddedServiceSidebar input[lightning-input_input],
.embeddedServiceSidebar input[lightning-input_input]::placeholder {
    font-size: 14px;
    border: 1px solid rgba(255,255,255,0.3);
    font-family: 'Avenir', sans-serif;
    border-radius: 4px;
    padding: 6px 12px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #FFF;
    height: 3em;
    transition: all 0.3s;
}

.embeddedServiceSidebar [role=combobox] input[readonly]:active,
.embeddedServiceSidebar input[readonly][role=combobox]:active,
.embeddedServiceSidebar input[lightning-basecombobox_basecombobox]:active,
.embeddedServiceSidebar input[lightning-input_input]:active,
.embeddedServiceSidebar [role=combobox] input[readonly]:hover,
.embeddedServiceSidebar input[readonly][role=combobox]:hover,
.embeddedServiceSidebar input[lightning-basecombobox_basecombobox]:hover,
.embeddedServiceSidebar input[lightning-input_input]:hover {
    font-size: 14px;
    border: 1px solid rgba(255,255,255,1);
    border-radius: 4px;
    padding: 6px 12px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #FFF;
    height: 3em;
}

.embeddedServiceSidebar button[lightning-basecombobox_basecombobox] {
    font-size: 14px;
    border: 1px solid rgba(255,255,255,0.3);
    font-family: 'Avenir', sans-serif;
    border-radius: 4px;
    padding: 6px 12px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #FFF;
    height: 3em;
    transition: all 0.3s;
    width: 100%;
    text-align: left;
}

.embeddedServiceSidebar input[lightning-basecombobox_basecombobox]::placeholder {
    font-family: 'Avenir', sans-serif;
    font-style: normal;
    font-weight: normal;
    color: #C5CAD3;
    font-size: 13px;
    line-height: 150%;
}

*:focus {
    outline-color: -webkit-focus-ring-color;
    outline-style: auto;
}

.embeddedServiceSidebar input[lightning-basecombobox_basecombobox]:focus,
.embeddedServiceSidebar input[lightning-input_input]:focus,
.embeddedServiceSidebar input[lightning-basecombobox_basecombobox]:active,
.embeddedServiceSidebar input[lightning-input_input]:active {
    background-color: rgba(255, 255, 255, 0.1);
}

.embeddedServiceSidebar .slds-has-error .slds-form-element__help,
.embeddedServiceSidebar .slds-required {
    font-weight: 400;
    color: #FFF;
    text-decoration: none !important;
    font-size: 12px;
    padding-right: 2px;
    flex-grow: 1;
    text-align: left;
}

.embeddedServiceSidebar .slds-has-error input[lightning-basecombobox_basecombobox],
.embeddedServiceSidebar .slds-has-error .slds-input,
.embeddedServiceSidebar .slds-has-error input[lightning-basecombobox_basecombobox]:hover,
.embeddedServiceSidebar .slds-has-error .slds-input:hover,
.embeddedServiceSidebar .slds-has-error input[lightning-basecombobox_basecombobox]:active,
.embeddedServiceSidebar .slds-has-error .slds-input:active {
    border-color: var(--hds-chat-color-error-color);
}

.embeddedServiceSidebar .slds-has-error .slds-input:focus,
.embeddedServiceSidebar .slds-has-error .slds-input:active {
    border-color: var(--hds-chat-color-error-color);
    /*box-shadow: var(--hds-chat-color-error-color) 0 0 0 1px inset, 0 0 3px #0176d3;*/
}

.embeddedServiceSidebar .slds-form-element__help {
    font-size: 11px;
    font-family: var(--font-family-secondary, sans-serif);
    color: var(--hds-chat-color-error-color);
    margin-top: 5px;
    position: relative;
    top: -8px;
    font-style: normal !important;
    padding-bottom: .2rem;
}

.embeddedServiceSidebar .slds-form-element__help .slds-assistive-text {
    padding-right: 3px;
}

.embeddedServiceSidebar .slds-required {
    color: #F14668;
}

/*
.embeddedServiceSidebarState .slds-form-element.slds-has-error input.slds-input {
    border: 1px solid #F14668 !important;
}
    */

.embeddedServiceSidebarState .slds-form-element.slds-has-error .slds-combobox__form-element button.slds-combobox__input {
    border: 1px solid #F14668 !important;
}


.embeddedServiceSidebar .slds-form-element.slds-has-error .slds-form-element__help::before {
    content: "";
    display: inline-block;
    background-repeat: no-repeat !important;
    background-size: 14px 14px !important;
    background-image: url(/sfsites/c/resource/dtcvx_feedbackForm_assets/Disney/Alert.svg) !important;
    width: 24px;
    height: 20px;
    background-position: 4px 8px;
  /*  filter: brightness(0) saturate(100%) invert(39%) sepia(36%) saturate(3636%) hue-rotate(324deg) brightness(98%) contrast(92%); */
}

.slds-media_small .slds-media__figure, .slds-media--small .slds-media__figure {
    display: none !important;
}

/*-- Global Styles --*/

.slds-m-bottom_large, .slds-m-bottom--large {
    margin-bottom: 1.5rem;
}

.embeddedServiceSidebar .slds-form-element {
    margin-bottom: 15px;
}

/*-- Hover Chat Header Background Color--*/

.chat-header {
    background-color: #16181D !important;
}

/*-- Hover Chat Header Close Icon - Button --*/

.chat-header button.button-close:hover {
    cursor: pointer;
}

/*-- Hide Chat Header Minimize Icon - Button --*/

.chat-header button.button-minimize {
    display: none !important;
}

/*-- First Name Field Error Fix --*/

.slds-has-error .slds-input {
    border-color: #F14668 !important;
    -webkit-box-shadow: #F14668 0 0 0 1px inset !important;
    box-shadow: #F14668 0 0 0 1px inset !important;
    border: none !important;
}

.slds-has-error .slds-form-element__control lightning-primitive-icon {
    display: none;
}