@-webkit-keyframes progress-bar-stripes {
  from {
    background-position: 1rem 0;
  }
  to {
    background-position: 0 0;
  }
}

@keyframes progress-bar-stripes {
  from {
    background-position: 1rem 0;
  }
  to {
    background-position: 0 0;
  }
}

.progress {
  display: flex;
  height: 1.5rem;
  overflow: hidden;
  line-height: 0;
  font-size: 0.75rem;
  background-color: #eaecf4;
  border-radius: 0.35rem;
  border-style: groove;
  
}

.progress-bar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  background-color: #45527e;
  transition: width 0.6s ease;
}

@media (prefers-reduced-motion: reduce) {
  .progress-bar {
    transition: none;
  }
}

.progress-bar-striped {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 1rem 1rem;
}

.progress-bar-animated {
  -webkit-animation: progress-bar-stripes 1s linear infinite;
  animation: progress-bar-stripes 1s linear infinite;
}

@media (prefers-reduced-motion: reduce) {
  .progress-bar-animated {
    -webkit-animation: none;
    animation: none;
  }
}

progress {
  vertical-align: baseline;
}

.bg-col1 {
  background-color: #6495ED !important;
}
.bg-col2 {
  background-color: #3CB371 !important;
}
.bg-col3 {
  background-color: #CD5C5C !important;
}
.bg-col4 {
  background-color: #FF8C00 !important;
}
.bg-col5 {
  background-color: #9370DB !important;
}
.bg-col6 {
  background-color: #8B8989 !important;
}
.bg-col7 {
  background-color: #473C8B !important;
}
.bg-col8 {
  background-color: #2E8B57 !important;
}
.bg-col9 {
  background-color: #8B3A3A !important;
}

/*a.bg-col1:hover, a.bg-col1:focus,
button.bg-col1:hover,
button.bg-col1:focus {
  background-color: #2a96a5 !important;
}*/

