body, html {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Open Sans", Helvetica Neue, Arial, Sans-serif;
  height: 100vh;
  place-content: center;
  display: flex;
}

* {
  box-sizing: border-box;
}

#page {
  width: 70vw;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  margin: auto;
  height: 80vh;
  box-sizing: content-box;
  overflow-y: auto;
  border-radius: 10px;
  box-shadow: 0px 0px 7px -2px #aaa;
}
#page #left, #page #right {
  height: 80vh;
  width: 50%;
  background: #fff;
  overflow: hidden;
  box-sizing: border-box;
  padding: 0;
}
#page #left {
  border-radius: 10px 0 0 10px;
}
#page #left img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: auto;
  margin-left: -40px;
}
#page #right {
  padding: 2vw 3rem;
  box-sizing: border-box;
  overflow-y: auto;
  border-radius: 0 10px 10px 0;
  position: relative;
}
#page #right #home {
  position: absolute;
  left: 40px;
  top: 30px;
}
#page #right #home img {
  width: 20px;
}
#page #right footer {
  font-size: 10px;
  text-align: center;
  width: 100%;
  margin: auto;
  padding: 5px 0;
  color: #ccc;
}
#page h1 {
  margin: 10px 0;
  font-size: 38px;
  line-height: 1.1;
  text-align: center;
}
#page h2 {
  font-size: 24px;
  margin: 0;
  text-align: center;
}
#page h2 span {
  color: #50585e;
}
#page h4 {
  text-align: center;
  font-size: 1rem;
  margin: 0;
  font-weight: 300;
}
#page hr {
  width: 100%;
  border-color: #dfdfdf;
}
#page a, #page button {
  text-decoration: none;
}
#page #tabs {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-content: center;
  align-items: center;
  justify-content: center;
}
#page #tabs .tablisting {
  display: flex;
  list-style: none;
  margin: 40px 0 0px 0;
  padding: 0;
  width: 100%;
}
#page #tabs .tablisting li {
  display: inline;
  box-shadow: 0 -2px 3px #ccc;
  border-radius: 5px 5px 0 0;
  border-bottom: none;
  padding: 10px 0;
  width: 50%;
  background: #000000;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
}
#page #tabs .tablisting li a {
  padding: 10px 20%;
  text-decoration: none;
  color: #fff;
}
#page #tabs .tablisting li.ui-state-active {
  background-color: #9e7b61;
}
#page #tabs .tablisting li.ui-state-active a {
  color: #000;
}
#page #tabs .tablisting li:hover {
  background-color: #9e7b61;
}
#page #tabs .tablisting li:hover a {
  background-color: #9e7b61;
  color: #000;
}
#page #tabs #reccuring, #page #tabs #onetime {
  display: grid;
  gap: 30px 20px;
  margin: 20px 0;
  justify-items: center;
  grid-template-columns: repeat(2, 2fr);
}
#page #tabs .ui-tabs-panel {
  border: 1px solid #dfdfdf;
  width: 100%;
  min-height: 40vh;
  padding: 20px;
}
#page #tabs button {
  padding: 10px 10px;
  text-align: center;
  background: linear-gradient(180deg, #ffecec, #e0d7d7);
  box-shadow: 0 2px 3px #ccc;
  border-radius: 5px;
  border: none;
  -webkit-border-radius: 5px;
  -o-border-radius: 5px;
  display: block;
  cursor: pointer;
  font-size: 16px;
  min-width: 120px;
}
#page #tabs button.wish {
  text-transform: uppercase;
  background: none;
  clear: both;
  float: left;
  display: block;
  width: 78%;
  box-shadow: none;
  grid-column-start: span 2;
  border: 1px solid #ccc;
  font-size: 90%;
  margin-top: 5px;
}
#page #tabs button.wish:hover {
  background: none;
  color: #000000;
}
#page #tabs button.wish a:hover {
  color: #000000;
  opacity: 0.5;
}
#page #tabs button:hover {
  background: #9e7b61;
  color: #000;
}
#page #tabs button a {
  color: #000000;
  font-weight: bold;
  padding: 15px 0;
}
#page #donation-form {
  margin-top: 100px;
  width: 100%;
}
#page #donation-form #predefined {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-evenly;
}
#page #donation-form #predefined button {
  padding: 5px 0;
  width: 100px;
  text-align: center;
  background: linear-gradient(180deg, #ffecec, #e0d7d7);
  box-shadow: 0 2px 3px #ccc;
  border-radius: 5px;
  border: none;
  -webkit-border-radius: 5px;
  -o-border-radius: 5px;
  display: block;
  cursor: pointer;
  font-size: 16px;
}
#page #donation-form #predefined button.selected {
  background: linear-gradient(0deg, #28C940, #29d142);
  color: #fff;
}

@media screen and (max-width: 800px) {
  #page {
    flex-direction: column;
    height: unset;
    width: 90vw;
    margin: auto;
  }
  #page h1 {
    font-size: 1.6rem;
    margin: 10px 0;
  }
  #page #left, #page #right {
    width: 100%;
    height: auto;
  }
  #page #left {
    height: 30vh;
    border-radius: 10px 10px 0 0;
  }
  #page #left img {
    height: 100%;
    width: 100%;
    margin: 0;
  }
  #page #right {
    padding: 20px;
    border-radius: 0 0 10px 10px;
  }
  #page #right #home {
    position: absolute;
    left: 20px;
    top: 15px;
  }
  #page #tabs #reccuring, #page #tabs #onetime {
    gap: 20px;
  }
  #page #tabs button a {
    padding: 8px 15px;
  }
}
@media screen and (min-width: 801px) and (max-width: 1100px) {
  #page {
    width: 90vw;
  }
  #page #right {
    width: 70%;
    padding: 20px;
  }
  #page #right #home {
    position: absolute;
    left: 20px;
    top: 15px;
  }
}
@media screen and (max-width: 320px) {
  #page #tabs li {
    display: flex;
    zoom: 80%;
  }
}
@media screen and (min-width: 2520px) {
  #page #right > * {
    zoom: 1.5;
  }
}
@media screen and (min-width: 3840px) {
  #page #right > * {
    zoom: 2;
  }
}/*# sourceMappingURL=styles.css.map */