/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Mar 31 2025 | 08:06:32 */
.floating {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  transform: translate(-50%, 10%);
  display: none;
  pointer-events: none;
  position: fixed;
  bottom: 0;
  z-index: 1;
  left: 50%;
  background-color: rgba(0, 0, 0, .85);
  width: 100vw;
  padding: 0.4em 0 0;
}

.floating.show {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
  pointer-events: auto;
	  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.floating-body{
max-width: 100%;
    margin: 0 auto;
    text-align: center;
}
.footer-text{
font-size:13px;
color:#fff;
    text-align: center;
	margin: 0 0 7px;
}
.floating .is-style-btn_solid a {
    box-shadow: 0 4px 0 rgb(185 32 32);
}

.floating [class*=is-style-btn_] a {
    background: #f74a4a;
    border-radius: var(--the-btn-radius, 0);
    display: inline-block;
    letter-spacing: var(--swl-letter_spacing, 1px);
    line-height: 1.5;
    margin: 0;
    min-width: var(--the-min-width);
    padding: var(--the-padding);
    position: relative;
    text-decoration: none;
    width: var(--the-width);
}
@media (max-width: 768px) {
  .p-fixBtnWrap {
    bottom: 7.65em;
  }
}
@media (min-width: 600px) {
.floating .swell-block-button{
        --the-min-width: 20%;
    }
}