.off-screen {
  height: 1px;
  left: -50000px;
  overflow: hidden;
  position: absolute;
  top: 0;
  width: 1px;
}

#progress-bar {
  position: relative;
  padding-top: 5px;

  color: #4d483f;
  margin-top: 30px;
  margin-bottom: 40px;
}

#progress-bar #progress-steps {
  height: 8px;
  width: 100%;
  margin: 0;
  padding: 0;
  display: block;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
  background-color: #24645e24;
  position: relative;
  list-style-type: none;
  counter-reset: item;
}

#progress-bar .progress-step {
  width: 16.66%;
  height: 8px;
  float: left;
  margin: 0;
  padding: 0;
  position: relative;
}

#progress-bar .count:before {
  content: counter(item) " ";
  counter-increment: item;
  display: block;
  width: 24px;
  height: 24px;
  background-color: #edededcc;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  position: absolute;
  right: -10px;
  top: -8px;
  padding: 5px 0px 0 8px;
  font-size: 13px;
  /* font-weight: bold; */
  line-height: 1;
  z-index: 999;
}

#progress-bar .highlight-index:before {
  background-color: #3cb0a5;
  color: #fff;
}

#progress-bar .highlight-index {
  background-color: #3cb0a5;
  display: block;
  height: 100%;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
}

#progress-bar .description {
  display: block;
  text-align: center;
  width: 64%;
  right: -32%;
  position: absolute;
  bottom: 25px;
  font-size: 0.9em;
  line-height: 1.3;
  font-weight: 600;
}

#progress-bar .bolded-step {
  font-weight: normal !important;
}

#progress-bar h3 {
  text-align: center;
}
.woocommerce-order-details__title.order-status {
  margin-top: 0px;
  padding-bottom: 50px;
}
@media (max-width: 600px) {
  #progress-bar {
    position: relative;
    padding-top: 5px;
    color: #4d483f;
    margin-top: 0;
    background-color: #def5f229;
    margin-bottom: 40px;
    padding: 30px 10px;
  }

  #progress-bar #progress-steps {
    height: 270px;
    width: 10px;
    margin-left: 15px;
    padding: 0;
    display: flex;
    flex-direction: column;
    border-radius: 4px;
    background-color: #24645e24;
    position: relative;
    list-style-type: none;
    counter-reset: item;
    margin: auto;
    margin-left: 20%;
  }

  #progress-bar .progress-step {
    width: 16.66%;
    height: 100%;
    width: 10px !important;
    margin: auto;
    padding: 0;
    position: relative;
  }

  #progress-bar .count:before {
    content: counter(item) " ";
    counter-increment: item;
    display: block;
    width: 24px;
    height: 24px;
    background-color: #edededcc;
    border-radius: 50%;
    position: absolute;
    right: -8px;
    top: -8px;
    padding: 5px 0px 0 8px;
    font-size: 13px;
    line-height: 1;
    z-index: 999;
  }

  #progress-bar .highlight-index:before {
    background-color: #3cb0a5;
    color: #fff;
  }

  #progress-bar .highlight-index {
    background-color: #3cb0a5;
    display: block;
    height: 100%;
    border-radius: 4px;
  }

  #progress-bar .description {
    display: block;
    width: 0px;
    right: 0;
    left: 25px;
    top: 0px;
    position: absolute;
    white-space: nowrap;
    bottom: 0px;
    margin-top: -3px;
    font-size: 0.9em;
    line-height: 1.3;
    font-weight: 600;
  }

  #progress-bar .bolded-step {
    font-weight: normal !important;
  }

  #progress-bar h3 {
    text-align: center;
  }
  .woocommerce-order-details__title.order-status {
    margin-top: 0px;
    padding-bottom: 10px;
  }
}


.dashicons.spin {
   animation: dashicons-spin 1s infinite;
   animation-timing-function: linear;
   color: black;
}

@keyframes dashicons-spin {
   0% {
      transform: rotate( 0deg );
   }
   100% {
      transform: rotate( 360deg );
   }
}


.dashicons.spinner-blue {
  animation: dashicons-spin 1s infinite;
  animation-timing-function: linear;
  color: #337ab7;
}