.calc-wrapper {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.calc-wrapper h2 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}
.left-wrapper {
    margin-left: 3%;
    width: 63%;
}
.dropdown-container {
    display: block;
}
.dropdown-container p {
    font-size: 12px;
}
.left-wrapper-content {
    background-color: #E5E5E5;
    border-radius: 10px;
    padding: 21px 0;
}
.value-wrapper, .payback-wrapper {
    float: left;
    width: 50%;
}
.valuePayback-wrap h3 {
    font-size: 16px;
    margin-bottom: 5px;
}
.quantity {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    /*border: 2px solid lightblue;*/
    background-color: #fff;
    padding: 5px;
    border-radius: 5px;
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input[type=number] {
    -moz-appearance: textfield;
}
.quantity input {
    width: 67%;
    line-height: 1.65;
    float: left;
    display: block;
    padding: 0;
    margin: 0 3%;
    padding-left: 20px;
    border: 1px solid #eee;
    border-radius: 5px;
    font-size: 20px;
    font-weight: bold;
}
.monthly-wrapper .quantity input {
    width: 64%;
}
.quantity input:focus {
    outline: 0;
}
.quantity-button {
    display: table;
    float: left;
    cursor: pointer;
    text-align: center;
    color: #fff;
    font-size: 13px;
    width: 10%;
    height: 35px;
    background-color: #8EBF3F;
    border-radius: 5px;
}
.monthly-wrapper .quantity-button {
    width: 15%;
}
.quantity-button i.fas {
    display: table-cell;
    vertical-align: middle;
}

.slidecontainer {
    width: 100%;
    margin-top: 10px;
    margin-bottom: 10px;
}

.slider {
    -webkit-appearance: none;
    width: 100%;
    height: 25px;
    background: #d3d3d3;
    outline: none;
    opacity: 0.7;
    -webkit-transition: .2s;
    transition: opacity .2s;
}

.slider:hover {
    opacity: 1;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 25px;
    height: 25px;
    background: #8EBF3F;
    cursor: pointer;
}

.slider::-moz-range-thumb {
    width: 25px;
    height: 25px;
    background: #4CAF50;
    cursor: pointer;
}

span.form-icon {
    width: 10%;
    text-align: center;
    margin-left: 5px;
    margin-right: -5px;
    font-size: 20px;
    font-weight: bold;
}

.dropdown-container {
    margin-top: 10px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}
.dropdown-container p {
    margin-bottom: 0;
    margin-right: 10px;
}
.calc-wrapper p.calc-disclaimer {
    margin: 20px 10% 0px;
}
.calc-wrapper .right-wrapper {
    margin-top: 35px;
}
.calc-wrapper .right-wrapper p {
    border-bottom: 1px solid lightgrey;
    padding-bottom: 5px;
    margin-bottom: 5px;
    margin-top: 0px;
}
.calc-wrapper .right-wrapper p#available-rate {
    display: none;
}
.calc-wrapper .right-wrapper p#total-credit {
    border-bottom: none;
}
.calc-wrapper .right-wrapper p span {
    float: right;
}
.apply-text {
    display: flex;
    align-items: center;
    padding: 18px 10px;
    background-color: #2f2f2f;
    color: #fff;
    border-radius: 5px 5px 0px 0px;
}
.apply-text.monthly-payment-wrapper {
    border-radius: 0;
    border-top: 1px solid #fff;
}
.calc-wrapper .right-wrapper .apply-text p {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
p#week-payments,
p#monthly-payments {
    line-height: 15px;
}
p#week-total,
p#monthly-total {
    font-weight: bold;
    font-size: 25px;
}
.apply-button {
    text-align: center;
    background-color: #8EBF3F;
    border-radius: 0px 0px 5px 5px;
    padding: 12px 10px;
}
.apply-button a,
.apply-button a:hover {
    color:#fff;
    font-size: 22px;
    font-weight: bold;
}
.select-wrapper {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin: 10px;
    width: 34%;
}
.select-wrapper select{
    background-color: #8EBF3F;
    font-size: inherit;
    padding: .5em;
    padding-right: 2.5em;
    border: 0;
    margin: 0;
    border-radius: 3px;
    text-indent: 0.01px;
    text-overflow: '';
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    color: #fff !important;
    width: 100%;
}
.select-wrapper:before, 
.select-wrapper:after {
    content: "";
    position: absolute;
    pointer-events: none;
}
.select-wrapper:before {
    width: 2em;
    right: 0;
    top: 0;
    bottom: 0;
    border-radius: 0 3px 3px 0;
    background-color: rgba(142, 191, 63, .4);
}
.select-wrapper:after {
    content: "\25BC";
    height: 1em;
    font-size: .625em;
    line-height: 1;
    right: 1.2em;
    top: 50%;
    margin-top: -.5em;
    color: #fff;
}

.weekly-payment-wrapper p, .monthly-payment-wrapper p {
    color:#fff !important;
}



