.sixtyfour-icon {
  font-family: "Sixtyfour", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings:
    "BLED" 0,
    "SCAN" 0;
}

.scrollToTopBtn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
  padding: 10px;
  border: none;
}

.content {
  min-height:820px;
  max-height:820px;
  overflow: auto;
  scrollbar-width: none;
}
.content::-webkit-scrollbar {
  display: none;
}

.hand-click {
  cursor: pointer;
}

.custom-link {
  text-decoration: none;
}
.custom-tooltip {
  --bs-tooltip-bg: #f0fff0;
  --bs-tooltip-color: black;
}

.no-style-button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.free-software-row {
  border-style:inset;
  padding:10px;
  transition: all 0.25s ease-in-out;
}
.free-software-row:hover {
  background-color: #e4f0fb;
  border-style: outset;
  border-color: #228bf5;
  cursor: pointer;
}

.business-course-card {
  border-left: 5px solid #228bf5;
  background: linear-gradient(145deg, #ffffff 0%, #d3e6f8 100%);
}

.demand-course-row {
  border-style:inset;
  padding:10px;
  transition: all 0.25s ease-in-out;
}
.demand-course-row:hover {
  background-color: #e4f0fb;
  border-style: outset;
  border-color: #228bf5;
  cursor: pointer;
}

.flash-anim {
  animation: flash 3s infinite;
}
@keyframes flash {
  0% {opacity: 1;}
  50% {opacity: 0;}
  100% {opacity: 1;}
}