:root {
  --background-color: #f8f9fa;
  --text-secondary-color: #6c757d;

  --male-color: #005bbd;
  --female-color: #bd0075;
}

.icon-sm i {
  top: 0px !important;
  font-size: 1rem !important;
  color: #2d2d2d !important;
}

.btn-primary{
  --bs-btn-color: #fff;
  --bs-btn-bg: #0c83cb !important;
  --bs-btn-border-color: #0c83cb !important;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #0c33cb !important;
  --bs-btn-hover-border-color: #0c33cb !important;
  --bs-btn-focus-shadow-rgb: 211, 48, 173;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #0c33cb !important;
  --bs-btn-active-border-color: #0c33cb !important;
  --bs-btn-active-shadow: none;
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #0c33cb !important;
  --bs-btn-disabled-border-color: #0c33cb !important;
}

.list-group-item.active {
  background-color: #0c83cb !important;
  border-color: #0c33cb !important;
}

a.active>.icon-sm i {
  color: #FFF !important;
}

#spinnerFile {
  display: none;
  width: 100%;
  text-align: center;
  margin-bottom: 20px;
}

.dotSpinner {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin: 0 4px;
  background-color: #000;
  border-radius: 50%;
  animation: blink 1.5s infinite ease-in-out;
}

.dotSpinner:nth-child(1) {
  animation-delay: 0s;
}

.dotSpinner:nth-child(2) {
  animation-delay: 0.3s;
}

.dotSpinner:nth-child(3) {
  animation-delay: 0.6s;
}

#statusFile ul li {
  text-align: left;
  padding-bottom: 10px;
}

#publications_logs{
  max-height: 600px;
  overflow-y: auto;
}

.form-select, .form-control{
  font-family: 'Arial';
}

.result-page-event-title{
  width: 70vw;
  left: 5vw;
  position: relative;
}

@media (max-width: 768px) {
  .result-page-event-title{
    width: 100vw;
    left: 0;
  }
}

.result-page-event-title h1{
  color: #FFF;
  font-size: 40px;
  text-shadow: 1px 1px 1px rgb(0, 0, 0);
}

.result-page-event-title h2{
  color: #FFF;
  font-size: 32px;
  text-shadow: 1px 1px 1px rgb(0, 0, 0);
}

.result-page-thumbnail img{
  max-height: 20vh;
}

.add-event {
  margin-left: 1.5rem;
}

@media (max-width: 768px) {
  .event-list-text {
    display: block;
  }

  .add-event {
    margin-left: 0 !important;
  }
}

.btn-close {
  /* override background to have the bootstrap one instead of soft ui */
  background: transparent var(--bs-btn-close-bg) center/1em auto no-repeat !important;
}

.copyright {
  font-size: 0.7rem !important;
  color: var(--background-color) !important;
}

.copyright a {
  color: var(--background-color) !important;
}

@keyframes blink {

  0%,
  80%,
  100% {
    opacity: 0;
  }

  40% {
    opacity: 1;
  }
}