.calc-container {
  width: 100%;
  margin: 20px auto;
  max-width: 100%;
}

.calc-form {
   
  padding: 20px;
  width: 100%;
  max-width: 100%;
  box-shadow: 0 0 1px 1px rgba(0, 0, 0, .1);
}

.input {
  max-width: 100% !important;
  padding: 5px !important;
  border:none !important;
  border-radius:6px !important;
  min-height: 35px !important;
  box-shadow: 0 0 1px 1px rgba(0, 0, 0, .1) !important;
  margin-top:3px !important;
}

.submit {
  background: #00AEC8 !important;
  border: none !important;
  padding: 7px 8px !important;
  text-transform: uppercase !important;
  color: #fff;
  font-weight: 600 !important;
}

.block {
  margin-bottom: 25px;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
}

.calc-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}

.calc-col-6 {
  flex: 0 0 45%;
}

label {
  width: 100%;
}

table {
  width: 100%;
  margin-top: 40px;
}

th {
  text-align: left;
}

td {
  padding: 8px;
  border: 1px solid #fff;
}

.odd {
  background: #fff;
}

.even {
  background: #f2f2f2;
}

.year {
  background: #F6B818;
  padding: 10px;
  font-weight: bold;
}

.yellow {
  background: #7deee6 !important;
}

.switcher {
  width: 170px;
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.switcher button {
  padding: 10px 20px;
  border: none;
  border-radius: 9px;
  background:#f8f8f8;
  margin-right:15px;
  cursor: pointer !important;
}

.diagram-block {
  max-width: 90%;
}

@media screen and (max-width:900px){
  .calc-col-6 {
    flex: 0 0 100%;
  }
}