/* #00627B
#FFED75
#00CC95 */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700&display=swap");
* {
  box-sizing: inherit;
  padding: 0;
  margin: 0;
}

html {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  max-height: 100%;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
  color: #fbfbfb;
  background-image: url("kelp.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}

h1 {
  color: #ffed75;
  font-weight: 400;
  font-size: 4rem;
  margin-bottom: 20px;
}

h3 {
  font-size: 1.5rem;
}

p {
  font-size: 1.25rem;
}

.container {
  display: flex;
}

form {
  margin-bottom: 50px;
  padding: 20px;
}

.formContainer {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 30px;
  padding-top: 100px;
  height: 75%;
  min-height: 750px;
}

form h3 {
  margin-bottom: 15px;
}

form p {
  margin-bottom: 10px;
}

form .amount,
.customAmount {
  font-weight: 600;
  padding: 1em;
  margin: 10px;
  border-radius: 5px;
  cursor: pointer;
  text-align: center;
  background-color: white;
  color: #00627b;
  transition: all 0.1s;
}

.customAmount {
  text-align: left;
}

.otterPic {
  border-radius: 50%;
  height: 155px;
  width: auto;
  border: 5px solid white;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.2), 0 3px 6px 0 rgba(0, 0, 0, 0.19);
}

.nextSection {
  list-style: none;
}

.nextSection a {
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.1s;
  color: #00627b;
  background-color: #ffed75;
  font-size: 1.5rem;
  padding: 15px 20px;
  margin-left: 20px;
  text-align: center;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.2), 0 3px 6px 0 rgba(0, 0, 0, 0.19);
}

#pagepiling {
  width: 50%;
}

#pagepiling section {
  background-color: #00627b;
  /* width: 60%; */
  /* min-width: 60%; */
  max-width: 750px;
  height: 100vh;
}

.breadCrumbs {
  display: flex;
  justify-content: space-around;
  max-width: 750px;
  width: 100%;
  border-bottom: 1px solid #ffffff;
  padding-bottom: 50px;
  margin: 10px;
  font-weight: 300;
}

/* -------------------------- HOME ---------------------------------- */
.home {
  background-color: #00627b;
  text-align: center;
  min-height: 50vh;
  /* breakpoint at mobile */
  /* add more margin top to the top  */
  margin-top: 12%;
  position: relative;
}

.home .otterPic {
  position: absolute;
  top: -5%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.home h1 {
  padding-top: 75px;
}

.home p {
  font-size: 1.25rem;
  padding: 20px;
  margin-bottom: 80px;
}

.home a {
  font-size: 2rem;
  background-color: #ffed75;
  color: #00627b;
  font-weight: 600;
  border-radius: 7px;
  text-decoration: none;
  padding: 15px 30px;
  transition: all 0.1s;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.2), 0 3px 6px 0 rgba(0, 0, 0, 0.19);
}

.home a:hover {
  /* border: 5px solid white; */
  color: white;
}

/* ----------------------------------------------------------- */

/* ---------------------------- AMOUNT ----------------------- */

/* gets rid of circle thingy */
.amount input[type="radio"] {
  display: none;
}

.amount input[type="radio"]:checked + label {
  background: #00cc95;
  color: white;
}

/* #other + label {
  display: none;
} */

.amountButtons {
  display: flex;
  flex-wrap: wrap;
}
.amountButtons label,
.customAmount {
  flex: 1 0 25%;
  max-width: 140px;
}

/* ----------------------------------------------------------------- */

/* -----------------------------MONTH CHECK FROM W3------------------------- */

.monthCheck {
  display: flex;
  margin-top: 30px;
  align-items: center;
  position: relative;
}

/* Hide the browser's default checkbox */

.monthCheck input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkMark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}

/* On mouse-over, add a grey background color */
.monthCheck:hover input ~ .checkMark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.monthCheck input:checked ~ .checkMark {
  background-color: #00cc95;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkMark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.monthCheck input:checked ~ .checkMark:after {
  display: block;
}

/* Style the checkmark/indicator */
.monthCheck .checkMark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

label.checkContainer {
  padding-left: 40px;
  font-size: 1.25rem;
}

/* -------------------------DETAILS----------------------------- */

.details input:focus {
  outline: 3px solid #00cc95;
}

input[type="text"],
input[type="email"],
input[type="number"],
select {
  border-color: transparent;
  padding: 10px;
  border-radius: 7px;
  font-family: inherit;
  font-size: 0.875rem;
}

input[type="email"] {
  grid-column: 1 / -1;
}

.personalInfo {
  display: grid;
  grid-template-columns: 50% 50%;
  grid-template-rows: 40px 40px;
  column-gap: 10px;
  row-gap: 10px;
  margin-bottom: 50px;
}

.billing {
  display: grid;
  grid-template-columns: 25% 50% 25%;
  grid-template-rows: 40px 40px 40px;
  column-gap: 10px;
  row-gap: 10px;
}

.address {
  grid-column: 1 / -1;
}

select {
  border-radius: 7px;
  font-family: inherit;
  font-size: 0.875rem;
  padding-left: 10px;
  color: #8e8e8e;
}

select:focus {
  outline: 3px solid #00cc95;
}

.country {
  grid-column: 1 / 4;
  border-color: transparent;
}

/* ------------------------------------------------   */

/* ------------------PAYMENT------------------ */

.payment a {
  background-color: #ffed75;
  width: 200px;
  text-align: center;
  color: #00627b;
  font-weight: 600;
  border-radius: 7px;
  text-decoration: none;
  padding: 15px 30px;
  margin-left: 20px;
  transition: all 0.1s;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.2), 0 3px 6px 0 rgba(0, 0, 0, 0.19);
}

.paymentTypeSelect {
  margin-top: 50px;
  margin-bottom: 50px;
  width: 80%;
  display: flex;
  justify-content: space-between;
}

.fakeCard {
  margin-left: 10px;
  background-color: white;
  color: #00627b;
  font-weight: 700;
  padding: 10px 10px;
  border-radius: 3px;
}

.fakePaypal {
  margin-left: 10px;
  color: #00cc95;
  font-weight: 700;
  font-size: 1.125rem;
}

.cardDetails {
  display: grid;
  grid-template-columns: 35% 35% 30%;
  grid-template-rows: 40px 40px;
  column-gap: 10px;
  row-gap: 10px;
  margin-bottom: 20px;
}

.creditNumber {
  grid-column: 1 / -1;
}

.cardDetails input:focus {
  outline: 3px solid #00cc95;
}

/* --------------  THANK YOU --------------------------------------- */

.thankYou {
  height: 100vh;
  padding: 0 40px;
  background-color: #00627b;
  display: flex;
  text-align: center;
  flex-direction: column;
  justify-content: center;
}

.confirmationCheck {
  height: 150px;
}

.charityName {
  color: #ffed75;
  font-size: 3rem;
  font-weight: 500;
  padding-left: 20px;
}

.thankYou h1 {
  font-size: 3rem;
}

.thankYouText {
  padding: 100px 0;
}

.thankYou .logo {
  margin-top: 50px;
}

.thanksHomie {
  width: 60%;
  margin: 0 auto;
}

.thanksHomie > p {
  margin-bottom: 25px;
}

.thankYou .otterPic {
  height: 120px;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* -------------- --------------------------------------- */

/* FOR NAVIGATION */

#menu li {
  display: inline-block;
  margin: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
}
#menu li.active {
  color: #fff;
}

/* #menu li.active a:hover {
}

#menu li:hover {
} */
#menu li a,
#menu li.active a {
  display: block;
}

#menu {
  position: absolute;
  top: 40px;
  left: 0;
  height: 40px;
  z-index: 70;
  margin: 0;
}

/* custom styles */
#menu li a {
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
  background-color: unset;
  text-decoration: none;
}

#menu li.active a {
  color: #ffed75;
  border-bottom: 2px solid #ffed75;
}

.pp-section.pp-table {
  display: block;
}

.pp-tableCell {
  display: block;
}

/* ------------------QUERY------------------- */

@media only screen and (max-width: 500px) {
  #menu li a {
    font-size: 1rem;
    font-weight: normal;
  }

  h3 {
    font-size: 1.2rem;
  }

  p {
    font-size: 0.9rem;
  }

  .formContainer {
    padding-top: 80px;
    height: 65%;
    min-height: 550px;
  }

  form .amount,
  .customAmount {
    font-size: 0.9rem;
  }

  label.checkContainer {
    font-size: 1.1rem;
  }

  .paymentTypeSelect {
    width: 100%;
  }
}
