#calcWrapper .title {
    font-family: 'Oswald', sans-serif;
    color: #285C77;
    font-size: 2.5em;
}

#calcWrapper {
    display: flex;
    justify-content: space-around;
    flex-direction: row;
    flex-wrap: wrap;
}

#calcWrapper #sliders {
    display:flex;
    flex-direction:column;
    justify-content:space-around;
}

#calcWrapper #sliders>div {
    position:relative;
}
  
  #calcWrapper  #slider2 {
    margin-top:2%;
  }
  
#calcWrapper  #sliders>div>div:first-child {
    font-weight:700;
}

#calcWrapper  #results {
    background: #285C77;
    color: #fff;
    border-radius: 14px;
    box-shadow: -3px 4px 18px #AED3E6;
    display:inline;
}

#calcWrapper  #resultWrapper {
    display:flex;
    flex-direction:column;
    align-items:center;
}

  #calcWrapper #resultWrapper h3 {
        font-size: 1.5em;
        margin-bottom: 15px;
		color: #fff;
    }

#calcWrapper  #rewardWrapper {
    display: flex;
    font-size: 4em;
    font-weight: bold;
}

#calcWrapper  #rewardWrapper>span:first-child{
    font-size: 60%;
}

#calcWrapper  .resultWrapper {
    display: flex;
    margin-left: auto;
    margin-right: auto;
}

#calcWrapper  .resultWrapper.amounts {
    font-weight:bold;
}

#calcWrapper  .resultWrapper>div {
   width:33.3%;
   text-align:center;
}

#calcWrapper  .sliderLabel {
    display: flex;
    justify-content: space-between;
    font-weight:bold;
}

#calcWrapper  .bubbleContent {
    position: absolute;
    left: 10px;
    width: 110px;
    text-align: center;
    font-weight: bold;
	line-height: 1em;
}

#calcWrapper #slider1 .bubbleContent {
    top: 28px;
}

#calcWrapper #slider2 .bubbleContent {
    top: 22px;
}

#calcWrapper  .percentage {
    color: #81C100;
    font-size: .7em;
}

#calcWrapper #joinSave {
    border-radius: 14px;
    background: #81c100;
    position:absolute;
    padding: .5% 3%;
    text-transform:uppercase;
    font-size: .8em;
    font-weight: 700;
    letter-spacing: 2px;
}

#calcWrapper #joinSave a,#joinSave a:hover {
    color: #fff;
    text-decoration:none;
}


#calcWrapper input[type='range'] {
    -webkit-appearance: none;
    border-radius: 5px;
    height: 5px;
    /*    overflow: hidden;*/
    width: 100%;
}

#calcWrapper #purchasePrice {
    background-color: #AED3E6;
}

#calcWrapper #percDown {
    background-color: #CDE0A8;
}

#calcWrapper input[type='range']::-webkit-slider-runnable-track {
    -webkit-appearance: none;
    height: 5px;
}

#calcWrapper #slider1 input[type="range"] {
    --webkitProgressPercentPrice: 0%;
}

#calcWrapper #slider2 input[type="range"] {
    --webkitProgressPayment: 0;
}

#calcWrapper #slider1 input[type="range"]::-webkit-slider-runnable-track {
    background-image: linear-gradient( 90deg, #285C77 var(--webkitProgressPercentPrice), #AED3E6 var(--webkitProgressPercentPrice) );
}

#calcWrapper #slider2 input[type="range"]::-webkit-slider-runnable-track {
    background-image: linear-gradient( 90deg, #81C100 var(--webkitProgressPayment), #CDE0A8 var(--webkitProgressPayment) );
}

#calcWrapper input[type='range']::-webkit-slider-thumb {
    -webkit-appearance: none;
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
    height: 20px;
    width: 20px;
}

#calcWrapper #purchasePrice::-webkit-slider-thumb {
    /*   box-shadow: -210px 0 0 200px #285C77;*/
    border: 2px solid #285C77;
    position:relative;
    top:-7px;
    left:0;
}

#calcWrapper #percDown::-webkit-slider-thumb {
    /*  box-shadow: -210px 0 0 200px #81C100;*/
    border: 2px solid #81C100;
    position: relative;
    top: -7px;
}

#calcWrapper #purchasePrice::-moz-range-thumb {
    border: 2px solid #285C77;
    background: #fff;
    border-radius: 50%;
    /*    box-shadow: -1010px 0 0 1000px #666;*/
    cursor: pointer;
    height: 15px;
    width: 15px;
}

#calcWrapper #percDown::-moz-range-thumb {
    border: 2px solid #81C100;
    background: #fff;
    border-radius: 50%;
    /*    box-shadow: -1010px 0 0 1000px #666;*/
    cursor: pointer;
    height: 15px;
    width: 15px;
}


@media (max-width:992px){
    #calcWrapper > div {
		width: 100%;
        height: 290px;
    }
	
	#calcWrapper  #results {
		margin-top: 50px;
	}
	
	#calcWrapper  #resultWrapper {
    padding:  50px 0;
	}
	
	#calcWrapper  .resultWrapper {
    width: 90%;
	}

   #calcWrapper #sliders>div {
        margin-bottom: 5%;
    }

    #calcWrapper #joinSave {
        bottom: -2.5%;
		margin-left: 20px;
    }
}

@media (min-width:993px){
    #calcWrapper > div {
        width: 47%;
        min-height: 300px;
    }

	
	#calcWrapper  #resultWrapper {
    padding: 50px 0;
	}
	
	#calcWrapper  .resultWrapper {
    width: 90%;
	}
	
	#calcWrapper  .resultWrapper.amounts {
    margin-top:5px;
}

    #calcWrapper #joinSave {
        margin-left: 2%;
        bottom:-5%;
    }
}


@media (min-width: 576px) and (max-width:992px)
 { 
 
 }