.flex--container {
    display: flex;
    margin-bottom: 1rem;
}
.gallery__motorcycle {
    display: flex;
    flex-direction: column;
    flex: 0 0 40%;
    width: 100%;
}
.gallery__motorcycle .gallery__motorcycle--title {
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: start;
    padding: 0 0 1rem 0;
    margin-top: -.3rem;
}
.gallery__motorcycle--title .moto__title,
.moto__item .moto__name,
.h1__style .moto__subtitle {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--orange);
}
.h1__style .moto__subtitle {
    font-size: 3rem;
    line-height: 3.4rem;
    font-weight: 800;
}
.moto__add-to-garage {
    margin-top: 1.5rem;
}
.moto__add-to-garage.addedToGarage::after {
    content: '';
    background: url("../svg/check.svg");
    width: 1.25rem;
    height: 1.25rem;
    margin-left: 0.5rem;
    transform: translateY(-1px);
}
.moto__add-to-garage.addedToGarage[disabled] {
    cursor: initial;
}
.gallery__motorcycle .moto__item {
    flex-direction: column;
}
.moto__item .settings {
    display: flex;
    /*padding: .8rem 0;*/
}
.moto__item .settings .settings__item,
.moto__list--container .settings__item {
    padding: 1rem 1.3rem;
    color: var(--orange);
    background: transparent;
    border: 1px solid var(--orange);
    cursor: pointer;
    text-transform: uppercase;
    text-decoration: none;
    font-size: .875rem;
    display: none;
}
.moto__query-wrapper {
    display: flex;
    flex-direction: column;
}
.dynamic__moto__form {
    display: flex;
    flex: 0 0 70%;
    position: relative;
}
.dynamic__moto__form .form_input:not(input[type="checkbox"]) {
    margin-bottom: 0;
    height: 50px;
}
.form__changer {
    cursor: pointer;
}
.moto__query--result .moto__result--item,
.moto__query--result .result__click--item {
    justify-content: start;
    display: flex;
    align-items: center;
    text-decoration: none;
    font-size: 1rem;
    color: #525252;
    padding: .6rem .7rem .6rem 1rem;
    transition: .6s;
    text-align: left;
}
.moto__query--result .moto__result--item:hover,
.moto__query--result .result__click--item:hover {
    background: #E0E0E0;
    transition: .6s;
}
.moto__query--result {
    border-radius: 0 0 5px 5px;
    padding: 0;
    top: 49px;
    flex: 0 0 70%;
    max-width: 100%;
}
.gallery__motorcycle .select__container {
    display: flex;
    gap: .5rem;
    justify-content: space-between;
    align-items: center;
}
.select__container .nice-select {
    width: 180px;
}
/*.select__container .submit__button {*/
/*    color: var(--white);*/
/*    background: var(--orange);*/
/*    border: none;*/
/*    cursor: pointer;*/
/*    border-radius: var(--border-radius);*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    align-items: center;*/
/*    min-height: 48px;*/
/*    padding: 0 .7rem;*/
/*    width: 155px;*/
/*}*/
.search__button.-delete.-fulltext {
    background-image: url('../../assets/svg/x.svg');
    background-size: 100%;
    display: block;
    width: 24px;
    height: 24px;
    position: absolute;
    right: 43px;
    top: 13px;
}
.moto__list--container {
    position: relative;
    display: flex;
    flex: 0 0 70%;
    flex-direction: column;
    gap: 1rem;
    align-items: start;
}
.moto__list--container .moto__query--result {
    width: 360px;
    max-width: 360px;
    max-height: 265px;
    overflow: hidden;
    overflow-y: hidden;
    overflow-y: scroll;
}
.moto__list--container .pseudo__input {
    background: white;
    border-radius: 3px;
    padding: 1rem;
    min-width: 280px;
    width: 100%;
    max-width: 360px;
    position: relative;
    cursor: pointer;
}
.moto__list--container .pseudo__input::after {
    content: '';
    position: absolute;
    right: 15px;
    background-image: url("/assets/svg/chevron-down.svg");
    width: 16px;
    height: 18px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}
/*.data-provider .h1__style {*/
/*    line-height: 1.9rem;*/
/*}*/
.switcher .settings-svg {
    width: 20px;
}
.switcher {
    margin-top: .2rem;
}
@media only screen and (max-width: 1023px) {
    .gallery__motorcycle {
        flex: 0 0 100%;
    }
    .gallery__motorcycle .select__container, .gallery__motorcycle .moto__query-wrapper {
        flex-direction: column;
    }
    .select__container .nice-select, .select__container .submit__button {
        width: 100%;
    }
}
@media only screen and (max-width: 790px) {
    .gallery__motorcycle .gallery__motorcycle--title {
        flex-wrap: wrap;
        gap: .5rem 2rem;
    }
    .h1__style .moto__subtitle {
        font-size: 2rem;
        line-height: 2.4rem;
        font-weight: 1000;
    }
}