/* .chat-body{
    border-bottom-left-radius: 15px;
} */
.chat-screen {
    position: fixed;
    bottom: 68px;
    right: 20px;
    z-index: 9999;
    width: 330px;
    background: #fff;
    box-sizing: border-box;
    border-radius: 15px;
    box-shadow: 0px 15px 20px #9ba11e;
    visibility: hidden;
  }
  .chat-screen.show-chat {
    -moz-transition: bottom 0.5s linear;
    -webkit-transition: bottom 0.5s linear;
    transition: bottom 0.5s linear;
    visibility: visible;
    bottom: 120px;
  }
  
  .chat-screen .chat-header .chat-header-title {
    letter-spacing: 2px;
    display: flex;
    width: calc(100% - 50px);
    color: black;
    /* font-size: 15px; */
    font-size: large;
  }
  .chat-screen .chat-header .chat-header-option {
    display: inline-block;
    width: 44px;
    color: black;
    font-size: 18px;
    text-align: right;
  }
  .chat-screen .chat-header .chat-header-option .dropdown .dropdown-toggle svg {
    color: black;
  }
  .chat-screen .chat-mail {
    padding: 20px;
    display: block;
  }
  
  .chat-screen .chat-mail input.form-control:focus {
    box-shadow: none;
    border: 1px solid #add5fc;
  }
  
  .chat-screen
    .chat-mail
    .select2.select2-container--open
    .selection
    .select2-selection {
    box-shadow: none;
    border-radius: 30px;
  }
  .chat-screen .chat-mail button {
    background-image: linear-gradient(
      to right,
      #c64351,
      #c64351,
      #c64351,
      #c64351,
      #c64351
    );
    border: none;
    padding: 0.58rem 1.25rem;
    transition: transform 0.5s ease;
    cursor: pointer;
    width: 100%;
    font-size: 18px;
  }
  .question {
    background-image: linear-gradient(
      to right,
      #6cb73a,
      #41d119,
      #44a10b,
      #378a06,
      #63b223
    );
    border: none;
    padding: 0.58rem 1.25rem;
    transition: transform 0.5s ease;
  }
  .chat-screen .chat-mail .form-group {
    margin-bottom: 1rem;
  }
  .chat-screen .chat-body {
    padding: 25px;
    display: inline-block;
    min-height: 300px;
    max-height: 300px;
    background: #fbfbfb;
    overflow: auto;
    line-height: 20px !important;
  }
  
  @media only screen and (max-width: 600px) {
    .chat-screen .chat-body {
      min-height: 450px;
      max-height: 450px;
    }
  
    /* .chat-screen.show-chat{
         width: 100%; 
         right: 0;
         left: 0;
         top: 0;
         bottom: 0;
      } */
  }
  
  .chat-screen .chat-body .chat-start {
    border: 1px solid white;
    width: 150px;
    border-radius: 50px;
    padding: 6px 10px;
    font-size: 18px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 15px;
    background: #fff;
  }
  .chat-screen .chat-body .chat-bubble {
    font-size: 18px;
    padding: 10px 15px;
    box-shadow: none;
    display: inline-block;
    clear: both;
    margin-bottom: 10px;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.02);
  }
  .chat-screen .chat-body .chat-bubble.you {
    background-image: linear-gradient(
      to right,
      #cde8ea,
      #cde8ea,
      #cde8ea,
      #cde8ea,
      #dc22ff
    );
    color: #fff;
    border-radius: 0 15px 15px 0px;
    align-self: flex-start;
    display: table;
  }
  .chat-screen .chat-body .chat-bubble.me {
    background-image: linear-gradient(
      to right,
      #cde8ea,
      #cde8ea,
      #cde8ea,
      #cde8ea,
      #cde8ea
    );
    color: black;
    border-radius: 15px 0px 15px 15px;
    float: right;
    align-self: flex-end;
    display: table;
  }
  .chat-screen .chat-input {
    width: 100%;
    position: relative;
    margin-bottom: -5px;
  }
  .chat-screen .chat-input input {
    width: 100%;
    background: #ffffff;
    padding: 15px 70px 15px 15px;
    border-radius: 0 0 15px 15px;
    resize: none;
    border-width: 1px 0 0 0;
    border-style: solid;
    border-color: #f8f8f8;
    color: #7a7a7a;
    font-weight: normal;
    font-size: 15px;
    transition: border-color 0.5s ease;
  }
  .chat-screen .chat-input input:focus {
    border-color: #f9dcff;
  }
  .chat-screen .chat-input input:focus + .input-action-icon a svg.feather-send {
    color: #bc32ef;
  }
  .chat-screen .chat-input .input-action-icon {
    width: 61px;
    white-space: nowrap;
    position: absolute;
    z-index: 1;
    top: 15px;
    right: 15px;
    text-align: right;
  }
  .chat-screen .chat-input .input-action-icon a {
    display: inline-block;
    margin-left: 5px;
    cursor: pointer;
  }
  .chat-screen .chat-input .input-action-icon a svg {
    height: 17px;
    width: 17px;
    color: #a9a9a9;
  }
  .chat-screen .chat-session-end {
    display: block;
    width: 100%;
    padding: 25px;
  }
  .chat-screen .chat-session-end h5 {
    font-size: 18px;
    text-align: center;
    font-weight: bold;
    margin-top: 20px;
  }
  .chat-screen .chat-session-end p {
    font-size: 18px;
    text-align: center;
    margin: 20px 0;
  }
  .chat-screen .chat-session-end .rate-me {
    width: 120px;
    margin: 40px auto;
  }
  .chat-screen .chat-session-end .rate-me .rate-bubble {
    display: inline-block;
    text-align: center;
    width: 50px;
  }
  .chat-screen .chat-session-end .rate-me .rate-bubble span {
    height: 50px;
    width: 50px;
    text-align: center;
    display: block;
    line-height: 46px;
    cursor: pointer;
    transition: transform 0.5s ease;
    margin-bottom: 7px;
  }
  .chat-screen .chat-session-end .rate-me .rate-bubble span:hover {
    transform: scale(1.1);
    transition: transform 0.5s ease;
  }
  .chat-screen .chat-session-end .rate-me .rate-bubble.great {
    margin-right: 12px;
    color: #43cc6c;
  }
  .chat-screen .chat-session-end .rate-me .rate-bubble.great span {
    background: #43cc6c;
    border-radius: 50px 50px 0 50px;
  }
  .chat-screen .chat-session-end .rate-me .rate-bubble.bad {
    color: #ef4252;
  }
  .chat-screen .chat-session-end .rate-me .rate-bubble.bad span {
    background: #ef4252;
    border-radius: 50px 50px 50px 0;
  }
  .chat-screen .chat-session-end .transcript-chat {
    display: block;
    text-align: center;
    margin-top: 80px;
    color: #0768f8;
    text-decoration: underline;
    line-height: 20px;
  }
  .chat-screen .powered-by {
    margin-top: 35px;
    text-align: center;
    font-size: 15px;
  }
  .chat-bot-icon {
    position: fixed;
    bottom: 45px;
    right: 20px;
    height: 60px;
    width: 60px;
    /* background-image: linear-gradient(to right, #9ba11e, #9ba11e, #9ba11e, #9ba11e, #9ba11e); */
    z-index: 9999;
    border-radius: 30px;
    box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    line-height: 50px;
    cursor: pointer;
    transition: all 0.5s ease;
  }
  /* .chat-bot-icon img {
      height: 120px;
      width: 120px;
      position: absolute;
      right: -14px;
      top: -48px;
      max-width: inherit !important;
  } */
  
  .chat-bot-icon img {
    height: 40px;
    width: 66px;
    position: absolute;
    right: -8px;
    top: 5px;
    max-width: inherit !important;
    padding: 5px;
  }
  
  .chat-bot-icon svg {
    color: #fff;
    -moz-transition: all 0.5s linear;
    -webkit-transition: all 0.5s linear;
    transition: transform 0.5s linear;
    position: absolute;
    left: 13px;
    top: 10px;
    opacity: 0;
    z-index: -1;
  }
  .chat-bot-icon svg.animate {
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
    opacity: 1;
    z-index: 1;
  }
  
  .chat-body {
    overflow: auto;
  }
  .response,
  .error-phone {
    display: none;
  }
  .error-phone p {
    color: red;
  }
  .kmp {
    margin-bottom: 10px;
  }
  
  .chat-screen .chat-body .chat-bubble.you {
    background-image: linear-gradient(
      to right,
      white,
      white,
      white,
      white,
      white
    ) !important;
    border-color: #0768f8 !important;
    color: black !important;
  }
  
  .brochure-btn,
  .contact-sales,
  .not-interested {
    margin: 0px 6px;
    padding: 6px 40px;
    font-size: 11px;
    border: 1px solid grey;
    color: black;
    background-image: linear-gradient(
      to right,
      #9ba11e,
      #9ba11e,
      #9ba11e,
      #9ba11e,
      #9ba11e
    );
  }
  
  .main-menu-btn {
    margin: 2px 3px;
    padding: 6px 10px;
    font-size: 15px;
    border: 1px solid grey;
    color: black;
    background-image: linear-gradient(
      to right,
      #9ba11e,
      #9ba11e,
      #9ba11e,
      #9ba11e,
      #9ba11e
    );
  }
  .enquire-form {
    margin-top: 15px;
  }
  .go-back {
    cursor: pointer;
  }
  .form-fields {
    height: 30px;
    margin-bottom: 15px;
  }
  /* beforeSend animation start */
  .chatbot-beforsend {
    margin: 20px 0px;
    height: 30px;
    width: 30px;
    display: inline-block;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: #ff69b4;
    animation: pulse 1500ms infinite;
  }
  
  @keyframes pulse {
    0% {
      box-shadow: #ff69b4 0 0 0 0;
    }
    75% {
      box-shadow: #ff69b400 0 0 0 16px;
    }
  }
  /* beforeSend animation End */
  
  /* successMsg animation start */
  .chatbot-wrapper {
    /* height:100vh; */
    display: contents;
    justify-content: center;
    align-items: center;
    background-color: #eee;
  }
  .checkmark__circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke: #7ac142;
    fill: none;
    animation: stroke 1.2s cubic-bezier(0.65, 0, 0.45, 1) forwards;
  }
  .checkmark {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: block;
    stroke-width: 2;
    stroke: #fff;
    stroke-miterlimit: 10;
    margin: 10% auto;
    box-shadow: inset 0px 0px 0px #7ac142;
    animation: fill 0.8s ease-in-out 0.8s forwards,
      scale 0.6s ease-in-out 1.8s both;
  }
  .checkmark__check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) 1.8s forwards;
  }
  @keyframes stroke {
    100% {
      stroke-dashoffset: 0;
    }
  }
  @keyframes scale {
    0%,
    100% {
      transform: none;
    }
    50% {
      transform: scale3d(1.1, 1.1, 1);
    }
  }
  @keyframes fill {
    100% {
      box-shadow: inset 0px 0px 0px 30px #7ac142;
    }
  }
  /* successMsg animation end */
  
  /* from main.css */
  .btn-rounded {
    -webkit-border-radius: 1.875rem !important;
    -moz-border-radius: 1.875rem !important;
    -ms-border-radius: 1.875rem !important;
    -o-border-radius: 1.875rem !important;
    border-radius: 1.875rem !important;
  }
  
  .hide {
    display: none !important;
  }
  
  .cursor-pointer {
    cursor: pointer;
  }
  
  .show-girl {
    display: block;
  }
  
  /* Second Button */
  
  .main-menu-btn,
  .brochure-btn {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    /* position: relative;
      transition: all .35s ease-Out; */
  }
  
  .main-menu-btn a,
  .brochure-btn a {
    color: black;
    text-decoration: none;
    letter-spacing: 1px;
    position: relative;
    transition: all 0.35s ease-Out;
  }
  
  #slide {
    width: 100%;
    height: 100%;
    left: -240px;
    background: #fff;
    position: absolute;
    transition: all 0.35s ease-Out;
    bottom: 0;
  }
  
  .main-menu-btn:hover #slide,
  .brochure-btn:hover #slide {
    left: 0;
  }
  
  .main-menu-btn:hover a,
  .brochure-btn:hover a {
    color: #2d3142;
  }
  
  /* .cta {
      width: 50px;
      height: 50px;
      border-radius: 50px;
      border: 2px solid red;
      background-color: red;
      color: #fff;
      transition: width 0.7s;
    } */
  /* .chat-bot-icon:hover {
      width: 180px;
      transition: width 0.7s;
    }
    
    .chat-bot-icon svg {
      opacity: 1;
      transition: opacity 0.5s
    } */
  
  /* .chat-bot-icon:hover svg {
      opacity: 0;
      transition: opacity 0.5s
    } */
  
  /* .chat-bot-icon .button-text {
      opacity: 0;
      transition: opacity .5s;
      position: absolute;
      width: 100%;
      left: 0;
     }
    
    .chat-bot-icon:hover .button-text {
      opacity: 1;
      transition: opacity 0.5s
    } */
  
  .shk {
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    animation-name: shakeMe;
    animation-duration: 5s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
  }

   /* New chatbot css */
   .chat-screen .chat-header {
    background-image: linear-gradient(
      to right,
      #fabb03,
      #eb630b
    ); /* Use attractive gradient colors */
    border-radius: 2px 2px 0 0;
    padding: 10px;
    display: block;
    color: white !important; /* Set text color to contrast with the background */
    text-align: center; /* Center the text within the header */
    font-size: 20px; /* Adjust the font size */
    font-weight: bold; /* Make the text bold */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2); /* Add a shadow for depth */
  }

  /* Optional: Add hover effect for interaction */
  .chat-screen .chat-header:hover {
    background-image: linear-gradient(
      to right,
      #fabb03,
      #eb630b
    ); /* Change gradient colors on hover */
    cursor: pointer; /* Change cursor on hover for interactivity */
  }

  .chat-screen .chat-body .chat-bubble.you {
    background-image: linear-gradient(to right, #eb630b, #fabb03) !important;
    background-color: #fff !important;
    /* border-color: #2533b4 !important; */
    color: white !important; /* Set text color to contrast with the background */
    border-radius: 1px 15px 15px 0 #000428; /* Adjust border radius for a more rounded look */
    padding: 10px 15px !important; /* Adjust padding for spacing */
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1) !important; /* Add a subtle box shadow for depth */
    max-width: 100% !important; /* Limit the width of the chat bubble for better readability */
    margin-bottom: 10px !important; /* Add some space between chat bubbles */
  }

  /* Optional: Add hover effect for interaction */
  .chat-screen .chat-body .chat-bubble.you:hover {
    background-image: linear-gradient(
      to right,
      #fabb03,
      #eb630b
    ) !important; /* Change gradient colors on hover */
    cursor: pointer; /* Change cursor on hover for interactivity */
  }
  .chat-screen .chat-body .chat-bubble.you {
    background-color: #fff;
  }

  .main-menu-btn {
    margin: 2px 3px;
    padding: 6px 10px;
    font-size: 11px;
    border: 1px solid #9ba11e; /* Change border color to match the gradient */
    color: white !important; /* Set text color to contrast with the background */
    background-image: linear-gradient(
      to right,
      white,
      white
    ); /* Use a new gradient color scheme */
    border-radius: 25px; /* Add border radius for a rounded button */
    text-transform: uppercase; /* Convert text to uppercase */
    font-weight: bold;
    cursor: pointer; /* Change cursor to pointer for interactivity */
    transition: background-color 0.3s, color 0.3s, transform 0.2s; /* Add smooth transitions */
  }

  /* Add hover effect for interaction */
  .main-menu-btn:hover {
    background-image: linear-gradient(
      to right,
      #fabb03,
      #eb630b
    ); /* Change gradient colors on hover */
    color: white; /* Change text color on hover */
    transform: scale(1.05); /* Scale up the button slightly on hover */
  }
  a {
    color: black;
    text-decoration: underline;
  }
  .brochure-btn,
  .not-interested {
    margin: 0px 6px;
    padding: 6px 40px;
    font-size: 11px;
    border: 1px solid grey;
    color: black;
    background-image: linear-gradient(
      to right,
      white,
      white,
      white,
      white,
      white
    );
  }
  .chat-screen .chat-mail input.form-control {
    border-radius: 30px;
    border: 1px solid #e1e1e1;
    color: #3b3f5c;
    font-size: 18px;
    padding: 0.4rem 1.25rem;
    /* width: 100% !important; */
    width: 100%;
    z-index: 2;
  }
  .chat-screen .chat-mail button {
    background-image: linear-gradient(
      to right,
      #eb630b,
      #eb630b,
      #eb630b,
      #eb630b,
      #eb630b
    );
    border: none;
    padding: 0.58rem 1.25rem;
    transition: transform 0.5s ease;
    cursor: pointer;
    width: 100%;
    font-size: 18px;
  }

  .menu-bg{
    background-color: #ffffff !important;
    background-image: linear-gradient(to right, #fff, #fff)
  }

  .menu-bg:hover{
    background-color: #ffffff !important;
    background-image: linear-gradient(to right, #fff, #fff)
  }
  
  @keyframes shakeMe {
    2%,
    18% {
      transform: translate3d(-10px, 0, 0);
    }
  
    4%,
    16% {
      transform: translate3d(10px, 0, 0);
    }
  
    6%,
    10%,
    14% {
      transform: translate3d(-10px, 0, 0);
    }
  
    8%,
    12% {
      transform: translate3d(10px, 0, 0);
    }
  
    18.1% {
      transform: translate3d(0px, 0, 0);
    }
  }