@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;700&display=swap');

html * {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

*, *:after, *:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}


body {
  font-size: 100%;
  font-family: "Droid Serif", serif;
  color: #7f8c97;
  background-color: white;/*#e9f0f5;*/
}

a {
  color: #acb7c0;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
}

img {
  max-width: 100%;
}

h1, h2 {
  font-family: "Poppins", sans-serif;
  font-weight: bold;
}

.gift-container {
  width: 90%;
  max-width: 1170px;
  margin: 0 auto;
}
.gift-container::after {
  content: '';
  display: table;
  clear: both;
}

header {
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: #00AF7A;/*#303e49; /*dark blue*/
}
header h1 {
  color: white;
  font-size: 18px;
  font-size: 1.5rem;
}

#gift-timeline {
  position: relative;
  padding: 2em 0;
  margin-top: 2em;
  margin-bottom: 2em;
}

#gift-timeline::before {
  /* this is the vertical line */
  content: '';
  position: absolute;
  top: 0;
  left: 18px;
  height: 100%;
  width: 4px;
  background: #d7e4ed;
}

.gift-block {
  position: relative;
  margin: 2em 0;
}
.gift-block:after {
  content: "";
  display: table;
  clear: both;
}
.gift-block:first-child {
  margin-top: 0;
}
.gift-block:last-child {
  margin-bottom: 0;
}

.gift-icon {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 0 0 2px #00af7a, inset 0 1px 0 rgb(0 0 0 / 8%), 0 1.5px 0 2px rgb(0 0 0 / 5%);
  /*box-shadow: 0 0 0 4px white, inset 0 2px 0 rgba(0, 0, 0, 0.08), 0 3px 0 4px rgba(0, 0, 0, 0.05);*/
}

i.fa {
  position: absolute;
  left: 35%;
  top: 33.3%;
}

i.fa-phone {
  left: 33.3%;
  top: 33.3%;
}

i.fa-wifi {
  left: 21.5%;
  top: 35%;
}

i.fa-stop {
  left: 27%;
  top: 31.7%;
}

i.fa-pause {
  left: 27%;
  top: 33.3%;
}

i.fa-spinner {
  left: 24%;
  top: 31.3%;
}
i.fa-envelope-o {
  left: 25%;
  top: 29%;
}
i.fa-comments {
  left: 25%;
  top: 29%;
}
i.fa-mobile {
  left: 39%;
  top: 31%;
}
/* regular unread */
.gift-icon.unread{
  background: white;/*#75ce66;*/
  color: #00AF7A;/*#303e49;*/
}

.gift-content {
  position: relative;
  margin-left: 60px;
  background: white;
  border-radius: 0.5em;
  padding: 1em 2em;
  border: 2px solid #00af7a;
  /*box-shadow: 0 3px 0 #d7e4ed;*/
}

/* PAT, RODNEY WILL WANT TODD TO BE ABLE TO SET THESE FROM DONATIONSPREFS.  2/28/23 */
.block-read .gift-content {
  background-color:grey !important;
  border: 2px solid grey !important
}
.block-read .gift-content::before {
  content: '';
  position: absolute;
  top: 16px;
  right: 100%;
  height: 0;
  width: 0;
  border: 7px solid transparent;
  border-right: 7px solid grey;
}
.block-read .gift-content::after {
  content: '';
  position: absolute;
  top: 16px;
  right: 99.75%;
  height: 0;
  width: 0;
  border: 7px solid transparent;
  border-right: 7px solid grey !important;
}

.block-read .gift-content p.comment {
  color:black !important
}
.block-read .gift-content h2 {
  color:white !important
}
/* PAT, ALL THE WAY DOWN TO HERE, IDEALLY FROM A SINGLE VALUE. 2/28/23 */


/*.gift-content h2 {
  text-transform: uppercase;
}*/

.fixit {
  clear: both;
}

.gift-content h2 {
  color: #303e49;
}
.gift-content p, .gift-content .gift-read-more, .gift-content .gift-date {
  font-size: 13px;
  font-size: 0.8125rem;
}
.gift-content .gift-read-more, .gift-content .gift-date {
  display: inline-block;
}
.gift-content p {
  margin: 1em 0;
  line-height: 1.6;
  color: #303e49;
  font-size: .8em;
  font-family: "Poppins", sans-serif;
  font-weight: bold;
}
.gift-content .gift-read-more {
  float: right;
  padding: .8em 1em;
  background: #00AF7a;
  color: white;
  border-radius: 0.5em;
}
.no-touch .gift-content .gift-read-more:hover {
  background-color: #bac4cb;
}
.gift-content .gift-date {
  float: left;
  font-family: "Poppins", sans-serif;
  /*padding: .8em 0;*/
  color: #555;
  /*opacity: .7;*/
}
.gift-content::before {
      content: '';
      position: absolute;
      top: 16px;
      right: 100%;
      height: 0;
      width: 0;
      border: 7px solid transparent;
      border-right: 7px solid #00AF7a;
}
.gift-content::after {
  content: '';
  position: absolute;
  top: 16px;
  right: 99.75%;
  height: 0;
  width: 0;
  border: 7px solid transparent;
  border-right: 7px solid white;
}

.gift-content.dark .fullname {
  color: white;
}

.gift-content.dark .gift-date {
  color: white;
}

.gift-content h2 {
  font-size: 2em;
}

.gift-content p.comment {
  font-weight: 400;
  font-size: 1.5em;
  margin: 1.5em 0em;
}

.gift-content.dark::after {
  right: 100%;
  border-right: 7px solid #00AF7a;
}

.gift-content.dark {
  background-color: #00af7a;
}
.gift-content.dark h2 {
  color: white;
}
.gift-content.dark p.comment {
  color: white;
}

.gift-content.dark .gift-read-more {
  background: white;
  color: black;
  border: 3px solid #FF9A00;
}


i.fa.hidden {
  display: none;
}

.bhidden {
  display: none !important;
}

span.fullname {
    color: #555;
    font-family: "Poppins", sans-serif;
    float: left;
    font-size: .75em;
}

/*p.comment {
    color: firebrick; /*#397a2f;
}*/

p.producer {
  color: peru;/*firebrick;*/
}

div#right {
    grid-row-start: 1;
    grid-row-end: 3;
    grid-column-start: 3;
    grid-column-end: 4;
}

div#left {
    grid-row-start: 1;
    grid-row-end: 3;
}

header {
  display: grid;
  grid-template-columns: 25% 50% 25%;
  grid-template-rows: 100%;
  color: white;
}

header.tall1 {
  height: 6em;
}

header.tall2 {
  height: 11em;
}

header.tall3 {
  height: 16em;
}

header.tall4 {
  height: 21em;
}

header.tall5 {
  height: 26em;
}

header.tall6 {
  height: 31em;
}

#gift-timeline.tall1 {
  margin-top: 9em;
}
#gift-timeline.tall2 {
  margin-top: 14em;
}
#gift-timeline.tall3 {
  margin-top: 19em;
}
#gift-timeline.tall4 {
  margin-top: 24em;
}
#gift-timeline.tall5 {
  margin-top: 29em;
}
#gift-timeline.tall6 {
  margin-top: 34em;
}

#totalsheader.centerme {
    display: flex;
    justify-content: center;
}

@media only screen and (max-width : 600px) {
  header #webcount, header #lasthr {
    display: none !important;
  }
}

header div {
  font-size: 1.5rem;
  font-family: "Poppins", sans-serif;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  justify-content: space-evenly;
  color: white;
}

header div#left {
  align-items: self-start;
  padding-left: 1em;
}

header div#right {
  align-items: self-end;
  padding-right: 1em;
}

span#raised {
  text-align: left;
  padding-left: 1em;
}

span#goal {
  text-align: right;
  padding-right: 1em;
}

header #bottom {
  color: #f6d521;/*#FFD043;*/
  display: initial;
}

.blinkme {
  animation: blink-animation 1s steps(5, start) infinite;
  -webkit-animation: blink-animation 1s steps(5, start) infinite;
}
@keyframes blink-animation {
  to {
    visibility: hidden;
  }
}
@-webkit-keyframes blink-animation {
  to {
    visibility: hidden;
  }
}

header .number {
  color: #EEE0B4;
}


#totalsheader {
  color: black;
  font-weight: bolder;
  font-size: 1.5em;
  font-family: "Poppins", sans-serif;
  box-shadow: 0px 5px 6px -4px #000000, -16px -16px 7px -8px rgb(0 0 0 / 0%);
}


.lb {
  color: black;
  text-transform: uppercase;
}
.rb {
  margin-left: .2em;
  font-weight: 100;
  color: white;/*#FFEDE4;*/
}

.countdown {
  margin-left: 2em;
}

.great-testimony:before {
  content: "✨";
}
