﻿.hidden {
    visibility: hidden;
}

.displayblock {
    display: block !important;
}

.displaynone {
    display: none !important;
}

@media only screen and (min-width: 1201px) {
    .container {
        max-width: 1200px;
    }
}

.slider-area .bg-img .slider-content-1 h1 {
    margin-bottom: 25px;
}

header[role=banner] {
    position: relative;
    height: 50px;
    background: #343642;
}

    header[role=banner] #cd-logo {
        float: left;
        margin: 4px 0 0 5%;
        /* reduce logo size on mobile and make sure it is left aligned with the transform-origin property */
        -webkit-transform-origin: 0 50%;
        -moz-transform-origin: 0 50%;
        -ms-transform-origin: 0 50%;
        -o-transform-origin: 0 50%;
        transform-origin: 0 50%;
        -webkit-transform: scale(0.8);
        -moz-transform: scale(0.8);
        -ms-transform: scale(0.8);
        -o-transform: scale(0.8);
        transform: scale(0.8);
    }

        header[role=banner] #cd-logo img {
            display: block;
        }

    header[role=banner]::after {
        /* clearfix */
        content: '';
        display: table;
        clear: both;
    }

header[role=banner] {
    height: 80px;
}

    header[role=banner] #cd-logo {
        margin: 20px 0 0 5%;
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }

.main-nav {
    float: right;
    width: 44px;
    height: 100%;
    background: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/148866/cd-icon-menu.svg") no-repeat center center;
    cursor: pointer;
}

    .main-nav ul {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        -webkit-transform: translateY(-100%);
        -moz-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
        -o-transform: translateY(-100%);
        transform: translateY(-100%);
    }

        .main-nav ul.is-visible {
            -webkit-transform: translateY(50px);
            -moz-transform: translateY(50px);
            -ms-transform: translateY(50px);
            -o-transform: translateY(50px);
            transform: translateY(50px);
        }

    .main-nav a {
        color: #fff;
        background: #473db9;
        height: auto;
        line-height: normal;
        position: relative;
        margin-left: 15px;
        font-size: 14px;
        font-weight: 600;
        border: none;
        border-radius: 5px;
        box-shadow: none;
    }

        .main-nav a:hover {
            color: #fff !important;
            background-color: #212529;
        }


        .main-nav a.cd-signin, .main-nav a.cd-signup {
            padding: 0.8em 1em;
            border-radius: 0.2em;
        }

.main-nav {
    width: 100%;
    height: auto;
    background: none;
    cursor: auto;
}

    .main-nav ul {
        position: static;
        width: auto;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }

        .main-nav ul.is-visible {
            -webkit-transform: translateY(0);
            -moz-transform: translateY(0);
            -ms-transform: translateY(0);
            -o-transform: translateY(0);
            transform: translateY(0);
        }

    .main-nav li {
        display: inline-block;
        margin-left: 1em;
    }

        .main-nav li:nth-last-child(2) {
            margin-left: 2em;
        }



.login-mobile {
    margin-left: 0px !important;
    background-color: transparent !important;
}
/* -------------------------------- 

xsigin/signup popup 

-------------------------------- */
.cd-user-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(52, 54, 66, 0.9);
    z-index: 3;
    overflow-y: auto;
    cursor: pointer;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity 0.3s 0, visibility 0 0.3s;
    -moz-transition: opacity 0.3s 0, visibility 0 0.3s;
    transition: opacity 0.3s 0, visibility 0 0.3s;
}

    .cd-user-modal.is-visible {
        visibility: visible;
        opacity: 1;
        -webkit-transition: opacity 0.3s 0, visibility 0 0;
        -moz-transition: opacity 0.3s 0, visibility 0 0;
        transition: opacity 0.3s 0, visibility 0 0;
    }

        .cd-user-modal.is-visible .cd-user-modal-container {
            -webkit-transform: translateY(0);
            -moz-transform: translateY(0);
            -ms-transform: translateY(0);
            -o-transform: translateY(0);
            transform: translateY(0);
        }

.cd-user-modal-container {
    position: relative;
    width: 90%;
    max-width: 600px;
    background: #FFF;
    margin: 3em auto 4em;
    cursor: auto;
    border-radius: 0.25em;
    -webkit-transform: translateY(-30px);
    -moz-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    -o-transform: translateY(-30px);
    transform: translateY(-30px);
    -webkit-transition-property: -webkit-transform;
    -moz-transition-property: -moz-transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

    .cd-user-modal-container .cd-switcher::after {
        clear: both;
        content: "";
        display: table;
    }

    .cd-user-modal-container .cd-switcher li {
        width: 50%;
        float: left;
        text-align: center;
    }

        .cd-user-modal-container .cd-switcher li:first-child a {
            border-radius: .25em 0 0 0;
        }

        .cd-user-modal-container .cd-switcher li:last-child a {
            border-radius: 0 .25em 0 0;
        }

    .cd-user-modal-container .cd-switcher a {
        display: block;
        width: 100%;
        height: 50px;
        line-height: 50px;
        background: #d2d8d8;
        color: #809191;
    }

        .cd-user-modal-container .cd-switcher a.selected {
            background: #FFF !important;
            color: #505260;
        }

@media only screen and (min-width: 600px) {
    .cd-user-modal-container {
        margin: 4em auto;
    }

        .cd-user-modal-container .cd-switcher a {
            height: 70px;
            line-height: 70px;
        }
}

.cd-form {
    padding: 1.4em;
}

    .cd-form .fieldset {
        position: relative;
        margin: 0.5em 0;
    }

        .cd-form .fieldset:first-child {
            margin-top: 0;
        }

        .cd-form .fieldset:last-child {
            margin-bottom: 0;
        }

    .cd-form label {
        font-size: 14px;
        font-size: 0.875rem;
    }

        .cd-form label.image-replace {
            /* replace text with an icon */
            display: inline-block;
            position: absolute;
            left: 15px;
            top: 50%;
            bottom: auto;
            -webkit-transform: translateY(-50%);
            -moz-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
            -o-transform: translateY(-50%);
            transform: translateY(-50%);
            height: 20px;
            width: 20px;
            overflow: hidden;
            text-indent: 100%;
            white-space: nowrap;
            color: transparent;
            text-shadow: none;
            background-repeat: no-repeat;
            background-position: 50% 0;
        }

        .cd-form label.cd-username {
            background-image: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/148866/cd-icon-username.svg");
        }

        .cd-form label.cd-email {
            background-image: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/148866/cd-icon-email.svg");
        }

        .cd-form label.cd-password {
            background-image: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/148866/cd-icon-password.svg");
        }


        .cd-form label.cd-data-nasc {
            background-image: url('../img/site/calendar.png');
        }

        .cd-form label.cd-telefone {
            background-image: url('../img/site/telefone.png');
        }

        .cd-form label.cd-cpf {
            background-image: url('../img/site/cpf.png');
        }


    .cd-form input {
        margin: 0;
        padding: 0;
        border-radius: 0.25em;
    }

        .cd-form input.full-width {
            width: 100%;
        }

        .cd-form input.has-padding {
            padding: 12px 20px 12px 50px;
        }

        .cd-form input.has-border {
            border: 1px solid #d2d8d8;
            -webkit-appearance: none;
            -moz-appearance: none;
            -ms-appearance: none;
            -o-appearance: none;
            appearance: none;
        }

            .cd-form input.has-border:focus {
                border-color: #343642;
                box-shadow: 0 0 5px rgba(52, 54, 66, 0.1);
                outline: none;
            }

        .cd-form input.has-error {
            border: 1px solid #d76666;
        }

        .cd-form input[type=password] {
            /* space left for the HIDE button */
            padding-right: 65px;
        }

        .cd-form input[type=submit] {
            padding: 16px 0;
            cursor: pointer;
            background: #0275bb;
            color: #FFF;
            font-weight: bold;
            border: none;
            -webkit-appearance: none;
            -moz-appearance: none;
            -ms-appearance: none;
            -o-appearance: none;
            appearance: none;
        }

.no-touch .cd-form input[type=submit]:hover, .no-touch .cd-form input[type=submit]:focus {
    background: #3599ae;
    outline: none;
}

.cd-form .hide-password {
    display: inline-block;
    position: absolute;
    right: 0;
    top: 0;
    padding: 6px 15px;
    border-left: 1px solid #d2d8d8;
    top: 50%;
    bottom: auto;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 14px;
    font-size: 0.875rem;
    color: #343642;
}

.cd-form .cd-error-message {
    display: inline-block;
    position: absolute;
    left: -5px;
    bottom: -35px;
    background: rgba(215, 102, 102, 0.9);
    padding: .8em;
    z-index: 2;
    color: #FFF;
    font-size: 13px;
    font-size: 0.8125rem;
    border-radius: 0.25em;
    /* prevent click and touch events */
    pointer-events: none;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity 0.2s 0, visibility 0 0.2s;
    -moz-transition: opacity 0.2s 0, visibility 0 0.2s;
    transition: opacity 0.2s 0, visibility 0 0.2s;
}

    .cd-form .cd-error-message::after {
        /* triangle */
        content: '';
        position: absolute;
        left: 22px;
        bottom: 100%;
        height: 0;
        width: 0;
        border-bottom: 8px solid rgba(215, 102, 102, 0.9);
        border-left: 8px solid transparent;
        border-right: 8px solid transparent;
    }

    .cd-form .cd-error-message.is-visible {
        opacity: 1;
        visibility: visible;
        -webkit-transition: opacity 0.2s 0, visibility 0 0;
        -moz-transition: opacity 0.2s 0, visibility 0 0;
        transition: opacity 0.2s 0, visibility 0 0;
    }

@media only screen and (min-width: 600px) {
    .cd-form {
        padding: 2em;
    }

        .cd-form .fieldset {
            margin: 0.5em 0;
        }

            .cd-form .fieldset:first-child {
                margin-top: 0;
            }

            .cd-form .fieldset:last-child {
                margin-bottom: 0;
            }

        .cd-form input.has-padding {
            padding: 10px 20px 10px 50px;
        }

        .cd-form input[type=submit] {
            padding: 16px 0;
        }
}

.cd-form-message {
    padding: 1.4em 1.4em 0;
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.4;
    text-align: center;
}

@media only screen and (min-width: 600px) {
    .cd-form-message {
        padding: 2em 2em 0;
    }
}

.cd-form-bottom-message {
    margin-top: -15px;
    padding-bottom: 20px;
    text-align: center;
}

    .cd-form-bottom-message a {
        text-decoration: underline;
    }

.cd-close-form {
    /* form X button on top right */
    display: block;
    position: absolute;
    width: 40px;
    height: 40px;
    right: 0;
    top: -40px;
    background: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/148866/cd-icon-close.svg") no-repeat center center;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
}

@media only screen and (min-width: 1170px) {
    .cd-close-form {
        display: none;
    }
}

#cd-login, #cd-signup, #cd-reset-password {
    display: none;
}

    #cd-login.is-selected, #cd-signup.is-selected, #cd-reset-password.is-selected {
        display: block;
    }

@media (max-width:991px) {
    #menu-linguagens {
        display: none;
    }

    #menu-redes-socias {
        display: none !important;
    }
}


@media (max-width: 767px) {
    .header-top .header-top-left {
        text-align: left;
        margin-top: 0px;
    }
}

@media (max-width: 575px) {
    .header-top .header-top-left {
        text-align: center;
        margin-top: 0px;
    }

    .header-top {
        height: auto !important;
        /*height: 130px !important;*/
    }

    #menu-login {
        text-align: center !important;
    }

    .main-nav {
        float: none;
    }
}

.main-nav a.cd-signin, .main-nav a.cd-signup {
    border: none !important;
}

.cd-user-modal.is-visible {
    z-index: 999;
}

.btnsLogin {
    padding: 16px 0 !important;
    cursor: pointer;
    background: #439053;
    color: #FFF;
    font-weight: bold;
    border: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
    width: 100% !important;
}

    .btnsLogin:hover {
        opacity: 0.8;
    }

@media (min-width:576px) and (max-width:767px) {
    .main-nav a.cd-signin, .main-nav a.cd-signup {
        font-size: 11px !important;
    }
}

@media (max-width:400px) {
    .main-nav a.cd-signin, .main-nav a.cd-signup {
        font-size: 11px !important;
    }

    .cd-user-modal-container .cd-switcher a {
        font-size: 11px;
    }

    .cd-form input.has-border {
        font-size: 11px;
    }
}

@media only screen and (min-width: 1200px) {
    .header-menu .header-horizontal-menu li.menu-dropdown ul.mega-menu-wrap {
        left: 0 !important;
        width: 920px;
        /*        width: 290px;*/
    }
}

@media (max-width: 360px) {
    .header-nav {
        line-height: 15px;
    }
}



.slider-area .bg-img .slider-content-1 a:hover {
    opacity: 0.7 !important;
}

.list-product .new2 {
    color: #439053 !important;
}

.list-product .product-decs .pricing-meta li {
    font-weight: 700 !important;
}

.product-details-content .pro-details-quality .pro-details-cart a {
    cursor: pointer !important;
}

.btn-produtos {
    position: relative;
    padding: 0 55px;
    line-height: 48px;
    height: 48px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    box-shadow: none;
    display: inline-block;
    margin-left: 15px;
    background: #439053 !important;
    color: #fff !important;
    margin-top: 32px;
}

    .btn-produtos:hover {
        background: #1d1d1d;
    }



.btn-view-blogs {
    position: relative;
    padding: 0 55px;
    line-height: 48px;
    height: 48px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    box-shadow: none;
    display: inline-block;
    margin-left: 15px;
    background: #439053;
    color: #fff !important;
    margin-top: 12px;
}

    .btn-view-blogs:hover {
        background: #1d1d1d;
    }

.slider-area .bg-img {
    background-repeat: no-repeat !important;
}

.notice-description {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    line-height: 20px;
    max-height: 25px;
    min-height: 25px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 10px;
    text-align: left;
}

.list-product {
    padding-left: 20px !important;
    padding-right: 20px !important;
    margin-bottom: 50px;
}

@media (max-width:1199px) {
    .mobile-search-area {
        margin-top: 20px !important;
    }
}

.modal .pricing-meta .discount-price {
    display: inline-block;
    vertical-align: top;
    color: #fff;
    background: #28a745;
    padding: 0 4px;
    border-radius: 5px;
    text-align: center;
    line-height: 20px;
    height: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: capitalize;
    text-align: center;
    z-index: 4;
    margin-left: 2px;
    margin-top: 6px;
}

.pagination {
    margin-left: auto;
    margin-right: auto;
    display: inherit;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 50px;
}

    .pagination li {
        display: inline !important;
        margin: 5px;
    }

        .pagination li a {
            font-weight: 400;
            color: #1d1d1d;
            padding: 0;
            height: 36px;
            line-height: 36px;
            background: #f6f6f6;
            font-size: 14px;
            display: inline-block;
            width: 36px;
            border-radius: 100%;
            text-align: center;
            vertical-align: top;
            font-size: 14px;
        }

        .pagination li.active a, .pagination li:hover a {
            color: #fff;
            background-color: #439053;
        }

.tituloBlog {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 20px;
}

.titleProd {
    line-height: 1.75rem !important;
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    text-transform: none !important;
}

.desc p {
    font-size: .875rem !important;
    line-height: 1.375rem !important;
    font-weight: 500 !important;
}

.pro-details-quality {
    margin: 15px 0 !important;
}

.pro-details-cart a {
    position: relative;
    padding: 0 55px;
    line-height: 48px;
    height: 48px;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 5px;
    box-shadow: none;
    text-transform: lowercase;
    display: inline-block;
    margin-left: 15px;
    background: #439053;
    color: #fff;
    margin-left: 0 !important;
    margin-bottom: 20px !important;
}

    .pro-details-cart a:hover {
        background-color: #1d1d1d;
    }

.cd-switcher a {
    background: #ebebeb !important;
}

.pbold {
    font-size: 1.375rem;
    font-weight: 800;
    letter-spacing: -0.05em;
    line-height: 1.5rem;
    margin-bottom: 5px;
}

.pMine {
    font-size: .75rem;
    font-weight: 600;
    line-height: 1rem;
    margin-bottom: 40px;
}

.cadastro label {
    font-weight: 700;
    margin-top: 10px;
}


#recaptcha1 {
    width: 300px;
    margin: auto;
    margin-top: 25px;
}

@media (max-width:500px) {
    #recaptcha1 {
        width: 100%;
        transform: scale(0.8) !important;
        transform-origin: 0 0;
    }
}

@media (max-width:370px) {
    #recaptcha1 {
        transform: scale(0.7) !important;
    }
}

.btnSolicitarCadastro:hover {
    background: #1d1d1d !important;
    color: #fff !important;
}

@media (max-width:1199px) {
    .main-nav {
        float: none !important;
    }
}

.no-margin {
    margin: 0 !important;
}


.img-produto {
    max-width: 100px;
    width: 100%;
    margin: auto;
    display: block;
    margin-bottom: 20px;
}

.img-quem-somos {
    margin-bottom: 24px;
    margin-top: 24px;
}


.row-box {
    border: 1px solid #eeeeee;
    border-radius: 3px;
    -webkit-box-shadow: 2px 2px 4px 0 #eeeeee;
    box-shadow: 2px 2px 4px 0 #eeeeee;
    position: relative;
    margin-bottom: 20px !important;
    background-color: #ffffff;
    padding-top: 20px;
    padding-bottom: 20px;
}

    .row-box p {
        margin-bottom: 20px;
        line-height: 23px;
    }

.rox-box a {
    color: #888 !important;
    font-weight: 700 !important;
}

.resumo {
    color: #888;
    font-weight: 700;
}

.col-border {
    border-right: 1px solid #eeeeee;
}

.new2 i {
    z-index: 9999;
}


.hero-side-category .category-toggle-wrap .category-toggle-2 {
    padding: 10px 25px;
    margin: 0;
    border: none;
    background-color: transparent;
    color: #1d1d1d;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 24px;
    width: 100%;
    text-align: left;
    outline: 0;
    border: 2px solid #ebebeb;
    margin-bottom: 15px;
    margin-top: 15px;
}


    .hero-side-category .category-toggle-wrap .category-toggle-2 i {
        display: inline-block;
        margin-right: 10px;
        text-align: center;
        font-size: 18px;
        transform: translate(0,2px);
    }

    .hero-side-category .category-toggle-wrap .category-toggle-2:after {
        content: "";
        display: inline-block;
        font-size: 14px;
        font-family: Ionicons;
        font-weight: 400;
        margin-left: 7px;
        float: right;
        transform: translateY(1px);
    }

.logo img {
    max-width: 195px;
}

#popup .modal-header .close:hover {
    opacity: 0.9 !important;
}

@media (max-width:991px) {
    .main-nav {
        margin-bottom: 10px;
    }

    #popup .modal-header .close {
        margin-right: 20px !important;
    }
}

/*FOOTER*/
.icon-2x {
    font-size: 30px;
}

@media(max-width: 980px) {
    .icon-2x {
        font-size: 15px;
    }
}

.no-margin-right {
    margin-right: -42px;
}

@media(max-width: 980px) {
    .no-margin-left {
        margin-left: 0px;
    }
}

.margin-right {
    margin-right: 8px;
}

.margin-botom {
    margin-bottom: 12px;
}

.text-coments {
    font-size: 16px;
    margin-top: 12px;
    margin-right: 12px;
    margin-left: 12px;
    margin-bottom: 12px;
    color: #47494a;
    font-family: Lato;
}

/*BLOG HOME*/
.data-coments {
    color: #439053;
}

.description-blog {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    font-size: 15px;
    margin-bottom: 12px;
}

.view-all-btn {
    background-color: #473db9 !important;
    color: #fff !important;
}

    .view-all-btn:hover {
        background-color: #1d1d1d !important;
        color: #fff !important;
    }

.img-blog {
    width: 322px;
    margin-right: 30px;
}

/*CONTATO*/

.sub-title-contact {
    text-align: center;
    font-size: 18px;
    margin-top: 16px;
}

#title-info {
    font-size: 22px;
    font-family: "Open Sans",sans-serif;
    font-weight: 700;
    color: #1d1d1d;
    margin: 0;
}

.info-contact {
    font-size: 16px !important;
    text-align: center;
    color: #888;
}

.contact-info-dec {
    margin-top: 12px;
}

.info-contact-icon {
    font-size: 44px;
    display: inline-block;
    margin-bottom: 10px;
    color: #439053;
}

.align-items-contact {
    padding: 50px 70px 50px 90px;
}

@media(max-width: 766px) {
    .align-items-contact {
        padding: 0;
    }
}

.margin-mobile {
    margin-top: 24px;
}

.line-contact {
    padding: 0px 50px 0px 0px;
    border-style: solid;
    border-width: 0px 2px 0px 0px;
    border-color: #d4d8e0;
    border-radius: 0px 0px 0px 0px;
}

@media(max-width: 766px) {
    .line-contact {
        border-width: 0px;
    }
}

/*TITULOS*/

.margin-title {
    margin-bottom: 32px;
}

.title-shares {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 24px;
    color: #1d1d1d;
}

.title-blog {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #473db9 !important;
}
/*DETALHES BLOG*/
@media (max-width: 991px) {
    .col-primeira-button {
        padding-right: 5px;
        margin-top: 5px;
    }

    .col-segunda-button {
        padding-right: 5px;
        margin-top: 5px;
    }

    .col-terceira-button {
        padding-right: 5px;
        margin-top: 5px;
    }

    .col-quarta-button {
        padding-right: 5px;
        margin-top: 5px;
    }
}

.no-padding {
    padding: 0 !important;
}

.no-margin {
    margin: 0 !important;
}

.btn-sharess a:hover {
    opacity: 0.8;
}

.btn-sharess a {
    position: relative;
    display: inline-block;
    width: 100%;
    margin: 0;
    line-height: 2.53;
    letter-spacing: 0.04em;
    vertical-align: top;
    font-size: 14px;
    text-align: center;
    text-transform: uppercase;
    font-weight: 600;
    padding: 5px;
    color: #fff;
}

    .btn-sharess a i {
        margin-right: 3px;
        margin-left: 3px;
        font-size: 14px;
    }

.btn-sharess .facebook-btn {
    background: #3b5998;
}

.btn-sharess .twitter-btn {
    background: #1da1f2;
}

.btn-sharess .whatsapp-btn {
    background: #25d366;
}

.btn-sharess .instagram-btn {
    background: #ef2192;
}

.btn-sharess .linkedin-btn {
    background: #0077b5;
}

/*COMENTARIOS*/

@media(max-width: 980px) {
    .img-coments {
        display: none;
    }
}

@media(max-width: 980px) {
    .img-coments {
        display: none;
    }
}

/*PRODUTOS*/
.btn-comprar-produtos {
    background-color: #473db9;
    color: #fff;
    padding: 0px;
    letter-spacing: -.08em;
    font-size: 14px;
    margin: auto;
    display: block;
    width: 100px;
    height: 34px;
    border-radius: 5px;
}

.cat-title-font {
    background-color: #439053;
    color: #fff;
    padding: 8px;
    border-radius: 6px;
}

.pad20 {
    padding: 20px;
}

.mt20 {
    margin-bottom: 20px;
}

.displayweb {
    display: block;
}

.displaymobile {
    display: none;
}

@media (max-width:767px) {
    .pad20 {
        padding: 0 !important;
    }

    .mt20 {
        margin-bottom: 0px;
    }

    .mt30 {
        margin-bottom: 20px;
    }

    .displayweb {
        display: none;
    }

    .displaymobile {
        display: block;
    }

        .displaymobile .owl-carousel {
            display: block !important;
        }
}


/* .holder {
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
} */

.holder::-webkit-scrollbar {
    display: none;
}

/* Hide the images by default */
.slides {
    display: none;
    /* max-width: 1000px; */
    /* width: 100%;
  flex-shrink: 0;
  height: 100%; */
}

    .slides img {
        width: 100%;
    }

/* Smartphones (portrait and landscape) ----------- */
@media only screen and (max-width: 600px) {
    .prevContainer,
    .nextContainer {
        display: none;
        visibility: hidden;
    }
}

.prevContainer,
.nextContainer {
    background-color: rgba(0, 0, 0, 0.3);
    position: absolute;
    top: 50%;
    transform: translate(0, calc(-50% - 54px));
    height: 54px;
    width: 54px;
    cursor: pointer;
}

.prevContainer {
    margin-left: 26px;
    left: 0;
    border-radius: 30px 0 0 30px;
}

.prev {
    position: relative;
    top: 50%;
    transform: translate(0, -50%);
    height: 34px;
    width: 32px;
    float: left;
    margin-left: 12px
}

    .prev svg,
    .next svg {
        fill: white;
    }

.nextContainer {
    margin-right: 26px;
    right: 0;
    border-radius: 0 30px 30px 0;
}

.next {
    position: relative;
    top: 50%;
    transform: translate(0, -50%);
    height: 34px;
    width: 32px;
    float: right;
    margin-right: 12px;
}

/* Container for image text */
.caption-container {
    text-align: left;
    background-color: #222;
    padding: 2px 16px;
    color: white;
}

.row:after {
    content: "";
    display: table;
    clear: both;
}

/* Six columns side by side */
.column {
    float: left;
    /*   width: 16.66%;*/
}

/* Add a transparency effect for thumbnail images */
.slide-thumbnail {
    width: 100%;
    opacity: 0.6;
    cursor: pointer;
}

    .active,
    .slide-thumbnail:hover {
        opacity: 1;
    }


.imprimir-voucher {
    text-align: center;
    font-size: 14px;
    background-color: #487f3f !important;
    border: 1px solid #487f3f;
    max-width: 180px;
    box-shadow: none !important;
    font-weight: 600;
    padding: 10px 15px;
    display: block;
    color: #fff !important;
    margin: auto;
}

    .imprimir-voucher:hover {
        opacity: 0.7;
    }

#offcanvas-cart {
    z-index: 99999999;
}


.table-carrinho td {
    vertical-align: middle;
}



.btns {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.qtd2 {
    font-weight: bolder;
    color: #000;
    width: 100%;
    text-align: center;
    max-width: 30px;
}

.table-carrinho button {
    padding: 0px 10px;
    height: 30px;
}

.btns button {
    padding: 0px 10px !important;
    height: 30px !important;
    background: transparent !important;
    color: #487f3f !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    display: inline-block;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.25rem;
}

.qtd2 {
    font-weight: bolder;
    color: #000;
    width: 100%;
    text-align: center;
    max-width: 30px;
}

.table-carrinho td {
    text-align: center !important;
}

.step-by-step ul li span {
    position: absolute;
    left: -40px;
    top: 40px;
    width: 120px;
    font-weight: bold;
    text-align: center;
    line-height: 1.1;
    z-index: 9;
}

.btnPadrao {
    width: 100% !important;
    max-width: 270px !important;
    margin: auto !important;
    display: block !important;
    font-size: 14px;
    font-family: NunitoBlack;
    margin-bottom: 10px !important;
    font-family: "Open Sans",sans-serif;
}

    .btnPadrao.Yellow {
        color: #212529;
        background-color: #ffc107;
        border-color: #ffc107;
    }

    .btnPadrao.Green {
        color: #fff;
        background-color: #1e7e34;
        border-color: #1c7430;
    }

    .btnPadrao:hover {
        opacity: 0.7;
    }

.Blue {
    color: #fff;
    background-color: #0069d9;
    border-color: #0062cc;
}

.close-popup {
    float: right;
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 0;
    text-shadow: 0 1px 0 #fff;
    opacity: .5;
}

.product-decs h4 {
    font-size: 18px !important;
}


.discount-label:before, .discount-label:after {
    display: none !important;
}



.yellow {
    background-color: #feaa00 !important;
    font-size: 16px !important;
    color: #fff !important;
    border-radius: 20px !important;
    padding: 3px 8px !important;
    width: 100% !important;
    max-width: 80px !important;
    font-weight: 600 !important;
}

.row-center {
    align-items: center;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

.discount-label {
    display: block;
    margin: auto !important;
    text-align: center !important;
    font-size: 14px !important;
    max-width: fit-content !important;
}


@media (max-width:1199px) {
    .product-decs h4 {
        font-size: 18px;
    }

    .header-logo img {
        max-width: 250px !important;
        width: 100%;
    }

    .product-decs .row-center .text-right {
        text-align: center !important;
    }

    .list-product .product-decs {
        text-align: center;
    }
}

@media (max-width:767px) {
    .discount-label {
        margin-top: 10px !important;
    }
}

@media (min-width:1200px) {
    .discount-label {
        margin-left: auto !important;
        margin-right: 0 !important;
    }
}

#DivComQuantidade .discount-label {
    margin-left: 0 !important;
    margin-right: 0 !important;
    margin-top: 10px !important;
    margin-bottom: 10px !important;
}

.list-product .product-decs a {
    margin-top: 20px !important;
}

/*.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
}*/

.dropdown-menu.show {
    width: 275px;
    padding-top: 0;
}

.btnTopbar {
    background: transparent !important;
    border: none !important;
    color: #1d1d1d !important;
    font-size: 14px !important;
    outline: none !important;
    box-shadow: none !important;
    padding: 0 !important;
}

.titleDrop {
    padding-top: 15px;
    padding-bottom: 10px;
    text-decoration: underline;
    text-align: center !important;
}

.btnTopbar i {
    margin-right: 3px;
    color: #487f3f !important;
}

.dropdown-menu.show a i {
    margin-right: 3px;
    color: #487f3f !important;
}

.dropdown-menu.show a {
    display: block;
    margin-top: 0px;
    margin-bottom: 5px;
    font-size: 14px;
}

.header-nav li {
    padding: 5px 15px;
    border-right: 0 !important;
}


.dropdown-menu.show li {
    width: 100%;
}

.drop2 {
    top: 28px !important;
}

.btn-conta {
    border-bottom: 0 !important;
    padding-left: 0 !important;
    padding-bottom: 0px !important;
}

.drop1 {
    width: 200px !important;
}

.header-nav ul li ul.dropdown-menu li a {
    font-size: 15px !important;
}

.search-element input {
    padding: 0 !important;
    padding-left: 10px !important;
}

.header-tools {
    margin-left: 30px !important;
}

.menu-content {
    text-align: center;
}

    .menu-content a {
        display: block;
        padding: 0;
        font-weight: 700;
        font-size: 14px;
        color: #487f3f !important;
        background: 0 0;
        text-transform: uppercase;
        line-height: 24px;
        height: 24px;
        border-bottom: 2px solid transparent;
        position: relative;
        padding: 0px 10px;
    }

.search-element button i {
    font-size: 14px;
    line-height: 30px;
}

.search-element button {
    line-height: 30px !important;
    text-align: center !important;
    width: 30px !important;
    height: 30px !important;
}

.header-menu {
    display: none !important;
}

.menu-fixado {
    position: fixed;
    z-index: 9999;
    width: 100%;
    top: 0;
}

#menu-fixado {
    padding: 15px 0 !important;
}

.menu-fixado {
    box-shadow: rgb(135 138 139) 3px 2px 5px;
}

.header-nav {
    padding: 10px 0 !important;
}

.pad-5 {
    padding: 5px !important;
}

.footer-area .footer-top .single-wedge .need-help {
    margin-top: 15px !important;
    margin-bottom: 25px !important;
}

.btn-assinar {
    font-size: 13px;
    line-height: 32px;
    height: 39px;
    padding: 0 10px;
    border-radius: 5px;
    text-transform: uppercase;
    background: #fff;
    width: 100%;
    height: calc(1.5em + 0.75rem + 1px);
    margin-top: -4px;
}

    .btn-assinar:hover {
        opacity: 0.7;
    }

    .btn-assinar.m-progress {
        color: transparent !important;
    }

#txtNewsletter {
    font-size: 13px !important;
}

.yellow-header {
    background: #fbed02 !important;
    padding: 20px 0;
}

    .yellow-header p {
        font-size: 21px;
        margin-bottom: 0 !important;
        font-weight: 900;
        text-align: center;
        text-transform: uppercase;
        font-family: system-ui;
    }

    .yellow-header .font-1 {
        color: #000 !important;
    }

/*@media (min-width:1450px) and (max-width:1600px)
{
    .yellow-header p {
        font-size: 23px;
    }
}

@media (min-width:1350px) and (max-width:1449px) {
    .yellow-header p {
        font-size: 22px;
    }
}

@media (min-width:1250px) and (max-width:1349px) {
    .yellow-header p {
        font-size: 20px;
    }
}


@media (min-width:991px) and (max-width:1249px) {
    .yellow-header p {
        font-size: 19px;
    }
}
*/

@media (max-width:990px) {
    .yellow-header p {
        font-size: 18px;
    }
}

.search-element {
    border: 2px solid #000;
}


.header-nav {
    padding: 0 !important;
    border-bottom: 0 !important;
}

    .header-nav .container {
        padding: 10px 0 !important;
    }

.justify-content-end {
    justify-content: end !important;
    align-items: center !important;
}

.btnTopbar i {
    color: #000 !important;
}

.box-top {
    display: flex;
    align-items: center;
}

.height-border {
    border-right: 1.5px solid #000;
    margin-left: 20px;
    margin-right: 20px;
    height: 30px;
}

.header-nav a {
    color: #4c5255 !important;
    font-family: GothamBold !important;
    font-size: 16px !important;
    font-weight: 600;
    text-transform: uppercase;
}

.header-nav i {
    font-size: 20px;
    color: #000;
    margin-left: 5px;
    margin-right: 5px;
}

.datetim {
    font-size: 12px;
    font-weight: 600;
    margin-left: 5px !important;
}

.box-whats {
    display: flex;
    align-items: center;
}

.box-date {
    display: flex;
    align-items: center;
}

    .box-date i {
        margin-left: 5px !important;
    }

#txtSearch {
    background: #fff;
    border-radius: 25px;
    border: 0;
    font-size: 12px;
    font-weight: 600 !important;
    margin-right: 20px !important;
    width: 100%;
    max-width: 100%;
    padding-left: 15px !important;
    height: 30px !important;
}

#FilterBlog button {
    background: transparent;
    border-radius: 0;
    color: #000 !important;
}

.img-center {
    margin: auto;
    display: block;
}

.description-banner img {
    max-width: 200px;
    width: 100%;
    margin-bottom: 30px;
}

.description-banner p {
    color: #fff !important;
    text-align: center !important;
    line-height: 22px;
}

.description-banner {
    width: 100%;
    display: block;
    align-items: center;
    max-width: 700px;
    margin: auto;
}

.static-area .single-static img {
    max-width: 50px;
}

.header-tools .cart-info a:before {
    background: #439053;
}

.header-tools .cart-info a {
    color: #000 !important;
}

.menu {
    padding: 30px 0;
    padding-inline-start: 0 !important;
    list-style: none !important;
}


li.submenu ul.dropdown-menu[data-bs-popper] {
    border-width: 0;
    padding-top: 0;
    padding-bottom: 1em;
}

    li.submenu ul.dropdown-menu[data-bs-popper] li {
        margin-left: 1.5em;
    }

li.submenu > a.dropdown-toggle.show::after {
    transform: rotate(90deg);
}

li.submenu.dropinline > a.dropdown-toggle.show::after {
    transform: rotate(0deg);
}

li.submenu.dropinline > a.dropdown-toggle::after {
    transform: rotate(-90deg);
}

li.submenu.dropstart > a.dropdown-toggle::before {
    display: none;
}

li.submenu.dropstart > a.dropdown-toggle::after {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0;
    content: "";
    border-top: 0.3em solid transparent;
    border-right: 0;
    border-bottom: 0.3em solid transparent;
    border-left: 0.3em solid;
}

@media (min-width: 768px) {
    /* common styles */
    li.submenu-md ul.dropdown-menu[data-bs-popper] {
        border-width: var(--bs-dropdown-border-width);
        padding-top: var(--bs-dropdown-padding-y);
        padding-bottom: var(--bs-dropdown-padding-y);
        margin-top: -0.5em;
    }

        li.submenu-md ul.dropdown-menu[data-bs-popper] li {
            margin-left: 0;
        }

    li.submenu-md a[role="button"] {
        display: inline-flex;
        align-items: center;
    }

    /* dropend styles */
    li.submenu-md.dropend ul.dropdown-menu[data-bs-popper] {
        margin-left: -0.3em;
    }

    li.submenu-md.dropend a[role="button"].show::after {
        transform: unset;
    }

    li.submenu-md.dropend a[role="button"]::after {
        position: absolute;
        right: 0.4em;
    }

    /* dropstart styles */
    li.submenu-md.dropstart ul.dropdown-menu[data-bs-popper] {
        margin-right: -0.3em;
    }

    li.submenu-md.dropstart a[role="button"]::before {
        display: block;
        position: absolute;
        left: 0.4em;
    }

    li.submenu-md.dropstart a[role="button"]::after {
        display: none;
    }

    li.submenu-md.dropinline ul.dropdown-menu[data-bs-popper] {
        position: relative;
        width: 100% !important;
        border: 0;
        box-shadow: none;
        background-color: transparent;
    }

        li.submenu-md.dropinline ul.dropdown-menu[data-bs-popper] li {
            padding-left: 1em;
        }
}

.navbar-collapse {
    display: block !important;
}

.dropdown-menu {
    padding-top: 15px
}

.dropdown-item {
    max-width: fit-content !important;
}

.navbar {
    max-width: 100% !important;
    width: 100%;
    display: flex;
}

.dropdown-item {
    background: #fff !important;
    font-weight: 600 !important;
    color: #4c5255 !important;
    font-family: GothamBold !important;
    text-transform: uppercase;
    font-size: 14px;
}

.dropdown-menu a {
    color: #4c5255 !important;
    font-family: GothamBold !important;
    text-transform: none;
    font-size: 12px;
}

.navbar-expand-md .navbar-collapse {
    max-width: fit-content;
}

.dropdown-menu a {
    margin-left: 0px;
    margin-right: 0px;
}

.btnTopbar {
    font-weight: 600;
}

.slider-height-1 {
    height: 520px;
}

.static-area .single-static .single-static-meta p {
    color: #000 !important;
}

.static-area .single-static .single-static-meta h4 {
    font-weight: 600;
    color: #4c5255 !important;
    font-family: GothamBold !important;
    text-transform: uppercase;
    margin-left: 10px;
}

.static-area .single-static {
    align-items: center;
}

.footer-area .footer-bottom {
    background-color: #000 !important;
}

.box-left {
    border-left: 1px solid #000;
    margin-bottom: 25px;
}

    .box-left ul {
        padding-left: 25px;
        display: block;
    }

    .box-left li {
        display: block !important;
        margin-bottom: 5px !important;
    }

    .box-left a {
        color: #000;
        font-weight: 600;
    }

.footer-top .socials i {
    font-size: 20px;
    color: #000;
    margin-left: 5px;
    margin-right: 5px;
}

.footer-top p {
    color: #000 !important;
    font-weight: 600 !important;
}

.footer-top input {
    background: #fff !important;
    border-radius: 25px;
    margin-right: 20px;
    border: 0;
    padding-left: 20px !important;
    font-size: 12px;
    font-weight: 600 !important;
    margin-right: 45px !important;
    width: 100%;
    max-width: 100%;
}

.btn-assinar {
    background: #68c6b7 !important;
    color: #fff !important;
    text-align: center !important;
    text-transform: uppercase;
    font-weight: 600 !important;
    border-radius: 25px;
}

.footer-top {
    background: #f1f2f4 !important;
}

.socials-2 {
    margin-top: 30px;
    margin-bottom: 30px;
}

    .socials-2 a {
        display: block;
        color: #000;
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 15px !important;
    }

    .socials-2 i {
        margin-right: 10px;
        font-size: 20px;
    }

.upFont {
    font-size: 25px;
    font-weight: 900 !important;
}

.inner-link {
    font-size: 14px;
    font-weight: 700;
    color: #4c5255 !important;
    text-transform: none !important;
    text-align: center !important;
    display: block;
}

.notice-description {
    max-height: 40px;
    min-height: 40px;
    margin-bottom: 20px;
}

.list-product:hover {
    border: 0 !important;
}

.discount-label {
    border: 2px solid #808081;
    background: #fff !important;
    color: #808081 !important;
    font-size: 10px !important;
}

.dolar-icon {
    background: #439053;
    color: #fff;
    border-radius: 100%;
    text-align: center;
    font-size: 32px;
    height: 40px;
    width: 40px;
    margin: auto;
    font-size: 25px;
    line-height: 39px;
}

    .dolar-icon i {
        color: #fff !important;
    }

.product-decs h4 {
    font-size: 20px !important;
    text-align: center;
    font-family: 'GothamBold';
    color: #4c5255 !important;
}

.pad-5 {
    padding-left: 5px;
    padding-right: 5px;
}

.p-description {
    color: #808081 !important;
    font-weight: 400 !important;
    font-size: 12px;
}

.cart-btn {
    color: #000 !important;
    font-weight: 400 !important;
    font-size: 13px !important;
    margin: auto;
    display: block;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .cart-btn i {
        font-size: 25px;
        margin-right: 8px;
    }

#footer {
    background: #fff !important;
    color: #eee;
    font-size: 14px;
}

    #footer .footer-top {
        box-shadow: rgb(200 200 200) 0 0px 10px 0px;
        padding: 60px 0 30px;
        background: #fff !important;
    }

.ul-socials {
    justify-content: center;
    padding-inline-start: 0;
    list-style: none;
    display: flex;
}

    .ul-socials img {
        max-width: 60px;
    }

.logo-footer {
    max-width: 350px;
    width: 100%;
}

.mapa-do-site {
    list-style: none;
    padding-inline-start: 0;
}

    .mapa-do-site a {
        display: block;
        position: relative;
        color: #fff;
        transition: .3s;
        font-size: 14px;
        font-family: GothamMedium;
        text-transform: uppercase;
        font-weight: 600;
        color: #4f5355 !important;
        text-align: right;
        margin-bottom: 5px;
    }

#footer .copyright {
    margin-bottom: 0 !important;
    text-align: center;
    padding-top: 30px;
}

.containerCopyright {
    display: none;
}

.mapa-do-site li {
    display: block !important;
    width: 100%;
}

.navbar-nav li {
    margin-right: 10px;
}

.cart .cart-btn {
    cursor: pointer;
    margin-top: 0 !important;
    background: #439053;
    color: #fff !important;
    cursor: pointer;
    margin-top: 0 !important;
    text-transform: uppercase !important;
    color: #fff !important;
    padding: 7px 10px;
    font-weight: 700 !important;
    font-size: 16px !important;
    margin-top: 5px !important;
}

.img-block .first-img {
    max-height: 330px;
    margin: auto;
    display: block;
    max-width: fit-content;
    width: 100%;
}

.p-description {
    text-align: center;
}

.cart .cart-btn:hover {
    opacity: 0.7 !important;
}

.header-wrapper {
    box-shadow: rgb(135 138 139) 3px 2px 5px;
}

.breadcrumb-area {
    background: #fff !important;
}

.categoria-selected {
    font-weight: 700;
    font-size: 24px;
    font-family: GothamBold !important;
    text-transform: uppercase;
    color: #4c5255 !important;
    display: block;
    margin-right: 25px;
}

.form-filter {
    font-family: 'GothamBold';
    border: 2px solid;
    min-width: 200px;
    height: 50px;
    font-size: 14px;
}

.checkout-area {
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.btn-esqueci-senha {
    display: block;
    font-weight: 600;
    color: #4c5255 !important;
    font-family: GothamBold !important;
    margin-bottom: 10px;
}

.title-padrao {
    text-align: center;
    color: #4c5255 !important;
    font-family: GothamBold !important;
}

.shop-sidebar-wrap .card .card-body li a {
    font-family: 'GothamBold';
}

.DivValor h3 {
    font-family: 'GothamBold';
    margin-bottom: 20px !important;
}

.DivValor p {
    margin-bottom: 0 !important;
    color: #4c5255 !important;
}

.description-products p {
    font-size: 14px;
    line-height: 18px;
}

.description-products {
    margin-top: 15px;
}

@media (max-width:991px) {
    .logo {
        display: none !important;
    }

    .static-area .single-static {
        align-items: center;
        margin-bottom: 15px;
        justify-content: center;
    }
}
