.givegab-button {
  display: inline-block;
  padding: 9px 13px;
  font-size: 14px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  outline: none;
  color: #fff;
  background-color: #8CC640;
  border: none;
  border-radius: 3px;
  font-size: 14px;
  text-shadow: 0 1px 0 rgba(0,0,0,0.2);
  border-bottom: 3px solid rgba(0,0,0,0.2);
  font-family: "Museo Slab", "Rockwell", "Georgia", Arial, Verdana, sans-serif;
  font-weight: bold;
  display: none;
}

.givegab-loader {
  width: 100vw;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.75);
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  display: none;
  z-index: 99997;
}

.givegab-loader::before {
  border: 3px solid #0FC2EC;
  border-bottom-color: #d1d1d1;
  border-radius: 50%;
  animation: rotation 1s infinite linear;
  content: "";
  display: block;
  position: absolute;
  width: 40px;
  height: 40px;
  top: calc(50% - 20px);
  left: calc(50% - 20px);
  z-index: 99998;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg) scale(1);
  }
  70% {
    transform: rotate(180deg) scale(0.8);
  }
  100% {
    transform: rotate(360deg) scale(1);
  }
}

.givegab-modal {
  display: none;
  position: fixed;
  z-index: 99999;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  -webkit-overflow-scrolling: touch;
  overflow-y: scroll;
  background-color: rgba(0, 0, 0, 0.4);
}

.givegab-modal .modal-content {
  background-color: #fefefe;
  border-radius: 0;
  margin: 50px auto;
  width: 50vw;
  max-width: 768px;
}

@media screen and (max-width: 768px) {
  .givegab-modal .modal-content {
    width: 75vw;
    margin: 25px auto;
  }
}

@media screen and (max-width: 480px) {
  .givegab-modal .modal-content {
    width: 90vw;
  }
}

.givegab-modal-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}
