.wmtp-style-display-callbutton {
  bottom: 0 !important;
  border-radius: 0 !important;
  width: 100% !important;
}
div#wmtpNotifySubmit,
#wmtpNotifySubmit {
  display: none;
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  color: white;
  padding: 20px;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  margin-top: 15px;
  box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
  animation: slideInUp 0.3s ease-out;
}

@keyframes slideInUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Loading Spinner */
.wmtp-loading-spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top: 2px solid #ffffff;
  animation: wmtp-spin 1s linear infinite;
  vertical-align: middle;
}

/* Button loading state */
.wmtpPreviewBtn:disabled {
  opacity: 0.8;
  cursor: not-allowed;
  transform: none !important;
}

.wmtpPreviewBtn:disabled:hover {
  transform: none !important;
  box-shadow: none !important;
}

@keyframes wmtp-spin {
  0% { 
    transform: rotate(0deg); 
  }
  100% { 
    transform: rotate(360deg); 
  }
}
.wmtp-style-display-callbutton li {
  padding: 0 10px;
  margin-bottom: 0 !important;
  float: unset;
  display: inline;
}
.wmtp-style-display-callbutton ul {
  margin: auto !important;
  display: flex;
}
.wmtp-tab-tt-footer-main table tr td {
    text-align: center;
}
.wmtp-tooltip {
  position: relative;
  display: inline-block;
}
.wmtp-tooltip .wmtp-tooltiptext {
  visibility: hidden;
  min-width: 120px;
  text-align: center;
  border-radius: 6px;
  padding: 5px 10px;
  top: 5px;
  font-size: small;
  display: block ruby;
  margin: 0 8px 8px 8px;


  /* Position the tooltip */
  position: absolute;
  z-index: 1;
}

.wmtp-tooltip:hover .wmtp-tooltiptext {
  visibility: visible;
}
.wmtp-fliphorizontally img.wmtp-call-class {
  -webkit-animation: fliphorizontally 2s cubic-bezier(0.455, 0.030, 0.515, 0.955) 3s infinite both;
          animation: fliphorizontally 2s cubic-bezier(0.455, 0.030, 0.515, 0.955) 3s infinite both;
}
@-webkit-keyframes fliphorizontally {
  0% {
    -webkit-transform: rotateY(0);
            transform: rotateY(0);
  }
  100% {
    -webkit-transform: rotateY(360deg);
            transform: rotateY(360deg);
  }
}
@keyframes fliphorizontally {
  0% {
    -webkit-transform: rotateY(0);
            transform: rotateY(0);
  }
  100% {
    -webkit-transform: rotateY(360deg);
            transform: rotateY(360deg);
  }
}
.wmtp-jump img.wmtp-call-class {
  animation-name: jump;
  animation-duration: 1.5s;
  animation-timing-function: ease;
  animation-delay: 0s;
  animation-iteration-count: infinite;
  animation-direction: normal;
}
@keyframes jump {
  0%{
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  20%{
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40%{
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  50%{
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  60%{
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
  80%{
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100%{
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.wmtp-alert img.wmtp-call-class {
  animation-name: alert;
  animation-duration: 2s;
  animation-timing-function: linear;
  animation-delay: 0s;
  animation-iteration-count: infinite;
  animation-direction: normal;
}
@keyframes alert {
  0%{
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  5%{
    -webkit-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    transform: translateX(-10px);
  }
  10%{
    -webkit-transform: translateX(10px);
    -ms-transform: translateX(10px);
    transform: translateX(10px);
  }
  15%{
    -webkit-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    transform: translateX(-10px);
  }
  20%{
    -webkit-transform: translateX(10px);
    -ms-transform: translateX(10px);
    transform: translateX(10px);
  }
  25%{
    -webkit-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    transform: translateX(-10px);
  }
  30%{
    -webkit-transform: translateX(10px);
    -ms-transform: translateX(10px);
    transform: translateX(10px);
  }
  35%{
    -webkit-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    transform: translateX(-10px);
  }
  40%{
    -webkit-transform: translateX(10px);
    -ms-transform: translateX(10px);
    transform: translateX(10px);
  }
  45%{
    -webkit-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    transform: translateX(-10px);
  }
  50%{
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
.wmtp-blink img.wmtp-call-class {
  animation-name: blink;
  animation-duration: 2s;
  animation-timing-function: linear;
  animation-delay: 0s;
  animation-iteration-count: 3;
  animation-direction: normal;
}
@keyframes blink {
  0%{
    opacity: 1;
  }
  25%{
    opacity: 0;
  }
  50%{
    opacity: 1;
  }
  75%{
    opacity: 0;
  }
  100%{
    opacity: 1;
  }
}
.wmtp-tab-tt-footer ul, .wmtp-tab-tt-footer ul li {
    margin: 0;
    width: 100%;
    display: table-row-group;
}
.wmtp-tab-tt-footer a {
  text-decoration: none;
}
.wmtp-tab-tt-footer p {
    margin-bottom: 0;
  font-size: 10px !important;
}
.wmtp-tab-tt-footer {
  position: fixed;
  margin: auto;
  z-index: 9999;
  padding: 5px 10px;
  border-radius: 10px 0 0 10px;
}
.wmtp-tab-tt-footer .wmtp-boborder {
  border: none;
}

.wmtp-tab-tt-footer li {
  padding: 5px 0;
  float: left;
  list-style: none;
  text-align: center;
  margin-bottom: 0 !important;
  margin-left: 0 !important;
}
.wmtp-tab-tt-footer svg, .wmtp-tab-tt-footer img, .wmtp-tab-tt-footer embed, .wmtp-tab-tt-footer object {
  display: inherit !important;
  max-width: inherit !important;
}
.wmtp-borderNone {
  border: 0 !important;
}
input.wmtp-btn-style {
    margin-left: 0 !important;
    margin-top: 20px !important;
}


form.wmtp-form-popup label {
  display: grid;
  width: 400px;
  margin-bottom: 20px;
}

form.wmtp-form-popup label input[type="text"], form.wmtp-form-popup label textarea {
  margin-top: 5px;
  width: 100%;
}
.wmtp-chat-popup {
  width: 400px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999999999;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  overflow: hidden;
}
.wmtp-form-container {
  max-width: 100%;
  padding: 25px;
  background-color: white;
}

/* Popup Title */
.wmtpPopupTitle {
  font-size: 20px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 10px;
  text-align: center;
}

.wmtpPopupMessage {
  color: #6c757d;
  margin-bottom: 20px;
  text-align: center;
  font-size: 14px;
  line-height: 1.5;
}

/* Popup Form Fields */
.wmtp-popup-field-group {
  margin-bottom: 18px;
}

.wmtp-popup-field-group:last-child {
  margin-bottom: 0;
}

.wmtpPopupField {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: #495057;
  font-size: 14px;
}

button.btn.wmtpCancelPopup {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: #dc3545;
  color: white;
  border-radius: 50%;
  padding: 8px 12px;
  border: none;
  font-size: 16px;
  cursor: pointer;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

button.btn.wmtpCancelPopup:hover {
  background-color: #c82333;
  transform: scale(1.1);
}
.wmtp-screen-chat-popup {
  width: 100vw;
  height: 100vh;
  z-index: 99999;
  position: fixed;
  background-color: #00000061;
  top: 0;
  left: 0;
  display: none;
}
/* Full-width textarea */
.wmtp-form-container textarea,
.wmtpPopupTextarea {
  width: 100%;
  padding: 12px 16px;
  margin: 5px 0 15px 0;
  border: 2px solid #e9ecef;
  border-radius: 6px;
  font-size: 14px;
  transition: border-color 0.3s ease;
  background: #fff;
  resize: vertical;
  min-height: 80px;
  box-sizing: border-box;
}

.wmtp-form-container .wmtpPreviewField {
  width: 100%;
  padding: 12px 16px;
  margin: 5px 0 15px 0;
  border: 2px solid #e9ecef;
  border-radius: 6px;
  font-size: 14px;
  transition: border-color 0.3s ease;
  background: #fff;
  box-sizing: border-box;
}

/* When the textarea gets focus, do something */
.wmtp-form-container textarea:focus, 
.wmtp-form-container .wmtpPreviewField:focus,
.wmtpPopupTextarea:focus {
  outline: none;
  border-color: #667eea;
}

/* Set a style for the submit/send button */
.wmtp-form-container .wmtpPreviewBtn {
  width: 100%;
  background: linear-gradient(135deg, #007cba 0%, #0073aa 100%);
  color: #fff;
  border: none;
  padding: 14px 20px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 20px;
  transition: all 0.3s ease;
}

.wmtp-form-container .wmtpPreviewBtn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 124, 186, 0.3);
}

/* Checkbox and Radio Styling */
.wmtp-checkbox-option,
.wmtp-radio-option {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-weight: normal;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.wmtp-checkbox-option:hover,
.wmtp-radio-option:hover {
  background-color: #f8f9fa;
}

.wmtp-checkbox-option input,
.wmtp-radio-option input {
  margin-right: 10px;
  transform: scale(1.2);
}

.wmtp-form-container label.wmtpPopupMessage {
  display: block;
  margin-bottom: 20px;
}
/* Add a red background color to the cancel button */
.wmtp-form-container .wmtpPreviewBtnCancel {
  background-color: red;
}
.wmtp-form-container .wmtpPreviewMar {
  margin-top: 10px !important;
}
/* Add some hover effects to buttons */
.wmtp-form-container .btn:hover, .open-button:hover {
  opacity: 1;
}




@media (min-width: 71.26em) {
/*************** ADD DESKTOP AND LAPTOP ONLY CSS HERE  ***************/
  .wmtp-none-desktop ul li a p {
    display: none !important;
  }
  .wmtp-tableSize-w45 {
    width: 45px !important;
  }
  .wmtp-tableSize-w66 {
    width: 66px !important;
  }
  .wmtp-tableSize-w80 {
    width: 80px !important;
  }
  
  /* Desktop Popup Enhancement */
  .wmtp-chat-popup {
    width: 450px;
    max-width: none;
  }
  
  .wmtp-form-container {
    padding: 30px;
  }
  
  .wmtpPopupTitle {
    font-size: 22px;
    margin-bottom: 15px;
  }
  
  .wmtp-tab-tt-footer .only_desktop, 
  .wmtp-tab-tt-footer .hide_mobile {
    display: block;
  }
  .wmtp-tab-tt-footer .only_tablet, 
  .wmtp-tab-tt-footer .only_mobile, 
  .wmtp-tab-tt-footer .hide_desktop {
    display: none;
    -webkit-appearance: none;
    -moz-appearance: none;
  }
}
@media (max-width: 71.25em) {
/*************** ADD TABLET ONLY CSS HERE  ***************/
.wmtp-chat-popup {
  width: 70vw;
}
  .wmtp-none-tablet ul li a p {
    display: none !important;
  }
  .wmtp-tab-tt-footer li {
    float: none;
  }
  .wmtp-tab-tt-footer .only_desktop, 
  .wmtp-tab-tt-footer .only_mobile {
    display: none;
    -webkit-appearance: none;
    -moz-appearance: none;
  }
  .wmtp-tab-tt-footer .only_tablet, 
  .wmtp-tab-tt-footer .hide_desktop, 
  .wmtp-tab-tt-footer .hide_mobile {
    display: block;
  }
  .wmtp-tablet-w20-per li {
    width: 20% !important;
  }
  .wmtp-tablet-w25-per li {
    width: 25% !important;
  }
  .wmtp-tablet-w33-per li {
    width: 33% !important;
  }
  .wmtp-tablet-w50-per li {
    width: 50% !important;
  }
  .wmtp-tablet-w100-per li {
    width: 100% !important;
  }
}
@media only screen and (max-width: 47.99em) {
/*************** ADD MOBILE ONLY CSS HERE  ***************/
.wmtp-chat-popup {
  width: 85vw;
}
.wmtp-tab-tt-footer .only_desktop, 
.wmtp-tab-tt-footer .only_tablet, 
.wmtp-tab-tt-footer .hide_mobile {
  display: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.wmtp-tab-tt-footer .only_mobile, 
.wmtp-tab-tt-footer .hide_desktop {
  display: block;
}
  .wmtp-tab-mobile-horizontal li {
    border-top: none;
    padding: 0;
    float: left;
    list-style: none;
    text-align: center;
    margin-bottom: 0px;
  }
  
  .wmtp-tab-tt-footer p {
    font-size: 8px;
  }
  .wmtp-tab-mobile-horizontal p.wmtp-phonesize {
    font-size: 12px !important;
  }
  .wmtp-tab-mobile-horizontal {
    transform: none;
    z-index: 9999;
    left: 0;
    width: 100%;
    padding: 5px 10px;
    border-radius: 0;
    top: unset;
    bottom: 0;
  }
  .wmtp-tab-mobile-horizontal ul li {
      margin-bottom: 0 !important;
  }
  .wmtp-none-mobile ul li a p {
    display: none !important;
  }
  .wmtp-tab-mobile-horizontal {
    bottom: 0 !important;
    border-radius: 0 !important;
  }
  .wmtp-tab-mobile-vertical ul li {
      /* width: 100% !important; */
      margin-bottom: 5px !important;
  }
  .wmtp-tab-mobile-vertical {
      width: 80px;
  }
  .wmtp-tablet-w20-per li {
    width: 20% !important;
  }
  .wmtp-tablet-w25-per li {
    width: 25% !important;
  }
  .wmtp-tablet-w33-per li {
    width: 33% !important;
  }
  .wmtp-tablet-w50-per li {
    width: 50% !important;
  }
  .wmtp-tablet-w100-per li {
    width: 100% !important;
  }
  .wmtp-tab-tt-footer ul {
    display: flow-root;
    padding: 0;
  }
  .wmtp-mobile-w20-per li {
    width: 20% !important;
  }
  .wmtp-mobile-w25-per li {
    width: 25% !important;
  }
  .wmtp-mobile-w33-per li {
    width: 33% !important;
  }
  .wmtp-mobile-w50-per li {
    width: 50% !important;
  }
  .wmtp-mobile-w100-per li {
    width: 100% !important;
  }

}



/* # Media Queries (mobile-first)
---------------------------------------------------------------------------------------------------- */
@media only screen and (max-device-width: 1080px) {
  .wmtp-tab-mobile-full-hd {
    left: 0 !important;
    width: 100% !important;
    padding: 5px 10px !important;
    border-radius: 0 !important;
    top: unset !important;
    bottom: 0 !important;
    float: left;
  }
  .wmtp-tab-mobile-full-hd.wmtp-mobile-w20-per li {
    width: 20% !important;
  }
  .wmtp-tab-mobile-full-hd.wmtp-mobile-w25-per li {
    width: 25% !important;
  }
  .wmtp-tab-mobile-full-hd.wmtp-mobile-w33-per li {
    width: 33% !important;
  }
  .wmtp-tab-mobile-full-hd.wmtp-mobile-w50-per li {
    width: 50% !important;
  }
  .wmtp-tab-mobile-full-hd.wmtp-mobile-w100-per li {
    width: 100% !important;
  }
}

/* 
  ##Device = Desktops
  ##Screen = 1281px to higher resolution desktops
*/

@media (min-width: 1281px) {
  
  .visible {
    display: block !important;
  }
  
}

/* 
  ##Device = Laptops, Desktops
  ##Screen = B/w 1025px to 1280px
*/

@media (min-width: 1025px) and (max-width: 1280px) {
  
  .visible {
    display: block;
  }
  
}

/* 
  ##Device = Tablets, Ipads (portrait)
  ##Screen = B/w 768px to 1024px
*/

@media (min-width: 768px) and (max-width: 1024px) {
  
  .visible {
    display: block;
  }

  /* .wmtp-tablet-w20-per li {
    width: 20% !important;
  }
  .wmtp-tablet-w25-per li {
    width: 25% !important;
  }
  .wmtp-tablet-w33-per li {
    width: 33% !important;
  }
  .wmtp-tablet-w50-per li {
    width: 50% !important;
  }
  .wmtp-tablet-w100-per li {
    width: 100% !important;
  } */
  .display-tablet-none {
    display: none;
  }
  
}

/* 
  ##Device = Tablets, Ipads (landscape)
  ##Screen = B/w 768px to 1024px
*/

@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
  
  .visible {
    display: block;
  }

  
}

/* 
  ##Device = Low Resolution Tablets, Mobiles (Landscape)
  ##Screen = B/w 481px to 767px
*/

@media (min-width: 481px) and (max-width: 767px) {
  
  .visible {
    display: block;
  }
  /* .wmtp-tablet-w20-per li {
    width: 20% !important;
  }
  .wmtp-tablet-w25-per li {
    width: 25% !important;
  }
  .wmtp-tablet-w33-per li {
    width: 33% !important;
  }
  .wmtp-tablet-w50-per li {
    width: 50% !important;
  }
  .wmtp-tablet-w100-per li {
    width: 100% !important;
  } */
  .display-tablet-none {
    display: none;
  }
  
}

/* 
  ##Device = Most of the Smartphones Mobiles (Portrait)
  ##Screen = B/w 320px to 479px
*/

@media (min-width: 320px) and (max-width: 480px) {
  
  .visible {
    display: block;
  }

  /* .wmtp-mobile-w20-per li {
    width: 20% !important;
  }
  .wmtp-mobile-w25-per li {
    width: 25% !important;
  }
  .wmtp-mobile-w33-per li {
    width: 33% !important;
  }
  .wmtp-mobile-w50-per li {
    width: 50% !important;
  }
  .wmtp-mobile-w100-per li {
    width: 100% !important;
  } */
  .display-mobile-none {
    display: none;
  }
  .wmtp-tab-tt-footer ul {
    display: flow-root;
    padding: 0;
  }
  
  /* Mobile Popup Responsive */
  .wmtp-chat-popup {
    width: 95%;
    max-width: 380px;
    margin: 20px;
  }
  
  .wmtp-form-container {
    padding: 20px;
  }
  
  .wmtpPopupTitle {
    font-size: 18px;
  }
  
}