/* HTML: <div class="loader"></div> */
#modal-loader{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255,255,255,0.8);
  z-index: 9999990;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* HTML: <div class="loader"></div> */
#modal-loader .loader {
  width: 4px;
  color: #7c0279;
  aspect-ratio: 1;
  border-radius: 50%;
  box-shadow: 
    19px -19px 0 0px, 38px -19px 0 0px, 57px -19px 0 0px,
    19px 0     0 5px, 38px 0     0 5px, 57px 0     0 5px,
    19px 19px  0 0px, 38px 19px  0 0px, 57px 19px  0 0px;
  transform: translateX(-38px);
  animation: l26 2s infinite linear;
  margin: 0 auto;
}


#modal-loader .loader-msg{
  padding-top: 40px;
  font-weight: bold;
}

@keyframes l26 {
  12.5% {box-shadow: 
    19px -19px 0 0px, 38px -19px 0 0px, 57px -19px 0 5px,
    19px 0     0 5px, 38px 0     0 0px, 57px 0     0 5px,
    19px 19px  0 0px, 38px 19px  0 0px, 57px 19px  0 0px}
  25%   {box-shadow: 
    19px -19px 0 5px, 38px -19px 0 0px, 57px -19px 0 5px,
    19px 0     0 0px, 38px 0     0 0px, 57px 0     0 0px,
    19px 19px  0 0px, 38px 19px  0 5px, 57px 19px  0 0px}
  50%   {box-shadow: 
    19px -19px 0 5px, 38px -19px 0 5px, 57px -19px 0 0px,
    19px 0     0 0px, 38px 0     0 0px, 57px 0     0 0px,
    19px 19px  0 0px, 38px 19px  0 0px, 57px 19px  0 5px}
  62.5% {box-shadow: 
    19px -19px 0 0px, 38px -19px 0 0px, 57px -19px 0 0px,
    19px 0     0 5px, 38px 0     0 0px, 57px 0     0 0px,
    19px 19px  0 0px, 38px 19px  0 5px, 57px 19px  0 5px}
  75%   {box-shadow: 
    19px -19px 0 0px, 38px -19px 0 5px, 57px -19px 0 0px,
    19px 0     0 0px, 38px 0     0 0px, 57px 0     0 5px,
    19px 19px  0 0px, 38px 19px  0 0px, 57px 19px  0 5px}
  87.5% {box-shadow: 
    19px -19px 0 0px, 38px -19px 0 5px, 57px -19px 0 0px,
    19px 0     0 0px, 38px 0     0 5px, 57px 0     0 0px,
    19px 19px  0 5px, 38px 19px  0 0px, 57px 19px  0 0px}
}


label.error{
  color: #fa3b1d;
  display: inline-block;
  font-size: 0.8em;
  padding: 4px 1rem 0;
  font-weight: bold;
}

.session-modal-message{
  position: fixed;
  top: 20px;
  right: 20px;
  width: 30%;
  z-index: 9999999;
}


.cc-enabled-badge{
  border: 2px solid #60c6ff;
  border-radius: 2px;
}

.cc-disabled-badge{
  border: 2px solid #cccccc;
  border-radius: 2px;
}

.light-d-none{
  display: none;
}
[data-bs-theme=dark] .dark-d-none{
  display: none;
}

[data-bs-theme=dark] .light-d-none{
  display: inline-block;
}

.codeblock{
  position: relative;
  padding: 42px 20px 20px;
  background: #282c34;
  margin: 0 0 1rem;
  border-radius: 6px;
}

.codeblock.notitle{
  padding-top: 20px;
}

.codeblock-name{
  position: absolute;
  top: 0;
  left: 1rem;
  font-weight: bold;
  padding: 4px 10px;
  font-size: 12px;
  background-color: #8ea5bc;
  color: #fff;
  min-width: 80px;
  border-radius: 0 0 4px 4px;
  text-align: center;
}

.list-group-item.depth-2{
  padding-left: 0.8rem;
}
.list-group-item.depth-3{
  padding-left: 1.6rem;
}
.list-group-item.depth-4{
  padding-left: 2.4rem;
}