.container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}
.close-modal {
  position: fixed;
  top: 12px;
  right: 12px;
  width: 35px;
  height: 35px;
  font-size: 0px;
  color: transparent;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  z-index: 9999;
}
.close-modal::after, .close-modal::before {
  width: 80%;
  height: 2px;
  background: var(--color-dark);
  z-index: 2;
  content: '';
  position: absolute;
  top: 17px;
  left: 3px;
  transform: rotate(45deg);
  transition: all 0.3s ease-in-out;
}
.close-modal::before {
  transform: rotate(-45deg);
}
.close-modal:hover::after, .close-modal:hover::before {
  background: var(--color-black);
}
@media (max-width: 600px) {
  .btn.btn-faq {
    position: fixed;
    right: -28px;
    top: 50vh;
    transform: translate3d(0, 0, 0);
    z-index: 999;
    font-weight: 700;
  }
  .header-btns .btn.is-hi {
    font-size: 13px;
  }
}
@media (max-width: 980px) {
  .donate-block {
    display: block;
  }
  .select-box {
    margin-bottom: 0px;
  }
  #destination {
    padding-top: 20px;
  }
  .sticky-footer {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background-color: #718096;
    color: var(--color-white);
    line-height: 50px;
    text-align: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 18px;
    z-index: 999;
    transform: translate3d(0, 0, 0);
    transition: 0.2s all ease-in-out;
  }
  .sticky-footer.is-up {
    transform: translate3d(0, 100%, 0);
  }
  body {
    overflow: inherit;
    position: inherit;
  }
  .container {
    max-width: 600px;
  }
  a.is-logo {
    left: 15px;
  }
  .header-right, .header-btns {
    right: 15px;
  }
  .headline-wrapper {
    height: 70px;
  }
  .result {
    margin: 0px -5px;
  }
  .result-box {
    padding: 0px 5px;
  }
  .box-inner h3 {
    font-size: 15px;
    font-weight: 600;
  }
  .headline-wrapper h1 {
    font-size: 20px;
  }
  .box-inner {
    height: 70px;
    padding: 13px 0px 0px 0;
  }
  .map-container {
    height: auto;
  }
  .inner-container.left-container {
    width: 100%;
    float: none;
  }
  .inner-container.right-container {
    width: 100%;
    padding: 0px;
    margin-top: 20px;
    float: none;
  }
  .body-wrapper {
    height: auto;
    position: relative;
    border: 0px solid #fff;
  }
  .body-wrapper .container {
    height: auto;
  }
  .content-block {
    height: auto;
  }
  .footer-wrapper {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background-color: var(--color-yellow);
    color: var(--color-dark);
    line-height: 60px;
    text-align: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 17px;
  }
  #tabs-content {
    padding-top: 80px;
  }
  .right-container .content-block, .right-container h3 {
    border-radius: 0;
  }
}