@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:wght@700&family=Poppins:wght@400;500;600&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

#hero-carousel {
  overflow: hidden;
}
#hero-carousel h1 {
  margin: 30px 0 10px 0;
  font-size: 75px;
  font-weight: 700;
  line-height: 76px;
  text-transform: uppercase;
  color: #fff;
}
#hero-carousel h2 {
  color: #eee;
  margin-bottom: 30px;
  font-size: 24px;
}
#hero-carousel p {
  font-family: "Montserrat", sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 21px;
}
@media (min-width: 1024px) {
  #hero-carousel {
    background-attachment: fixed;
  }
}

@media (max-width: 767px) {
  #hero-carousel .carousel-caption {
    text-align: center !important;
  }
  #hero-carousel .container {
    padding-top: 40px;
  }
  #hero-carousel h1 {
    font-size: 60px;
    margin-bottom: 25px;
    line-height: 50px;
  }
  #hero-carousel h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
  #hero-carousel p {
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 30px;
  }
}
@media (max-width: 475px) {
  #hero-carousel h1 {
    font-size: 38px;
    line-height: 40px;
  }
}
@media (max-width: 310px) {
  #hero-carousel h1 {
    font-size: 22px;
    line-height: 24px;
  }
  #hero-carousel p {
    font-size: 12px;
    line-height: 14px;
  }
  #hero-carousel .btn {
    font-size: 12px;
    padding: 10px 16px;
  }
}
/* Parallax animation effects */
.hero-carousel .carousel-item .carousel-image {
  transform: scale(1) translateX(0);
  transition: all 1.5s;
}

.hero-carousel .carousel-item .carousel-image:before {
  content: "";
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

.hero-carousel .carousel-item.carousel-item-next .carousel-image,
.hero-carousel .carousel-item.active.carousel-item-right .carousel-image {
  transform: scale(1.6);
}

.hero-carousel .carousel-item.carousel-item-prev .carousel-image,
.hero-carousel .carousel-item.active.carousel-item-left .carousel-image {
  transform: scale(1.6);
}

.hero-carousel .carousel-item.carousel-item-next.carousel-item-left .carousel-image,
.hero-carousel .carousel-item.carousel-item-prev.carousel-item-right .carousel-image {
  /*transform: scale(1);*/
  transform: scale(1) translateX(0);
}

/* Makes carousel full screen */
.hero-carousel .carousel-item {
  height: 620px;
  overflow: hidden;
}

.hero-carousel .carousel-item .carousel-image {
  height: 620px;
  /*   background-position: center right; */
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
}
@media (min-width: 1600px) {
  .hero-carousel .carousel-item .carousel-image {
    background-position: center;
  }
}

.img1 {
  background-position: center -230px;
}

.img2 {
  background-position: center;
}

.hero-carousel .carousel-caption {
  transform: translateY(-50%);
  bottom: auto;
  top: 17rem;
}

.carousel-inner {
  height: 35rem;
}

.hero-carousel:hover .carousel-control-next,
.hero-carousel:hover .carousel-control-prev {
  opacity: 1;
}

.hero-carousel:focus .carousel-control-next,
.hero-carousel:focus .carousel-control-prev,
.carousel-control-next,
.carousel-control-prev {
  opacity: 0;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-image: none;
  width: 55px;
  height: 55px;
  background: none;
  font-family: "bootstrap-icons";
  font-size: 55px;
  color: #fff;
}

.carousel-control-next-icon:after {
  content: "\f285";
}

.carousel-control-prev-icon:after {
  content: "\f284";
}

/* Animation delays */
.carousel-caption h1 {
  animation-delay: 1s;
}

.carousel-caption p {
  animation-delay: 2s;
}

.carousel-caption .btn {
  animation-delay: 3s;
}

.revealLTR,
.revealRTL {
  position: relative;
  display: inline-block;
  animation-name: appear;
  animation-duration: 1000ms;
  animation-fill-mode: both;
  animation-delay: 500ms;
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.revealLTR:after,
.revealRTL:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
}

.revealLTR:after,
.revealRTL:after {
  animation-name: revealLTR;
  animation-duration: inherit;
  animation-fill-mode: inherit;
  animation-delay: inherit;
  animation-timing-function: inherit;
}

.revealRTL:after {
  animation-name: revealRTL;
  animation-duration: inherit;
  animation-fill-mode: inherit;
  animation-delay: inherit;
  animation-timing-function: inherit;
}
@keyframes revealLTR {
  from {
    transform: scaleX(0);
    transform-origin: left;
  }
  40% {
    transform: scaleX(1);
    transform-origin: left;
  }
  60% {
    transform: scaleX(1);
    transform-origin: right;
  }
  to {
    transform: scaleX(0);
    transform-origin: right;
  }
}
@keyframes revealRTL {
  from {
    transform: scaleX(0);
    transform-origin: right;
  }
  40% {
    transform: scaleX(1);
    transform-origin: right;
  }
  60% {
    transform: scaleX(1);
    transform-origin: left;
  }
  to {
    transform: scaleX(0);
    transform-origin: left;
  }
}
@keyframes appear {
  from {
    color: transparent;
  }
  40% {
    color: transparent;
  }
  60% {
    color: inherit;
  }
  to {
    color: inherit;
  }
}
.btn {
  width: 200px;
  font-family: "Poppins", sans-serif;
  text-transform: none;
  border-radius: 25px;
  border: none;
  outline: none;
  padding: 10px 10px;
  font-size: 18px;
  color: #fff !important;
  cursor: pointer;
  margin-top: 20px;
  background: linear-gradient(145deg, #d5a3ff 0%, #77a5f8 100%);
  transition: transform 0.3s ease;
}
@media (max-width: 310px) {
  .btn {
    width: 150px;
  }
}

.btn:hover {
  transform: scale(0.95);
  color: #fff;
}

.btn.disabled {
  pointer-events: none;
  opacity: 0.5; /* or any other styles to indicate it's disabled */
}

#pricing {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 4em;
  margin-bottom: 10em;
}
#pricing .wrapper {
  width: 500px;
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 3px 10px 15px rgba(0, 0, 0, 0.1);
}
@media (max-width: 600px) {
  #pricing .wrapper {
    width: 350px;
    padding: 30px 10px;
  }
}
@media (max-width: 380px) {
  #pricing .wrapper {
    width: 100vw;
    border-radius: 0;
    padding-bottom: 3em;
  }
}
#pricing .wrapper header {
  height: 55px;
  display: flex;
  align-items: center;
  border: 1px solid #ccc;
  border-radius: 30px;
  position: relative;
}
#pricing header label {
  height: 100%;
  margin-bottom: 0;
  z-index: 2;
  width: 100%;
  display: flex;
  cursor: pointer;
  font-size: 18px;
  position: relative;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
}
#pricing #tab-1:checked ~ header .tab-1,
#pricing #tab-2:checked ~ header .tab-2,
#pricing #tab-3:checked ~ header .tab-3,
#pricing #tab-4:checked ~ header .tab-4 {
  color: #fff;
}
#pricing header label:nth-child(3) {
  width: 50%;
}
#pricing header .slider {
  position: absolute;
  height: 85%;
  border-radius: inherit;
  background: linear-gradient(145deg, #d5a3ff 0%, #77a5f8 100%);
  transition: all 0.3s ease;
}
#pricing #tab-1:checked ~ header .slider {
  left: -2%;
  width: 98%;
  transform: translateX(3%);
}
#pricing #tab-2:checked ~ header .slider {
  left: 73%;
  width: 49%;
  transform: translateX(-48%);
}
#pricing #tab-3:checked ~ header .slider {
  left: 99%;
  width: 32%;
  transform: translateX(-99%);
}
#pricing #tab-4:checked ~ header .slider {
  left: 99%;
  width: 32%;
  transform: translateX(-98%);
}
#pricing .wrapper input[type=radio] {
  display: none;
}
#pricing .card-area {
  overflow: hidden;
}
#pricing .card-area .cards {
  display: flex;
  width: 400%;
}
#pricing .cards .row {
  width: 25%;
  justify-content: center;
  margin-left: 0;
  margin-right: 0;
}
#pricing .cards .row-1 {
  transition: all 0.3s ease;
  justify-content: center;
}
#pricing #tab-1:checked ~ .card-area .cards .row-1 {
  margin-left: 0%;
}
#pricing #tab-2:checked ~ .card-area .cards .row-1 {
  margin-left: -25%;
}
#pricing #tab-3:checked ~ .card-area .cards .row-1 {
  margin-left: -50%;
}
#pricing #tab-4:checked ~ .card-area .cards .row-1 {
  margin-left: -75%;
}
#pricing .row .price-details {
  margin: 20px 0;
  text-align: center;
  padding-bottom: 0;
  border-bottom: 1px solid #e6e6e6;
}
#pricing .price-details .price {
  font-size: 65px;
  font-weight: 600;
  position: relative;
  font-family: "Noto Sans", sans-serif;
}
#pricing .price-details .price::before,
#pricing .price-details .price::after {
  position: absolute;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
}
#pricing .price-details .price::before {
  content: "por tema";
  left: -64px;
  top: 20px;
  font-size: 13px;
}
#pricing .price-details .price::after {
  content: "€";
  right: -25px;
  bottom: 10px;
  font-size: 28px;
}
#pricing .price-details .price-monthly::after {
  content: "€ /mês";
  right: -61px;
  bottom: 14px;
  font-size: 16px;
}
#pricing .price-details p {
  font-size: 18px;
  margin-top: 5px;
}
#pricing .price-details p span {
  font-weight: 700;
}
#pricing .row .features {
  margin-bottom: 0px !important;
}
#pricing .row .features li {
  display: flex;
  align-items: flex-start;
  font-size: 15px;
  list-style: none;
  margin-bottom: 10px;
}
#pricing .open-modal-btn:disabled {
  opacity: 40%;
}
#pricing .features li i {
  background: linear-gradient(#d5a3ff 0%, #77a5f8 100%);
  background-clip: text;
  padding-top: 5px;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
#pricing .features li span {
  margin-left: 10px;
}
#pricing .wrapper button {
  width: 100%;
  border-radius: 25px;
  border: none;
  outline: none;
  height: 50px;
  font-size: 18px;
  color: #fff;
  cursor: pointer;
  margin-top: 20px;
  background: linear-gradient(145deg, #d5a3ff 0%, #77a5f8 100%);
  transition: transform 0.3s ease;
}
#pricing .wrapper button:hover {
  transform: scale(0.98);
}
#pricing .outline-gradient-btn {
  background-color: transparent !important;
  -o-border-image: linear-gradient(145deg, #d5a3ff 0%, #77a5f8 100%) !important;
     border-image: linear-gradient(145deg, #d5a3ff 0%, #77a5f8 100%) !important;
  border-image-slice: 1 !important;
  color: transparent !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
}

.cta-section {
  margin-top: 4em;
}
.cta-section h1 {
  text-transform: uppercase;
  font-size: 65px;
  font-weight: 700;
  line-height: 85px;
  text-align: center;
}
@media (max-width: 767px) {
  .cta-section h1 {
    font-size: 60px;
    margin-bottom: 25px;
    line-height: 50px;
  }
}
@media (max-width: 475px) {
  .cta-section h1 {
    font-size: 38px;
    line-height: 40px;
  }
}
@media (max-width: 310px) {
  .cta-section h1 {
    font-size: 22px;
    line-height: 24px;
  }
}
.cta-section p {
  text-align: left;
}
.cta-section p span {
  font-weight: 700;
}

.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
  background-color: #fefefe;
  margin: 5% auto; /* Center the modal vertically */
  padding: 20px;
  border: 0;
  border-radius: 5px;
  max-width: 80%; /* Maximum width for the modal */
  overflow-y: auto; /* Allow scrolling for content if it overflows */
}
@media (max-width: 768px) {
  .modal-content {
    margin: 0px;
    max-width: 100vw;
  }
}
@media (max-width: 530px) {
  .modal-content {
    padding: 0px;
  }
}

#modal-youth,
#submission-modal {
  background: linear-gradient(#d5a3ff 0%, #77a5f8 100%);
}
#modal-youth .modal-content,
#submission-modal .modal-content {
  padding: 30px;
  max-width: 500px;
  margin: auto;
  box-shadow: 3px 10px 15px rgba(0, 0, 0, 0.25);
  transition: padding-bottom 0.5s ease, margin-bottom 0.5s ease;
}
@media (max-width: 767px) {
  #modal-youth .modal-content,
  #submission-modal .modal-content {
    max-width: 100vw;
  }
}
#modal-youth .modal-content.show-padding-info,
#submission-modal .modal-content.show-padding-info {
  padding-bottom: 500px !important; /* Increase margin-bottom when pack-info is visible */
}
#modal-youth .modal-content.show-margin-info,
#submission-modal .modal-content.show-margin-info {
  margin-bottom: 500px !important;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  position: fixed;
  z-index: 10005;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.close .lr {
  height: 75px;
  width: 2px;
  margin-left: 35px;
  transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  /* IE 9 */
  -webkit-transform: rotate(45deg);
  /* Safari and Chrome */
  z-index: 10005;
  background-color: #dddddd;
}
@media (max-width: 768px) {
  .close .lr {
    background-color: #717171;
  }
}

.close .lr .rl {
  height: 75px;
  width: 2px;
  transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  /* IE 9 */
  -webkit-transform: rotate(90deg);
  /* Safari and Chrome */
  z-index: 10005;
  background-color: #dddddd;
}
@media (max-width: 768px) {
  .close .lr .rl {
    background-color: #717171;
  }
}

.main {
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.15);
  font-family: "Open Sans";
  width: 1170px;
  margin: 0 auto;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  border: 0 none;
}

.price-table tr:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.price-table tr td {
  border-left: 1px solid rgba(0, 0, 0, 0.05);
  padding: 8px 24px;
  font-size: 14px;
}

.price-table tr td:first-child {
  border-left: 0 none;
}

.price-table tr td:not(:first-child) {
  text-align: center;
}

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

.price-table tr:hover {
  background-color: #eeeeee;
}

.price-table .fa-check {
  color: #9751f3;
}

.price-table .fa-times {
  color: #d8d6e3;
}

/* Highlighted column */
.price-table tr:nth-child(2n) td:nth-child(2) {
  background-color: rgba(216, 214, 227, 0.25);
}

.price-table tr td:nth-child(2) {
  background-color: rgba(216, 214, 227, 0.15);
  padding: 8px 48px;
}

/**/
.price-table tr.price-table-head td {
  font-size: 16px;
  font-weight: 600;
  font-family: "Montserrat";
  text-transform: uppercase;
}

.price-table tr.price-table-head {
  background: linear-gradient(to right, #9751f3 0%, #77a5f8 100%);
  color: #ffffff;
}

.price-table td.price {
  color: #db6af1;
  padding: 16px 24px;
  font-size: 20px;
  font-weight: 600;
  font-family: "Montserrat";
}

.price-table td.price a {
  background-color: #9751f3;
  color: #ffffff;
  padding: 12px 32px;
  margin-top: 16px;
  font-size: 12px;
  font-weight: 600;
  font-family: "Montserrat";
  text-transform: uppercase;
  display: inline-block;
  border-radius: 64px;
}

.price-table td.price-table-popular {
  font-family: "Montserrat";
  border-top: 3px solid #9751f3;
  color: #9751f3;
  text-transform: uppercase;
  font-size: 12px;
  padding: 12px 48px;
  font-weight: 700;
}

.price-table .price-blank {
  background-color: #fafafa;
  border: 0 none;
}

.price-table svg {
  width: 90px;
  fill: #9751f3;
}

.price-table-help i {
  color: #9751f3;
}

#modal-youth h1 {
  font-family: "Texta", "Avenir Next", "Avenir", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
  line-height: 32px;
  font-size: 32px;
}
@media (max-width: 420px) {
  #modal-youth h1 {
    font-size: 28px;
  }
}
#modal-youth h2 {
  font-weight: 400;
  font-size: 20px;
  margin-top: 40px;
}
#modal-youth .container {
  max-width: 400px;
  margin: 0 auto;
  padding: 20px 16px 40px 16px;
  transform: translateZ(0);
  text-align: center;
}
@media (max-width: 530px) {
  #modal-youth .container {
    padding-top: 80px;
  }
}
#modal-youth .form-footer {
  margin-top: 2em;
}
#modal-youth .ui-input {
  position: relative;
  padding: 0;
  border: 0;
}
#modal-youth .ui-input .down-arrow {
  position: absolute;
  right: 5px;
  top: 40%;
  transform: translateY(-65%) rotate(-90deg);
  color: #303030;
}
#modal-youth .ui-input input {
  font-family: "Avenir Next", "Avenir", "Helvetica Neue", Helvetica, Arial, sans-serif;
  border: 0;
  background: none;
  padding: 16px 0 6px 0;
  font-size: 24px;
  outline: 0;
  width: 100%;
}
#modal-youth .ui-input div input[type=checkbox] {
  font-family: "Avenir Next", "Avenir", "Helvetica Neue", Helvetica, Arial, sans-serif;
  border: 0;
  background: none;
  padding: 0;
  font-size: 24px;
  outline: 0;
  width: auto;
}
#modal-youth .ui-input select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  font-family: "Avenir Next", "Avenir", "Helvetica Neue", Helvetica, Arial, sans-serif;
  border: 0;
  padding: 16px 0 6px 0;
  font-size: 24px;
  outline: 0;
  width: 100%;
  color: #303030;
  background-color: white;
}
#modal-youth .ui-input select + label {
  position: relative;
  display: block;
  padding: 8px 0;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.0875em;
  font-weight: 500;
  text-align: left;
}
#modal-youth .ui-input input + label {
  position: relative;
  display: block;
  padding: 8px 0 8px 0;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.0875em;
  font-weight: 500;
  text-align: left;
}
#modal-youth .ui-input input + label::before, #modal-youth .ui-input input + label::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
}
#modal-youth .ui-input input + label::before {
  background-color: rgba(74, 74, 74, 0.5);
}
#modal-youth .ui-input input + label::after {
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 300ms cubic-bezier(0.215, 0.61, 0.355, 1);
  background-color: #303030;
  height: 2px;
}
#modal-youth .ui-input input + label span {
  position: relative;
  color: rgba(49, 49, 49, 0.5);
  transition: color 300ms cubic-bezier(0.215, 0.61, 0.355, 1);
}
#modal-youth .ui-input input + label span::after {
  content: attr(data-text);
  position: absolute;
  overflow: hidden;
  left: 0;
  transform: scaleX(1);
  white-space: nowrap;
  color: #303030;
  background-image: linear-gradient(to right, #303030 50%, rgba(255, 255, 255, 0) 0%);
  background-position: 100% 50%;
  background-size: 200%;
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  backface-visibility: hidden;
  perspective: 1000;
  transform: translateZ(0);
  transition: background-position 300ms cubic-bezier(0.215, 0.61, 0.355, 1);
}
#modal-youth .ui-input div + label {
  position: relative;
  display: block;
  padding: 8px 0 8px 0;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.0875em;
  font-weight: 500;
  text-align: left;
}
#modal-youth .ui-input div + label::before, #modal-youth .ui-input div + label::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
}
#modal-youth .ui-input div + label::before {
  background-color: #303030;
}
#modal-youth .ui-input div + label::after {
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 300ms cubic-bezier(0.215, 0.61, 0.355, 1);
  background-color: #303030;
  height: 2px;
}
#modal-youth .ui-input div + label span {
  position: relative;
  color: #303030;
  transition: color 300ms cubic-bezier(0.215, 0.61, 0.355, 1);
}
#modal-youth .ui-input div + label span::after {
  content: attr(data-text);
  position: absolute;
  overflow: hidden;
  left: 0;
  transform: scaleX(1);
  white-space: nowrap;
  color: #303030;
  background-image: linear-gradient(to right, #303030 50%, rgba(255, 255, 255, 0) 0%);
  background-position: 100% 50%;
  background-size: 200%;
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  backface-visibility: hidden;
  perspective: 1000;
  transform: translateZ(0);
  transition: background-position 300ms cubic-bezier(0.215, 0.61, 0.355, 1);
}
#modal-youth .ui-input input[type=date] {
  font-family: "Avenir Next", "Avenir", "Helvetica Neue", Helvetica, Arial, sans-serif;
  border: 0;
  background: none;
  padding: 16px 0 6px 0;
  font-size: 24px;
  outline: 0;
  width: 100%;
  color: rgba(74, 74, 74, 0.5);
}
#modal-youth .ui-input input:focus + label::after,
#modal-youth .ui-input input.error + label::after,
#modal-youth .ui-input input:invalid + label::after,
#modal-youth .ui-input input.filled + label::after {
  transform: scaleX(1);
  transform-origin: left;
}
#modal-youth .ui-input input:focus + label span::after,
#modal-youth .ui-input input.error + label span::after,
#modal-youth .ui-input input:invalid + label span::after,
#modal-youth .ui-input input.filled + label span::after {
  background-image: linear-gradient(to right, #303030 50%, rgba(255, 255, 255, 0) 0%);
  background-position: 0% 50%;
}
#modal-youth .ui-input input.filled,
#modal-youth .ui-input input[type=data].filled,
#modal-youth .ui-input select.filled {
  color: #303030;
}
#modal-youth .ui-input input.filled + label::after,
#modal-youth .ui-input input[type=data].filled + label::after,
#modal-youth .ui-input select.filled + label::after {
  background-color: #303030;
}
#modal-youth .ui-input input.filled + label span::after,
#modal-youth .ui-input input[type=data].filled + label span::after,
#modal-youth .ui-input select.filled + label span::after {
  background-image: linear-gradient(to right, #303030 50%, rgba(255, 255, 255, 0) 0%);
  background-position: 0% 50%;
}
#modal-youth .ui-input input[type=checkbox].checked + label {
  color: #303030;
}
#modal-youth .ui-input input[type=checkbox].checked + label::after {
  background-color: #303030;
}
#modal-youth .ui-input input[type=checkbox].checked + label span::after {
  background-image: linear-gradient(to right, #303030 50%, rgba(255, 255, 255, 0) 0%);
  background-position: 0% 50%;
}
#modal-youth .ui-input input:focus,
#modal-youth .ui-input input[type=data]:focus,
#modal-youth .ui-input input[type=checkbox]:focus,
#modal-youth .ui-input select:focus {
  color: #303030;
}
#modal-youth .ui-input input:focus + label::after,
#modal-youth .ui-input input[type=data]:focus + label::after,
#modal-youth .ui-input input[type=checkbox]:focus + label::after,
#modal-youth .ui-input select:focus + label::after {
  background-color: #303030;
}
#modal-youth .ui-input input:focus + label span::after,
#modal-youth .ui-input input[type=data]:focus + label span::after,
#modal-youth .ui-input input[type=checkbox]:focus + label span::after,
#modal-youth .ui-input select:focus + label span::after {
  background-image: linear-gradient(to right, #303030 50%, rgba(255, 255, 255, 0) 0%);
  background-position: 0% 50%;
}
#modal-youth .ui-input input.error,
#modal-youth .ui-input input:invalid,
#modal-youth .ui-input input[type=data].error,
#modal-youth .ui-input input[type=data]:invalid,
#modal-youth .ui-input select.error,
#modal-youth .ui-input select:invalid {
  color: #e66161;
}
#modal-youth .ui-input input.error + label::after,
#modal-youth .ui-input input:invalid + label::after,
#modal-youth .ui-input input[type=data].error + label::after,
#modal-youth .ui-input input[type=data]:invalid + label::after,
#modal-youth .ui-input select.error + label::after,
#modal-youth .ui-input select:invalid + label::after {
  background-color: #e66161;
}
#modal-youth .ui-input input.error + label span::after,
#modal-youth .ui-input input:invalid + label span::after,
#modal-youth .ui-input input[type=data].error + label span::after,
#modal-youth .ui-input input[type=data]:invalid + label span::after,
#modal-youth .ui-input select.error + label span::after,
#modal-youth .ui-input select:invalid + label span::after {
  background-image: linear-gradient(to right, #e66161 50%, rgba(255, 255, 255, 0) 0%);
  background-position: 0% 50%;
}
#modal-youth form .hidden {
  display: none;
}
#modal-youth .__first,
#modal-youth .__second,
#modal-youth .__third,
#modal-youth .__fourth,
#modal-youth .__fifth,
#modal-youth .__sixth,
#modal-youth .__seventh,
#modal-youth .__eighth,
#modal-youth .__ninth,
#modal-youth .__tenth,
#modal-youth .__eleventh,
#modal-youth .__twelfth,
#modal-youth .__thirteenth,
#modal-youth .__fourteenth,
#modal-youth .__fifteenth,
#modal-youth .__sixteenth {
  animation-name: fadeIn;
  animation-duration: 180ms;
  animation-fill-mode: both;
  animation-iteration-count: 1;
}
#modal-youth .__first {
  animation-delay: 0;
}
#modal-youth .__second {
  animation-delay: 80ms;
}
#modal-youth .__third {
  animation-delay: 180ms;
}
#modal-youth .__fourth {
  animation-delay: 360ms;
}
#modal-youth .__fifth {
  animation-delay: 520ms;
}
#modal-youth .__sixth {
  animation-delay: 740ms;
}
#modal-youth .__seventh {
  animation-delay: 920ms;
}
#modal-youth .__eighth {
  animation-delay: 1100ms;
}
#modal-youth .__ninth {
  animation-delay: 1260ms;
}
#modal-youth .__tenth {
  animation-delay: 1420ms;
}
#modal-youth .__eleventh {
  animation-delay: 1580ms;
}
#modal-youth .__twelfth {
  animation-delay: 1740ms;
}
#modal-youth .__thirteenth {
  animation-delay: 1900ms;
}
#modal-youth .__fourteenth {
  animation-delay: 2060ms;
}
#modal-youth .__fifteenth {
  animation-delay: 2220ms;
}
#modal-youth .__sixteenth {
  animation-delay: 2380ms;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translate3d(0, -25%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
#modal-youth .ui-input select + label {
  position: relative;
  display: block;
  padding: 8px 0 8px 0;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.0875em;
  font-weight: 500;
  text-align: left;
}
#modal-youth .ui-input select + label::before, #modal-youth .ui-input select + label::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
}
#modal-youth .ui-input select + label::before {
  background-color: #303030;
}
#modal-youth .ui-input select + label::after {
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 300ms cubic-bezier(0.215, 0.61, 0.355, 1);
  background-color: #303030;
  height: 2px;
}
#modal-youth .ui-input select + label span {
  position: relative;
  color: #303030;
  transition: color 300ms cubic-bezier(0.215, 0.61, 0.355, 1);
}
#modal-youth .ui-input select + label span::after {
  content: attr(data-text);
  position: absolute;
  overflow: hidden;
  left: 0;
  transform: scaleX(1);
  white-space: nowrap;
  color: #fff;
  background-image: linear-gradient(to right, #303030 50%, rgba(255, 255, 255, 0) 0%);
  background-position: 100% 50%;
  background-size: 200%;
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  backface-visibility: hidden;
  perspective: 1000;
  transform: translateZ(0);
  transition: background-position 300ms cubic-bezier(0.215, 0.61, 0.355, 1);
}
#modal-youth .ui-input select:focus + label::after,
#modal-youth .ui-input select.error + label::after,
#modal-youth .ui-input select:invalid + label::after,
#modal-youth .ui-input select.filled + label::after {
  transform: scaleX(1);
  transform-origin: left;
}
#modal-youth .ui-input select:focus + label span::after,
#modal-youth .ui-input select.error + label span::after,
#modal-youth .ui-input select:invalid + label span::after,
#modal-youth .ui-input select.filled + label span::after {
  background-image: linear-gradient(to right, #303030 50%, rgba(255, 255, 255, 0) 0%);
  background-position: 0% 50%;
}
#modal-youth .ui-input select.filled + label {
  color: #303030;
}
#modal-youth .ui-input select.filled + label::after {
  background-color: #303030;
}
#modal-youth .ui-input select.filled + label span::after {
  background-image: linear-gradient(to right, #303030 50%, rgba(255, 255, 255, 0) 0%);
  background-position: 0% 50%;
}
#modal-youth .ui-input select:focus + label {
  color: #303030;
}
#modal-youth .ui-input select:focus + label::after {
  background-color: #303030;
}
#modal-youth .ui-input select:focus + label span::after {
  background-image: linear-gradient(to right, #303030 50%, rgba(255, 255, 255, 0) 0%);
  background-position: 0% 50%;
}
#modal-youth .ui-input select.error + label,
#modal-youth .ui-input select:invalid + label {
  color: #e66161;
}
#modal-youth .ui-input select.error + label::after,
#modal-youth .ui-input select:invalid + label::after {
  background-color: #e66161;
}
#modal-youth .ui-input select.error + label span::after,
#modal-youth .ui-input select:invalid + label span::after {
  background-image: linear-gradient(to right, #e66161 50%, rgba(255, 255, 255, 0) 0%);
  background-position: 0% 50%;
}
#modal-youth .checkbox-input-container {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
#modal-youth input[type=checkbox] {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  padding: 0;
  width: auto;
  height: auto;
}
#modal-youth input[type=checkbox]:before {
  font-family: "FontAwesome";
  margin-right: 5px;
  content: "\f096"; /* Default icon: square-o */
}
#modal-youth input[type=checkbox]:checked:before {
  content: "\f046"; /* Unicode for check-square-o icon */
  background: linear-gradient(#d5a3ff 0%, #77a5f8 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
#modal-youth .ui-input input[type=date] + label {
  position: relative;
  display: block;
  padding: 8px 0;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.0875em;
  font-weight: 500;
  text-align: left;
}
#modal-youth .ui-input input[type=date] + label::before, #modal-youth .ui-input input[type=date] + label::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
}
#modal-youth .ui-input input[type=date] + label::before {
  background-color: rgba(74, 74, 74, 0.5);
}
#modal-youth .ui-input input[type=date] + label::after {
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 300ms cubic-bezier(0.215, 0.61, 0.355, 1);
  background-color: #303030;
  height: 2px;
}
#modal-youth .ui-input input[type=date] + label span {
  position: relative;
  color: rgba(74, 74, 74, 0.5);
  transition: color 300ms cubic-bezier(0.215, 0.61, 0.355, 1);
}
#modal-youth .ui-input input[type=date] + label span::after {
  content: attr(data-text);
  position: absolute;
  overflow: hidden;
  left: 0;
  transform: scaleX(1);
  white-space: nowrap;
  color: #303030;
  background-image: linear-gradient(to right, #303030 50%, rgba(255, 255, 255, 0) 0%);
  background-position: 100% 50%;
  background-size: 200%;
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  backface-visibility: hidden;
  perspective: 1000;
  transform: translateZ(0);
  transition: background-position 300ms cubic-bezier(0.215, 0.61, 0.355, 1);
}
#modal-youth .ui-input input[type=date]:focus + label::after,
#modal-youth .ui-input input[type=date].error + label::after,
#modal-youth .ui-input input[type=date]:invalid + label::after,
#modal-youth .ui-input input[type=date].filled + label::after {
  transform: scaleX(1);
  transform-origin: left;
}
#modal-youth .ui-input input[type=date]:focus + label span::after,
#modal-youth .ui-input input[type=date].error + label span::after,
#modal-youth .ui-input input[type=date]:invalid + label span::after,
#modal-youth .ui-input input[type=date].filled + label span::after {
  background-image: linear-gradient(to right, #303030 50%, rgba(255, 255, 255, 0) 0%);
  background-position: 0% 50%;
}
#modal-youth .ui-input input[type=date].filled + label {
  color: #303030;
}
#modal-youth .ui-input input[type=date].filled + label::after {
  background-color: #303030;
}
#modal-youth .ui-input input[type=date].filled + label span::after {
  background-image: linear-gradient(to right, #303030 50%, rgba(255, 255, 255, 0) 0%);
  background-position: 0% 50%;
}
#modal-youth .ui-input input[type=date]:focus + label {
  color: #303030;
}
#modal-youth .ui-input input[type=date]:focus + label::after {
  background-color: #303030;
}
#modal-youth .ui-input input[type=date]:focus + label span::after {
  background-image: linear-gradient(to right, #303030 50%, rgba(255, 255, 255, 0) 0%);
  background-position: 0% 50%;
}
#modal-youth .ui-input input[type=date].error + label,
#modal-youth .ui-input input[type=date]:invalid + label {
  color: #e66161;
}
#modal-youth .ui-input input[type=date].error + label::after,
#modal-youth .ui-input input[type=date]:invalid + label::after {
  background-color: #e66161;
}
#modal-youth .ui-input input[type=date].error + label span::after,
#modal-youth .ui-input input[type=date]:invalid + label span::after {
  background-image: linear-gradient(to right, #e66161 50%, rgba(255, 255, 255, 0) 0%);
  background-position: 0% 50%;
}
#modal-youth .close .lr,
#modal-youth .close .rl {
  background-color: #717171;
}

/* CSS for sliding animation */
.pack-info {
  position: fixed;
  top: 50%;
  bottom: unset;
  right: -250px; /* Initially hidden */
  transform: translateY(-50%);
  width: 250px;
  padding: 4px 20px;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
  background-color: white;
  transition: right 0.5s ease;
  z-index: 10000; /* Higher zIndex */
  box-shadow: 3px 5px 10px rgba(0, 0, 0, 0.15);
}
@media (max-width: 899px) {
  .pack-info {
    top: unset;
    bottom: -500px;
    left: 50%;
    transform: translateX(-50%);
    transition: bottom 0.5s ease;
    width: 550px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
}
@media (max-width: 767px) {
  .pack-info {
    width: 85vw; /* Adjust for smaller screens */
  }
}
@media (max-width: 550px) {
  .pack-info {
    width: 100vw;
  }
}

.pack-info.visible {
  right: 0; /* Slides into view */
}
@media (max-width: 899px) {
  .pack-info.visible {
    bottom: 0;
    top: unset;
  }
}

.pack-info.hidden {
  right: -250px; /* Slides out of view */
}
@media (max-width: 899px) {
  .pack-info.hidden {
    bottom: -500px;
    top: unset;
  }
}

#submission-modal {
  top: 50%;
  transform: translateY(-50%);
  padding-top: 3px;
  padding-bottom: 5px;
}
#submission-modal .modal-content {
  top: 50%;
  transform: translateY(-50%);
  margin-top: 0;
}
#submission-modal .modal-content .logo {
  padding-top: 3px;
  padding-bottom: 5px;
}
#submission-modal .modal-content .logo img {
  width: 55px;
}
#submission-modal .modal-content h2 {
  text-align: center;
}
#submission-modal .modal-content p {
  font-size: 14px;
  text-align: center;
}
#submission-modal .modal-content .row .features li {
  display: flex;
  align-items: flex-start;
  font-size: 12px;
  list-style: none;
  margin-bottom: 10px;
}
#submission-modal .modal-content .features li i {
  padding-top: 5px;
  background: linear-gradient(#d5a3ff 0%, #77a5f8 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
#submission-modal .modal-content .features li span {
  margin-left: 10px;
}

.pack-info {
  padding-top: 3px;
  padding-bottom: 5px;
}
.pack-info .logo {
  padding-top: 3px;
  padding-bottom: 5px;
}
.pack-info img {
  width: 40px;
}
.pack-info p {
  font-size: 13px;
  text-align: center;
}
.pack-info .modal-tab-pricing {
  color: #77a5f8;
}
.pack-info .row .features li {
  display: flex;
  align-items: flex-start;
  font-size: 12px;
  list-style: none;
  margin-bottom: 10px;
  margin-left: 10px;
}
.pack-info .features li i {
  padding-top: 5px;
  background: linear-gradient(#d5a3ff 0%, #77a5f8 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.pack-info .features li span {
  margin-left: 5px;
}/*# sourceMappingURL=youthcamp-1.4.css.map */