html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    outline: 0;
}

* {
    box-sizing: border-box;
}

:root {
    --header-custom-el-height-mobile: 0px;
    --header-custom-el-height-desktop: 0px;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
    margin: 0;
    font-family: "Poppins", sans-serif;
    background-color: #F3F3F3;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

.mobile {
    display: none !important;
}


.loading{
    display: none;
}

/*bg*/
.cont-bg {
    position: fixed;
    z-index: -1;
}

.cont-bg.bg-left {
    left: -319px;
    top: -150px;
}

.cont-bg.bg-right {
    right: -580px;
    top: -90px;
}

.container {
    max-width: 1000px;
    width: 95%;
    margin: auto;
}

.site-header {
    text-align: center;
    margin-bottom: 55px;
    margin-top: 50px;
}

.logo a{
    color: #2840C9;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 60px;
    margin-bottom: 55px;
    display: block;
    text-decoration: none;
}

.slogan {
    font-weight: 400;
    font-size: 24px;
    margin: 0;
}

.slogan b {
    font-weight: 700;
}

.vehicle-selector {
    background-color: #fafafa;
    display: flex;
    flex-wrap: wrap;
    padding: 21px 20px 21px 30px;
    border-radius: 12px;
    box-shadow: 4px 4px 10px 0px rgba(0, 0, 0, 0.03);
}

.vehicle-selector .car-select-ico {
    width: 90%;
    max-width: 190px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-right: 2px solid #e9e9e9;
    margin-right: 8px;
}

.vehicle-selector .car-select-ico span {
    font-size: 18px;
    font-weight: 600;
    padding-left: 16px;
    color: #2840C9;
    line-height: 1.3;
}

.custom-select-wrapper {
    position: relative;
    margin-right: 10px;
    width: calc((100% / 4) - 77px);
}

.custom-select {
    position: relative;
    height: 54px;
    border-radius: 8px;
    padding: 14px 12px 6px 57px;
    cursor: pointer;
}

.custom-select:after {
    content: '';
    width: 12px;
    height: 15px;
    background: url(../assets/images/CaretDown.png);
    position: absolute;
    right: 0;
    top: 21px;
}

.custom-select.active {
    border-color: #2A45FF;
}

.custom-select .circle {
    position: absolute;
    top: 12px;
    left: 10px;
    width: 32px;
    height: 32px;
    background: #e9e9e9;
    color: #222;
    border-radius: 50%;
    text-align: center;
    line-height: 32px;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.custom-select-wrapper.has-value .circle {
    background: #2A45FF;
    color: white;
}

.custom-select .label {
    position: absolute;
    top: 20px;
    left: 57px;
    font-size: 14px;
    color: #222;
    font-weight: 600;
    transition: all 0.2s ease;
    pointer-events: none;
}

.custom-select-wrapper.has-value .label,
.custom-select.active .label {
    top: 4px;
    font-size: 12px;
    line-height: 1.3;
    font-weight: 500;
    color: #989898;
}

.custom-select .selected {
    font-size: 14px;
    color: #2A45FF;
    margin-top: 6px;
    font-weight: 700;
}

.custom-select .selectedValue {
    display: none;
}

.options {
    display: none;
    position: absolute;
    top: 77px;
    left: 0;
    width: 345px;
    padding: 20px;
    background: white;
    border-top: none;
    border-radius: 0 0 8px 8px;
    max-height: 270px;
    overflow-y: auto;
    z-index: 10;

    ;
}

.options div {
    cursor: pointer;
    padding: 14px;
    background: #F3F3F3;
    font-size: 14px;
    color: #222;
    font-weight: 500;
    margin-bottom: 10px;
    border-radius: 7px;
    align-items: center;
    display: flex
}

.options div:hover {
    background-color: #f0f0f0;
}

.options div>input[type="radio"] {
    margin: 0 5px;
}

.custom-select-button {
    margin-left: 10px;
    max-width: 56px;
}

.custom-select-button>a {
    width: 56px;
    height: 56px;
    background: #2840C9;
    border-radius: 50%;
    display: flex;
    text-align: center;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.question-area,  .question-area-modal{
    margin-top: 20px;
    background: #fff;
    padding: 21px 30px;
    border-radius: 7px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: end;
}
.question-area{display: none;}
.question-ico {
    width: 90%;
    max-width: 190px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-right: 22px;
}

.question-ico span {
    font-size: 18px;
    font-weight: 600;
    padding-left: 16px;
    color: #2840C9;
    line-height: 1.3;
}

.textarea-header {
    width: calc(100% - 212px);
    display: block;
    border: 1px solid #989898;
    border-radius: 7px;
    padding: 10px;
    background: #F6F6F6;
}

.icon {
    background-color: #2840C9;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

textarea#user-question, textarea#user-questionModal {
    min-height: 180px;
    padding: 10px;
    resize: none;
    font-family: inherit;
    width: 100%;
    border: 0;
    background: #F6F6F6;
    outline: none;
    font-size: 16px;
}

.char-count {
    text-align: right;
    font-size: 12px;
    color: #888;
    margin-top: 6px;
}

.submit-btn {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 20px;
    padding: 18px 20px 18px 30px;
    border: none;
    border-radius: 50px;
    background-color: #2840C9;
    color: white;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
}


.question-area .submit-btn i, .bottom-modal .submit-btn i {
    background: url(../assets/images/send.png);
    width: 21px;
    height: 19px;
    display: inline-block;
    margin-left: 17px;
}

.hero {
    display: flex;
    flex-wrap: wrap;
    margin: auto;
    margin-top: 60px;
    align-items: center;
    max-width: 860px;
}

.hero-image img {
    max-width: 100%;
    border-radius: 10px;
}

.hero>div {
    width: 50%;
}

.hero .hero-text {
    text-align: center;
    padding: 0 40px;
}

.hero .hero-text p {
    font-size: 22px;
    font-weight: 400;
    line-height: 32px;
    color: #000;
}

.hero .hero-text p b {
    color: #2840C9;
}

.result-404{
    text-align: center;
    font-size: 16px;
    line-height: 24px;
}
.result-404 img{
    margin:auto; width:200px;
    margin-top: 30px;
}
.question-ai {
    width: 100%;
    background: #fff;
    border-radius: 7px;
    margin-top: 20px;
    padding: 30px;
    margin-bottom: 60px;
    text-align: center;
    display: none;
}

.question-ai .result{
    text-align: left;
}

.question-ai .problems {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-bottom: 40px;
}

.question-ai .problems .avatar {
    padding-top: 30px;
    font-size: 18px;
    font-weight: 600;
    color: #2840C9;
    line-height: 1.3;
    width: 210px;
}

.question-ai .problems .que {
    max-width: calc(100% - 210px);
    background: #f6f6f6;
    border-radius: 20px;
    padding: 30px;
    font-size: 14px;
    color: #000;
    font-weight: 400;
    line-height: 22px;
}

.question-ai .problems.reply .que {
    background: #E9F2FF;
}

.question-ai .problems.reply .avatar {
    font-size: 16px;
}

.question-ai .problems.sponsor {
    justify-content: flex-end;
}

.question-ai .problems.sponsor .que {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}

.question-ai .problems.sponsor .que>span {
    width: calc(100% - 140px);
    padding-right: 20px;
}

.question-ai .problems.sponsor em {
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    font-style: normal;
}

.question-ai .problems.sponsor em.blue {
    color: #2840C9;
}

.question-ai .problems.sponsor em.yellow {
    color: #F9CA3F;
}

.question-ai .problems.sponsor .que>span mark {
    display: block;
    background: none;
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
    color: #C4C4C4;
    margin-top: 10px;
}

.question-ai .problems.sponsor .que a {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
    text-decoration: none;
    border: 2px solid #2840C9;
    padding: 10px 20px;
    border-radius: 50px;
}


.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.25);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.bottom-modal {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    min-height: 530px;
    height: calc(50vh + 100px);
    background: white;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.modal-backdrop.show {
    opacity: 1;
}

.bottom-modal.show {
    transform: translateY(0);
}

body.modal-open {
    overflow: hidden;
}


@media screen and (max-width: 900px) {
    .cont-bg.bg-right {
        display: none;
    }

    .mobile {
        display: block !important;
    }

    .cont-bg.bg-left {
        top: -39px;
        left: -860px;
    }

    .container {
        max-width: none !important;
        width: 90%;
        margin: 0 auto;
    }

    .site-header {
        margin-top: 30px;
        margin-bottom: 40px;
    }

    .logo a{
        font-size: 42px;
        margin-bottom: 30px;
    }

    .slogan {
        font-size: 20px;
        max-width: 222px;
        display: block;
        margin: 0 auto;
    }

    .vehicle-selector .car-select-ico {
        width: 100%;
        max-width: none;
        border-right: 0;
        justify-content: flex-start;
        margin-right: 0;
        border-bottom: 1px solid #E9E9E9;
        padding-bottom: 20px;
    }

    .custom-select-wrapper {
        width: 100%;
        margin-bottom: 10px;
    }

    .custom-select {
        height: 42px;
    }

    .custom-select .label {
        font-size: 16px;
        top: 21px;
    }

    .custom-select-button {
        margin-top: 20px;
        padding-top: 30px;
        border-top: 1px solid #E9E9E9;
        width: 100%;
        max-width: none;
        justify-content: flex-end;
        display: flex;
    }

    .custom-select-button>a {
        width: 180px;
        border-radius: 50px;
        color: #fff;
        text-decoration: none;
        display: flex;
        justify-content: space-between;
        padding-right: 12px;
        padding-left: 40px;
    }

    .question-ico {
        max-width: none;
        width: 100%;
        justify-content: flex-start;
        margin-bottom: 20px;
        padding-bottom: 20px;
        margin-right: 0;
    }

    .question-area, .question-area-modal {
        position: relative;
    }

    .textarea-header {
        width: 100%;
        margin-bottom: 20px;
        position: relative;
    }

    /*.textarea-header:after {
        content: '';
        height: 1px;
        position: absolute;
        background: #E9E9E9;
        bottom: -20px;
        width: 95vw;
        left: -7vw;
    }

    .textarea-header:before {
        content: '';
        height: 1px;
        position: absolute;
        background: #e9e9e9;
        top: -20px;
        width: 95vw;
        left: -7vw;
    }
    */
    .question-area .submit-btn i {
        display: none;
    }

    .submit-btn {
        padding-left: 30px;
        padding-right: 32px;
    }

    .hero>div {
        width: 100%;
    }

    .hero .hero-image {
        order: 1;
        margin-top: 30px;
    }

    .hero .hero-text p {
        font-size: 18px;
        line-height: 28px;
    }

    .hero .hero-text p b {
        font-weight: 700;
    }

    .hero .hero-text p:first-child {
        margin-bottom: 20px;
    }

    .question-ai {
        padding-left: 30px;
    }

    .question-ai .problems .que {
        background: none !important;
        border-radius: 0;
        max-width: 100% !important;
    }

    .question-ai .problems {
        background: #F6F6F6;
        border-radius: 20px;
        margin-bottom: 30px;
    }

    .question-ai .problems .avatar {
        display: block;
        text-align: center;
        width: 100%;
    }

    .question-ai .problems.reply {
        background: #E9F2FF;
    }

    .question-ai .problems.sponsor .que>span {
        width: 100%;
        font-size: 15px;
        line-height: 22px;
    }

    .question-ai .problems.sponsor .que a {
        display: block;
        margin: 0 auto;
    }

    .question-ai .problems.sponsor em {
        font-size: 17px;
    }

    .question-ai .problems.sponsor .que>span mark {
        font-size: 12px;
    }

}



/*motor seç*/
.modal-content .options {
    display: block;
    position: inherit;
    width: 100%;
    padding: 0;
    max-height: 350px;
    padding: 20px 40px;
}

.title-head {
    padding: 20px 30px;
    border-bottom: 1px solid #e9e9e9;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.title-head .title {
    font-size: 18px;
    font-weight: 600;
    color: #2840c9;
    width: 100%;
    line-height: 1.3;
    margin-bottom: 5px;
}

.title-head .breadcrump {
    width: 100%;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.3;
    color: #989898;
}

.modal-content .options>div {
    padding: 16px 20px;
}

.bottom-modal .buttons {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 30px;
    border-top: 1px solid #e9e9e9;
}

.bottom-modal .buttons>a {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
}

.bottom-modal .buttons>a.cancel {
    color: #222;
}

.bottom-modal .buttons>button.continue {
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    background: #2840C9;
    padding: 17px 22px;
    border-radius: 50px;
}

/*sorun nedir*/
.question .title-head .question-ico {
    width: auto;
    margin-bottom: 0;
    padding-bottom: 0;
}

.question .title-head .title {
    width: calc(100% - 61px);
    margin-bottom: 0;
    margin-left: 15px;
}
.select-car-info {
    padding: 20px 40px;
}

.select-car-info .breadcrump {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.3;
    color: #222;
    display: block;
}

.bottom-modal.question .textarea-header textarea#user-questionModal {
    min-height: 200px;
}

.bottom-modal.question .question-area-modal {
    padding: 0 20px;
    margin: 0;
    border-top: none;
}

.bottom-modal.question .textarea-header:before, .bottom-modal.question .textarea-header:after {
    display: none;
}

.bottom-modal.question .question-area-modal .textarea-header {
    margin-bottom: 0;
}

.custom-select-wrapper.disabled {
    pointer-events: none;
    opacity: 0.5;
}
button.disabled {
    pointer-events: none;
    opacity: 0.5;
}