/* .chatbot-button {
  display: none !important
} */
.chat-card-answer-wrapper {
  max-height: 78px;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.read-more {
  color: #0270e0;
}
.ml-1 {
  margin-top: 5px !important;
}
.faq-request--form p {
    /* color: #506690; */
    /* font-size: 14px!important; */
    letter-spacing: 0;
    margin: auto;
    max-width: 428px;
    opacity: .7;
    text-align: left!important;
}
.faq-request--form p.error_msg {
    color: #e5394e!important;
    display: none;
    font-size: 14px!important;
    margin: 10px 0 0;
    text-align: left!important;
}
.chatbot-button {
    width: 60px;
    height: 60px;
    border-radius: 30px;
    background: transparent linear-gradient(180deg, #24D9B0 0%, #07BC93 100%) 0% 0% no-repeat padding-box;
    box-shadow: 0px 8px 16px #057F6973;
    border: 1px solid #17E3B5B8;
    position: fixed;
    bottom: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 24px;
    z-index: 12;
    transition: 0.3s ease;
}

.chatbot-button span {
    letter-spacing: 0px;
    color: #F6F7F8;
    text-shadow: 0px 3px 6px #00000029;
    font-size: 24px;
    line-height: 48px;
    font-family: 'Azo Sans Bold';
}

.chatbot-button.active span.default {
    display: none;
}

.chatbot-button.active span.active {
    display: block;
}

.chatbot-button span.active {
    display: none;
}

.chatbot-button span.default {
    padding-top: 6px;
}

.chatbot-button:hover {
    transform: matrix(0.98, 0.19, -0.19, 0.98, 0, 0);
}

.cn-chatbot {
    position: fixed;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 390px;
    z-index: 20;
    margin-bottom: 30px;
    margin-right: -390px;
    background: #F6F7F8 0% 0% no-repeat padding-box;
    box-shadow: 0px 16px 24px #0250924A;
    border-radius: 16px;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s ease-in-out;
}

.cn-chatbot.show {
    visibility: visible;
    opacity: 1;
    margin-right: 108px;
}

.cn-chatbot--header {
    height: 93px;
    background: transparent linear-gradient(103deg, #2391DE 0%, #025EAC 100%) 0% 0% no-repeat padding-box;
    border-radius: 16px 16px 0px 0px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 14px 24px;
    justify-content: space-between;
}

.cn-chatbot--header__data {
    width: calc(100% - 40px);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.cn-chatbot--header__data img {
    width: 78px;
}

.cn-chatbot--header__data h6 {
    letter-spacing: 0px;
    color: #F6F7F8;
    font-size: 14px;
    line-height: 14px;
    opacity: 0.8;
    margin: 0;
}

.cn-chatbot--header__data h4 {
    letter-spacing: 0px;
    color: #F6F7F8;
    margin: 5px 0 0;
}

.chatbot-close-button {
    width: 38px;
    height: 38px;
    background: none;
    border: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cn-chatbot--header__data--text {
    padding-left: 10px;
    width: calc(100% - 78px);
}
.cn-chatbot--subheader {
    display: flex;
    height: 32px;
    background: transparent linear-gradient(92deg, #2391DE 0%, #025EAC 100%) 0% 0% no-repeat padding-box;
    align-items: center;
    padding: 2px 24px 0;
}

.cn-chatbot--subheader p {
    letter-spacing: 0px;
    color: #F6F7F8;
    opacity: 0.8;
    font-size: 14px;
    line-height: 14px;
    margin: 0;
}

.cn-chatbot--footer {
    height: 98px;
    background: #FFFFFF 0% 0% no-repeat padding-box;
    box-shadow: 0px 0px 16px #0E293726;
    border-radius: 0px 0px 16px 16px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 20px 20px 30px;
    z-index: 2;
    position: relative;
}

.cn-chatbot--footer input[type="text"] {
    width: calc(100% - 46px);
    height: 55px;
    resize: none;
    border: 0;
    letter-spacing: 0px;
    color: #506690;
    font-size: 16px;
    line-height: 18px;
    outline: none;
}

.cn-chatbot--footer textarea::placeholder {
    opacity: 0.5;
}

.cn-chatbot--send {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 46px;
    height: 46px;
    background: transparent linear-gradient(135deg, #2391DE 0%, #025EAC 100%) 0% 0% no-repeat padding-box;
    border-radius: 47px;
    border: 0;
}

.cn-chatbot--send img {
    width: 21px;
}

.cn-chatbot--body {
    height: 338px;
    overflow: auto;
    padding: 2px 24px;
    display: flex;
    flex-direction: column;
}

.chat-card {
    background: #E0EAF3 0% 0% no-repeat padding-box;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    padding: 8px;
    width: 264px;
    margin: 8px 0;
}

.chat-card p, .chat-info-msg__wrapper p {
    letter-spacing: 0px;
    color: #506690;
    font-size: 14px;
    line-height: 18px;
    margin: 0;
}

.chat-card.question {
    background: #228FDC 0% 0% no-repeat padding-box;
    margin-left: auto;
}

.chat-card.question p {
    font-family: 'Azo sans Light';
    color: #ffffff;
}

.chat-action {
    display: flex;
    padding: 8px 0;
}

.chat-action button {
    width: 179px;
    height: 34px;
    border: 1px solid #0067BE;
    border-radius: 24px;
    letter-spacing: 0px;
    color: #0067BE;
    text-transform: capitalize;
    font-size: 14px;
    line-height: 18px;
    padding-top: 3px;
    font-family: 'Azo sans Medium';
    transition: 0.3s ease;
}

.chat-action button:hover {
    background: #0067BE;
    color: #fff;
}

.cn-chatbot--form input[type="text"], .cn-chatbot--form textarea {
    height: 65px;
    width: 100%;
    background: rgb(203 215 222 / 23%) 0% 0% no-repeat padding-box;
    border-radius: 4px;
    border: 0;
    letter-spacing: 0px;
    color: #506690;
    font-family: 'Azo sans Medium';
    font-size: 13px;
    padding: 3px 20px 0;
    outline: 0;
}

.cn-chatbot--form input[type="text"]::placeholder {
    opacity: 0.7;
}

.cn-chatbot--form textarea {
    height: 121px;
    padding-top: 16px;
    resize: none;
}

.cn-chatbot--popup {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgb(14 41 55 / 90%);
    z-index: 20;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 32px;
}

.cn-chatbot--popup.open {
    display: flex;
}

.cn-chatbot--popup--dialog {
    width: 632px;
    background: #F6F7F8 0% 0% no-repeat padding-box;
    box-shadow: 0px 16px 24px #0250924A;
    border-radius: 16px;
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 24px 24px 32px;
}

a.cn-chatbot--popup--close {
    position: absolute;
    right: 0;
    top: 0;
    margin: 11px 19px;
    width: 42px;
    height: 42px;
    display: flex;
    justify-content: center;
    align-items: center;
}

a.cn-chatbot--popup--close img {
    width: 16px;
}

.cn-chatbot--popup--head {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.cn-chatbot--popup--head h6 {
    letter-spacing: 1.2px;
    color: #187ABF;
    text-transform: uppercase;
    font-size: 16px;
    line-height: 27px;
    font-family: 'Azo sans Bold';
    margin: 0;
}

.cn-chatbot--popup--head h3 {
    letter-spacing: 0px;
    color: #1E3046;
    margin: 5px 0 0;
    text-align: center;
}

.cn-chatbot--popup--body {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cn-chatbot--popup--body h6 {
    letter-spacing: 1.2px;
    color: #187ABF;
    font-size: 16px;
    line-height: 27px;
    font-family: 'Azo sans Bold';
    margin: 24px 0 0;
}

.cn-chatbot--form {
    width: 100%;
    margin-bottom: 8px;
}

.cn-chatbot--popup--body button {
    margin-top: 8px;
}

.chatbot-thanks {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 20;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 32px;
    background: rgb(14 41 55 / 90%);
}

.chatbot-thanks.open {
    display: flex;
}

.chatbot-thanks--dialog {
    width: 562px;
    background: #385260;
    border: 1px solid #2093E347;
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 45px 50px 50px;
}

.chatbot-thanks--dialog h2 {
    letter-spacing: 0px;
    color: #F6F7F8;
    text-shadow: 0px 8px 16px #0E293773;
    font-size: 44px;
    line-height: 85px;
    margin: 0;
}

.chatbot-thanks--dialog p {
    letter-spacing: 0px;
    color: #F6F7F8;
    font-size: 16px;
    line-height: 22px;
    text-align: center;
    margin: 0 0 45px;
}

/* Chat Info msg styles  */
.chat-info-msg__wrapper {
  background: #e0eaf3;  
  border: 1px solid #187abf;
  border-radius:8px;
  padding:10px;
  margin-bottom: 15px
}

.chat-info-msg__wrapper p {
  display:flex;
  align-items: flex-start;
  color: #0e4a7a;
}

.chat-info-msg__wrapper span {
  margin-right:6px;
}

.chat-info-msg__wrapper span img {
  width: 20px;
  height: 20px;
}

.chat-card p b, .chat-card p strong, .chat-card.question p {
    font-family: 'Azo Sans Bold';
}
.radio-option {
   align-items: center;
    background: #fff;
    border: 1px solid #187abf;
    border-radius: 6px;
    color: #187abf;
    cursor: pointer;
    display: inline-flex;
    font-size: 14px;
    justify-content: center;
    margin: 3px;
    padding: 10px 20px 8px;
    transition: all .2s ease;
}
.radio-group
Specificity: (0,1,0)
 {
    display: flex;
    flex-direction: column;
}
/* hide default radio */
.radio-option input {
    display: none;
}

/* hover */
.radio-option:hover {
    background: #187abf;
    color: #fff;
}

/* checked state */
.radio-option input:checked + * {
    /* fallback if text wrapped */
}

.radio-option input:checked {
    /* needed for compatibility */
}

.radio-option:has(input:checked) {
    background: #187abf;
    color: #fff;
}
.radio-option:has(input:disabled) {
    opacity: 0.5;
    pointer-events: none; /* disables hover & click */
    cursor: not-allowed;
}
.chat-card a:hover {
    font-family: Azo Sans Regular;
}
/****** Typing ******/

.typing {
  display: flex;
  gap: 5px;
  padding: 10px;
}

.typing span {
  width: 8px;
  height: 8px;
  background: #999;
  border-radius: 50%;
  display: inline-block;
  animation: bounce 1.3s infinite;
}

.typing span:nth-child(2) {
  animation-delay: 0.2s;
}

.typing span:nth-child(3) {
  animation-delay: 0.4s;
}

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

/*********** typing ********/

@media(max-width: 600px){
  .cn-chatbot {
    max-width: none !important;
    margin-right: -100%;
    width: calc(100% - 20px)
  }
  .cn-chatbot.show {
      margin-right: 10px;
  }
  .chatbot-button {
      width: 50px;
      height: 50px;
      margin-bottom: 10px;
      margin-right: 10px;
  }
}