* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ul {
  list-style: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

@font-face {
  font-family: "Gilmer Bold";
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/gilmer-bold/gilmer-bold.eot") format("embedded-opentype");
  src: url("../fonts/gilmer-bold/gilmer-bold.eot?#iefix") format("embedded-opentype");
  src: url("../fonts/gilmer-bold/gilmer-bold.woff2") format("woff2");
  src: url("../fonts/gilmer-bold/gilmer-bold.woff") format("woff");
  src: url("../fonts/gilmer-bold/gilmer-bold.ttf") format("truetype");
}
@font-face {
  font-family: "Biennale-Bold";
  src: url("../fonts/Biennale-Bold.otf");
}
.color-red {
  color: red;
}

a {
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
a:hover {
  text-decoration: none;
}

.btn {
  background-image: linear-gradient(90deg, rgb(255, 124, 0) 5%, rgb(176, 0, 252) 95%);
  background-position: 0 100%;
  background-size: 150% 100%;
  padding: 10px 30px;
  border-radius: 30px;
  display: inline-block;
  width: -moz-fit-content;
  width: fit-content;
  transition: all 0.3s ease-in-out;
}
.btn i {
  margin-left: 10px;
}
.btn:hover {
  background-position: 100% 100%;
}
.btn.btn-white {
  background-image: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 20%, rgb(234, 91, 67) 60%, rgb(176, 0, 252) 100%);
  background-position: 0 100%;
  background-size: 500% 100%;
  color: #000;
}
.btn.btn-white:hover {
  background-position: 100% 100%;
  background-size: 250% 100%;
  color: #fff;
}

.mb-1 {
  margin-bottom: 1rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.hidden {
  display: none;
}

html {
  min-height: 100%;
}

body {
  background-color: #000;
  color: #fff;
  font-family: "Gilmer Bold";
  font-weight: 600;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: 0.3px;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 16px;
    letter-spacing: 0.2px;
  }
}

.bg-image {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.container {
  --max-width: 1400px;
  width: min(var(--max-width), 85% - 3rem);
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .container {
    width: min(var(--max-width), 100% - 2rem);
  }
}

header {
  position: fixed;
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 9999;
  font-family: "Biennale-Bold";
  font-weight: 600;
  text-transform: uppercase;
}
@media screen and (max-width: 480px) {
  header {
    height: 75px;
  }
}
header .logo {
  max-width: 210px;
}
header nav li a span {
  position: relative;
}
header nav li a span:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -3px;
  width: 0;
  height: 2px;
  transform: translateX(-50%);
  background-color: #fff;
  transition: width 0.3s ease-in-out;
}
header nav li a:hover span:after {
  width: 70%;
}
header nav li a:hover img {
  transform: scale(1.1);
}
header nav li a.spotify-playlist {
  display: flex;
  align-items: center;
  gap: 1rem;
}
header nav li a.spotify-playlist img {
  height: 40px;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 768px) {
  header nav li a.spotify-playlist {
    font-size: 0.8rem;
    gap: 0.5rem;
  }
  header nav li a.spotify-playlist img {
    height: 30px;
  }
}
@media screen and (max-width: 400px) {
  header nav li a.spotify-playlist {
    width: 50%;
    font-size: 0.8rem;
    display: flex;
    margin-left: auto;
  }
}
@media screen and (max-width: 330px) {
  header nav li a.spotify-playlist {
    width: 70%;
  }
}
@media screen and (max-width: 768px) {
  header .logo {
    max-width: 200px;
  }
}
@media screen and (max-width: 480px) {
  header .logo {
    max-width: 150px;
  }
}
@media screen and (max-width: 350px) {
  header .spotify-playlist {
    font-size: 0.6rem;
  }
}

.mobile-spotify {
  display: none;
}
@media screen and (max-width: 480px) {
  .mobile-spotify {
    display: block;
  }
}

.mobile-spotify-embed {
  display: block;
}
@media screen and (max-width: 480px) {
  .mobile-spotify-embed {
    display: none;
  }
}

main {
  padding-top: 75px;
}
main.main-home {
  margin: auto;
  width: 100%;
}
@media screen and (max-width: 480px) {
  main.main-home {
    padding-top: 50%;
    padding-bottom: 3rem;
  }
}

footer {
  padding: 2rem 0;
}
@media screen and (max-width: 768px) {
  footer {
    padding: 1rem 0;
  }
}
footer .partenariat {
  display: flex;
  align-items: center;
  font-size: 1.2rem;
}
footer .partenariat img {
  height: 40px;
  margin-left: 1.5rem;
}
@media screen and (max-width: 768px) {
  footer .partenariat {
    font-size: 0.8rem;
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
  }
  footer .partenariat img {
    margin-left: 0;
    height: 30px;
  }
}

.home {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .home {
    overflow: auto;
  }
}
.d-flex {
  display: flex;
  align-items: center;
  justify-content: center;
}
.d-flex .half {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .d-flex .half {
    width: 100%;
  }
}

section.intro {
  position: relative;
}
@media screen and (max-width: 480px) {
  section.intro {
    flex-direction: column;
  }
}
section.intro .visu-cocktail {
  width: 80%;
  margin-left: auto;
}
@media screen and (max-width: 480px) {
  section.intro .visu-cocktail {
    width: 100%;
    position: absolute;
    top: 0;
    transform: translateY(-35%);
  }
}
section.intro .text-content {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
  width: 30%;
  min-width: 400px;
  font-size: 1.3rem;
  margin-right: auto;
}
@media screen and (max-width: 480px) {
  section.intro .text-content {
    font-size: 1.1rem;
    position: relative;
    gap: 1rem;
    top: unset;
    left: unset;
    transform: unset;
    width: 100%;
    min-width: unset;
    text-align: center;
    align-items: center;
  }
}
section.intro .text-content .title {
  font-size: 5rem;
  line-height: 1;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 480px) {
  section.intro .text-content .title {
    font-size: 13vw;
  }
}
section.intro .text-content .title .title-white {
  display: block;
  color: #fff;
}
section.intro .text-content .title .title-black {
  display: block;
  color: transparent;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #fff;
}
@media screen and (max-width: 480px) {
  section.intro .text-content .description {
    width: 75%;
    margin-top: 1rem;
  }
}
section.intro .text-content .image-prix-mobile {
  display: none;
}
@media screen and (max-width: 480px) {
  section.intro .text-content .image-prix-mobile {
    display: block;
    width: 50%;
    transform: translate(0, 0) scale(1.75);
    z-index: -10;
    pointer-events: none;
  }
}
section.intro .image-prix {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 50%;
  transform: translate(25%, 40%);
}
@media screen and (max-width: 480px) {
  section.intro .image-prix {
    display: none;
    position: relative;
    right: unset;
    bottom: unset;
    width: 50%;
    transform: translate(0, 0) scale(1.75);
  }
}
@media screen and (max-width: 768px) {
  section.intro .content-split {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
  section.intro .content-split .text-split {
    width: 50%;
  }
  section.intro .content-split .image-split {
    display: block;
    width: 50%;
  }
  section.intro .content-split .image-split img {
    width: 50%;
    height: auto;
    margin: auto;
    transform: scale(2);
  }
  section.intro .prix {
    display: none;
  }
  section.intro .prix img {
    pointer-events: none;
    transform: scale(1.5);
  }
}
@media screen and (max-width: 768px) and (max-width: 1440px) {
  section.intro .prix img {
    transform: scale(1.3);
  }
}
@media screen and (max-width: 480px) {
  section.intro .content-split {
    flex-direction: column;
  }
  section.intro .content-split .text-split {
    width: 100%;
    margin-bottom: 2rem;
  }
  section.intro .content-split .text-split .description {
    margin-bottom: 0;
  }
  section.intro .content-split .text-split .image-split-mobile {
    display: block;
    width: 60%;
    height: auto;
    margin: auto;
  }
  section.intro .content-split .text-split .image-split-mobile img {
    transform: scale(1.3);
  }
  section.intro .content-split .image-split {
    display: none;
    width: 100%;
  }
}
section.quiz {
  visibility: hidden;
}
@media screen and (max-width: 768px) {
  section.quiz {
    margin-bottom: 1rem;
    width: 100%;
  }
  section.quiz .prix {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  section.quiz {
    margin-top: 1rem;
  }
}
section.quiz .quiz-content {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 30px;
  background: rgba(216, 216, 216, 0.15);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  z-index: 1;
  position: relative;
  padding: 2rem;
  min-width: 1000px;
}
@media screen and (max-width: 1440px) {
  section.quiz .quiz-content {
    min-width: 800px;
  }
}
@media screen and (max-width: 1439px) {
  section.quiz .quiz-content {
    min-width: 650px;
  }
}
@media screen and (max-width: 768px) {
  section.quiz .quiz-content {
    padding: 1rem;
    min-width: unset;
    width: 100%;
    margin: auto;
  }
}
section.quiz .quiz-content .header-part {
  position: relative;
}
section.quiz .quiz-content .header-part .counter {
  position: absolute;
  top: 0;
  right: 0;
}
section.quiz .quiz-content .quiz-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  margin-bottom: 2rem;
}
section.quiz .quiz-content .quiz-nav .line {
  flex: 1;
  height: 1px;
  background-color: #ccc;
  width: 10px;
}
section.quiz .quiz-content .quiz-nav .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ccc;
  position: relative;
  cursor: pointer;
}
section.quiz .quiz-content .quiz-nav .dot:not(:last-child) {
  margin-right: 10px;
}
section.quiz .quiz-content .quiz-nav .dot:not(:first-child):before {
  content: "";
  position: absolute;
  left: 0%;
  top: 50%;
  width: calc(100% + 10px);
  height: 1px;
  background-color: #ccc;
  transform: translate(-50%, -50%);
}
section.quiz .quiz-content .quiz-nav .dot.active {
  background-color: #fff;
}
section.quiz .quiz-content .quiz-nav .dot.line-active {
  background-color: #fff;
}
section.quiz .quiz-content .quiz-nav .dot.line-active::before {
  background-color: #fff;
}
section.quiz .quiz-content .quiz-nav .dot.not-answered {
  pointer-events: none;
}
section.quiz .quiz-content .quiz-questions {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  max-height: 550px;
}
@media screen and (max-width: 1440px) {
  section.quiz .quiz-content .quiz-questions {
    min-height: 425px;
    max-height: 450px;
  }
}
@media screen and (max-width: 1439px) {
  section.quiz .quiz-content .quiz-questions {
    min-height: 360px;
    max-height: 400px;
  }
}
@media screen and (max-width: 768px) {
  section.quiz .quiz-content .quiz-questions {
    min-height: unset;
    max-height: unset;
  }
}
section.quiz .quiz-content .quiz-questions .question-item {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  visibility: hidden;
}
section.quiz .quiz-content .quiz-questions .question-item.active {
  display: block;
  visibility: visible;
}
@media screen and (max-width: 480px) {
  section.quiz .quiz-content .quiz-questions .question-item {
    text-align: center;
  }
}
section.quiz .quiz-content .quiz-questions .question-item .question {
  text-wrap: balance;
  margin-bottom: 1rem;
}
section.quiz .quiz-content .quiz-questions .question-item .answers {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
}
section.quiz .quiz-content .quiz-questions .question-item .answers.row-reverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 480px) {
  section.quiz .quiz-content .quiz-questions .question-item .answers {
    gap: 1rem;
    flex-direction: column;
  }
  section.quiz .quiz-content .quiz-questions .question-item .answers.row-reverse {
    flex-direction: column-reverse;
  }
}
section.quiz .quiz-content .quiz-questions .question-item .answers .answer-item:not(.wrong, .correct, .locked):hover {
  cursor: pointer;
}
section.quiz .quiz-content .quiz-questions .question-item .answers .answer-item:not(.wrong, .correct, .locked):hover .image-container::after {
  opacity: 1;
}
section.quiz .quiz-content .quiz-questions .question-item .answers .answer-item:not(.wrong, .correct, .locked):hover .image-container img {
  transform: scale(1.1);
  filter: brightness(1.2);
}
section.quiz .quiz-content .quiz-questions .question-item .answers .answer-item.wrong .image-container {
  position: relative;
}
section.quiz .quiz-content .quiz-questions .question-item .answers .answer-item.wrong .image-container::after {
  background-color: rgba(255, 128, 128, 0.5);
  opacity: 1;
  z-index: 1;
}
section.quiz .quiz-content .quiz-questions .question-item .answers .answer-item.wrong .image-container::before {
  font-family: "Font Awesome 5 Free";
  content: "\f00d";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 7rem;
  color: #ff4a4a;
}
@media screen and (max-width: 480px) {
  section.quiz .quiz-content .quiz-questions .question-item .answers .answer-item.wrong .image-container::before {
    transition: none;
    transform: translate(-50%, -25%);
  }
}
section.quiz .quiz-content .quiz-questions .question-item .answers .answer-item.correct .image-container {
  position: relative;
}
section.quiz .quiz-content .quiz-questions .question-item .answers .answer-item.correct .image-container::after {
  background-color: rgba(128, 255, 128, 0.5);
  opacity: 1;
  z-index: 1;
}
section.quiz .quiz-content .quiz-questions .question-item .answers .answer-item.correct .image-container::before {
  font-family: "Font Awesome 5 Free";
  content: "\f00c";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 7rem;
  color: #41fd41;
}
@media screen and (max-width: 480px) {
  section.quiz .quiz-content .quiz-questions .question-item .answers .answer-item.correct .image-container::before {
    transition: none;
    top: 75%;
  }
}
@media screen and (max-width: 480px) {
  section.quiz .quiz-content .quiz-questions .question-item .answers .answer-item {
    position: relative;
  }
  section.quiz .quiz-content .quiz-questions .question-item .answers .answer-item .text {
    position: absolute;
    font-size: 1.5rem;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
  }
}
section.quiz .quiz-content .quiz-questions .question-item .answers .image-container {
  position: relative;
  aspect-ratio: 1/0.9;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  margin-bottom: 1rem;
}
section.quiz .quiz-content .quiz-questions .question-item .answers .image-container::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.15);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  pointer-events: none;
}
@media screen and (max-width: 480px) {
  section.quiz .quiz-content .quiz-questions .question-item .answers .image-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: opacity 0.3s ease-in-out;
    pointer-events: none;
    background: linear-gradient(0deg, #000 -30%, rgba(255, 255, 255, 0) 40%);
  }
}
section.quiz .quiz-content .quiz-questions .question-item .answers .image-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  margin-bottom: 1rem;
  transition: all 0.3s ease-in-out;
  pointer-events: none;
}
@media screen and (max-width: 480px) {
  section.quiz .quiz-content .quiz-questions .question-item .answers .image-container {
    aspect-ratio: 1/0.8;
    margin-bottom: 0.5rem;
  }
  section.quiz .quiz-content .quiz-questions .question-item .answers .image-container img {
    margin-bottom: 0;
  }
}
section.quiz .quiz-form .text-intro {
  text-wrap: balance;
}
section.quiz .quiz-form .text-intro .underline {
  text-decoration: underline;
}
section.quiz .quiz-form #form-quiz .fields-container {
  margin: 3rem 0;
}
section.quiz .quiz-form #form-quiz .field-row {
  display: flex;
  flex-direction: row;
  gap: 2rem;
}
section.quiz .quiz-form #form-quiz .field-row:not(:last-child) {
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  section.quiz .quiz-form #form-quiz .field-row {
    flex-direction: column;
    gap: 1rem;
  }
  section.quiz .quiz-form #form-quiz .field-row:not(:last-child) {
    margin-bottom: 0;
  }
}
section.quiz .quiz-form #form-quiz .field-row input {
  background: transparent;
  border: none;
  border-bottom: 1px solid #555555;
  color: #fff;
  padding: 5px 15px;
  width: 100%;
  font-family: "Gilmer Bold";
  font-weight: 600;
  font-size: 1.2rem;
  transition: all 0.3s ease-in-out;
}
section.quiz .quiz-form #form-quiz .field-row input:focus {
  outline: none;
  border-bottom: 1px solid #fff;
}
section.quiz .quiz-form #form-quiz .field-row input::-moz-placeholder {
  text-transform: uppercase;
  color: #888888;
}
section.quiz .quiz-form #form-quiz .field-row input::placeholder {
  text-transform: uppercase;
  color: #888888;
}
@media screen and (max-width: 767px) {
  section.quiz .quiz-form #form-quiz .field-row input {
    margin-bottom: 1rem;
  }
}
section.quiz .quiz-form #form-quiz .acceptance label {
  color: #ccc;
  text-wrap: balance;
  text-transform: uppercase;
  width: 75%;
  font-size: 0.8rem;
  position: relative;
  padding-left: 30px;
  display: block;
}
@media screen and (max-width: 767px) {
  section.quiz .quiz-form #form-quiz .acceptance label {
    width: 100%;
  }
}
section.quiz .quiz-form #form-quiz .acceptance label span {
  cursor: pointer;
}
section.quiz .quiz-form #form-quiz .acceptance label .gdpr-links {
  font-size: 0.7rem;
}
section.quiz .quiz-form #form-quiz .acceptance label a {
  color: #ccc;
  text-decoration: underline;
}
section.quiz .quiz-form #form-quiz .acceptance label a:hover {
  color: #fff;
}
section.quiz .quiz-form #form-quiz button {
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  padding: 10px 30px;
}

.grecaptcha-badge {
  visibility: hidden;
  opacity: 0;
}

.center-content {
  height: 100vh;
}
.center-content main {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .page-quiz:not(.full-height) {
    height: 100%;
    min-height: 100vh;
  }
}
.page-quiz .perdu-container {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  max-width: 800px;
  margin: auto;
}
.page-quiz .perdu-container .image-container {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.page-quiz .perdu-container .image-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  transition: all 0.3s ease-in-out;
}

.slide-up {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease-in-out;
  animation: slide-up 0.5s ease-in-out forwards;
  animation-delay: 0.3s;
}

@keyframes slide-up {
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.slide-down {
  opacity: 0;
  transform: translateY(-20px);
  transition: all 0.3s ease-in-out;
  animation: slide-down 0.5s ease-in-out forwards;
  animation-delay: 0.3s;
}

@keyframes slide-down {
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-in {
  opacity: 0;
  transition: all 0.3s ease-in-out;
  animation: fade-in 0.5s ease-in-out forwards;
  animation-delay: 0.5s;
}
.fade-in.no-delay {
  animation-delay: 0s;
}

@keyframes fade-in {
  100% {
    opacity: 1;
  }
}
.no-delay {
  animation-delay: 0s;
}

.delay-half {
  animation-delay: 0.25s;
}

.delay-bigger {
  animation-delay: 0.5s;
}

.spotify-anim {
  display: none;
}
@media screen and (max-width: 480px) {
  .spotify-anim {
    display: none;
  }
}

.circle-button {
  position: fixed;
  bottom: 3rem;
  right: 3rem;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: url(../img/Spotify_icon.svg) center center no-repeat;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999999;
  transition: all 0.3s ease-in-out;
}
.circle-button:hover {
  transform: scale(1.1);
}
@media screen and (max-width: 768px) {
  .circle-button {
    transform: scale(0.7);
    bottom: 1rem;
    right: 1rem;
  }
}
.circle-button .main_circle_text {
  position: absolute;
  font-size: 12px;
  letter-spacing: 1px;
  animation: animete_circle_txt 10s linear infinite;
}

@keyframes animete_circle_txt {
  100% {
    transform: rotate(360deg);
  }
}
textPath {
  fill: #fff;
}

input[type=checkbox] {
  width: 20px;
  height: 20px;
  border: none;
  border-radius: 5px;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  outline: none;
  cursor: pointer;
}

input[type=checkbox]:not(:checked),
input[type=checkbox]:checked {
  position: absolute;
  top: -2px;
  left: 0;
}

input[type=checkbox]:not(:checked)::before,
input[type=checkbox]:checked::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  content: "";
  vertical-align: middle;
  border: 1px solid #fff;
  border-radius: 5px;
}

input[type=checkbox]:not(:checked)::after,
input[type=checkbox]:checked::after {
  font-size: 1.25em;
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  transition: all 0.2s ease-out;
  width: 12px;
  height: 12px;
  border-radius: 3px;
  background-color: #fff;
  transform: translate(-50%, -50%);
}

input[type=checkbox]:not(:checked)::after {
  opacity: 0;
}

input[type=checkbox]:checked::after {
  opacity: 1;
}/*# sourceMappingURL=style.css.map */