.floating-cart {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1000;
}
@media (max-width: 767.9px) {
  .floating-cart {
    bottom: 16px;
    right: 16px;
  }
}

.floating-cart--minimized {
  animation: slideInFromBottom 200ms cubic-bezier(0, 0, 0, 1);
}

.floating-cart--minimized .floating-cart__toggle {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 999px;
  border: 4px solid #04242D;
  background: #04242D;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition-property: background-color, transform;
  transition-duration: 200ms;
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
  color: #FFFFFF;
}

.floating-cart--minimized .floating-cart__toggle:hover {
  background: #2c454d;
  border-color: #2c454d;
  transform: scale(1.05);
}

.floating-cart--minimized .floating-cart__toggle .material-icon {
  color: #FFFFFF;
}

.floating-cart--minimized .floating-cart__badge {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: #1C9CA0;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.floating-cart__badge-number {
  font-size: 12px;
  line-height: 16px;
  font-weight: 600;
}

.floating-cart__badge-number--count-up {
  animation: countUp 200ms cubic-bezier(0, 0, 0, 1);
}

.floating-cart__badge-number--count-down {
  animation: countDown 200ms cubic-bezier(0, 0, 0, 1);
}

.floating-cart--expanded {
  width: 411px;
  background: #FFFFFF;
  border-top: 4px solid #1C9CA0;
  border-radius: 8px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  height: calc(100vh - 48px);
  overflow: hidden;
  animation: slideUpAndFadeIn 400ms cubic-bezier(0, 0, 0, 1);
  transform-origin: bottom right;
}
@media (max-width: 767.9px) {
  .floating-cart--expanded {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-height: 100vh;
    border-radius: 0;
    animation: slideUpFromBottom 200ms cubic-bezier(0, 0, 0, 1);
  }
}

.floating-cart--closing {
  animation: slideOutToRight 400ms cubic-bezier(0.3, 0, 1, 1);
}
@media (max-width: 767.9px) {
  .floating-cart--closing {
    animation: slideDownToBottom 200ms cubic-bezier(0.3, 0, 1, 1);
  }
}

.floating-cart__header {
  display: flex;
  gap: 24px;
  padding: 24px 24px 0;
  flex-shrink: 0;
}

.floating-cart__header-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.floating-cart__title {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  line-height: 24px;
  font-weight: 700;
  color: #000000;
  letter-spacing: -0.02em;
}
@media (min-width: 768px) {
  .floating-cart__title {
    font-family: "Poppins", sans-serif;
    font-size: 28px;
    line-height: 36px;
    font-weight: 700;
    color: #000000;
    letter-spacing: -0.02em;
  }
}

.floating-cart__subtitle {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  color: #000000;
  letter-spacing: -0.02em;
  color: #374F5C;
}

.floating-cart__close {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  color: #000000;
}

.floating-cart__close:hover {
  opacity: 0.7;
}

.floating-cart__courses {
  overflow-y: auto;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-shrink: 1;
  flex-grow: 1;
  min-height: 0;
}
@media (max-width: 767.9px) {
  .floating-cart__courses {
    flex-shrink: 1;
    flex-grow: 1;
  }
}

.floating-cart__course {
  display: flex;
  gap: 16px;
  align-items: center;
  animation: fadeInSlideRight 0.3s ease-out backwards;
}

.floating-cart__course:nth-child(1) {
  animation-delay: 0.1s;
}

.floating-cart__course:nth-child(2) {
  animation-delay: 0.15s;
}

.floating-cart__course:nth-child(3) {
  animation-delay: 0.2s;
}

.floating-cart__course:nth-child(4) {
  animation-delay: 0.25s;
}

.floating-cart__course:nth-child(n+5) {
  animation-delay: 0.3s;
}

.floating-cart__course-image {
  width: 84px;
  height: 64px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
}

.floating-cart__course-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.floating-cart__course-title {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  color: #000000;
  letter-spacing: -0.02em;
  color: #000000;
}

.floating-cart__course-plan {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  line-height: 16px;
  font-weight: 400;
  color: #000000;
  letter-spacing: -0.02em;
  color: #374F5C;
}

.floating-cart__course-remove {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  color: #374F5C;
}

.floating-cart__course-remove:hover {
  color: #000000;
}

.floating-cart__savings-message {
  padding: 24px 24px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-shrink: 0;
}

.floating-cart__savings-title {
  margin: 0;
  color: #000000;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  color: #000000;
  letter-spacing: -0.02em;
}

.floating-cart__savings-subtitle {
  margin: 0;
  color: #374F5C;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #374F5C;
  letter-spacing: -0.02em;
}

.floating-cart__footer {
  padding: 24px;
  background: #FFFFFF;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}

.floating-cart__savings {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  color: #177D21;
}

.floating-cart__savings-text {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #374F5C;
  letter-spacing: -0.02em;
  color: #177D21;
}

.floating-cart__savings-text strong {
  font-weight: 700;
}

@keyframes slideUpAndFadeIn {
  from {
    opacity: 0;
    transform: translateX(32px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideInFromBottom {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideUpFromBottom {
  from {
    opacity: 0;
    transform: translateY(100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInSlideRight {
  from {
    opacity: 0;
    transform: translateX(-12px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes countUp {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes countDown {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slideOutToRight {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(32px);
  }
}
@keyframes slideDownToBottom {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(100%);
  }
}
.floating-cart--empty {
  justify-content: center;
  padding: 24px;
}

.floating-cart--empty .floating-cart__close {
  position: absolute;
  top: 24px;
  right: 24px;
}

.floating-cart__empty-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 32px 24px;
  text-align: center;
  flex: 1;
  justify-content: center;
}

.floating-cart__empty-image {
  width: 128px;
  height: 128px;
  flex-shrink: 0;
}

.floating-cart__empty-title {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  line-height: 24px;
  font-weight: 700;
  color: #000000;
  letter-spacing: -0.02em;
}
@media (min-width: 768px) {
  .floating-cart__empty-title {
    font-family: "Poppins", sans-serif;
    font-size: 28px;
    line-height: 36px;
    font-weight: 700;
    color: #000000;
    letter-spacing: -0.02em;
  }
}
.floating-cart__empty-title {
  color: #000000;
  max-width: 320px;
}

.floating-cart__empty-text {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #374F5C;
  letter-spacing: -0.02em;
  color: #374F5C;
  max-width: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  column-gap: 4px;
}

.floating-cart__empty-icon {
  color: #007BBA;
  display: inline-flex;
  vertical-align: middle;
  flex-shrink: 0;
}

.floating-cart--empty .floating-cart__footer {
  margin-top: auto;
}

.floating-cart__savings--empty .floating-cart__savings-text {
  font-weight: normal;
}

.course-page-cart-container {
  display: flex;
  justify-content: flex-end;
  padding: 16px 24px;
}
@media (max-width: 767.9px) {
  .course-page-cart-container {
    padding: 12px 16px;
  }
}

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