:root {
  --font-family: "Poppins", sans-serif;
  --color-primary: #dabf40;
  --color-primary-hover: #e2c234;
  --color-secondary: #1976D2;
  --color-secondary-hover: #0977e5;
  --color-action: #e5474c;
  --color-action-hover: #e5363b;
  --color-info: #7e7d7d;
  --color-background: #F2F2FF;
  --color-border: #d1d1d1;
}
html {
  font-family: var(--font-family);
  font-size: 16px;
}

table {
  overflow: hidden;
  border-collapse: separate !important;
  border-spacing: 0;
  width: 100%;
}

td,
th {
  border: 1px solid var(--color-border);
  padding: 20px;
}

tr:first-child th:first-child {
  border-top-left-radius: var(--radius-2xl);
}

tr:first-child th:last-child {
  border-top-right-radius: var(--radius-2xl);
}

tr:last-child td:first-child {
  border-bottom-left-radius: var(--radius-2xl);
}

tr:last-child td:last-child {
  border-bottom-right-radius: var(--radius-2xl);
}

div,
section {
  scroll-margin-top: 40px;
}

dt {
  padding-bottom: 0.5rem;
}

dd {
  padding-inline: 1rem;
  padding-bottom: 0.5rem;
}

iframe {
  width: 100%;
  height: 100%;
}

[v-cloak] {
  display: none;
}


h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
}

h1 {
  font-size: 2.5rem;
  line-height: 1.2;
}

h2 {
  font-size: 2rem;
  line-height: 1.25;
}

h3 {
  font-size: 1.625rem;
  line-height: 1.3;
}

h4 {
  font-size: 1.375rem;
  line-height: 1.35;
}

h5 {
  font-size: 1.125rem;
  line-height: 1.4;
}

h6 {
  font-size: 1rem;
  line-height: 1.5;
}

@media (max-width: 767px) {
  h1 {
    font-size: 2rem;
    line-height: 1.2;
  }

  h2 {
    font-size: 1.75rem;
    line-height: 1.25;
  }

  h3 {
    font-size: 1.375rem;
    line-height: 1.3;
  }

  h4 {
    font-size: 1.125rem;
    line-height: 1.35;
  }

  h5 {
    font-size: 1rem;
    line-height: 1.4;
  }

  h6 {
    font-size: 0.875rem;
    line-height: 1.5;
  }
}

.info a {
  color: var(--color-secondary);
  text-decoration: none;
}

.info ul {
  list-style: disc;
  padding-left: 20px;
}

ol {
  list-style: decimal;
  padding-left: 20px;
}

a:hover {
  color: var(--color-primary);
}

.btn-primary {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--color-primary);
  background-color: var(--color-primary);
  color: var(--color-black) !important;
  font-weight: 500;
  border-radius: var(--radius-xl);
  padding: 10px 20px;
}

.btn-primary:hover {
  cursor: pointer;
  background-color: var(--color-primary-hover);
  border: 1px solid var(--color-primary-hover);
  color: var(--color-black) !important;
}

.btn-secondary {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--color-secondary);
  color: var(--color-white) !important;
  border-radius: var(--radius-xl);
  padding: 10px 20px;
}

.btn-secondary:hover {
  cursor: pointer;
  background-color: var(--color-secondary-hover);
}

.btn-action {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--color-action);
  color: var(--color-white) !important;
  border-radius: var(--radius-xl);
  padding: 8px 20px;
}

.btn-action:hover {
  cursor: pointer;
  background-color: var(--color-action-hover);
}

.swiper-button-next,
.swiper-button-prev {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    top: 50%;
    margin-top: -20px;
}

.swiper-button-next svg,
.swiper-button-prev svg {
    height: 16px;
}

.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background-color: #ccc;
    opacity: 0.8;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background-color: var(--color-primary);
    width: 30px;
    height: 8px;
    border-radius: 9999px;
    opacity: 1;
}


/* Vanilla Calendar theme customization */
.vanilla-calendar {
    font-family: inherit;
    z-index: 100;
  }
  
  .vanilla-calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
  }
  
  .vanilla-calendar-header__content {
    font-weight: 600;
    color: var(--color-primary);
  }
  
  .vanilla-calendar-arrow {
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.375rem;
    transition: background-color 0.2s;
  }
  
  .vanilla-calendar-arrow:hover {
    background-color: #f3f4f6;
  }
  
  .vanilla-calendar-week {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    margin-bottom: 0.5rem;
  }
  
  .vanilla-calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
  }
  
  .vanilla-calendar-day__btn_selected,
  .vanilla-calendar-day__btn_today,
  .vanilla-calendar-months__month_selected,
  .vanilla-calendar-years__year_selected {
    background-color: var(--color-secondary) !important;
    color: white !important;
    font-weight: 600;
  }
  
  .vanilla-calendar-day__btn_selected:hover,
  .vanilla-calendar-months__month_selected:hover,
  .vanilla-calendar-years__year_selected:hover,
  .vanilla-calendar-months__month:hover:not(
      .vanilla-calendar-months__month_disabled
    ),
  .vanilla-calendar-years__year:hover:not(.vanilla-calendar-years__year_disabled),
  .vanilla-calendar-day__btn:hover:not(.vanilla-calendar-day__btn_disabled) {
    background-color: var(--color-action) !important;
    color: white !important;
    font-weight: 600;
  }
  
  .vanilla-calendar-day__btn_disabled {
    color: #d1d5db;
    cursor: not-allowed;
  }
  
  .vanilla-calendar-day__btn_prev,
  .vanilla-calendar-day__btn_next {
    color: #9ca3af;
  }

  
.loader {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-width: 100%;
  height: 100%;
  min-height: 100%;
  top: 0;
  left: 0;
  z-index: 10000 !important;
  background-color: rgba(255, 255, 255, 0.75);
}

.main-loader {
  width: 45px;
  aspect-ratio: 1;
  --c:no-repeat linear-gradient(var(--color-action) 0 0);
  background: var(--c), var(--c), var(--c), var(--c), var(--c), var(--c);
  animation: 
    l14-1 .5s infinite alternate,
    l14-2  2s infinite;
}
@keyframes l14-1 {
 0%,10% {background-size:20% 100%}
 100%   {background-size:20% 20%}
}
@keyframes l14-2 {
 0%,49.9% {background-position: 0 0  ,0 100%,50% 50%,50% 50% ,100% 0  ,100% 100%}
 50%,100% {background-position: 0 50%,0  50%,50% 0  ,50% 100%,100% 50%,100% 50% }
}


#cc-main {
  --cc-btn-primary-bg: var(--color-primary);
  --cc-btn-primary-hover-bg: var(--color-primary-hover);
  --cc-btn-primary-border-color: var(--color-primary);
  --cc-btn-primary-hover-border-color: var(--color-primary-hover);
  --cc-btn-primary-color: #000;
  --cc-btn-primary-hover-color: #000;
}

#cc-main .cm__btn:last-of-type,
#cc-main .pm__btn:last-of-type {
  background: var(--cc-btn-secondary-bg);
  border-color: var(--cc-btn-secondary-border-color);
  color: var(--cc-btn-secondary-color);
}

#cc-main .cm__btn:last-of-type:hover,
#cc-main .pm__btn:last-of-type:hover {
  background: var(--cc-btn-secondary-hover-bg);
  border-color: var(--cc-btn-secondary-hover-border-color);
  color: var(--cc-btn-secondary-hover-color);
}

#cc-main .cm__links .cm__link-group {
   font-size: .7rem;
}
main {background: #f8fafc;}