/*
Theme Name: Betheme Child
Description: Child theme for Betheme
Author: Muffin group
Template: betheme
*/

.donation-options-wrapper {
    position: fixed;
    display: block;
    bottom: -1200px;
    background: #fff;
    text-align: center;
    padding: 15px;
    width: 300px;
    border: solid 1px grey;
    left: 10px;   
    transition: all linear 1s;
}

.donation-options-wrapper a {
    min-width: 150px;
    margin: 10px;
}

.floating-icon {
    position: fixed;
    bottom: -1000px;
    left: 20px;
    background: #fff;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    border: #555 1px solid;
    border-style: dashed;
    box-shadow: #858585 1px 1px 15px;
    cursor: pointer;
    transition: all linear 0.6s;
}

.floating-reveal {
    bottom: 20px;
}

.floating-icon:hover {
    width: 75px;
    height: 75px;
}

.stripe-logo-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.lock-image {
    max-width: 20px;
    display: block;
    position: relative;
}

.stripe-logo {
    max-width: 100px;
    margin: 12px 8px 8px;
}

.no-overflow-x {
    overflow: hidden;    
}

.close {
    right: 10px;
    top: 10px;
}
.jumbotron h1,
.jumbotron p {
    color: #fff;
}

.featured-images.text-center {
    display: none;    
}

.time-to-read div p {
    margin-bottom: 0;    
}

.triple-spinner {
  display: block;
  position: relative;
  margin: 15px auto 50px;
  width: 125px;
  height: 125px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid transparent;
  border-top: 4px solid #FF5722;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}

.triple-spinner::before,
.triple-spinner::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 4px solid transparent;
}
.triple-spinner::before {
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border-top-color: #FF9800;
  -webkit-animation: spin 3s linear infinite;
  animation: spin 3.5s linear infinite;
}
.triple-spinner::after {
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border-top-color: #FFC107;
  -webkit-animation: spin 1.5s linear infinite;
  animation: spin 1.75s linear infinite;
}

#Top_bar #logo img {
    max-height: 250px;
}

#Top_bar.is-sticky {
	height: 100px;
}

#Top_bar.is-sticky #logo img.logo-sticky {
    max-height: 91px;
}

.header-stack.header-center #Top_bar .menu_wrapper {
    position: relative;
    top: 22px;
}

@keyframes animatedBackground {
  0% {
    left: 0px;
  }
  99% {
    left: -24000px;
  }
  100%{
      left: 0px;
  }
}