:root {
  --purple-100: #ECE6F3;
  --purple-200: #D6C6ED;
  --purple-300: #B59FDE;
  --purple-400: #A77AD0;
  --purple-500: #602c89;
  --purple-700: #46216B;
  --purple-900: #2B1440;
}
/* BASE
========================*/
a {
  text-decoration: none;
}
.key-image {
  background-color: #1E2B55;
}
.carousel-h {
  background-color: rgba(30, 30, 30, 1.00);
  background: linear-gradient(0deg, rgba(30, 30, 30, 1.00) 0%, rgba(191, 191, 191, 1) 50%, rgba(46, 46, 46, 1.00) 100%);
}
.checkbox-lg {
  width: 24px;
  height: 24px;
  border-color: #333;
}
.checkbox-md {
  width: 18px;
  height: 18px;
  border-color: #333;
}
.hohoho {
  transition: all 0.3s;
  box-shadow: 0 8px 14px rgba(0, 0, 0, 0.15);
}
.hohoho:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.15);
}
.google-map iframe {
  width: 100%;
  height: 560px;
}
.table tr.disabled th, .table tr.disabled td {
  color: #AAAAAA !important;
}
.text-shadow {
  text-shadow: 1px 1px 2px #454545;
}
main {
  background-image: url(../images/bg-dot.png);
}
/* MAIN COLOR
========================*/
.bg-purple-100 {
  background-color: var(--purple-100);
}
.bg-purple-200 {
  background-color: var(--purple-200);
}
.bg-purple-300 {
  background-color: var(--purple-300);
}
.bg-purple-400 {
  background-color: var(--purple-400);
}
.bg-purple-500 {
  background-color: var(--purple-500);
}
.bg-purple-700 {
  background-color: var(--purple-700);
}
.bg-purple-900 {
  background-color: var(--purple-900);
}
.text-purple-100 {
  color: var(--purple-100);
}
.text-purple-200 {
  color: var(--purple-200);
}
.text-purple-300 {
  color: var(--purple-300);
}
.text-purple-400 {
  color: var(--purple-400);
}
.text-purple-500 {
  color: var(--purple-500);
}
.text-purple-700 {
  color: var(--purple-700);
}
.text-purple-900 {
  color: var(--purple-900);
}
.table.main-purple tr th {
  background-color: var(--purple-700);
  color: white;
}
.table.main-purple tr.purple-100 td {
  background-color: var(--purple-100);
}
.btn-purple {
  --bs-btn-color: #fff;
  --bs-btn-bg: var(--purple-500);
  --bs-btn-border-color: var(--purple-700);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: var(--purple-700);
  --bs-btn-hover-border-color: var(--purple-700);
  --bs-btn-focus-shadow-rgb: var(--purple-700);
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: var(--purple-400);
  --bs-btn-active-border-color: var(--purple-700);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: var(--purple-100);
  --bs-btn-disabled-border-color: var(--purple-700);
}
.btn-outline-purple {
  --bs-btn-color: var(--purple-500);
  --bs-btn-bg: transparent;
  --bs-btn-border-color: var(--purple-500);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: var(--purple-500);
  --bs-btn-hover-border-color: var(--purple-500);
  --bs-btn-focus-shadow-rgb: var(--purple-500);
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: var(--purple-700);
  --bs-btn-active-border-color: var(--purple-700);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: var(--purple-200);
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: var(--purple-200);
}
/* NAVIGATION
========================*/
.navigation {
  padding: 12px 0;
  font-size: 0.9375rem;
  font-weight: bolder;
  border-bottom: 1px #FFFFFF solid;
}
.navigation a {
  color: #353535;
}
.navigation .item i {
  font-size: 1.2rem;
}
/* OFFCANVAS
========================*/
.offcanvas {
  color: #fff;
  width: 260px !important;
  backdrop-filter: blur(8px);
  background-color: rgba(0, 0, 0, 0.35) !important;
  font-size: 0.9375rem;
}
.offcanvas ul {
  list-style: none;
  padding: 0;
}
.offcanvas ul li {
  padding: 6px 0;
}
.offcanvas ul li span {
  color: #999;
  font-size: 0.875rem;
}
.offcanvas ul li a {
  transition: ease-in 0.2s;
}
.offcanvas ul li a:hover {
  padding-left: 6px;
}
/* HERO
========================*/
#Hero {
  background: linear-gradient(135deg, #858585, #ffffff, #313131);
  background-size: 210% 210%;
  animation: gradient-animation 12s ease-in infinite;
  padding-bottom: 60px;
}
@keyframes gradient-animation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
/* STEPS
========================*/
.step-container {
  position: relative;
  min-height: 100px;
  display: block;
  margin-bottom: 60px;
  margin-top: -25px;
}
.step-wizard {
  display: inline-block;
  position: relative;
  width: 100%;
}
.step-wizard .progress {
  position: absolute;
  top: 38px;
  height: 6px;
  left: 0;
  width: 100%;
  background-color: #C3C3C3;
}
.step-wizard .progressbar {
  position: absolute;
  background-color: #00BEBB;
  height: 6px;
  border: 0 none;
  width: 50%;
  transition: width 0.6s ease;
}
.step-wizard ul {
  position: absolute;
  width: 100%;
  list-style-type: none;
  padding: 0;
}
.step-wizard li {
  display: inline-block;
  text-align: center;
  width: 48%;
}
.step-wizard li .step {
  position: absolute;
  display: inline-block;
  font-size: 1.2rem;
  line-height: 32px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 6px #00BEBB solid;
  background-color: #fff;
  transition: background-color 0.6s ease, border-color 0.6s ease;
}
.step-wizard li .title {
  position: absolute;
  font-weight: bolder;
  font-size: 14px;
  width: 100%;
  left: 25px;
  padding-top: 54px;
  color: #A7A7A7;
  transition: color 0.6s ease;
}
.step-wizard .active .step {
  color: #fff;
  background-color: #00BEBB;
  border-color: #00BEBB;
}
.step-wizard .active .title {
  color: #049997;
  font-size: 15px;
  font-weight: bold;
}
.step-wizard li > a {
  display: block;
  width: 100%;
  color: #666;
  position: relative;
  text-align: center;
}
.step-wizard a:hover .step {
  color: #333;
  background-color: #CEFCFC;
}
.step-wizard a:hover .title {
  color: #000000;
}
@media only screen and (max-width: 1200px) {
  .step-wizard li {
    width: 45%;
  }
}
@media only screen and (max-width: 578px) {
  .step-wizard li {
    width: 44%;
  }
}
/* REG TABLE
========================*/
.reg-table th:nth-child(1), .reg-table td:nth-child(1) {
  width: 20%;
}
.reg-table th:nth-child(2), .reg-table td:nth-child(2) {
  width: 42%;
}
.reg-table th:nth-child(3), .reg-table td:nth-child(3) {
  width: 16%;
}
.reg-table th:nth-child(4), .reg-table td:nth-child(4) {
  width: 16%;
}
.reg-table th:nth-child(5), .reg-table td:nth-child(5) {
  width: 6%;
  text-align: center;
}
/* FOOTER
========================*/
.footer {
  background-color: #FAFAFA;
  border-top: 1px #ccc dashed;
  font-size: 0.875rem;
  padding: 60px 0 40px 0;
}