.ah-calculator-wrapper {
    padding: 20px 15px;
    background-color: #fff;
    border-radius: 5px;
    margin-bottom: 50px;
}
.ah-calc-tabs ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}
.ah-calc-tabs li {
    list-style: none;
}
.ah-calc-tab {
    background-color: #e3e3e3;
    color: #181f38;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    border-radius: 5px;
    line-height: 40px;
    margin-right: 15px;
    width: 46%;
    height: 40px;
    margin-bottom: 15px;
}
.ah-calc-tab:nth-child(even) {
    margin-right: 0;
}
.ah-calc-tab.active {
    background-color: #2a7dfb;
    color: #fff;
}
.calc_parameters label, .calc_ah_Chosen label {
    color: #181f39;
    opacity: 0.75;
    text-transform: uppercase;
    font-size: 0.8em;
    font-weight: normal;
}
.calc_parameters input {
    border-radius: 5px;
    height: 40px;
    color: #181f39;
    font-weight: bold;
    font-size: 18px;
    width: 90%;
    border: 1px solid #afafaf;
    padding: 0 10px;
}
.calc_ah_Chosen {
    margin-top: 15px;
}
.calc_ah_Chosen label {
    font-size: 1em;
}
.calc_ah_ChosenValue {
    background: #2a7dfb;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
    border-radius: 5px;
    font-size: 1.125em;
    height: 40px;
}
/*result section*/
.ah-calc-result-body {
    margin: 40px 0;
}
.ah-calc-result-body .label-right {
     display: block;
     text-align: right;
 }
.ah-calc-result-body .label-right:after {
    content: '';
    position: absolute;
    top: 20px;
    right: 15px;
    width: 90%;
    height: 2px;
    background: #c8c8cf;
}
.ah-calc-result-body .label-left {
    display: block;
    text-align: left;
}
.ah-calc-result-body .label-left:after {
    content: '';
    position: absolute;
    top: 20px;
    left: 15px;
    width: 90%;
    height: 2px;
    background: #c8c8cf;
}
.result-section {
    display: flex;
    justify-content: space-between;
    height: 80px;
}
.result-section input {
    font-family: 'Roboto Condensed', sans-serif;
    background-color: #2a7dfb;
    color: #fff;
    text-align: center;
    font-weight: bold;
    width: 45%;
    border: none;
    border-radius: 3px;
    font-size: 48px;
	height: 100%;
}
.left-arrows > div, .right-arrows > div {
    background-color: #ececee;
    height: 35px;
    margin-bottom: 10px;
    border-radius: 5px;
    text-align: center;
}
.left-arrows .material-icons, .right-arrows .material-icons {
    font-size: 32px;
}
.ah-result-dots {
    color: #2a7cfb;
    font-size: 65px;
    height: 80px;
    padding: 0;
}
.calc_ah_result, .calc_ah_payout, .calc_ah_profit {
    justify-content: space-between;
    align-items: baseline;
    color: #7d7d8c;
    border-bottom: 2px solid #d7d7d7;
    height: 30px;
}
.calc_ah_result label, .calc_ah_payout label, .calc_ah_profit label {
    font-size: 18px;
    margin-bottom: 0;
}
.calc_ah_resultValue, .calc_ah_payoutValue, .calc_ah_profitValue {
    font-size: 21px;
    font-weight: bold;
    text-transform: uppercase;
    color: #181f38;
}
/*End result section*/

@media (min-width: 768px) {
    .ah-calc-result-body .label-right:after, .ah-calc-result-body .label-left:after {
        width: 95%;
    }
}
@media (min-width: 992px) {
    .ah-calc-tab {
        width: 23%;
    }
    .ah-calc-tab:nth-child(even) {
        margin-right: 15px;
    }
    .calc_parameters label, .calc_ah_Chosen label {
        font-size: 1em;
    }
    .ah-calc-result-body .label-right:after, .ah-calc-result-body .label-left:after {
        width: 97%;
    }
}
@media (min-width: 1200px) {
	.ah-calculator-wrapper {
		padding: 30px 50px;
	}
    .calc_parameters label, .calc_ah_Chosen label {
        font-size: 1.3em;
    }
}