.input-container {
    position: relative;
}

.input-border {
    border: 2px solid black;
    border-top: none;
    position: absolute;
    top: 18px;
    left: 0px;
    right: 0px;
    height: 12px;
}

.input-label {
    position: relative;
    top: 32px;
    left: 12px;
}

input[type=text] {
  font-family: consolas;
  font-size: 1rem;
  padding: 12px;
  position: absolute;
  width: 100%;
  height: 24px;
  border: none;
  outline: none;
  background: none;
}


.disabled-button {
    color: gray;
    border: 2px solid lightgray;
    cursor: not-allowed;
}

.counter-button {
    font-size: 1rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    line-height: 1;
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    cursor: pointer;
}

.checkbox-container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: none;
  border: 2px solid black;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.error {
    color: #eb4d4b;
    margin-top: 10px;
    display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-container .checkmark:after {
    left: 7px;
    top: -14px;
    width: 15px;
    height: 30px;
    border: solid black;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

#overlay-content {
    overflow-y: scroll;
    margin-top: 30px;
    height: fit-content;
    min-height: 300px;
    max-height: 90vh;
    margin-bottom: 30px;
}

#overlay {
    color: #333;
    border-radius: 3px;
    background: white;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    height: fit-content;
    overflow: overlay
}

#overlay-container {
    display: none;
    z-index: 2;
    background: rgba(0,0,0,0.5);
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0px;
    top: 0px;
}

#overlay-close {
    position: absolute;
    top: 5px;
    right: 5px;
    cursor: pointer;
}

#loading {
    margin: auto;
    width: 90px;
}

#payment-status {
    padding-left: 30px;
    padding-right: 30px;
}
