*, *::before, *::after {
  box-sizing: border-box;
}

@font-face {
  font-family: "Sequel";
  src: url("../vendor/fonts/sequel/Sequel100Black-75.ttf");
  font-weight: 700;
}
@font-face {
  font-family: "Sequel";
  src: url("../vendor/fonts/sequel/Sequel100Black-76.ttf");
  font-weight: 700;
  font-style: italic;
}
@font-face {
  font-family: "Sequel";
  src: url("../vendor/fonts/sequel/Sequel100Black-55.ttf");
  font-weight: 500;
}
@font-face {
  font-family: "Sequel";
  src: url("../vendor/fonts/sequel/Sequel100Black-56.ttf");
  font-weight: 500;
  font-style: italic;
}
@font-face {
  font-family: "Sequel";
  src: url("../vendor/fonts/sequel/Sequel100Black-45.ttf");
  font-weight: 400;
}
@font-face {
  font-family: "Sequel";
  src: url("../vendor/fonts/sequel/Sequel100Black-46.ttf");
  font-weight: 400;
  font-style: italic;
}
html {
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  html {
    font-size: 14px;
  }
}
@media screen and (min-width: 992px) {
  html {
    font-size: 16px;
  }
}
@media screen and (min-width: 1400px) {
  html {
    font-size: 18px;
  }
}

body {
  margin: 0;
  font-family: "Sequel", "Open Sans", sans-serif;
  color: #1c1c1c;
}

h1, h2, h3 {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.125rem;
}

input.form-control, textarea.form-control {
  transition: all 0.3s ease-in-out 0s;
  border-radius: 0px;
  border: 0;
  outline: 0;
  padding: 4px 8px;
  background-color: #fff;
  color: #1c1c1c;
  font-size: 1rem;
}
input.form-control:focus, textarea.form-control:focus {
  box-shadow: 0 0 2pt 3pt #1c1c1c;
}
input.form-control.inp_form_val, textarea.form-control.inp_form_val {
  border: 4px solid #fff;
}
input.form-control.inp_form_val.invalid, textarea.form-control.inp_form_val.invalid {
  border: 4px solid #f30808;
  outline: 1px solid #fff;
}

button {
  border: 0;
  background: transparent;
}

ul {
  list-style: none;
  padding-left: 0;
}

a {
  text-decoration: none;
}

input[type=number] {
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
}
input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.form-group {
  margin-bottom: 15px;
}
.form-group .doc-group #doc-type {
  width: 100%;
  max-width: fit-content;
}

.form-label {
  margin-bottom: 5px;
}

select.form-select {
  border-radius: 0px;
  border: 0;
  outline: 0;
  padding: 6px 10px;
  background-color: #fff;
}

.input-group select.form-select {
  border-radius: 0px;
  border: 0;
  outline: 0;
  padding: 4px 8px;
  background-color: #1c1c1c;
  color: #fff;
}

.cont-btn-form {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  margin-top: 20px;
}
.cont-btn-form .btn-form {
  transition: all 0.3s ease-in-out 0s;
  background-color: #fff;
  border-radius: 0px;
  border: 0;
  outline: 0;
  padding: 6px 10px;
  color: #1c1c1c;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
}
.cont-btn-form .btn-form:disabled {
  background-color: #1c1c1c;
  opacity: 0.5;
  color: #fff;
  cursor: not-allowed;
}
.cont-btn-form .btn-form:hover {
  background-color: #1c1c1c;
  color: #fff;
}

.pointer {
  cursor: pointer;
}

.cont-number-input span {
  transition: all 0.3s ease-in-out 0s;
  background-color: #1c1c1c;
  border-radius: 0px;
  border: 0;
  color: #fff;
  cursor: pointer;
}
.cont-number-input span.minus:hover, .cont-number-input span.minus:focus {
  background-color: #ff6262;
  color: #1c1c1c;
}
.cont-number-input span.plus:hover, .cont-number-input span.plus:focus {
  background-color: #37c437;
  color: #1c1c1c;
}
.cont-number-input .number-input {
  text-align: end;
  user-select: none;
}

.cont-msg {
  transition: all 0.3s ease-in-out 0s;
  opacity: 0;
  visibility: hidden;
  height: 0;
  width: 100%;
  overflow: hidden;
  padding: 8px 10px;
  margin-top: 20px;
}
.cont-msg.show {
  opacity: 1;
  visibility: visible;
  height: 100%;
  width: 100%;
  overflow: unset;
}
.cont-msg.error {
  background-color: #ff6262;
}
.cont-msg.pass {
  background-color: #0077ff;
}
.cont-msg.success {
  background-color: #37c437;
}

.loader-container {
  transition: all 0.3s ease-in-out 0s;
  opacity: 0;
  visibility: hidden;
  height: 0;
  width: 0;
  overflow: hidden;
  position: relative;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.loader-container.show {
  opacity: 1;
  visibility: visible;
  height: 100%;
  width: 100%;
  overflow: unset;
}
.loader-container .loader {
  width: 15px;
  aspect-ratio: 1;
  border-radius: 50%;
  animation: l5 1s infinite linear alternate;
}

.tac-box-content {
  background-color: #fff;
  color: #1c1c1c;
  padding: 12px;
  height: 300px;
  overflow: auto;
}
.tac-box-content h2 {
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.tac-box-content ol li {
  margin-bottom: 20px;
}
.tac-box-content ol li strong {
  font-weight: 700;
  color: #DC3E26;
}

.signature-cont .signature-pad {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-top: 35px;
  height: 100%;
  width: 100%;
}
@media screen and (min-width: 992px) {
  .signature-cont .signature-pad {
    max-width: 50%;
  }
}
.signature-cont .signature-pad.for-kids {
  transition: all 0.3s ease-in-out 0s;
  opacity: 0;
  visibility: hidden;
  height: 0%;
  width: 0%;
  overflow: hidden;
  margin: 0px;
}
.signature-cont .signature-pad.for-kids.show {
  opacity: 1;
  visibility: visible;
  height: 100%;
  width: 100%;
  overflow: unset;
}
.signature-cont .signature-pad.for-adult {
  transition: all 0.3s ease-in-out 0s;
  opacity: 1;
  visibility: visible;
  height: 100%;
  width: 100%;
  overflow: unset;
}
.signature-cont .signature-pad.for-adult.hide {
  opacity: 0;
  visibility: hidden;
  height: 0%;
  width: 0%;
  overflow: hidden;
  margin: 0px;
}
.signature-cont .signature-pad .signature-eraser {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  background-color: #1c1c1c;
  border: 0;
  outline: 0;
  padding: 0;
  margin-bottom: 20px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.25rem;
  color: #fff;
}
.signature-cont .signature-pad h3 {
  margin-top: 10px;
}
.signature-cont .signature-pad canvas {
  border: 1px solid #1c1c1c;
  background-color: #fff;
}

@keyframes l5 {
  0% {
    box-shadow: 20px 0 #fff, -20px 0 #DC3E26;
    background: #fff;
  }
  33% {
    box-shadow: 20px 0 #fff, -20px 0 #DC3E26;
    background: #DC3E26;
  }
  66% {
    box-shadow: 20px 0 #DC3E26, -20px 0 #fff;
    background: #DC3E26;
  }
  100% {
    box-shadow: 20px 0 #DC3E26, -20px 0 #fff;
    background: #fff;
  }
}
header .navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
  transition: all 0.3s ease-in-out 0.5s;
}
header .navbar.scroll-top {
  background-color: #fff;
}
header .navbar .logo {
  max-width: 300px;
  width: 100%;
  margin-right: 5px;
}
@media screen and (min-width: 768px) and (max-width: 880px) {
  header .navbar .logo {
    max-width: 150px;
  }
}
@media screen and (min-width: 1200px) {
  header .navbar .logo {
    max-width: unset;
  }
}
header .navbar .navbar-toggler {
  transition: all 0.3s ease-in-out 0s;
  border: 2px solid transparent;
  border-radius: 50%;
  height: 58px;
  width: 58px;
  min-width: 58px;
  --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23DC3E26' stroke-linecap='round' stroke-miterlimit='10' stroke-width='4' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
header .navbar .navbar-toggler:hover {
  background-color: rgba(255, 255, 255, 0.5);
  border-color: #fff;
}
header .navbar .navbar-toggler:focus {
  box-shadow: none;
}
@media screen and (min-width: 768px) {
  header .navbar .navbar-toggler {
    display: none;
  }
}
header .navbar .navbar-collapse {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  flex-direction: column;
  transition: all 0.4s ease-in 0s;
  opacity: 0;
  visibility: hidden;
  height: 100vh;
  width: 0;
  overflow: hidden;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  header .navbar .navbar-collapse {
    opacity: 1;
    visibility: visible;
    height: auto;
    width: 100%;
    overflow: unset;
    position: relative;
    z-index: 1;
    margin-top: 10px;
  }
}
header .navbar .navbar-collapse:not(.collapse) {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  opacity: 1;
  visibility: visible;
  height: 100vh;
  width: 100%;
  overflow: unset;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 999;
  width: 100%;
  height: 100vh;
  padding: 8px 12px;
  background-color: rgba(255, 255, 255, 0.95);
}
header .navbar .navbar-collapse:not(.collapse) .nav-items {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  margin-top: 30px;
  width: 100%;
}
header .navbar .navbar-collapse:not(.collapse) .nav-items ul {
  width: 100%;
}
@media screen and (min-width: 768px) {
  header .navbar .navbar-collapse:not(.collapse) .nav-items ul li {
    border-bottom: 1px solid #1c1c1c;
  }
  header .navbar .navbar-collapse:not(.collapse) .nav-items ul li:first-child {
    border-top: 1px solid #1c1c1c;
  }
}
header .navbar .navbar-collapse:not(.collapse) .nav-items ul li a {
  font-size: 1.5rem;
}
header .navbar .navbar-collapse .nav-items {
  display: flex;
  align-items: center;
  flex-direction: row;
}
@media screen and (min-width: 768px) {
  header .navbar .navbar-collapse .nav-items .icons {
    margin-left: 10px;
  }
}
header .navbar .navbar-collapse .nav-items .icons button {
  transition: all 0.3s ease-in-out 0s;
  background: transparent;
  border: 0;
  outline: 0;
}
header .navbar .navbar-collapse .nav-items .icons button i {
  font-size: 1.25rem;
}
header .navbar .navbar-collapse .nav-items .icons button i:hover {
  color: #DC3E26;
}
@media screen and (min-width: 768px) {
  header .navbar .navbar-collapse .nav-items ul {
    flex-direction: row;
  }
}
header .navbar .navbar-collapse .nav-items ul li {
  position: relative;
  display: inline-block;
}
header .navbar .navbar-collapse .nav-items ul li:not(:last-child) {
  margin-right: 0px;
}
@media screen and (min-width: 768px) {
  header .navbar .navbar-collapse .nav-items ul li:not(:last-child) {
    margin-right: 50px;
  }
}
header .navbar .navbar-collapse .nav-items ul li::after {
  transition: all 0.3s ease-in-out 0s;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  content: unset;
  left: 50%;
  width: 0%;
  opacity: 0;
  height: 4px;
  border-radius: 5px;
}
@media screen and (min-width: 768px) {
  header .navbar .navbar-collapse .nav-items ul li::after {
    content: "";
  }
}
header .navbar .navbar-collapse .nav-items ul li a {
  color: #1c1c1c;
  font-style: normal;
  font-weight: 700;
  font-size: 1.125rem;
}
header .navbar .navbar-collapse .nav-items ul li a:hover {
  color: #DC3E26;
}
header .navbar .navbar-collapse .nav-items ul li.active a {
  color: #DC3E26;
}
header .navbar .navbar-collapse .nav-items ul li.active a:hover {
  color: #1c1c1c;
}
header .navbar .navbar-collapse .close-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  transition: all 0.3s ease-in-out 0s;
  position: absolute;
  top: 10px;
  right: 10px;
  color: #ff1616;
  font-size: 1.875rem;
  cursor: pointer;
}
header .navbar .navbar-collapse .close-btn:hover {
  color: #ff6262;
  transform: rotate(90deg);
}
@media screen and (min-width: 768px) {
  header .navbar .navbar-collapse .close-btn {
    display: none;
  }
}

footer {
  position: relative;
  background-color: #DC3E26;
  padding: 60px;
  font-size: 1.125rem;
  color: #fff;
}
footer .title {
  margin-bottom: 20px;
}
footer .title h3 {
  font-size: 1.5rem;
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  text-align: center;
}
@media screen and (min-width: 768px) {
  footer .title h3 {
    font-size: 2rem;
    text-underline-offset: 10px;
    text-decoration: underline 5px #1c1c1c;
  }
}
footer .box {
  text-align: center;
}
footer .box a {
  transition: all 0.3s ease-in-out 0s;
  position: relative;
  z-index: 1;
  display: inline-block;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 500;
}
footer .box a::before {
  transition: all 0.3s ease-in-out 0s;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  content: "";
  top: auto;
  bottom: -6px;
  left: 50%;
  width: 0%;
  height: 4px;
  background-color: #1c1c1c;
  opacity: 0;
}
@media screen and (min-width: 768px) {
  footer .box a::before {
    content: "";
  }
}
footer .box a:hover::before {
  width: 100%;
  left: 0;
  opacity: 1;
}
footer .box a:hover {
  color: #1c1c1c;
}
footer .copyright {
  text-align: center;
  font-size: 1rem;
  font-weight: 400;
}

main {
  margin-top: var(--navbar-height);
  background-color: #1c1c1c;
  color: #fff;
}

section {
  padding-top: 60px;
  padding-bottom: 60px;
}

.total-to-pay {
  transition: all 0.3s ease-in-out 0s;
  display: flex;
  align-items: center;
  flex-direction: row;
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 100;
  width: 15.625rem;
  height: 3.75rem;
  background-color: #fff;
  opacity: 0.9;
  border-top: 4px solid #DC3E26;
  border-left: 4px solid #DC3E26;
  transform: translateX(13.4375rem);
  color: #1c1c1c;
}
.total-to-pay:hover {
  opacity: 1;
}
.total-to-pay.show {
  transform: translateX(0);
}
.total-to-pay .gate {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  transition: all 0.3s ease-in-out 0s;
  width: 2.1875rem;
  height: 100%;
  background-color: #DC3E26;
  font-size: 1.5rem;
  cursor: pointer;
}
.total-to-pay .gate:hover {
  background-color: #1c1c1c;
  color: #DC3E26;
}
.total-to-pay .total-to-pay-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
}
.total-to-pay .total-to-pay-content b {
  display: block;
}
.total-to-pay .total-to-pay-content span {
  display: block;
  text-align: right;
}

section.preorders .cont-preorders {
  background-color: #DC3E26;
  padding: 15px 20px;
}
@media screen and (min-width: 768px) {
  section.preorders .cont-preorders {
    padding: 30px 40px;
  }
}
section.preorders .cont-preorders h1 {
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  text-align: center;
  text-decoration: underline 5px #1c1c1c;
  text-underline-offset: 10px;
  line-height: 1.5;
  margin-bottom: 35px;
}
section.preorders .cont-preorders .sub-title {
  font-size: 1.5rem;
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  text-align: left;
  margin-bottom: 20px;
  margin-top: 25px;
}
section.preorders .cont-preorders .boxes .box {
  width: 100%;
}
section.preorders .cont-preorders .boxes .box.hide {
  opacity: 0;
  visibility: hidden;
  height: 0;
  width: 100%;
  overflow: hidden;
}
section.preorders .cont-preorders .boxes .box.product-box .product-box-container {
  display: flex;
  justify-content: space-evenly;
  align-items: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
}
section.preorders .cont-preorders .boxes .box.product-box .product-box-container .product {
  transition: all 0.3s ease-in-out 0s;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column;
  border: 4px solid #1c1c1c;
  width: 100%;
  max-width: 100%;
  padding: 10px;
  background-color: #1c1c1c;
  margin: 5px;
  margin-block: 10px;
  height: auto;
  min-height: 480px;
}
@media screen and (min-width: 720px) {
  section.preorders .cont-preorders .boxes .box.product-box .product-box-container .product {
    max-width: 250px;
  }
}
@media screen and (min-width: 992px) {
  section.preorders .cont-preorders .boxes .box.product-box .product-box-container .product {
    max-width: 300px;
  }
}
section.preorders .cont-preorders .boxes .box.product-box .product-box-container .product:hover {
  background-color: rgba(28, 28, 28, 0.8);
}
section.preorders .cont-preorders .boxes .box.product-box .product-box-container .product .product-image {
  margin-bottom: 10px;
}
section.preorders .cont-preorders .boxes .box.product-box .product-box-container .product .product-image img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
section.preorders .cont-preorders .boxes .box.product-box .product-box-container .product p {
  margin-bottom: 0;
}
section.preorders .cont-preorders .boxes .box.product-box .product-box-container .product .product-amount {
  width: 100%;
}
section.preorders .cont-preorders .boxes .box.product-box .product-box-container .product .product-amount input {
  text-align: right;
}
section.preorders .cont-preorders .boxes .box.product-box .product-box-container .product.product-membership {
  cursor: pointer;
}
section.preorders .cont-preorders .boxes .box.product-box .product-box-container .product.product-membership.active {
  border: 4px dashed #fff;
}
section.preorders .cont-preorders .boxes .box.product-box .cart-resume {
  display: none;
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  section.preorders .cont-preorders .boxes .box.product-box .cart-resume {
    display: block;
  }
}
section.preorders .cont-preorders .boxes .box.product-box .cart-resume h4 {
  font-weight: 700;
  font-size: 1.25rem;
  font-style: italic;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 10px;
}
section.preorders .cont-preorders .boxes .box.product-box .for-kids, section.preorders .cont-preorders .boxes .box.product-box .for-membership {
  opacity: 0;
  visibility: hidden;
  height: 0;
  width: 100%;
  overflow: hidden;
  transition: all 0.3s ease-in-out 0s;
  margin: 0;
}
section.preorders .cont-preorders .boxes .box.product-box .for-kids.show, section.preorders .cont-preorders .boxes .box.product-box .for-membership.show {
  opacity: 1;
  visibility: visible;
  height: 100%;
  width: 100%;
  overflow: unset;
  margin-bottom: 15px;
}

section.register-clients .cont-register-clients {
  background-color: #DC3E26;
  padding: 30px 40px;
}
section.register-clients .cont-register-clients h1 {
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  text-align: center;
  text-decoration: underline 5px #1c1c1c;
  text-underline-offset: 10px;
  line-height: 1.5;
  margin-bottom: 35px;
}
section.register-clients .cont-register-clients .sub-title {
  font-size: 1.5rem;
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  text-align: left;
  margin-bottom: 20px;
  margin-top: 25px;
}
section.register-clients .cont-register-clients .for-kids:not(.signature-pad), section.register-clients .cont-register-clients .for-membership {
  opacity: 0;
  visibility: hidden;
  height: 0;
  width: 100%;
  overflow: hidden;
  transition: all 0.3s ease-in-out 0s;
  margin: 0;
}
section.register-clients .cont-register-clients .for-kids:not(.signature-pad).show, section.register-clients .cont-register-clients .for-membership.show {
  opacity: 1;
  visibility: visible;
  height: 100%;
  width: 100%;
  overflow: unset;
  margin-bottom: 15px;
}

section.register-memberships .cont-register-memberships {
  background-color: #DC3E26;
  padding: 30px 10px;
}
@media screen and (min-width: 768px) {
  section.register-memberships .cont-register-memberships {
    padding: 30px 40px;
  }
}
section.register-memberships .cont-register-memberships h1 {
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  text-align: center;
  text-decoration: underline 5px #1c1c1c;
  text-underline-offset: 10px;
  line-height: 1.8;
  margin-bottom: 35px;
}
section.register-memberships .cont-register-memberships .cont-info-memberships {
  background-color: #1c1c1c;
  padding: 10px 14px;
  margin-bottom: 20px;
}
section.register-memberships .cont-register-memberships .cont-info-memberships p {
  font-size: 0.8rem;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 0;
}
section.register-memberships .cont-register-memberships .cont-info-memberships p:not(:last-child) {
  margin-bottom: 10px;
}
section.register-memberships .cont-register-memberships .cont-info-memberships p a {
  color: #DC3E26;
  font-weight: 700;
}

section.message {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}
@media screen and (min-width: 768px) {
  section.message {
    min-height: 100vh;
  }
}
section.message .cont-message {
  background-color: #DC3E26;
  padding: 30px 40px;
  border: 4px solid #fff;
}
@media screen and (min-width: 768px) {
  section.message .cont-message {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: column;
    height: 300px;
  }
}
section.message .cont-message h1 {
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 35px;
}

section.qrscanner {
  min-height: 80vh;
}
section.qrscanner .cont-qrscanner {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-direction: column;
  background-color: #DC3E26;
  padding: 30px 40px;
}
section.qrscanner .cont-qrscanner h1 {
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  text-align: center;
  text-decoration: underline 5px #1c1c1c;
  text-underline-offset: 10px;
  line-height: 1.5;
  margin-bottom: 35px;
}
section.qrscanner .cont-qrscanner #qr-reader {
  width: 100%;
  background-color: #fff;
  min-height: 200px;
  color: #1c1c1c;
}
section.qrscanner .cont-turn {
  background-color: #DC3E26;
  padding: 30px 40px;
}
section.qrscanner .cont-turn i {
  font-size: 1.5rem;
}
section.qrscanner .cont-turn .form-control {
  text-align: center;
  font-size: 1.5rem;
}

section.dailyplanning {
  min-height: 80vh;
}
section.dailyplanning .cont-dailyplanning {
  background-color: #DC3E26;
  padding: 30px 10px;
}
@media screen and (min-width: 768px) {
  section.dailyplanning .cont-dailyplanning {
    padding: 30px 40px;
  }
}
section.dailyplanning .cont-dailyplanning h1 {
  font-size: 1.8rem;
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  text-align: center;
  text-decoration: underline 5px #1c1c1c;
  text-underline-offset: 10px;
  line-height: 1.8;
  margin-bottom: 35px;
}
@media screen and (max-width: 767px) {
  section.dailyplanning .cont-dailyplanning .dp-calendar .fc-header-toolbar {
    display: flex;
    flex-direction: column;
  }
  section.dailyplanning .cont-dailyplanning .dp-calendar .fc-header-toolbar .fc-toolbar-chunk {
    margin-top: 15px;
  }
}
section.dailyplanning .cont-dailyplanning .dp-calendar .fc-scrollgrid {
  background-color: #1c1c1c;
}
section.dailyplanning .cont-dailyplanning .dp-calendar .fc-timegrid-slot {
  background-color: #1c1c1c;
}
section.dailyplanning .cont-dailyplanning .dp-calendar .fc-timegrid-axis, section.dailyplanning .cont-dailyplanning .dp-calendar .fc-col-header-cell {
  background-color: #fff;
}
section.dailyplanning .cont-dailyplanning .dp-calendar .fc-timegrid-axis .fc-col-header-cell-cushion, section.dailyplanning .cont-dailyplanning .dp-calendar .fc-col-header-cell .fc-col-header-cell-cushion {
  color: #DC3E26;
  text-transform: uppercase;
}
section.dailyplanning .cont-dailyplanning .dp-calendar .fc-timegrid-slot-label {
  color: #DC3E26;
  background-color: #fff;
  font-weight: 500;
}
section.dailyplanning .cont-dailyplanning .dp-calendar .fc-button-primary {
  background-color: rgba(28, 28, 28, 0.8);
  border-color: rgba(255, 255, 255, 0.5);
}
section.dailyplanning .cont-dailyplanning .dp-calendar .fc-button-primary:hover, section.dailyplanning .cont-dailyplanning .dp-calendar .fc-button-primary.fc-button-active {
  background-color: #1c1c1c;
  border-color: #fff;
}
section.dailyplanning .cont-dailyplanning .dp-calendar .fc-v-event {
  background-color: #0077ff;
  border-radius: 0px;
  box-shadow: 0 0 0 1px #fff;
}
section.dailyplanning .cont-dailyplanning .dp-calendar .fc-v-event.category-1 {
  background-color: #b42b2b;
}
section.dailyplanning .cont-dailyplanning .dp-calendar .fc-v-event.category-2 {
  background-color: #30963e;
}
section.dailyplanning .cont-dailyplanning .dp-calendar .fc-v-event.category-3 {
  background-color: #2424d4;
}
section.dailyplanning .cont-dailyplanning .dp-calendar .fc-v-event.category-4 {
  background-color: #810667;
}
section.dailyplanning .cont-dailyplanning .dp-calendar .fc-v-event.category-5 {
  background-color: #248d8d;
}
section.dailyplanning .cont-dailyplanning .dp-calendar .fc-v-event.category-6 {
  background-color: #d42424;
}
section.dailyplanning .cont-dailyplanning .dp-calendar .fc-v-event.category-7 {
  background-color: #285800;
}
section.dailyplanning .cont-dailyplanning .dp-calendar .fc-v-event.category-8 {
  background-color: #3a0cb9;
}
section.dailyplanning .cont-dailyplanning .dp-calendar .fc-v-event.category-9 {
  background-color: #d6440a;
}
section.dailyplanning .cont-dailyplanning .dp-calendar .fc-v-event.category-10 {
  background-color: #0e8a46;
}
section.dailyplanning .cont-dailyplanning .dp-calendar .fc-v-event .fc-event-main {
  padding: 8px 10px;
}

section.membership-slider {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  padding: 0;
  overflow: hidden;
  height: 100vh;
}
@media screen and (min-width: 576px) {
  section.membership-slider {
    height: 100%;
  }
}
section.membership-slider .slider-container {
  position: relative;
  z-index: 1;
  height: 100%;
}
@media screen and (min-width: 576px) {
  section.membership-slider .slider-container {
    display: grid;
    grid-template-columns: minmax(30px, 1fr) 1fr minmax(30px, 1fr);
  }
}
section.membership-slider .slider-container .my-slider {
  height: 80%;
  background-color: #000;
  padding: 0;
  margin: 0;
}
@media screen and (min-width: 576px) {
  section.membership-slider .slider-container .my-slider {
    height: 100%;
  }
}
section.membership-slider .slider-container .my-slider .slider-item img {
  width: 100%;
}
@media screen and (min-width: 576px) {
  section.membership-slider .slider-container .my-slider .slider-item img {
    width: 100%;
    max-width: 100%;
    height: 100vh;
  }
}
section.membership-slider .slider-container .my-slider .slider-item iframe {
  height: 92vh;
}
@media screen and (min-width: 576px) {
  section.membership-slider .slider-container .my-slider .slider-item iframe {
    height: 100vh;
  }
}
@media screen and (max-width: 575px) {
  section.membership-slider .slider-container .slider-button {
    transition: all 0.3s ease-in-out 0s;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    background: url(../images/icons/arrow.png);
    background-size: 60px;
    background-repeat: repeat;
    background-position: top center;
    width: 100%;
    height: 20%;
    background-color: #DC3E26;
    border: 0;
    outline: 0;
    padding: 5px 10px;
    font-size: 1.5rem;
    color: #fff;
  }
  section.membership-slider .slider-container .slider-button:hover {
    opacity: 0.8;
  }
  section.membership-slider .slider-container .slider-button#prev {
    display: none;
  }
  section.membership-slider .slider-container .slider-button i {
    display: none;
  }
}
@media screen and (min-width: 576px) {
  section.membership-slider .slider-container .slider-button {
    transition: all 0.3s ease-in-out 0s;
    width: 100%;
    height: 100%;
    background-color: #1c1c1c;
  }
  section.membership-slider .slider-container .slider-button:hover {
    transition: all 0.3s ease-in-out 0s;
    background-color: #DC3E26;
  }
  section.membership-slider .slider-container .slider-button:hover i {
    color: #fff;
  }
  section.membership-slider .slider-container .slider-button i {
    display: block;
    font-size: 3rem;
    color: #DC3E26;
  }
}

section.token {
  min-height: 80vh;
}
section.token .cont-token {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-direction: column;
  background-color: #DC3E26;
  padding: 30px 40px;
}
section.token .cont-token h1 {
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  text-align: center;
  text-decoration: underline 5px #1c1c1c;
  text-underline-offset: 10px;
  line-height: 1.5;
  margin-bottom: 35px;
}
section.token .cont-token .token-form {
  width: 100%;
}
section.token .cont-token .token-form .token-result {
  margin-top: 15px;
  background-color: #fff;
  padding: 10px;
  border: 4px solid #1c1c1c;
  color: #1c1c1c;
  font-weight: 900;
  text-align: center;
}

section.login {
  min-height: 80vh;
}
section.login .cont-login {
  background-color: #DC3E26;
  padding: 30px 40px;
}
section.login .cont-login h1 {
  margin-bottom: 25px;
}
section.login .cont-login .tab-login .nav-link {
  font-weight: 500;
  border-radius: 0px;
  color: #fff;
}
section.login .cont-login .tab-login .nav-link.active {
  border-radius: 0px;
  color: #1c1c1c;
}
section.login .cont-login .tab-content {
  margin-top: 15px;
}
section.login .cont-login .tab-content .operator-area {
  transition: all 0.3s ease-in-out 0s;
  opacity: 0;
  visibility: hidden;
  height: 0;
  width: 100%;
  overflow: hidden;
  margin: 0px;
}
section.login .cont-login .tab-content .operator-area.show {
  opacity: 1;
  visibility: visible;
  height: 100%;
  width: 100%;
  overflow: unset;
  margin-top: 15px;
  margin-bottom: 15px;
}

/*# sourceMappingURL=main_010.css.map */
