@charset "UTF-8";
.bg-red {
  background-color: #c91111;
}

.bg-green {
  background-color: #0b9b0b;
}

.bg-blue {
  background-color: #4558c6;
}

body {
  background-color: white;
}

.btn {
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
}
.btn:focus, .btn:active {
  outline: none !important;
  box-shadow: none !important;
}

.btn-green {
  color: white;
  background-color: #0b9b0b;
  border-color: #0b9b0b;
}
.btn-green:hover {
  color: white;
  background-color: #03bc03;
  border-color: #03bc03;
}
.btn-green:focus, .btn-green:active {
  outline: #a6ffa6 solid 5px !important;
  box-shadow: none !important;
}

.btn-m2 {
  color: white;
  background-color: #F03F36;
  border-color: #F03F36;
}
.btn-m2:hover {
  color: white;
  background-color: #ff574e;
  border-color: #ff574e;
}
.btn-m2:focus, .btn-m2:active {
  color: white;
  border: #F03F36 solid 1px;
  background-color: #F03F36;
  outline: #fbc7c4 solid 5px !important;
}

.btn-light {
  color: #3a3a3a;
  border: #3a3a3a solid 1px;
  background-color: white;
}
.btn-light:hover {
  color: white;
  border: #F03F36 solid 1px;
  background-color: #F03F36;
}
.btn-light:focus, .btn-light:active {
  color: white;
  border: #F03F36 solid 1px;
  background-color: #F03F36;
  outline: #fbc7c4 solid 5px !important;
}
.btn-check:checked + .btn-light {
  color: white;
  background-color: #F03F36;
  border-color: #F03F36;
}

body {
  font-family: Roboto, Arial, Helvetica, sans-serif;
  font-size: 1em;
  font-style: normal;
  font-weight: 300;
  text-align: center;
  -webkit-text-size-adjust: 100%;
}

main {
  color: #3a3a3a;
  max-width: 1080px !important;
  padding-top: 0;
  padding-bottom: 2rem;
  padding-left: 2rem;
  padding-right: 2rem;
}
main form {
  margin: 0;
  padding: 0;
  text-align: left;
  font-size: 1.1rem;
}
main form input[type=text],
main form input[type=email],
main form input[type=password] {
  width: 100%;
  color: #3a3a3a;
  border: #3a3a3a solid 1px;
  background-color: white;
  padding: 0.5rem 1rem;
  margin-bottom: 0.5rem;
  font-weight: 400;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
}
main form input[type=text]:focus,
main form input[type=email]:focus,
main form input[type=password]:focus {
  box-shadow: none;
  outline: 2px solid #3a3a3a !important;
}
main form input[type=text]:disabled,
main form input[type=email]:disabled,
main form input[type=password]:disabled {
  background-color: rgba(58, 58, 58, 0.2);
}
main form label {
  font-weight: 500;
  margin-bottom: 0.3rem;
}
main form .checkbox-container {
  display: block;
  position: relative;
  padding-left: 2.1rem;
  margin: 0.5rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}
main form .checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
main form .checkbox-container .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 1.5rem;
  width: 1.5rem;
  background-color: white;
  border: #3a3a3a solid 1px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
  border-radius: 2px;
}
main form .checkbox-container .checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 0.5rem;
  top: 0.1rem;
  width: 0.5rem;
  height: 1rem;
  border: solid white;
  border-width: 0 0.2rem 0.2rem 0;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
main form .checkbox-container:hover input ~ .checkmark {
  background-color: #F03F36;
  border: #F03F36 solid 1px;
}
main form .checkbox-container input:checked ~ .checkmark {
  border: #F03F36 solid 1px;
  background-color: #F03F36;
}
main form .checkbox-container input:checked ~ .checkmark::after {
  display: block;
}
main form .errorlist {
  color: #c91111;
  font-weight: 500;
  margin-bottom: 0.15rem;
}

.logo {
  max-width: 280px;
}
@media screen and (max-width: 992px) {
  .logo {
    max-width: 250px;
  }
}

.label {
  color: white;
  padding: 0 0.3rem;
  border-radius: 0.3rem;
}

.option {
  display: flex;
  flex-direction: column;
  background-color: white;
  text-align: left;
  max-width: 250px;
  height: 100%;
  font-weight: 500;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  -webkit-transition: 0.1s linear;
  -moz-transition: 0.1s linear;
  -ms-transition: 0.1s linear;
  -o-transition: 0.1s linear;
  transition: 0.1s linear;
}
.option.clickable:hover {
  -webkit-transform: scale(1.04);
  -moz-transform: scale(1.04);
  -ms-transform: scale(1.04);
  -o-transform: scale(1.04);
  transform: scale(1.04);
  -webkit-transform-origin: center;
  -moz-transform-origin: center;
  -ms-transform-origin: center;
  -o-transform-origin: center;
  transform-origin: center;
}
.option .sticker {
  position: absolute;
  display: flex;
  font-size: 1.1rem;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 4.6em;
  height: 4.6em;
  top: -2.5em;
  right: 0.7em;
  border-radius: 100%;
  color: white;
  font-weight: 700;
  text-align: center;
  line-height: 1.2em;
}
.option .sticker::before {
  display: block;
  content: "";
}
.option .sticker .sticker-now {
  font-size: 0.7em;
  line-height: 0.45em;
  font-weight: 400;
}
.option .sticker .sticker-discount {
  display: flex;
}
.option .sticker .sticker-discount .sticker-percentage {
  font-size: 2em;
  line-height: 1.2em;
  letter-spacing: -0.1em;
  font-weight: 500;
  padding-right: 0.1em;
}
.option .sticker .sticker-discount .sticker-off-wrapper {
  display: flex;
  flex-direction: column;
  font-weight: 400;
}
.option .sticker .sticker-discount .sticker-off-wrapper .sticker-perc {
  font-size: 0.9em;
  line-height: 1.7em;
  text-align: left;
}
.option .sticker .sticker-discount .sticker-off-wrapper .sticker-off {
  font-size: 0.8em;
  line-height: 0.1em;
}
@media screen and (max-width: 992px) {
  .option .sticker {
    font-size: 0.9rem;
    right: 0.5em;
  }
}
.option .option-top {
  width: 100%;
  height: 180px;
  overflow: hidden;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.option.opt-1 .option-top {
  background-image: url(../img/join-opt-01.jpg);
}
.option.opt-2 .option-top {
  background-image: url(../img/join-opt-02.jpg);
}
.option.opt-3 .option-top {
  background-image: url(../img/join-opt-03.jpg);
}
.option.opt-4 .option-top {
  background-image: url(../img/join-opt-04.jpg);
}
.option .option-middle {
  position: relative;
  flex-grow: 1;
  padding: 1rem;
}
.option .option-middle h3 {
  padding-left: 0.1rem;
  color: #3a3a3a;
  font-weight: 700;
}
.option .option-middle ul {
  padding-left: 1rem;
  font-size: 0.9rem;
  list-style: none;
  line-height: 1.2rem;
  margin-bottom: 0 !important;
}
.option .option-middle ul li::before {
  content: "•";
  color: #F03F36;
  font-weight: bold;
  display: inline-block;
  width: 0.8em;
  margin-left: -1em;
}
.option .option-bottom {
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding-bottom: 1rem;
}
.option .option-bottom .btn {
  font-weight: 700;
}
.option .option-bottom .price {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: baseline;
}
.option .option-bottom .price-item {
  position: relative;
  display: flex;
  font-weight: 700;
  font-size: 1rem;
  margin-right: 0.8rem;
}
.option .option-bottom .price-item.old {
  font-size: 0.7rem;
  color: rgba(58, 58, 58, 0.5);
}
.option .option-bottom .price-item.old::before {
  content: "";
  display: block;
  position: absolute;
  top: 1.6em;
  left: -2px;
  right: -2px;
  height: 2px;
  background: red;
  -webkit-transform: rotate(30deg);
  -moz-transform: rotate(30deg);
  -ms-transform: rotate(30deg);
  -o-transform: rotate(30deg);
  transform: rotate(30deg);
}
@media screen and (max-width: 992px) {
  .option .option-bottom .price-item {
    font-size: 0.9rem;
    margin-right: 0.5rem;
  }
  .option .option-bottom .price-item.old {
    font-size: 0.6rem;
  }
}
.option .option-bottom .price-symbol {
  font-size: 1.8em;
  line-height: 1.4em;
}
.option .option-bottom .price-int {
  font-size: 3em;
  line-height: 1em;
}
.option .option-bottom .price-frac-wrapper {
  display: flex;
  flex-direction: column;
}
.option .option-bottom .price-frac-wrapper .price-frac {
  font-size: 1.6em;
  line-height: 1.32em;
  text-align: left;
}
.option .option-bottom .price-frac-wrapper .price-period {
  text-align: center;
  font-size: 0.8em;
  line-height: 0.4em;
  opacity: 0.8;
}
@media screen and (max-width: 992px) {
  .option {
    flex-direction: row;
    max-width: 100%;
  }
  .option .option-top {
    display: none;
  }
  .option .option-middle ul {
    margin-bottom: 0;
  }
  .option .option-middle .sticker {
    top: 0.5rem;
    right: 2rem;
  }
  .option .option-bottom {
    padding-right: 1.2rem;
    padding-bottom: 1.2rem;
  }
}
@media screen and (max-width: 576px) {
  .option {
    flex-direction: column;
  }
  .option .option-middle .sticker {
    left: auto;
    right: 0.5rem;
  }
}

.what-get {
  opacity: 0.9;
  padding: 0.3rem 0.8rem;
  text-align: center;
  color: #d40a00;
  border-radius: 4px;
  margin: 0.3rem;
  background-color: white;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
.what-get h2, .what-get h3, .what-get h4, .what-get h5, .what-get h6 {
  font-weight: 700;
  margin-bottom: 0;
}

@media screen and (max-width: 992px) {
  main {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
}
footer {
  color: #999999;
  padding: 2rem 0 1rem 0;
  background-color: #212121;
}
footer h5 {
  color: #d5d5d5;
}
footer a {
  text-decoration: none;
  font-size: 1rem;
  font-weight: 400;
  color: #F03F36;
  white-space: nowrap;
  -webkit-transition: 0.1s linear;
  -moz-transition: 0.1s linear;
  -ms-transition: 0.1s linear;
  -o-transition: 0.1s linear;
  transition: 0.1s linear;
}
footer a:hover {
  color: #ff625a;
}
footer p {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

@keyframes scaleAnimation {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}
.scale-animate {
  display: block;
  animation: scaleAnimation 2s infinite ease-in-out;
}
