
.calc__answer {
    background: #fff;
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    display: none;
    left: 0%;
    padding: 10px;
    position: absolute;
    top: 100%;
    width: 270px;
    z-index: 1; }

.calc__question:hover .calc__answer {
    display: block; }

.calc__buttons {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%; }

.calc__buttons .button {
    margin: 10px; }

.calc__buttonsFind {
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 10px 10px 20px; }

.calc__calculator {
    background: #efeff9;
    border: 1px solid #e0e0f0;
    box-sizing: border-box;
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 20px 10px 10px;
    position: relative; }

.calc__calculator:hover {
    -webkit-box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.15); }

.calc__chck {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    margin: 10px 10px 20px;
    width: -webkit-calc(100% / 3 - 20px);
    width: calc(100% / 3 - 20px);
    min-width: 230px; }

.calc__checkboxes {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%; }

.calc__datepicker {
    position: relative; }

.calc__dscl {
    -webkit-align-self: flex-end;
    -ms-flex-item-align: end;
    align-self: flex-end;
    color: #90909f;
    display: block;
    font-size: 10pt;
    margin: auto 0 20px;
    padding: 0 0 0 10px;
    position: relative;
    width: 100%; }

.calc__dscl:before {
    content: '*';
    font-size: 10pt;
    margin-top: -5px;
    position: absolute;
    top: 0;
    left: 0; }

.calc__dscl_margin {
    margin-left: 10px;
    margin-right: 10px; }

.calc__input {
    width: 100%; }

.calc__inputSlider {
    margin-bottom: 13px; }

.calc__inputSlider_find {
    -webkit-box-flex: 1000;
    -webkit-flex-grow: 1000;
    -ms-flex-positive: 1000;
    flex-grow: 1000;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0 10px 20px; }

.calc__insr {
    margin-bottom: 15px;
    width: 100%; }

.calc__label {
    color: #90909f;
    display: block;
    font-size: 10pt;
    margin-bottom: 5px;
    width: 100%; }

.calc__question {
    cursor: default;
    position: relative; }

.calc__question:after {
    content: ' ';
    background: url(/new_site/img/icon-question.svg) no-repeat 50% 100%;
    background-size: cover;
    height: 10px;
    left: -webkit-calc(100% + 5px);
    left: calc(100% + 5px);
    opacity: 0.5;
    position: absolute;
    bottom: 3px;
    width: 10px; }

.calc__question:hover:after {
    opacity: 1; }

.calc__side {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 10px;
    width: -webkit-calc(50% - 20px);
    width: calc(50% - 20px);
    min-width: 270px; }

.calc__slider-line {
    background: #ffdf0f;
    content: '';
    height: 4px;
    position: absolute;
    top: 100%;
    left: 0;
    width: 10%; }

.calc__slider {
    background: #ffdf0f;
    border-radius: 50%;
    border: 1px solid #f0d000;
    top: 100%;
    height: 19px;
    margin: -10px;
    margin-top: -8px;
    position: absolute;
    width: 19px; }

.calc__slider:hover {
    background: #f0d000; }
.ui-slider {
    position: relative;
    background: #e0e0f0;
    height: 4px;
    border-radius: 0;
    border: none;}

.ui-slider .ui-slider-handle {
    -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    position: absolute;
    margin: -5px -10px;
    width: 19px;
    height: 19px;
    border-radius: 50%;
    border: 1px solid #f0d000;
    bottom: 3px;
    background: #ffdf0f;
    z-index: 2; }

.ui-slider .ui-slider-range {
    position: absolute;
    z-index: 1;
    height: 4px;
    display: block;
    border: 0;
    background: #ffdf0f; }

.ui-slider-horizontal .ui-slider-range-min {
    left: 0; }

.ui-slider-horizontal .ui-slider-range-max {
    right: 0; }

.calc__strt {
    margin-bottom: 17px;
    width: 100%; }

.calc__strtInpt {
    width: 100%; }

.calc__sum {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    margin-bottom: 20px;
    min-width: 250px;
    position: relative;
    width: 100%; }

.calc__sum:before {
    background: #e0e0f0;
    content: '';
    height: 4px;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%; }

.calc__tags {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    margin: -30px 10px; }

.calc__type {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    margin-bottom: 20px;
    width: 100%; }

.calc__typeInpt {
    width: 100%; }

.creditCalc__information {
    display: flex;
    font-size: 1.15em;
}
.creditCalc__copyLink {
    margin: 0 0;
    flex: 1;
}
.info_text {
    flex: 2;
}
.calc__link-dashed, #copyLink {
    border-bottom: 1px dashed #369;
    cursor: pointer;
}

.calc__link-mtb15 {
    margin: 15px 0;
}

@media (max-width: 480px) {
    .creditCalc__information {
        display: flex;
        flex-direction: column-reverse;
    }
    .creditCalc__copyLink {
        margin: 15px 0;
    }
}