body {
  font-family: Arial, sans-serif;
}

.app-error{
 font-size:1.5rem;
 text-align: center;
}

.link{
  color: #00539B;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
  text-decoration: underline;
  cursor: pointer;
}

.flex-container {
  display: flex;
  flex-wrap: wrap;
}

.flex-container > .flex-item {
  flex-basis: 100%;
}

.review-decision {
  /* margin-top: 15px; */
  /* padding-top: 15px; */
  /* border-top: 2px solid #7c7c7c; */
}

button.cal-icon-small {
  background: none;
  border: none;
  cursor: pointer;
  outline: none; /* Remove the default focus outline if needed */
  width: 35px; /* Set the width of your calendar icon */
  height: 35px; /* Set the height of your calendar icon */
  margin-right: 5px; /* Add some spacing if needed */
  background-image: url('../images/calendar-icon.png'); /* Set the path to your calendar icon image */
  background-size: cover; /* Adjust the background size as needed */
}

/* larger screens */
@media screen and (min-width: 769px) {
  .flex-container
    > .flex-item:nth-child(n + 2)
    > .review-decision:nth-child(1) {
    margin-top: 0px;
    padding-top: 0px;
    border-top: none;
  }
  .flex-container > .flex-item {
    flex-basis: 48%;
    margin-right: 15px;
  }
  .button-with-description {
    padding: 1.25rem;
  }
}

.monerisContainer {
  height: 1080px;
  max-width: 600px;
}

.label-value-container {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-gap: 10px;
  margin-top: 5px;
  margin-bottom: 5px;
}

.display-only-item--inline, .display-only-item{
  margin-bottom: 0px;
  padding-left: 0.5rem;
}

.display-only-item--inline label{
  display: inline-block;
}

.display-only-item label, .display-only-item--inline label{
  margin-bottom: 0px;
}

.display-only-item--inline div.value {
  display: inline-block;
}

.display-only-item div.value, .display-only-item--inline div.value  {
  margin-left: 6px;
}

.label {
  font-weight: bold;
}
button {
  margin: 5px;
}

button[disabled] {
  background-color: gray;
  border-color: gray;
  cursor: not-allowed;
  pointer-events: none;
}

.button-group {
  display: flex;
  flex-direction: column;
  max-width: 1000px;
}

.button-group button:last-child {
  margin-right: 0px;
}

.full-width-button {
  width: 100%;
  max-width: 500px;
}

.button-wrapper {
  display: flex;
  justify-content: space-between;
}

.button-wrapper button {
  flex: 1 1 0px;
}

form .error {
  color: #d30000;
  font-size: 1rem;
}

/* MAIN STEPS */
ul.main-steps {
  list-style-type: none;
  margin: 0;
  padding-left: 0;
}

ul.main-steps > li {
  padding: 1px 0 20px 50px;
  position: relative;
  margin: 0;
}

ul.main-steps > li:after {
  position: absolute;
  top: 0;
  left: 0;
  content: attr(data-step-number);
  font-weight: bold;
  font-size: 1.25rem;
  border: 3px solid #7c7c7c;
  border-radius: 50%;
  display: inline-block;
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 35px;
  background: #ffffff;
  color: rgb(0, 0, 0);
}

ul.main-steps > li.complete:after {
  content: "✓";
  font-size: 1.35rem;
}

ul.main-steps > li.active:after {
  background: #7c7c7c;
  color: white;
}

ul.main-steps > li:before {
  position: absolute;
  left: 19px;
  top: 42px;
  content: "";
  height: calc(100% - 43px);
  width: 0;
  border-left: 3px solid #c8c8c8;
}

ul.main-steps > li.active:before {
  border-left: 3px solid #7c7c7c;
}

ul.main-steps > li:last-of-type:before {
  border: none;
}

ul.main-steps > li h2 {
  margin-top: 2px;
  line-height: 2rem;
}

/* in mobile view, move content to left to utilize space */
@media screen and (max-width: 768px) {
  #step3 > div {
    margin-left: -50px;
  }
}
/* END MAIN STEPS */

#loading {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 50px;
  border: 5px solid #4e4e4e;
  border-radius: 50%;
  border-top-color: #cdcdcd;
  animation: spin 1s ease-in-out infinite;
  -webkit-animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
  }
}
@-webkit-keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
  }
}

.button-with-description {
  margin-bottom: 20px;
  border: 1px solid #b7b7b7;
  border-radius: 7px;
  padding: 0.75rem;
}

.button-with-description h3{
  margin: 5px;
}

.button-with-description .button-description {
  display: block;
  margin-top: 5px;
  /* text-align: center; */
}

p.apt-footer{
  font-size: 0.75rem;
  margin-top: 0;
}

h3.apt-collection-notice-header{
  margin: 1rem 0 1rem 0;
}

.request-processing-error{
  color: #d30000;
  margin-top: 1rem;
  margin-bottom: 1rem;
}