.answer-label {
  min-height: 40px;
  min-width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.w-100p {
  width: 70px;
}

.w-70p {
  width: 70px;
}

.w-60p {
  width: 60px;
}

.w-50p {
  width: 50px;
}

.bt-red {
  border-top: 2px solid red;
}

.bt-dark {
  border-top: 2px solid rgb(0, 0, 0);
}

.tdt-red {
  text-decoration: overline red;
}

.square-root::before {
  content: "\221A";
  vertical-align: middle;
  margin-right: -5px;
}

.square-root::after {
  /* content: '\00AF\00AF\00AF'; */
  width: 30px;
  vertical-align: top;
  margin-left: -15px;
}

/* advanced short codes */

.container {
  max-width: 600px;
  background: white;
  padding: 20px;
  margin: auto;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  height: 100%;
}

input {
  padding: 0.5rem 1.5rem;
  margin: 10px 0;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #222222;
  border: 1px solid gray;
  background-color: #f7f8f9;
  border-radius: 0.375rem;
}

select {
  padding: 0.5rem 1.5rem;
  margin: 10px 0;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #222222;
  border: 1px solid gray;
  background-color: #f7f8f9;
  border-radius: 0.375rem;
}

input[type="radio"],
input[type="check"],
input[type="checkbox"] {
  max-width: fit-content;
  padding: 8px;
}

button {
  background-color: #0a58ca;
  color: white;
  border: none;
  cursor: pointer;
  padding: 0.5rem 1.5rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  border: 1px solid #0d6efd;
  border-radius: 0.375rem;
}

button:hover {
  background-color: #0b5ed7;
  border-color: #0a58ca;
}

/* .result,
.results,
#result,
.result-container {
  margin-top: 40px;
  padding: 0.5rem 1.5rem;
  background-color: rgba(0, 0, 0, 0.03);
  border-radius: 0.375rem;
} */

.result:not(input),
.results:not(input),
#result:not(input),
.result-container {
  margin-top: 40px;
  padding: 0.5rem 1.5rem;
  background-color: rgba(0, 0, 0, 0.03);
  border-radius: 0.375rem;
}


.butn-center {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 10px;
}

label {
  text-transform: capitalize;
}

.input-group-text {
  height: 100%;
  margin: auto;
}

.menu-items-input {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.product-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.product-row input {
  width: 45%;
}

/* kids calculator style */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.container {
  animation: fadeIn 1.5s ease-in;
}

.chart {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 5px;
  margin-top: 20px;
}

.box {
  width: 30px;
  height: 30px;
  text-align: center;
  background: #e0f7fa;
  border: 1px solid #008080;
  line-height: 30px;
  font-weight: bold;
}

.highlight {
  background: yellow;
  color: red;
}

.step {
  text-align: left;
  margin-top: 10px;
  padding: 10px;
  border-radius: 10px;
}

.number-line {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.number {
  width: 30px;
  text-align: center;
}

.marker {
  color: red;
  font-weight: bold;
}

.icon {
  width: 50px;
  height: 50px;
  animation: bounce 1s infinite;
  display: inline-block;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}