/*-------------------------------------------------------
  Author: AtenaSoft
--------------------------------------------------------*/

/*=============================================================
RESET STYLES
===============================================================*/
/* Box sizing rules */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
    margin-block-end: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
    list-style: none;
}

/* Set core root defaults */
html:focus-within {
    scroll-behavior: smooth;
}

/* Set core body defaults */
body {
    min-height: 100vh;
    text-rendering: optimizeSpeed;
    line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
    text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
    max-width: 100%;
    display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
    font: inherit;
}


a {
    color: inherit;
    text-decoration: none;
}

button {
    background: none;
    border: none;
    font: inherit;
    outline: inherit;
}

.bootstrap-select>.dropdown-toggle.bs-placeholder,
.bootstrap-select>.dropdown-toggle.bs-placeholder:active,
.bootstrap-select>.dropdown-toggle.bs-placeholder:focus,
.bootstrap-select>.dropdown-toggle.bs-placeholder:hover {
    /*  padding: 15px; */
    background-color: white;
    color: var(--dark-theme);
}

.bootstrap-select>.dropdown-toggle {
    /*  padding: 15px; */
    height: auto !important;
    background-color: white;
}

.form-control {
    border-radius: 0;
}

/* ------------------------- martelanço do container ------------------------ */

/*  */
/* martelanço para 15% maior que o bs */

/* @media (min-width: 576px) {
    .container {
        max-width: 621px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 828px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 1104px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1311px;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1518px;
    }
}
 */

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 730px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1160px;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1340px;
    }
}

@media (min-width: 1600px) {
    .container {
        max-width: 1540px;
    }
}


/*=============================================================
Variáveis
===============================================================*/

:root {
    --client-theme: #fcc601;
    --client-theme2: #202833;
    --client-theme3: none;
    --transparent-client-theme: rgba(252, 198, 1, 0.85);
    --transparent-client-theme2: rgba(32, 40, 51, 0.85);
    --transparent-client-theme3: none;
    --hover-client-theme: #dbab00;
    /*  */
    --light-theme: #ffffff;
    --midtone-theme: #f2f3f5;
    --dark-theme: #202833;
    /*  */
    --light-theme2: #F7F9FA;
    --midtone-theme2: #bcbbbb;
    --dark-theme2: #2b2b2b;
    /*  */
    --transparent-light-theme: #F7F9FA26;
    --transparent-midtone-theme: #bcbbbb84;
    --transparent-dark-theme: #2b2b2b84;
    /*  */

    /* outras cores */
    --instagram: #d33070;
    --facebook: #1973eb;
    --linkedin: #0d63bc;
    --whatsapp: #46c355;
    --email: #ce493c;
    --messenger: #027ff7;
    --youtube: #f60004;
    --twitter: #1e96e9;
    --snapchat: #f8f400;
    --pinterest: #c41f25;


    --font-size-xxs: 0.6rem;
    /* 9px */
    --font-size-xs: 0.7rem;
    /* 10px */
    --font-size-sm: 0.8rem;
    /* 14px */
    --font-size-md: 1rem;
    /* 16px */
    --font-size-lg: 1.1rem;
    /* 18px */
    --font-size-xl: 1.25rem;
    /* 20px */
    --font-size-2xl: 1.5rem;
    /* 24px */
    --font-size-3xl: 1.7rem;
    /* 30px */
    --font-size-4xl: 1.9rem;
    /* 40px */
    --font-size-5xl: 2.5rem;
    /* 50px */

    /* outros estilos */
    --border-theme: 5px;
}


h1 {
    font-size: var(--font-size-5xl);
}

h2 {
    font-size: var(--font-size-4xl);
}

h3 {
    font-size: var(--font-size-3xl);
}

h4 {
    font-size: var(--font-size-2xl);
}

h5 {
    font-size: var(--font-size-xl);
}

h6 {
    font-size: var(--font-size-lg);
}


/*=============================================================
GENERAL STYLES
===============================================================*/

html,
body {
    font-family: 'Montserrat', sans-serif;
    color: var(--client-theme2);
}

*:hover {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.bg-client{
    background-color: var(--client-theme2);
}
.text-client {
    color: var(--client-theme);
}

.text-client2 {
    color: var(--client-theme2);
}

.btn-client,
.btn-client2,
.btn-client3 {
    color: var(--light-theme);
    font-size: var(--font-size-xs);
    border-radius: var(--border-theme);
    padding: 10px;
}

.btn-client3 {
    background-color: var(--client-theme2);
    color: var(--light-theme);

    &:hover {
        border: 1px solid var(--light-theme);
        background-color: var(--client-theme);
        color: white !important;
        fill: white;
    }

    :first-child:active {
        background-color: var(--transparent-light-theme);

    }

    & :active {
        border: 1px solid var(--client-theme2);
    }
}

.btn-client2 {
    background-color: none;
    color: var(--client-theme2);
    border: 1px solid var(--client-theme2);

    &:hover {
        border: 1px solid var(--light-theme);
        background-color: var(--client-theme2);
        color: white !important;
        fill: white;
    }

    :first-child:active {
        background-color: var(--transparent-light-theme);

    }
}


.btn-client {
    background-color: var(--client-theme);
    color: var(--client-theme2);

    &:first-child:active {
        background-color: var(--hover-client-theme);
    }

    &:hover,
    &:focus,
    &:active {
        background-color: var(--client-theme);
        box-shadow: 0 0 0 1px var(--client-theme2);
        color: var(--client-theme2);
    }

}


.theme-title {

    & h1 {
        font-weight: 800;
        font-size: var(--font-size-5xl);
        color: var(--client-theme);
    }

    & h2 {
        font-weight: 600;
        color: var(--dark-theme);
        font-size: var(--font-size-2xl);
    }

    & h3 {
        text-transform: uppercase;
        font-size: var(--font-size-sm);
        font-weight: 400;
        color: var(--dark-theme);
    }

    & h4 {
        font-size: var(--font-size-2xl);
        font-weight: 500;
        color: var(--dark-theme);
    }

    & h5 {
        font-weight: 600;
        font-size: var(--font-size-xl);
        font-style: italic;
        color: var(--dark-theme);
    }

    &h6 {
        font-weight: 300;
        font-size: var(--font-size-lg);
        color: var(--dark-theme);
    }
}

.logged {
    fill: red;
}

/*=============================================================
SVG's
===============================================================*/
.cart-icon {
    width: 26px;
    min-width: 26px;
}

.heart-icon {
    width: 22px;
    min-width: 22px;
}

.svp-logo {
    width: 150px;
    min-width: 150px;
}

.phone-icon {
    width: 33px;
    min-width: 33px;
}

.directions-icon {
    width: 25px;
    min-width: 23px;
}

.checkbox {
    width: 25px;
    min-width: 25px;
}

.cart__icon {
    width: 30px;
    min-width: 30px;

    @media (max-width: 992px) {
        width: 25px;
        min-width: 25px;
    }
}

.garantia-icon {
    width: 55px;
    min-width: 55px;
}



/*=============================================================
TOPBAR
===============================================================*/
.topbar {
    background-color: var(--client-theme);
}

/*=============================================================
contact widget
===============================================================*/

.contact {
    .contact-title {
        color: var(--light-theme);
        font-size: var(--font-size-xs);
        line-height: 1.1;
    }

    .contact-number {
        color: var(--client-theme);
        font-size: var(--font-size-lg);
        font-weight: 600;
        line-height: 1;
        letter-spacing: 1px;
    }

    .contact-calltax {
        color: var(--light-theme);
        font-size: var(--font-size-xxs);
        line-height: 1;
        font-weight: 300;
    }

    & :hover {
        .contact-number {
            color: var(--light-theme);
        }
    }
}

/*=============================================================
HEADER
===============================================================*/

.header {
    padding: 10px 0;
    background-color: var(--client-theme2);


    .header__carrinho {
        .custom-badge {
            position: absolute;
            top: -3px;
            left: 90%;
            background-color: var(--client-theme2);
            padding: 5px 5px;
            border: 1px solid var(--client-theme);
            border-radius: 10px;
            line-height: 0;

            .custom-badge__number {
                color: var(--light-theme);
                font-size: var(--font-size-xxs);
                line-height: 0.4;
            }
        }

        .header__carrinho-background {
            padding: 5px;
            border-radius: 50px;
            background-color: var(--client-theme);
            color: var(--client-theme2);
        }

        .header__carrinho-info {
            margin-top: 3px;
            font-size: var(--font-size-md);
            font-weight: 700;
            color: var(--client-theme2);
        }

        &:hover,
        &:focus,
        &:active {
            .header__carrinho-background {
                box-shadow: inset 0 0 0 2px white;
                border-radius: 50px;

            }
        }
    }

    .header__login {
        .dropdown-toggle::after {
            display: inline-block;
            margin-left: .255em;
            vertical-align: .255em;
            font-family: "Font Awesome 5 Free";
            content: "\f078";
            font-weight: 900;
            border: none;
            font-size: 10px;
        }

        .header__login-button {
            padding: 10px;
            color: var(--light-theme);
            transition: color 0s;

            svg * {
                fill: var(--light-theme);
            }

            &.active {
                color: var(--client-theme);

                svg * {
                    fill: var(--client-theme);
                }
            }

            &:hover {
                color: var(--client-theme);

                svg * {
                    fill: var(--client-theme);
                }
            }
        }

        .dropdown-menu {
            @media (max-width:992px) {
                top: 110px;

            }
        }
    }

    .navbar {
        .nav-item a {
            padding: 0 15px;
            font-size: var(--font-size-sm);
            color: var(--light-theme);
            text-transform: uppercase;

            &:hover {
                color: var(--client-theme);
            }

            &.active {
                color: var(--client-theme);
            }
        }

        .header__navbar {
            width: 70%;
        }

    }

    .contact {
        width: max-content;
    }

    .header__carrinho {
        width: max-content;
    }

}

.navbar-toggler {
    transform: scalex(0.6) scaley(0.7);
    border-color: var(--client-theme);
    border-width: 3px;

    .fas {
        color: var(--light-theme);
    }

    &:hover,
    &:active,
    &:focus {
        .fas {
            color: var(--client-theme2);
        }

        border-color: var(--client-theme);
        background-color: var(--client-theme);
        color: var(--client-theme2);
    }

}



/*=============================================================
Breadcrumbs
===============================================================*/

.component-breadcrumbs {
    font-size: var(--font-size-xs);

    .breadcrumb-item:nth-child(n+2) {
        &::before {
            font-family: "Font Awesome 6 Free";
            content: "\f054";
            font-weight: 900;
            font-size: 7px;
            padding-top: 3px;
        }
    }
}

/*=============================================================
SEARCH
===============================================================*/

.search {

    & * {
        & :not(i) {
            font-size: var(--font-size-xs);
            font-weight: 600;
        }
    }

    .header__search-wrap__search,
    .bootstrap-select .dropdown-toggle {
        border: solid 0.1px var(--transparent-midtone-theme);
        border-radius: var(--border-theme);
        padding: 10px;
        background-color: var(--midtone-theme);
    }

    .header__search-wrap__search:focus,
    .header__search-wrap__search:not(:placeholder-shown) {
        background-color: #fff;
    }

    .bootstrap-select .dropdown-toggle:focus,
    .bootstrap-select .dropdown-toggle:not(.bs-placeholder) {
        background-color: #fff;
    }
}


@media (min-width: 992px) {

    .search__col-two {
        width: 40%;
    }

    .search__col-three {
        width: 15%;
    }

    .search__col-four {
        width: 15%;
    }

    .search__col-five {
        width: 15%;
    }

    .search__col-six {
        width: 15%;
    }
}

/*=============================================================
ASSORTMENT
===============================================================*/
.stock-assortment {
    .stock-assortment__icon {
        width: 23px;
    }
}

/*=============================================================
CARDS
===============================================================*/



.card-theme {
    position: relative;
    border-radius: calc(2 * var(--border-theme));


    .card-image {
        position: relative;
        height: 360px;
        margin: -1px -1px -1px 0;

        @media (max-width: 992px) {
            height: 280px;
        }

        & img {
            height: 100%;
            object-fit: cover;
            border-top-left-radius: calc(2 * var(--border-theme));
            border-top-right-radius: calc(2 * var(--border-theme));
        }

        .card-gradient {
            position: absolute;
            top: 0;
            height: 100%;
            width: 100%;
            background: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
            border-top-left-radius: calc(2 * var(--border-theme));
            border-top-right-radius: calc(2 * var(--border-theme));
            transition: opacity 0.35s ease;
        }
    }

    &:hover .card-gradient {
        opacity: 0.5;
    }


    .card-body {
        position: absolute;
        color: var(--light-theme);

        .card-title {
            font-size: var(--font-size-xl);
            line-height: 1.25;
            font-weight: 600;
            margin: 0;
            text-align: left;
            display: -webkit-box;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 4;
            line-clamp: 4;
            overflow: hidden;
            text-transform: uppercase;

            @media (max-width: 992px) {
                font-size: var(--font-size-md);
            }
        }

        .card-references {
            font-size: var(--font-size-sm);
            font-weight: 500;

            @media (max-width: 992px) {
                font-size: var(--font-size-xs);
            }
        }
    }



    .badge {
        position: absolute;
        display: block;
        color: var(--light-theme);
        border-radius: 0;
        -webkit-box-shadow: -3px 3px 10px 0px rgba(0, 0, 0, 0.1);
        -moz-box-shadow: -3px 3px 6px 0px rgba(0, 0, 0, 0.1);
        box-shadow: -3px 3px 10px 0px rgba(0, 0, 0, 0.25);


        &.badge-new {
            background-color: #009d4b;
            font-size: var(--font-size-md);
            color: var(--light-theme);
            font-weight: 600;
            top: -35px;
            left: -10px;
            padding: 18px 30px;
            border-top-right-radius: calc(2 * var(--border-theme));
            border-bottom-right-radius: calc(2 * var(--border-theme));

            @media (max-width: 992px) {
                font-size: var(--font-size-sm);
                left: 0px;
            }
        }

        &.badge-promo {
            background-color: var(--client-theme);
            font-size: var(--font-size-md);
            color: var(--client-theme2);
            font-weight: 700;
            top: -35px;
            left: -10px;
            padding: 10px 30px;
            border-top-right-radius: calc(2 * var(--border-theme));
            border-bottom-right-radius: calc(2 * var(--border-theme));

            @media (max-width: 992px) {
                font-size: var(--font-size-sm);
                left: 0px;
                padding: 10px 10px;
            }

            .badge-promo__info {
                font-size: var(--font-size-xs);
                color: var(--client-theme2);
                font-weight: 400;

                @media (max-width: 992px) {
                    font-size: var(--font-size-xxs);
                }
            }

        }

    }


    .card-footer {
        border-top: none;
        position: relative;
        background-color: initial;
        padding-top: 25px;
        padding-bottom: 15px;
        text-wrap: nowrap;
        display: flex;
        height: 100%;


        .price-tag {
            color: var(--client-theme2);
            font-size: var(--font-size-xl);
            font-weight: 600;
            line-height: 1;

            @media (max-width: 992px) {
                font-size: var(--font-size-lg);
            }
        }

        .tax-tag {
            font-size: var(--font-size-xxs);
            font-weight: 300;
            color: var(--dark-theme);
        }

        .old-price-tag {
            font-size: var(--font-size-xs);
            color: var(--client-theme2);
            /* height: 17px; */

            .old-price-tag__value {
                text-decoration: line-through;
            }

        }


        .card-cart {
            position: relative;
            bottom: 0px;

            @media (max-width: 992px) {
                width: 100%;
            }

            .card-cart__add {
                font-size: var(--font-size-sm);
                transition: color 0.3s ease;

                @media (max-width: 992px) {
                    font-size: var(--font-size-xs);
                }
            }

            .card-icon * {
                transition: fill 0.3s ease;
            }

            :hover,
            :active,
            :focus {
                .card-cart__add {
                    color: var(--client-theme);
                }

                .card-icon * {
                    fill: var(--client-theme);
                }
            }

        }

        .btn-client2 {
            font-size: var(--font-size-sm);
            color: var(--dark-theme);
            border-color: var(--midtone-theme);
        }
    }
}


/*=============================================================
discount badge 
===============================================================*/

.discount-badge {
    background-color: var(--client-theme);
    font-size: var(--font-size-sm);
    font-weight: 600;
    padding: 0 9px;
    border-radius: 10px;
    width: 45px;
    position: relative;
    bottom: 3px;
}

/*=============================================================
MODELOS
===============================================================*/

.modelos {
    .modelos__cards {
        .modelos__cards__single {
            font-family: 'Tauri', sans-serif;
            width: 190px !important;
            height: 190px;

            &:hover,
            &:focus {
                filter: brightness(0.9);
            }
        }

        .modelos__cards__single__title {
            font-size: var(--font-size-md);
        }

        & figure {
            width: 100%;

            & img {
                display: block;
                width: 80%;
                object-fit: cover;
            }
        }
    }

    .modelos-collapse {
        .theme-title {
            & h2 {
                &::after {
                    height: 0;
                }
            }
        }
    }

    .section-list__modelos {
        -webkit-column-count: 3;
        -moz-column-count: 3;
        column-count: 3;
        -webkit-column-width: 200px;
        -moz-column-width: 200px;
        column-width: 200;
        font-size: var(--font-size-sm);
        font-weight: 500;

        .list-item {
            &:before {
                font-family: "Font Awesome 5 Free";
                font-weight: 100;
                content: "\f111";
                font-size: 7px;
                color: var(--client-theme);
                padding: 0 7px;
                display: inline-block;
            }

            &:hover {
                color: var(--client-theme);

                &:before {
                    font-weight: 900;
                }
            }
        }
    }
}

/*=============================================================
PARTES CARDS
===============================================================*/
parts-cards * .parts-cards {
    position: relative;
    overflow: hidden;
}

.parts-cards .card {
    border-radius: 10px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    border: none;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px 0px;
}


.parts-cards__list {
    display: flex;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
    color: var(--light-theme);
    font-weight: 500;
    font-size: var(--font-size-sm);

    & li:hover {
        color: var(--client-theme);
    }
}

.parts-cards .card-body {
    padding: 30px 0 50px;
    box-shadow: inset 0 70px 700px var(--dark-theme);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50%;
}

.parts-cards .card-body :hover::before {
    transform-origin: left;
    transform: scaleX(1);
}

.parts-cards .card-footer {
    padding: 0px 0 0px;
    border-top: none;
    background-color: var(--client-theme);

    &:hover {
        filter: brightness(0.9);
    }
}

.parts-cards .card-title {
    font-size: var(--font-size-sm);
    font-weight: bold;
    margin: 25px 0;
    color: var(--client-theme2);


}


/*=============================================================
directions
===============================================================*/
.directions-wrap {
    font-size: var(--font-size-sm);
    border: 1px solid var(--light-theme);
    width: max-content;
    border-radius: var(--border-theme);

    .directions-title {
        font-weight: 600;
    }

    .directions-coordinates {
        font-weight: 200;
    }

}

/*=============================================================
socials
===============================================================*/
.socials {
    .socials__round-wrap {
        background-color: var(--client-theme);
        width: 35px;
        height: 35px;
        padding: 7px;
        display: flex;
        justify-content: center;
        align-items: center;
        color: var(--client-theme2)
    }
}

/*=============================================================
working days
===============================================================*/
.footer__working-days {
    .working-img {
        & img {
            width: 35px;
        }
    }

    .working-days {
        font-size: var(--font-size-sm);
        color: var(--client-theme);
    }

    .working-hours {
        font-size: var(--font-size-sm);
    }

}

/*=============================================================
FOOTER
===============================================================*/
.footer {

    background-color: var(--client-theme2);
    color: var(--light-theme);

    .footer__link {
        font-size: var(--font-size-sm);
        text-transform: uppercase;
        font-weight: 600;
        letter-spacing: 2px;

        &:hover,
        :active,
        :focus {
            color: var(--client-theme);
        }
    }

    .footer__legal-links {
        text-decoration: underline;
    }

    .footer__title {
        font-size: var(--font-size-md);
        font-weight: 600;
    }

    .footer__adress {
        font-size: var(--font-size-sm);
    }

    .footer__legal-links {
        font-size: var(--font-size-sm);
    }

    .footer__email {
        font-size: var(--font-size-sm);
    }


    .col {
        @media (max-width: 992px) {
            &:nth-child(n+1) {
                border-bottom: 1px solid rgba(255, 255, 255, 0.059);

            }
        }

        @media (min-width: 992px) {
            &:nth-child(n+1) {
                border-right: 1px solid rgba(255, 255, 255, 0.059);

            }
        }
    }
}

.newsletter {
    position: relative;

    .newsletter__checktext {
        font-size: var(--font-size-xs);
    }

    .newsletter__input {
        width: 100%;
        height: 50px;
        padding-left: 20px;
    }

    .btn-client {
        position: absolute;
        margin: 7px;
        height: 37px;
        width: 37px;
        right: 0px;

        &:hover,
        &:focus,
        &:active {
            background-color: var(--client-theme);
            box-shadow: 0 0 0 1px var(--client-theme2);
            color: var(--client-theme2);
        }

    }
}

.footer__logo {
    width: 180px;
}

.footer__copyright {
    font-size: var(--font-size-sm);
}


/*=============================================================
STOCK DETAIL
===============================================================*/
.stock-detail {

    .swiper {
        width: 100%;
        height: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    @media (max-width:992px) {
        .swiper {
            height: 350px;
        }
    }

    .swiper-slide {
        background-size: cover;
        background-position: center;
    }

    .stock-detail__big {
        max-height: 70%;
        width: 100%;
    }

    .stock-detail__thumbs {
        margin-top: 20px;
        height: 100px;
        box-sizing: border-box;
        padding: 10px 0;
    }

    .stock-detail__thumbs .swiper-slide {
        width: 25%;
        height: 100%;
        opacity: 0.4;
    }

    .stock-detail__thumbs .swiper-slide-thumb-active {
        opacity: 1;
    }

    .swiper-slide img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .stock-detail__col-wrap {

        .badge {
            z-index: 2;
            position: absolute;
            display: block;
            color: var(--light-theme);
            border-radius: 0;
            -webkit-box-shadow: -3px 3px 10px 0px rgba(0, 0, 0, 0.1);
            -moz-box-shadow: -3px 3px 6px 0px rgba(0, 0, 0, 0.1);
            box-shadow: -3px 3px 10px 0px rgba(0, 0, 0, 0.25);


            &.badge-new {
                background-color: #009d4b;
                font-size: var(--font-size-md);
                color: var(--light-theme);
                font-weight: 600;
                top: 35px;
                left: -10px;
                padding: 18px 30px;
                border-top-right-radius: calc(2 * var(--border-theme));
                border-bottom-right-radius: calc(2 * var(--border-theme));

                @media (max-width: 992px) {
                    font-size: var(--font-size-sm);
                    left: 0px;
                }
            }

            &.badge-promo {
                background-color: var(--client-theme);
                font-size: var(--font-size-md);
                color: var(--client-theme2);
                font-weight: 700;
                top: 35px;
                left: -10px;
                padding: 10px 30px;
                border-top-right-radius: calc(2 * var(--border-theme));
                border-bottom-right-radius: calc(2 * var(--border-theme));

                @media (max-width: 992px) {
                    font-size: var(--font-size-sm);
                    left: 0px;
                    padding: 10px 10px;
                }

                .badge-promo__info {
                    font-size: var(--font-size-xs);
                    color: var(--client-theme2);
                    font-weight: 400;

                    @media (max-width: 992px) {
                        font-size: var(--font-size-xxs);
                    }
                }
            }
        }
    }

    .stock-detail__price {
        font-size: var(--font-size-4xl);
        font-weight: 700;

    }

    .discount-badge {
        padding: 3px 9px;
        margin-bottom: 6px;
        margin-top: 13px;
    }

    .stock-detail__tax {
        line-height: 1.5;
        font-size: var(--font-size-xs);
    }
}


/* infos */
.stock-detail__table-container {
    width: 100%;
    line-height: 1;
}

.stock-detail__title {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    text-transform: uppercase;
}

.stock-detail__table-title {
    font-size: var(--font-size-md);
    color: var(--client-theme2);
    font-weight: 400;
    font-style: italic;
}

.stock-detail__table-sub {
    font-size: var(--font-size-md);
    color: var(--client-theme2) !important;
    font-weight: 500;
}

.stock-detail__addtocart {
    font-size: var(--font-size-md);
    font-weight: 600;

    .cart__icon {
        fill: var(--client-theme);
        color: var(--client-theme);
    }

}



.stock-detail__buy-wrap {
    @media (min-width: 992px) {
        border-left: 3px solid var(--midtone-theme);
    }

    .stock-detail__addtocart {
        .stock-detail__addtocart {
            font-weight: 500;
        }

        & :hover {
            .stock-detail__addtocart {
                color: var(--client-theme2);
            }

            svg * {
                fill: var(--client-theme2);
            }
        }

        .stock-detail__addtocart-btn {
            @media (min-width: 992px) {
                width: 170px !important;
            }
        }
    }

}


.condicoes-venda {
    .condicoes-venda__text {
        font-size: var(--font-size-sm);
        font-weight: 600;
    }
}

/*=============================================================
Garantia
===============================================================*/

.garantia {
    line-height: 1;

    .garantia-icon {
        width: 55px;
        min-width: 55px;
    }

    .garantia__title {
        font-size: var(--font-size-xl);
        font-weight: 600;
        line-height: 1.2;
    }

    .garantia__text {
        font-size: var(--font-size-sm);
    }
}

/*=============================================================
Share icons  Socials
===============================================================*/
.share-wrap {
    border-radius: 3px;
    padding: 2px;
}


.share-icons {
    border-radius: 3px;
    padding: 0 10px;
    background-color: transparent;

    & button {
        background-color: var(--client-theme);
        border-radius: 2rem;
        width: 35px;
        height: 35px;
        margin-right: 10px;

        &:hover,
        &:focus {
            filter: brightness(0.9);
        }
    }
}

.share-icons i {
    padding: 0 5px;
}

i.fa-share-nodes {
    color: var(--client-theme2);
}

.share-icons i.fa-link {
    color: var(--client-theme2);
}

.share-icons i.fa-link-f {
    color: var(--client-theme2);
}

.share-icons i.fa-envelope {
    color: var(--client-theme2);
}

.share-icons i.fa-whatsapp {
    color: var(--client-theme2);
}


/*=============================================================
OUTRAS PEÇAS DA VIATURA
===============================================================*/
.pecas-viatura {

    .swiper-viaturas {

        .swiper-slide img {
            height: 250px;
            width: 100%;
            object-fit: cover;
        }
    }


    .pecas-viatura__table {
        .pecas-viatura__table__thumbnail {
            height: 50px;
            width: 90px;

            & img {
                height: 50px;
                width: 100%;
                object-fit: cover;
            }
        }
    }

    .swiper-button-prev-unique,
    .swiper-button-next-unique {

        position: absolute;
        z-index: 2;
    }

    .swiper-button-prev-unique {
        top: 50%;
        left: 0px;
    }

    .swiper-button-next-unique {
        top: 50%;
        right: 0px;
    }

    .swiper-button-disabled {
        display: none;
    }
}


/*=============================================================
Pagination
===============================================================*/

.pagination {
    --bs-pagination-disabled-bg: transparent;
    --bs-pagination-disabled: transparent;
    font-size: var(--font-size-md);
}

.pagination .page-link {
    padding: 5px 15px;
    color: var(--client-theme2);
    border-color: rgba(128, 128, 128, 0.24);
    border: none;
    background-color: transparent;
    border-radius: 50px;
}

.page-link:hover {
    background-color: var(--client-theme2);
    color: var(--client-theme)
}

.active>.page-link,
.page-link.active {
    color: var(--client-theme);
    background-color: var(--client-theme2);
    border-color: var(--midtone-theme);
}

.page-item:first-child .page-link,
.page-item:last-child .page-link {
    font-weight: 600;
    border-radius: 50px;
}


/*=============================================================
LISTA DE PARTES
===============================================================*/
.section-list {
    .section-list__see-all {
        &:hover {
            color: var(--client-theme);
        }
    }

    .list-item {
        &:before {
            position: relative;
            font-family: "Font Awesome 5 Free";
            font-weight: 100;
            content: "\f111";
            font-size: 7px;
            color: var(--client-theme);
            padding: 0 7px;
            top: -3px;
            display: inline-block;
        }

        &:hover {
            color: var(--client-theme);

            &:before {
                font-weight: 900;
            }
        }
    }

    .list {
        -webkit-column-count: 4;
        -moz-column-count: 4;
        column-count: 4;
        -webkit-column-width: 200px;
        -moz-column-width: 200px;
        column-width: 200
    }

}


#backToTop {
    position: fixed;
    right: 75px;
    bottom: 0px;
    z-index: 10;
    height: 35px;
    padding-top: 4px;
    width: 48px;
    color: white;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    background-color: #333333;

    &:hover {
        background-color: var(--client-theme);
    }
}