﻿:root {
    --bg-body: #e5e5e578;
    --primary-color: #ee2e34;
    --primary-color-transparent: #ee2e344e;
    --secondary-color: #fff;
    --primary-dark-color: #822f37;
    --color-light-gray: #d9d3d3e4;
    --color-gray: #706a6a;
    --color-dark-gray: #504b4b;
    --color-white: #fff;
    --bg-transparent: #706a6a9f;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-body);
    font-family: 'Roboto Condensed', sans-serif;
}

input {
    height: 3rem !important;
    border-radius: 0 !important;
}

.border-none {
    border: none !important;
}

.font-1 {
    font-size: 1rem !important;
}

.gap-1 {
    gap: 1rem;
}

.gap-5 {
    gap: 5rem;
}

.col-lg-2 {
    width: 50%;
}

.nav-top {
    background-color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: space-around;
    height: 10vh;
    border: 1px solid var(--color-light-gray);
}

    .nav-top .nav-brand {
        color: var(--primary-color);
        margin-left: 10px;
        padding: 0 20px;
        font-size: 1.5rem;
        width: 150px;
    }

.nav-brand .icon-brand .icon-brand-alt {
    display: block;
    color: var(--color-gray);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
}

.icon-brand > a:hover {
    text-decoration: none;
}

.nav-category {
    display: flex;
    align-items: flex-end;
    position: relative;
    cursor: pointer;
    height: 100%;
    padding: 0 15px;
}

    .nav-category > ul > li {
        list-style: none;
        font-weight: 700;
        color: var(--color-gray);
    }

        .nav-category > ul > li::after {
            content: "\f078";
            font-family: "Font Awesome 5 Free";
            font-weight: 700;
            font-size: .7rem;
        }

    .nav-category:hover .super-menu-category {
        opacity: 1;
        z-index: 999;
    }


.super-menu-category {
    justify-content: space-around;
    align-items: flex-start;
    position: absolute;
    z-index: -1;
    left: 0;
    top: calc(100%);
    background-color: var(--color-white);
    height: 550px;
    max-height: 550px;
    width: 250px;
    max-width: 250px;
    padding: 1px 15px;
    opacity: 0;
    transition: opacity .2s ease-in-out .2s;
    border: 1px solid var(--color-light-gray);
}

    .super-menu-category::before {
        content: "";
        position: relative;
        display: flex;
        border-left: 1px solid var(--color-light-gray);
        border-top: 1px solid var(--color-light-gray);
        width: 20px;
        height: 20px;
        top: -12px;
        left: 50px;
        margin: 0;
        transform: rotate(45deg);
        transition: opacity .2s ease-in-out;
        z-index: 999;
        background-color: var(--color-white);
    }

    .super-menu-category span {
        font-weight: 700;
        font-size: 1rem;
        color: var(--color-gray);
    }

.super-menu-list {
    padding: 0;
    height: 100%;
}

    .super-menu-list > li {
        display: flex;
        align-items: center;
        list-style: none;
        padding-top: 0;
    }

        .super-menu-list > li:before {
            content: "\f054";
            font-family: "Font Awesome 5 Free";
            font-weight: 600;
            font-size: .6rem;
            padding: 5px;
        }

        .super-menu-list > li a {
            font-weight: normal;
            font-size: 1rem;
            color: var(--color-gray);
        }

            .super-menu-list > li a:hover {
                text-decoration: none;
            }

.nav-top .nav-search {
    flex-grow: 1;
    display: flex;
    justify-content: flex-end;
    padding: 0 10px;
}

    .nav-top .nav-search form {
        width: 100%;
        display: inline-flex;
        border: 1px solid var(--color-light-gray);
        padding: 0 10px;
    }

    .nav-top .nav-search input {
        width: 100%;
        border: none;
        line-height: 2.5rem;
        font-size: 1rem;
        outline: none;
        padding-left: 10px;
        color: #0f0f0f;
    }

    .nav-top .nav-search form:focus-within {
        box-shadow: 0px 0px 1px var(--color-gray);
    }

    .nav-top .nav-search form button {
        background-color: transparent;
        outline: none;
        border: none;
    }

.nav.navbar {
    flex-grow: 1;
    display: flex;
    justify-content: flex-start;
    position: relative;
    height: 100%;
}

    .nav.navbar ul {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: .2rem;
        margin: 0;
        width: 80%;
    }

        .nav.navbar ul li {
            position: relative;
            list-style-type: none;
        }

            .nav.navbar ul li:hover::after {
                display: block;
            }

            .nav.navbar ul li.nav-cart {
                margin: 0 10px;
                font-size: 1.5rem;
            }

                .nav.navbar ul li.nav-cart:hover::after {
                    display: none;
                }

.navbar ul li::after {
    display: none;
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--color-light-gray);
    bottom: 0px;
}

.nav.navbar ul li a {
    text-decoration: none;
    color: var(--color-gray);
    font-weight: 600;
}

nav.nav.navbar span .icon-cart {
    color: var(--color-gray);
    font-size: 1.7rem;
}

nav.nav.navbar span .icon-cart-qtde {
    display: inline-flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    position: relative;
    left: -7px;
    width: 20px;
    height: 20px;
    padding: 5px;
    background-color: var(--color-gray);
    color: var(--color-white);
    font-size: 12px;
    font-weight: bold;
    border-radius: 50%;
}

.banner {
    height: 50vh;
    display: flex;
    overflow: hidden;
}

    .banner .slider {
        position: relative;
        height: 50vh;
        display: flex;
        width: 100%;
    }

        .banner .slider img {
            position: absolute;
            width: 100%;
            height: 100%;
            transition: opacity 1s ease-in-out;
        }

        .banner .slider a.banner-url-target {
            position: absolute;
            display: inline-block;
            padding: 10px 20px;
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            color: var(--secondary-color);
            width: 150px;
            margin-bottom: 25px;
            border-radius: 0;
        }

            .banner .slider a.banner-url-target:hover {
                background-color: var(--primary-dark-color);
                border-color: var(--primary-dark-color);
            }

.banner-link {
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 3rem;
    justify-content: center;
    width: 100%;
    height: 100%;
    background-color: #aaa0;
    bottom: 0;
    top: 0;
    z-index: 999;
}

    .banner-link:hover {
        cursor: pointer;
    }

    .banner-link a:hover {
        background-color: var(--primary-color) !important;
        color: var(--color-white) !important;
    }

.button-slider {
    z-index: 9999;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    bottom: 0;
    width: auto;
    height: auto;
    color: #555;
    font-size: 2rem;
    font-weight: 600;
    padding: 0;
    transition: all .5s ease-in-out;
}

.previous:hover::before, .next:hover::before {
    background-color: var(--secondary-color);
}

.previous {
    left: 10px;
}

    .previous::before {
        display: flex;
        align-items: center;
        content: "\f053";
        font-family: "Font Awesome 5 Free";
        background-color: #ffffff6c;
        height: 50px;
        width: 50px;
        padding: 0 15px;
        border-radius: 50%;
        transition: all .5s ease-in-out;
    }

.next {
    right: 10px;
}

    .next::before {
        display: flex;
        align-items: center;
        content: "\f054";
        font-family: "Font Awesome 5 Free";
        background-color: #ffffff6c;
        height: 50px;
        padding: 0 15px;
        border-radius: 50%;
        transition: all .5s ease-in-out;
    }

.expose {
    margin-top: 1.5rem;
    height: 30vh;
    background-color: rgb(110, 85, 255);
    box-shadow: 0px 0px 10px #aaa;
}

#list-group-combo {
    width: 100%;
}

    #list-group-combo p {
        font-size: .9rem;
        margin: 0;
        color: var(--color-gray);
    }

.text-decoration-line-through {
    text-decoration: line-through;
}

.label-combo-difference-price {
    background-color: #43bed98c;
    padding: .5rem;
    font-weight: bold;
    font-size: 1rem;
    border-radius: 5%;
}


.hover:hover {
    box-shadow: 0px 0px 5px #3333;
}
/*--------------------------------------------------------------
# Sections main
--------------------------------------------------------------*/
.main-content {
    display: flex;
    margin: 0;
    padding: 0;
}


* CUSTOMIZE THE CAROUSEL
-------------------------------------------------- */
/* Carousel base class */
.carousel {
    margin-bottom: 4rem;
}
/* Since positioning the image, we need to help out the caption */
.carousel-caption {
    bottom: 3rem;
    z-index: 10;
}

/* Declare heights because of positioning of img element */
.carousel-item {
    height: 32rem;
    background-color: #777;
}

    .carousel-item > img {
        position: absolute;
        top: 0;
        left: 0;
        min-width: 100%;
        height: 32rem;
    }


/* MARKETING CONTENT
-------------------------------------------------- */

/* Center align the text within the three columns below the carousel */
.marketing .col-lg-4 {
    margin-bottom: 1.5rem;
    text-align: center;
}

.marketing h2 {
    font-weight: 400;
}

.marketing .col-lg-4 p {
    margin-right: .75rem;
    margin-left: .75rem;
}


/* Featurettes
------------------------- */

.featurette-divider {
    margin: 5rem 0; /* Space out the Bootstrap <hr> more */
}

/* Thin out the marketing headings */
.featurette-heading {
    font-weight: 300;
    line-height: 1;
    letter-spacing: -.05rem;
}

.help-payment {
    border: 1px solid #5555551f;
    border-radius: 2px;
    padding: 20px 15px;
}

    .help-payment li {
        list-style: none;
        margin: 10px;
    }

button.btn.btn-sm.btn-default.btn-pix {
    border: 1px solid #17a2b8;
}

    button.btn.btn-sm.btn-default.btn-pix:hover {
        box-shadow: 0px 0px 5px #17a2b8;
    }

    button.btn.btn-sm.btn-default.btn-pix i {
        color: #17a2b8;
    }

button.btn.btn-sm.btn-default.btn-payment {
    border: 1px solid #dc3545;
}

    button.btn.btn-sm.btn-default.btn-payment:hover {
        box-shadow: 0px 0px 5px #dc3545;
    }

    button.btn.btn-sm.btn-default.btn-payment i {
        color: #dc3545;
    }

.btn-pix-copia-cola {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 20px;
    border: 1px solid #adb5bd;
    margin: 20px 0;
    border-radius: 5px;
}

    .btn-pix-copia-cola:hover {
        box-shadow: 0px 0px 2px #555555b2;
    }

    .btn-pix-copia-cola i {
        font-size: 2rem;
        color: #00b4a7ff;
    }

.container-pix-recebido {
    display: flex;
    min-height: 100vh;
    background-color: #fff;
    padding: 1rem;
    margin: 1rem;
    align-items: center;
    justify-content: center;
}

    .container-pix-recebido .content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        top: 0;
        bottom: 0;
        gap: 2rem;
        height: 100%;
        width: 100%;
    }
/* RESPONSIVE CSS
-------------------------------------------------- */
@media (min-width: 40em) {
    /* Bump up size of carousel content */
    .carousel-caption p {
        margin-bottom: 1.25rem;
        font-size: 1.25rem;
        line-height: 1.4;
    }

    .featurette-heading {
        font-size: 50px;
    }
}

@media (min-width: 62em) {
    .featurette-heading {
        margin-top: 7rem;
    }
}
/*accordion category*/
.main-menu-left {
    overflow-y: scroll;
    width: 20%;
    min-width: 240px;
    max-height: 100%;
    max-height: 615px;
    min-height: 615px;
    padding-top: 10px;
    transition: max-width .2s ease-in-out;
}
.overlayBtnPagarPix {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    background-color: #252323d1;
    justify-content: center;
    align-items: center;
    height: 100%;
    color: #fff;
    padding: .2rem 1rem;
    margin: 0;
    border-radius: 5px;
    font-size:1.5rem;
}

.main-wrapper-content {
    width: 80vw;
    background-color: #fafafa; /*#d9d3d31b;*/
    overflow-y: auto;
}

.accordion-category {
    padding: 5px 10px;
    margin: 0 10px;
}

    .accordion-category li {
        list-style: none;
        width: 100%;
        margin: 0;
    }


        .accordion-category li label {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 5px;
            cursor: pointer;
            font-weight: 800;
            font-size: 1rem;
            margin-bottom: 0;
            color: var(--color-gray);
        }

            .accordion-category li label::after {
                content: "\f078";
                right: 8px;
                top: 8px;
                font-family: "Font Awesome 5 Free";
                font-weight: 600;
                transition: all ease-in-out 300ms;
                font-size: .8rem;
            }



        .accordion-category li ul {
            margin: 15px 0;
            padding: 0;
            max-height: 300px;
            overflow-y: auto;
        }

            .accordion-category li ul li {
                font-size: 1rem;
                padding: 10px 0;
                border-bottom: 1px solid #5555551d;
            }

                .accordion-category li ul li > a {
                    font-size: 1rem;
                    color: var(--color-gray);
                }

                    .accordion-category li ul li > a:hover {
                        text-decoration: none;
                    }

        .accordion-category li > a {
            font-size: 1rem;
            color: var(--color-gray);
        }

            .accordion-category li > a:hover {
                text-decoration: none;
            }


    .accordion-category input[type="checkbox"] {
        display: none;
    }

.accordion-category-content {
    padding: 0 10px;
    line-height: 26px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s;
}

.accordion-category input[type="checkbox"]:checked + .accordion-category-content {
    max-height: 550px;
}

.accordion-brand {
    padding: 10px;
    margin: 10px;
}

    .accordion-brand li {
        list-style: none;
        width: 100%;
        margin: 0;
    }

        .accordion-brand li label {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 5px;
            cursor: pointer;
            font-weight: 800;
            font-size: 1.2rem;
            margin-bottom: 0;
            color: var(--color-gray);
        }

            .accordion-brand li label::after {
                content: "\f078";
                right: 8px;
                top: 8px;
                font-family: "Font Awesome 5 Free";
                font-weight: 600;
                transition: all ease-in-out 300ms;
                font-size: .8rem;
            }

        .accordion-brand li ul {
            margin: 15px 0;
            padding: 0;
            max-height: 300px;
            overflow: auto;
        }

            .accordion-brand li ul li {
                font-size: 1rem;
                padding: 10px 0;
                border-bottom: 1px solid #5555551d;
            }


                .accordion-brand li ul li > a {
                    font-size: 1rem;
                    color: var(--color-gray);
                }

                    .accordion-brand li ul li > a:hover {
                        text-decoration: none;
                    }

    .accordion-brand input[type="checkbox"] {
        display: none;
    }

.accordion-brand-content {
    padding: 0 10px;
    line-height: 26px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s;
}

.accordion-brand input[type="checkbox"]:checked + .accordion-brand-content {
    max-height: 400px;
}

.accordion-labels {
    padding: 5px 10px;
    margin: 0 10px;
}

    .accordion-labels li {
        list-style: none;
        width: 100%;
        margin: 0;
    }

        .accordion-labels li label {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 5px;
            cursor: pointer;
            font-weight: 800;
            font-size: 1rem;
            margin-bottom: 0;
            color: var(--color-gray);
        }

            .accordion-labels li label::after {
                content: "\f078";
                right: 8px;
                top: 8px;
                font-family: "Font Awesome 5 Free";
                font-weight: 600;
                transition: all ease-in-out 300ms;
                font-size: .8rem;
            }


        .accordion-labels li ul {
            margin: 15px 0;
            padding: 0;
            max-height: 300px;
            overflow-y: auto;
        }

            .accordion-labels li ul li {
                font-size: 1rem;
                padding: 10px 0;
                border-bottom: 1px solid #5555551d;
            }

                .accordion-labels li ul li > a {
                    font-size: 1rem;
                    color: var(--color-gray);
                }

                    .accordion-labels li ul li > a:hover {
                        text-decoration: none;
                    }

    .accordion-labels input[type="checkbox"] {
        display: none;
    }

.accordion-labels-content {
    padding: 0 10px;
    line-height: 26px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s;
}

.accordion-labels input[type="checkbox"]:checked + .accordion-labels-content {
    max-height: 550px;
}

.wrapper-market-places {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    padding: 10px;
    /*gap: 1rem;*/
}

    .wrapper-market-places img {
        width: 45px;
        height: auto;
        border-radius: 5%;
    }

    .wrapper-market-places a:hover {
        text-decoration: none;
    }

    .wrapper-market-places p {
        color: #555 !important;
        margin: 0;
    }
/*--------------------------------------------------------------
# footer
--------------------------------------------------------------*/
#footer {
    border-top: 1px solid var(--color-light-gray);
    background: var(--secondary-color);
    padding: 5px 20px;
    color: var(--color-gray);
    font-size: 14px;
}

    #footer .footer-top {
        background: var(--secondary-color);
        border-bottom: 1px solid var(--secondary-color);
        padding: 20px 60px;
    }

        #footer .footer-top .footer-info {
            /*margin-bottom: 30px;*/
        }

            #footer .footer-top .footer-info h3 {
                font-size: 24px;
                margin: 0 0 20px 0;
                padding: 2px 0 2px 0;
                line-height: 1;
                font-weight: 700;
            }

            #footer .footer-top .footer-info p {
                font-size: 14px;
                line-height: 24px;
                margin-bottom: 0;
                color: var(--color-gray);
            }

        #footer .footer-top .social-links {
            margin: 10px 0 0 0;
        }

            #footer .footer-top .social-links a {
                font-size: 18px;
                display: inline-block;
                color: var(--color-gray);
                line-height: 1;
                padding: 8px 10px;
                margin-right: 4px;
                border-radius: 50%;
                text-align: center;
                transition: 0.3s;
            }


        #footer .footer-top h4 {
            font-size: 16px;
            font-weight: 600;
            color: var(--color-gray);
            position: relative;
            padding-bottom: 12px;
        }

        #footer .footer-top .footer-links {
            margin-bottom: 30px;
        }

            #footer .footer-top .footer-links ul {
                list-style: none;
                padding: 0;
                margin: 0;
            }

                #footer .footer-top .footer-links ul i {
                    padding-right: 2px;
                    color: var(--color-gray);
                    font-size: 18px;
                    line-height: 1;
                }

                #footer .footer-top .footer-links ul li {
                    padding: 10px 0;
                    display: flex;
                    align-items: center;
                }

                    #footer .footer-top .footer-links ul li:first-child {
                        padding-top: 0;
                    }

                #footer .footer-top .footer-links ul a {
                    color: var(--color-gray);
                    transition: 0.3s;
                    display: inline-block;
                    line-height: 1;
                    text-decoration: none;
                }


                    #footer .footer-top .footer-links ul a:hover {
                        color: rgba(214, 215, 216, 0.6);
                    }

        #footer .footer-top .footer-newsletter form {
            margin-top: 30px;
            /*background: var(--secondary-color);*/
            border-radius: 0;
        }

            #footer .footer-top .footer-newsletter form input[type="email"] {
                border: 1px solid var(--color-gray);
                padding: 10px;
                width: calc(100% - 110px);
                outline: none;
                height: 40px;
            }


            #footer .footer-top .footer-newsletter form input[type="submit"] {
                position: absolute;
                right: 0;
                border: 1px solid var(--secondary-color);
                background: none;
                font-size: 16px;
                padding: 7px 20px;
                background: var(--primary-color);
                color: var(--secondary-color);
                transition: 0.3s;
                border-radius: 0;
            }

                #footer .footer-top .footer-newsletter form input[type="submit"]:hover {
                    background-color: var(--primary-color);
                    color: var(--secondary-color);
                }

    #footer .copyright {
        text-align: center;
        padding-top: 30px;
    }

    #footer .credits {
        padding-top: 10px;
        text-align: center;
        font-size: 13px;
        color: var(--color-gray);
    }

        #footer .credits a {
            color: var(--color-gray);
        }

/*

    Botao flutuante para chat e back to top
*/
.buttom-chat-float {
    background-color: var(--primary-color);
    cursor: pointer;
    position: fixed;
    bottom: 30px;
    left: 20px;
    /*left: 20px;
    float: left;*/
    display: inline-block;
    border-radius: 25px;
    border: 1px solid var(--color-white);
    width: 50px;
    height: 50px;
}

    .buttom-chat-float i {
        font-size: 1.5em;
        position: absolute;
        top: 10px;
        left: 13px;
        color: var(--secondary-color);
    }

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    background-color: var(--primary-color);
    position: fixed;
    display: none;
    width: 50px;
    height: 50px;
    border-radius: 25px;
    right: 20px;
    bottom: 30px;
    color: var(--secondary-color);
    transition: display 0.5s ease-in-out;
    z-index: 99999;
    border: none;
    cursor: pointer;
}

    .back-to-top i {
        font-size: 1.5em;
        position: absolute;
        top: 10px;
        left: 13px;
    }

    .back-to-top:hover {
        color: var(--secondary-color);
        /*background: #629fd3;*/
        /*transition: background 0.2s ease-in-out;*/
    }

.ismobile-hide {
    display: block;
}

.ismobile-show {
    display: none;
}

#menu-hamburger-state {
    display: none;
}

/*importado do paulistinha_custom.css
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
/*width:100%;/
}
*/
@media screen and (max-width: 1142px) {
    .nav.navbar ul {
        width: 65%;
    }
}

@media screen and (max-width: 996px) {
    .preview {
        margin-bottom: 20px;
    }
}

.preview-pic {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.preview-thumbnail.nav-tabs {
    border: none;
    padding: 15px 5px;
}

    .preview-thumbnail.nav-tabs li {
        width: 18%;
        margin-right: 2.5%;
    }

        .preview-thumbnail.nav-tabs li img {
            max-width: 100%;
            display: block;
        }

        .preview-thumbnail.nav-tabs li a {
            padding: 0;
            margin: 0;
        }

        .preview-thumbnail.nav-tabs li:last-of-type {
            margin-right: 0;
        }

.tab-content {
    overflow: hidden;
}

    .tab-content img {
        width: 100%;
        -webkit-animation-name: opacity;
        animation-name: opacity;
        -webkit-animation-duration: .3s;
        animation-duration: .3s;
    }

/*importado do paulistinha_custom.css*/

/*X-Small devices (portrait phones, less than 576px)*/
@media (max-width: 575.98px) {
    .nav.navbar {
        max-width: 80%;
    }

    #footer .footer-top {
        padding: 20px 10px;
    }

    .banner {
        height: 25vh;
    }

        .banner .slider {
            position: relative;
            height: 25vh;
        }
}

#overlay {
    display: none;
    z-index: 12;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    background-color: var(--bg-transparent);
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    /* display: none; <- Crashes Chrome on hover */
    -webkit-appearance: none;
    margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}

input[type=number] {
    -moz-appearance: textfield;
}
/*Small devices (landscape phones, less than 768px)*/
@media (max-width: 767.98px) {
    .ismobile-hide {
        display: none;
    }

    .ismobile-show {
        display: block;
    }

    .gap-sm-1 {
        gap: 1rem;
    }

    .nav.navbar {
        display: block;
        align-items: flex-start;
        z-index: 12;
        background-color: var(--color-white);
        position: absolute;
        top: 0;
        bottom: 0;
        height: auto;
        width: 75%;
        padding: 10px;
        transition: all 1s ease-in-out;
        transform: translateX(-300px);
    }

        .nav.navbar > ul {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin: 0;
            padding: 0;
            width: 100%
        }

    .menu-hamburger {
        display: flex;
        align-items: center;
        width: 40px;
        height: 40px;
        margin: 2px;
        padding: 5px;
    }

        .menu-hamburger > span {
            display: block;
            position: relative;
            width: 100%;
            height: 2px;
            background-color: var(--color-gray);
            transition: all .2s ease-in;
        }

        .menu-hamburger span::before,
        .menu-hamburger span::after {
            content: "";
            display: block;
            width: 100%;
            height: 100%;
            background-color: var(--color-gray);
            position: absolute;
            transition: all .2s ease-out;
        }

        .menu-hamburger span::before {
            top: -10px;
        }

        .menu-hamburger span::after {
            bottom: -10px;
        }

    #menu-hamburger-state:checked ~ label .menu-hamburger {
        transform: rotate(45deg);
    }

    #menu-hamburger-state:checked ~ nav.nav.navbar {
        display: flex;
        transform: translateX(0);
    }

    #menu-hamburger-state:checked ~ label .menu-hamburger span::before {
        top: 0;
        transform: rotate(-90deg);
    }

    #menu-hamburger-state:checked ~ label .menu-hamburger span::after {
        transform: rotate(90deg);
        bottom: 0;
    }

    .nav-top {
        justify-content: flex-start;
    }

        .nav-top .nav-brand {
            margin: 5px;
            padding: 2px;
            width: 50px;
        }

    .nav.navbar, .nav-category {
        display: none;
    }


    .nav-top .nav-search {
        justify-content: flex-start;
        padding: 0;
    }

    .nav.navbar ul {
        align-items: flex-start;
        gap: 0;
    }

        .nav.navbar ul li a {
            font-weight: 600;
            font-size: 1rem;
        }

    nav.nav.navbar span .icon-cart {
        position: absolute;
        top: 25px;
        right: 20px;
        font-size: 2rem;
    }

    nav.nav.navbar span .icon-cart-qtde {
        display: none !important;
        position: absolute;
        top: 25px;
        right: 20px;
        font-size: 1rem;
    }

    .previous {
        left: 0;
    }

    .next {
        right: 0;
    }

        .previous::before, .next::before {
            height: 40px;
            width: 40px;
            padding: 12px;
            font-size: 1.5rem;
        }


    .main-content {
        flex-direction: column;
    }

    .main-menu-left {
        width: 100%;
    }

    .wrapper-image-detail {
        flex-direction: column;
        display: block !important;
    }

    .list-thumb-product {
        height: auto !important;
        min-height: auto !important;
        min-width: 100% !important;
        overflow-y: clip !important;
        overflow-x: auto !important;
        flex-direction: row !important;
        margin-bottom: 10px;
    }

    .main-wrapper-content {
        width: 100vw;
        height: 100vh;
    }

    footer .footer-top .container .row {
        gap: 0;
    }
}



.redes-sociais {
    color: var(--color-gray);
    font-size: 1rem;
}

    .redes-sociais .fa-facebook:hover {
        color: #3b5998 !important;
    }

    .redes-sociais .fa-instagram:hover {
        color: #f53da2 !important;
    }

    .redes-sociais .fa-whatsapp:hover {
        color: #00b489 !important;
    }

    .redes-sociais .fa-twitter:hover {
        color: #55acee !important;
    }




/*Medium devices (tablets, less than 992px)*/
@media (max-width: 991.98px) {
}

/*Large devices (desktops, less than 1200px)*/
@media (max-width: 1199.98px) {
}
/*X-Large devices (large desktops, less than 1400px)*/
@media (max-width: 1399.98px) {
}




@media screen and (min-width: 997px) {
    .wrapper {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
    }
}

.details {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}


.colors {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.list-thumb-product {
    max-height: 500px;
    min-height: 500px;
    min-width: 130px;
    overflow-y: auto;
    overflow-x: clip;
    justify-content: flex-start;
    align-items: center;
    display: flex;
    flex-direction: column;
    height: 100%;
    gap: 1em;
    padding: 0;
}

    .list-thumb-product .product-image-thumb {
        width: 125px;
        height: 125px;
        border: 1px solid #55555526;
    }

.wrapper-image-detail {
    display: flex;
    align-items: center;
}

.product-image-detail {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 0px;
    /*object-fit: cover;*/
    max-height: 500px;
    transition: opacity 0.3s ease-in-out;
    object-fit: contain;
}

.product-title, .price, .sizes, .colors {
    text-transform: uppercase;
    font-weight: bold;
}

    .checked, .price span {
        color: #20254b;
        /*color: #ff9f1a;*/
    }

.product-title, .rating, .product-description, .price, .vote, .sizes {
    margin-bottom: 15px;
}

.product-title {
    margin-top: 0;
}

.size {
    margin-right: 10px;
}

    .size:first-of-type {
        margin-left: 40px;
    }

.color {
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
    height: 2em;
    width: 2em;
    border-radius: 2px;
}

    .color:first-of-type {
        margin-left: 20px;
    }

.add-to-cart, .like {
    /*background: #ff9f1a;*/
    padding: 1.2em 1.5em;
    border: none;
    text-transform: UPPERCASE;
    font-weight: bold;
    /*color: #fff;*/
    -webkit-transition: background .3s ease;
    transition: background .3s ease;
}

    .add-to-cart:hover, .like:hover {
        /*background: #b36800;*/
        /*color: #fff;*/
    }

.not-available {
    text-align: center;
    line-height: 2em;
}

    .not-available:before {
        /*font-family: fontawesome;*/
        content: "\f00d";
        color: #fff;
    }

.orange {
    background: #ff9f1a;
}

.green {
    background: #85ad00;
}

.blue {
    background: #0076ad;
}

.tooltip-inner {
    padding: 1.3em;
}

@-webkit-keyframes opacity {
    0% {
        opacity: 0;
        -webkit-transform: scale(3);
        transform: scale(3);
    }

    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes opacity {
    0% {
        opacity: 0;
        -webkit-transform: scale(3);
        transform: scale(3);
    }

    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}
