/*!
Theme Name: Kadence Child
Theme URI: https://www.kadencewp.com/kadence-theme/
Template: kadence
Author: Kadence WP
Author URI: https://www.kadencewp.com/
Description: A child theme for the Kadence Theme.
Version: 1.0.0
License: GNU General Public License v3.0 (or later)
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Text Domain: kadence-child
*/

/* Theme customization starts here
-------------------------------------------------------------- */

/* TEMP FIX SCROLLING ON MOBILE */

p {
    margin-bottom: 20px !important;
}

.single-content h1, .single-content h2, .single-content h3, .single-content h4, .single-content h5, .single-content h6 {
  margin: 0 0 0.5em !important;
}

.single-content ul, .single-content ol {
  margin: 0 0 20px !important;
  padding-left: 2em;
}

#btn-w {
    min-width: 250px;
}


/* FOOTER */
.site-footer {
    margin-top: 30px;
}

.floating-call-button {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 9999;
    text-align: center;
}
.floating-call-button .pulsing-button {
    display: inline-block;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    transition: transform 0.3s;
}
.floating-call-button .pulsing-button:hover {
  transform: scale(1.1);
}
.floating-call-button span {
    display: block;
    text-align: center;
    line-height: 1.1em;
    color: red;
    font-size: 16px;
    font-weight: 600;
}
.blob {
  background: white;
  border-radius: 5px;
  /* height: 20px; */
  padding: 2px;
  color: #fff;
  font-weight: 600;
  font-size: 17px;
  box-shadow: 0 0 0 0 rgba(255, 82, 82, 1);
	transform: scale(1);
	animation: pulse 1.3s infinite;
}

@keyframes pulse {
	0% {
		transform: scale(0.95);
		box-shadow: 0 0 0 0 rgba(255, 82, 82, 0.8);
	}

	70% {
		transform: scale(1);
		box-shadow: 0 0 0 22px rgba(255, 82, 82, 0);
	}

	100% {
		transform: scale(0.95);
		box-shadow: 0 0 0 0 rgba(255, 82, 82, 0);
	}
}

@media print, screen and (max-width: 449px) {
  .blob {
      font-size: 15px;
      font-weight: 600;
      padding: 2px;
  }
  .floating-call-button span {
    display: none;
  }
}

@media print, screen and (max-width: 390px) {
  .blob {
      font-size: 17px;
      font-weight: 400;
      padding: 2px;
  }
}
.modal {
  display: none;
  position: fixed;
  z-index: 99999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
}
.modal-content {
  background-color: #ffffff;
  margin: 10% auto;
  padding: 30px 30px 5px;
  border: 1px solid #888888;
  max-width: 500px;
}

.close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  margin-top: -6px;
}
.close:hover, .close:focus {
  color: #000000;
  text-decoration: none;
  cursor: pointer;
}

.order-input {
    width: 100%!important;
    max-height: 60px!important;
    height: 60px!important;
    font-size: 1.1rem!important;
    line-height: 1.5!important;
    color: #495057!important;
    background-color: #fff!important;
    background-image: none!important;
    background-clip: padding-box!important;
    border: 1px solid #ced4da!important;
    border-radius: 0.25rem!important;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    margin-bottom: 15px!important;
}
.order-btn {
    background-color: #ff211b!important;
    color: #fff!important;
    padding: 10px 20px!important;
    font-size: 1.1rem!important;
    font-weight: 700!important;
    border: 0.0625rem solid rgba(255, 255, 255, 0.2)!important;
    border-radius: 0.25rem!important;
    position: relative!important;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
    width: 100%!important;
    height: 65px!important;
    max-height: 65px!important;
}
.order-btn:hover {
    background-color: #e61c15!important;
}