/*
Theme Name: Beaver Builder Child Theme
Theme URI: http://www.wpbeaverbuilder.com
Version: 1.0
Description: An example child theme that can be used as a starting point for custom development.
Author: The Beaver Builder Team
Author URI: http://www.fastlinemedia.com
template: bb-theme
*/

/* Add your custom styles here... */

.header-donate-form {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 720px;
  margin-top: 6px;
  margin-right: 0;
  margin-left: auto;
}

.header-amounts-container {
  width: 300px;
}

.header-donate-form-amounts-description {
  font-size: 10px;
  margin-bottom: 0 !important;
}

.header-donate-form ul {
  max-width: 260px;
  padding: 0;
  margin-bottom: 0;
  margin-left: 0;
  margin-right: auto;
}

.header-donate-form-amounts {
  display: none;
}

.header-donate-form-amounts.active {
  display: flex;
}

.header-donate-form li {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  list-style: none;
  cursor: pointer;
}

.header-donate-form li label,
.header-donate-form li input {
  cursor: pointer;
}

.header-donate-form li:hover {
  color: #f47530;
}

.header-donate-form li + li {
  margin-left: 10px;
}

.header-donate-form input[type="radio"] {
  /* Add if not using autoprefixer */
  -webkit-appearance: none;
  appearance: none;
  /* For iOS < 15 to remove gradient background */
  background-color: #e9e9e9;
  /* Not removed via appearance */
  margin: 0;

  font: inherit;
  color: #e9e9e9;
  width: 1.15em;
  height: 1.15em;
  border: 0.15em solid #e9e9e9;
  border-radius: 50%;
  transform: translateY(-0.075em);
  display: grid;
  place-content: center;
}

.header-donate-form input[type="radio"]::before {
  content: "";
  width: 0.65em;
  height: 0.65em;
  border-radius: 50%;
  transform: scale(0);
  transition: 120ms transform ease-in-out;
  box-shadow: inset 1em 1em var(--form-control-color);
}

.header-donate-form input[type="radio"]:checked {
  background-color: #f47530;
  border-color: #f47530;
}

.header-donate-form input[type="radio"]:checked::before {
  transform: scale(1);
  background-color: #f47530;
}

.header-donate-form input[type="radio"]:focus {
  outline: none;
}

.header-donate-form li label {
  padding-left: 6px;
}

.header-donate-form-buttons {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.header-donate-form .btn {
  max-width: 220px;
  padding: 10px 20px;
  border-radius: 24px;
  border: 1px solid #f47530;
  text-transform: uppercase;
  background-color: #fff;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-size: 20px;
  color: #f47530;
  transition: all 0.3s ease;
}

.header-donate-form .btn-primary {
  background-color: #3695d8;
  border-color: #3695d8;
  color: #fff;
}

.header-donate-form .btn-primary:hover {
  background-color: #f47530;
  border-color: #f47530;
  color: #fff;
  transition: all 0.3s ease;
}

.header-donate-form .btn-secondary {
  background-color: #fff;
  color: #f47530;
}

.header-donate-form .btn-secondary:hover {
  background-color: #f47530;
  color: #fff;
  transition: all 0.3s ease;
}

@media (min-width: 992px) and (max-width: 1199px) {
  /** main logo **/
  body.page-id-19674 .fl-node-5h76jwegldvs {
    max-width: 240px;
  }

  /** sharing widget */
  .fl-col.fl-node-qpabn7fry2i9 {
    display: none;
  }

  /** form widget */
  .header-donate-form {
    max-width: 100%;
  }

  .fl-col.fl-node-rj3dy18xswg5 {
    width: 80%;
    margin-left: auto;
    margin-right: 0;
    max-width: 760px;
    float: none;
  }
}

@media (max-width: 991px) {
  .fl-node-rqmjzs2gn3tw {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }

  .fl-node-rqmjzs2gn3tw .fl-small-col {
    width: 50%;
  }

  .fl-col.fl-node-rj3dy18xswg5 {
    width: 100%;
  }

  .header-donate-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .header-donate-form ul {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 767px) {
  .header-donate-form .btn {
    width: 100%;
  }
}
