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

.b-example-divider {
    height: 3rem;
    background-color: rgba(0, 0, 0, .1);
    border: solid rgba(0, 0, 0, .15);
    border-width: 1px 0;
    box-shadow: inset 0 .5em 1.5em rgba(0, 0, 0, .1), inset 0 .125em .5em rgba(0, 0, 0, .15);
  }

  .form-control-dark {
    color: #fff;
    background-color: var(--bs-dark);
    border-color: var(--bs-gray);
  }
  .form-control-dark:focus {
    color: #fff;
    background-color: var(--bs-dark);
    border-color: #fff;
    box-shadow: 0 0 0 .25rem rgba(255, 255, 255, .25);
  }

  .bi {
    vertical-align: -.125em;
    fill: currentColor;
  }

  .text-small {
    font-size: 85%;
  }

  .dropdown-toggle {
    outline: 0;
  }

  .box {
      border: 1px solid green;
      padding: 20px;
      border-radius: 10px;
  }




#loader {
  border: 4px solid #198754;
  border-radius: 50%;
  border-top: 2px solid #f1c2c8;
  width: 80px;
  height: 80px;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1000;
}

@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg);}
  100% { -webkit-transform: rotate(360deg);}
}

@keyframes spin {
  0% { transform: rotate(0deg);}
  100% { transform: rotate(360deg);}
}

.myslide input:checked + label {
    background-color: #b98d3d;
    padding: 10px;
    border-radius: 10px;
    max-width: 200px;
    animation-name: example;
    animation-duration: 1.5s;
}

@keyframes example {
  0% {background-color: #8cb93d;}
  25% {background-color: rgb(6, 245, 57);}
  50% {background-color: rgb(223, 223, 52);}
  75% {background-color: rgb(206, 91, 135);}
  100% {background-color: rgb(226, 201, 86);}
}


.myslide input[type="radio" i] {
    appearance: none;
}


.candidate-card {
  cursor: pointer;
  transition: all 0.2s;
  border: 2px solid #e5e7eb;
}

.candidate-card:hover {
  border-color: #0d6efd;
  background: #f0f6ff;
}

.candidate-card.selected {
  border-color: #0d6efd;
  background: #e8f0fe;
}

.check-icon {
  display: none;
}

.candidate-card.selected .check-icon {
  display: flex;
}
