

/* Start:/local/templates/autosalon/components/bitrix/news.list/main_slider/style.css?17605293391171*/
section.banner .swiper-slide {
    width: 100%;
    height: 100%;
    position: relative;
}
section.banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;

}
section.banner div.content {
    bottom: 20%;
    left: 15%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
section.banner div.content > * {
    margin: 20px;
}
section.banner div.content p {
    font-size: 22px;
}
section.banner div.content h1 {
    font-size: 54px;
    font-weight: 600;
    text-align: center;
}
section.banner div.buttons {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
}
section.banner div.buttons a {
    padding: 15px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 22px;
    text-transform: uppercase;
    font-weight: 600;
}

@media all and (max-width: 1000px) {
    section.banner div.content > p {
        text-align: center;
    }
    section.banner div.content h1 {
        font-size: 40px;
    }
    div.content > * {
        margin: 15px;
    }
    section.banner div.buttons a {
        padding: 10px 25px;
        font-size: 16px;
    }
}

/* End */


/* Start:/local/templates/autosalon/components/bitrix/catalog.filter/mototech/style.css?17639882757316*/
input#show_filter {
    display: none;
}
label.show_filter {
    display: block;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 10000;
    height: 0;
}
label.show_filter > div {
    position: absolute;
    top: 60px;
    left: 15px;
    background-color: var(--color-yellow);
    width: 60px;
    height: 60px;
    border-radius: 35px 35px;
    border: 4px solid #fff;
}
label.show_filter > div > img {
    width: 40px;
    height: 40px;
    margin: 10px;
}
input#show_filter:checked+div.form_container {
    display: flex;
}
label.show_filter:checked {
    top: 0;
    background-color: #f00;;
}

div.form_container {
    display: none;
    position: block;
    z-index: 10000;
    top: 60px;
    left: 0;
    width: calc(100% - 180px);
    margin: 0 auto;
    height: auto;
    /*max-height: 80vh;*/
    padding: 60px 30px 0;
}

form.main_filter {
    /*overflow: auto;*/
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    font-size: 22px;
    padding: 20px 0;
    width: 100%;
    border-radius: 20px;
    background-color: #ffffff;
    box-sizing: border-box;
    box-shadow: 0px 0px 10px 0px #000;
    max-width: 1100px;
    margin: 0 auto;
}
form.main_filter p {
    margin: 0;
}
form.main_filter > p {
    font-size: 34px;
    font-weight: 700;
    margin: 0 auto 50px;
    text-align: center;
}
form.main_filter div.filter_main, 
form.main_filter div.filter,
form.main_filter details {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    max-width: 80%;
    width: 100%;
    transition-duration: 0.1s;
    gap: 15px;
}
form.main_filter div.filter_main > div.filter {
    max-width: 100%;
}

form.main_filter div.filter {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}
form.main_filter details > div.filter {
    max-width: unset;
}
form.main_filter div.filter p {
    margin: 0;
    text-overflow: ellipsis;
    overflow: hidden;
}
form.main_filter div.filter svg {
    fill: #000;
}
form.main_filter div.filter > div {
    height: 45px;
    /*width: calc(100% / 7);
    margin-right: 10px;
    outline: 1px solid var(--color-light-gray);*/
}
/*form.main_filter div.filter > div:last-child {
    margin-right: 0;
}*/
form.main_filter div.filter > div.selector {
    padding: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    min-width: min-content;
    border: 1px solid var(--color-light-gray);
    border-radius: 15px;
    transition-duration: 0.1s;
    width: auto;
}
form.main_filter div.filter > div.selector label.selected {
    position: absolute;
    color: var(--color-gray);
    padding-top: 0;
    top: 0;
    font-size: 14px;
}
form.main_filter div.filter > div.selector > img {
    width: 15px;
    height: 10px;
    transition-duration: 0.25s;
}
form.main_filter div.filter > div.selector > div.container.show + form.main_filter div.filter > div.selector > img {
    transform: rotate(180deg);
}

form.main_filter div.filter > div.selector:hover {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}
form.main_filter div.filter > div.selector:hover > div.container {
    max-height: 400px;
    overflow-x: hidden;
    overflow-y: auto;
    transition: max-height 0.2s ease-in;
    border: 1px solid var(--color-light-gray);
}
form.main_filter div.filter > div.selector:hover > img {
    transform: rotate(180deg);
}

form.main_filter div.filter > div.selector > div.container {
    width: 100%;
    height: auto;
    max-height: 400px;
    position: absolute;
    left: 0;
    bottom: 0;
    transform: translateY(100%);
    background-color: #fff;
    color: var(--color-black);
    z-index: 1000;
    transition-duration: 0.2s;
    overflow-y: hidden;
    transition: max-height 0.2s ease-out;
    max-height: 0;
    scrollbar-color: var(--color-light-gray) #fff;
    scrollbar-width: thin;
    border: none;
    box-sizing: border-box;
}
form.main_filter div.filter > div.selector > div.container > div {
    display: flex;
    padding: 15px;
    border-bottom: 1px solid var(--color-light-gray);
}
form.main_filter div.filter > div.selector > div.container > div > label {
    width: 100%;
    font-size: 18px;
}
/*form.main_filter div.filter > div.selector > div.container > div.no_brand {
    display: none;
}
form.main_filter div.filter > div.selector > div.container > div.no_brand:last-of-type {
    display: flex;
}*/
form.main_filter div.filter > div.input {
    padding: 5px;
    font-size: 16px;
    border: 1px solid var(--color-light-gray);
    border-radius: 15px;
    width: auto;
}
form.main_filter button {
    background-color: #000;
    color: #fff;
    width: 100%;
    font-size: 18px;
    cursor: pointer;
    border-radius: 15px;
    border: none;
    outline: none;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow-y: hidden;
    padding: 15px 5px;
}
form.main_filter div.filter > div  > span,
form.main_filter div.filter > div  > label {
    padding: 5px;
    white-space: nowrap;
}
form.main_filter div.filter > div > input {
    background-color: transparent;
    width: 100%;
    outline: none;
    border: none;
    font-size: 18px;
}
form.main_filter details p.close {
    display: inline;
}
form.main_filter details p.open {
    display: none;
}
form.main_filter details[open] p.close {
    display: none;
}
form.main_filter details[open] p.open {
    display: inline;
}
form.main_filter summary {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
}
form.main_filter summary > svg {
    width: 40px;
    height: 32px;
    margin-right: 30px;
}
form.main_filter details > div {
    padding: 15px 0;
}
form.main_filter div.hoods {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
}
form.main_filter div.hoods img, form.main_filter div.hoods svg {
    width: 120px;
    height: 60px;
}
form.main_filter div.hoods > div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 15px;
}
form.main_filter div.hoods > div > input[type="checkbox"]:checked + label > svg {
    fill: var(--color-yellow);
    filter: drop-shadow(0px 0px 2px #00000073);
}
form.main_filter div.hoods > div > input {
    display: none;
}
form.main_filter details > a {
    text-align: center;
    display: block;
    color: #000;
}
div.filter_main a.button {
    margin: 0 auto;
    text-decoration: none;
    color: #000000;
}

@media all and (max-width: 1100px) {
    form.main_filter div.filter, form.main_filter details div.filter {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media all and (max-width: 850px) {
    form.main_filter div.filter, form.main_filter details div.filter {
        grid-template-columns: repeat(1, 1fr);
    }
    form.main_filter div.hoods img, form.main_filter div.hoods svg {
        width: 90px;
        height: 45px;
    }
}
@media all and (max-width: 700px) {
    label.show_filter > div {
        right: 5px;
        width: 50px;
        height: 50px;
    }
    label.show_filter > div > img {
        width: 30px;
        height: 30px;
    }
    div.form_container {
        width: calc(100% - 120px);
    }
    div.form_container {
        padding: 30px 30px 0;
    }
}
/* End */


/* Start:/local/templates/autosalon/components/bitrix/news.list/.default/style.css?17544871201523*/
section.cars_container {
    margin: 0 50px 0;
    padding: 60px 0 60px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    column-gap: 1%;
    row-gap: 30px;
    overflow: hidden;
    scroll-snap-align: start;
}

/*div.brand_filter + section.cars_container {
    padding: 0 0 60px;
}*/
section.cars_container > .card {
    color: #fff;
    /*border: 1px solid #fff;*/
    border-radius: 15px;
    margin: 0;
    max-width: 400px;
    overflow: hidden;
	text-decoration: none;
    background: #2b2b2b;
}
section.cars_container > .card > .photos {
    width: 100%;
    height: 295px;
    position: relative;
}
section.cars_container > .card > .photos img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
section.cars_container > .card > .photos > p.price {
    position: absolute;
    right: 0;
    bottom: 0;
    font-size: 35px;
    font-weight: 700;
    z-index: 1000;
    margin: 15px;
    color: #fff;
    text-shadow: 1px 1px 10px #000, -1px -1px 10px #000;
}

section.cars_container > .card > p {
    margin: 7px 10px;
}
section.cars_container > .card > p.name {}
section.cars_container > .card > p.specs {
    font-size: 14px;
}

div.pager {
    display: flex;
    justify-content: center;
    padding: 0 0 60px;
}

@media all and (max-width: 700px) {
    section.cars_container {
        margin: 0;
    }
    section.cars_container > .card {
        max-width: unset;
        width: 90%;
    }
    section.cars_container {
        padding: 30px 0 30px;
    }
}
/* End */
/* /local/templates/autosalon/components/bitrix/news.list/main_slider/style.css?17605293391171 */
/* /local/templates/autosalon/components/bitrix/catalog.filter/mototech/style.css?17639882757316 */
/* /local/templates/autosalon/components/bitrix/news.list/.default/style.css?17544871201523 */
