/* CSS */
#progress-container, #uploaded-container {
    margin-top: 20px;
  }

ol.req-list{
  /* background-color: rgb(43, 26, 5); */
  /* padding: 16px;
  padding-left: 48px; */
  /* border: 2px solid #eee;
  border-bottom: 5px solid #eee;
  border-radius: 16px;
  color: #eee; */
}

.mt-5, .my-5 {
  margin-top: 0rem !important;
}

.subdet{
  font-size: 1.1em;
  padding:16px;
  background-color: #eee;
  border-left: 12px solid #923838;
  border-radius: 7px; 
}

.sub_name,.sub_dtend{
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 1.2em;
}

.ubuntu-mono-regular {
  font-family: "Ubuntu Mono", monospace;
  font-weight: 400;
  font-style: normal;
}

.ubuntu-mono-bold {
  font-family: "Ubuntu Mono", monospace;
  font-weight: 700;
  font-style: normal;
}

.open-sans-submitly {
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: normal;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}

.roboto-slab-submitly {
  font-family: "Roboto Slab", serif;
  font-optical-sizing: auto;
  font-weight: normal;
  font-style: normal;
}


body{
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  margin-bottom: 50px;
}
label{
  font-size: 1.1em;
  padding:8px;
  margin:32px 0 8px 0;
  background-color: #ddf0ff;
  border-left: 5px solid #0e1140;
  display:block;
  font-family: "Roboto Slab", serif;
}

body {
  list-style-type: none;
  counter-reset: css-counter 0; /* initializes counter to 0; use -1 for zero-based numbering */
}

div label {
  counter-increment: css-counter 1; /* Increase the counter by 1. */
}

div label:before {
  content: "Step " counter(css-counter) ": "; /* Apply counter before children's content. */
}

.loader {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: block;
  margin:16px 0;
  border-top: 3px solid #112462;
  border-right: 3px solid transparent;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
} 