.c-purpose {
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
}
.c-purpose.is-active {
  opacity: 1 !important;
  pointer-events: initial;
}
.c-purpose__overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  opacity: 0.6;
}
.c-purpose__popup {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #ffffff;
  padding: 30px 25px 40px 25px;
  border-radius: 20px;
  box-shadow: 0 37px 70px -5px rgba(0, 0, 0, 0.34);
  width: 502px;
  max-width: 95%;
}
.c-purpose__popup-title {
  font-size: 1.5em;
  font-weight: bold;
  margin: 0 0 40px 0;
  color: #007ac7;
  text-align: center;
  line-height: 1.2;
  text-wrap: balance;
}
.c-purpose a {
  display: flex;
  width: 100%;
  height: 70px;
  background: #e2efff;
  align-items: center;
  color: #666666;
  text-transform: uppercase;
  font-size: 1em;
  font-weight: 500;
  padding: 10px 20px;
  gap: 20px;
}
.c-purpose a:before {
  content: "";
  width: 14px;
  height: 24px;
  border: solid #666666;
  border-width: 0 6px 6px 0;
  transform: rotate(45deg);
  position: relative;
  top: -3px;
}
.c-purpose a.is-active {
  background: #007ac7;
  color: #ffffff;
  font-weight: bold;
}
.c-purpose a.is-active:before {
  border: solid #ffffff;
  border-width: 0 6px 6px 0;
}
.c-purpose a:first-child {
  border-radius: 10px 10px 0 0;
}
.c-purpose a:last-child {
  border-radius: 0 0 10px 10px;
}
.c-purpose .o-button-yellow {
  width: 200px !important;
  height: 40px !important;
  font-size: 1em !important;
}