@charset "UTF-8";
/* CSS Document */
@import url("https://rsms.me/inter/inter.css");
html {
  font-family: "Inter", sans-serif;
}
@supports (font-variation-settings: normal) {
  html {
    font-family: "Inter var", sans-serif;
  }
}

.checkmark__circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 2;
  stroke-miterlimit: 10;
  stroke: #7ac142;
  fill: none;
  animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  display: block;
  stroke-width: 2;
  stroke: #fff;
  stroke-miterlimit: 10;
  margin: 10% auto;
  box-shadow: inset 0px 0px 0px #7ac142;
  animation: fill 0.4s ease-in-out 0.4s forwards,
    scale 0.3s ease-in-out 0.9s both;
}

.checkmark__check {
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

.centered-list {
  display: inline-block;
  text-align: left;
}

.drk-gray-btn {
  background: #262a2c;
  -webkit-border-radius: 10;
  -moz-border-radius: 10;
  border-radius: 1.6rem;
  text-shadow: none;
  font-family: Arial;
  color: #ffffff;
  padding: 0.8rem 4rem 0.8rem 4rem;
  font-size: 0.8rem;
  text-decoration: none;
  border: none;
  box-shadow: 0rem 0.0625rem 0.125rem rgba(70, 70, 70, 0.2);
  display: block;
  text-align: center;
}
.drk-gray-btn:hover {
  background: #161819;
  text-decoration: none;
}

/* Tooltip container */
.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted rgb(56, 54, 54); /* If you want dots under the hoverable text */
}

/* Tooltip text */
.tooltip .tooltiptext {
  visibility: hidden;
  width: 220px;
  bottom: 110%;
  left: 50%;
  margin-left: -125px; /* Use half of the width (120/2 = 60), to center the tooltip */
  background-color: rgb(56, 54, 54);
  color: #dddddd;
  text-align: center;
  padding: 15px;
  border-radius: 6px;
  font-size: 10px;

  /* Position the tooltip text - see examples below! */
  position: absolute;
  z-index: 1;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
  visibility: visible;
}

.tooltip .tooltiptext::after {
  content: " ";
  position: absolute;
  top: 100%; /* At the bottom of the tooltip */
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: rgb(56, 54, 54) transparent transparent transparent;
}

.font16 {
  font-size: 16px;
}

@keyframes stroke {
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes scale {
  0%,
  100% {
    transform: none;
  }
  50% {
    transform: scale3d(1.1, 1.1, 1);
  }
}
@keyframes fill {
  100% {
    box-shadow: inset 0px 0px 0px 55px #7ac142;
  }
}

.red-outline {border:1px solid #860c0c; background: #ffdede; }
.green-outline {border:1px solid #63860c; background: #e3fdbd; }

.reward-model-title {
  margin: 0;
  padding: 20px;
  font-size: 2.5em;
  line-height: 1.5em;
}

.reward-model-header {
  padding: 20px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

.reward-model-header p {
  margin: 0;
  width: 300px;
  text-align: left;
  font-size: 1.25em;
  line-height: 1.5em;
}

.reward-model-header p strong {
  font-size: 1.5em;
  line-height: 1.5em;
}

.reward-model-subtitle {
  font-weight: 500;
  padding: 20px;
  font-size: 1.5em;
}

.reward-model-header img {
  width: 300px;
}

.reward-model-benefits {
  padding: 20px;
  background-color: #F7FFED;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  border-top: 2px solid #E8F0DF;
  border-bottom: 2px solid #E8F0DF;
}

.reward-model-benefit-description {
  color: #666666;
  font-size: 14px;
  line-height: 21px;
}

.prize-table {
  max-width: 700px;
  padding-bottom: 20px;
}

.prize-table table {
  border-collapse: collapse;
}

.prize-table table th {
  padding: 20px;
}

.prize-table table tr:nth-child(even) {
  background-color: #F5F5F5;
}

.prize-table table th,
.prize-table table td {
  padding: 10px;
  border: 1px solid rgba(204, 204, 204, 1);
}

.data-column {
  width: 40%;
  font-size: 14px;
}

.not-recommended-column {
  width: 30%;
  text-align: center;
  font-size: 16px;
}

.recommended-column {
  width: 30%;
  text-align: center;
  font-size: 16px;
  background-color: #F7FFED;
  box-shadow: 0 4px 6.5px 0 rgba(151, 195, 93, 0.45);
}

.recommended-column span {
  font-size: 20px;
  text-transform: uppercase;
}

.not-recommended-column a:link,
.not-recommended-column a:active,
.not-recommended-column a:hover,
.not-recommended-column a:visited {
  color: #000000;
}

.recommended-column a {
  display: block;
  padding: 10px;
  background: #27aae1;
  border-radius: 100px;
  color: #FFFFFF;
  text-decoration: none;
  width: 75%;
  margin: auto;
}

.recommended-column p {
  font-size: 12px;
  color: rgba(99, 102, 95, 1);
}

@media only screen and (max-width: 768px) {
  .reward-model-header,
  .reward-model-benefits {
    flex-direction: column;
  }

  .reward-model-header p {
    text-align: center;
    margin-bottom: 20px;
  }

  .reward-model-benefits {
    padding: 0;
    border: 1px solid #E8F0DF;
  }

  .reward-model-benefit {
    padding: 20px;
    border-top: 1px solid #E8F0DF;
    border-bottom: 1px solid #E8F0DF;
  }

  .recommended-column span {
    font-size: 16px;
  }

  .recommended-column,
  .not-recommended-column {
    font-size: 14px;
  }

  .data-column {
    font-size: 12px;
  }
}
