@import url("https://fonts.googleapis.com/css2?family=Anton&family=Montserrat:wght@100&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100&display=swap");
html,
body {
  overflow-x: hidden !important;
}
body {
    margin:0 auto;
  /* font-family: "Anton", sans-serif; */
  font-family: "Roboto", sans-serif;
  width:100vw !important;
}
:root {
  --main-color: #c6d8af; /* Replace #ff0000 with your desired color value */
  --secondary-color: #98c261; /* Replace #ff0000 with your desired color value */
  --secondary-color-hover: #129b3b; /* Replace #ff0000 with your desired color value */
}
input,
textarea {
  outline: none;
}
.invicible{
  display: none !important;
}
body {
  display: flex;
  flex-direction: column;
  min-width: 100vw;
  /*height: 100vh;*/
  /*justify-content: center;*/
  align-items: center;
  /*background-color: #177245;*/
  background-color: var(--main-color);
}
.xMark {
  /* background-color: red; */
  padding-right: 10px;
  min-width: 580px;
  max-width: 580px;
  display: flex;
  justify-content: flex-end;
    margin-top:25px;
}
.xMark svg {
  fill: white;
  height: 25px;
}
.container {
  /* max-height: 850px; */
  /* min-height: 70vh; */
  min-width: 580px;
  max-width: 580px;
  margin: 0 auto;
  /* padding: 20px 20px; */
  /* background-color: rgb(224, 214, 250); */
  background-color: var(--main-color);
  display: flex;
  justify-content: center;
  /* flex-direction: column; */
  align-items: center;
  /*box-shadow: 0px 3px 12px rgba(0, 0, 0, 0.224);*/
  transition: 0.3s;
  border: solid 3px white; 

}
.container:hover {
  /*box-shadow: 0px 3px 12px rgba(0, 0, 0, 0.5);*/
  transition: 0.3s;
}
.container form {
  width: 100%;
  overflow: hidden;
  /* max-height: 850px; */
  color: rgb(0, 0, 0);
  /* display: flex; */
  justify-content: center;
  /* margin-top: 140px; */
}
.container form .formContent {
  margin: 30px 0px 0px 28px;

  width: 90%;
  overflow: hidden;
  /* background-color: rgba(238, 130, 238, 0.15); */
}
.container form .formContent label {
  /* color: #000000b7; */
  font-weight: bold;
  margin-top: 25px;
}
.container form .formContent input {
  margin-top: 15px;
}
.container form .formContent textarea {
  margin-top: 15px;
  font-size: larger;
}
.containerCurr {
  display: flex;
  justify-content: flex-start;
  gap: 5px;
  width: 200px;
}

.currency {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: white;
  font-weight: bold;
}
.currency span {
  margin-bottom: 0px !important;
}

.lkr {
  background-color: grey;
}

.usd {
  background-color: var(--secondary-color-hover);
}

form .input {
  height: 40px;
  font-size: larger;
  padding-left: 13px !important;
}
textarea {
  height: 40px;
  font-size: larger;
}
form .input:focus {
  background-color: #edfffb;
}
h1 {
  text-align: center;
}

label {
  display: block;
  margin-top: 10px;
}
.requiredLabel{
  color: red;
  font-size: 0.7rem;
  margin-top: -20px;
}
input[type="text"],
input[type="email"],
input[type="number"],
textarea {
  width: 100%;
  padding: 5px;
  margin-top: 5px;
  border: none;
}
.viewAmount {
  display: flex;
  align-items: center;
  max-height: 30px;
  min-height: 30px;
  /* background-color: aqua; */
  justify-content: flex-start;
  margin-bottom: 15px;
}
.asterix{
    margin-bottom : 20px !important;
}

.moneySign {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  background-color: var(--secondary-color);
  height: 30px;
  border: none;
}
.moneySign span {
  border: none;
}

.donationAmount {
  width: 150px !important;
  /* max-height: 30px; */
  /* min-height: 30px; */
  height: 49px;
  /* width: 100%; */
  font-size: x-large;
  padding: 0px;
  margin-top: 0px !important;
  padding: 0px 0px 0px 10px !important;
}
.viewTotal {
  /* background-color: red; */
  display: flex;
  justify-content: flex-start;
  gap: 0px;
  align-items: flex-end;
}
.viewTotal input {
  width: 200px;
  height: 30px;
  text-align: right;
  padding-right: 20px;
  font-size: x-large;
}
.viewTotal .donationTotalLabel {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 150px;
  background-color: var(--secondary-color);
  height: 40px;
  font-weight: bold;
  color: black;
  /* border: solid 1px rgb(162, 162, 162); */
}
.viewTotal .donationTotalLabel span {
  font-weight: 900;
  /* display: none; */
}
.amountPresets {
  height: 130px;

  width: 100%;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 5px;
  margin: 10px 0px 25px 0px;
}
.amountPresets div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 70px;
  flex-grow: 1;
  width: 85px;
  align-items: center;
  background-color: var(--secondary-color);
  font-weight: bold;
  font-size: 1.16rem;
  color: white;
}
.amountPresets div p {
  margin: 0px !important;
}
.amountPresets div:hover {
  background-color: var(--secondary-color-hover);
  cursor: pointer;
}
.amountPresets div:active {
  color: rgb(118, 85, 152);
  font-weight: bold;
  background-color: rgb(255, 255, 255);
}
.projects {
  margin: 2.5px 0px 2.5px 0px;
  display: flex;
  /* flex-direction: column; */
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.3%;
  background-color: var(--secondary-color);
  padding:0px 0px 20px 0px;
  color: white;
}
/* .projects .projRow {
  margin: 10px 0px 2.5px 0px;
  width: 100%;
  background-color: var(--secondary-color);
}
.proj {
  display: flex;
  justify-content: flex-start;
  align-items: first baseline;
  padding: 0px 0px 10px 10px;
  gap: 10px;
  color: white;
} */
.projects .item {
  width: 29.0%;
  flex-grow: 1;
  display: flex;
  justify-content: flex-start;
  gap: 5px;
  align-items: first baseline;
  padding: 0px 0px 0px 3%;
  margin-top: 5px;
  /* background-color: #129b3b; */
}


.trees {
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  padding: 0px 15px 0px 0px;
  font-weight: bold;
}
.prana {
  width: 100%;
  padding: 0px 20px 0px 20px;
  display: flex;
  justify-content: flex-start;
  /* background-color: var(--secondary-color); */
  align-items: first baseline;
  margin-top: 15px;
  gap: 20px;
  border-top: solid 2px rgba(97, 97, 97, 0.182);
  border-bottom: solid 2px rgba(97, 97, 97, 0.182);
  /* flex-direction: column; */
}
.prana p {
  margin-left: 3px;
  margin-right: 5px;
  color: rgb(0, 0, 0);
}
.words {
  font-weight: bold;
}
.treeCount {
  margin-top: -5px;
  font-weight: bolder;
  font-size: larger;
}
.projRow1,
.projRow2 {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
  height: 70px;
}
.projRow2 {
  background-color: #45a04900 !important;
}
.projRow2 .proj {
  background-color: var(--secondary-color);
}
.projRow1 .proj,
.projRow2 .proj {
  flex-grow: 1;
}
.projRow3 {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.projRow3 .proj:nth-child(-n + 3) {
  flex-grow: 1;
}
.subCol {
  display: flex;
  justify-content: flex-start;
  /* background-color: #4caf50; */
  gap: 5px;
}
.subCol .proj {
  min-width: 33.33% !important;
  max-width: 33.33% !important;
}
.name {
  display: flex;
  /* background-color: #ffffff4a; */
  justify-content: space-between;
  gap: 23px;
}
.name div {
  flex-grow: 1;
}
input[type="submit"] {
  font-family: "Anton", sans-serif;
  letter-spacing: 20px;
  display: block;
  min-width: 580px;
  max-width: 580px;
  padding: 20px;
  margin-top: 20px;
  background-color: var(--secondary-color);
  /* font-weight: bolder; */
  font-size: x-large;
  color: #fff;
  border: none;
  cursor: pointer;
  letter-spacing: 2px;
}

input[type="submit"]:hover {
  background-color: var(--secondary-color-hover);
}
.header-image {
  display: block;
  max-width: 100%;
  margin-bottom: 20px;
}

input[type="button"] {
  display: block;
  width: 100%;
  padding: 10px;
  margin-top: 20px;
  background-color: #4caf50;
  color: #fff;
  border: none;
  cursor: pointer;
}

input[type="button"]:hover {
  background-color: #45a049;
}
.amountPresetsLKR {
  width: 100%;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin: 10px 0px 0px 0px;
  gap: 5px;
  height: 215px;
  /* background-color: #edfffb; */
}
.amountPresetsLKR .presetRow  {
  flex-grow: 1;
  display: flex;
  justify-content: flex-start;
  gap: 5px;
  margin-top: 0px;
}
.amountPresetsLKR .presetRow div {
  height: 66px;
  flex-grow: 1;
  width: 100%;
  display: flex;
  flex-direction: row  !important;
  justify-content: center;
  align-items: center;
  background-color: var(--secondary-color);
  font-weight: bold;
  font-size: 1.1rem;
  color: white;
}
.amountPresetsLKR .presetRow div:hover {
  background-color: var(--secondary-color-hover);
  cursor: pointer;
}
.amountPresets2 {
  display: none;
}
@media (max-width: 600px) {
  .prana{
    flex-direction: column;
  }
  .treeCount {
    margin-top: -15px;
  }
  .amountPresetsLKR{
    display: none !important;
  }
  body {
    display: flex;
    flex-direction: column;
    min-width: 100vw;
    margin-left: -1px;
    justify-content: center;
    align-items: center;
    background-color: var(--main-color);
  }
  .xMark {
    /* background-color: red; */
    padding-right: 10px;
    min-width: 100vw;
    max-width: 100vw;
    display: flex;
    justify-content: flex-end;
  }
  .xMark svg {
    fill: var(--secondary-color-hover);
    height: 25px;
  }
  .container {
    /* max-height: 850px; */
    /* min-height: 70vh; */
    min-width: 100vw;
    max-width: 100vw;
    margin: 0 auto;
    /* padding: 20px 20px; */
    /* background-color: rgb(224, 214, 250); */
    background-color: var(--main-color);
    display: flex;
    justify-content: center;
    border:0;
    align-items: center;
    box-shadow: none;
    transition: 0.3s;
  }
  .container:hover {
    /*box-shadow: 0px 3px 12px rgba(0, 0, 0, 0.5);*/
    transition: 0.3s;
  }
  .container form {
    width: 100%;
    overflow: hidden;
    color: rgb(0, 0, 0);
    /* display: flex; */
    justify-content: center;
    /* margin-top: 140px; */
    bottom: 0px;
  }
  input[type="submit"] {
    font-family: "Anton", sans-serif;
    letter-spacing: 20px;
    display: block;
    min-width: 100vw;
    max-width: 100vw;
    padding: 20px;
    margin-top: 20px;
    background-color: var(--secondary-color);
    /* font-weight: bolder; */
    font-size: x-large;
    color: #fff;
    border: none;
    cursor: pointer;
    letter-spacing: 2px;
  }
  .name {
    display: block;
    /* background-color: #ffffff4a; */
    justify-content: space-between;
    gap: 23px;
  }
  .container form .formContent {
    margin: 30px 0px 0px 20px;

    width: 90%;
    overflow: hidden;
    /* background-color: rgba(238, 130, 238, 0.15); */
  }
  form .input {
    height: 25px;
    font-size: larger;
    padding-left: 13px !important;
  }
  textarea {
    height: 25px;
    font-size: larger;
  }
  .container form .formContent label {
    /* color: #000000b7; */
    font-weight: bold;
    margin-top: 15px;
  }
  .container form .formContent input {
    margin-top: 10px;
  }
  .amountPresets {
    display: none;
  }
  .amountPresets2 {
    width: 100%;
    display: flex;
    flex-direction: column !important;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin: 10px 0px 25px 0px;
    gap: 5px;
    height: 210px;
  }
  .amountPresets2 .presetRow div {
    /* height: 50px; */
    flex-grow: 1;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--secondary-color);
    font-weight: bold;
    font-size: 1rem;
    color: white;
  }
  .amountPresets2 .presetRow div:hover {
    background-color: var(--secondary-color-hover);
    cursor: pointer;
  }
  .presetRow {
    display: flex;
    flex-grow: 1;
    gap: 5px;
    margin-top: 1px;
  }
}
