body {
  background: #f7f7f7;
}

.text-form-box {
  max-width: 500px;
  margin: auto;
  padding: 50px;
  background: #ffffff;
  border: 10px solid #f2f2f2;
}

.text-form-box h1,
p {
  text-align: center;
}

.text-form-box input,
textarea {
  width: 100%;
}

.contact-panel {
  display: flex;
  background-color: #da6615;
  border: 1px solid #ccc;
  gap: 20px;
  padding: 10px 30px;
  white-space: nowrap;
}

.contact-panel h4 {
  font-family: Lato, Trebuchet, Arial, Sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #FFFFFF;
}

.dashicons {
  font-family: "dashicons";
  font-size: 20px;
  line-height: 1;
  display: inline-block;
  text-decoration: none;
  vertical-align: top;
  color: #FFFFFF;
}

.contact-panel .border-line {
  border: 1px solid #FFFFFF;
  padding: 5px;
}

.contact-panel .contact-us-heading {
  padding-top: 6px;
}

.sms-chat-window__form {
  max-height: 250px;
}

/* Add this CSS to style the popup */
.popup {
  display: none;
  position: absolute;
  background-color: #fff;
  border: 1px solid #ccc;
  padding: 5px;
  z-index: 10;
  width: 200px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  font-size: 14px;
  color: #333;
}

.email-icon {
  position: relative;
}

.email-icon:hover .popup {
  display: block;
  top: 25px;
  left: 0;
}

.sms_form_chat {

  background: #fff;
  padding: 20px;
  border-radius: 15px;

}

.chat_window .input-container>.ser-input {
  border: none;
  border-bottom: 1px solid #cbced3;
  border-radius: unset;
}

.sms_form_chat textarea {
  height: 110px !important;
  overflow: auto;
}

.set_btn_cnt {
  margin: 0 auto;
  text-align: center;
}

.chat-window__content-hint.set_btn_cnt {
  font-size: 14px;
}

.chat_window .chat-window__heading {
  font-size: 21px;
}


.chat_window .chat-window__suheading {
  font-size: 14px;
  background: #00000024;
  padding: 9px;
  border-radius: 10px;
  margin: 10px 7px;
}

.chat_window .contact-panel .border-line {
  padding: 0px;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-panel {
  background-color: #a94905;
  border: none;
}

.custom-chat-icon {
  background: #da6615;
  border-radius: 50%;
  width: 75px;
  height: 75px;
  margin: auto;
  text-align: center;
  padding-top: 15px;
}

.custom-chat-icon img {
  width: 45px;
  display: inline;
}

.custom-cancel-icon {
  background: #da6615;
  border-radius: 50%;
  width: 75px;
  height: 75px;
  margin: auto;
  text-align: center;
  padding-top: 15px;
}

.custom-cancel-icon img {
  width: 45px;
  display:inline;
}
/* .chat__popover{
  background-color: #ede4e4 !important;
}
*/
.chat__popover-text img{
  height: 75px;
  vertical-align: middle;
  border-style: none;
  width: unset;
  display: inline;
  max-width: unset;
} 
.chat__popover {
  background:unset !important;
  box-shadow:unset !important;
}
.chat__popover-close {
  z-index: 99999999;
  right: 7px;
  top: -2px;
}
.call-icon a,.email-icon a,.msg-icon a{
    width: 35px;
    height: 35px;
    text-align: center;
    padding-top: 7px;
}

/* 23/07/2024 */

.chat-window-main {
    opacity: 0;
    visibility: hidden;
    transition: all .7s;
}
.fade-cls {
    opacity: 1;
    visibility: visible;
    transition: all .7s;
}
.opn-text-cls{
    display: none;
}

/* 24/07/2024 */

.calendly-function-opt{
    position: absolute;
    top: -50px;
    width: 100%;
    right: 97%;
}
.contact-panel{
    position: relative;
}
/*Loader*/
.chat-dashboard-loader {
  position: absolute;
  top: 50%;
  right: 45%;
  width: 50px;
  aspect-ratio: 1;
  border-radius: 50%;
  padding: 5px;
  background: conic-gradient(#0000 10%, #da6615) content-box;
  mask: 
    repeating-conic-gradient(#0000 0deg, #000 1deg 20deg, #0000 21deg 36deg),
    radial-gradient(farthest-side, #0000 calc(100% - var(--b) - 1px), #000 calc(100% - var(--b)));
  mask-composite: intersect;
  -webkit-mask: 
    repeating-conic-gradient(#0000 0deg, #000 1deg 20deg, #0000 21deg 36deg),
    radial-gradient(farthest-side, #0000 calc(100% - var(--b) - 1px), #000 calc(100% - var(--b)));
  -webkit-mask-composite: intersect;
  animation: l4 1s infinite steps(10);
}

@keyframes l4 {
  to {
    transform: rotate(360deg);
  }
}

/* Responsive CSS */
@media (max-width: 767px) {
    .chat-window {
        position: fixed;
        bottom: 110px;
        right: 5px;
        top: 15%;
        width: 375px;
        border-radius: 10px;
        box-shadow: 2px 2px 25px 2px rgba(0, 0, 0, 0.17);
        z-index: 9999;
    }
}