﻿@import url(link/link.css);
@import url(button/button.css);
@import url(icon/icon.css);
@import url(dropdown/dropdown.css);
@import url(text/text.css);
@import url(input/input.css);
@import url(slider/slider.css);
@import url(tab/tab.css);
@import url(checkbox/checkbox.css);

:root {
    --secondery: #eff4f9;
    --selection-bg-color: #ffecc2;
    --light-border: #f3f3f3;
    --light-background: #f3f3f3;
    --border: #dbe7f3;
    --primary: #5c99f4;
    --third: #f4ce5c;
    --text-color-dark: #333333;
    --text-color-light: #969696;
    --bd-main: #ffffff;
    --bd-footer: #000;
    --gray: #ccc;
    --warning: #ff8c69;
    --info: #98fb98;
    --success: #80ff80;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    letter-spacing: 0.035rem;
    outline: none;
}

html {
    font-size: 10px;
    height: 100%;
}

body {
    background-color: var(--bd-main);
    font-family: "Montserrat", sans-serif;
    font-size: 1.4rem;
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

setting {
    display: none;
}

ul {
    list-style: none;
}

th, td {
    max-width: 30rem;
    padding: 1rem;
    border: 1px solid var(--secondery);
}

th {
    background-color: var(--secondery);
    border-color: var(--light-border);
}

th div {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.form {
    width: 30rem;
}

.select-list {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.select-list_item {
    font-size: 1.8rem;
    padding: 1rem 0.5rem;
    cursor: pointer;
}

.select-list_item:hover {
    background-color: var(--secondery);
}

.select-list_item:active, .select-list_item.active {
    background-color: var(--primary);
    color: white;
}

.btn-filial {
    border-bottom: 1px dashed var(--text-color-light);
    cursor: pointer;
}

.menu {
    border: solid 1px var(--border);
    border-radius: 0.2rem;
    padding: 0;
}

.menu__item {
    padding: 1rem;
    font-weight: bold;
}

.menu__item:not(:last-child) {
    border-bottom: solid 1px var(--border);
}

.navbar-brand {
    margin-right: 0;
}

    .navbar-brand .dropdown {
        z-index: 20;
        display: flex;
        justify-self: flex-start;
    }

        .navbar-brand .dropdown > .link {
            display: flex;
            justify-self: flex-start;
        }

.divider {
    display: flex;
    border: none;
    border-bottom: 1px solid var(--border);
    margin-bottom: 2rem;
    margin-top: 2rem;
    background-color: transparent;
}

.modal-error {
    margin-top: -1rem;
}

.container-spinner {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    position: fixed;
    z-index: 1000;
}

.container-spinner__background {
    width: 100%;
    height: 100%;
    background-color: var(--bd-main);
    position: absolute;
    opacity: 0.4;
}

.select {
    border: solid 1px var(--light-border);
    height: 3rem;
    outline: none;
    width: 20rem;
    background: url(../Motorsway/img/down-arrow.png) no-repeat;
    background-position: 97% 50%;
    background-size: 16px 16px;
    appearance: none;
}

.path {
    stroke-dasharray: 50;
    stroke-dashoffset: 610;
    animation: dash 3s linear infinite;
    z-index: 1001;
}

.div-link {
    cursor: pointer;
    color: #0d6efd;
    text-decoration: underline;
}

.div-link:hover {
    color: #0a58ca;
}

@keyframes dash {
    0% {
        stroke-dashoffset: 500;
        stroke: rgb(46, 49, 146);
    }

    50% {
        stroke-dashoffset: 0;
        stroke: rgb(0, 174, 239);
    }

    100% {
        stroke-dashoffset: 500;
        stroke: rgb(46, 49, 146);
    }
}

.triangle {
    border: 20px solid transparent;
    border-top: 20px solid var(--secondery);
    border-right: 20px solid var(--secondery);
    position: absolute;
    top: 0;
    right: 0;
    display: none;
    cursor: pointer;
}

.triangle > i {
    position: absolute;
    top: -12px;
    font-size: 1.6rem;
    color: var(--primary);
}

/* Header */

.header {
    margin-bottom: 1rem;
}
.header-top {
    background-color: var(--light-border);
}

.header-top__menu {
    margin-top: 1.5rem;
    margin-bottom: 0;
}

.header-top__menu-item {
    margin-right: 1.6rem;
}

.header-top__menu-strip {
    height: 0.2rem;
    background-color: transparent;
    margin: 0;
    margin-top: 0.8rem;
    display: flex;
    width: 100%;
}

.header-top__link_active + .header-top__menu-strip {
    background-color: var(--third);
}

.header-middle {
    padding: 4.6rem 0 4rem;
}

.header-search-form__razor {
    width: 100%;
    margin: 0 2rem;
}

.header-middle__logo img {
    height: 6.5rem;
}

.header-middle__phone,
.header-middle__cart{
    position: relative;
    align-items: center;
}

.header-middle__phone-number {
    color: var(--text-color-dark);
    font-weight: bold;
    font-style: italic;
}

.header-bottom {
    background-color: var(--secondery);
}

.header-bottom__history {
    position: absolute;
    top: -10rem;
    background-color: white;
    border: 1px solid var(--border);
    opacity: 0;
    height: 10rem;
    border-bottom: none;
    transition: opacity 0.25s;
    display: none;
    overflow: auto;
}

.header-bottom__history_active {
    opacity: 1;
    display: block;
}
.warning-block {
    background-color: var(--warning);
}

.header-search-form {
    display: flex;
    position: relative;
    z-index: 2;
}

.header-search-form__input {
    width: calc(100% + 2.5rem);
    height: 5rem;
    padding-left: 2.9rem;
    color: var(--text-color-dark);
    border: none;
    outline: none;
    display: inline-flex;
}

.header-search-form__input::placeholder {
    color: var(--text-color-light);
}

.header-search-form__button {
    margin-left: -2.5rem;
}

.header__nert {
    color: black;
    font-size: 1.2rem;
}

.header__nert:hover {
    color: var(--text-color-dark);
}

@media (max-width: 991.98px) {
    .header-top__menu-strip {
        display: none !important;
    }

    .header-top__menu-item {
        text-align: center;
        font-weight: bold;
        margin: 0;
    }
}

@media (max-width: 767.98px) {
    .header-top {
        background-color: var(--bd-main);
    }

    .user-dropdown__info {
        background-color: var(--bd-main);
    }

    .header-middle__logo {
        display: flex;
        justify-content: center;
    }
}

@media (max-width: 376px) {
    .button-garage::after {
        display: none;
    }
}

/* + Home */
.carousel {
    margin-top: 3rem;
    margin-bottom: 3.1rem;
}

.carousel-indicators {
    justify-content: flex-start;
    margin-left: 4.5rem;
}

    .carousel-indicators > li {
        width: 1rem !important;
        height: 1rem !important;
        border-radius: 50%;
        background-color: var(--bd-main);
        opacity: 1;
    }

.carousel-garage .carousel-indicators {
    margin-left: 9.3rem;
}

    .carousel-garage .carousel-indicators > li {
        background-color: #c7c7c7;
    }

.carousel-garage:hover .carousel-indicators > li {
    background-color: var(--bd-main);
}

.carousel-garage .carousel-control-prev i,
.carousel-garage .carousel-control-next i {
    color: var(--primary);
    font-size: 1.4rem;
}

.carousel-garage:hover .carousel-control-prev i,
.carousel-garage:hover .carousel-control-next i {
    color: var(--bd-main);
}

.carousel-garage .carousel-control-prev,
.carousel-garage .carousel-control-next {
    position: absolute;
    width: 1.4rem;
    height: 1.4rem;
    top: 32.3rem;
    left: 2.5rem;
    z-index: 20;
}

.carousel-garage .carousel-control-next {
    left: 18rem;
}

.carousel-indicators > .active {
    background-color: var(--third) !important;
    width: 1.2rem !important;
    height: 1.2rem !important;
    margin-left: 0.2rem;
    margin-right: 0.2rem;
    margin-top: -0.1rem;
}

.carousel-item__content {
    display: flex;
    background-image: linear-gradient(to top, #77aaf7, #3982ee);
}

.carousel-item__text {
    color: #fff;
    margin-top: 6.3rem;
    margin-left: 3.9rem;
    margin-right: 1rem;
    margin-bottom: 6rem;
    letter-spacing: 0.5px;
}

    .carousel-item__text > div {
        font-size: 4rem;
        font-weight: bold;
        letter-spacing: 1px;
    }

.carousel-item__img {
    margin: 4.2rem 2.8rem 5.9rem 0;
}

    .carousel-item__img > img {
        width: 32.2rem;
        height: 25.4rem;
    }

.carousel-garage {
    margin-top: 3rem;
    margin-bottom: 3rem;
}

    .carousel-garage .garage-item {
        margin: 0;
    }

.garage-item {
    margin-bottom: 3rem;
    padding: 0;
    display: flex;
    border: solid 1px #dbe7f3;
    border-radius: 0.5rem;
}

    .garage-item > div:not(:first-child) {
        width: 100%;
    }

.carousel-garage-item {
    padding: 0;
    display: flex;
    border: solid 1px #dbe7f3;
    border-radius: 0.5rem;
}

.carousel-garage-item__title {
    background-color: var(--secondery);
    justify-content: center;
    border-radius: 0.5rem 0 0 0.5rem;
}

.garage-item__form select {
    color: var(--text-color-light);
}

.garage-item__title {
    background-color: var(--secondery);
    justify-content: center;
    border-radius: 0.5rem 0 0 0.5rem;
}

.garage-item__text {
    color: var(--text-color-dark);
    margin-left: 3.2rem;
    margin-bottom: 2rem;
    font-weight: bold;
}

.garage-item__amount-gasoline {
    margin-left: 3.2rem;
    margin-top: 2rem;
}

.garage-item__img {
    margin: 2.4rem;
}

.strip {
    width: 3.7rem;
    height: 0.3rem;
    margin-left: 3rem;
    margin-top: -1rem;
    background-color: var(--third);
}

.garage-item__form {
    display: flex;
    flex-direction: column;
    margin: 1.5rem;
}

    .garage-item__form input,
    .garage-item__form select {
        height: 4rem;
        width: 100%;
        border: solid 1px #dbe7f3;
        border-radius: 0.5rem;
        padding-left: 1.7rem;
        margin-top: 1rem;
    }

.garage-item__form_profile > * {
    margin-left: 1.8rem;
}

select > option {
    border: solid 1px #dbe7f3;
}

    select > option:hover {
        background-color: var(--bd-main);
        border: solid 1px #dbe7f3;
    }

.garage-item__form > input[type="submit"] {
    border: none;
    background-color: var(--third);
    font-weight: bold;
    color: #fff;
    padding-left: 0;
}

.garage-item__info {
    margin: 2.5rem 0 1.8rem;
    justify-content: space-around;
}

.garage-item__info_title {
    font-weight: bold;
    margin-bottom: 2rem;
}

.info__text-item {
    color: var(--text-color-dark);
    margin-top: 0.8rem;
}

 /*   .info__text-item:hover {
        color: #f4ce5c;
        font-size: 1.6rem;
        font-weight: 600;
        margin-top: 0.5rem;
        text-decoration: underline;
        cursor: pointer;
    }

        .info__text-item:hover:first-child {
            margin-top: -0.3rem;
        }

.carousel-garage:hover {
    box-shadow: 0 0.8rem 4rem rgba(0, 0, 0, 0.15);
    z-index: 1;
    border-radius: 0.5rem;
}

    .carousel-garage:hover .carousel-garage-item {
        border: none;
        margin: 0.1rem;
    }

    .carousel-garage:hover .carousel-garage-item__title {
        background-image: linear-gradient(to bottom, #77aaf7, #3982ee);
        border: none;
        border-radius: 0.5rem 0 0 0.5rem;
    }

        .carousel-garage:hover
        .carousel-garage-item__title > .garage-item__amount-gasoline {
            color: white;
        }

        .carousel-garage:hover .carousel-garage-item__title > .garage-item__text > div {
            color: white !important;
        }

.garage-item:hover {
    border: none;
    box-shadow: 0 1.1rem 5rem rgba(0, 0, 0, 0.2);
    z-index: 1;
    margin: 0.1rem;
}

    .garage-item:hover > .garage-item__title {
        background-image: linear-gradient(to bottom, #77aaf7, #3982ee);
        border: none;
        border-radius: 0.5rem 0 0 0.5rem;
    }

        .garage-item:hover > .garage-item__title > .garage-item__amount-gasoline {
            color: white;
        }

        .garage-item:hover > .garage-item__title > .garage-item__text > div {
            color: white !important;
        }*/

.garage-item__info_links {
    margin-top: 1.8rem;
}

    .garage-item__info_links .link {
        color: var(--text-color-light);
        display: inline-flex;
        text-decoration: underline;
        margin-right: 1rem;
    }

    .garage-item__info_links .link-car::before {
        position: relative;
        font-size: 1.4rem;
        margin-right: 0.2rem;
        content: "\f1b9";
        font-family: FontAwesome;
        color: var(--text-color-light);
    }

    .garage-item__info_links .link-change::before {
        position: relative;
        font-size: 1.4rem;
        margin-right: 0.2rem;
        content: "\f013";
        font-family: FontAwesome;
        color: var(--text-color-light);
    }

    .garage-item__info_links .link-trush::before {
        position: relative;
        font-size: 1.4rem;
        margin-right: 0.2rem;
        content: "\f1f8";
        font-family: FontAwesome;
        color: var(--text-color-light);
    }

    .garage-item__info_links .link:first-child {
        margin-bottom: 0.6rem;
    }

.inner-block {
    padding-right: 0;
    margin-bottom: 3rem;
}

.content-block {
    border: solid 1px #dbe7f3;
    padding: 0;
    position: relative;
    border-radius: 0.5rem;
    height: 29.9rem;
    /* margin-left: 1.4rem; */
}

.content-block__title {
    background-color: var(--secondery);
    font-weight: bold;
    padding-top: 19.1rem;
    padding-left: 2rem;
    padding-right: 8rem;
    color: var(--text-color-dark);
}

.content-block__title-hor {
    background-color: var(--secondery);
    min-width: 100%;
    font-weight: bold;
    align-self: flex-end;
    font-size: 2rem;
    margin-top: 2.6rem;
    padding-left: 2rem;
    color: var(--text-color-dark);
}

    .content-block__title-hor div {
        margin-top: 2rem;
    }

.content-block__img img {
    position: relative;
    top: 2.4rem;
    right: 9rem;
}

.content-block__img-hor {
    position: relative;
    right: 21.4rem;
    top: -0.1rem;
}

.col-6:last-child .inner-block .content-block__img-hor {
    right: 22.3rem;
}
/*
.content-block:hover {
    background-image: linear-gradient(to bottom, #77aaf7, #3982ee);
    border-radius: 0.5rem;
    box-shadow: 0 0.8rem 4rem rgba(0, 0, 0, 0.15);
    z-index: 1;
    border: none;
    padding-left: 0.1rem;
    padding-top: 0.1rem;
}

    .content-block:hover .content-block__title {
        background-color: transparent;
        color: white;
    }

    .content-block:hover .content-block__title-hor {
        background-color: transparent;
        color: white;
        margin-bottom: 0.1rem;
    }

    .content-block:hover .content-block__img-hor {
        right: 21.5rem;
    }

.col-6:last-child .inner-block .content-block:hover .content-block__img-hor {
    right: 22.4rem;
}

.content-block:hover .more-details {
    color: orange;
}

    .content-block:hover .more-details::after {
        color: orange;
    }*/

.category-title {
    font-weight: bold;
}

.card {
    border: solid 1px #dbe7f3;
    border-radius: 0.5rem;
    margin-bottom: 3rem;
    height: 25.5rem;
}

    .card > img {
        display: flex;
        margin: auto;
    }

    /*.card:hover {
        border: none;
        box-shadow: 0 0.8rem 3rem rgba(0, 0, 0, 0.3);
        z-index: 1;
    }

        .card:hover > .card-body {
            border-radius: 0 0 0.5rem 0.5rem;
            background-color: #5c99f4;
        }

            .card:hover > .card-body > .card-title {
                color: white;
            }
        */
.card-body {
    background-color: var(--secondery);
    border-radius: 0 0 0.5rem 0.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    max-height: 7.6rem;
}

.card-title {
    font-weight: bold;
    font-size: 2rem;
    color: var(--text-color-dark);
    text-decoration: none;
    text-align: center;
}

    /*.card-title:hover {
        text-decoration: none;
    }*/

.card-img-top {
    width: auto;
}

@media (max-width: 575.98px) {
    .carousel-item__text {
        font-size: 1.6rem !important;
        margin-top: 4rem;
    }

        .carousel-item__text > div {
            font-size: 3.4rem;
            font-weight: bold;
            letter-spacing: 1px;
        }

    .category-title {
        text-align: center;
    }

    .inner-block {
        margin-bottom: 2.5rem;
    }

    .content-block {
        height: 20rem;
    }

    .content-block__img img {
        top: 5.4rem;
        right: 6rem;
        width: 18rem;
        height: 12rem;
    }

    .content-block__img-hor {
        position: relative;
        right: 10.6rem;
        top: -0.1rem;
    }

        .content-block__img-hor img {
            width: 10.8rem;
            height: 15rem;
        }

    .content-block__title {
        font-size: 1.8rem;
        padding-top: 1rem;
        padding-left: 1rem;
        padding-right: 3rem;
    }

        .content-block__title .more-details {
            margin-top: 10rem;
            font-size: 1.4rem;
        }

    .content-block__title-hor {
        font-size: 1.8rem;
        margin-top: 1.6rem;
        padding-left: 1rem;
        padding-bottom: 1rem;
        color: var(--text-color-dark);
    }

        .content-block__title-hor .more-details {
            display: none;
        }

        .content-block__title-hor div {
            margin-top: 1rem;
        }

    /*.content-block:hover .content-block__img-hor {
        right: 10.7rem;
    }*/

    div.col-6:last-child .content-block__img-hor {
        position: relative;
        right: 9.9rem !important;
        top: -0.1rem;
    }

        div.col-6:last-child .content-block__img-hor img {
            width: 10rem;
            height: 10rem;
        }

    /*div.col-6:last-child .content-block:hover .content-block__img-hor {
        right: 9.1rem;
    }*/

    div.col-6 .content-block {
        height: 15rem;
    }

    .card {
        height: 8rem;
        flex-direction: row-reverse;
    }

        /*.card:hover {
            border: solid 1px #dbe7f3;
            box-shadow: none;
            z-index: 1;
        }

            .card:hover > .card-body {
                background-color: transparent;
                z-index: 0;
            }

                .card:hover > .card-body .card-title {
                    color: black;
                }*/

        .card > img {
            position: relative;
            margin: auto;
        }

    .card-body {
        background-color: transparent;
        display: flex;
        align-items: center;
        justify-content: start;
    }

    .card-title {
        font-weight: bold;
        font-size: 1.4rem;
        color: var(--text-color-dark);
        text-align: left;
        margin-bottom: 0;
    }

        /*.card-title:hover {
            text-decoration: none;
            color: black;
        }*/

    .col:nth-last-child(1) .card img {
        width: 8.2rem;
        height: 5.5rem;
    }

    .col:nth-last-child(2) .card img {
        width: 8.9rem;
        height: 5.8rem;
    }

    .col:nth-last-child(3) .card img {
        width: 7.8rem;
        height: 5.2rem;
    }

    .col:nth-last-child(4) .card img {
        width: 7rem;
        height: 4.8rem;
    }

    .col:nth-last-child(5) .card img {
        width: 6.2rem;
        height: 5.9rem;
    }

    .col:nth-last-child(6) .card img {
        width: 6.2rem;
        height: 7.6rem;
        margin-bottom: 0;
    }

    .col:nth-last-child(7) .card img {
        width: 7rem;
        height: 7rem;
        right: 1rem;
    }

    .col:nth-last-child(8) .card img {
        width: 6.9rem;
        height: 7.1rem;
    }

    .col:not(:nth-last-child(1)):not(:nth-last-child(2)):not(:nth-last-child(7))
    .card
    img {
        right: 1.5rem;
    }
}

/* - Home */

/* ----------------------------------------------------------------------------------- */

.profile-info {
    border: solid 1px var(--border);
    border-radius: 0.5rem;
    margin-top: 4rem;
    margin-bottom: 3rem;
    padding: 2rem 1rem;
}

/* ----------------------------------------------------------------------------------- */

.about-content {
    margin-bottom: 6rem;
}

.about-content__title {
    font-size: 6rem;
    margin-bottom: 1.9rem;
}

.about-content__text {
    margin-bottom: 3.8rem;
}

.about-content__link {
    padding: 1rem 4.2rem;
    text-decoration: none;
}

.about-img {
    margin-top: 3.7rem;
}

/* ----------------------------------------------------------------------------------- */

.article-list {
    margin-top: 2.9rem;
    margin-bottom: 2.9rem;
}

.article-list__title {
    background-color: var(--secondery);
    padding: 3rem 0;
}

.article-list__item {
    font-weight: normal;
    border: 1px solid transparent;
    border-bottom: 1px solid var(--border);
    padding: 2.75rem 0;
}

.article-list__item:hover {
    box-shadow: 0px 0.3rem 3rem 0 rgba(0, 0, 0, 0.2);
    z-index: 10;
    border: 1px solid var(--border);
    border-top: none;
    padding-top: 2.85rem;
}

.article-list__item_disable {
    background-color: var(--gray);
}

.more-details {
    display: flex;
    font-size: 1.6rem;
    font-weight: bold;
    color: var(--primary);
    margin-top: 1rem;
    margin-bottom: 1.2rem;
}

.more-details:hover {
    color:  var(--primary);
}

.more-details::after {
    position: relative;
    left: 1.4rem;
    top: 0.2rem;
    font-size: 1.4rem;
    content: "\f35a";
    font-family: FontAwesome;
    color:  var(--primary);
}

@media (max-width: 991.98px) {

    .article-list__item {
        padding: 2rem 0;
    }

    .article-list__item:hover {
        padding-top: 2.1rem;
    }
}

@media (max-width: 767.98px) {
    .article-list {
        border-top: solid 1px var(--border);
    }

    .article-list__item {
        padding: 2rem 0;
    }

    .article-list__item:hover {
        box-shadow: none;
        border: solid 1px transparent;
        border-bottom: 1px solid var(--border);
        padding-top: 2rem;
    }
}

/* ----------------------------------------------------------------------------------- */ 

.filter__list {
    max-height: 24.4rem;
    overflow: hidden;
    transition: max-height 0.5s linear;
}

.filter__list_active {
    max-height: 50rem;
    overflow: auto;
}

.product-list {
    border: solid 1px var(--border);
    border-radius: 0.5rem;
    margin-bottom: 3rem;
    z-index: 1;
}

.product-list__title {
    background-color: var(--secondery);
    color: var(--text-color-dark);
    border-radius: 0.5rem 0.5rem 0 0;
    font-weight: normal;
    font-size: 1.2rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.product-list__item {
    border-top: solid 1px var(--border);
    padding-top: 1.2rem;
    padding-bottom: 1.2rem;
}

.product-list__item_is-stok {
    background-color: var(--success);
}

.product-list__info {
    margin-left: 1rem;
}

.product-list__search-offers {
    z-index: 10;
    width: calc(100% + 2px);
    border: solid 1px var(--border);
    position: relative;
    font-weight: bold;
    text-align: center;
    padding: 1.7rem 0;
    margin: 0 -0.1rem -0.1rem;
}

.product-list__list > div:last-child .product-list__search-offers {
    border-radius: 0 0 0.5rem 0.5rem;
}

.container-with-circle-counter {
    position: relative;
}

.container-with-circle-counter__circle-counter {
    position: absolute;
    right: -0.7rem;
    top: -0.7rem;
    background-color: var(--warning);
    border-radius: 50%;
    width: 2rem;
    height: 2rem;
    color: var(--bd-main);
    text-align: center;
}

/*.container-old-data {
    position: relative;
}

.container-old-data__old-data {
    position: absolute;
    color: red;
    font-style: italic;
    width: 100%;
    text-align: center;
    top: -3rem;
}*/

.container-error-data {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    color: var(--warning);
    font-style: italic;
    text-align: center;
}

@media (max-width: 991.98px) {
    .product-list__item {
        padding-top: 1.2rem;
        padding-bottom: 1.2rem;
    }
}

@media (max-width: 575.98px) {
    .product-list {
        border: none;
    }

    .product-list__title {
        background-color: var(--bd-main);
    }

    .product-list__item {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .product-list__item-price {
        display: flex;
        align-items: center;
        text-align: center;
    }

    .product-list__info {
        margin-left: 0;
    }

    .product-list__button {
        margin-right: 0;
    }

    .product-list__search-offers {
        border: none;
        border-top: solid 1px var(--border);
        border-bottom: solid 1px var(--border);
    }

    .product-list__list > div:last-child .product-list__search-offers {
        border-radius: 0;
    }
}
/* ----------------------------------------------------------------------------------- */

.breadcrumb {
    background-color: var(--bd-main);
    margin-top: 2rem;
    margin-bottom: 2rem;
    padding-left: 0;
}

.cart-top__trash {
    display: flex;
    position: relative;
    right: 0;
    cursor: pointer;
}

.cart-top__trash .icon {
    margin-left: 1rem;
}

.cart-top__trash:hover .icon {
    color: var(--warning);
}

.cart-item {
    align-items: center;
    justify-content: center;
    padding-bottom: 2rem;
}

.cart-item_is-stok {
    background-color: var(--success);
}

.cart-item__divider {
    margin-top: 0;
}

.changesize {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 1rem;
}

.changesize__input-count {
    width: 4rem;
    height: 3rem;
    text-align: center;
    padding: 0;
    font-size: 1.4rem;
}

.changesize__button-min,
.changesize__button-plus {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 3rem;
    height: 3rem;
    border: solid 1px var(--secondery);
    color: var(--text-color-dark);
}

.changesize__button-min {
    color: var(--warning);
}
.changesize__button-plus {
    color: green;
}

.summary-information-block {
    position: relative;
    box-sizing: border-box;
    color: var(--text-color-dark);
    background: var(--bd-main);
    padding: 3rem !important;
    border-radius: 0.8rem;
}

.summary-information-block__line, .summary-information-block__total {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    width: 100%;
}

.summary-information-block__line {
    font-weight: normal;
    font-size: 1.4rem;
    font-style: normal;
}

.summary-information-block__total {
    margin-top: 1rem;
    margin-bottom: 2.5rem;
    font-weight: 700;
    font-size: 1.8rem;
    font-style: normal;
}

.summary-information-block__text {
    margin-top: 1rem;
    font-size: 1.6em;
    color: var(--warning);
}

.summary-information-block__button {
    width: 100%;
    background-color: var(--primary);
    font-size: 1.6rem;
    color: var(--bd-main);
    font-weight: 700;
    border-radius: 0.4rem;
    padding: 1rem;
    border: none;
}

.summary-information-block__comment {
    margin-bottom: 1rem;
}

.summary-information-block__price-type {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.blazored-modal-content {
    height: 100%;
}

.blazored-modal-text {
    width: calc(100vw - 3rem);
}

.blazored-modal-header {
    display: none;
}

.blazored-modal-center {
    justify-content: initial;
    align-items: initial;
}

.delivery-method-group {
    position: relative;
    box-sizing: border-box;
    width: 100%;
    padding: 1.5rem;
    text-align: left;
    color: var(--text-color-dark);
    border: 2px solid var(--light-border);
    border-radius: 0.8rem;
    cursor: pointer;
}

    .delivery-method-group div {
        position: relative;
        padding-left: 3.2rem;
    }

/*.delivery-method-group div::before {
    content: "";
    position: absolute;
    top: 0rem;
    left: 0rem;
    z-index: 1;
    width: 2rem;
    height: 2rem;
    border: 1px solid rgb(206, 208, 214);
    border-radius: 50%;
}

.delivery-method-group p {
    margin-top: 0rem;
    margin-bottom: 0.5rem;
    font-size: 1.6rem;
}

.delivery-method-group span {
    font-size: 1.4rem;
    color:  var(--text-color-dark);
}

.delivery-method-group div::after {
    content: "";
    position: absolute;
    top: 0rem;
    left: 0rem;
    z-index: 2;
    width: 1rem;
    height: 1rem;
    border: 7px solid rgb(70, 76, 92);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease-in-out 0s;
}*/

.wrapper {
    display: inline-flex;
    background: #fff;
    height: 100px;
    width: 400px;
    align-items: center;
    justify-content: space-evenly;
    border-radius: 5px;
    padding: 20px 15px;
    box-shadow: 5px 5px 30px rgba(0,0,0,0.2);
}

    .wrapper .option {
        background: #fff;
        height: 100%;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-evenly;
        margin: 0 10px;
        border-radius: 5px;
        cursor: pointer;
        padding: 0 10px;
        border: 2px solid lightgrey;
        transition: all 0.3s ease;
    }

        .wrapper .option .dot {
            height: 20px;
            width: 20px;
            background: #d9d9d9;
            border-radius: 50%;
            position: relative;
        }

            .wrapper .option .dot::before {
                position: absolute;
                content: "";
                top: 4px;
                left: 4px;
                width: 12px;
                height: 12px;
                background: #0069d9;
                border-radius: 50%;
                opacity: 0;
                transform: scale(1.5);
                transition: all 0.3s ease;
            }

input[type="radio"] {
    display: none;
}

#option-1:checked:checked ~ .option-1,
#option-2:checked:checked ~ .option-2 {
    border-color: #0069d9;
    background: #0069d9;
}

    #option-1:checked:checked ~ .option-1 .dot,
    #option-2:checked:checked ~ .option-2 .dot {
        background: #fff;
    }

        #option-1:checked:checked ~ .option-1 .dot::before,
        #option-2:checked:checked ~ .option-2 .dot::before {
            opacity: 1;
            transform: scale(1);
        }

.wrapper .option span {
    font-size: 20px;
    color: #808080;
}

#option-1:checked:checked ~ .option-1 span,
#option-2:checked:checked ~ .option-2 span {
    color: #fff;
}

.cart-block {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: rgb(51, 51, 51);
    border: 1px solid var(--light-border);
    border-radius: 0.8rem;
    background-color: transparent;
    padding: 1rem;
}

.order-product i {
    display: none;
    font-size: 2.5rem;
    opacity: 0.5;
    position: absolute;
    margin: 0.8rem 0 0 -2.5rem;
}

.order-product:hover i {
    display: block;
}

.current-selection {
    background-color: var(--selection-bg-color);
    border-radius: 0.3rem;
    border-color: var(--light-border);
    box-shadow: var(--light-border) 1rem 1rem initial;
    padding: 0.5rem 1rem;
    margin-right: 1rem;
    cursor: pointer;
}
    /* ----------------------------------------------------------------------------------- */

.modal-window {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-window__header {
    display: flex;
    justify-content: end;
}

.modal-window__body {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.form-group {
    position: relative;
    margin-bottom: 2rem;
}

.modal-window_icon-back {
    color: var(--text-color-dark);
    font-size: 3rem;
    cursor: pointer;
}

.popup-modal {
    z-index: 105;
    width: 100%;
    height: 100%;
    background-color: var(--bd-main);
    position: fixed;
    display: none;
}

/*.loader-area {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader__preloader {
    width: 50px;
    animation: turn 1s infinite linear;
}

.load_circle {
    animation: change_fill 2s infinite linear;
}*/

.button_up_down {
    display: flex;
    justify-content: center;
    margin: 1rem 0;
}

.button_up_down > button {
    width: 3rem;
    height: 3rem;
    font-size: 2rem;
}

.button_up_down > button > div {
    font-weight: bold;
    margin-top: -0.5rem;
}

.best-price {
    border: solid 1px #dbe7f3;
    border-radius: 0.5rem;
}

.best-price__title {
    font-weight: bold;
}

.best-price__text {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-body {
    padding: 0;
    margin-top: 1rem;
}

@keyframes turn {
    from {
        transform: rotate(45deg);
    }

    to {
        transform: rotate(0deg);
    }
}

@keyframes change_fill {
    0% {
        fill: #77aaf7;
    }

    50% {
        fill: #3982ee;
    }

    100% {
        fill: #77aaf7;
    }
}

@media (max-width: 575.98px) {
    .modal-windows > div {
        width: 30rem !important;
    }

    .heading {
        font-size: 2rem;
        padding: 1rem;
        margin-top: 0;
        margin-bottom: 0;
    }
}
/* ----------------------------------------------------------------------------------- */
/* Footer */

.footer {
    background-color: var(--bd-footer);
    display: flex;
    flex-direction: column;
    margin-top: 1rem;
}

.footer__menu {
    display: flex;
    justify-content: center;
    margin: 2.5rem 0;
}

.footer__menu-item .link {
    margin: 0 3rem;
    text-align: center;
    color: var(--bd-main);
}

.footer__info {
    display: flex;
    justify-content: space-around;
}

.footer-search-form {
    position: relative;
    margin-bottom: 1.6rem;
}

.footer-search-form__input {
    border: none;
    width: 27rem;
    height: 5rem;
    border-radius: 5rem;
    padding: 1.2rem 2rem;
    color: var(--text-color-dark);
}

.footer-search-form__button {
    position: absolute;
    color: var(--text-color-dark);
    font-size: 1.6rem;
    right: 1rem;
    top: 0.5rem;
}

.footer__icons {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
}

.footer__icon {
    margin: 0 1.7rem;
}

.footer__complaint-button {
    width: 27rem;
    height: 5rem;
    margin-bottom: 1.6rem;
    background-color: transparent;
    border: solid 1px white;
    border-radius: 5rem;
    color: var(--bd-main);
    padding: 1.2rem 2rem;
}

.footer__complaint-button:hover {
    border: none;
    color:  var(--bd-main);
    background: linear-gradient(-45deg, #e43306, #f1ba03);
}

.footer__complaint-button:active {
    border: none;
    color: var(--bd-main);
    background: linear-gradient(-45deg, #e43306, #f1ba03);
    box-shadow: -2px 0.5rem 1.2rem #f1ba03, 2px 0.5rem 1.2rem #e43306;
}

.footer__phones {
    display: flex;
    justify-content: center;
    color: var(--text-color-light);
    margin-bottom: 2rem;
}

    .footer__phones:hover {
        color: white;
    }

.footer__nert {
    color: white;
    margin-bottom: 2rem;
}

.footer__nert:hover {
    color: var(--text-color-light);
}

.footer__years {
    display: flex;
    justify-content: center;
    color: var(--text-color-light);
    margin-bottom: 2rem;
}

@media (max-width: 575.98px) {
    .footer__menu-item .link {
        margin: 1rem 2.5rem 1rem !important;
    }

    .footer__info {
        text-align: center;
    }

    .footer .footer__info .position-relative {
        margin: 0 auto 2rem;
    }

        .footer .footer__info .position-relative .search-icon {
            right: 2rem;
        }

    .footer .footer__info .footer__complaint {
        margin: 0 auto;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .footer .footer__info .position-relative {
        width: 23.3rem;
    }

        .footer .footer__info .position-relative .footer__search {
            width: 23.5rem;
        }

        .footer .footer__info .position-relative .search-icon {
            right: 2rem;
        }

    .footer .footer__info .footer__complaint {
        padding: 1.2rem 0.35rem 1.3rem;
    }
}

.cursor-filter {
    cursor: url("data:image/svg+xml;charset=UTF-8,%3c?xml version='1.0' encoding='UTF-8'?%3e%3c!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'%3e%3csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' version='1.1' id='mdi-filter-plus-outline' width='24' height='24' viewBox='0 0 24 24'%3e%3cpath d='M15 17H18V14H20V17H23V19H20V22H18V19H15V17M13 19.88C13.04 20.18 12.94 20.5 12.72 20.71C12.32 21.1 11.69 21.1 11.3 20.71L7.29 16.7C7.06 16.47 6.96 16.16 7 15.87V10.75L2.21 4.62C1.87 4.19 1.95 3.56 2.38 3.22C2.57 3.08 2.78 3 3 3V3H17V3C17.22 3 17.43 3.08 17.62 3.22C18.05 3.56 18.13 4.19 17.79 4.62L13 10.75V19.88M5.04 5L9 10.07V15.58L11 17.58V10.05L14.96 5H5.04Z' /%3e%3c/svg%3e") 15 15, pointer;
}

.field-validation-valid, .form-error {
    color: var(--warning);
}

.btn-site {
    padding: 1rem;
    border-radius: 0.5rem;
    color: var(--bd-main);
    font-size: 1.5rem;
}

.btn-site-primary {
    background-color: var(--primary);
    padding: 1rem;
    border-radius: 0.5rem;
    color: var(--bd-main);
    font-size: 1.5rem;
}

    .btn-site-primary:hover {
        color: var(--bd-main);
    }

/* + CART */

.add-cart-reaction {
    animation: color_change 0.4s ease-in;
}

.side-menu__hover.add-cart-reaction {
    animation: hide_change 1.5s ease-in;
}

@keyframes hide_change {
    0% {
        opacity: 0;
        transform: none;
    }

    33% {
        opacity: 1;
        transform: translateX(-100%);
    }

    66% {
        opacity: 1;
        transform: translateX(-100%);
    }

    100% {
        opacity: 0;
        transform: none;
    }
}

@keyframes color_change {
    0% {
        color: var(--primary);
    }

    50% {
        color: var(--warning);
    }

    100% {
        color: var(--primary);
    }
}
/* - CART */

/* + Side Menu */

.side-menu {
    display: none;
}

@media screen and (min-width: 768px) {
    .side-menu * {
        box-sizing: border-box;
    }

    .side-menu {
        position: fixed;
        display: block;
        top: 20rem;
        right: 0;
        z-index: 200;
    }

    .side-menu__buttons {
        position: absolute;
        top: 0;
        right: -0.2rem;
        border: 2px solid var(--secondery);
        border-top-left-radius: 8px;
        border-bottom-left-radius: 8px;
        box-shadow: 0 4px 4px rgba(0,0,0,0.2), 0 10px 18px rgba(0,0,0,0.2);
    }

    .side-menu__item:first-child {
        border-top-left-radius: 0.8rem;
    }

    .side-menu__item:last-child {
        border-bottom-left-radius: 0.8rem;
    }

    .side-menu__item {
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0px;
        width: 7rem;
        height: 7rem;
        position: relative;
        background-color: var(--bd-main);
    }

    .side-menu__item:not(:last-child) {
        border-bottom: 2px solid var(--secondery);
    }

    @keyframes strok {
        100% {
            stroke-dashoffset: 400;
        }
    }

    .side-menu__hover {
        position: absolute;
        background-color: var(--primary);
        color: var(--bd-main);
        border: var(--bd-main) solid var(--secondery);
        padding: 0 3rem;
        transform: translateX(0);
        left: 0;
        top: 0;
        bottom: 0;
        opacity: 0;
        transition: all 0.2s;
        z-index: -100;
        font-size: 1.6rem;
        border-top-left-radius: 1rem;
        border-bottom-left-radius: 1rem;
        white-space: nowrap;
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: 30rem;
    }

    .side-menu__item:hover .side-menu__hover {
        opacity: 1;
        transform: translateX(-100%);
    }
}

/* - Side Menu */



/* + Catalog */

.catalog-datail {
    padding: 0.5rem 1rem;
    background-color: var(--border);
    border: 2px solid var(--border);
    border-radius: 0.5rem;
    margin: 1rem 1rem 0 0;
}

.catalog-datail_stock {
    background-color: transparent;
    border-color: orange;
}

.catalog-datail_news {
    background-color: transparent;
    border-color: var(--primary);
}

.catalog-datail:hover, .catalog-datail_active {
    background-color: var(--primary);
    border-color: var(--primary);
    color: white;
}

.catalog-datail_stock:hover, .catalog-datail_stock.catalog-datail_active {
    background-color: orange;
    border-color: orange;
    color: white;
}

.catalog-menu {
    padding: 0;
}

.catalog-menu__item {
    margin-top: 1rem;
}

.catalog-menu__item_active {
    font-weight: bold;
}

    .catalog-menu__item_active > .catalog-menu__link {
        color: var(--primary);
    }

        .catalog-menu__item_active > .catalog-menu__link::before {
            content: '\f105';
            font-family: FontAwesome;
        }

.catalog-menu__link {
    font-size: 1.4rem;
}

    .catalog-menu__link:hover {
        color: var(--primary);
    }

.product-card {
    height: 36rem;
    border-radius: 0.5rem;
    padding: 1rem;
    position: relative;
    overflow: hidden;
    transition: box-shadow .3s;
}

.product-card__link {
    display: flex;
    flex-direction: column;
    position: relative;
}

.product-card:hover {
    box-shadow: 0px 0px 2px gray;
}

.product-card__links {
    position: absolute;
}

.product__link {
    margin-bottom: 1rem;
}

.product-card__labels {
    position: absolute;
    right: 0;
}

.product__label {
    border-radius: 1rem 0.5rem 0.5rem 1rem;
    background-color: orange;
    color: white;
    font-size: 1.2rem;
    padding: 0 0.5rem;
    margin-bottom: 1.5rem;
}

.product__label-stock {
    background-color: orange;
}

    .product__label-stock:before {
        content: '\f02b';
        font-family: FontAwesome;
        font-size: 1rem;
    }

.product-card__image-container {
    width: 13rem;
    height: 13rem;
    display: flex;
    align-self: center;
}

.product-card__image {
    width: 100%;
    display: block;
    margin: auto;
}

.product-card__title {
    font-size: 1.6rem;
    font-weight: bold;
}

.product-card__subtitle {
    font-size: 1.2rem;
    color: var(--text-color-light);
    margin-bottom: 1.5rem;
}

.product-card__bottom {
    margin-top: auto;
}

.product-card__price {
    font-size: 3rem;
    font-weight: bold;
}

.product-card__weight {
    color: var(--text-color-light);
}

.product__total-ordered-count {
    color: var(--text-color-light);
}

.product__delivery::before {
    content: '\f0d1';
    font-family: FontAwesome;
}

.product__total-ordered-count::before {
    content: '\f07a';
    font-family: FontAwesome;
}

.product-card__weight-and-vendor, .product-card__delivery-and-ordered-count {
    display: flex;
    justify-content: space-between;
}

.product__raiting {
    margin-top: 1rem;
}

.raiting {
    position: relative;
    display: flex;
}

.raiting__img, .raiting__fill-gray-block, .raiting__fill-orange-block {
    width: 10rem;
    height: 2rem;
}

.raiting__fill-gray-block {
    background-color: var(--gray);
}

.raiting__fill-blocks {
    position: absolute;
    top: 0;
    z-index: -1;
    height: 2rem;
}

.raiting__fill-orange-block {
    background-color: var(--warning);
    position: relative;
    top: -2rem;
}

.raiting__text {
    margin-left: 1rem;
}

.product-card__buy-button {
    background-color: #cbcbcb;
    height: 84px;
    width: 84px;
    transform: translate(0) rotate(-45deg);
    position: absolute;
    bottom: -58px;
    right: -58px;
    transition: all .3s;
    cursor: pointer;
}

.product-card:hover .product-card__buy-button {
    background-color: #92022d;
    transform: translate(-16px,-16px) rotate(-45deg);
}

.product-card:hover .product-card__cart {
    opacity: 1;
}

.product-card__cart {
    transform: rotate(45deg);
    position: relative;
    bottom: -7px;
    right: -30px;
    color: white;
    font-size: 1.6rem;
    opacity: 0;
}

/* - Catalog */

/* + Product */

.product-content__images {
    position: relative;
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

.product-content__image {
    position: relative;
    height: 37rem;
}

.product-content__links-and-labels {
    position: absolute;
    right: 0;
    top: 0;
    margin-top: 1rem;
}

.product-content__links {
    text-align: end;
}

.product-content__title {
    font-size: 2.6rem;
    font-weight: bold;
}

.product-content__subtitle {
    font-size: 1.6rem;
}

.product-content__vendor {
    font-weight: bold;
    color: var(--text-color-light);
}

.product-content__price {
    font-weight: bold;
    font-size: 3rem;
}

.product-content__weight {
    margin-bottom: 3rem;
}

.product-content__button {
    padding: 0 4rem;
    margin-right: 2rem;
}

.product-content__delivery, .product-content__warehouse {
    color: green;
}

    .product-content__delivery::before {
        content: '\f0d1';
        font-family: FontAwesome;
    }

    .product-content__warehouse::before {
        content: '\f00c';
        font-family: FontAwesome;
    }

.product-content__raitind-and-ordered-count {
    display: flex;
    margin: 1rem 0;
}

.product-content__raitind {
    margin-right: 3rem;
}

.about-product {
    font-size: 1.6rem;
    margin-top: 2rem;
}

.about-product__item {
    display: flex;
    margin-bottom: 1rem;
}

.about-product__title {
    font-weight: bold;
    width: 30rem;
}

.about-product__description {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* - Product */

/* + Show or hide password */
.password-control {
    position: absolute;
    top: 1.4rem;
    right: 0.6rem;
    display: inline-block;
    width: 2rem;
    height: 2rem;
    background: url(/Motorsway/img/eye-solid.svg) 0 0 no-repeat;
}

.password-control_view {
    background: url(/Motorsway/img/eye-slash-solid.svg) 0 0 no-repeat;
    width: 2.2rem;
    height: 2.2rem;
    right: 0.5rem;
}

/* - Show or hide password */

.warning-icon i {
    font-size: 8rem;
    color: var(--warning);
}

.warning-img img {
    height: 10rem;
}

.info-icon i {
    font-size: 8rem;
    color: var(--info);
}

.warning-text {
    font-weight: bold;
}

/* + Messages */

.container-message {
    /*background-color: #E0E0DD;*/
    height: 100vh;
    display: flex;
    align-items: center;
}

/*#E0E0DD*/
/*#00a884*/

.message-list {
    /*height: calc(100vh - 10rem);*/
    padding: 1rem 5rem;
    position: relative;
    background-image: url(../img/bg.jpg);
    background-repeat: repeat;
}

.message-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 0.8rem;
}

.message {
    position: relative;
    right: 0;
    padding: 0.5rem 1rem;
    background-color: var(--bd-main);
    border-radius: 0 1rem 1rem 1rem;
    margin-bottom: 0.2rem;
    box-shadow: 0 2px 2px rgb(0 0 0 / 25%);
    align-self: flex-start;
}

.message_my {
    background-color: #D9FDD3;
    align-self: flex-end;
    border-radius: 1rem 0 1rem 1rem;
}

.message-group .message:not(:first-child) {
    border-radius: 1rem;
}

.message__tail {
    color: white;
    position: absolute;
    left: -8px;
    top: -5px;
}

.message_my .message__tail {
    color: #D9FDD3;
    right: -8px;
    left: auto;
}

.message__title {
    color: pink;
    font-size: 1.6rem;
}

.message__text {
    color: black;
    font-size: 1.6rem;
    word-break: break-word;
}

.message__media {
    position: relative;
    width: 100%;
    display: flex;
    margin-bottom: 1.5rem;
}

.message__image {
    width: 25%;
    text-align: center;
    margin: 0.5rem;
}

.message__image img {
    max-height: 3rem;
    max-width: 3rem;
}

.message__time {
    position: relative;
    float: right;
    color: gray;
    font-size: 1.2rem;
    align-self: self-end;
    margin: 0 -0.3rem 0 0.5rem;
    bottom: -1rem;
}

.button-plus {
    border: solid 1px #E0E0DD;
    border-radius: 1rem;
    background-color: white;
    height: 3rem;
    width: 3rem;
    font-size: 2rem;
    font-weight: bold;
}

@media screen and (min-width: 1301px) {
    .message {
        max-width: 65%;
    }
}

@media screen and (min-width: 1025px) and (max-width: 1300px) {
    .message {
        max-width: 75%;
    }
}

@media screen and (min-width: 901px) and (max-width: 1024px) {
    .message {
        max-width: 85%;
    }
}

@media screen and (max-width: 900px) {
    .message {
        max-width: 95%;
    }
}
/* - Messages */
.table-list {
    margin: 1rem 0;
}

.table-list__item {
    border: none;
    padding: 0.1rem 1rem;
    font-size: 1.6rem;
}

.table__row {
    cursor: pointer;
    border: 1px solid var(--light-border);
}

.table-detail__row {
    cursor: pointer;
}

.table__item {
    vertical-align: top;
    z-index: 1;
    border: none;
}

.table__row:hover .icon_question {
    color: var(--bd-main);
}

.table__more {
    color: var(--primary);
    z-index: 2;
}

.table__row:hover, .table__row_hover, .table__row_active {
    background-color: var(--primary);
    color: white;
}

    .table__row:hover .table__more, .table__row_hover .table__more, .table__row:hover .link-wizard, .table__row_hover .link-wizard, .table__row_active .link-wizard {
        color: var(--bd-main);
    }

.table__row:hover:last-child, .table__row_hover:last-child {
    border: 1px solid var(--primary);
}

.table__item_short > div{
    max-height: 4rem;
    overflow: hidden;
}

.table__more:hover {
    text-decoration: underline;
}

.table-detail__row {
}

.table-detail__item {
    border: none;
    padding: 0;
    padding: 0.2rem 0;
    padding-right: 1rem;
}

.table-detail__item:first-child {
    text-align: end;
    font-weight: bold;
    padding-right: 1rem;
}

.order-item > td{
    position: relative;
}

.order-item > td:hover .triangle {
    display: block;
}

.order-item_slider {
    cursor: pointer;
}

.order-item_slider:hover {
    background-color: var(--success);
}

.xls-pdf {
    padding: 1rem 0;
    text-align: right;
}

.xls-pdf-icon {
    padding-left: 1rem;
    height: 6rem;
    cursor: pointer;
}

.menu-vert {
    margin: 0 2rem;
    font-family: 'Open Sans', sans-serif;
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu-vert__submenu {
    margin: 0 2rem;
    font-family: 'Open Sans', sans-serif;
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu-vert__item {
    position: relative;
    margin: 0;
    line-height: 3rem;
    text-transform: uppercase;
    margin-left: 3rem;
}

.menu-vert__checkbox, .menu-vert__label {
    top: 0;
    left: -3rem;
    position: absolute;
    cursor: pointer;
}

    .menu-vert__label:before,
    .menu-vert__checkbox:checked + .menu-vert__label:before {
        content: '+';
        font-size: 2.6rem;
        color: #1266B1;
        font-weight: bold;
        font-family: Courier;
    }

    .menu-vert__checkbox:checked + .menu-vert__label:before {
        content: '-';
    }

.menu-vert > .menu-vert__submenu > .menu-vert__item .menu-vert__submenu {
    display: none;
}

.menu-vert__checkbox:checked ~ .menu-vert__submenu {
    display: block !important;
}

.menu-vert__checkbox {
    display: none;
}

.menu-vert__submenu .menu-vert__item .menu-vert__item .menu-vert__link:before, .menu-vert__submenu .menu-vert__item .menu-vert__item .menu-vert__span:before {
    content: '\203A';
    font-size: 2rem;
    padding-right: 0.6rem;
    font-weight: bold;
}

.menu-vert__submenu > .menu-vert__item .menu-vert__item .menu-vert__link:before {
    color: var(--primary);
}

.menu-vert__submenu > .menu-vert__item .menu-vert__item .menu-vert__span:before {
    color: var(--text-color-dark);
}

.menu-vert__link {
    color: var(--primary);
    text-decoration: none;
    cursor: pointer;
}

.menu-vert__link:hover {
    color: var(--primary);
    text-decoration: underline;
}

.menu-vert-catalog__submenu {
    margin: 0 2rem;
    font-family: 'Open Sans', sans-serif;
    list-style: none;
    margin: 0;
    padding: 0;
    background-color: white;
}

.menu-vert-catalog__item {
    position: relative;
    margin: 0;
    line-height: 3rem;
    background-color: var(--primary);
}

.menu-vert-catalog__checkbox, .menu-vert-catalog__label {
    cursor: pointer;
    margin: 0.5rem;
    position: relative;
    top: 0.2rem;
}

    .menu-vert-catalog__label:before,
    .menu-vert-catalog__checkbox:checked + .menu-vert-catalog__label:before {
        content: '+';
        font-size: 2.6rem;
        color: #1266B1;
        font-weight: bold;
        font-family: Courier;
    }

    .menu-vert-catalog__checkbox:checked + .menu-vert-catalog__label:before {
        content: '-';
    }

.menu-vert-catalog > .menu-vert-catalog__submenu > .menu-vert-catalog__item .menu-vert-catalog__submenu {
    display: none;
}

.menu-vert-catalog__checkbox:checked ~ .menu-vert-catalog__submenu {
    display: block !important;
}

.menu-vert-catalog__checkbox {
    display: none;
}

.menu-vert-catalog__link {
    color: white;
    text-decoration: none;
    cursor: pointer;
}

.menu-vert-catalog__link:hover {
    color: white;
    text-decoration: underline;
}

.menu-vert-catalog__submenu > .menu-vert-catalog__item .menu-vert-catalog__item .menu-vert-catalog__link:before {
    content: '\203A';
    font-size: 2rem;
    padding-right: 0.6rem;
    color: var(--primary);
    font-weight: bold;
    text-decoration: none;
}

    .menu-vert-catalog__link:hover {
        color: white;
        text-decoration: underline;
    }

.menu-vert-catalog__submenu > .menu-vert-catalog__item .menu-vert-catalog__item {
    background-color: white;
    color: var(--primary) !important;
    border: 1px solid var(--light-border);
    padding-left: 1rem;
    margin-left: 3rem;
}

.menu-vert-catalog__submenu > .menu-vert-catalog__item .menu-vert-catalog__item .menu-vert-catalog__link {
    color: var(--primary);
    text-decoration: none;
}

.menu-vert-catalog__submenu > .menu-vert-catalog__item .menu-vert-catalog__item:hover {
    background-color: var(--primary);
}

.menu-vert-catalog__submenu > .menu-vert-catalog__item .menu-vert-catalog__item:hover .menu-vert-catalog__link {
    color: white;
    text-decoration: underline;
}


    .menu-vert-catalog__submenu > .menu-vert-catalog__item .menu-vert-catalog__item:hover .menu-vert-catalog__link:before {
        color: white;
        text-decoration: none;
    }

.catalog-list {
    font-size: 1.6rem;
}

.catalog-list__item {
    padding: 0.2rem 0;
    cursor: pointer;
}

.catalog-list__item:hover {
    background-color: var(--primary);
    color: white;
}

.catalog-list__name {
    display: flex;
    align-items: center;
    margin: 0.3rem 0;
}

.catalog-list__char {
    color: var(--primary);
    font-size: 2rem;
}

.catalog-list__item:hover .catalog-list__char {
    color: white;
}

.detail-image {
    border: 1px solid var(--light-border);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
}

.detail-image_height-350 {
    height: 35rem;
    margin-bottom: 1.5rem;
}

.detail-image__containet-image {
    height: 25rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.detail-image__link {
    color: var(--primary);
    margin: 0.5rem 0;
    text-align: center;
}

.detail-image__link:hover {
    color: var(--primary);
    text-decoration: underline;
}

.detail-title {
    font-size: 2.4rem;
    color: var(--primary);
}

.table-container-detail {
    height: 60rem;
    overflow-y: auto;
}

.table-detail {
    width: 100%;
}

.detail-image__container-image {
    position: relative;
}

.detail-image__image-div {
    position: absolute;
    background-color: transparent;
    cursor: pointer;
}

    .detail-image__image-div:hover, .detail-image__image-div_hover, .detail-image__image-div_active {
        border: 1px solid red;
    }

.tooltip-move {
    border: 1px solid var(--border);
    padding: 0.5rem;
    position: absolute;
    opacity: 0;
    background-color: var(--light-border);
}

.find-vehicle-form {
    border: 1px solid var(--light-border);
    background-color: var(--gray);
    padding: 1rem;
    width: 40rem;
    margin-bottom: 1rem;
}

.find-vehicle-form__buttons {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.find-vehicle-form__button {
    border: 1px solid var(--primary);
    color: var(--primary);
    background-color: white;
    padding: 0.5rem;
    border-radius: 0.2rem;
}

.find-vehicle-form__button:hover, .find-vehicle-form__button:active {
    background-color: var(--primary);
    color: white;
}

.find-vehicle-form__input {
    width: 100%;
}

.nav-list-link {
    font-size: 2.8rem;
}

.filter-name {
    color: var(--primary);
    cursor: pointer;
    text-decoration: underline;
}

.filter-name:hover {
    text-decoration: none;
}

.filter-group {
    margin-top: 1rem;
}