.marquee-wrapper {
  overflow: hidden;
  position: relative;
  background: #ffffffbf;
  padding: 5px 0;
}

.marquee-content {
  display: flex;
  animation: scroll-left 20s linear infinite;
  animation-play-state: running;
  /* Ensure it runs by default */
  gap: 20px;
}

.marquee-wrapper:hover .marquee-content {
  animation-play-state: paused;
  /* Pause on hover */
}

@keyframes scroll-left {
  from {
    transform: translateX(100%);
  }

  to {
    transform: translateX(-100%);
  }
}

.col-cu-heading {
  flex-shrink: 0;
  /* width: 250px;  */
}

.toggle-heading {
  cursor: pointer;
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
}

.toggle-heading .circle-icon {
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  background: #666;
  border-radius: 50%;
  text-align: center;
  color: white;
  font-size: 14px;
  line-height: 20px;
  transition: transform 0.3s ease;
}

.toggle-heading.collapsed .circle-icon {
  transform: rotate(0deg);
}

.toggle-heading:not(.collapsed) .circle-icon {
  transform: rotate(45deg);
}

.program-list li {
  background: #f5f5f5;
  margin-bottom: 5px;
  padding: 8px 10px;
  border-radius: 4px;
  list-style: none;
  position: relative;
  padding-left: 35px;
}

.program-list li:before {
  content: "\f19d";
  font-family: FontAwesome;
  position: absolute;
  left: 10px;
  top: 9px;
  color: #333;
}

.program-list a {
  color: #333;
  text-decoration: none;
  display: block;
}

.bg-data {
  background-color: #7fcf9e4a !important;

}

select.form-control.identityType.bg-data {
  color: #000000;
}

.divider .container {
  padding-top: 15px;
  padding-bottom: 15px;
}

.notification-heading {
  display: block;
  background-color: #212331;
  padding: 6px 15px;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.d-none {
  display: none !important;
}

.cu-main-logo {
  max-height: 80px;
}

.password-eye .position-absolute {
  position: absolute !important;
  right: 14px;
  top: 42px;
}

.password-eye {
  display: flex;
}
a.custom-btn {
    background-color: #212331;
    display: inline-block;
    border-radius: 5px;
    padding: 4px 10px;
    margin-top: 5px;
}
.cu-stepwizard .stepwizard-step {
    padding: 0px 3px;
    margin-bottom: 5px;
}
@media (min-width: 992px) {
  .cu-main-header {
    display: flex;
    align-items: center;
  }
}

@media (max-width: 768px) {
  .cu-text-title {
    margin: 0px;
  }
}

@media (max-width: 567px) {
  .cu-text-title {
    margin: 0px;
  }

  .header-title-wrap {
    display: none !important;
  }

  .btn-default.btn-theme-colored {
    margin-bottom: 5px;
  }
  h2.text-theme-colored2.font-36 {
    font-size: 24px!important;
}
 .table-schedule thead tr th {
    font-size: 12px;
    padding: 9px 12px;
    text-transform: uppercase;

}
}