.yellow-highlighted {
  color: #e6a01e;
}

.calculator {
  padding: 50px 0 100px;
}
#input-days,
#input-invest {
  display: none;
}
.calculator__container {
  position: relative;
  border-radius: 20px;
  background: #0074ff;
  padding: 40px;
}

.calculator__title {
  color: #ffffff;
  text-align: center;
  font-family: Orbitron;
  font-size: 44px;
  font-weight: 700;
  line-height: 115%;
  text-transform: uppercase;

  margin-bottom: 40px;
}

.calculator__wrapper {
  display: flex;
  align-items: flex-end;
  column-gap: 35px;
}

.calculator__left {
  width: 100%;
}

.calculator__output {
  display: flex;
  align-items: flex-end;
  column-gap: 40px;

  margin-bottom: 17px;
}

.calculator__output:last-child {
  margin-bottom: 0;
}

.calculator__output-items {
  max-width: 180px;
  width: 100%;
  flex-shrink: 0;
}

.calculator__output-title {
  color: #fff;
  text-align: center;
  text-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.15);
  font-size: 18px;
  font-weight: 700;
  line-height: normal;

  margin-bottom: 15px;
}

.calculator__output-subtitle {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 35px;
  border: 4px solid #fff;
  background: #e6a01e;
  padding: 9px 0 6px;
  color: #fff;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
}

.calculator__input {
  width: 100%;
}

.calculator__input .irs-grid-pol {
  display: none;
}

.calculator__input .irs--round .irs-line {
  height: 8px !important;
  border-radius: 20px !important;
  box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.2) !important;
}

.calculator__input .irs--round .irs-bar {
  height: 8px !important;
  border-radius: 20px !important;
  background-color: #e6a01e !important;
  box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.2) !important;
}

.calculator__input .irs--round .irs-handle {
  width: 24px !important;
  height: 24px !important;
  border: 6px solid #e6a01e;
  cursor: pointer;
}

.calculator__input .irs--round .irs-grid-text {
  color: #fff;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  line-height: normal;
  bottom: -5px;
}

.calculator__right {
  max-width: 340px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  border: 4px solid #fff;
  background: #5173fc;
  padding: 42px 10px 40px;
  flex-shrink: 0;
  color: #fff;
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  line-height: normal;

  margin-bottom: 10px;
}

.calculator__litecoin {
  position: absolute;
  top: -80px;
  right: -70px;
  width: 140px;
  height: 140px;
}

.calculator__etherium {
  position: absolute;
  bottom: -80px;
  left: -90px;
  width: 160px;
  height: 160px;
}

@media (max-width: 1200px) {
  .calculator.container {
    padding: 0 19px;
  }

  .calculator {
    padding: 60px 0 60px;
  }

  .calculator__container {
    padding: 40px 20px;
  }

  .calculator__title {
    font-size: 42px;
  }

  .calculator__litecoin {
    top: -84px;
    right: -71px;
  }

  .calculator__etherium {
    bottom: -79px;
    left: -59px;
  }

  .calculator__wrapper {
    flex-direction: column;
    align-items: center;
    row-gap: 50px;
  }

  .calculator__output {
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
  }
}

@media (max-width: 700px) {
  .calculator.container {
    padding: 0 10px;
  }

  .calculator {
    padding: 50px 0;
  }

  .calculator__container {
    padding: 30px 15px;
  }

  .calculator__title {
    font-size: 26px;
    line-height: 115%;

    margin-bottom: 30px;
  }

  .calculator__wrapper {
    row-gap: 30px;
  }

  .calculator__right {
    font-size: 30px;
    padding: 29px 10px 28px;
  }

  .calculator__litecoin {
    display: none;
  }

  .calculator__etherium {
    display: none;
  }
}
