
/* Floating Button */
.chat-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #67343D;
  color: #fff;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  cursor: pointer;
  z-index: 1000;
}
/* Tooltip */
.chat-tooltip {
  position: fixed;
  bottom: 20px;
  right: 90px;
  background: white;
  padding: 12px 16px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  font-size: 14px;
  z-index: 1000;
}
.close-tooltip {
    position: absolute;
    cursor: pointer;
    display: none;
    height: 20px;
    width: 20px;
    background-color: #121212;
    border-radius: 100%;
    top: -8px;
    left: -10px;
    color: #ffffff;
    text-align: center;
}
.close-tooltip span{
    display: flex;
    align-items: center;
    height: 20px;
    justify-content: center;
}
.close-tooltip img {
    width: 12px;
    height: 12px;
    display: block;
}
.chat-tooltip:hover .close-tooltip{
    display: block;
}
.chat-tooltip:after{
    display: inline-block;
    content: '';
    position: absolute;
    background-color: #fff;
    height: 10px;
    width: 10px;
    transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    top: 0;
    bottom: 0;
    margin: auto;
    right: -5px;
    border-radius: 0 3px 0 0;
    box-shadow: 1px -1px 4px 0 #eee;
}
/* Chat Window */
.chat-window {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 320px;
  height: 410px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  display: none;
  flex-direction: column;
  z-index: 1001;
}
/* Header */
.chat-header {
  background: #67343D ;
  color: white;
  padding: 10px 12px;
  border-radius: 12px 12px 0 0;
  display: flex;
  align-items: center;
  gap: 15px;
}
/* Body */
.chat-body {
  padding: 15px;
  overflow-y: auto;
  height: 360px;
}

.chat-body label {
  font-size: 13px;
  display: block;
  margin-top: 12px;
}
.chat-body input,
.chat-body select,
.chat-body textarea {
  width: 100%;
  padding: 8px 10px;
  margin-top: 5px;
  border-radius: 6px;
  border: 1px solid #ccc;
}
.chat-body textarea {
  resize: none;
  height: 80px;
}
.start-chat {
  margin-top: 15px;
  width: 100%;
  background: #67343D;
  border: none;
  padding: 10px;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
}
.chat-btn span {
  font-size: 24px;
  transition: transform .2s ease;
}
.chat-window {
  display: none;
}
.chat-window.is-open {
  display: block;
  animation: slideUp .3s ease;
}
.form-field p label{
    margin-top: 0;
}
.form-field p{
    margin-bottom: 15px;
}

@keyframes slideUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.start-chat-btn input.wpcf7-submit{
  background-color: #67343D;
  color: #ffffff;
  transition: 0.5s all;
  border: 1px solid #67343D;
}
.start-chat-btn input.wpcf7-submit:hover{
  background-color: #ffffff;
  color: #67343D;
}
.start-chat-btn p{
  margin-bottom: 0;
  position: relative;
}
.start-chat-btn  .wpcf7-spinner{
  position: absolute;
  margin: 0;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
}
.form-field .wpcf7-not-valid-tip{
  font-size: 12px;
  line-height: 1.4;
  color: red;
}
.wpcf7-form-control-wrap{
  display: block;
}
.chat-body .chat-form .wpcf7-response-output {
  margin: 0;
  margin-top: 10px;
  font-size: 13px;
  padding: 2px 6px;
}
.chat-logo img{
  width: 70px;
}
.chat-btn img {
  width: 24px;
  height: 24px;
  display: block;
}
.join-waitlist-wrapper{
  display: none;
}

@media (max-width: 575px) {
  .join-waitlist-wrapper{
    display: block;
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #67343D;
    color: #ffffff;
    text-align: center;
    padding: 10px;
    box-shadow: 0 0 8px 0px #6d6d6d;
    z-index: 9;
  }
  .chat-tooltip{
    display: none !important;
  }
  .waitlist-bar a{
    margin-bottom: 0;
    color: #ffffff;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
  }
  .chat-btn {
    bottom: 0;
    width: 60px;
    height: 44px;
    right: 0;
    background: #432228;
    border-radius: 0;
  }
  .chat-window{
    bottom: 50px;
    right: 10px;
    width: 310px;
  }
}


/* ===================== Why DelveAnt? start ========================== */
.zizg-fullcontent-list {
    padding-top: 30px;
}
.stop-doing-footer {
    margin-top: 40px;
    margin-bottom: 40px;
}
.stop-doing-footer h3 {
    font-size: 20px;
}
.stop-doing-footer a{
	color: #67343D ;
	    text-decoration: none;
}
.stop-doing-footer a:hover{
	text-decoration: underline;
}
.zizg-fullcontent-list .zizg-wrap{
  margin-bottom: 40px
}
.zizg-wrap-main{
  margin-bottom: 100px;
}
.zizg-wrap-main:nth-child(even) .zizg-wrap {
  flex-direction: row-reverse;
}
.half-grid-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.half-grid-list .half-grid-main p{
  color: var(--lblack);
  font-size: 18px;
}
section.half-grid-section {
    padding-bottom: 60px;
}
.half-grid-main h3 {
  color: var(--lblack);
  font-size: 22px;
  margin: 0;
  padding-bottom: 20px;
}
@media (max-width: 991px) {
  .zizg-fullcontent-list .zizg-wrap {
    margin-bottom: 20px;
    gap: 30px;
  }
  .zizg-fullcontent-list .zizg-content{
    max-width: 50%;
  }
  .zizg-wrap-main{
    margin-bottom: 70px;
  }
  .half-grid-list{
    grid-template-columns: repeat(1, 1fr);
    text-align: center;
  }
  section.half-grid-section {
    padding-bottom: 30px;
  }
  .half-grid-list .half-grid-main p {
    font-size: 16px;
  }
  .half-grid-main h3{
    padding-bottom: 10px;
    font-size: 20px;
  }
  .half-grid-main h2 {
    margin-bottom: 10px;
  }
}
@media (max-width: 767px) {
  .zizg-wrap-main {
    margin-bottom: 50px;
  }
  .zizg-fullcontent-list .zizg-content {
    max-width: 100%;
  }
  .stop-doing-footer {
    margin-top: 30px;
    margin-bottom: 0px;
  }
  .zizg-fullcontent-list {
    padding-top: 0px;
  }
}

/* ========================= Why DelveAnt? End ========================== */

/* ========================= Solution Start ========================== */

.live-product-view .glass-card{
  /* background: linear-gradient(180deg, #A95765 34.39%, #432228 100%); */
  background: #fff;
  text-align: center;
  color: #ffffff;
}

.live-product-view .glass-card.dashboard-preview {
    background: rgba(255, 255, 255, 0.1);
    color: #222222;
    margin-bottom: 40px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.live-product-view .glass-card.dashboard-preview .dashboard-preview-left {
    text-align: left;
    width: 50%;
    padding-left: 40px; 
}

.live-product-view .glass-card.dashboard-preview .dashboard-preview-img {
    width: 50%;
}

.live-product-view-cta p {
    font-size: 14px !important;
}

.live-product-view .glass-card.dashboard-preview .dashboard-preview-img img {
    width: 100%;
}

.live-product-view .glass-card h3 {
    margin-top: 0;
    font-size: 28px;
    margin-bottom: 10px;
    color: #222222;
}
.live-product-view .glass-card .comparison-card h3 {
    color: #fff;
}
.live-product-view .glass-card p {
    margin-bottom: 30px;
    font-size: 18px;
}
.live-product-view-cta {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.live-product-view .glass-card p span.required {
    color: #67343D;
    font-size: 16px;
}


.comparison-card ul {
  text-align: start;
}
.comparison-grid .comparison-card ul li::before {
  content: "";
  position: absolute;
  background: url(../images/list-ant-icon.svg);
  width: 25px;
  height: 25px;
  background-size: 100% 100%;
  left: 0;
  top: 15px;
  color: transparent;
  filter: brightness(0) saturate(100%) invert(100%) sepia(6%) saturate(746%) hue-rotate(151deg) brightness(117%)contrast(100%);
}
.compliance-badges-list{
  margin-bottom: 30px;
}
.glass-card-btn{
  margin: 50px 0 0;
  text-align: center;
}
/* .glass-card-btn a.btn{
  border: 2px solid #ffffff;
}
.glass-card-btn a.btn {
  border: 2px solid #ffffff;
  background: #fff;
  color: #67343D;
}
.glass-card-btn a.btn:hover {
  color: #fff;
  background: #67343D;
} */
.site-main .find-the-revenue{
  margin-top: 0;
}
.find-the-revenue-main form .form-main{
  flex-wrap: nowrap;
}
.find-the-revenue-main.live-product-view-form .form-main .half{
      max-width: calc(35% - 10px);
}
.live-product-view{
  padding: 50px 0;
}
.find-the-revenue-main form .form-main p{
  position: relative;
}
.find-the-revenue-main form .form-main p .wpcf7-spinner{
      position: absolute;
    right: -40px;
}
.live-product-view-head{
  text-align: center;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .find-the-revenue-main form .form-main {
    flex-wrap: wrap;
    justify-content: center;
  }
  .find-the-revenue-main form .form-main .half , 
  .find-the-revenue-main.live-product-view-form .form-main .half{
    max-width: calc(50% - 10px);
  }
}
@media (max-width: 767px) {
  
  .find-the-revenue-main form .form-main .half ,
   .find-the-revenue-main.live-product-view-form .form-main .half{
    max-width: 100%;
  }
  .find-the-revenue-main .form-main span input{
    padding: 15px 16px;
    font-size: 15px;
  }
  .find-the-revenue-main form .form-main p input[type="submit"]{
    padding: 15px 25px;
  }
  /* .live-product-view .glass-card{
    padding: 2.5rem 1.5rem;
  } */
  .comparison-grid .comparison-card{
    padding: 1rem;
  }
  .comparison-card ul{
    margin-left: 10px;
    margin-bottom: 0;
  }
  .comparison-grid .comparison-card h3{
    font-size: 22px;
  }
  .live-product-view .glass-card h3{
        font-size: 24px;
  }

  .live-product-view .glass-card.dashboard-preview .dashboard-preview-left {
    width: 100%;
    padding-left: 0;
  }

  .live-product-view .glass-card.dashboard-preview .dashboard-preview-img {
      width: 100%;
  }

  .live-product-view .glass-card .live-product-view-cta p {
    margin-bottom: 0;
  }

}

/* ========================= Solution ENd ========================== */