body {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
  background-color: #f4f4f4;
}

.sidebar {
  background-color: #123484;
  height: 100vh;
  padding: 40px 20px;
  position: sticky;
  top: 0;
  z-index: 9999;
  overflow: auto;
}

.sidebar h2 {
  color: #fff;
  margin-top: 20px;
  font-weight: bold;
}

.sidebar img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
}

.content {
  padding: 40px;
}

.card {
  border-radius: 15px;
  padding: 20px;
  border: none;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.btn {
  border-radius: 50px;
}

.tag {
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 20px;
  background-color: #f4f4f4;
  display: inline-block;
}

.price-btn {
  border: 1px solid #141414;
  background: transparent;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 30px;
}

.nav-pills .nav-link.active {
  background-color: #123484;
  color: #fff;
  border-radius: 30px;
}

.nav-pills .nav-link {
  /* background-color: #123484; */
  border: 2px solid #123484;
  color: #123484;
  border-radius: 30px;
}

.nav-pills .nav-link {
  border-radius: 30px;
  font-weight: bold;
  margin-right: 10px;
}

@media (max-width: 768px) {
  .sidebar {
    height: auto;
    padding: 10px 10px;
  }

  .sidebar img {
    width: 100px;
    height: 100px;
  }
}

@media (max-width: 640px) {
  .content {
    padding: 10px;
    padding-top: 40px;
  }
}

.webinar-card {
  border-radius: 15px;
  padding: 0px;
  border: none;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  cursor: pointer;
}

.webinar-card .tag-upcoming {
  font-size: 12px;
  width: 100px;
  padding: 5px 10px;
  border-radius: 20px;
  background-color: #d1f6de;
  color: #008060;
  font-weight: bold;
  display: inline-block;
}

.webinar-card .date-box {
  border: 1px solid #dededf;
  background: #f6f6f6;
  padding: 5px;
  border-radius: 10px;
  display: inline-block;
  text-align: center;
  width: 70px;
}

.webinar-card .date-box .day {
  font-size: 24px;
  font-weight: bold;
}

.webinar-card .date-box .month {
  font-size: 12px;
}

.webinar-card .info {
  margin-left: 15px;
}

.webinar-card .time-info {
  font-size: 14px;
  color: #000;
}

.webinar-card .price-btn {
  border: 1px solid #141414 !important;
  background: transparent;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 30px;
  border: none;
}

.webinar-card .price-btn i {
  margin-left: 5px;
}

.webinar-footer {
  border-radius: 18px;
  background: #efeff0;
  padding: 14px 16px;
  width: 100%;
  transition: all 0.25s linear;
  position: relative;
  overflow: hidden;
}

.webinar-card {
  transition: all 0.25s linear;
}

.webinar-card:hover {
  box-shadow: 12px 12px 32px 0 rgba(0, 0, 0, 0.1);
}

.webinar-footer {
  transition: background-color 0.25s linear;
}

.webinar-card:hover .webinar-footer {
  background-color: #e2e2e4;
  -webkit-mask: linear-gradient(-60deg, #000 30%, #0005, #000 70%) right/350%
    100%;
  background-repeat: no-repeat;
  animation: shimmer 0.8s linear;
}

.price-btn {
  transition: background-color 0.25s linear, color 0.25s linear;
}

.webinar-card:hover .price-btn {
  background-color: #000;
  color: #fff;
}
.webinar-card:hover .text-muted-strike {
  color: lightgray !important;
}
@keyframes shimmer {
  100% {
    -webkit-mask-position: left;
  }
}

.btn-primary,
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary:focus-visible {
  background-color: #bed2ff !important;
  color: #123484 !important;
  border: none;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  /* margin: 4px 2px; */
  cursor: pointer;
  /* border-radius: 10px 10px 0px 0px; */
  font-weight: 700;
  /* width: 50%; */
}

.info-box {
  display: flex;
  align-items: center;
  gap: 10px;
}

.info-box .icon {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
}

.icon-blue {
  background-color: #e0f7fa;
  color: #00acc1;
}

.icon-red {
  background-color: #fde2e2;
  color: #e57373;
}

.icon-green {
  background-color: #e8f5e9;
  color: #66bb6a;
}
.icon-gray {
  background-color: #f3edf6;
  color: #6b0b9b;
}
.badge-section {
  margin-top: 10px;
}

.badge-section .badge {
  margin-right: 10px;
}

.info-box h5 {
  margin: 0;
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.text-gray-500 {
  color: #6b7280;
}

.text-base {
  font-size: 1rem;
  line-height: 1.5rem;
}

.text-gray-800 {
  color: #111827;
}

.font-semibold {
  font-weight: 600;
}

.bg-primary {
  background-color: #123484 !important;
}

.btn-secondary {
  background-color: #123484 !important;
  border-color: #123484;
}

.collapse-div {
  background-color: #bed2ff;
  border-radius: 10px;
}
.color-blue {
  color: #123484;
}
.arrow-btn {
  cursor: pointer;
}
.highlight-card {
  border-radius: 00px 0px 10px 10px !important;
  overflow: auto;
}
/* Width of the scrollbar */
::-webkit-scrollbar {
  width: 0.5px; /* Width of vertical scrollbar */
  height: 1px; /* Height of horizontal scrollbar */
}

/* Background of the scrollbar */
::-webkit-scrollbar-track {
  background: #f1f1f1; /* Color of the scrollbar track */
  border-radius: 10px; /* Rounded corners for the track */
}

/* Style of the draggable part of the scrollbar (the thumb) */
::-webkit-scrollbar-thumb {
  background: #123484; /* Color of the scrollbar thumb */
  border-radius: 10px; /* Rounded corners for the thumb */
}

/* Hover effect for the thumb */
::-webkit-scrollbar-thumb:hover {
  background: #123484; /* Color of the thumb on hover */
}

.text-muted-strike {
  color: rgba(33, 37, 41, 0.75);
}

.badge-best-seller {
  background: hsla(0, 0%, 5%, 0.5) !important;
  position: absolute;
  top: 10px;
  left: 10px;
  color: #fff;
  padding: 5px 10px;
  border-radius: 3px;
}

.card-img-top {
  height: 400px !important;
  object-fit: cover;
}
.webinar-card {
  height: 100%;
}
.webinar-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  /* Ensures all cards are the same height */
}

.webinar-card .content {
  flex: 1;
}

.webinar-footer {
  margin-top: auto;
  margin: 16px;
  width: auto;
}
