.calculator {
    width: 540px;
    margin: 0 auto;
    font-size: .8em;
}
.calculator > h1 {
    text-align: center;
    font-size: 30px;
font-weight: 300;
}
.calculator__row {
    margin-bottom: 6px;
}
.calculator > form {
    padding: 20px 20px 10px 20px;
    margin: -5px auto;
}
.calculator__left {
    width: 30%;
    font-size: 1.8em;
    color: #2a2a2a;
    font-weight: 300;
}
.calculator__right {
    width: 60%;
}
.calculator__right label {
    font-size: 1.4em;
    color: #243978;
    font-weight: 300;
    padding: 5px 0;
    display: inline-block;
}
.calculator__bottom {
    width: 55%;
    margin-top: 20px;
}
.calculator__bottom label {
    color: #0e0e0e;
    font-size: 1.5em;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 25px;
    display: block;
}
.calculator__bottom label a {
    text-decoration: underline;
}
.calculator__row_total .calculator__left {
    font-size: 2.2em;
    font-weight: 400;
}
.calculator__result {
    border: 2px solid #1e317a;
    width: 50%;
    color: #1e317a;
    font-weight: 400;
    display: block;
    height: 50px;
    line-height: 45px;
    padding-left: 10px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 2.6em;
    position: relative;
}
.calculator input, textarea {
    display: block;
    width: 17%;
    font-family: "Open Sans", sans-serif;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    outline: 0;
    font-weight: 300;
}
.calculator input[type="text"], .calculator input[type="email"], .calculator textarea {
    font-size: 1.6em;
    padding: 10px;
    color: #000;
    border: 2px solid #ddd;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.calculator input[type="text"]:focus, .calculator input[type="email"]:focus, .calculator textarea:focus {
    border-color: #1e317a;
}
.calculator input[type="submit"] {
    height: 45px;
    font-size: 1.8em;
    cursor: pointer;
    border: 0;
    width: 190px;
}
.calculator textarea {
    height: 220px;
    resize: vertical;
}
.calculator .select {
    border: 2px solid #1e317a;
    width: 100%;
    height: 40px;
    position: relative;
    overflow: hidden;
}
.calculator .select select {
    font-size: 1.6em;
    color: #1e317a;
    height: 40px;
    width: 100%;
    -webkit-appearance: none;
    padding-left: 10px;
}
.calculator .select select option {
    padding: 10px;
    cursor: pointer;
}
.calculator .select__button {
    position: absolute;
    width: 40px;
    height: 40px;
    top: 0;
    right: 0;
    border-left: 2px solid #1e317a;
    background-color: #fff;
    text-align: center;
    line-height: 40px;
    cursor: pointer;
}
.calculator .checkbox input[type="checkbox"] {
    display: none;
}
.calculator .checkbox input[type="checkbox"]+label::before {
    width: 30px;
    height: 30px;
    background-image: url('../img/checkbox.png');
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    background-position: 0 0;
    background-repeat: no-repeat;
    content: '';
    display: inline-block;
    margin-right: 10px;
    vertical-align: middle;
    cursor: pointer;
}
.calculator .checkbox input[type="checkbox"]:checked+label::before {
    background-position: 0 -30px;
}
.calculator .checkbox input[type="checkbox"]+label {
    color: #1e317a;
    font-size: 1.6em;
    cursor: pointer;
}
.accordion {
    margin: 20px auto 50px;
    background: #f9f9f9;
}
.accordion > h2 {
    text-align: center;
}
.accordion > ul > li {
    display: block;
    border-bottom: 1px solid #bfc7d3;
    color: #1e317a;
}
.accordion > ul > li:last-child {
    border-bottom: 0;
}
.accordion > ul > li > h3 {
    font-weight: 400;
    padding: 0 0 0 30px;
    height: 60px;
    line-height: 60px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 1.6em;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.accordion_disabled > ul > li > h3{
    cursor: default;
}
.accordion > ul > li > h3 > span {
    min-width: 120px;
    display: inline-block;
}
.accordion > ul > li > h3.active, .accordion > ul > li > h3:hover {
    background-color: #1e317a;
    color: #fff;
}

.accordion_disabled > ul > li > h3.active, .accordion_disabled > ul > li > h3:hover {
    background-color: #f9f9f9;
    color: #1e317a;
}
.accordion > ul > li > h3.active+article {
    max-height: 800px;
    opacity: 1;
}
.accordion > ul > li > h3.active i.down, .accordion > ul > li > h3:hover i.down {
    background-image: url('../img/i-down-white-up.png');
}
.accordion > ul > li > article {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.accordion > ul > li > article > p {
    padding-left: 30px;
    padding-right: 60px;
    margin: 25px 0;
}
.first_payment {
    width: 302px !important;
}
