#lc-playbook-loader {
  display: flex;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  height: 100vh;
  text-align: center;
  justify-content: center;
  align-items: center;
  font-family: 'Segoe UI', sans-serif;  
}
  
.ui-dialog:not(.modal-content) .ui-dialog-titlebar-close {
    display: flex;
    align-items: center;
    justify-content: center;
}

.ui-dialog.modal-content .ui-dialog-titlebar-close {
  position: unset;
  height: initial;
}

.ui-dialog:not(.modal-content) .ui-dialog-titlebar-close::before {
    content:'\F62A';
    font-size: 20px;
    font-family: bootstrap-icons !important;
}

.red {
    background-color: red !important;
    color: white !important;
}

.orange {
    background-color: orange !important;
}

.yellow {
    background-color: yellow !important;
}

.progress-container {
  position: relative;
  width: 700px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.progress-bar-custom {
  position: absolute;
  top: 50%;
  left: 0;
  height: 4px;
  width: 100%;
  background-color: #e0e0e0;
  transform: translateY(-50%);
  z-index: -1;
  border-radius: 2px;
}

.progress-bar-front {
  height: 100%;
  width: 0%;
  background-color: #28a745;
  transition: width 0.5s ease;
  border-radius: 2px;
}

.step {
  position: relative;
  background-color: #fff;
  border: 4px solid #d3d3d3;
  color: #d3d3d3;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.4s ease;
  z-index: 1;
}


.step.checked {
  border-color: #28a745;
  color: #28a745;
}

.step i {
  font-size: 16px;
  color: #28a745;
  line-height: 0;
}

.step span {
  position: absolute;
  top: 45px;
  width: 120px;
  font-size: 14px;
  color: #fff;
  left: 50%;
  transform: translateX(-50%);
}

@media (max-width: 768px) {
  .progress-container {
    width: 90vw;
  }
  .step span {
    font-size: 12px;
    width: 90px;
  }
}

.rotate-animate {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
  
#lc-playbook-loader .spinner {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border: 5px solid #f3f3f3;
  border-top: 5px solid #0074bd;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spinner-border 1s linear infinite;
}

@keyframes spinner-border {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}