/*
Theme Name: BCM Template 9
Description: Child theme for Avada theme
Author: ThemeFusion
Author URI: https://theme-fusion.com
Template: Avada
Version: 1.0.0
Text Domain:  Avada
*/

/** Add this to your child theme's style.css file. */

/** Sticky Stuff */

.sticky-btn-wrapper .btn {
  display: inline-block;
  background: #333;
  color: #fff;
  text-decoration: none;
  padding: 1em 2em;
  margin: 0.5em 0;
  opacity: 0.9;
	text-align:center;
	text-transform:uppercase!important;
}

.sticky-btn-wrapper .btn:hover {
  background: #eaeaea;
  color: #333;
}

.sticky-btn-wrapper {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  padding: 0;
  margin: 0;
	z-index:99999;
}

.sticky-btn-wrapper .sticky-btn {
  width: 50%;
  margin: 0;
}

.sticky-btn-wrapper .sticky-btn:hover {
	background-color: var(--awb-color6) !important;
	color: var(--awb-color1) !important;
}

.sticky-btn-wrapper .sticky-btn__left {
  background-color: var(--awb-color4) !important;
}

.sticky-btn-wrapper .sticky-btn__right {
  background-color: var(--awb-color5) !important;
}

/* Hide the sticky buttons for wide devices. */
@media screen and (min-width: 768px) {
  .sticky-btn-wrapper .sticky-btn, .sticky-btn-wrapper {
    display: none;
  }
}

/* Extra bottom padding for the sticky buttons on mobile. */
@media all and (max-width: 767.998px) {
  footer {
    padding-bottom: 5em;
  }
}