/* media breakpoints */
/*  */
/* popup */
@-webkit-keyframes zoomInUp {
    from {
        -webkit-transform: scale(0.97) translate3d(0, 16px, 0);
        transform: scale(0.97) translate3d(0, 16px, 0);
        opacity: 0;
    }
    to {
        -webkit-transform: scale(1) translate3d(0, 0, 0);
        transform: scale(1) translate3d(0, 0, 0);
        opacity: 1;
    }
}

@keyframes zoomInUp {
    from {
        -webkit-transform: scale(0.97) translate3d(0, 16px, 0);
        transform: scale(0.97) translate3d(0, 16px, 0);
        opacity: 0;
    }
    to {
        -webkit-transform: scale(1) translate3d(0, 0, 0);
        transform: scale(1) translate3d(0, 0, 0);
        opacity: 1;
    }
}

.af-popup {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.75);
    overflow-x: auto;
    z-index: 100;
}

.af-popup.open {
    display: block !important;
}

@media screen and (max-width: 480px) {
    .af-popup--mobile .af-popup__container {
        padding-bottom: 0;
        margin-bottom: 0;
        width: 100%;
    }
}

.af-popup__bg {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 101;
}

.af-popup__wrp {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    -ms-flex-direction: column;
    -ms-flex-align: center;
    -ms-flex-pack: center;
    z-index: 102;
    position: relative;
    min-height: 100%;
}

.af-popup__content {
    border-radius: 4px;
    background: #fff;
    padding: 10px;
}

.af-popup__container {
    width: auto;
    max-width: 100%;
    margin: auto;
    padding: 50px 0;
    position: relative;
    -webkit-animation: 0.2s ease both zoomInUp;
    animation: 0.2s ease both zoomInUp;
}

@media screen and (min-width: 480px) {
    .af-popup__container {
        max-width: 90%;
    }
}

.af-popup__close {
    height: 24px;
    text-align: right;
    position: absolute;
    bottom: calc(100% + 15px);
    right: 18px;
    cursor: pointer;
    z-index: 101;
    top: 68px;
}

.af-popup__close svg {
    fill: #fff;
    width: 24px;
    height: 24px;
    stroke: #D6D6D6;
    stroke-width: 2px;
}

.af-popup__close svg:hover {
    stroke: #DC2F2F;
}

.t-checkbox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    cursor: pointer;
    font-size: 13px;
    line-height: 140%;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.t-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
    display: none;
}

.t-checkbox .t-checkbox__text {
    line-height: 140%;
    font-weight: 400;
}

.t-checkbox .t-checkbox__elem {
    top: 0.1em;
    position: relative;
    height: 16px;
    width: 16px;
    min-width: 16px;
    background-color: #fff;
    display: inline-block;
    margin-right: 15px;
    border: 1px solid #bcbcbc;
    border-radius: 3px;
}

.t-checkbox .t-checkbox__elem::after {
    content: "";
    position: absolute;
    left: 3px;
    top: 3px;
    width: 9px;
    height: 4px;
    -webkit-transition: 0.25s cubic-bezier(0.08, 0.82, 0.17, 1);
    transition: 0.25s cubic-bezier(0.08, 0.82, 0.17, 1);
    opacity: 0;
    background-size: 13px;
    background-position: center;
    background-repeat: no-repeat;
    border-left: 1px solid #fff;
    border-bottom: 1px solid #fff;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    background: transparent;
}

.t-checkbox input:hover ~ .t-checkbox__elem {
    border-color: #DC2F2F;
}

.t-checkbox input:checked ~ .t-checkbox__elem {
    background-color: #DC2F2F;
    z-index: 2;
    border-color: #DC2F2F;
}

.t-checkbox input:checked ~ .t-checkbox__elem:after {
    opacity: 1;
    border-radius: 0;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

@media screen and (max-width: 480px) {
    .af-select-open {
        overflow: hidden;
    }
}

.af-select-open .section-first-block {
    z-index: 15;
}

.select-hidden {
    display: none;
    visibility: hidden;
    padding-right: 10px;
}

.af-select {
    cursor: pointer;
    display: inline-block;
    position: relative;
    font-size: 14px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: #fff;
    width: 100%;
    min-width: 150px;
    background-color: #f9f9f9;
    height: 48px;
    border: 1px solid #eee;
}

@media screen and (max-width: 1200px) {
    .af-select {
        height: 45px;
    }
}

.af-selected-placeholder::before {
    content: attr(data-af-placeholder);
    display: block;
    font-size: 12px;
    color: #92919F;
    line-height: 140%;
    font-weight: normal;
}

.af-selected-placeholder {
    font-weight: 600;
}

.select-styled {
    background-color: transparent;
    padding: 8px 15px;
    -webkit-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
    border: 1px solid transparent;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 14px;
    line-height: 160%;
    color: #737373;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: 100%;
}

@media screen and (max-width: 1200px) {
    .select-styled {
        font-size: 14px;
    }
}

.select-styled span {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    font-weight: 600;
}

.select-styled:after {
    content: "";
    width: 8px;
    min-width: 8px;
    height: 10px;
    background-image: url("data:image/svg+xml,%3Csvg width='8' height='6' viewBox='0 0 8 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.00001 5.28019C3.85663 5.28019 3.71327 5.22545 3.60396 5.11619L0.164144 1.67634C-0.0546739 1.45752 -0.0546739 1.10275 0.164144 0.884017C0.382873 0.665289 0.737577 0.665289 0.956412 0.884017L4.00001 3.92779L7.04362 0.884124C7.26244 0.665395 7.61711 0.665395 7.83582 0.884124C8.05474 1.10285 8.05474 1.45763 7.83582 1.67644L4.39605 5.1163C4.28669 5.22557 4.14333 5.28019 4.00001 5.28019Z'/%3E%3C/svg%3E%0A");
    position: relative;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    display: block;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
    margin-left: 15px;
}

.select-styled:hover {
    background-color: #f4f4f4;
}

.select-styled:active, .select-styled.active {
    background-color: #ececec;
}

.select-styled:active:after, .select-styled.active:after {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

@media screen and (max-width: 480px) {
    .select-list.active {
        position: fixed;
        top: 0;
        bottom: 0;
        margin: auto;
        z-index: 900;
        left: 0;
        right: 0;
        background-color: rgba(69, 62, 79, 0.69);
    }
}

.select-options {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    right: auto;
    left: 0;
    z-index: 999;
    margin: 0;
    padding: 0;
    list-style: none;
    background-color: #e9e9e9;
    max-height: 300px;
    overflow-y: auto;
    overflow-x: hidden;
    background: #FFFFFF;
    -webkit-box-shadow: 0px 0px 9px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 0px 9px rgba(0, 0, 0, 0.25);
    color: #000;
    min-width: 100%;
    width: auto;
    max-height: 300px;
}

.select-options.active {
    display: block;
}

@media screen and (max-width: 992px) {
    .select-options {
        max-height: 30vh;
    }
}

@media screen and (max-width: 480px) {
    .select-options {
        top: auto;
        bottom: 0;
        max-height: 50vh;
        margin: auto;
    }
}

.select-options li {
    margin: 0;
    padding: 0.75rem 15px;
    border-top: 1px solid #efefef;
    -webkit-transition: all 0.15s ease-in;
    transition: all 0.15s ease-in;
    font-size: 14px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    position: relative;
}

.select-options li::before {
    display: none;
}

@media screen and (max-width: 1200px) {
    .select-options li {
        font-size: 13px;
    }
}

@media screen and (max-width: 480px) {
    .select-options li {
        font-size: 16px;
        padding: 1.5em 1.5em;
        max-width: 100%;
    }
}

.select-options li.active, .select-options li:hover {
    color: #000;
    background: #f9f9f9;
}

.select-options li[rel="hide"] {
    display: none;
}

.select-list.active.select-list--load li {
    opacity: 0.4;
    pointer-events: none;
}

.select-list.active.select-list--load ul::before {
    content: '';
    width: 20px;
    height: 20px;
    border: 2px solid #000;
    display: block;
    border-radius: 50%;
    border-left-color: transparent;
    -webkit-animation: loadingrotate 0.5s linear infinite;
    animation: loadingrotate 0.5s linear infinite;
    position: absolute;
    left: 50%;
    top: 20px;
    margin-left: -10px;
}

.af-select--multiple .af-check-multiple {
    width: 18px;
    height: 18px;
    display: inline-block;
    position: absolute;
    right: 15px;
    top: 50%;
    margin-top: -9px;
    border-radius: 3px;
}

.af-select--multiple .af-check-multiple::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    background-size: 10px auto;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAiIGhlaWdodD0iOCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNOSAxTDQgNyAxIDQiIHN0cm9rZT0iIzUyNTE2NiIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz48L3N2Zz4=);
    opacity: 0.4;
}

.af-select--multiple .af-check-multiple::after {
    background-color: #ccc;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    content: '';
    border-radius: 3px;
    width: 40%;
    height: 40%;
    margin: auto;
    opacity: 0;
    -webkit-transition: 0.2s ease;
    transition: 0.2s ease;
}

.af-select--multiple .select-options li {
    padding: 0.75rem 40px 0.75rem 15px;
}

@media screen and (max-width: 480px) {
    .af-select--multiple .select-options li {
        padding: 1.5em 40px 1.5em 1.5em;
    }
}

.af-select--multiple .select-options li.active .af-check-multiple::before {
    opacity: 1;
}

.af-select--multiple .select-options li.active .af-check-multiple::after {
    width: 100%;
    height: 100%;
    margin: auto;
    opacity: 1;
}

/* ============================================== */
.section-tradein-banner {
    padding: 30px 0;
    color: #555;
}

@media screen and (min-width: 992px) {
    .section-tradein-banner {
        padding: 50px 0;
    }
}

.tradein-banner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
}

@media screen and (min-width: 992px) {
    .tradein-banner {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }
}

.tradein-banner__text {
    padding-top: 25px;
}

@media screen and (min-width: 992px) {
    .tradein-banner__text {
        width: 50%;
        padding-right: 30px;
        padding-top: 0;
    }
}

@media screen and (min-width: 992px) {
    .tradein-banner__img {
        width: 50%;
    }
}

.tradein-banner__text {
    line-height: 150%;
}

.tradein-banner__img {
    position: relative;
}

.tradein-banner__img-content {
    position: relative;
    z-index: 1;
    padding: 56px 38px 43px;
}

.tradein-banner__img-title {
    font-weight: 700;
    font-size: 24px;
    line-height: 130%;
    color: #FFFFFF;
    margin-bottom: 28px;
    max-width: 302px;
}

.tradein-banner img {
    max-width: 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    object-position: 60%;
}

/* ============= */
.section-how-to-work {
    padding: 30px 0;
    color: #555;
}

@media screen and (min-width: 992px) {
    .section-how-to-work {
        padding: 50px 0;
    }
}

.how-to-work__title {
    font-weight: 700;
    font-size: 24px;
    line-height: 130%;
    color: #555555;
    text-align: center;
    padding-bottom: 30px;
}

@media screen and (min-width: 992px) {
    .how-to-work__title {
        text-align: left;
    }
}

.how-to-work__desc {
    padding-bottom: 40px;
    text-align: center;
}

@media screen and (min-width: 992px) {
    .how-to-work__desc {
        text-align: left;
    }
}

@media screen and (min-width: 576px) {
    .how-to-work__steps {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin: -15px;
    }

    .how-to-work__steps > div {
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        -ms-flex-preferred-size: 360px;
        flex-basis: 360px;
        padding: 15px;
    }
}

.htw-step {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 30px;
}

.htw-step__number {
    width: 110px;
    height: 110px;
    background-color: #DC2F2F;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 40px;
    color: #fff;
    font-weight: bold;
    margin-bottom: 15px;
}

.htw-step__title {
    font-weight: 600;
    padding-bottom: 10px;
}

.htw-step__subtitle {
    text-align: center;
}

.section-tradein-advantages {
    padding: 30px 0;
    color: #555;
}

@media screen and (min-width: 992px) {
    .section-tradein-advantages {
        padding: 50px 0;
    }
}

.tradein-advantages__title {
    font-weight: 700;
    font-size: 24px;
    line-height: 130%;
    color: #555555;
    text-align: center;
    padding-bottom: 25px;
}

@media screen and (min-width: 992px) {
    .tradein-advantages__title {
        text-align: left;
    }
}

@media screen and (min-width: 992px) {
    .tradein-advantages__title {
        padding-bottom: 35px;
    }
}

.tradein-advantages__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: -11px;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}

.tradein-advantages__list > div {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    padding: 11px;
}

@media screen and (min-width: 576px) {
    .tradein-advantages__list > div {
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        -ms-flex-preferred-size: 440px;
        flex-basis: 440px;
        padding: 11px;
    }
}

@media screen and (min-width: 767px) {
    .tradein-advantages__list > div {
        -ms-flex-preferred-size: 320px;
        flex-basis: 320px;
    }
}

@media screen and (min-width: 992px) {
    .tradein-advantages__list > div {
        -ms-flex-preferred-size: 360px;
        flex-basis: 360px;
    }
}

.tradein-adv {
    background: #f9f9f9;
    border-radius: 6px;
    padding: 25px;
    height: 100%;
}

.tradein-adv__head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-bottom: 25px;
}

.tradein-adv__icon {
    width: 40px;
    height: 40px;
    -ms-flex-negative: 1;
    flex-shrink: 1;
    -ms-flex-preferred-size: 40px;
    flex-basis: 40px;
    margin-right: 15px;
}

/* ================== */
.section-tradein-rules {
    padding: 30px 0;
    color: #555;
}

@media screen and (min-width: 992px) {
    .section-tradein-rules {
        padding: 50px 0;
    }
}

.tradein-rules {
    color: #555;
}

.tradein-rules__title {
    font-weight: 700;
    font-size: 24px;
    line-height: 130%;
    color: #555555;
    text-align: center;
}

@media screen and (min-width: 992px) {
    .tradein-rules__title {
        text-align: left;
    }
}

.tradein-rules strong {
    color: #555;
}

.tradein-rules ul {
    list-style-type: none;
    line-height: 150%;
    margin-left: 0;
}

.tradein-rules ul li {
    padding-bottom: 0.5em;
    margin-left: 0;
}

.tradein-rules ul li::before {
    display: none;
}

/* ========================= */
@-webkit-keyframes side-up {
    from {
        -webkit-transform: translateY(10px);
        transform: translateY(10px);
        opacity: 0;
    }
    to {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes side-up {
    from {
        -webkit-transform: translateY(10px);
        transform: translateY(10px);
        opacity: 0;
    }
    to {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}

.tradein-question__title {
    font-weight: 700;
    font-size: 24px;
    line-height: 130%;
    color: #555555;
    text-align: center;
    padding-bottom: 25px;
}

@media screen and (min-width: 992px) {
    .tradein-question__title {
        text-align: left;
    }
}

.question-item {
    background-color: #fff;
    padding: 0 20px;
    border: 1px solid #ECECEC;
    border-radius: 3px;
    margin-bottom: -1px;
}

.question-item.open {
    background-color: #f9f9f9;
}

.question-item.open .question-item__desc {
    display: block;
}

.question-item.open .question-item__title::after {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.question-item__title {
    color: #DC2F2F;
    font-weight: 600;
    padding: 25px 0 13px;
    line-height: 19px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    cursor: pointer;
}

.question-item__title span:hover {
    text-decoration: underline;
}

.question-item__title::after {
    min-width: 1.6em;
    width: 1.6em;
    height: 1.6em;
    content: '';
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGcgY2xpcC1wYXRoPSJ1cmwoI3ByZWZpeF9fcHJlZml4X19jbGlwMF84MzFfMjUxKSI+PHBhdGggZD0iTTguNDQgMTEuODMxbDcuMzgtNi44NTFhLjU0NS41NDUgMCAwMC0uMDAyLS44MTIuNjU2LjY1NiAwIDAwLS44NzcgMEw4IDEwLjYxNCAxLjA2IDQuMTY5YS42NTYuNjU2IDAgMDAtLjg3OC0uMDAxLjU1Mi41NTIgMCAwMC0uMTgyLjQwNmMwIC4xNDcuMDYuMjk0LjE4MS40MDZsNy4zOCA2Ljg1MUEuNjQ1LjY0NSAwIDAwOCAxMmMuMTY1IDAgLjMyMy0uMDYuNDQtLjE2OXoiIGZpbGw9IiM1NTUiLz48L2c+PGRlZnM+PGNsaXBQYXRoIGlkPSJwcmVmaXhfX3ByZWZpeF9fY2xpcDBfODMxXzI1MSI+PHBhdGggZmlsbD0iI2ZmZiIgdHJhbnNmb3JtPSJyb3RhdGUoOTAgOCA4KSIgZD0iTTAgMGgxNnYxNkgweiIvPjwvY2xpcFBhdGg+PC9kZWZzPjwvc3ZnPg==);
    background-size: 14px auto;
    background-position: center;
    background-repeat: no-repeat;
    display: block;
    margin-left: auto;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}

.question-item__desc {
    padding-bottom: 25px;
    display: none;
    -webkit-animation: side-up 0.3s ease forwards;
    animation: side-up 0.3s ease forwards;
}

.section-tradein-seo {
    padding: 30px 0;
    color: #555;
}

@media screen and (min-width: 992px) {
    .section-tradein-seo {
        padding: 50px 0;
    }
}

.seo-block__title {
    font-weight: bold;
}

.section-tradein-ask {
    padding: 30px 0;
}

@media screen and (min-width: 992px) {
    .section-tradein-ask {
        padding: 50px 0;
    }
}

@media screen and (min-width: 576px) {
    .ask-block {
        border: 1px solid #ccc;
        padding: 40px;
    }
}

.ask-block.open .ask-block__form {
    display: block;
}

.ask-block.open .ask-block__btn span::before {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.ask-block__toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
}

@media screen and (min-width: 992px) {
    .ask-block__toggle {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
}

.ask-block__text {
    text-align: center;
    padding-bottom: 25px;
}

@media screen and (min-width: 992px) {
    .ask-block__text {
        padding-left: 30px;
        padding-bottom: 0;
    }
}

.ask-block__form {
    display: none;
    padding-top: 30px;
}

.ask-block__btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.ask-block__btn span {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #383838;
    color: #fff;
    padding: 0.8em 2.5em 0.8em 1.5em;
    margin: 0 auto;
    cursor: pointer;
    white-space: nowrap;
}

.ask-block__btn span:hover {
    opacity: 0.9;
}

.ask-block__btn span::before {
    content: '';
    width: 14px;
    height: 14px;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQiIGhlaWdodD0iMTQiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGcgY2xpcC1wYXRoPSJ1cmwoI3ByZWZpeF9fcHJlZml4X19jbGlwMF84MzFfMjQ2KSI+PHBhdGggZD0iTTcuMzg0IDEwLjM1Mmw2LjQ1OC01Ljk5NWEuNDc3LjQ3NyAwIDAwLS4wMDEtLjcxLjU3NC41NzQgMCAwMC0uNzY4IDBMNyA5LjI4Ny45MjcgMy42NDhhLjU3NC41NzQgMCAwMC0uNzY3LS4wMDEuNDgzLjQ4MyAwIDAwLS4xNi4zNTVjMCAuMTI5LjA1My4yNTcuMTU4LjM1NWw2LjQ1OCA1Ljk5NWMuMTAxLjA5NS4yNC4xNDguMzg0LjE0OGEuNTY2LjU2NiAwIDAwLjM4NC0uMTQ4eiIgZmlsbD0iI2ZmZiIvPjwvZz48ZGVmcz48Y2xpcFBhdGggaWQ9InByZWZpeF9fcHJlZml4X19jbGlwMF84MzFfMjQ2Ij48cGF0aCBmaWxsPSIjZmZmIiB0cmFuc2Zvcm09InJvdGF0ZSg5MCA3IDcpIiBkPSJNMCAwaDE0djE0SDB6Ii8+PC9jbGlwUGF0aD48L2RlZnM+PC9zdmc+);
    display: block;
    background-repeat: no-repeat;
    background-position: center;
    margin-right: 1em;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}

.t-form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
}

@media screen and (min-width: 992px) {
    .t-form {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        margin: 0 -15px;
    }

    .t-form > div {
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        margin: 0 15px;
        width: 50%;
    }

    .t-form__left textarea {
        height: calc(100% - 44px);
    }

    .t-form__left .form-control {
        height: 100%;
    }
}

.t-form__input label span {
    color: #DC2F2F;
}

.t-form__input textarea {
    min-height: 150px;
}

.t-form__btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    margin: -5px;
}

@media screen and (min-width: 992px) {
    .t-form__btn {
        max-width: 300px;
        margin-right: auto;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }
}

.t-form__btn > .btn {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    margin: 5px;
}

.t-form__policy .licence_block {
    padding-bottom: 1em;
}

.t-form__policy .licenses_popup {
    margin-bottom: 0;
}

.t-form__info {
    padding-bottom: 1em;
    font-size: 13px;
}

.t-form__info span {
    color: #DC2F2F;
}

.section-tradein-calculate {
    padding: 30px 0;
}

@media screen and (min-width: 992px) {
    .section-tradein-calculate {
        padding: 50px 0;
    }
}

.t-calculate {
    max-width: 952px;
    border: 1px solid #eee;
    margin: 0 auto;
    font-size: 13px;
}

.t-calculate__title {
    padding-bottom: 20px;
    padding: 20px 20px 0 20px;
    font-size: 20px;
    font-weight: 600;
    color: #000;
}

@media screen and (min-width: 375.98px) {
    .t-calculate__title {
        padding: 30px 30px 0 30px;
    }
}

@media screen and (min-width: 576px) {
    .t-calculate__title {
        padding: 50px 60px 0 60px;
        font-size: 25px;
        font-weight: 400;
    }
}

.t-calculate__params {
    padding: 20px 20px 0 20px;
    margin: -15px -15px;
    margin-bottom: 23px;
}

@media screen and (min-width: 375.98px) {
    .t-calculate__params {
        padding: 30px 30px 0 30px;
        margin-bottom: 30px;
    }
}

@media screen and (min-width: 992px) {
    .t-calculate__params {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin-bottom: 40px;
    }
}

@media screen and (min-width: 576px) {
    .t-calculate__params {
        padding: 30px 60px 0 60px;
    }
}

.t-calculate__select {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 360px;
    flex-basis: 360px;
    margin: 15px 15px;
}

.t-calculate__result {
    padding: 17px 20px 17px 20px;
    background-color: #f9f9f9;
}

@media screen and (min-width: 375.98px) {
    .t-calculate__result {
        padding: 25px 30px 25px 30px;
    }
}

@media screen and (min-width: 576px) {
    .t-calculate__result {
        padding: 35px 60px 15px 60px;
    }
}

@media screen and (min-width: 992px) {
    .t-calculate__more {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

.t-calculate__btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    font-size: 18px;
    padding-top: 30px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: -5px;
}

@media screen and (min-width: 992px) {
    .t-calculate__btn {
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        padding-top: 0;
    }
}

.t-calculate__btn > div {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 250px;
    flex-basis: 250px;
    margin: 5px;
}

.t-calculate__btn > div button {
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

@media screen and (min-width: 992px) {
    .t-calculate__btn > div {
        -webkit-box-flex: 0;
        -ms-flex-positive: 0;
        flex-grow: 0;
    }
}

.t-calculate__cost {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
}

@media screen and (min-width: 576px) {
    .t-calculate__cost {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        text-align: left;
    }
}

@media screen and (min-width: 992px) {
    .t-calculate__cost {
        padding-right: 40px;
    }
}

.t-calculate__cost-total {
    padding-top: 15px;
    padding-bottom: 5px;
}

@media screen and (min-width: 576px) {
    .t-calculate__cost-total {
        padding-top: 0;
        padding-bottom: 0;
    }
}

.t-calculate__cost-total span {
    font-size: 25px;
    color: #DC2F2F;
    font-weight: 500;
    white-space: nowrap;
}

.t-calculate__cost-text {
    line-height: 140%;
}

@media screen and (min-width: 992px) {
    .t-calculate__cost-text {
        max-width: 200px;
        margin-right: auto;
        line-height: 140%;
    }
}

@media screen and (min-width: 576px) {
    .t-calculate__cost-text {
        max-width: 300px;
        margin-right: auto;
    }
}

.t-calculate__info {
    padding-top: 15px;
    color: #000;
}

.t-calculate__info span {
    font-weight: 700;
}

@media screen and (max-width: 375.98px) {
    .t-calculate__info {
        text-align: center;
        font-size: 12px;
        line-height: 150%;
    }
}

.t-calculate__sale {
    position: relative;
    margin-bottom: 0;
}

@media screen and (min-width: 992px) {
    .t-calculate__sale {
        margin-right: 10px;
        margin-bottom: 0;
    }
}

.t-calculate__sale span {
    display: block;
    font-size: 9px;
    white-space: nowrap;
    position: absolute;
    bottom: 100%;
    right: 0;
}

.t-calculate__sale button {
    height: 48px;
}

.t-calculate__details button {
    height: 48px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.operating-params {
    padding: 5px;
    max-width: 1000px;
}

@media screen and (min-width: 767px) {
    .operating-params {
        padding: 20px;
    }
}

@media screen and (min-width: 992px) {
    .operating-params {
        padding: 40px 50px;
    }
}

.operating-params__title {
    padding-bottom: 20px;
    font-size: 20px;
    padding-right: 35px;
    color: #252525;
}

@media screen and (min-width: 767px) {
    .operating-params__title {
        font-size: 25px;
        padding-bottom: 35px;
    }
}

.operating-params__list {
    margin: -15px;
}

@media screen and (min-width: 576px) {
    .operating-params__list {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin: -10px;
    }
}

.operating-params__getsale {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.operating-params__getsale .btn {
    width: 100%;
    font-size: 13px;
}

.operating-params__result {
    margin: 30px -15px -15px -15px;
    padding: 15px;
    background-color: #f9f9f9;
}

@media screen and (min-width: 767px) {
    .operating-params__result {
        margin: 30px -30px -30px -30px;
        padding: 30px;
    }
}

@media screen and (min-width: 992px) {
    .operating-params__result {
        margin: 30px -60px -50px -60px;
        padding: 30px 60px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
}

.operating-params__cost {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: left;
}

@media screen and (min-width: 576px) {
    .operating-params__cost {
        text-align: left;
        padding-bottom: 25px;
    }
}

@media screen and (min-width: 992px) {
    .operating-params__cost {
        padding-right: 40px;
        padding-bottom: 0;
    }
}

.operating-params__cost-total {
    padding-top: 15px;
    padding-bottom: 17px;
}

@media screen and (min-width: 576px) {
    .operating-params__cost-total {
        padding-bottom: 17px;
    }
}

.operating-params__cost-total span {
    font-size: 25px;
    color: #DC2F2F;
    font-weight: 500;
    white-space: nowrap;
}

.operating-params__cost-text {
    line-height: 140%;
    font-size: 13px;
}

@media screen and (min-width: 992px) {
    .operating-params__cost-text {
        max-width: 200px;
        margin-right: auto;
        line-height: 140%;
    }
}

@media screen and (min-width: 576px) {
    .operating-params__cost-text {
        max-width: 300px;
        margin-right: auto;
    }
}

.item-og-params {
    border: 1px solid #ECECEC;
    border-radius: 2px;
    padding: 15px;
    margin: 15px;
}

@media screen and (min-width: 576px) {
    .item-og-params {
        -ms-flex-preferred-size: 300px;
        flex-basis: 300px;
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        margin: 10px;
    }
}

.item-og-params__title {
    font-size: 16px;
    font-weight: 500;
    color: #000;
    padding-bottom: 15px;
    margin-top: -3px;
}

@media screen and (min-width: 480px) {
    .item-og-params__title {
        font-size: 20px;
        line-height: 130%;
        margin-top: 0;
    }
}

.item-og-params__prop label {
    padding-bottom: 5px;
    border-bottom: 1px solid #eee;
    min-height: 54px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0;
}

.item-og-params__prop label:last-child {
    border-bottom: none;
}

.form input[type="text"],
.form input[type="tel"],
.form input[type="email"] {
    width: 100%;
    height: 48px;
    padding: 10px 1.5em;
    font-size: 13px;
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.form .t-attach {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.form .t-attach input {
    opacity: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.form input.invalid,
.form .t-attach input.invalid ~ .t-attach__btn{
  border-color: #dc2f2f;
}

.form input.invalid:valid,
.form .t-attach input.invalid:valid ~ .t-attach__btn{
  border-color: #ececec;
}

.form .t-attach__btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 48px;
    background-color: #f9f9f9;
    border: 1px solid #ECECEC;
    border-radius: 3px;
    padding: 0 2em 0 1em;
    margin-top: auto;
    cursor: pointer;
}

.form .t-attach__btn:hover {
    background-color: #f1f1f1;
}

.form .t-attach__btn::before {
    width: 20px;
    height: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    content: '';
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTguODI4IDIwYTMuNTIgMy41MiAwIDAxLTMuNTE1LTMuNTE2VjQuNjg3QTQuNjkzIDQuNjkzIDAgMDExMCAwYTQuNjkzIDQuNjkzIDAgMDE0LjY4OCA0LjY4OHYxMS43OTZoLTEuMTcyVjQuNjg3QTMuNTIgMy41MiAwIDAwMTAgMS4xNzJhMy41MiAzLjUyIDAgMDAtMy41MTYgMy41MTZ2MTEuNzk2YTIuMzQ2IDIuMzQ2IDAgMDAyLjM0NCAyLjM0NCAyLjM0NiAyLjM0NiAwIDAwMi4zNDQtMi4zNDRWNy4wMzFjMC0uNjQ2LS41MjYtMS4xNzItMS4xNzItMS4xNzItLjY0NiAwLTEuMTcyLjUyNi0xLjE3MiAxLjE3MnY5LjQ1M0g3LjY1NlY3LjAzMUEyLjM0NiAyLjM0NiAwIDAxMTAgNC42ODhhMi4zNDYgMi4zNDYgMCAwMTIuMzQ0IDIuMzQzdjkuNDUzQTMuNTIgMy41MiAwIDAxOC44MjggMjB6IiBmaWxsPSIjNTU1Ii8+PC9zdmc+);
    background-size: contain;
    background-position: center;
    margin-right: 0.5em;
}

.form .t-attach__label {
    padding-bottom: 15px;
    display: block;
    line-height: 150%;
}

@media screen and (min-width: 767px) {
    .form .t-attach__label {
        min-height: 74px;
    }
}

.form__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: -10px;
    padding-bottom: 15px;
}

.form__item .btn {
    width: 100%;
    margin-top: 35px;
}

.form__subitem {
    padding: 10px;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 300px;
    flex-basis: 300px;
    min-width: 0;
}

.form__input label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 13px;
    font-weight: 600;
}

.form__input label span {
    color: #DC2F2F;
    margin-left: 0.5em;
}

.get-discount {
    padding: 5px;
    max-width: 1000px;
}

@media screen and (min-width: 767px) {
    .get-discount {
        padding: 20px;
    }
}

@media screen and (min-width: 992px) {
    .get-discount {
        padding: 40px 50px;
    }
}

.get-discount__title {
    padding-bottom: 20px;
    font-size: 20px;
    padding-right: 35px;
}

@media screen and (min-width: 767px) {
    .get-discount__title {
        font-size: 25px;
        padding-bottom: 35px;
    }
}

@media screen and (min-width: 576px) {
    .get-discount__form .btn {
        max-width: 287px;
        margin: 0 auto;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        font-weight: 600;
    }
}

.thanks {
    max-width: 577px;
    padding: 20px;
}

.thanks__title {
    font-size: 25px;
    line-height: 130%;
    margin-bottom: 29px;
}

.thanks__desc {
    font-weight: 500;
    font-size: 13px;
    line-height: 130%;
    color: #777777;
    margin-bottom: 49px;
}

.t-attach-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: -5px;
    overflow-x: auto;
    width: 100%;
    padding: 5px;
    margin-top: 10px;
}

.t-attach-list__image {
    width: 62px;
    min-width: 62px;
    height: 62px;
    margin: 5px;
    border: 2px solid #DC2F2F;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 6px;
    position: relative;
}

.t-attach-list__image img {
    width: 100%;
    height: 100%;
    display: block;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 4px;
}

.t-attach-list__close {
    position: absolute;
    right: -8px;
    top: -10px;
    z-index: 5;
    background-color: #fff;
    color: #000;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    border-radius: 50%;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    font-size: 23px;
    font-weight: 300;
    -webkit-box-shadow: 0 0 5px -2px #000;
    box-shadow: 0 0 5px -2px #000;
    cursor: pointer;
}

/*# sourceMappingURL=style.css.map */