.u-section-1 .u-sheet-1 {
  min-height: 60px !important;
}

.u-section-1 .u-text-1 {
  font-size: 1.5rem !important;
  margin: 11px auto 11px 0 !important;
}

* {
  padding: 0;
  margin: 0;
  background-origin: padding-box;
  font-family: "Poppins", sans-serif;
}

.calculator {
  display: grid !important;
  place-items: center !important;
  gap: 40px;
}

.calc-container {
  background-color: white;
  border: 1px solid rgb(107, 104, 104);
  box-shadow: 0 0 4px rgb(59, 57, 57);
  padding: 8px;
  width: 800px;
}

@media screen and (max-width: 900px) {
  .calc-container {
    width: 750px !important;
  }
}

@media screen and (max-width: 768px) {
  .calc-container {
    width: 600px !important;
  }
}

@media screen and (max-width: 600px) {
  .calc-container {
    width: 400px !important;
  }
}

.calc-container:last-child {
  box-shadow: none;
  margin: 40px 0;
}

h1 {
  font-weight: bold;
  color: rgb(24, 23, 23);
  font-family: "Share Tech Mono", monospace;
}

.output {
  width: 100%;
}

.operation {
  height: 120px;
  background-color: #bac8d3;
  margin-bottom: 1rem;
  border: 1px solid rgb(107, 104, 104);
  padding: 0 10px;
  font-size: 25px;
  color: rgb(44, 37, 37);
}

.operation .value {
  margin-top: 5px;
}

.operation .value:focus,
.operation .value::after {
  outline: none;
}

label {
  font-family: "Share Tech Mono", monospace;
  font-size: 20px;
  margin: 0;
  padding: 0;
  color: #1d1d1d;
  font-weight: lighter;
}

.result {
  color: #fff;
  height: 140px !important;
  color: rgb(44, 37, 37);
  margin-bottom: 1rem !important;
  font-family: "Share Tech Mono", monospace;
  display: block;
  outline: none;
  border: none;
  border: 1px solid rgb(107, 104, 104) !important;
  background-color: rgb(238, 245, 245) !important;
  padding: 10px !important;
}

hr {
  margin-top: 0px;
  margin-bottom: 0px;
  border-bottom: 1px solid rgb(107, 104, 104) !important;
  border-top: 1px solid rgb(107, 104, 104) !important;
}

.result .value {
  font-size: 1.8rem !important;
  margin-top: 2rem !important;
  padding: 0 8px !important;
}

.input {
  background-color: #fff;
}

.row {
  display: flex !important;
  justify-content: space-around !important;
  align-items: center !important;
  margin: 0;
}

button,
input,
textarea:focus,
button,
input,
textarea:after {
  outline: none;
}

.row button {
  margin-top: 8px !important;
  width: 80px !important;
  height: 40px !important;
  font-size: 25px !important;
  border-radius: 6px !important;
  border: 1px solid !important;
}

@media screen and (max-width: 600px) {
  .operation {
    height: 100px !important;
    font-size: 18px !important;
  }

  .result {
    height: 120px !important;
  }

  .result .value {
    font-size: 1.4rem !important;
    margin-top: 1rem !important;
  }

  .row button {
    width: 60px !important;
    height: 35px !important;
    font-size: 20px !important;
    padding: 1px !important;
  }
}

.row button:hover {
  font-weight: bold;
}

.row #calculate {
  color: #000;
  background-color: #46e0bc;
  /* width: 160px !important; */
}

.row #clear {
  background-color: #d98880;
}

.row #Backspace {
  background-color: #d98880;
}

.row #delete {
  color: #fff;
  background-color: #e05046;
}

#division,
#multiplication,
#subtraction,
#addition {
  color: #18b893;
}

.input button span {
  font-size: 0.6em !important;
  position: absolute !important;
}

.active-angle {
  background-color: #1d1d1d !important;
  color: #fff !important;
  border-radius: 10px !important;
}

.mt-20 {
  margin-top: 20px !important;
}

.text-center {
  text-align: center;
  padding: 10px 0;
}

.ml-50 {
  margin-left: 50px !important;
}

.d-flex {
  display: flex;
  justify-content: space-evenly;
}