﻿.hidden {
    visibility: hidden;
}

.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: #ed6b1e;
    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: #ed6b1e !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: #dbb89a;
    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: #dbb89a;
    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;
}

@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: #55517c;
        }

.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: #ed6b1e;
    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;
    margin: auto;
}

#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: #55517c;
}

.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: #ed6b1e;
}

.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: #dbb89a;
    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;
}
