/* /// filter btn  */
.filter_btn {
  border: 1px solid rgba(0, 0, 0, 0.23);
  padding: 5px 10px;
  border-radius: 10px;
  color: #000;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.filter_btn i {
  transition: transform 0.3s ease;
}

.filter_btn.active {
  background-color: rgba(0, 0, 0, 0.1);
  color: #000;
  border-color: rgba(0, 0, 0, 0.1);
}

.filter_btn:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

.clear-filter {
  display: none;
}

.clear-filter.active {
  display: block;
}

.course_ai_integrated {
  border-radius: 5px;
  padding: 10px 5px;
}

/* ======= FILTER GRID SECTION ======  */
.filter-section__contents--option_form {
  position: relative;
  width: 100%;
}

.filter-section__contents--option_form input {
  width: 100%;
}

.search-icon,
.clear-icon {
  position: absolute;
  top: 50%;
  right: 0.75rem;
  transform: translateY(-50%);
  color: #6c757d;
  display: block;
}

.search-icon {
  pointer-events: none;
}

.clear-icon {
  display: none;
  cursor: pointer;
}

input.has-value~.search-icon {
  display: none;
}

input.has-value~.clear-icon {
  display: block;
}

/* Hide default search cancel button */
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  -webkit-appearance: none;
}

.topic-search--wrapper.active {
  display: block;
}

.topic-search--wrapper {
  display: none;
}

.categories_search_toggle_search-icon {
  display: block;
}

.categories_search_toggle_clear-icon {
  display: none;
}

.categories_search_toggle_search-icon.hidden {
  display: none;
}

.categories_search_toggle_clear-icon.active {
  display: block;
}

.search-input::placeholder {
  color: rgb(181, 181, 181);
}

/* ====category lists ====  */
.filter-section_cat-lists {
  max-height: 200px;
  overflow-y: scroll;
}

/* Calendar Styles */
.custom-calendar {
  background: #fff;
  border-radius: 12px;
  padding: 16px;
  border: 1px solid #eee;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.calendar-header h6 {
  font-weight: 700;
  color: #333;
  font-size: 1.1rem;
}

.calendar-header button {
  background: #f8f9fa;
  border: 1px solid #eee;
  border-radius: 6px;
  padding: 4px 10px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  font-weight: bold;
}

.calendar-header button:hover {
  background: #3d5ee1;
  /* Main blue color */
  color: #fff;
  border-color: #3d5ee1;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 5px;
  text-align: center;
  margin-top: 15px;
}

.calendar-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 5px;
  cursor: pointer;
  padding: 2px;
  transition: all 0.2s ease;
  color: #444;
}

/* Today highlight */
.calendar-day.today {
  background-color: #3d5ee1;
  /* Mystic Academy Main Blue */
  color: #fff !important;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(61, 94, 225, 0.3);
}

/* Selected date highlight */
.calendar-day.selected-date {
  background-color: #eef2ff;
  color: #3d5ee1 !important;
  font-weight: 700;
  box-shadow: inset 0 0 0 2px #3d5ee1;
}

/* Past days style */
.calendar-day.past-day {
  background-color: #f2f2f2;
  color: #aaa;
  cursor: default;
}

.calendar-day:not(.past-day):not(.today):hover {
  background-color: #eef2ff;
  color: #3d5ee1;
}

/* Column Headers (Days of week) - Optional enhancement */
.calendar-labels {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  text-align: center;
  margin-bottom: 5px;
}

.calendar-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: #999;
  text-transform: uppercase;
}

/* Hidden elements */
#prevMonth[style*="display: none"] {
  visibility: hidden;
  /* Keep spacing if needed, but display: none is usually fine */
}

/* ======= course duration =====  */
.form-check input[type="radio"] {
  width: 15px;
  height: 15px;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 2px !important;
  background-color: #fff;
  outline: 2px solid #000;
  outline-offset: 1px;
}

/* Checked state */
.form-check input[type="radio"]:checked {
  background-color: #3d5ee1;
  outline: 2px solid #000;
  outline-offset: 1px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='white' d='M13.3 4.3L6 11.6 2.7 8.3l1.4-1.4L6 8.8l5.9-5.9z'/%3E%3C/svg%3E");
  background-size: 14px;
  background-repeat: no-repeat;
  background-position: center;
}

/* Focus ring */
.form-check input[type="radio"]:focus {
  outline: 2px solid #000;
  outline-offset: 1px;
}

/* ======= filter button toggle =====  */
#sidebar.active {
  max-width: 25%;
  max-height: none;
  opacity: 1;
  visibility: visible;
  padding-left: 12px;
  padding-right: 12px;
}

#sidebar {
  width: 25%;
  max-width: 0;
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding-left: 0;
  padding-right: 0;
  flex-shrink: 0;
  position: relative;
  /* Added for close button positioning */
}

.sidebar-close-btn {
  display: none;
}

#content {
  height: 100%;
  width: 100%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}

#sidebar.active+#content {
  width: 75%;
}

@media (max-width: 991px) {
  #sidebar.active+#content {
    width: 60% !important;
  }

  #sidebar.active {
    max-width: 40%;
  }

  #sidebar {
    width: 40%;
  }
}

.mainContainer_course {
  display: flex;
  flex-wrap: nowrap;
  overflow: hidden;
  min-height: 80vh;
}

/* Handle column transitions inside content */
.content_row>div {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.content_row {
  row-gap: 1.5rem;
}

.overlay_mobile {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1040;
  cursor: pointer;
}

.overlay_mobile.active {
  display: block;
}

@media (max-width: 576px) {
  .mainContainer_course {
    flex-wrap: wrap;
  }

  .sidebar-close-btn {
    display: flex !important;
    position: absolute;
    top: 16px;
    left: 20px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #333;
    z-index: 1060;
    box-shadow: -2px 2px 8px rgba(0, 0, 0, 0.15);
  }

  #sidebar {
    position: fixed;
    top: 0;
    right: -100% !important;
    bottom: 0;
    width: 100% !important;
    height: 100vh !important;
    background: #fff;
    z-index: 1050;
    max-width: 70% !important;
    max-height: 100vh !important;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 60px 20px 20px !important;
    overflow-y: auto;
    opacity: 1 !important;
    visibility: visible !important;
    margin: 0 !important;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  }

  #sidebar.active {
    right: 0 !important;
  }

  #sidebar.active+#content {
    width: 100% !important;
  }

  .side-overlay.active {
    display: block;
    z-index: 1045;
    background-color: rgba(0, 0, 0, 0.5);
  }
}

/* ==== calendar highlights ==== */
.calendar-day.has-event {
  position: relative;
  font-weight: 700;
  color: #3d5ee1;
}

.calendar-day.has-event::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background-color: #ff4d4d;
  border-radius: 50%;
  box-shadow: 0 0 2px rgba(255, 77, 77, 0.5);
}

.calendar-day.today.has-event::after {
  background-color: white;
}

/* ==== filter count badge ==== */
.filter-count-badge {
  background-color: #3d5ee1;
  color: white;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 10px;
  margin-left: 4px;
  display: none;
  vertical-align: middle;
  line-height: normal;
}

.filter-count-badge.active {
  display: inline-block;
}

@media (max-width: 768px) {
  .couresContainer {
    max-width: 700px !important;
  }

  .form-check {
    padding-left: 10px;
  }
}

@media (max-width: 700px) {
  .custom-calendar {
    padding: 1px;
  }

  .calendar-grid {
    gap: 1.5px;
  }
}

@media (max-width: 577px) {
  .mobile-12 {
    width: 100% !important;
    -webkit-box-flex: 0 !important;
    -webkit-flex: 0 0 auto !important;
    -ms-flex: 0 0 auto !important;
    flex: 0 0 auto !important;
  }
}

/* ======= Pagination Styles ======= */
.course_title {
  height: 3em;
  /* exactly 1 line height */
  line-height: 1.5;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.page-btn--active {
  background-color: #3d5ee1 !important;
  color: #fff !important;
  border-color: #3d5ee1 !important;
  box-shadow: 0 4px 12px rgba(61, 94, 225, 0.35);
  font-weight: 700;
  transform: scale(1.08);
  pointer-events: none;
}

.page-btn--default {
  background-color: #fff;
  color: #333;
  border: 1px solid #dee2e6;
  transition: all 0.2s ease;
}

.page-btn--default:hover {
  background-color: #eef2ff;
  color: #3d5ee1;
  border-color: #3d5ee1;
}

.page-btn--disabled {
  background-color: #f8f9fa;
  color: #adb5bd;
  border: 1px solid #dee2e6;
  cursor: not-allowed;
  opacity: 0.55;
}

.page-btn--ellipsis {
  background: transparent;
  border: none;
  color: #6c757d;
  cursor: default;
  font-weight: 700;
  pointer-events: none;
}

.pagination--disabled {
  pointer-events: none;
}

.course_image_ratio {
  aspect-ratio: 16/10;
}

.course-img-fallback {
  width: 100%;
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, #5264ad 0%, #25459d 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  text-transform: capitalize;
  border-radius: 12px;
  box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.1);
}

.course-img-fallback img {
  max-width: 120px;
  height: auto;
  object-fit: contain;
}

/* No Results State Styles */
.no-results-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  background: #fff;
  border-radius: 12px;
  border: 1px dashed #e5e7eb;
}

.no-results-img {
  max-width: 250px;
  height: auto;
  opacity: 0.8;
}

.no-results-state__title {
  color: #1f2937;
  font-weight: 700;
}

.no-results-state__desc {
  font-size: 15px;
  line-height: 1.6;
}

#resetFiltersBtn {
  background-color: #3d5ee1;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

#resetFiltersBtn:hover {
  background-color: #1e3a8a;
  box-shadow: 0 4px 15px rgba(61, 94, 225, 0.4);
  transform: translateY(-2px);
}

/* modal content   */
.modal-dialog {
  width: 85%;
  max-width: 90vw;
}

@media (min-width: 768px) {
  .modal-dialog {
    width: 70%;
    max-width: 90vw;
  }
}

@media (min-width: 992px) {
  .modal-dialog {
    width: 60%;
    max-width: 90vw;
  }
}

@media (min-width: 1200px) {
  .modal-dialog {
    width: 50%;
    max-width: 90vw;
  }
}

/* Upcoming Classes Modal Styles */
.modal-content {
  border-radius: 20px !important;
  max-height: 90vh;
  /* Set a reasonable maximum height */
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.modal-body {
  overflow-y: auto;
  /* Enable internal scrolling */
  flex: 1 1 auto;
}

.date-item {
  cursor: pointer;
  background: #fff;
  /* border: 1.5px solid #000000 !important; */
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.date-item .form-check-input:checked+.form-check-label .fw-bold {
  color: #3d5ee1;
}

.date-item .form-check-input {
  width: 20px !important;
  height: 20px !important;
  border-color: #cbd5e1 !important;
  border-radius: 50% !important;
}

.date-item .form-check-input:checked {
  background-color: #3d5ee1 !important;
  border-color: #3d5ee1 !important;
}

.time-card {
  border-radius: 5px;
  transition: all 0.2s ease;
  cursor: pointer;
}

.time-card:hover {
  background-color: #eef2ff;
  border-color: #3d5ee1 !important;
}

.time-card input[type="radio"] {
  cursor: pointer;
}

.select-date-btn {
  box-shadow: 0 4px 15px rgba(61, 94, 225, 0.3);
  transition: all 0.3s ease;
}

.select-date-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(61, 94, 225, 0.4);
  background-color: #2e4bc4 !important;
}

.modal.fade .modal-dialog {
  transition: translate 0.2s linear;
}

.modal.show .modal-dialog {
  translate: 0 0 !important;
}

.modal.show {
  display: flex !important;
}

.modal-header_flex-row {
  flex-direction: column;
}

@media (max-width: 576px) {
  .modal-header div {
    gap: 20px;
  }

  .modal-header div:nth-child(1) h5 {
    margin-bottom: 5px !important;
  }

  .date-item_time {
    grid-template-columns: 1fr !important;
  }

  /* .modal-header div:nth-child(2) img{
        width: 50px !important;
        

    }  */
}

/* ========== flex order ======  */
.flex-order-1 {
  order: 1;
}

.flex-order-2 {
  order: 2;
}

@media (max-width: 576px) {
  .flex-sm-order-2 {
    order: 2;
  }

  .flex-sm-order-1 {
    order: 1;
  }
}

/* ======= Quick Inquiry Drawer Styles ======= */
.quick-inquiry-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 400px;
  max-width: 100%;
  height: 100vh;
  background: #fff;
  z-index: 2000;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.quick-inquiry-drawer.active {
  transform: translateX(0);
}

.quick-inquiry-header {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 10;
}

.quick-inquiry-body {
  flex: 1;
  overflow-y: auto;
  scrollbar-width: thin;
}

.close-inquiry-btn {
  background: #f8f9fa;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: #666;
}

.inquiry-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(2px);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.inquiry-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Country Code Dropdown */
.country-code-group {
  display: flex;
  align-items: stretch;
  border: 1.5px solid #eee;
  border-radius: 8px;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
  position: relative;
  /* needed for dropdown width reference */
}

.country-code-group .dropdown {
  position: static !important;
}

.country-code-group.focused {
  border-color: #3d5ee1;
  box-shadow: 0 0 0 4px rgba(61, 94, 225, 0.1);
}

.country-code-group .dropdown-menu {
  position: absolute !important;
  width: 100% !important;
  left: 0 !important;
  transform: none !important;
  top: 100% !important;
}

.country-dropdown-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  border-radius: 8px 0 0 8px;
  border-right: 0;
  font-size: 14px;
  padding: 0 12px;
  border: none;
  background: #e9ecef;
}

.country-dropdown-btn:focus,
.country-dropdown-btn:active {
  outline: none;
  box-shadow: none;
  border: none;
}

.country-list-menu {
  width: 100% !important;
  left: 0 !important;
  right: 0 !important;
  max-height: 220px;
  overflow-y: auto;
  font-size: 14px;
  /* w-100 class handles full width via Bootstrap */
}

.country-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
}

#selectedFlag {
  font-size: 18px;
}

.country-item:hover {
  background: var(--color-main-50, #f0f4ff);
}

.no-border_form {
  border: none !important;
  box-shadow: none !important;
  background: transparent;
}

.no-border_form:focus {
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
}

/* Form Controls Polish */
.quick-inquiry-body .form-control {
  border: 1.5px solid #eee;
  padding: 12px 16px;
  transition: all 0.3s ease;
}

.quick-inquiry-body .form-control:focus {
  border-color: #3d5ee1;
  box-shadow: 0 0 0 4px rgba(61, 94, 225, 0.1);
}

.quick-inquiry-body .br-8 {
  border-radius: 8px;
}

#submitInquiry:hover {
  background-color: #2e4bc4;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(61, 94, 225, 0.3);
}

#submitInquiry:active {
  transform: translateY(0);
}

@media (max-width: 576px) {
  .quick-inquiry-drawer {
    width: 100%;
  }
}

/* ========== Schedule Selection Drawer Styles ========== */
.schedule-selection-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  bottom: 0;
  width: 100%;
  max-width: 30%;
  height: 100vh;
  background: #fff;
  box-shadow: -8px 0 24px rgba(0, 0, 0, 0.15);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.schedule-selection-drawer.active {
  right: 0;
}

.schedule-selection-header {
  background: #f8f9fa;
  border-bottom: 1px solid #e5e7eb;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
  gap: 16px;
}

.go-back-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.go-back-btn i {
  font-size: 20px;
  transform: scaleX(-1);
}

.schedule-selection-body {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.schedule-selection-body h4 {
  margin: 0;
  color: #1f2937;
  font-weight: 700;
  text-align: center;
  font-size: 20px;
}

.schedule-list-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.schedule-item-date {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 5px;
  color: #1f2937;
  font-weight: 600;
}

.schedule-time-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.schedule-time-card {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  background: #f8f9fa;
  border: 1.5px solid #e5e7eb;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.schedule-time-card input[type="checkbox"] {
  width: 16px;
  height: 16px;
  cursor: pointer;
  accent-color: #3d5ee1;
}

.schedule-time-card input[type="checkbox"]:checked {
  accent-color: #3d5ee1;
}

.schedule-time-label {
  font-size: 14px;
  color: #374151;
  font-weight: 500;
  margin-left: 4px;
}

.schedule-selection-footer {
  border-top: 1px solid #e5e7eb;
  padding: 20px 24px;
  background: #f8f9fa;
  flex-shrink: 0;
}

#continueScheduleBtn {
  background-color: #3d5ee1;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
}

#continueScheduleBtn:hover {
  background-color: #2e4bc4;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(61, 94, 225, 0.3);
}

#continueScheduleBtn:active {
  transform: translateY(0);
}

#continueScheduleBtn:disabled {
  background-color: #d0d5dd;
  cursor: not-allowed;
  transform: none;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .schedule-selection-drawer {
    max-width: 40%;
  }
}

@media (max-width: 768px) {
  .schedule-selection-drawer {
    max-width: 50%;
  }

  .schedule-time-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .schedule-selection-drawer {
    max-width: 100%;
  }

  .schedule-selection-header {
    padding: 16px 20px;
  }

  .schedule-selection-body {
    padding: 20px;
  }

  .schedule-selection-footer {
    padding: 16px 20px;
  }
}

/* ======= new batch =====  */
.card-days {
  color: #fff;
  clip-path: polygon(100% 0, 90% 54%, 100% 100%, 0 100%, 0 0);
  background-color: #ff6a40;
  padding: 5px;
}

/* ===== index page courses list =====  */
@media (min-width:576px) and (max-width:768px) {
  .course_banner_dur_bg {
    margin: 10px 0 0 10px !important;
    padding: 7px 10px !important;

  }

  .course_banner_dur_bg span {
    font-size: 16px !important
  }

  .course_banner_ai_bg {
    margin: 10px 10px 0 0 !important;

  }

  .course-item__content h4 {
    margin-bottom: 15px !important;
  }

  .course-item_content_type {
    margin-bottom: 15px !important;
    gap: 0 !important
  }

  .course-item_price {
    margin-top: 25px !important;
    padding-top: 0 !important;
    flex-direction: column !important;
    align-items: flex-start !important;

  }
  .course-item__content{
    padding:20px !important;
  }

  .course-item {
    height: auto !important;
  }

  .course-item_price h4 {
    margin-bottom: 0 !important;
  }/* Course Loader */
.course-loader {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 400px;
  background: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 50;
  border-radius: 12px;
  backdrop-filter: blur(2px);
}

.animation-rotation {
  display: inline-block;
  animation: rotation 1s infinite linear;
}

@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
}