@font-face {
    font-family: Roboto;
    src: url("../font/Roboto-Bold.woff2") format("woff2"), url("../font/Roboto-Bold.woff") format("woff")
}

body {
    font-family: Roboto, sans-serif;
    color: #777;
    padding-top: 40px
}

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    outline: 0
}

a,
a:active,
a:focus,
a:hover,
a:visited {
    text-decoration: none
}

.calc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    max-width: 90%;
    margin: auto;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

h1 {
    color: #353a43;
    font-size: 24px;
    font-weight: 700;
    line-height: 24px;
    text-align: center;
    margin-bottom: 50px
}

.title {
    color: #353a43;
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    margin-top: 15px
}

.title span {
    font-size: 14px;
    color: #adb1ba
}

.data>div {
    padding-right: 30px
}

.data input[type=text] {
    height: 20px;
    padding: 18px 16px;
    border: 1px solid #ff7f63;
    margin: 9px 30px 0 0;
    width: 263px
}

.data input[type=text]::-webkit-input-placeholder {
    color: #ff7f63;
    font-size: 14px;
    font-weight: 700;
    line-height: 24px
}

.data input[type=text]:-moz-placeholder {
    color: #ff7f63;
    font-size: 14px;
    font-weight: 700;
    line-height: 24px
}

.data input[type=text]::-moz-placeholder {
    color: #ff7f63;
    font-size: 14px;
    font-weight: 700;
    line-height: 24px
}

.data input[type=text]:-ms-input-placeholder {
    color: #ff7f63;
    font-size: 14px;
    font-weight: 700;
    line-height: 24px
}

.data .btn_plus {
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    background-color: #ff7f63;
    color: #353a43;
    outline: 0;
    border: none;
    font-size: 26px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 15px
}

.data .btn_plus:hover {
    -webkit-box-shadow: inset 2px 3px 7px rgba(0, 0, 0, .35);
    box-shadow: inset 2px 3px 7px rgba(0, 0, 0, .35)
}

.data .additional_expenses-item,
.data .salary-amount {
    width: calc(100% - 30px) !important
}

.data .deposit-label {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.data .deposit-label input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0
}

.data .deposit-label .deposit-checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 23px;
    width: 23px;
    background-color: #ff7f63
}

.data .deposit-label .deposit-checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid #353a43;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg)
}

.data .deposit-label:hover input~.deposit-checkmark {
    background-color: #ff7f63;
    -webkit-box-shadow: inset 2px 3px 7px rgba(0, 0, 0, .35);
    box-shadow: inset 2px 3px 7px rgba(0, 0, 0, .35)
}

.data .deposit-label input:checked~.deposit-checkmark:after {
    display: block
}

.data .deposit-bank {
    display: none;
    font-family: Roboto, sans-serif;
    font-size: 14px;
    font-variant: small-caps;
    font-weight: 700;
    color: #444;
    line-height: 1.3;
    padding: .6em 1.4em .5em .8em;
    width: 263px;
    max-width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    -webkit-box-shadow: inset 2px 3px 7px rgba(0, 0, 0, .35);
    box-shadow: inset 2px 3px 7px rgba(0, 0, 0, .35);
    border: 1px solid #ff7f63;
    background-color: #ff7f63;
    cursor: pointer;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background-image: url("../img/arrow.svg");
    background-repeat: no-repeat, repeat;
    background-position: right .7em top 50%, 0 0;
    background-size: 20px auto, 100%
}

.data .deposit-bank::-ms-expand {
    display: none
}

.data .deposit-bank:hover {
    border-color: #888
}

.data .deposit-bank:focus {
    border-color: #aaa;
    color: #222;
    outline: 0
}

.data .deposit-bank option {
    font-weight: 400
}

.data .deposit-amount,
.data .deposit-percent {
    display: none
}

.data .target {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.data .target-title {
    margin: auto 10px auto auto
}

.data .target-amount {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1
}

.data .period {
    text-align: center
}

.data .period-title {
    font-size: 20px;
    text-align: center
}

.data .period input[type=range].period-select {
    -webkit-appearance: none;
    width: 100%;
    margin: 9px 0
}

.data .period input[type=range].period-select:focus {
    outline: 0
}

.data .period input[type=range].period-select::-webkit-slider-runnable-track {
    width: 100%;
    height: 8px;
    cursor: pointer;
    background: #ff7f63;
    border-radius: 25px;
    border: 0 solid #000001
}

.data .period input[type=range].period-select::-webkit-slider-thumb {
    border: 4px solid #353a43;
    height: 26px;
    width: 26px;
    border-radius: 50px;
    background: #ff7f63;
    cursor: pointer;
    -webkit-appearance: none;
    margin-top: -9px
}

.data .period input[type=range].period-select:focus::-webkit-slider-runnable-track {
    background: #ff7f63
}

.data .period input[type=range].period-select::-moz-range-track {
    width: 100%;
    height: 8px;
    cursor: pointer;
    background: #ff7f63;
    border-radius: 25px;
    border: 0 solid #000001
}

.data .period input[type=range].period-select::-moz-range-thumb {
    border: 4px solid #353a43;
    height: 26px;
    width: 26px;
    border-radius: 50px;
    background: #ff7f63;
    cursor: pointer
}

.data .period input[type=range].period-select::-ms-track {
    width: 100%;
    height: 8px;
    cursor: pointer;
    background: 0 0;
    border-color: transparent;
    color: transparent
}

.data .period input[type=range].period-select::-ms-fill-lower,
.data .period input[type=range].period-select::-ms-fill-upper {
    background: #ff7f63;
    border: 0 solid #000001;
    border-radius: 50px
}

.data .period input[type=range].period-select::-ms-thumb {
    border: 4px solid #353a43;
    width: 26px;
    border-radius: 50px;
    background: #ff7f63;
    cursor: pointer;
    height: 8px
}

.data .period input[type=range].period-select:focus::-ms-fill-lower,
.data .period input[type=range].period-select:focus::-ms-fill-upper {
    background: #ff7f63
}

.result {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: distribute;
    justify-content: space-around
}

.result div {
    width: 100%;
    -webkit-box-shadow: inset 2px 3px 7px rgba(0, 0, 0, .35);
    box-shadow: inset 2px 3px 7px rgba(0, 0, 0, .35);
    background-color: rgba(255, 127, 99, .26);
    color: #353a43;
    padding: 15px 0 1px 20px;
    margin-bottom: 15px
}

.result div span {
    display: block
}

.result div input {
    min-width: 390px;
    margin-left: 65px;
    padding-left: 13px;
    border: none;
    outline: 0;
    border-bottom: 1px solid #ff7f63;
    color: #ff7f63;
    font-family: Roboto;
    font-size: 14px;
    font-weight: 700;
    background-color: transparent
}

.result div input::-webkit-input-placeholder {
    color: #ff7f63;
    font-size: 14px;
    font-weight: 700;
    line-height: 24px
}

.result div input:-moz-placeholder {
    color: #ff7f63;
    font-size: 14px;
    font-weight: 700;
    line-height: 24px
}

.result div input::-moz-placeholder {
    color: #ff7f63;
    font-size: 14px;
    font-weight: 700;
    line-height: 24px
}

.result div input:-ms-input-placeholder {
    color: #ff7f63;
    font-size: 14px;
    font-weight: 700;
    line-height: 24px
}

.result .title {
    margin-top: 0
}

.result .control {
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0
}

.result #cancel {
    display: none
}

.result #cancel,
.result #start {
    width: 262px;
    height: 67px;
    -webkit-box-shadow: inset 2px 3px 7px rgba(0, 0, 0, .35);
    box-shadow: inset 2px 3px 7px rgba(0, 0, 0, .35);
    background-color: #353a43;
    color: #fff;
    font-size: 20px;
    font-family: Roboto;
    font-weight: 700;
    line-height: 24px;
    cursor: pointer;
    border: none;
    outline: transparent
}

.result #cancel:hover,
.result #start:hover {
    opacity: .7
}

.result #cancel:active,
.result #start:active {
    background-color: #ff7f63;
    color: #fff;
    opacity: 1
}