@font-face {
    font-family: silka;
    src: url("/static/EasyChatApp/fonts/Silka/Silka-Regular.woff2") format("woff2"),
    url("/static/EasyChatApp/fonts/Silka/Silka-Regular.woff") format("woff");
}

@font-face {
    font-family: silka_bold;
    src: url("/static/EasyChatApp/fonts/Silka/Silka-Bold.woff2") format("woff2"),
    url("/static/EasyChatApp/fonts/Silka/Silka-Bold.woff") format("woff");
}

* {
    font-family: silka;
}
*,
*::after,
*::before {
    margin: 0;
    padding: 0;
    box-sizing: inherit;
}
html {
    font-family: silka;
    font-size: 14px;
}

body {
    overflow: hidden;
}

#botloader {
  position: fixed;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  text-align: center;
  opacity: 1;
  background-color: #fff;
  z-index: 9999;
}

#loading-image {
  position: absolute;
  top: 150px;
  z-index: 100;
}

.bot-opener {
    position: fixed;
    right: 20px;
    bottom: 15px;
    width: 116px;
    height: 42px;
    background: #0085FF;
    box-shadow: 0px 2px 12px rgba(0, 133, 255, 0.5);
    border-radius: 5px;
    text-align: center;
    cursor: pointer;
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: -0.06em;
    color: #FFFFFF;
    transition: transform 0.2s ease;
    z-index: 100;
}

.bot-opener span {
    transition: all 0.4 ease;
}

.bot-opener:hover {
    transform: translateY(-3px);
}

.minimized-view-cross-icon {
    opacity: 1;
    pointer-events: none;
    position: absolute;
    top: 55%;
    left: 50%;
    transition: 0.2s ease-out;
    transform: translate3d(-50%, -50%, 0) rotate( -90deg);
    transition-delay: 0s;
}




.bot-opener {
    width: 38px !important;
    height: 42px;
    transition: transform 0.2s ease-out;
}

.bot-header,
.bot-header span {
    font-family: silka_bold;
}
.typing-indicator {
    border-radius: 50px;
    display: table;
    font-weight: normal;
    font-size: 13px;
    color: #5E5E5E;
    margin: 2rem 0rem;
    position: relative;
    -webkit-animation: 2s bulge infinite ease-out;
    animation: 2s bulge infinite ease-out;
}

.typing-indicator:before,
.typing-indicator:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: -2px;
    height: 20px;
    width: 20px;
    border-radius: 50%;
}

.typing-indicator:after {
    height: 10px;
    width: 10px;
    left: -10px;
    bottom: -10px;
}

.typing-indicator span {
    height: 5px;
    width: 5px;
    float: right;
    margin: 12px 1px 0 2px;
    background-color: #9E9EA1;
    display: block;
    border-radius: 50%;
    opacity: 0.4;
}

.typing-indicator span:nth-of-type(1) {
    -webkit-animation: 1s blink infinite 0.3333s;
    animation: 1s blink infinite 0.3333s;
}

.typing-indicator span:nth-of-type(2) {
    -webkit-animation: 1s blink infinite 0.6666s;
    animation: 1s blink infinite 0.6666s;
}

.typing-indicator span:nth-of-type(3) {
    -webkit-animation: 1s blink infinite 0.9999s;
    animation: 1s blink infinite 0.9999s;
}

@-webkit-keyframes blink {
    50% {
        opacity: 1;
    }
}

@keyframes blink {
    50% {
        opacity: 1;
    }
}

@-webkit-keyframes bulge {
    50% {
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
    }
}

@keyframes bulge {
    50% {
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
    }
}

.easychat-bot-message-div {
   /* margin-top: 1.5em;
    width: 100%;
    display: inline-block;*/
     display: flex;
    align-items: center;
    flex-wrap: wrap;
    /*margin-top: 16px;*/
    word-break: break-word;
    margin-top: 8px;
    margin-bottom: 8px;
}

.easychat-bot-message::before {
    content: " ";
    background-size: cover;
    position: relative;
    display: flex;
    /* content: url(data:image/svg+xml,%3Csvg width='57' height='29' viewBox='0 0 57 29' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M17.4181 1.53736C16.7558 4.60218 13.8082 13.4761 1.0479 23.1785C0.391215 23.6782 0.0693552 24.5487 0.227653 25.3991C0.385986 26.2491 0.99433 26.9183 1.77857 27.1057C1.8497 27.1225 3.55848 27.5251 6.62928 27.815C15.3854 28.6416 33.4313 28.4546 56.32 18.015C58.0003 18.2708 8.98409 -5.03538 17.4181 1.53736Z' fill='white'/%3E%3C/svg%3E%0A); */
    /* transform: matrix(1, 0.09, -0.08, 1, 0, 0); */
    position: absolute;
    display: block;
    z-index: -1;
    width: 28px;
    height: 28px;
    bottom: 0;
    left: -35px;

}

#cutomer_info_form_termination {
    display: none;
    width: 100%;
    margin: 38% auto;
}

#cutomer_info_form_termination .livechat-modal-continue-btn {
    border: 0.06em solid black;
    float: left;
    border-radius: 0.5em;
    margin-top: 0.5em;
    background-color: white;
    color: black;
    cursor: pointer;
    outline: none;
}

#cutomer_info_form_termination .livechat-modal-cancel-btn {
    cursor: pointer;
    color: white;
    float: right;
    border-radius: 0.5em;
    margin-top: 0.5em;
    outline: none;
}


.livechat-modal-submit-btn {
    border-radius: 30px;
    height: 34px;
    line-height: 16px;
    margin-top: 2em;
    cursor: pointer;
    outline: none;
    padding: 10px 10px 23px 10px;
    box-sizing: border-box;
    margin-bottom: 0.25em;
    padding: 0px 12px !important;
}

.livechat-agent-modal {
    display: block;
}

.easychat-livechat-customer-attachment {
    width: 52.5%;
    float: left;
    background-color: #ffffff;
    margin: 1em 0px 3px 0px;
    padding: 4px 4px 8px 4px;
    border-radius: 0em 1em 1em 1em;
    box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.easychat-livechat-attached-video:focus {
    outline: none;
}

.easychat-livechat-user-doc-attachment {
    width: 50%;
    float: left;
    background-color: #ffffff;
    margin: 1em 0px 3px 0px;
    padding: 4px 3px 8px 4px;
    border-radius: 0em 1em 1em 1em;
    box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.2);
}

.easychat-livechat-doc-attachment-content {
    width: 100%;
}

.easychat-livechat-message {
    height: fit-content;
    padding: 13px;
    word-break: break-word;
}


.easychat-system-message {
/*
    height: auto;
    font-weight: lighter;
    font-size: 11px;
    color: #29508b;
    border-radius: 10px 10px 10px 10px;
    background-color: #d4dff1;
    word-wrap: break-word;
    display: inline-block;
    text-align: center;
    padding: 9px 19px;*/
    display: inline-block;
    word-wrap: break-word;
    font-size: 11px;
    letter-spacing: -0.02em;
    color: #0085FF;
    text-align: center;
    margin-top: 16px;
    padding: 8px 12px;
    background: rgba(0, 133, 255, 0.1);
    border-radius: 30px;
    line-height: 1.2;
    align-items: center;
    margin-bottom: 8px;
}

.easychat-system-message-line {

    line-height: 13px;
    width: fit-content;
    box-sizing: border-box;
    padding: 5px 5px;
}

.easychat-system-message-div {
    width: 100%;
    text-align: center;
    margin-top: 1em;
    display: inline-block;
}
.easychat-user-message{
    display: inline-block;
    padding: 8px 12px 10px 12px;
    /*background: #0085FF;*/
    border: none;
    border-radius: 4px;
    max-width: 300px;
    min-width: 64px;
    font-size: 14px;
    box-sizing: border-box;
    line-height: 18px;
    overflow-wrap: break-word;
    color: #fff;
}

.easychat-user-message-div {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 8px;
    justify-content: flex-end;
    margin-bottom: 8px;

}

.easychat-user-message-div a:link {
    color: white
}

.dropbtn{
    margin-top :0.5em !important;
}

.easychat-message-animation {
    animation-name: message-anime;
    animation-duration: 0.3s;
    animation-timing-function: ease;
    animation-fill-mode: forwards;
}

@keyframes message-anime {
    0% {
        opacity: 0;
        transform: translate(0, 30px);
    }
    100% {
        opacity: 1;
        transform: translate(0, 0);
    }
}

.easychat-captcha-div {
    margin: 1em 0em 3em 0em;
    width: 100%;
    1 display: inline-block;
}

.easychat-gmap-wrapper {
    margin-top: 1em;
    display: inline-block;
}

.easychat-gmap-div {
    height: 20em;
    margin: 1em 0em 1em 0em;
}

.easychat-slider-wrapper {
    width: 100%;
    margin-top: 1.2em;
    display: inline-block;
}

.easychat-video-iframe {
    width: 100%;
    border: none;
    border-radius: 1em;
    min-height: 13em;
}


.easychat-image-el {
    max-height: 100%;
    width: 100%;
    border-radius: 1em;
    object-fit: cover;
}

.easychat-card-slider-wrapper {
    margin-top: 0.2em;
    width: 100%;
    display: inline-block;
    text-align: center;
}


.easychat-slider-card {
    background-color: #F3F3F3;
    border-radius: 6px;
    color: black;
    cursor: pointer;
}

.easychat-slider-card h5 {
    font-size: 1em;
    margin-block-start: 0.3em;
    margin-block-end: 0.3em;
    padding-left: 5px;
    columns: #4d4d4d;
}

.easychat-slider-card p {
    font-size: 0.9em;
    color: #757575;
    padding-left: 5px;
}

.easychat-slider-card img {
    height: 10em;
    width: 100%;
    border-radius: 6px 6px 0em 0em;
    object-fit: cover;
}

#easychat-drag-drop-upload-btn{
    background-color: #FFFFFF !important;
    display: inline-block;
    float: right;
    padding: .5em;
    margin-left: 10px !important;
    border: none;
    outline: none;
    cursor: pointer;
    border-radius: 90px !important;
    width: 80px !important;
    font-weight: 600;
    
}

.easychat-slides-wrapper {
   
    color: #0195DA;
    
    margin-top: 1em;
        
    width: 100%;
    /* margin: auto; */
    color: #0195DA;
   
    margin-top: 1em;
    /*overflow: visible;*/
    overflow: auto;
    display: inline-block;
    white-space: nowrap;
    position: relative;

}

#easychat-navbar {
    position: fixed;
    z-index: 997;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
}

#easychat-navbar-wrapper {
  
     width: 100%;
    height: 58px;
    /*line-height: 60px;*/
    border-radius: 5px 5px 0px 0px;
    padding: 0 10px;
    display: flex;
    align-items: center;
    background: #316fe7;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    color: #4D4D4D;
    border-bottom: 1.5px solid #F2F2F2;
}
#easychat-footer {
     position: absolute;
    bottom: 1.1rem;
    left: 0;
    right: 0;
    color: #808080;
    display: flex;
    /*height: fit-content;*/
    height: 0px;
    box-sizing: border-box;
    min-height: 3.4rem;
    background: #F0F7FF;
    border: 2px solid rgba(211, 231, 255, 0.5);
    border-radius: 30px;
    margin: 0rem 0.8rem;
    align-items: center;
}
#user_input_div {
    float: left;
    overflow: hidden;
    width: 72%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#user_input_div #user_input {
    width: 100%;
    background: transparent;
    border: none;
    font-size: 14px;
    padding-left: 1rem;
    color: #2D2D2D;
}

#user_input_div #user_input:focus {
    border: none;
    outline: none;
    background: white !important;
}

#easychat-footer:focus-within {
    background: white !important;
    border: 2px solid #0067DD;
}

#easychat-footer:hover {
    border: 2px solid #0067DD;
}



#easychat-mic-div {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 1.5rem;
    cursor: pointer;
    padding-right: 0px !important;
}

#easychat-query-submit-div {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 1.5rem;
    cursor: pointer;
}
#easychat-footer svg {
    width: 1.5rem;
    height: 1.5rem;
}
#easychat-img-div-previous{
    padding-right: 0px !important;
}
#easychat-restart-div {
    display: flex;
    align-items: center;
    width: 4.8rem;
    height: 100%;
    justify-content: center;
    border-right: 2px solid #E2EFFF;   
}



#easychat-user-query {
    border: white !important;
}

#user_input:focus {
    box-shadow: none !important;
    outline: none;
}

/*.easychat-bot-message {
    float: left;
    min-width: 10%;
    max-width: 75%;
    height: auto;
    font-size: 14px;
    color: #262626;
    border-radius: 2em;
    background-color: #EBEDF0;
    word-wrap: break-word;
    display: inline-block;
    margin-left: 35px;
}*/
.easychat-bot-message {
    display: inline-block;
    padding: 8px 12px 10px 12px;
    background-color: #FFF;
    border: 1px solid #e6e6e6;
    border-radius: 4px;
    /*max-width: 300px;
    min-width: 64px;*/
    width: 100%;
    font-size: 14px;
    box-sizing: border-box;
    line-height: 18px;
    overflow-wrap: break-word;
    color: #000000;
    font-weight: 500;
}
.easychat-bot-message-wrapper{
    max-width: 300px;
    min-width: 64px;
}
@media screen and (min-width: 425px) {
    .easychat-bot-message {
        width: fit-content;
        max-width: 80%;
    }
}

.easychat-bot-message-line {
    line-height: 20px;
    position: relative;
}

.easychat-bot-message-line p {
    margin: 0px !important;
}

/*.easychat-user-message {
    box-shadow: -1px 1px 5px rgba(0, 0, 0, 0.2);
    float: right;
    height: auto;
    max-width: 80%;
    font-size: 14px;
    color: white;
    border-radius: 2em;
    word-wrap: break-word;
    display: inline-block;
    margin-right: 0.3em;
}*/

.easychat-datepicker-container {
    display: flex;
    margin: 2rem 0rem;
}

.easychat-datepicker {
    border: 0.5px solid #E6E6E6;
    border-radius: 8px;
    margin-top: 2px;
    height: 4.2rem;
    width: 114px;
    background: #FFFFFF;
    box-sizing: border-box;
    outline: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 400;
    color: #4D4D4D;
    margin-right: 7px;
    text-align: center;
}

.easychat-datepicker:focus {
    border: 0.5px solid #0085FF;
    box-shadow: 0px 4px 5px rgba(0, 0, 0, 0.08);
}


.easychat-datepicker-container {
    display: flex;
    margin: 2rem 0rem;
}

.easychat-datepicker {
    border: 0.5px solid #E6E6E6;
    border-radius: 8px;
    margin-top: 2px;
    height: 42px;
    width: 125px !important;
    /*margin-left: 5px;*/
    background: #FFFFFF;
    box-sizing: border-box;
    outline: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 400;
    color: #4D4D4D;
    margin-right: 7px;
    text-align: center;
}
#livechat-chatbot-comment-box{
    color: #4d4d4d !important;
    padding: 5px;
}
.easychat-datepicker:focus {
    border: 0.5px solid #0085FF;
    box-shadow: 0px 4px 5px rgba(0, 0, 0, 0.08);
}

.easychat-datepicker-div {
    width: 40% !important;
    font-size: 14px;
    font-weight: 500;
    color: #2D2D2D;
    text-align: left;
}

.easychat-timepicker-container {
    display: flex;
    margin-bottom: 2em;
}

.easychat-timepicker {
    border: 0.5px solid #E6E6E6;
    border-radius: 8px;
    margin-top: 2px;
    height: 4.2rem;
    width: 114px;
    background: #FFFFFF;
    box-sizing: border-box;
    outline: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 400;
    color: #4D4D4D;
    margin-right: 7px;
    text-align: center;
}

.easychat-timepicker:focus {
    border: 0.5px solid #0085FF;
    box-shadow: 0px 4px 5px rgba(0, 0, 0, 0.08);
}

.easychat-timepicker-div {
    width: 39% !important;
    font-size: 14px;
    font-weight: 500;
    color: #2D2D2D;
    text-align: left;
    margin-left: 0.4em;
}

.easychat-user-message-line {
    line-height: 16px;
    padding: 10px 23px !important;
}

.message-time-bot {
    font-size: 9px;
    text-align: right;
    /*display:none;*/
    width: 100%;
    color: #757575;
    /*float: right;*/
    /*margin-right: 17px;
    margin-left: 36px;*/
    /*margin: 6px 0px 1px 8px;*/
    margin-top: 6px !important;
}

.message-time-user {
    font-size: 11px;
    box-sizing: border-box;
    /* display: none; */
    color: #ffffff;
    position: relative;
    bottom: -4px;
    margin-left: 10px;
    float: right;
    text-align: right;
    width: 100%;
    margin-right: 1em;
}


#easychat-chat-container {
    background-image: url('../img/theme_2_chat_wall.svg');
    background-repeat: repeat-y;
    left: 0;
    padding: 0em 0.3em 1em 0.7em !important;
    overflow-y: auto;
    overflow-x: hidden !important;
    position: fixed;
    top: 8vh;
    width: inherit;
    box-sizing: content-box;
    padding-top: 20px !important;
}

/*#easychat-mic-div {
    float: left;
    font-size: 0.9em;
    width: 10%;
}
*/
/*#easychat-query-submit-div {
    float: right;
    font-size: 0.9em;
    width: 10%;
}*/

#easychat-mic-disable {
   float: right;
    padding-right: 1em;
    padding-top: 0.5em;
    padding-left: 0.5em;
    cursor: pointer;
    margin-left: 0px !important;
}

#user_input:disabled {
    background-color: white;
}

.easychat-datepicker-container,
.easychat-range-slider-container {
    margin-top: 0.2em;
    display: inline-block;
    width: 100%
}

.easychat-range-slider-container {
    box-sizing: border-box;
}

.easychat-recommendation-wrapper {
    margin-top: 0.5em;
    
    position: relative;
    width: fit-content;
    display: inline-block;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    /* margin-right: -4px; */
    /*padding-top: 16px;*/
}

.easychat-choices-wrapper {
    width: 100%;
    /*padding-right: 10px;*/
    /*padding-left: 35px;*/
    box-sizing: border-box;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
}
.easychat-choices:hover {
    box-shadow: 0 6px 12px rgb(0 0 0 / 20%);
    transform: translateY(-2px);
}
.easychat-feedback-wrapper {
    display: flex;
    justify-content: flex-end;
    width: 75%;
    padding-right: 10px;
    box-sizing: border-box;
    min-width: 114px;
}

.easychat-recommendation-wrapper h6 {
    font-size: 16px;
    line-height: 18px;
    margin: 46px 0px 10px 0px;
    font-weight: 500;
}

.easychat-recommendation,
.easychat-choices {
    /*border: 0.05em solid rgb(159, 56, 226);*/
    /*color: rgb(159, 56, 226);*/
    color: #316fe7;
    background-color: white !important;
    border-radius: 15px;
    font-size: 100%;
    padding: 5px 16px;
    margin: 4px 3px;
    font-weight: 400;
    cursor: pointer;
    display: inline-block;
    /*text-align: center;*/
    transition: .4s ease;
    outline: none;
    transition: 0.2s ease-out;
    outline: none;
    box-shadow: 0 3px 6px rgb(0 0 0 / 20%);
}
.easychat-recommendation:hover {
    box-shadow: 0 6px 12px rgb(0 0 0 / 20%);
    transform: translateY(-2px);
    background-color: #316fe7 !important;
    color: white;
}
.easychat-initial-question-wrapper {
    margin-top: 0.3em;
    position: relative;
    width: 100%;
    display: inline-block;
}

.easychat-initial-question-wrapper h6 {
    font-size: 16px;
    line-height: 18px;
    margin: 30px 0px 10px 0px;
    font-weight: 500;
}

.easychat-initial-question {
    width: 150px;
    height: 140px;
    background: linear-gradient(180deg, #6384FC 0%, #1C31AB 100%);
    color: white;
    background-color: none !important;
    border-radius: 22px;
    font-size: 100%;
    padding: 5px 16px;
    margin: 2px 5px;
    font-weight: 400;
    cursor: pointer;
    display: inline-block;
    outline: none;
    white-space: normal;
    box-sizing: border-box;
}

.easychat-initial-question:hover {
    transform: scale(1.03);
}

.easychat-initial-question p {
    color: white;
    font-size: 19px;
    float: left;
    margin-bottom: 15px;
}

.easychat-initial-question-div {
    display: block;
    overflow: auto;
    white-space: nowrap;
    height: 170px;
    box-sizing: border-box;
}

@media screen and (min-width: 420px) {
    .easychat-initial-question-div {
        overflow: hidden;
    }
}

.easychat-initial-question-div:hover {
    overflow: auto;
}

.easychat-initial-question-div::-webkit-scrollbar {
    background-color: transparent;
    width: 5px;
    height: 10px;
    border: none !important;
  }
  
  .easychat-initial-question-div::-webkit-scrollbar-thumb {
    background-color: #ffffff17;
    border-radius: 16px;
    /* border: 0px solid rgb(0, 0, 0); */
  }
  
  .easychat-initial-question-div::-webkit-scrollbar-button {
    display: none !important;
    border: none !important;
  }
  
  .easychat-initial-question-div::-webkit-scrollbar-track {
    background-color: transparent;
  }
  
  .easychat-initial-question-div::-webkit-scrollbar-track:hover {
    background-color: #fffafa31;
  }
  
  .easychat-initial-question-div::-webkit-scrollbar-thumb:hover {
    background-color: #EBEBFE;
    border: 1px solid #EBEBFE;
  }  


/* Track */
#easychat-chat-container::-webkit-scrollbar-track {
    /*box-shadow: inset 0 0 5px grey;
    border-radius: 10px;*/
    background-color: #fff;
}

/* Handle */
#easychat-chat-container::-webkit-scrollbar-thumb {
    /*background: #b1b1b1a3;*/
    /*border-radius: 10px;*/
    background-color: #babdc0 !important;
  border-radius: 16px !important;
  border: 1px solid #fff !important;
}

/* Handle on hover */
#easychat-chat-container::-webkit-scrollbar-thumb:hover {
    /*background: grey;*/
    background-color: #babdc0 !important;
  border: 0px solid #fff !important;
}
#easychat-chat-container::-webkit-scrollbar-track:hover {
  background-color: #f4f4f431;
}

.easychat-recommendation-wrapper-menu{
    overflow-y: hidden;
}

.easychat-recommendation-wrapper-menu:hover {
    overflow-y: auto;
}

.easychat-recommendation-wrapper-menu::-webkit-scrollbar {
    background-color: transparent;
    width: 4px;
    height: 10px;
    border: none !important;
}

/*.easychat-drop-down-container,
.easychat-check-box-container,
.easychat-radio-button-container {
    margin-left: 35px;
}*/
.radio-btn-container,
.checkbox-btn-container {
    margin: 2rem 0rem;
}
.easychat-range-slider-container {
   padding-left: 5px;
}

.easychat-check-box-container,
.easychat-radio-button-container {
    width: 75%;
}
.border-around-radio {
    background: #FAFBFF;
    border: 1px solid #0085FF;
}
.radio-btn-container-item {
    display: flex;
    /* align-items: center; */
    margin: 0.5rem 0rem;
    padding: 0.6rem 0.3rem 0.6rem 0.5rem;
    box-sizing: border-box;
    border-radius: 5px;
    width: 100%;
    /* height: 3rem; */
    max-width: 100%;
    border: 1px solid transparent;
}

.radio-btn-container-item input[type="radio"] {
    width: 1.2rem;
    height: 1.2rem;
    margin-right: 1rem;
    position: absolute;
    opacity: 1;
    pointer-events: auto;
    webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: inline-block;
    /* width: 25px; */
    /* height: 25px; */
    padding: 3px;
    background-clip: content-box;
    border: 2px solid #bbbbbb;
    background-color: transparent;
    border-radius: 50%;
}

.radio-btn-container-item input[type="radio"]:checked+label {
    color: #000000;
    font-weight: 500;
}

.hello:checked+.radio-btn-container-item {
    background: #FAFBFF;
    border: 1px solid #0085FF;
}

.radio-btn-container-item label {
    font-size: 14px;
    color: #4d4d4d;
    margin-left: 25px;
    word-break: break-word;
}
.checkbox-btn-container-item {
    display: flex;
    margin: 0.5rem 0rem;
    padding: 0.6rem 0.2rem 0rem 0.5rem;
    box-sizing: border-box;
    border-radius: 5px;
    align-items: center;
    width: 230px;
    /* height: 3rem; */
    max-width: 100%;
}

.checkbox-btn-container-item input[type="checkbox"] {
    width: 1.2rem;
    height: 1.2rem;
    position: relative;
    opacity: 1;
    pointer-events: auto;
}

.checkbox-btn-container-item label {
    font-size: 14px;
    color: #000000;
    padding-left: 1.2rem;
}

.radio-btn-container,
.checkbox-btn-container {
    margin: 2rem 0rem;
}


/* .checkbox-btn-container {
    margin-top: 50px;
    margin-left: 20px;
    margin-right: 20px;
}*/
        
.checkbox-btn-container-item {
    width: 100%;
    display: block;
    border: 1px solid transparent;
}

.checkbox-btn-container-item input[type="checkbox"] { 
    opacity: 0.00000001;
    position: absolute;
}

.checkbox-btn-container-item label {
    position: relative;
}

        .checkbox-btn-container-item label:before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            margin: 4px;
            margin-top: 0px;
            width: 1.2rem;
            height: 1.2rem;
            transition: transform 0.28s ease;
            border-radius: 3px;
            border: 1px solid #2d2d2d;
        }
        
        .checkbox-btn-container-item label:after {
            content: '';
            display: block;
            width: 10px;
            height: 5px;
            border-bottom: 2px solid #fff;
            border-left: 2px solid #fff;
            -webkit-transform: rotate( -45deg) scale(0);
            transform: rotate( -45deg) scale(0);
            transition: transform ease 0.25s;
            will-change: transform;
            position: absolute;
            top: 5px;
            left: 8px;
        }
        
        
        
        .checkbox-btn-container-item input[type="checkbox"]:checked~label::after {
            -webkit-transform: rotate(-45deg) scale(1);
            transform: rotate(-45deg) scale(1);
        }
        
        .checkbox-btn-container-item label {
            min-height: 25px;
            display: block;
            padding-left: 30px;
            padding-bottom: 5px;
            margin-bottom: 0;
            font-weight: normal;
            cursor: pointer;
            vertical-align: sub;
        }
        
        .checkbox-btn-container-item label span {
            /* position: absolute; */
            word-break: break-word;
            top: 50%;
            -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
        }
        
        .checkbox-btn-container-item input[type="checkbox"]:focus+label::before {
            outline: 0;
        }
/*
.easychat-widget-dropdown-content {
    overflow-y: auto;
}

@media screen and (min-width: 420px) {
    .easychat-widget-dropdown-content {
        overflow-y: hidden;
    }
}


.easychat-widget-dropdown-content:hover {
    overflow-y: auto;
}

.easychat-widget-dropdown-content::-webkit-scrollbar {
    background-color: transparent;
    width: 4px;
    height: 10px;
    border: none !important;
}

.dropdown-search {
    width: -webkit-fill-available !important;
    outline: none;
}


.easychat-drop-down-container {
    position: relative;
    display: inline-block;
    width: 250px;
}*/
.easychat-drop-down-container {
    width: 240px;
    max-width: unset;
}

.dropdown-search::placeholder{
    color: #2d2d2d;
}
#dropdown-arrow {
    fill: #0085FF;
}

.dropbtn svg {
    float: right;
    margin-top: 5px;
}

.flip-svg {
    transform: rotate(180deg);
}

.dropbtn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #ffffff;
    color: #000000;
    margin-top: 10px;
    padding: 10px;
    width: 100%;
    outline: none;
    font-size: 14px;
    border-radius: 10px 10px 10px 10px;
    cursor: pointer;
    border: 1px solid #0085FF;
    border-radius: 10px;
    text-align: left;
}

.easychat-display-dropdown {
    display: block !important;
}

.easychat-widget-dropdown-content {
    background-color: #fff;
    min-width: 160px;
    z-index: 999;
    display: none;
    width: 100%;
    margin-top: 0.7rem;
    margin-bottom: 0.7rem;
    border: 1px solid #e6e6e6;
    border-radius: 8px !important;
    box-shadow: 0px 4px 10px rgb(0 0 0 / 5%);
    max-height: 211px;
    overflow-x: hidden;
    width: 100% !important;
}

.dropdown-search {
    width: 100%;
    outline: none;
    height: 40px;
    border: none;
    padding-left: 1rem;
   /* border-bottom: 1px solid #BCBCBC;*/
}

.easychat-widget-dropdown-content a {
    display: flex;
    padding: 8px 12px;
    /*margin: 4px 0px;*/
    text-decoration: none;
    background: #fff;
    font-size: 13px;
    color: #000 !important;
    align-items: center;
   /* border-bottom: 0.25px solid #BCBCBC !important;*/
}

.easychat-widget-dropdown-content a input {
    width: 1.6rem;
    height: 1.6rem;
    margin-right: 1rem;
}

.easychat-widget-dropdown-content a.checked {
    background: rgba(0, 133, 255, 0.1);
}


.easychat-card {
    /* Add shadows to create the "card" effect */
    box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.2);
    transition: 0.1s;
    width: fit-content;
    float: left;
    border-radius: 1em;
    margin: 0.5em 0.5em 0.5em 0.5em;
    background-color: white;
    height: 13em;
    height: fit-content;
}

/* On mouse-over, add a deeper shadow */
.easychat-card:hover {
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
}

/* Add some padding inside the card container */
.easychat-card>.container {
    padding: 1em;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
}

.autocomplete {
    /*the container must be positioned relative:*/
    position: relative;
    display: inline-block;
}

input {
    border: 1px solid transparent;
    padding: 10px;
    font-size: 16px;
}

input[type=text] {
    width: 100%;
}

input[type=submit] {
    color: #fff;
}
#easychat-sticky-intents{
    margin-bottom: 10px !important
}
.autocomplete-items {
    position: absolute;
    border: 1px solid #d4d4d4;
    border-radius: 5px;
   border-bottom: none;
     border-top: none; 
    z-index: 99;
    bottom: 110%;
    
    width: 106%;
    left: -13px;
    
    overflow:auto;
    background-color: #fff;
    
    max-height: 15em;

}
@-moz-document url-prefix(){
    .autocomplete-items {
        left:-12px;
    }

}


.autocomplete-items div {
    padding: 10px 15px;
    cursor: pointer;
    color: #000000;
    background-color: #fff;
    font-weight: 500;
    border-bottom: 1px solid #d4d4d442;
}


.autocomplete-items div:hover {
   background-color: rgba(0, 133, 255, 0.1);
}

.autocomplete-items div strong {
    color: rgb(0, 138, 196);
}


.autocomplete-active {
    background-color: rgb(0, 138, 196) !important;
    color: #ffffff;
}

.autocomplete-active strong {
    color: white !important;
}

#img-scroll-to-bottom {
    height: 0.5em;
    position: fixed;
    bottom: 6.7em;
    right: 1.5em;
    cursor: pointer;
    margin-bottom: 50px !important;
}

::placeholder {
    /* Firefox, Chrome, Opera */
    color: #262626;
}

:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #262626;
}

::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #262626;
}

#img-mic {
    width: 13px;
    height: 18px;
    color: #808080;
}

#img-submit-query {
    width: 21px;
    height: 18px;
    color: #808080;
}

#user_input {
    width: 100%;
    font-size: 1em;
    color: #262626;
    border-radius: 3em;
    background-color: white;
    border: none;
    font-size: 14px;
    padding-left: 5px;
}

::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: -internal-light-dark(black, white);
    opacity: 1; /* Firefox */
  }
  
  :-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #262626;
  }
  
  ::-ms-input-placeholder { /* Microsoft Edge */
    color: #262626;
  }

/* Fading animation */
.fade {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 1.5s;
    animation-name: fade;
    animation-duration: 1.5s;
}

@-webkit-keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}

@keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {

    .easychat-slideshow-prev,
    .easychat-slideshow-next,
    .text {
        font-size: 11px
    }
}

.pageno-co {
    position: absolute;
    bottom: -1.3em;
    font-size: 0.7em;
    color: grey;
    width: 100%;
    text-align: center;
    
}

/* Slideshow container */
.slideshow-container {
    max-width: 1000px;
    position: relative;
    margin: auto;
}


.prev-image-video,
.next-image-video {
    left: -1em;
    cursor: pointer;
    position: absolute;
    top: 53%;
    width: auto;
    margin-top: -22px;
    font-weight: bold;
    font-size: 2em;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

.next-image-video {
    left: auto;
    right: -1em;
    border-radius: 3px 0 0 3px;
}

.easychat-recommendation-prev,
.easychat-recommendation-next {
    display: inline-block;
    background-color: #2aa4eb57;
    padding: 7px;
    color: white;
    font-weight: bold;
    border-radius: 10px;
    cursor: pointer;
    top: 20px;
    position: absolute;
}

.easychat-recommendation-prev:hover,
.easychat-recommendation-next:hover {
    background-color: #2aa4eb;
}

.easychat-recommendation-next {
    right: 10px;
}

.galleryContainer {
    display: flex;
    align-items: center;
    width: 100%;
    height: 28vh;
    max-width: 1000px;
    margin: auto;
    user-select: none;
    padding-top: 0.8em;
    box-sizing: border-box;
}

.galleryContainer .slideShowContainer {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.galleryContainer .slideShowContainer #playPause {
    width: 32px;
    height: 32px;
    position: absolute;
    background-image: url(images/playPause.png);
    background-repeat: no-repeat;
    z-index: 5;
    background-size: cover;
    margin: 5px;
    cursor: pointer;
}

.galleryContainer .slideShowContainer #playPause:hover {
    opacity: .7;
}

.galleryContainer .slideShowContainer .GallarySlidesimageHolder {
    width: 100%;
    height: 100%;
    position: absolute;
    opacity: 0;
    transform: scale(0.8, 0.9);
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    .galleryContainer .slideShowContainer .GallarySlidesimageHolder {
        top: 0px;
        left: 0px;
    }
}

.galleryContainer .slideShowContainer .GallarySlidesimageHolder img {
    width: 94%;
    margin-left: 3%;
    height: 99%;
    border-radius: 10px;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
    object-fit: fill;
}

.galleryContainer .slideShowContainer .GallarySlidesimageHolder .captionText {
    display: none;
}

.galleryContainer .slideShowContainer .leftArrow,
.galleryContainer .slideShowContainer .rightArrow {
    cursor: pointer;
    width: 1.8em;
    background: #ffffff;
    position: absolute;
    left: 2%;
    z-index: 1;
    transition: background 0.5s;
    height: 1.8em;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 1em;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.25);
}

.galleryContainer .slideShowContainer .rightArrow {
    cursor: pointer;
    left: auto;
    right: 2%;

}

.galleryContainer .arrow:hover {
    border: 3px solid #4777e6;
    border-left: none;
    border-bottom: none;
    cursor: pointer;
}

.galleryContainer .arrow {
    display: inline-block;
    border: 2px solid #0F3A9A;
    width: 8px;
    height: 8px;
    border-left: none;
    border-bottom: none;
    margin: auto;
    position: absolute;
    left: 4px;
    right: 0;
    top: 0;
    bottom: 0;
}

.galleryContainer .arrow.arrowLeft {
    transform: rotateZ(-135deg);
}

.galleryContainer .arrow.arrowRight {
    transform: rotateZ(45deg);
    right: 6px !important;
}

.galleryContainer .slideShowContainer>.captionTextHolder {
    position: absolute;
    bottom: 0;
    z-index: 1;
    color: white;
    font-size: 20px;
    text-align: center;
    width: 100%;
    background: #00000047;
    height: 50px;
    line-height: 50px;
    overflow: hidden;
}

.galleryContainer .slideShowContainer>.captionTextHolder>.captionText {
    margin: 0;
}

.galleryContainer #GallarydotsContainer {
    width: fit-content;
    height: 10%;
    text-align: center;
    margin: auto;
    padding-top: 0.5em;
    box-sizing: border-box;
    display: none;
}

.galleryContainer #GallarydotsContainer .gallary_dots {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-left: 5px;
    background-color: #bbb;
    cursor: pointer;
    transition: background-color 0.5s;
}

.galleryContainer #GallarydotsContainer .gallary_dots:first-child {
    margin-left: 0;
}

.galleryContainer #GallarydotsContainer .gallary_dots:hover,
.galleryContainer #GallarydotsContainer .gallary_dots.active {
    background-color: #0f3a9a;
    ;
}

.galleryContainer .moveLeftCurrentSlide {
    animation-name: moveLeftCurrent;
    animation-duration: 0.5s;
    animation-timing-function: linear;
    animation-fill-mode: forwards;

}

.galleryContainer .moveLeftNextSlide {
    animation-name: moveLeftNext;
    animation-duration: 0.5s;
    animation-timing-function: linear;
    animation-fill-mode: forwards;
}

.galleryContainer .moveLeftNextNextSlide {
    animation-name: moveLeftNextNext;
    animation-duration: 0.5s;
    animation-timing-function: linear;
    animation-fill-mode: forwards;
}

@keyframes moveLeftCurrent {
    from {
        transform: translate(0, 0) scale(0.8, 0.9);
        opacity: 1;
    }

    to {
        transform: translate(-67%, 0) scale(0.6, 0.7);
        opacity: 0.3;
    }
}

@keyframes moveLeftNext {
    from {
        transform: translate(67%, 0) scale(0.6, 0.7);
        opacity: 0.3;
    }

    to {
        transform: translate(0, 0) scale(0.8, 0.9);
        opacity: 1;
    }
}

@keyframes moveLeftNextNext {
    from {
        opacity: 0;
        transform: translate(150%, 0) scale(0.6, 0.7);
    }

    to {
        opacity: 0.3;
        transform: translate(67%, 0) scale(0.6, 0.7);
    }
}

.galleryContainer .moveRightCurrentSlide {
    animation-name: moveRightCurrent;
    animation-duration: 0.5s;
    animation-timing-function: linear;
    animation-fill-mode: forwards;
}

.galleryContainer .moveRightPrevSlide {
    animation-name: moveRightPrev;
    animation-duration: 0.5s;
    animation-timing-function: linear;
    animation-fill-mode: forwards;
}

.galleryContainer .moveRightPrevPrevSlide {
    animation-name: moveRightPrevPrev;
    animation-duration: 0.5s;
    animation-timing-function: linear;
    animation-fill-mode: forwards;
}

@keyframes moveRightCurrent {
    from {
        transform: translate(0, 0) scale(0.8, 0.9);
        opacity: 1;
    }

    to {
        transform: translate(67%, 0) scale(0.6, 0.7);
        opacity: 0.3;
    }
}

@keyframes moveRightPrev {
    from {
        transform: translate(-67%, 0) scale(0.6, 0.7);
        opacity: 0.3;
    }

    to {
        transform: translate(0, 0) scale(0.8, 0.9);
        opacity: 1;
    }
}

@keyframes moveRightPrevPrev {
    from {
        transform: translate(-150%, 0) scale(0.6, 0.7);
        opacity: 0;
    }

    to {
        transform: translate(-67%, 0) scale(0.6, 0.7);
        opacity: 0.3;
    }
}

.slideTextFromBottom {
    animation-name: slideTextFromBottom;
    animation-duration: 0.7s;
    animation-timing-function: ease-out;
}

@keyframes slideTextFromBottom {
    from {
        opacity: 0;
        margin-top: 100px
    }

    to {
        opacity: 1;
        margin-top: 0px;
    }
}

.slideTextFromTop {
    animation-name: slideTextFromTop;
    animation-duration: 0.7s;
    animation-timing-function: ease-out;
}

@keyframes slideTextFromTop {
    from {
        opacity: 0;
        margin-top: -100px
    }

    to {
        opacity: 1;
        margin-top: 0px;
    }
}



/* The Modal (background) */
.easychat-modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 100;
    /* Sit on top */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll if needed */
    background-color: rgb(0, 0, 0);
    /* Fallback color */
    background-color: rgba(0, 0, 0, 0.4);
    /* Black w/ opacity */
}

/* Modal Content Box */
.easychat-modal-content {
    background-color: #F0F4F7;
    border-radius: 10px;
    margin: 15% auto;
    /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 85%;
    /* Could be more or less, depending on screen size */
    text-align: left;
    padding-top: 0px !important;
    padding-bottom: 10px !important;
}
.easychat-feedback-modal-content {
    background-color: #F0F4F7;
    border-radius: 10px;
    margin: 15% auto;
    /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    /* Could be more or less, depending on screen size */
    text-align: left;
    padding-top: 0px !important;
    padding-bottom: 10px !important;
}

.easychat_customer_info_form_error_ptag {
    padding-bottom: 0px !important;
}

/* The Close Button */
.easychat-close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    padding-top: 0.3em;
}

.easychat-close:hover,
.easychat-close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}


.easychat-modal-input-element {
    width: 45%;
    display: inline-block;
}

.easychat-modal-button {
    padding: 0.4em 1em 0.4em 1em;
    border-radius: 1em;
    background-color: green;
    color: white;
}

.easychat-intent-feedback-wrapper {
    margin-top: 8px;
    max-width: 300px;
    display: inline-block;
    margin-bottom: 8px;
    min-width: 64px;
}

/*#####################   LiveChat Feedback    ###################*/


.rating-bar-container__wrapper #rating-bar-container-timer__XqPZ {
    /*height: 40px;*/
    /*width: 40px;*/
    /*transition: .5s linear;*/
    display: inline-block;
    padding: 5px;
    text-align: center;
    color: green;
    font-size: small;
}

.rating-bar-container__wrapper .rating-bar-container button {
    box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.2);
    padding: 5px;
    height: 29px;
    width: 32px;
    border: 1px solid rgb(230, 230, 230);
    border-radius: 1.5px;
    box-sizing: border-box;
    transition: .5s linear;
    margin-right: 1px;
}

.rating-bar-container__wrapper .rating-bar-container button:hover {
    cursor: pointer;
}


#rating-bar-container-timer-div {
    width: 25% !important;
}

.rating-bar-container__wrapper .rating-bar-container button:focus {
    outline: none;
}

.rating-bar-container {
    display: flex;
    justify-content: center;
}

.rating-bar-container__wrapper {
    width: 100% !important;
}

/*########################################*/



/*#################### ISEC SPECIFIC: Live stock price flow ################ */

/*New DropDown*/

.dropbtn-xy {
    background-color: #f6f6f6;
    color: rgb(231, 120, 23);
    border: 0.05em solid rgb(231, 120, 23) !important;
    padding: 8px;
    font-size: 15px;
    width: 6rem;
    border-radius: 1em;
    border: none;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.dropbtn-xy:hover, .dropbtn-xy:focus {
/* background-color: white; */
/* color: darkorange; */
   outline:none;
}

.dropdown-xy {
   position: relative;
   left: 12%;
   margin-top: 1rem;
   padding:0 10px;
   display: inline-block;
}

.dropdown-content-xy {
   display: none;
   position: absolute;
   bottom: 34px;
   right: -4px;
   border-radius: 10px;
   background-color: #f1f1f1;
   min-width: 106px;
   overflow: auto;
   box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
   z-index: 1;
}

.dropdown-content-xy a {
   color: black;
   padding: 6px 16px;
   text-decoration: none;
   display: block;
}

.dropdown-xy a:hover {background-color: #ddd;}

.show-xy {display: block;}
.hide-xy {display: none;}


/* Slideshow container */
.ls_slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* Next & previous buttons */
.ls_prev, .ls_next {
  cursor: pointer;
  position: absolute;
  top: 75%;
  width: auto;
  padding: .4em .5em;
  margin-top: -0.7em;
  color: orange;
  font-weight: bold;
  font-size: 2em;
  /*transition: 0.6s ease;*/
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.ls_next {
  right: -.3em;
  border-radius: 3px 0 0 3px;
}

.ls_prev{
  left: -0.3em;
}
/*##########################################################################*/




/*#####################   Bot Feedback    ###################*/


circle {
    cx: 60;
    cy: 60;
    r: 47;
    fill: none;
    stroke-width: 1.5em;
}

.easychat-rating-circular-bar {
    display: inline-block;
    margin: 0 15%;
    position: relative;
}

.easychat-rating-circular-bar svg {
    width: 15em;
    height: 15em;
}

.easychat-rating-circular-bar .circle-indicator {
    position: absolute;
    color: white;
    cursor: pointer;
    font-size: 1em;
}

.easychat-rating-circular-bar #easychat-rating-circular-bar-content {
    display: inline-block;
    position: absolute;
    top: 38%;
    font-size: x-large;
    left: 40%;
}

.easychat-rating-circular-bar #easychat-rating-circular-bar-content img {
    height: 3em;
}

.easychat-rating-circular-bar .circle-value:hover {
    stroke-width: 1.8em !important;
}

.easychat-rating-circular-bar .circle-value {
    stroke-dasharray: 339.292;
    stroke-dashoffset: 315.717;
    transform-origin: center;
    cursor: pointer;
}

.easychat-rating-circular-bar #value-00 {
    stroke: #b71c1c;
    transform: rotate(117deg);
    stroke-dasharray: 339.292;
}

.easychat-rating-circular-bar #value-01 {
    stroke: #d32f2f;
    transform: rotate(145deg);
}

.easychat-rating-circular-bar #value-02 {
    stroke: #f44336;
    transform: rotate(173deg);
}

.easychat-rating-circular-bar #value-03 {
    stroke: #ef5350;
    transform: rotate(201deg);
}

.easychat-rating-circular-bar #value-04 {
    stroke: #ef6c00;
    transform: rotate(229deg);
}

.easychat-rating-circular-bar #value-05 {
    stroke: #fb8c00;
    transform: rotate(257deg);
}

.easychat-rating-circular-bar #value-06 {
    stroke: #ffa726;
    transform: rotate(285deg);
}

.easychat-rating-circular-bar #value-07 {
    stroke: #fbc02d;
    transform: rotate(313deg);
}

.easychat-rating-circular-bar #value-08 {
    stroke: #ffeb3b;
    transform: rotate(341deg);
}

.easychat-rating-circular-bar #value-09 {
    stroke: #689f38;
    transform: rotate(369deg);
}

.easychat-rating-circular-bar #value-10 {
    stroke: #33691e;
    transform: rotate(397deg);
}

.easychat-rating-circular-bar #circle-indicator-0 {
    bottom: 17%;
    left: 21%;
}

.easychat-rating-circular-bar #circle-indicator-1 {
    bottom: 32%;
    left: 11%;
}

.easychat-rating-circular-bar #circle-indicator-2 {
    bottom: 51%;
    left: 10%;
}

.easychat-rating-circular-bar #circle-indicator-3 {
    bottom: 70%;
    left: 16%;
}

.easychat-rating-circular-bar #circle-indicator-4 {
    bottom: 80%;
    left: 30%;
}

.easychat-rating-circular-bar #circle-indicator-5 {
    top: 8%;
    right: 48%;
}

.easychat-rating-circular-bar #circle-indicator-6 {
    top: 12%;
    right: 30%;
}

.easychat-rating-circular-bar #circle-indicator-7 {
    top: 25%;
    right: 16%;
}

.easychat-rating-circular-bar #circle-indicator-8 {
    bottom: 49%;
    right: 11%;
}

.easychat-rating-circular-bar #circle-indicator-9 {
    bottom: 31%;
    right: 13%;
}

.easychat-rating-circular-bar #circle-indicator-10 {
    bottom: 17%;
    right: 22%;
}

@media only screen and (max-device-width: 420px) {
    .easychat-rating-circular-bar {
        margin: unset
    }

    .easychat-rating-circular-bar svg {
        width: 280px;
        height: 280px;
    }

    .easychat-rating-circular-bar .circle-indicator {
        font-size: 25px;
    }

    .easychat-rating-circular-bar #easychat-rating-circular-bar-content img {
        height: 60px;
    }
}


/*##################### Attachment-module ###################*/

.easychat-dragdropAlertMsgClose__XPS {
    padding: 0px 8px;
    cursor: pointer;
    text-align: center;
    background-color: white;
    margin-left: 8px;
    border-radius: 50%;
    height: 18px;
    width: 18px;
    position: relative;
}

.easychat-dragdropContainer__XPS {
    width: 85%;
    margin-top: 1em;
    position: relative;
    margin: auto;
    margin-bottom: 2em;
}

.easychat-dragdropContainer__XPS .easychat-dragdrop__XPS {
    border-radius: 5px;
    width: 100%;
    box-sizing: border-box;
    background-color: white;
    margin: auto;
    box-shadow: 4px 4px 5px rgba(0, 0, 0, 0.2);
    margin-top: 1em;
    min-height: 180px;
    height: auto;
}

.easychat-dragdropContainer__XPS .easychat-dragdrop__XPS input {
    height: 100%;
    outline: none;
    opacity: 0;
    width: 100%;
    box-sizing: border-box;
    min-height: 180px;
    height: auto;
    padding: 0px;
}

.easychat-dragdropContainer__XPS #easychat-dragdropSuccessfulMSG__XPS {}

.easychat-dragdropContainer__XPS .easychat-dragdropMsg__XPS {
    display: flex;
    position: absolute;
    width: 100%;
    height: 100% !important;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    text-align: center;
}

.easychat-dragdropContainer__XPS .easychat-dragdropafterSelect__XPS {
    margin-top: .7em;
    align-items: center;
}

.easychat-dragdropContainer__XPS .easychat-dragdropafterSelect__XPS #easychat-dragdropAlertMsg__XPS {
    width: 65%;
    word-break: break-all;
    display: none;
    padding: .5em;
    color: #fff !important;
    font-weight: 600;
    align-items: center;
}

.easychat-dragdropContainer__XPS .easychat-dragdropafterSelect__XPS #easychat-dragdropUploadBTN__XPS {
    display: none;
    float: right;
    padding: .5em;
    border: none;
    color: white;
    border-radius: 90px;
    cursor: pointer;
    outline: none;
    background-color: #FFFFFF !important;
    width: max-content;
    font-weight: 600;
}

.easychat-dragdropContainer__XPS .easychat-dragdropMsg__XPS p{
    width: 95%;
}
/*########################################*/


.easychat-bot-table {
    /*width: fit-content;*/
    /*width: -moz-fit-content;*/
    max-width: 90%;
    min-width: 95%;
    table-layout: fixed;
    margin: 0.3em auto;
    box-sizing: border-box;
    text-align: center;
    border-radius: 5px;
    padding: 5px;
    margin-bottom: 0.3em;
    border-spacing: 1px;
    background-color: white;
    box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.2);
}

.easychat-bot-table th {
    color: white;
    padding: 8px;
}

.easychat-bot-table td {
    padding: 6px;
    background-color: #95999929;
    color: #1415159e;

}

.getFunds {
    width: 98%;
    border-radius: 10px;
    font-weight: 30px;
    background-color: gainsboro;
    border: none;
    color: black;
    text-align: center;
    text-decoration: none;
    display: block;
    font-size: 12px;
    margin: 10px 2px;
    cursor: pointer;
    padding: 10px 12px;
}

.getFunds:hover {
    background-color: #2aa4eb !important;
    color: white !important;
}

/*td:hover {
    background-color: #2aa4eb;
    color: white;
    display: block;
    border-radius: 25px;
}*/

.getFundChoices {

    padding: 10px;
    border: 1px solid #2aa4eb;
    border-radius: 10px;
    margin: 8px 0px;
}

.getFundChoices:hover {
    background-color: #2aa4eb;
    color: white;
}


/*#####################   View more/less   ###################*/
.easychat-show-less-text {
    max-height: 301px;
    height: unset;
    overflow-y: hidden;
    transition: max-height 0.2s ease;
    padding-right: 2px;
    /*padding: 10px 23px;*/
}

.easychat-expand-text {
    max-height: inherit !important;
    height: max-content !important;
    overflow-y: auto;
    transition: max-height 0.5s ease-in;
}

div#easychat-sticky-intents::-webkit-scrollbar {
    display: none;
}

#easychat-sticky {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    color: #808080;
    display: flex;
    flex-direction: column;
    color: black;
    padding: 5px 10px 0px 10px;
    height: initial;
    padding-bottom: 40px;
    box-sizing: border-box;
    background-color: #f6f6f6;
}
@media screen and (-webkit-min-device-pixel-ratio:0) {
/* this will target only Mac Safari and Chrome browsers */
    #sticky-div { 
    margin-bottom: 2px;
    }
}

#chatbot_feedback_comment_box textarea {
    margin-top: 10px;
    padding: 10px 0px 10px 5px !important;
    color: #2d2d2d !important;
}


#chatbot_feedback_comment_box textarea:focus {
    box-shadow: 0 0 0 3px rgba(52, 56, 255, 0.1) !important;
    border: 1px solid #204DAF;
    outline: none !important;
    transition: all 0.2s ease;
}

/*#chatbot_feedback_comment_box {
    padding: 0 30px !important;

}*/

#easychat-exit-app-feedback {
    margin: 0 !important;
    align-self: center !important;
    text-align: center;
    margin-bottom: 0.5em !important;
    margin-top: 1em !important;
    z-index: 101;
}

.easychat-modal-content {
    position: relative !important;
    text-align: center !important;
    background: #fff !important;
    border: none !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    .easychat-modal-content{
        margin: 0%;
    }
    .easychat-intent-feedback-cmt-wrapper{
        margin-bottom: 10px;
    }
}
.easychat-feedback-modal-content {
    position: relative !important;
    text-align: center !important;
    background: #fff !important;
    border: none !important;


}

#model-feedback-header {
    margin: 20px auto !important;
    text-align: left;
    padding-top: 1em;
    margin-bottom: 0 !important;
}

#submit-feedback {
    cursor: pointer;
    background: inherit !important;
    border-radius: 30px !important;
    float: unset !important;
}

#submit-feedback:focus {
    outline: none;
}

/*#easychat-powered-by-div{
    padding-top : 8px;
    text-align: center;
    line-height: 5px;
    display: none;
    margin-bottom: 1px;
}

#easychat-connect-with-agent{
    color: #ad4567 !important;
    cursor: pointer;
}

#easychat-powered-by-div h6,
#easychat-powered-by-div span{
    margin-block-start: 0em;
    margin-block-end: 0em;
    display: inline;
    color: #ce0000;
}
#easychat-powered-by-div-logo{color: #f7900d !important;}
*/
#easychat-powered-by-div {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0%);
}

/* Customer form UI changes */

#main-container {
    position: fixed;
    max-width: 100%;
    /*width: 398px;*/
    /*height: 85vh;*/
    overflow: hidden;
    right: 10px;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.1);
    pointer-events: auto;
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    /*display: none;*/
    z-index: 100;
    animation-fill-mode: forwards;
    animation-timing-function: ease;
    animation-duration: 1s !important;
}
@media screen and (min-width: 767px) {
   /* #main-container {
        width: 97.5%;
        height: 99% !important;
        max-height: 100%;
        right: 5px;
    }*/
    #easychat-sticky{
        bottom: 2.4rem !important;
    }
    #easychat-footer{
        bottom: 4.5rem;
    }
    #easychat-powered-by-div{
        bottom: 3rem;
    }
}

#main-container .head-text {
    width: 100%;
    height: 58px;
    line-height: 60px;
    border-radius: 5px 5px 0px 0px;
    padding: 0 10px;
    display: flex;
    align-items: center;
    background: #FAFAFA;
    font-style: normal;
    font-weight: bold;
    font-size: 14px;
    color: #4D4D4D;
}

#main-container .head-text .heading-text-content {
    padding-left: 1.2rem;
}

.easychat-customer-input {
    width: 100%;
    margin-top: 1.5em;
    background: #FFFFFF;
    border: 1px solid #E6E6E6;
    box-sizing: border-box;
    border-radius: 5px; 
    outline: none;
}

select.easychat-customer-input {      
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    min-height: 36px;
    max-height: 80px;
    font-size: 16px;
    padding-left: 0.6em;
    background-image:
        linear-gradient(45deg, transparent 50%, #C4C4C4 50%),
        linear-gradient(135deg, #C4C4C4 50%, transparent 50%),
        radial-gradient(white 70%, transparent 72%);
    background-position:
        calc(100% - 20px) calc(1em + 2px),
        calc(100% - 15px) calc(1em + 2px),
        calc(100% - .5em) .5em;
    background-size:
        5px 5px,
        5px 5px,
        1.5em 1.5em;
    background-repeat: no-repeat;
}

.easychat-customer-modal-cancel-btn {
    background-color: inherit;
    border-radius: 30px;
    height: 34px;
    line-height: 16px;
    margin-top: 2em;
    cursor: pointer;
    outline: none;
    box-sizing: border-box;
    padding: 0px 12px;
}

.easychat-form-div {
    position: relative;
}

.easychat-form-div .placeholder{
    position: absolute;
    top: 36px;
    left: 14px;
     color: #B1B1B1;
     /*display: none;*/
}

.placeholdercat{
    margin-top: 3px;
}

.easychat-form-div label{
    font-weight: normal;
    color: #B1B1B1;
    cursor: text;
} 

.easychat-form-div .star{
     color: red;
}

span.livechat-doubletick {
    font-size: 9px;
    float: right;
    text-align: right;
    width: 100%;
}

div#easychat-sticky-end-chat::-webkit-scrollbar {
    display: none;
}

#easychat-end-chat {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    color: #808080;
    display: flex;
    flex-direction: column;
    color: black;
    padding: 5px 10px 0px 10px;
    height: fit-content;
    padding-bottom: 40px;
    box-sizing: border-box;
}

#easychat-form-container span.select2.select2-container.select2-container--default{
    margin-top: -10px;
}

.select2-container {
    padding-top: 1.5em !important;
}

.select2-container--default .select2-selection--single {
    width: 100%;
    background: #FFFFFF;
    border: 1px solid #E6E6E6 !important;
    box-sizing: border-box !important;
    border-radius: 30px !important; 
    outline: none;  
    height: 42px !important;  
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    margin-left: -1em !important;
    margin-top: 1.7em !important;
}

.select2-container .select2-selection--single .select2-selection__rendered {
   
    font-size: 16px;
    color: black !important;
    padding-top: 0.2em;
    background: #FFF;
    border: 1px solid #D9D9D9;
    box-sizing: border-box;
    border-radius: 5px;
    height: 40px;
    padding-top: 4.5px;
}

.select2-dropdown {
    top: 5px !important;
    border-radius: 5px !important;
    padding: 10px !important;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.15);
    border: none !important;
}


.select2-search--dropdown {
    display: flex !important;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border: none !important;
    box-shadow: 0px 0px 1px #3c47c2 !important;
    margin-top: 0.5rem !important;
    margin-left: auto;
    margin-right: auto;
    width: 90% !important;
    border-radius: 20px;
    outline: none;
    padding-left: 15px;

}

.select2-results__options {
    display: flex;
    flex-flow: column;
    align-items: center;
    scrollbar-width:  thin;
}

.select2-dropdown li {
    margin: 6px 6px;
    border-radius: 20px !important;
    width: 90%;
    padding-left: 20px;
}

#easychat-powered-by-div a {
    font-size: 0.67em;
    text-decoration: none;
    background-clip: content-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
	background-size: 200% 100%;
	background-position: 100%;
}

.select2-container--default .select2-selection--single .select2-selection__clear {
    display: none !important;
}

/* Tooltip container */
.tooltip {
    position: relative;
    display: inline-block;
  }

  /* Tooltip text */
  .tooltip .tooltiptext {
    visibility: hidden;
    background-color: #555;
    color: #fff;
    text-align: center;
    padding: 5px 10px 5px 10px;
    border-radius: 6px;

    /* Position the tooltip text */
    position: absolute;
    z-index: 1001;
    bottom: 100%;

    /* Fade in tooltip */
    opacity: 0;
    transition: opacity 0.3s;
  }

  /* Tooltip arrow */
  .tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
  }

  /* Show the tooltip text when you mouse over the tooltip container */
  .tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
  }

  .tooltip .tooltiptextbottom {
    visibility: hidden;
    width: max-content;
    background-color: #555;
    color: #fff;
    text-align: center;
    padding: 5px 10px 5px 10px;
    border-radius: 6px;

    /* Position the tooltip text */
    position: absolute;
    z-index: 1001;
    top: 100%;

    /* Fade in tooltip */
    opacity: 0;
    transition: opacity 0.3s;

    max-width: 80px;
    line-height: 1.2;
    height: max-content;
    word-break: break-all;
  }

  /* Tooltip arrow */
  .tooltip .tooltiptextbottom::after {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent #555 transparent;
  }

  .tooltip:hover .tooltiptextbottom {
    visibility: visible;
    opacity: 1;
  }

  .tooltip .tooltiptextleft {
    visibility: hidden;
    width: fit-content;
    background-color: #555;
    color: #fff;
    text-align: center;
    padding: 5px 10px 5px 10px;
    border-radius: 6px;

    /* Position the tooltip text */
    position: absolute;
    z-index: 1001;
    right: 125%;

    /* Fade in tooltip */
    opacity: 0;
    transition: opacity 0.3s;
  }

  /* Tooltip arrow */
  .tooltip .tooltiptextleft::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 100%;
    margin-top: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent transparent #555;
  }

  .tooltip:hover .tooltiptextleft {
    visibility: visible;
    opacity: 1;
  }


 ::-webkit-scrollbar {
    width: 7px;
    height: 7px;
  }

  ::-webkit-scrollbar:hover {
      display: block;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    border-radius: 10px;
  }
   
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.6); 
  }

  .easychat-datepicker-container {
      display: flex;
  }

  .easychat-datepicker-container div {
      width: 50%;
  } 

  .spinner {
    padding: 12px;
    font-size: 18px;
    font-weight: 400;
    width: 420px;
    margin-top: 5px;
    background: transparent;
    width: 30%;
    text-align: center;
    display: inline-block;
    border-radius: 60px;
    position: absolute;
    bottom: 0px;
    left: 12px;
    padding: 5px;
    position: relative;
  }
  
  .spinner div {
    width: 10px;
    height: 10px;
    background-color: #2d4cb8;
    border-radius: 100%;
    display: inline-block;
    -webkit-animation: loadingEffect 1.4s infinite ease-in-out both;
    animation: loadingEffect 1.4s infinite ease-in-out both;
    margin-right: 5px;
  }

  .spinner .bounce1 {
    animation-delay: -0.32s;
  }

  .spinner .bounce2 {
    animation-delay: -0.16s;
  }

  @keyframes loadingEffect {
    0%, 80%, 100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    40% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
  }

  .card-background {
    height: 9em;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    border-radius: 1em 1em 0em 0em;
  }

  .recommendations-menu-border {
    border: 1px solid #eee;
    width: 95%;
    margin-top: 0px;
    margin-bottom: 0px;
  }

  /* tooltip fix for IE */
  @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    #tooltiptext-microphone {
        margin-left: -4em;
    }

    #tooltiptext-home {
        margin-left: -3.4em !important;
    }

    #tooltiptext-send {
        margin-left: -3.4em;
    }

    #tooltiptext-minimize {
        margin-left: -3em;
    }

    #tooltiptext-language {
        margin-left: -3em;
    }
 }

 #easychat-sticky-end-chat {
    margin-bottom: 2.6em !important;
    background-color: #fff;
 }
 #feedback_wrapper{
    width: 100% !important;
    margin-bottom: 3em !important;
 }
 #livechat_queue{
    width: 100% !important;
 }
 .easychat-intent-feedback-cmt-wrapper {
    box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.2);
    float: left;
    width: auto;
    height: auto;
    font-size: 14px;
    color: #262626;
    border-radius: 0px 10px 10px 10px;
    background-color: #ffffff;
    padding-bottom: 10px;
    word-wrap: break-word;
    display: inline-block;
    line-height: 20px;
    padding: 0.8em 0.5em 0.8em 0.5em;
}

/*  Sticky Intents Menu Css */
.easychat-sticky-menu {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1%;
    transition: all 0.2s ease-out;
    /*margin-left: 5px;*/
}

.easychat-sticky-menu-items {
    display: flex;
    flex-direction: column;
    width: 0;
    height: 0;
    max-height: 150px;
    transition: max-height 1s ease-out;
}
.easychat-sticky-menu-items-show {
    width: 100%;
    height: fit-content;
    height: -moz-fit-content;
}
@media screen and (min-width:0\0) {
        /*css for internet explorer*/
        .easychat-sticky-menu-items-show {

            height: auto;
        }

    }

.easychat-sticky-menu-items:hover {
    overflow: auto;
}

.easychat-sticky-menu-item {
    padding: 5px 0px;
    padding-left: 5px;
}


.easychat-sticky-menu-item:hover {
    background: #E4EAFF;
    cursor: pointer;
}

.arrow_up, .arrow_down {
    cursor: pointer;
}


.easychat-sticky-menu-items::-webkit-scrollbar {
    background-color: transparent;
    width: 5px;
    height: 10px;
    border: none !important;
  }
  
  .easychat-sticky-menu-items::-webkit-scrollbar-thumb {
    background-color: #ffffff17;
    border-radius: 16px;
    /* border: 0px solid rgb(0, 0, 0); */
  }
  
  .easychat-sticky-menu-items::-webkit-scrollbar-button {
    display: none !important;
    border: none !important;
  }
  
  .easychat-sticky-menu-items::-webkit-scrollbar-track {
    background-color: transparent;
  }
  
  .easychat-sticky-menu-items::-webkit-scrollbar-track:hover {
    background-color: #fffafa31;
  }
  
  .easychat-sticky-menu-items::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.3);
  }  

  ol, ul {
    margin-top: 0.6em;
    margin-bottom: 0.6em;
  }

  /* Form widget */
  .easychat-form-container {
    /*border: 1px solid #e6e6e6;
    border-radius: 6px;
    margin: 10px 20px;
    padding: 0px 10px 10px 10px;*/
    /*background-color: #FBFBFB;*/
    background: #FFFFFF !important;
    border: 1px solid #E6E6E6 !important;
    box-sizing: border-box;
    border-radius: 4px !important;
  }

  .easychat-form-container h5 {
    text-align: center;
    margin: 18px;
    font-weight: 500 ;
    font-size: 15px;
  }


.easychat-form-input {
    width: 100%;
    margin-top: 0.7em;
    box-sizing: border-box;
    outline: none;
    /*background: #FDFDFD !important;*/
    border: 1px solid #D9D9D9 !important;
    border-radius: 5px !important;
}

.easychat-form-input::placeholder {
    /* Firefox, Chrome, Opera */
    color: #4d4d4d !important;
    font-weight: 400;
    opacity: 0.7;
}
.select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #2d2d2d !important;
    font-weight:400;
}

.easychat-form-input:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #262626;
}

.easychat-form-input::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #262626;
}

#easychat-form-container label {
    color: #4d4d4d;
    font-size: 13px;
    font-weight: 700 !important;
}

#customer_info_form_modal .select2-dropdown {
    top: 20px !important;
}
#customer_info_form_modal{
    overflow-y:auto !important;
}
#customer_info_form_modal .easychat-modal-content{
    overflow-y:auto !important;
    height: auto !important;
    scrollbar-width: thin;
}
.input-field-custom {
    margin-bottom: 26px;
}

.easychat-form-label {
    color: #4d4d4d;
    margin-left: 10px;
    font-weight: 600;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
}

.easychat-form-value {
    color: #2d2d2d;
    font-size: 13px;
    margin-left: 10px;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
}

input[type="button"], input[type="submit"], input[type="text"] {
    -webkit-appearance: none;
}
@media screen and (min-width:0\0) {
        /*css for internet explorer*/
        #max-file-size-allowed-message { 
            margin-top: 3em !important;
            left: 20%;
        }
        .easychat-customer-modal-cancel-btn{
            background-color: #fbfbfb;
        }
        .easychat-initial-question-div{
            margin-bottom: 1em;
        }
    }
#dropdown-search-input-container{
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
}
@media screen and (max-height: 560px) {
    #customer_info_form_modal {
        align-items: unset !important;
    }
    #customer_info_form_modal .easychat-modal-content {
        margin: 17% auto !important;
        max-height: 400px !important;
    }
} 
#livechat-agent-category-div .select2-container {
    width: 100% !important;
}
#livechat-agent-category-div .select2-container--default .select2-selection--single{
    border: none !important;

}

#feedback-form-title{
    margin-top: 12px;
}
 @-moz-document url-prefix() {
    #livechat-chatbot-comment-box {
        margin-bottom: 4px;
    }
} 

/* Form Widget Css */

.easychat-form-container .easychat-range-slider {
    padding: 0;
    margin: 10px;
}

.form-uploaded-file {
    display: flex;
    align-items: center;
    border: 1px solid #981600;
    width: fit-content;
    padding: 10px 10px;
    border-radius: 5px;
    margin-left: -1.8em;
    background-color: #981600;
    color: white;
}

.form-uploaded-file p {
    margin-left: 15px;
    word-break: break-word;
}

.easychat-form-container .easychat-form-widget-file-alert {
    display: flex;
    align-items: center;
    justify-content: center;
}

.easychat-form-container .easychat-dragdropContainer__XPS {
    padding-top: 10px;
}

.easychat-form-container .easychat-range-slider-container {
    padding-top: 5px;
}

.easychat-dragdropContainer__XPS .easychat-dragdropafterSelect__XPS .easychat-form-widget-file-alert {
    width: 65%;
    word-break: break-all;
    display: none;
    padding: .5em;
    font-weight: 600;
    color: #fff !important;
}

.easychat-dragdropContainer__XPS .easychat-dragdropafterSelect__XPS .easychat-form-widget-upload-btn {
    display: none;
    float: right;
    padding: .5em;
    border: none;
    color: white;
    border-radius: 90px;
    cursor: pointer;
    width: max-content;
    font-size: 15px;
    font-weight: 500;
    background-color: #fff;
}

/* Form Widget Css Ends */

#livechat-agent-category-div .select2-container {
    z-index: 10;
}

#livechat-agent-category-div .select2-container--default .select2-selection--single {
    background: transparent;
}

#livechat-agent-category-div .select2-container--default .select2-selection--single .select2-selection__rendered {
    background: transparent;
}

/* css for language start*/
        
.tooltip .tooltiptextbottom {
    white-space: inherit;
}

.bot-language-icon {
    position: relative;
    cursor: pointer;
    display: flex;
    justify-content: center;
    height: 28px;
    width: 1.65em;
    float: right;
    padding: 0.2em;
}

.language-dropdown-container {
    position: absolute;
    cursor: pointer;
    display: flex;
    justify-content: center;
    height: 28px;
    width: 28px;
    border-radius: 50%;
    float: right;
    background: white;
    right: 17%;
    padding: 0.2em;
}

.language-dropdown-content::after {
    content: "";
    border: 10px solid transparent;
    border-left-color: #f1f1f1;
    border-top-color: #f1f1f1;
    position: absolute;
    border-radius: 3px;
    top: -8px;
    right: 4px;
    -webkit-transform: rotate( 45deg);
    transform: rotate( 45deg);
    z-index: 1002;
}

.language-dropdown-content:not(.is-active) {
    display: none;
}

.language-dropdown-content {
    position: absolute;
    background-color: #f1f1f1;
    min-width: 115px;
    text-align: left;
    overflow: visible;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    top: 42px;
    right: 0px;
    border-radius: 3px;
}

.language-dropdown-items {
    overflow-y: auto;
    overflow-x: hidden;
    max-height: 335px;
    width: 100%;
    padding: 5px 0px;
}

.language-dropdown-content a {
    color: black;
    padding: 6px 16px;
    text-decoration: none;
    display: block;
}
.language-dropdown-container a:hover {
    background-color: #ddd;
}

.show {
    display: block;
}

@media screen and (max-width: 419px) {
    .bot-minimize-button {
        right: 3.2rem;
    }
    .bot-close-button {
        display: flex;
        right: 0.4rem;
    }
    .language-dropdown-container {
        right: 6.1rem;
    }
}

 @media screen and (min-width: 321px) and (max-width: 375px){
#easychat-navbar-wrapper .bot-name-container {
    left: 42% !important;
}}

@media screen and (max-width: 320px){
    #easychat-navbar-wrapper .bot-name-container{
    left:36% !important;
    }
    } 
/* css for language end*/

@media screen and (max-width:419px) {
    #select2-livechat-agent-category-results {
        max-height: 90px;
        scrollbar-width:  thin;
    }
}
.livechat-cross-btn-svg{
    position: absolute;
    top: 50%;
    /* left: 50%; */
    transform: translate(-50%, -50%);
}
#easychat-drag-drop-alert-msg{
    display: flex !important;
}
@media only screen and (max-width: 415px) {
    .tooltiptext {
        display: none;
    }
    .tooltiptextbottom {
        display: none;
    }
} 
/* ipad potrait */
@media screen and (min-device-width: 481px) and (max-device-width: 1024px) and (orientation:portrait) {
    .tooltiptext {
        display: none;
    }
    .tooltiptextbottom {
        display: none;
    }
}

/* iPad Landscape */
@media screen and (min-device-width: 481px) and (max-device-width: 1024px) and (orientation:landscape) {
    .tooltiptext {
        display: none;
    }
    .tooltiptextbottom {
        display: none;
    }
}
.easychat-user-message-image-container img{
    height: 100%;
    width: 100%;
    border-radius: 1em;
    object-fit: cover;
    /* cursor: pointer; */
}
.easychat-user-message-image-container{
    float: right;
    width: 50%;
    background-color: #ffffff;
    margin: 1em 0px 3px 0px;
    padding: 4px 4px 8px 4px;
    border-radius: 0em 1em 1em 1em;
    box-shadow: 1px 1px 6px rgb(0 0 0 / 20%);
    cursor: pointer;

}
#preview-big-image{
    width: 90%;
    height: 330px;
    position: absolute;
    object-fit: fill;
    object-position: center;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
}
#preview-big-image-cross-button{
    position: absolute;
    top: 18%;
    right: 0.5em;
    height: 25px;
    width: 25px;
    cursor: pointer;
}
.easychat-customer-attchment-file-name-div{
    white-space: nowrap;
    width: 80%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
}
.easychat-user-message-video-container{
    width: 60%;
    float: right;
    background-color: #ffffff;
    margin: 1em 0px 3px 0px;
    padding: 4px 4px 8px 4px;
    border-radius: 0em 1em 1em 1em;
    box-shadow: 1px 1px 6px rgb(0 0 0 / 20%);
}
.livechat-agent-attchment-name-wrapper{
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.easychat-user-message-doc-container{
    width: 50%;
    float: right;
    background-color: #ffffff;
    margin: 1em 0px 3px 0px;
    padding: 4px 3px 8px 4px;
    border-radius: 0em 1em 1em 1em;
    box-shadow: 1px 1px 6px rgb(0 0 0 / 20%);
}
@media  screen and (max-width: 320px){

    .easychat-dragdropContainer__XPS {
        width:95%;
    }
    
}
.easychat-dragdropafterSelect__XPS{
    min-width: 280px;
}
/* for iphone 12 mini */
@media only screen 
    and (device-width: 375px) 
    and (device-height: 812px) 
    and (-webkit-device-pixel-ratio: 3) { 
        .easychat-dragdropafterSelect__XPS {
            min-width: 315px;
        }
}
/* for iphone 12 pro and pro max */
@media only screen 
    and (device-width: 390px) 
    and (device-height: 844px) 
    and (-webkit-device-pixel-ratio: 3) {
        .easychat-dragdropafterSelect__XPS {
            min-width: 315px;
        }
}

@media only screen and (max-width: 415px) {
    #easychat-dragdropUploadBTN__XPS {
        border-radius: 20px !important;
        word-break: break-all;
        width: 65px !important;
    }

    .easychat-form-widget-upload-btn {
        width: unset !important;
        border-radius: 20px !important;
        word-break: break-word;
    }
}

#tooltiptext-minimize {
    width: 60px;
}

#tooltiptext-language {
    word-break: break-word;
}

#tooltiptext-send {
    max-width: 60px;
    width: max-content;
    line-height: 1.2;
    height: max-content;
    word-break: break-all;
}

.feedback-submit-btn .submit-btn, .feedback-submit-btn .cancel-btn {
    width: unset !important;
    padding: 0 12px;
}

#easychat-mute-unmute-div {
    width: 18px;
    transform: translate(100%, -50%);
    position: absolute;
    top: 50%;
    cursor: pointer;
}

#tooltiptext-speaker {
    top: 150%;
    left: -115%;
    width: 50px;
    word-break: break-all;
}

@media screen and (max-width: 419px) {
    #easychat_sticky_menu_items {
        overflow-y: auto;
    }
}

.easychat-user-message-time-div span {
    letter-spacing: 0.02em;
    text-transform: capitalize;
    font-style: normal;
    font-weight: 400;
    font-size: 10px;
    line-height: 18px;
    color: #7B7A7B;
}

.easychat-user-message-time-div {
    width: 100%;
    margin-top: 6px;
    align-items: center;
    display: flex;
    justify-content: flex-end;
    column-gap: 6px;
}


/* Intent icons css */

.easychat-image-intent-recommendation-wrapper {
    margin: 1rem 0px 4px;
}

.easychat-image-intent-item {
    padding: 10px 4px;
    width: 85px;
    height: 100px;
    background: #FFFFFF;
    box-shadow: 0px 0.98987px 3.95948px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    margin-right: 12px;
    margin-bottom: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    vertical-align: top;
    transition: .5s linear;
    cursor: pointer;
}

.easychat-image-intent-item svg,
.easychat-image-intent-item img {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
}

.easychat-image-intent-item .easychat-intent-text-div {
    font-weight: normal;
    font-size: 10px;
    line-height: 12px;
    text-align: center;
    letter-spacing: 0.02em;
    color: #2D2D2D;
    height: 20px;
}

.easychat-intent-text-div span {
    display: -webkit-box;
    display: -moz-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    word-break: break-word;
    text-overflow: ellipsis;
    font-size: 10px;
    padding-top: 0px;
    line-height: 1.5;
    height: 30px;
}

.easychat-image-intent-item:hover {
    transform: scale(1.1);
}

.easychat-bot-intent-image-new-tag-div {
    position: absolute;
    right: -4px;
    top: -8px;
}

.easychat-bot-intent-image-new-tag-div svg {
    width: 22px !important;
    height: 22px !important;
}

.easychat-image-intent-item-disabled:hover {
        transform: unset;
}
    
.easychat-image-intent-item-disabled:hover .easychat-intent-text-div {
    color: #2D2D2D !important;
}

.easychat-image-intent-item-disabled {
    cursor: not-allowed;
}
/* Intent icons css ends */