.masonry-wrapper.reviews-masonry {
  height: 1000px;
  overflow: hidden;
  margin-bottom: 48px;
  position: relative;
  max-width: 1240px;
  padding: 5px;
}

.reviews-overlay {
  background: -moz-linear-gradient(
    180deg,
    rgba(2, 0, 36, 0) 0%,
    rgba(9, 9, 121, 0) 50%,
    rgba(255, 255, 255, 1) 100%
  );
  background: -webkit-linear-gradient(
    180deg,
    rgba(2, 0, 36, 0) 0%,
    rgba(9, 9, 121, 0) 50%,
    rgba(255, 255, 255, 1) 100%
  );
  background: linear-gradient(
    180deg,
    rgba(2, 0, 36, 0) 0%,
    rgba(9, 9, 121, 0) 50%,
    rgba(255, 255, 255, 1) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#020024",endColorstr="#ffffff",GradientType=1);

  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding: 20px;
}

.reviews-more-btn {
  text-align: center;
  background-color: #24ae4e;
  color: white;
  padding: 10px 24px;
  font-size: 24px;
  border-radius: 2px;
  max-width: 450px;
}

/******************
 ** Common items **
 ******************/

.challenge_container {
  position: relative;
  display: flex;
  flex-direction: column;

  align-items: center;

  padding: 16px 16px;
  margin: 0px 10px 32px 10px;

  background-color: #e4e4e7;

  border-radius: 2px;
  box-shadow: 4px 3px 5px -8px #000000;
  flex: 1;
  max-width: 304px;
}

.challenge-badge {
  position: absolute;
  top: 25px;
  left: -5px;
  z-index: 2;
  /* background-color: #ff4200; */
  display: inline-block;
  font-size: 15px;
  color: black;
  width: 100px;
  text-align: center;
  padding: 5px;
  -webkit-box-shadow: 0px 3px 5px 0px rgba(50, 50, 50, 0.75);
  -moz-box-shadow: 0px 3px 5px 0px rgba(50, 50, 50, 0.75);
  box-shadow: 0px 3px 5px 0px rgba(50, 50, 50, 0.75);
  font-weight: bold;

  /* Golden Gradient */
  background: rgb(254, 225, 151);
  background: -moz-linear-gradient(
    8deg,
    rgba(254, 225, 151, 1) 0%,
    rgba(255, 250, 222, 1) 50%,
    rgba(216, 177, 76, 1) 100%
  );
  background: -webkit-linear-gradient(
    8deg,
    rgba(254, 225, 151, 1) 0%,
    rgba(255, 250, 222, 1) 50%,
    rgba(216, 177, 76, 1) 100%
  );
  background: linear-gradient(
    8deg,
    rgba(254, 225, 151, 1) 0%,
    rgba(255, 250, 222, 1) 50%,
    rgba(216, 177, 76, 1) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#fee197", endColorstr="#d8b14c", GradientType=1);
}

.challenge-badge::before {
  content: " ";
  width: 0;
  height: 0;
  border-top: 0 solid transparent;
  border-bottom: 5px solid transparent;
  border-right: 5px solid #534b4b;
  border-right-width: 5px;
  position: absolute;
  bottom: -5px;
  left: 0;
}

.challenge_container:hover {
  -webkit-box-shadow: 0px 0px 15px -3px rgba(255, 255, 255, 0.5);
  box-shadow: 0px 0px 15px -3px rgba(255, 255, 255, 0.5);
}

.challenge_image {
  display: block;

  max-width: 250px;
  margin: auto;

  border-radius: 2px;

  box-shadow: 4px 3px 5px -7px #000000;
}

.challenge_image:hover {
  opacity: 0.8;
}

.challenge_name {
  text-align: center;
  font-size: 28px;
  line-height: 1.1;

  margin: 24px 0px 24px 0px;
  padding: 0px;

  color: #18181b;
}

.challenge_details_container {
  margin: 0 16px;
  margin-bottom: 24px;
}

.challenge_details {
  display: flex;
  align-items: center;

  margin-top: 5px;
}

.challenge_details_icon {
  width: 32px;
  height: 32px;

  margin-right: 10px;
}

.challenge_details_info {
  color: #52525b;
  font-size: 16px;
  line-height: 1.6;
}

.challenge_button {
  display: inline-block;

  text-decoration: none;
  color: white;
  font-size: 23px;

  margin-top: auto;
  padding: 16px 50px;

  text-align: center;

  border-radius: 2px;
  box-shadow: 4px 3px 5px -7px #000000;
}

.challenge_button:hover {
  opacity: 0.8;
}

.card {
  border-radius: 5px;
  -webkit-box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.55);
  -moz-box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.55);
  box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.55);
}

.disable-pointer-events {
  pointer-events: none !important;
}
