.sppb-row-container {
    width: 1200px;
    display: flex;
    margin: auto;
}

.calculator {
    width: 100%;
    padding: 25px;
    background-color: #f5f8f9;
    box-shadow: 0px 0px 5px 1px #AAAAAA;
}

.calculator__money-row, .calculator__months-row {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.calculator__months-row {
    margin-top: 40px;
}

.calculator__money-row__values, .calculator__months-row__values {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.text_22 {
    font-size: 22px;
    font-family: Arial, sans-serif;
}

#calculateInitButton {
    background-color: #22C2B6;
    font-family: Arial, sans-serif;
    color: #FFFFFF;
    border: none;
    border-radius: 5px;
    transition: .3s;
    padding: 15px;
    margin-bottom: 20px;
}

#calculateInitButton:hover {
    cursor: pointer;
    background-color: #67DAB5;
}

#index >div, #payment >div, #remainToPay >div{
    padding: 5px 0;
}

#index, #payment, #remainToPay {
    font-family: Arial, sans-serif;
}

.monthsCalendar {
    border: 1px solid #22C2B6;
}

.toPayCalendar{
    border-top: 1px solid #22C2B6;
    border-bottom: 1px solid #22C2B6;
}
.remainToPayCalendar{
    border: 1px solid #22C2B6;
}
.calculator__interest {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}

#paymentsBlock {
    display: none;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

#paymentsBlock h6 {
    margin-bottom: 20px;
    margin-top: 20px;
}

.monthsCalendar, .toPayCalendar, .remainToPayCalendar {
    padding-left: 15px;
    padding-right: 15px;
    text-align: center;
}

input[type=range] {
    -webkit-appearance: none; /* Hides the slider so that custom slider can be made */
    width: 100%; /* Specific width is required for Firefox. */
    background: transparent; /* Otherwise white in Chrome */
    margin-top: 25px;
    margin-bottom: 25px;
}

input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
}

input[type=range]:focus {
    outline: none; /* Removes the blue border. You should probably do some kind of focus styling for accessibility reasons though. */
}

input[type=range]::-ms-track {
    width: 100%;
    cursor: pointer;

    /* Hides the slider so custom styles can be added */
    background: transparent;
    border-color: transparent;
    color: transparent;
}

/* Special styling for WebKit/Blink */
input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 30px;
    width: 30px;
    border-radius: 50px;
    background: #66dab5;
    cursor: pointer;
    margin-top: -10px; /* You need to specify a margin in Chrome, but in Firefox and IE it is automatic */
}

/* All the same stuff for Firefox */
input[type=range]::-moz-range-thumb {
    -webkit-appearance: none;
    height: 30px;
    width: 30px;
    border-radius: 50px;
    background: #66dab5;
    cursor: pointer;
    margin-top: -10px;
}

/* All the same stuff for IE */
input[type=range]::-ms-thumb {
    -webkit-appearance: none;
    height: 30px;
    width: 30px;
    border-radius: 50px;
    background: #66dab5;
    cursor: pointer;
    margin-top: -10px;
}

input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 10px;
    cursor: pointer;
    background: rgba(214, 214, 214, 0.4);
    border-radius: 6px;
}

input[type=range]::-moz-range-track {
    width: 100%;
    height: 10px;
    cursor: pointer;
    background: rgba(214, 214, 214, 0.4);
    border-radius: 6px;
}

input[type=range]::-ms-track {
    width: 100%;
    height: 8.4px;
    cursor: pointer;
    background: transparent;
    border-color: transparent;
    border-width: 16px 0;
    color: transparent;
}

input[type=range]::-ms-fill-lower {
    background: #2a6495;
    border: 0.2px solid #010101;
    border-radius: 2.6px;
    box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
}

input[type=range]:focus::-ms-fill-lower {
    background: #3071a9;
}

input[type=range]::-ms-fill-upper {
    background: #3071a9;
    border: 0.2px solid #010101;
    border-radius: 2.6px;
    box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
}

input[type=range]:focus::-ms-fill-upper {
    background: #367ebd;
}