.calcWrapper{
  display:flex;
  align-items:center;
  max-width:1500px;
  flex-direction:column;
  margin:auto;
}
.calcContainer {
  display:flex;
  flex-direction:row;
  justify-content: space-around;
  padding: 2%;
}
.inputCol{
  display:flex;
  flex-basis:60%;
  flex-direction:column;
  padding:10px;
  justify-content: space-around;
  height:400px;
  width: 600px;
}
.outputCol{
  display: flex;
  margin-left:30px;
  flex-basis:40%;
  flex-direction:column;
  padding: 10px;
  align-items:center;
  justify-items:space-around;
}

.slidecontainer {
  width: 80%; /* Width of the outside container */
}

/* The slider itself */
.slider {
  -webkit-appearance: none;  /* Override default CSS styles */
  appearance: none;
  width: 100%; /* Full-width */
  height: 25px; /* Specified height */
  background: #d3d3d3; /* Grey background */
  outline: none; /* Remove outline */
  opacity: 0.7; /* Set transparency (for mouse-over effects on hover) */
  -webkit-transition: .2s; /* 0.2 seconds transition on hover */
  transition: opacity .2s;
}

/* Mouse-over effects */
.slider:hover {
  opacity: 1; /* Fully shown on mouse-over */
}

/* The slider handle (use -webkit- (Chrome, Opera, Safari, Edge) and -moz- (Firefox) to override default look) */
.slider::-webkit-slider-thumb {
  -webkit-appearance: none; /* Override default look */
  appearance: none;
  width: 25px; /* Set a specific slider handle width */
  height: 25px; /* Slider handle height */
  background: #04AA6D; /* Green background */
  cursor: pointer; /* Cursor on hover */
}

.slider::-moz-range-thumb {
  width: 25px; /* Set a specific slider handle width */
  height: 25px; /* Slider handle height */
  background: #04AA6D; /* Green background */
  cursor: pointer; /* Cursor on hover */
}




/*the container must be positioned relative:*/
.custom-select {
  position: relative;
  font-family: Arial;
  width:80%;
  font-weight:bold;
}

.custom-select select {
  display: none; /*hide original SELECT element:*/
}

.select-selected {
  background-color: #4ab13b;
}

/*style the arrow inside the select element:*/
.select-selected:after {
  position: absolute;
  content: "";
  top: 14px;
  right: 10px;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-color: #fff transparent transparent transparent;
}

/*point the arrow upwards when the select box is open (active):*/
.select-selected.select-arrow-active:after {
  border-color: transparent transparent #fff transparent;
  top: 7px;
}

/*style the items (options), including the selected item:*/
.select-items div,.select-selected {
  color: #ffffff;
  padding: 8px 16px;
  border: 1px solid transparent;
  border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
  cursor: pointer;
  user-select: none;
}

/*style items (options):*/
.select-items {
  position: absolute;
  background-color: DodgerBlue;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
}

/*hide the items when the select box is closed:*/
.select-hide {
  display: none;
}

.select-items div:hover, .same-as-selected {
  background-color: rgba(27, 206, 55, 0.55);
}



.tooltipCalc {
  position: relative;
  display: inline-block; 
  /*   border-bottom: 1px dotted black; /* If you want dots under the hoverable text */ */
}

/* Tooltip text */
.tooltipCalc .tooltiptextCalc {
  visibility: hidden;
  width: 400px;
  background-color: white;
  color: black;
  text-align: left;
  border: 1px solid;
  padding: 5px;
  border-radius: 6px;

  /* Position the tooltip text - see examples below! */
  position: absolute;
  z-index: 1;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltipCalc:hover .tooltiptextCalc {
  visibility: visible;
}






@media screen and (max-width: 1000px) {
  .calcWrapper{
    max-width: 600px;
  }
  .inputCol{
    width: inherit;
  }
  .outputCol{
    margin-left: 0px;
  }
  .slidecontainer{
    width: 100%!important;
  }
}