* {
  box-sizing: border-box;
  margin: 0px;
  padding: 0px;
}
body {
  font-family: verdana;
  background-color: #e5e5e5;
  color: #222222;
}
a,
a:visited,
a:hover,
a:active {
  color: inherit;
  text-decoration: none;
}
.container {
  width: 1200px;
  margin: 20px auto 0 auto;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 20px;
  font-size: 12px;
}

/* LIQUEFACTION STARTS*/
section.title {
  text-align: center;
  font-weight: bold;
  color: #666666;
  font-size: 16px;
  margin-bottom: 10px;
}
main {
  border: #aaaaaa 1px solid;
  border-radius: 10px;
  background-color: #f5f5f5;
  padding: 15px;
}
main.theory {
  margin-top: 15px;
}
section.input {
  margin: 20px 0px 20px 0px;
}

div.line {
  overflow: auto;
  display: flex;
  justify-content: space-between;
}
.output .line {
  margin-bottom: 10px;
}
.line:nth-child(3) {
  margin-bottom: 5px;
}
div.cell {
  width: 5%;
  text-align: center;
}

.input .cell {
  width: 10%;
}
.output .cell {
  width: 4.8%;
  text-align: center;
}

label {
  display: block;
  font-weight: bold;
  white-space: nowrap;
  overflow: hidden;
  text-align: center;
  padding-bottom: 5px;
  width: 100%;
}

input {
  font-weight: bold;
  color: #999999;
  text-align: center;
  height: 25px;
  width: 100%;
}

div.immutable-input {
  padding: 6px 3px 5px 3px;
  height: 25px;
  font-weight: bold;
  color: #999999;
  text-align: center;
  background-color: #ebebe4;
  border: #a9a9a9 1px solid;
}

div.button {
  border: #999999 1px solid;
  border-radius: 5px;
  padding: 5px;
  width: 10%;
  text-align: center;
  cursor: pointer;
  background-color: #ffffff;
  color: #444444;
  font-size: 14px;
}

div.button:hover {
  background-color: #444444;
  color: #ffffff;
}

div.button-blue {
  border-color: #7e78fa;
  background-color: #ffffff;
  color: #2f25ff;
}

div.button-blue:hover {
  background-color: #2f25ff;
  color: #ffffff;
}

div.button-red {
  border-color: #ec6d6d;
  background-color: #ffffff;
  color: #fb1c1c;
}

div.button-red:hover {
  background-color: #fb1c1c;
  color: #ffffff;
}

/* FORMULATION STARTS*/
.theory {
  text-align: justify;
  line-height: 25px;
  font-size: 14px;
}
.theory h1 {
  font-weight: bold;
  margin-bottom: 10px;
}
.theory h2 {
  font-weight: bold;
  margin: 20px 0 10px 0;
}
.theory h3 {
  text-decoration: underline;
  margin: 20px 0 10px 0;
}
.theory p {
  margin-top: 10px;
}

p.center {
  text-align: center;
}

table,
td,
th {
  border: #aaaaaa 1px solid;
  text-align: center;
  padding: 1px;
  width: 33%;
  vertical-align: middle;
}

table {
  width: 100%;
}

/* FORMULATION ENDS*/
