.calc-container {
  display: grid;
  grid-gap: 25px;
  padding: 0 20px;
}

@media (min-width: 1200px) {
  .calc-container {
    grid-template-columns: 1fr 400px;
  }
}

@media (min-width: 1400px) {
  .calc-container {
    padding: 0 64px;
  }
}

.calc-wrapper {
  border-radius: 4px;
  background-color: white;
  -webkit-box-shadow: 0px 0px 35px 7px rgba(22,78,47,0.08);
  -moz-box-shadow: 0px 0px 35px 7px rgba(22,78,47,0.08);
  box-shadow: 0px 0px 35px 7px rgba(22,78,47,0.08);
}

.calc-coversions {
  -webkit-box-shadow: 0px 0px 35px 7px rgba(22,78,47,0.08);
  -moz-box-shadow: 0px 0px 35px 7px rgba(22,78,47,0.08);
  box-shadow: 0px 0px 35px 7px rgba(22,78,47,0.08);
  border-radius: 4px;
  background-color: #e8e9ea;
  padding: 40px 16px;
}

.calc-coversions p {
  color: #131f31;
  font-size: 13px;
}

.calc-coversions p.coversions-to {
  font-size: 14px;
  font-weight: bold;
}

.calc-coversions p.coversions-from {
  min-width: 150px;
}

.calc-coversions li {
  display: flex;
}

.calc-row {
  display: grid;
  grid-template-columns: repeat(1 , 1fr);
  border-bottom: 1px solid #d2d5db;
  margin: 16px;
  grid-gap: 8px;
}

@media (min-width: 600px) {
  .calc-row {
    grid-template-columns: repeat(2 , 1fr);
  }
}

@media (min-width: 800px) {
  .calc-row {
    grid-template-columns: repeat(4 , 1fr);
  }
}

.calc-row:last-of-type {
  border-bottom: 0px;
}

.calc-title {
  text-transform: uppercase;
  position: relative;
  color: #131f31;
  font-weight: bold;
  padding-left: 60px;
  margin-bottom: 0;
  font-size: 16px;
}

@media (min-width: 600px) {
  .calc-title {
    font-size: 20px;
  }
}

.calc-title::before {
  content: '';
  background-color: #131f31;
  position: absolute;
  left: 0;
  height: 2px;
  width: 50px;
  top: 10px;
}

.calc-wrapper p.calc-description-text {
  color: #4c4c4c;
  font-size: 14px;
  line-height: 16px;
}

@media (min-width: 800px) {
  .calc-wrapper p.calc-description-text {
    min-height: 80px;
  }
}

.calc-wrapper input {
  border: 1px solid #8e97a6;
  height: 40px;
  padding: 12px;
  border-radius: 5px;
  font-weight: bold;
  display: flex;
  align-items: center;
  width: 100%;
}

p.text-value {
  background-color: #e5f8ee;
  padding: 8px;
  color: #00bf55;
  border-radius: 5px;
  height: 40px;
  display: flex;
  align-items: center;
  font-weight: bold;
}

#calc_gas.show,
#calc_glp.show {
  display: block;
}

#calc_gas.hide,
#calc_glp.hide {
  display: none;
}

.calculation-button {
  font-weight: bold;
  font-size: 14px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 150px;
  cursor: pointer;
  background-color: #fff;
  color: #00bf55;
  border: 1px solid #00bf55;
}

.calculation-button.active {
  background-color: #00bf55;
  color: #fff;
}

@media (max-width: 600px) {
  .calculation-button {
    margin: 0 auto;
    margin-top: 15px;
  }

  .calc-title:before {
    content: none;
  }

  .calc-title {
    text-align: center;
    padding: 0;
  }
}

.calc-header {
  align-items: center;
  padding: 25px 15px 20px 5px;
}

@media (min-width: 600px) {
  .calc-header {
    display: flex;
    justify-content: space-between;
  }

  .calc-buttons {
    display: flex;
    align-items: center;
  }

  .calculation-button + .calculation-button {
    margin-left: 16px;
  }
}


.calc-coversions .calc-title {
  margin-bottom: 40px;
}

@media (max-width: 600px) {
  .btn-know {
    padding: 30px 10px 30px 10px !important;
  }

  .btn-know::after {
    content: none !important;
  }
  .btn-know:before {
    content: none !important;
  }
}

