.dcEmbedChat {
    /* position: absolute; */
    position: fixed;
    top: 0;
    left: 0;
    bottom: 70px;
    right: 0;
    z-index: 99;
    visibility: hidden;
    display: flex;
    flex-direction: row-reverse;
    gap: 16px; 
}
.dcEmbedChat.dcEmbedChatMobile {
    position: fixed;
    bottom: 0;
}
.dcEmbedChat
.one-to-one.active {
    max-height: 400px;
    transition: max-height .35s ease-in;
}
.dcEmbedChat
.one-to-one {
    position: relative;
    bottom: 0;
    right: 0;
    width: 300px;
    height: 100%;
    max-height: 50px;
    z-index: 99;
    transition: max-height .35s ease-out;
    overflow: hidden;
    display: flex;
    flex-direction: column;
} 

.dcEmbedChat .mobileEmbedChat.one-to-one.active {
    /* max-height:calc(100% - 50px); */
    max-height:calc(100% - 0px);
    transition: max-height .35s ease-in;
}
.dcEmbedChat .mobileEmbedChat.one-to-one {
    width: 100%;
    height: 100%;
    max-height: 50px;
} 
.dcEmbedChat .dcConversationBox{
    max-height: 70% !important;
    bottom: auto;
    left: 0;
    margin: 0 auto;
    width: 100%;
    max-width: 992px;
}
.align-items-center {
    align-items: center;
    justify-content: center;
}
.align-items-end {
    align-items: end;
}
.visibility-visible {visibility: visible;}
.d-none {display: none !important;}
.position-absolute{
    position: absolute !important;
}
.position-relative{
    position: relative !important;
}
.overflow-hidden{
    overflow: hidden !important;
}


.draggable-page {
    position: absolute;
    /* top: 100px;
    left: 100px;
    width: 400px; */
    cursor: grab;
}


.dcCallBox{
    position: absolute;
    top: 0px;
    right: 0px;
    display: block;
    visibility: visible;
    z-index: 99;
}

.dcCallAnswerBox{
    position: fixed;
    top: 50%;
    right: 50%;
    display: block;
    visibility: visible;
    z-index: 99;
    transform: translate(50%, -50%); 
    width: 40vw;
    height: 32vw;
}
.dcCallAnswerBox iframe {
    width: 100%;
    height: 100%;
}


.dcCallAnswerBoxFullsize {
    position: fixed;
    top: 0;
    right: 0;
    display: block;
    visibility: visible;
    z-index: 99;
    transform: none;
    height: 100%;
    width: 100%;
}