* {
  margin: 0;
  padding: 0;
}
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

input[type="number"],
input[type="number"]:hover,
input[type="number"]:focus {
  appearance: none;
  -moz-appearance: textfield;
}
.body {
  background-color: #ebedf0;
  color: #000;
  max-width: 450px;
  margin: 0 auto;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 20px;
}

h3 {
  font-size: 25px;
  text-align: center;

  margin-top: 15px;
}

p {
  font-size: 14px;
  text-align: justify;
  margin-top: 10px;
  text-indent: 25px;
}

.blur {
  filter: blur(3px);
}
.lock {
  overflow: hidden;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #efefef;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 20px;
  z-index: 99;
}

header .logo {
  width: 40px;
}

header h1 {
  font-size: 20px;
  font-style: bold;
}

.butter {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fee673;
}

.menu-list {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  margin-top: 30px;
  background: #00000095;
  overflow: auto;
  width: 100%;
  height: 100vh;
  z-index: 2;
  transform: translateX(100%);
  transition: all 0.2s linear;
}

li {
  list-style: none;
  color: #222222;
  text-align: center;
  background: #ffffff;
  padding: 20px;
  width: 60%;
  border-radius: 50px;
}

ul li:first-child {
  margin-top: 50px;
}

ul li:last-child {
  margin-bottom: 20px;
}

main {
  margin-top: 60px;
  margin-bottom: 50px;
}

.result {
  position: relative;
  background: #f4f5f7;
  border: 3px solid #fee673;
  border-radius: 20px;
  min-height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.result span {
  text-align: center;
}

.container {
  margin: 0px 20px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.insert {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 15px;
}

.inputs input {
  width: 70%;
  border: 1px solid #000;
  border-radius: 10px;
  margin-top: 10px;
  margin-right: 10px;
  font-size: 30px;
  text-align: center;
  padding: 5px;
}

.itemTitle {
  text-align: left;
  font-size: 15px;
  height: 20%;
}

button {
  width: 75%;
  padding: 10px;
  margin: 20px auto;
  border-radius: 30px;
  background-color: #ffe66b;
  font-size: 20px;
  font-weight: bolder;
  color: #000;
}

.history-block {
  border: 2px solid #ffe66b;
  background-color: #ffffff80;
  border-radius: 10px;
  width: 100%;
}

.history-block td {
  width: 33%;
  padding-left: 10px;
  font-size: 14px;
  border-bottom: 1px solid gray;
}

.log-title {
  color: #000000;
  font-size: 8px;
  padding-bottom: 5px;
  padding-top: 2px;
  text-align: center;
}

footer {
  display: flex;
  background: #f5f6f7;
  justify-content: space-around;
  padding: 10px 0;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
}

.type {
  width: 60px;
  height: 40px;
  border-radius: 15px;
  background: #fee67350;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.type_active {
  background: #fee673;
}

.links {
  width: 35px;
  height: 35px;
}

.about {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #00000095;
  overflow: hidden;
  z-index: 99999;
  border: 3px solid red;
  transform: translateY(100%);
  transition: all 0.2s linear;
}

.closeIcon {
  width: 35px;
  position: absolute;
  right: 20px;
  top: 20px;
}

.content {
  background: #ebedf0;
  margin: 15px;
  overflow: auto;
  padding: 10px;
  border-radius: 10px;
}

.info-links {
  display: flex;
  justify-content: space-around;
  margin-top: 15px;
}

.info-icon {
  width: 45px;
}

.itog-itog {
  font-size: 40px;
  text-align: center;
  font-weight: bold;
}

.itog-title {
  position: absolute;
  right: 5px;
  bottom: 5px;
  margin-bottom: 5px;
  margin-right: 15px;
  text-align: right;
  font-size: 15px;
}

.open {
  transform: translateY(0);
  transform: translateX(0);
  transition: all 0.2s linear;
}

.active {
  background: #fee673;
}
