/* COMMON */
* {
    /*backface-visibility: hidden;*/
    -webkit-font-smoothing: subpixel-antialiased;
}

body {
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    position: relative;
    background: #fff;
    color: #393939;
}

h1 {
    color: #000;
    font-weight: 700;
    font-size: 20px;
    margin: 0 0 20px;
}

h1 small {
    display: block;
    font-size: 14px;
    color: #777;
    text-transform: none;
    margin: 10px 0 20px;
}

h2 {
    color: #000;
    text-transform: uppercase;
    font-size: 15px;
    margin: 0 0 15px;
}

h3 {
    color: #000;
    font-size: 14px;
    margin: 0;
    font-weight: 500;
}

p {
    margin-bottom: 18px;
}

a:link,
a:active,
a:hover {
    text-decoration: none;
}

a {
    color: #000;
    -moz-transition: 0.1s;
    -webkit-transition: 0.1s;
    transition: 0.1s;
}

a:hover {
    color: #ff8233;
}

ul,
ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

input,
select,
textarea {
    padding: 7px 10px 7px 10px;
    border: 1px solid #999;
    color: #333;
    -moz-transition: 0.2s;
    -webkit-transition: 0.2s;
    transition: 0.2s;
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
    line-height: 1.1;
}

hr {
    border-top: 1px solid #efefef;
    height: 1px;
    display: block;
    border-left: none;
    border-right: none;
    border-bottom: none;
}

small {}


/* GLOBAL CLASSES */

.flex {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}


/* CLASS */

.effect {
    opacity: 1;
    -moz-transition: 0.1s;
    -webkit-transition: 0.1s;
    transition: 0.1s;
}

.effect:hover {
    opacity: 0.85;
}

.red {
    color: #c61000;
}


/* DIVIDER */

.divider {
    display: flex;
    align-items: center;
    margin: 1em -1em;
}

.divider::before,
.divider::after {
    content: "";
    flex: 1;
    height: 1px;
    margin: 0 1em;
    background: #dddddd;
}


/* HOME FRAMES GRID */

.frame-1 {
    grid-area: frame-1;
    background-color: tomato;
}

.frame-2 {
    grid-area: frame-2;
    background-color: violet;
}

.frame-3 {
    grid-area: frame-3;
    background-color: #00b01c;
}

.frame-4 {
    grid-area: frame-4;
    background-color: #22445f;
}

.frame-5 {
    grid-area: frame-5;
    background-color: #472994;
}

.frames-wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 260px);
    grid-gap: 25px;
    grid-template-areas: "frame-1 frame-2 frame-3" "frame-4 frame-2 frame-5";
}

.frame-box {
    position: relative;
    background-size: cover;
    background-position: center;
}

.frame-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 20px;
    color: white;
    text-align: center;
}

.gradient-black {
    background: rgba(0, 0, 0, 0);
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(0, 0, 0, 0)), color-stop(100%, rgba(0, 0, 0, 1)));
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
    background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
    background: -ms-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#000000', endColorstr='#000000', GradientType=0);
}

.frame-info h1,
.frame-info p {
    color: white;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.frame-info span {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
}

.frame-info a.btn {
    display: inline-block;
    background-color: transparent;
    border: 1px solid white;
    padding: 10px 20px;
    line-height: 1;
    font-size: 13px;
}

.frame-info a.btn:hover {
    background-color: #ff8233;
    border-color: #ff8233;
    color: white;
}

@media only screen and (max-width: 991px) {
    .frames-wrap {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(3, 220px);
        grid-gap: 10px;
        grid-template-areas: "frame-1 frame-1 frame-2" "frame-3 frame-4 frame-4" "frame-5 frame-5 frame-5";
    }
}

@media only screen and (max-width: 767px) {
    .frames-wrap {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 280px);
        grid-gap: 10px;
        grid-template-areas: "frame-1 frame-2" "frame-3 frame-3" "frame-4 frame-5";
    }
}

@media only screen and (max-width: 575px) {
    .frames-wrap {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5, 280px);
        grid-gap: 15px;
        grid-template-areas: "frame-1" "frame-2" "frame-3" "frame-4" "frame-5";
    }
}


/* TITLE BAR */

.title-bar {

    display: block;
    text-align: center;
}

.title-bar h1 {
    font-weight: 300;
    margin: 0;
    text-transform: uppercase;
}


.title-bar h3 {
    font-weight: 500;
    font-size: 20px;
    padding-bottom: 1em;
    margin-bottom: 1em;
    color: #0e0e0e;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.title-bar.instagram h3 {

    padding-bottom: 0em !important;
    margin-bottom: 0em !important;

}

@media only screen and (max-width: 768px) {
    .title-bar h3 {
        font-size: 2.5vw;
    }
}

.title-bar h3:before {
    position: absolute;
    content: "";
    width: 20%;
    height: 2px;
    background-color: #eaeaea;
    left: 0;
    top: 15px;
}

.title-bar h3:after {
    position: absolute;
    content: "";
    width: 20%;
    height: 2px;
    background-color: #eaeaea;
    right: 0;
    top: 15px;
}

.title-bar h1 strong {
    font-weight: 700;
}

.header-content {
    padding: 30px 0 0 0;
}


/* --------------------- */


/* CUSTOM FRAME HOME */

.custom-frame-home {
    padding-top: 80px;
    display: block;
    background-color: black;
}

.custom-frame-home .title-bar h1 {
    text-align: center;
    color: white;
}

.custom-frame-home img {
    max-height: 150px;
    margin: 0 auto;
}

.custom-frame-home-info {
    margin-top: 50px;
    padding: 15px 40px;
    border: 1px solid #707070;
    text-align: center;
}

.custom-frame-home-info p {
    color: white;
    margin: 0;
    font-size: 13px;
}

.custom-frame-home-btn {
    text-align: center;
    padding-top: 50px;
    margin-bottom: -22px;
}

.custom-frame-home-btn a.btn {
    display: inline-block;
}

.header-content h1 {
    margin: 0
}

.body-content {
    background: #fff;
    margin-top: 30px;
    margin-bottom: 30px;
}

.footer-content {
    margin: 0 0 30px 0;
}

h1.center {
    text-align: center;
}

h1.title {
    margin: 0;
}

.img-center {
    margin: 0 auto;
    display: table;
}

.small {
    line-height: 1.4;
    font-size: 12px;
    margin: 2% 0;
}

.box-shadow {
    padding: 30px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.size-xx {
    width: 100%;
}

.right {
    float: right;
}

.left {
    float: left;
}

.obs {
    color: #e5322e;
}

.btn,
.btn:link,
.btn:active,
.btn:visited {
    background: #ff8233;
    color: #fff;
    /*font-size: 11px;*/
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
    /*padding: 5px 24px;*/
    padding: 10px 20px;
    -moz-transition: none;
    -webkit-transition: none;
    transition: none;
    border-radius: 26px;
}

.btn:hover {
    background-color: #ff8233;
    color: #fff !important;
}

.btn2,
.btn2:link,
.btn2:active,
.btn2:visited {
    border-radius: 45px;
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
    background: #ff8233;
    color: #fff;
    border: 0;
    padding: 10px 20px;
    -moz-transition: 0.2s;
    -webkit-transition: 0.2s;
    transition: 0.2s;
}

.btn2:hover {
    color: #fff;
    background: #ff8233;
}

.alert {
    padding: 8px 24px;
    text-align: center;
    margin-bottom: 20px;
    font-size: 12px;
    font-weight: 400;
    border-radius: 3px;
    border: none;
}

.alert-success {
    color: rgba(0, 150, 0, 0.7);
    background: rgba(0, 255, 0, 0.2);
}

.alert-error {
    color: rgba(150, 0, 0, 0.7);
    background: rgba(255, 0, 0, 0.2);
}

@media only screen and (max-width: 768px) {
    .alert {
        padding: 5px;
        text-align: center !important;
        width: 100%;
        display: block;
    }
}

.section-title {
    padding: 60px 0;
}

.section-title h1 {
    font-size: 28px;
    margin: 0;
    text-align: center;
    font-weight: 700;
}

.section-title h1,
.section-title h1 small {
    color: #fff;
}

.section-title a.btn {
    color: #fff;
    border-color: #fff;
}

.filters {
    border: 1px solid #efefef;
    background: #fff;
    padding: 20px;
    display: block;
    clear: both;
    line-height: 30px;
    overflow: hidden;
}

.filter-col {
    width: 33%;
    float: left;
}

.filters-up {
    margin-bottom: 30px;
}

.filters-down {}

.filters select {
    padding: 5px;
    background: #e9e9e9;
    border: 0;
}

.form-inline {
    overflow: hidden;
    margin-top: 30px;
}

.form-inline p {
    display: block;
    overflow: hidden;
    line-height: 1;
}

.form-inline label {
    display: block;
    width: 100%;
    text-align: left;
    margin-bottom: 5px;
    font-size: 12px;
}

.form-inline input,
.form-inline select,
.form-inline textarea {
    float: left;
    width: 100%;
}

.col-2 {
    width: 50%;
    float: left;
    padding-right: 40px;
}

.col-2:last-child {
    padding-right: 0px;
}

.col-2-last {
    width: 50%;
    float: left;
    padding-right: 0px
}

.col-3 {
    width: 33.3333333333%;
    float: left;
}

.form-block .col-2 {
    overflow: hidden;
    margin-bottom: 10px;
}

.form-block .size-full {
    width: 100%;
}

.form-block label {
    display: block;
    margin-bottom: 5px;
    text-transform: uppercase;
    color: #5e5e5e;
    font-size: 12px;
}

.form-block select {
    height: 36px !important;
}

.table {
    width: 100%;
}

.table .thead {
    background: #22445f;
    color: #fff;
    font-weight: bold;
}

.table td {
    text-align: left;
    padding: 10px;
    border-bottom: 1px solid #dfdfdf;
}

.embed-responsive {
    position: relative;
    display: block;
    height: 0;
    padding: 0;
    overflow: hidden;
}

.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    border: 0;
}

.embed-responsive-16by9 {
    padding-bottom: 56.25%;
    margin-bottom: 30px;
}

.embed-responsive-4by3 {
    padding-bottom: 75%;
}

.breadcrumb {
    margin-bottom: 40px;
    overflow: hidden;
}

ul.list-line {}

ul.list-line li {
    display: block;
}

ul.list-line li.title {
    font-weight: 700;
    text-transform: uppercase;
}

ul.list-pagination {
    margin-top: 10px;
}

ul.list-pagination li {
    float: left;
    margin: 0 5px 15px 0;
}

ul.list-pagination li a {
    color: #444;
    border: 2px solid #777;
    -moz-transition: 0.2s;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    padding: 5px 8px;
}

ul.list-pagination li a:hover {
    color: #e82583;
    border-color: #e82583;
}

ul.list-pagination li.active a {
    color: #e82583;
    border-color: #e82583;
}

ul.paginacao {
	display: block;
	margin: 0;
	padding: 0;
	float: right;
}
ul.paginacao li {
	float: left;
	margin-right: 5px;
}
ul.paginacao li a {
	border: 1px solid #bfbfbf;
	-moz-transition: 0.2s;
	-webkit-transition: 0.2s;
	transition: 0.2s;
	padding: 2px 5px;
}
ul.paginacao li a:hover {
	color: #f39501;
	border-color: #f39501;
}

ul.paginacao li.active a {
	background: #f39501;
	border-color: #f39501;
	color: #fff;
	cursor: default;
	pointer-events: none;
}

@media only screen and (max-width: 768px) {
  
  ul.paginacao {
	display: block;
	margin: auto;
	padding: 0;
	float: none;
    }
}

ul.list-bread {
    display: inline-block;
    margin: 0;
    padding: 0;
    margin-bottom: 20px;
}

ul.list-bread li {
    text-transform: uppercase;
    float: left;
    margin: 0 2px;
    font-size: 12px;
}

ul.list-bread li.active {
    color: #000;
    font-weight: 700;
}

ul.list-bread li::after {
    content: '/';
    margin-left: 5px;
}

ul.list-bread li:last-child::after {
    content: "";
    margin-right: 0;
}

ul.list-thumb {}

ul.list-thumb li {
    float: left;
    margin: 0 5px 5px 0;
    border: 2px solid #fff;
    -moz-transition: 0.2s;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    text-align: center;
    padding: 5px 11px;
    background: #d2d2d2;
}

ul.list-thumb li img {
    height: 60px;
}

ul.list-thumb li:hover a,
ul.list-thumb li:hover a:hover {
    color: #fff !important;
}

ul.list-thumb li:hover {
    background: #ff8233;
    color: #fff !important;
    border: 2px solid #ff8233;
}

ul.list-thumb li.active {
    font-weight: 700;
    background: #ff8233;
    color: #fff !important;
    border: 2px solid #ff8233;
}

ul.list-thumb li.active a {
    color: #FFF;
}

ul.list-thumb li.not-avaible {
    opacity: 0.3;
}

ul.list-size li.not-avaible {
    opacity: 0.3;
}

ul.list-size {
    overflow: hidden;
    display: block;
    margin: 0;
    padding: 0;
    margin-top: 7px;
}

ul.list-size li {
    float: left;
    margin: 10px 5px 15px 0;
}

ul.list-size li a {
    color: #000;
    border: 1px solid #000;
    -moz-transition: 0.2s;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    padding: 5px 8px;
}

ul.list-size li a:hover {
    color: #fff;
    background: #ff8233;
    border-color: #ff8233;
}

ul.list-size li.active a {
    color: #fff;
    background: #ff8233;
    border-color: #ff8233;
}

.form-box {
    padding: 8px 0;
}

.container-interno {
    padding-left: 30px;
    padding-right: 30px;
}

.box {}

.box h1 {
    margin: 0 0 10px;
}

table.table-list {
    width: 100%;
}

table.table-list thead tr th {
    text-align: left;
    padding-bottom: 10px;
    border-bottom: 1px solid #e9e9e9;
    font-weight: bold;
}

table.table-list tbody tr td {
    padding: 10px 0;
    border-bottom: 1px solid #e9e9e9;
}

table.table-list tbody tr:last-child td {
    border-bottom: none;
}

.pedido-resumo strong {
    color: #000
}

.underline {
    text-decoration: underline !important;
}

.field,
.desc {
    float: left;
}

.link-right {
    float: right;
    margin-top: 10px;
}

.notify {
    background-color: #fff;
    position: fixed;
    bottom: 45%;
    z-index: 999999999999;
    width: 70%;
    left: 15%;
    padding: 15px;
}

.notify p {
    font-size: 1.3em;
    text-align: center;
    font-weight: bold;

}

#aviso-overlaynotify {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99998;
}



@media only screen and (max-width: 1200px) {
    .title-bar {}

    h1.title {}

    .section-container {
        padding-top: 112px;
        padding-bottom: 40px;
    }

    .section-title {
        padding: 80px 0;
    }

    .body-content {}
}


/* PLUGINS */


/* nav mobile */

.nav-mobile {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
    display: none;
    background: #262626;
    border-bottom: 1px solid #efefef;
    box-shadow: 0 0px 2px rgba(0, 0, 0, 0.1);
    border-bottom: 2px solid #ff8233;
}

.nav-mobile .menu-btn a:after {
    color: #fff;
}

.nav-mobile .logo-nav-mobile {
    display: block;
    margin: 0 auto;
    margin-top: 15px;
    margin-bottom: 16px;
    width: 175px;
}

.nav-mobile .logo-inside {
    max-width: 50%;
    display: block;
    margin: 0 auto;
    padding: 20px 0 20px 0;
}

.nav-mobile .search-btn {
    width: 5%;
}

.menu-conta {
    position: absolute;
    top: 35px;
    right: 110px;
    z-index: 996;
    display: inline;
    font-size: 24px;
}

.mobile-logged {
    font-size: 16px;
    line-height: 2;
    border-right: 1px solid #ccc;
    padding-right: 18px;
}

.menu-cart {
    position: absolute;
    top: 26px;
    right: 25px;
    z-index: 997;
    display: inline;
    font-size: 24px;
}

.menu-conta a,
.menu-cart a {
    color: #fff;
}

.menu-conta a:hover,
.menu-cart a:hover {
    color: #ff8233;
}

.menu-cart .count {
    font-size: 10px;
    font-weight: 700;
    display: inline-block;
    background: #fcc82e;
    color: #060606;
    line-height: 20px;
    border-radius: 100px;
    width: 20px;
    height: 20px;
    text-align: center;
    font-family: 'Arial';
    position: absolute;
    top: -5px;
    right: -12px;
}


.menu-btn {
    position: absolute;
    top: 15px;
    left: 25px;
    z-index: 999;
    display: inline;
    font-size: 32px;
}

.menu-btn a {
    display: inline-block;
    text-decoration: none;
}

.btn-open:after {
    color: #000;
    content: "\f0c9";
    font-family: "FontAwesome";
    font-size: 21px;
    -moz-transition: all .2s linear 0s;
    -o-transition: all .2s linear 0s;
    transition-property: all .2s linear 0s;
}

.btn-open:hover:after {
    color: #ff8233;
}

.btn-close:after {
    color: #000;
    content: "\f053";
    font-family: "FontAwesome";
    font-size: 21px;
    -moz-transition: all .2s linear 0s;
    -o-transition: all .2s linear 0s;
    transition-property: all .2s linear 0s;
}

.btn-close:hover:after {
    color: #ff8233;
}

.overlay {
    position: fixed;
    top: 0;
    z-index: 998;
    display: none;
    overflow: auto;
    width: 100%;
    height: 100%;
    background: rgb(2 2 2 / 32%);
}

.overlay .menu {
    margin: 0 0 0 0;
    width: 80%;
    background-color: #fff;
}

.accordion-infos {
    margin: 10px 10px 10px 10px;
    display: flex !important;
    justify-content: space-around;
    flex-direction: column;
    align-items: center;
    line-height: 0.8;
}

.accordion-infos p {
    color: #000;
}

.accordion-infos a {
    color: #000;
    font-size: 1.2125rem;
}

.accordion-infos a:hover {
    color: #ff8233
}

.accordion {
    position: relative;
    display: block;
    overflow: hidden;
}

.accordion h1 a,
.accordion h1 {
    color: #000;
    font-size: 1.2rem;
    text-transform: uppercase;
    font-weight: 600 !important;
    -moz-transition: 0.2s;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    margin: 0;
    padding: 15px 20px 15px 0;
}

.accordion h1 a:hover,
.accordion h1:hover {
    color: #000;
}

.accordion .accordion--toggle--no {
    position: relative;
    z-index: 3;
    cursor: pointer;
    display: block;
    margin: 0;
    text-align: left;
    background-color: #fff;
}

.acc-padd--mobile {
    margin: 0;
}

.accordion .accordion--toggle--no---mobile {
    background-color: #ff8233;
    color: #fff !important;
    padding: 15px 0 15px 15px;
}

.acc-user {
    border-top: 1px solid #efefef;
    border-bottom: 1px solid #efefef;
    padding: 10px 0 0 0;
    margin-bottom: 0px;
}

.acc-padd {
    border-bottom: 1px solid #efefef;
    margin: 0 0 0 15px;
}

.icon-avatar {
    width: 25px;
}

.accordion .accordion--toggle {
    position: relative;
    z-index: 3;
    cursor: pointer;
    display: block;
    font-size: 1.2rem;
    background-color: #fff;
    font-weight: 600 !important;
    text-align: left;
}

.accordion .accordion--toggle:after {
    content: "\f107";
    color: #ff8233;
    display: inline-block;
    font-family: "FontAwesome";
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    box-sizing: border-box;
    float: right;
    margin: 0;
    vertical-align: top;
    text-decoration: inherit;
    font-size: 21px;
    line-height: 0.6;
    transition: transform 0.2s ease-in-out;
    transform: rotate(0deg);
}

.accordion .accordion--body {
    position: relative;
    z-index: 1;
    float: left;
    clear: both;
    margin-top: -100%;
    padding: 0 0 1em 0;
    width: 100%;
    height: auto;
    max-height: 0;
    overflow: hidden;
    transition: margin 0.3s ease-in-out, max-height 0.25s ease-in-out;
}

.accordion.open>.accordion--toggle:after {
    transform: rotate(180deg);
}

.accordion.open>.accordion--body {
    background: #ffffff;
    padding: 5px 10px;
    height: auto;
    max-height: 100vh;
    margin: 10px 0;
}

.accordion-sp {
    position: relative;
    display: block;
    margin-top: -1px;
    margin-bottom: 0;
    overflow: hidden;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}

.accordion-sp .accordion--toggle {
    position: relative;
    z-index: 3;
    cursor: pointer;
    display: block;
    margin: 0;
    padding: 0.5em 1em;
    font-size: 16px;
    background-color: #eee;
}

.accordion-sp .accordion--toggle:after {
    content: "\f107";
    display: inline-block;
    font-family: "FontAwesome";
    font-size: inherit;
    line-height: 1;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    box-sizing: border-box;
    float: right;
    margin: 0;
    vertical-align: top;
    text-decoration: inherit;
    font-size: 24px;
    line-height: 1;
    transition: transform 0.2s ease-in-out;
    transform: rotate(0deg);
}

.accordion-sp .accordion--body {
    position: relative;
    z-index: 1;
    float: left;
    clear: both;
    margin-top: -100%;
    padding: 1em;
    width: 100%;
    height: auto;
    max-height: 0;
    overflow: hidden;
    transition: margin 0.3s ease-in-out, max-height 0.25s ease-in-out;
}

.accordion-sp.open>.accordion--toggle:after {
    transform: rotate(180deg);
}

.accordion-sp.open>.accordion--body {
    margin-top: 0;
    height: auto;
    max-height: 100000px;
}

ul.list-hamb-menu li {
    float: left;
    width: 100%;
    padding: 5px 0;
}

ul.list-hamb-menu li a {
    font-size: 1.2rem;
    font-weight: 400;
    color: #000;
}

ul.list-hamb-menu li a:hover {
    color: #ff8233;
}

.compromocao {
    margin-top: 250px !important;
}

.product-content.compromocao {
    padding: 20px;
}


@media screen and (max-width: 991px) {
    body {
        margin-top: 160px;
    }

    #nav-fixed {
        display: none;
        visibility: hidden;
    }

    .nav-mobile {
        display: block;
    }

    .accordion-sp .accordion--toggle {
        cursor: default;
    }

    .accordion-sp .accordion--toggle:after {
        content: none;
    }

    .accordion-sp .accordion--body {
        margin-top: 0;
        max-height: 10000px;
    }

    .compromocao {
        margin-top: 150px !important;
    }
}


@media only screen and (max-width:768px) {
    .accordion-infos span {}
}


/* instafeed */

.instabox {
    padding: 0px;
}

.instabox {
    float: left;
    width: 20%;
    padding: 1px;
}

.instabox>a {
    display: block;
    position: relative;
}

.instabox .likes {
    background: rgba(228, 77, 61, 0.8);
    font-size: 1em;
    position: absolute;
    color: #fff;
    right: 0px;
    top: 0px;
    left: 0px;
    height: 100%;
    opacity: 0;
    text-align: center;
    line-height: 150px;
    text-shadow: 0 1px rgba(0, 0, 0, 0.5);
    -webkit-font-smoothing: antialiased;
    -webkit-transition: opacity 100ms ease;
    -moz-transition: opacity 100ms ease;
    -o-transition: opacity 100ms ease;
    -ms-transition: opacity 100ms ease;
    transition: opacity 100ms ease;
}

.instabox a:hover .likes {
    opacity: 1;
}

.instabox .likes span {
    position: absolute;
    font-weight: 300;
    font-size: 20px;
    line-height: 20px;
    width: 100%;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.instabox .likes span img {
    display: inline-block;
    width: 24px;
    height: auto;
    margin-right: 5px;
}

.instabox>a>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.go-top {
    position: fixed;
    bottom: 0;
    right: 0;
    border-radius: 0px;
    color: #fff !important;
    text-decoration: none;
    background: #000;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    display: none;
    box-shadow: 0 15px 15px rgba(0, 0, 0, 0.25);
    z-index: 1;
}

.go-top:hover {
    background: #ff8233;
    color: #fff !important;
}

.videoWrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 */
    padding-top: 25px;
    height: 0;
}

.videoWrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

ul.tabs {
    margin: 0;
    padding: 0;
    float: left;
    list-style: none;
    width: 100%;
    margin-top: 0px;
}

ul.tabs li {
    padding: 10px 0;
    font-size: 14px;
    float: left;
    margin: 0;
    cursor: pointer;
    position: relative;
    width: 24%;
    text-align: center;
    line-height: 1.3;
    font-weight: 700;
    color: #d31027;
    border: 1px solid #d31027;
    margin: 0;
    margin-right: 10px;
    -moz-transition: 0.2s;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    text-transform: uppercase;
}

ul.tabs li:last-child {}

ul.tabs li:after {
    content: "";
    position: absolute;
    top: 100%;
    right: 45%;
}

ul.tabs li:hover {
    background-color: #d31027;
    color: #fff;
}

ul.tabs li.active {
    border: 1px solid #ff8233;
    background-color: #ff8233;
    color: white;
}

.tab_container {
    clear: both;
    width: 100%;
    border-top: 0;
    overflow: auto;
}

.tab_content {
    display: none;
    padding: 30px 0;
    overflow: hidden;
}

.tab_drawer_heading {
    display: none;
}

/*@media only screen and (max-width: 767px) {
    .product-content ul.tabs li {
        width: initial;
        display: inline-block;
        padding: 5px 20px;
        font-size: 12px;
    }
}*/

@media only screen and (max-width: 575px) {
    .categoria-tabs ul.tabs li {
        width: initial;
        display: inline-block;
        padding: 5px 20px;
        font-size: 12px;
    }
}


/* QTDE */

.qty {
    width: 45px;
    text-align: center;
    padding: 7px 5px;
}

input.qtyplus,
input.qtyminus {
    width: 25px;
    height: 25px;
    border: none;
    background: none;
    color: #000;
    font-size: 12px;
    font-weight: 700;
}


/* FILTER CATEGORIAS */

.side-collapse {
    display: none;
}

#author_bio_wrap {
    display: block;
}

@media only screen and (max-width: 768px) {
    .side-collapse {
        display: block;
    }

    .collapse-products {
        overflow: hidden;
        margin-top: 30px;
    }

    #author_bio_wrap {
        display: none;
        overflow: hidden;
        height: auto;
    }

    #btn-toggle {
        padding: 10px;
        display: block;
        width: 100%;
        color: #fff;
        background: #ff8233;
        text-align: center;
        cursor: pointer;
    }

    #btn-toggle:hover {
        color: #fff;
        background: #d99f29;
    }
}

.col-listagem {
    margin-bottom: 30px;
}


/* FIXED NAV */

#nav-fixed {
    z-index: 500;
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    display: none;
    background: #fff;
    -webkit-box-shadow: 0px 1px 31px -11px rgba(0, 0, 0, 0.6);
    -moz-box-shadow: 0px 1px 31px -11px rgba(0, 0, 0, 0.6);
    box-shadow: 0px 1px 31px -11px rgba(0, 0, 0, 0.6);
}

.menu_open {
    top: 0px !important;
    -webkit-transition: top .2s cubic-bezier(0.215, 0.610, 0.355, 1.000), height .2s;
    -moz-transition: top .2s cubic-bezier(0.215, 0.610, 0.355, 1.000), height .2s;
    transition: top .2s cubic-bezier(0.215, 0.610, 0.355, 1.000), height .2s;
    /* easeInQuad */
}

.menu_open .header-logo {
    margin-top: 0px;
}

.menu_closed {
    top: -148px !important;
    -webkit-transition: top .2s cubic-bezier(0.550, 0.055, 0.675, 0.190), height .2s;
    -moz-transition: top .2s cubic-bezier(0.550, 0.055, 0.675, 0.190), height .2s;
    transition: top .2s cubic-bezier(0.550, 0.055, 0.675, 0.190), height .2s;
    /* easeOutQuad */
}


/* HEADER */

header {
    background: #fff;
}

.header-bar {
    width: 100%;
    padding: 5px 0;
    border-bottom: 1px solid #efefef;
}

ul.list-header {
    float: right;
}

ul.list-header li {
    margin-right: 3em;
    display: inline-block;
}

ul.list-header a,
ul.list-header-dir a {
    color: #0d141a;;
}

ul.list-header-dir {
    float: right
}

ul.list-header-dir li {
    margin-left: 15px;
    display: inline-block;
}

ul.list-header-dir .fa {
    font-size: 16px;
    margin-left: 10px
}

.header-sec {
    font-size: 12px;
    font-weight: 500;
    display: block;
    padding: 10px 0 7px 0;
    overflow: hidden;
    background-color: #ffffff;
    color: #0d141a;
    /*border-bottom: 2px solid #ff8233;*/
}

.header-sec a {
    color: #0d141a;
}

ul.list-header-bar2 {
    float: left;
}

ul.list-header-bar2 li {
    margin-right: 10px;
    display: inline-block;
}

ul.list-header-bar2 li a {
    font-size: 12px;
    font-weight: 400;
}

ul.list-header-bar2 li a:hover {
    color: #fff;
}

.header-pgto {
    background-color: #262626;
    padding: 2em 0 !important;
    border-bottom: 2px solid #ff8233;
    color: #fff;
}

.header-pgto .logo {
    max-height: 63px;
}

.header-main {
    background: #fff;
    width: 100%;
}

.header-main .logo {
    width: 135px !important;
}

.header-main a {
    color: #777;
}

.header-main a:hover {
    color: goldenrod;
}

.header-main span {}

.header-ter {
    background-color: #262626;
    background-position: center;
    background-size: cover;
    background-image: url(../img/bg-header.jpg);
    display: block;
    padding: 1em 0;
    color: white;
}

/*#nav-fixed .header-logo img {
    height: 80px;
}
*/
.header-ter .header-logo {
    height: 100px;
    display: flex;
    align-items: center;
}

.header-contacto {
    float: left;
    height: 110px;
    line-height: 110px;
}

ul.list-contacto li {
    display: inline-block;
    padding-right: 10px;
    font-size: 12px;
    text-transform: uppercase;
}

.header-pgto {
    display: block;
    padding: 10px 0;
}

.header-pgto-right {
    color: #000;
    padding-top: 45px;
    text-align: right;
}

.header-phone {
    text-align: right
}

.header-info {
    text-align: center;
}

.header-language {
    text-align: right;
}

@media only screen and (max-width: 1200px) {}

@media only screen and (max-width: 768px) {
    .header-pgto-left .logo {
        display: table;
        margin: 0 auto;
    }

    .header-pgto-right {
        text-align: center;
    }
}

@media only screen and (max-width: 991px) {
    .logo {
        margin-top: 0;
    }
}

.search-box {
    background: #f6f6f6;
    padding: 0;
    display: block;
    overflow: hidden;
    border: 0;
    border-radius: 45px;
    margin: 10px;
}

.search-mobile {
    margin-top: 10px;
    padding-right: 5px;
    padding-left: 5px;
}

.search-mobile .search-box .search-field input {
    font-weight: 400;
}

.search-field {
    width: calc(100% - 60px);
    float: left;
}

.search-field input {
    background: transparent;
    font-size: 14px;
    width: 100%;
    margin: 0;
    border: 0;
    line-height: 48px;
    height: 48px;
    float: right;
    padding: 0 18px;
    border-radius: 0;
}

.search-field input:focus {
    outline: none;
}

.search-btn {
    width: 10%;
    float: right;
    color: #999;
    font-size: 14px;
}

.search-btn button {
    line-height: 45px;
    height: 45px;
    width: 100%;
    margin: 0;
    border: 0;
    background: transparent;
    -moz-transition: 0.2s;
    -webkit-transition: 0.2s;
    transition: 0.2s;
}

.search-btn button i {
    color: #626063;
}

.search-btn button:hover {
    background: #ff8233;
}

.search-btn button:hover i {
    color: #fff;
}

ul.list-user-logged {
    float: right;
    margin-top: 0;
    margin-right: 30px;
}

ul.list-user-logged li {
    float: left;
    padding-left: 10px;
}

ul.list-user-logged li a {
    color: #000;
    font-size: 13px;
}

ul.list-user-logged li a:hover {
    color: #ff8233;
}

ul.list-user-logged li .ico {
    padding-top: 5px;
    float: left;
    width: 25px;
}

ul.list-user-logged li .link {
    float: left;
    margin-left: 10px;
    width: calc(100% - 35px);
}

ul.list-user {
    width: 180px;
    display: flex;
    align-self: center;
}

ul.list-user li {
    width: 100%;
    display: inline-block;
}

ul.list-user li a {
    color: white;
    font-size: 12px;
    font-weight: 400;
}

ul.list-user li a:hover {
    color: #ff8233;
}

ul.list-user li .ico {
    float: left;
    width: 36px;
}

ul.list-user li .link {
    line-height: 1.2;
    float: left;
    width: calc(100% - 51px);
}

ul.logged-items {
    color: black;
}

ul.logged-items li {
    padding: 0;
    float: left;
    width: inherit;
}

ul.logged-items li a {
    font-size: 13px;
    margin-right: 6px;
}

.user-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu_open .user-box {
    margin-top: 20px;
}

.user-box .desc {
    width: 100%;
    text-align: center;
    position: relative;
}

.user-box .desc a {
    display: inline-flex;
    align-items: center;
}

.user-box .desc a>img {
    margin-right: 10px;
    filter: invert(1);
    height: 20px;
}

.user-box .desc a:hover {}

.cart-box {
    background-color: #f6f6f6;
    padding: 0.3em 2em;
    border-radius: 10px;
}

.cart-box .count {
    font-size: 22px;
    font-weight: 700;
    display: inline-block;
    color: #363537;
    text-align: center;
    font-weight: 400;
}

.cart-box-hover {
    padding-top: 75px;
    position: absolute;
    z-index: 5000;
    top: 20px;
    right: 15px;
    color: #333;
}

.cart-box-content {
    text-align: left;
    overflow: hidden;
    background: #fff;
    padding: 30px;
    display: block;
    width: 350px;
    line-height: 1.6;
    font-size: 12px;
    box-shadow: 0 15px 15px rgba(0, 0, 0, 0.2);
}

.cart-box-content a {
    font-weight: 400;
}

.cart-box-content strong {
    color: #000
}

.cart-box-content .btn {}

.fav-box {
    float: right;
    text-align: center;
}

.shipping-box {
    text-align: center;
}

.fav-box small,
.shipping-box small {
    font-size: 10px;
}

.section-cart-extra {
    /*border-top: 1px solid rgba(0, 0, 0, .1);*/
}


/* CAT */

.header-cat {
    width: 100%;
    background-color: #000000;

}

/*.header-cat:before {
    content: "";
    position: absolute;
    background-image: url('../img/bg-nav-top-radius.png');
    background-repeat: repeat-x;
    width: 100%;
    height: 29px;
    top: -29px;
}*/

.cats {
    padding-bottom: 7px;
}

.header-search {
    width: 100%;
    float: left;
    overflow: hidden;
}

.menu_open .header-search {
    margin-top: 5px;
}


/* SLIDER */

#main-slider {
    width: 100%;
    max-width: 100%;
}

.slider {
    z-index: 1;
    width: 100%;
    position: relative;
}

.slider-desktop {
    display: block !important;
}

.slider-mobile {
    display: none !important;
}

@media only screen and (max-width: 768px) {
    .slider-desktop {
        display: none !important;
    }

    .slider-mobile {
        display: block !important;
    }
}


/* FEATURES */

.features {
    width: 100%;
    border-bottom: 1px solid #e7e7e7;
    text-align: center;
    padding: 1em 0;
}

.features img {
    max-width: 100%;
}

.features-footer {
    margin-top: 60px;
    background: #ff8233 !important;
}


/* GRID BANNERS */

.grid-banners {
    display: block;
    margin-top: 30px;
    margin-bottom: 30px;
}

.grid-banners .item {
    margin-bottom: 30px;
}


/* PROMOCIONES HOME */

.promociones {
    display: block;
    margin: 50px 0;
}


/* PROMOCIONES HOME */

.mas-vistos {
    display: block;
    margin: 50px 0;
}


/* PUBLICIDADE */

.publicidad {
    display: block;
    margin: 50px 0;
}


/* CATEGORIAS HOME */

.categorias-banners {
    display: block;
}

.categorias-banners .item {
    /*margin: 15px 5px;*/
    text-align: center;
}

.categorias-banners .item img {
    display: table;
    margin: 0 auto;
}

@media only screen and (max-width: 992px) {
    .categorias-banners .item {
        margin-bottom: 30px;
    }
}


/* CATEGORIAS TABS */

.categorias-tabs {
    display: block;
    margin-top: 60px;
}

.categorias-tabs .box {}

ul.tabs-home {
    padding: 0;
    list-style: none;
    margin-top: 0px;
}

ul.tabs-home li {
    float: left;
    margin: 0;
    cursor: pointer;
    position: relative;
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
    color: #777;
    font-size: 16px;
    width: 25%;
    border-bottom: 3px solid #dfdfdf;
    padding: 10px;
    margin-right: 0px;
    -moz-transition: 0.2s;
    -webkit-transition: 0.2s;
    transition: 0.2s;
}

ul.tabs-home li:last-child {}

ul.tabs-home li:after {
    content: "";
    position: absolute;
    top: 100%;
    right: 45%;
}

ul.tabs-home li:hover {
    color: #000;
    border-bottom: 3px solid #000;
}

ul.tabs-home li.active {
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
    border-bottom: 3px solid #000;
    color: #000;
}

.tab_container-home {
    clear: both;
    width: 100%;
    border-top: 0;
    overflow: auto;
}

.tab_content-home {
    display: none;
    padding: 30px 0;
    overflow: hidden;
}

.tab_drawer_heading-home {
    display: none;
}

@media only screen and (max-width:768px) {
    ul.tabs-home li {
        width: 50%;
    }
}


/* FEAT BRAND */

.feat-brand {
    display: block;
    background: black;
    height: 400px;
    margin-top: 40px;
    margin-bottom: 80px;
}

.brand-title {
    width: 100%;
    height: 400px;
    display: -webkit-flex;
    display: flex;
}

.brand-title img {
    margin: auto;
}

.brand-prods {
    height: 400px;
    display: -webkit-flex;
    display: flex;
}

.brand-prods .box {
    float: left;
    width: 33.3333333333%;
    margin: auto;
    padding: 10px;
}

.brand-prods .box img {
    display: table;
    margin: 0 auto;
}

@media only screen and (max-width:992px) {
    .feat-brand {
        height: auto;
        padding: 40px;
    }

    .brand-title {
        margin-bottom: 30px;
        height: auto;
    }

    .brand-prods {
        height: auto;
    }

    .brand-prods .box {
        padding: 5px;
    }
}

@media only screen and (max-width: 768px) {
    .brand-prods .box {
        width: 100%;
        display: block;
    }
}


/* LANÇAMENTOS */

.lancamentos {
    margin-top: 50px;
    margin-bottom: 50px;
    display: block;
}

.lancamentos .box {
    overflow: hidden;
    display: block;
    margin-bottom: 30px;
}

.owl-ambientes {}

.owl-ambientes .item {}


/* MAS VENDIDOS */

.mas-vendidos {
    margin-top: 100px;
    margin-bottom: 50px;
    display: block;
}


/* VEA TAMBIEN */

.vea-tambien {
    display: block;
    overflow: hidden;
}


/* CATEGORIAS DESTAQUES */

.categorias-destaque {
    display: block;
    margin: 60px 0;
}

.categorias-destaque .item {
    display: block;
    padding: 0 15px;
    font-size: 18px;
    font-weight: 400;
    text-align: center;
    line-height: 1.2;
}

.categorias-destaque .item img {
    display: table;
    margin: 0 auto;
    margin-bottom: 10px;
}


/* MARCAS */

.marcas {
    display: block;
    padding: 50px 0 0 0;
}

.owl-marcas {
    padding: 0;
}

.owl-marcas i {
    font-style: normal;
}

.owl-marcas .item {
    padding: 1em;
    background-color: #fff;
    min-height: 170px;
    display: grid;
    align-content: center;
    /*border: #efefef 13px solid;*/
}

.owl-marcas .item a {
    color: #777777;
    font-weight: bold;
    font-size: 14px;
    text-align: center;
    display: block;
}

.owl-marcas .item img {
    margin-bottom: 5px;
}

.owl-marcas .item .marca-box {
    display: -webkit-flex;
    display: flex;
    background: #fff;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
    height: 150px;
    width: 100%;
}

.owl-marcas .item .marca-box img {
    margin: auto;
}


/* DESTACADOS */

.destacados {
    display: block;
    margin-top: 50px;
    margin-bottom: 50px;
}

.destacados-box {
    display: block;
    margin-bottom: 30px;
    height: 300px;
}

.destacados-box-maior {
    float: left;
    width: 600px;
    margin-right: 30px;
}

.destacados-box-menor {
    float: left;
    width: 240px;
    margin-right: 30px;
}

.destacados-box-ult {
    margin-right: 0 !important
}

@media only screen and (max-width: 1200px) {
    .destacados-box {
        height: auto;
    }

    .destacados-box-maior {
        float: left;
        width: 100%;
        margin-right: 0;
    }

    .destacados-box-maior img {
        display: table;
        margin: 15px auto;
    }

    .destacados-box-menor {
        width: 100%;
        margin-right: 0;
    }

    .destacados-box-menor img {
        display: table;
        margin: 15px auto;
    }
}

@media only screen and (max-width: 768px) {
    .destacado-1 {
        margin-bottom: 30px;
        padding-top: 30px;
    }
}


/* HIGHLIGHTS */

.highlights {
    overflow: hidden;
    margin-top: 30px;
    margin-bottom: 0;
    display: block;
}

.highlights-item {
    opacity: 1;
    width: 100%;
    -moz-transition: 0.2s;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    margin-bottom: 20px;
}

.highlights-item:hover {}

.highlights-img {
    display: block;
    /* height: 248px; */
    overflow: hidden;
}

.highlights-txt {
    padding: 15px;
    width: 100%;
    text-align: center;
    min-height: 100px;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
}

.highlights-txt h2 {
    line-height: 1.5;
    font-size: 16px;
    color: #ff8233;
    font-weight: 700;
    margin: 0;
    text-transform: inherit;
}


/* AD */

.ad {
    display: block;
}

.ad-img {
    margin: 0 auto;
}

.ad-big {
    margin: 40px 0
}


/* HOME */

.home-content {
    background: #fff;
    padding: 40px;
    overflow: hidden;
}

.services-home {
    margin: 40px 0;
    padding: 40px 0;
}

.services-home .img-center {
    margin-bottom: 30px;
}

.videos-content {
    background: #222;
}

.videos-list {
    overflow-y: scroll;
    height: 417px;
}

.videos-list ul.list-line li {
    width: 100%;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    -moz-transition: 0.2s;
    -webkit-transition: 0.2s;
    transition: 0.2s;
}

.videos-list ul.list-line li:hover {
    background: #000
}

.videos-list ul.list-line li .thumb {
    width: 100px;
    margin-right: 10px;
    float: left;
}

.videos-list ul.list-line li .desc {
    width: calc(100% - 110px);
    float: left;
}

.videos-list ul.list-line li .desc {
    color: #fff;
}

.videos-list ul.list-line li .desc span {
    display: block;
    color: #bf0411;
    font-size: 12px;
    text-transform: uppercase;
}

a.videos-all {
    margin: 0 auto;
    display: table;
    text-align: center;
    padding: 5px 15px;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    border: 1px solid #fff;
}

a.videos-all:hover {
    color: #bf0411;
    border-color: #bf0411;
}

.videos-list::-webkit-scrollbar-track {
    border: 0;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #F5F5F5;
}

.videos-list::-webkit-scrollbar {
    border: 0;
    width: 10px;
    background-color: #F5F5F5;
}

.videos-list::-webkit-scrollbar-thumb {
    border: 0;
    background-color: #000000;
    border: 1px solid #555555;
}

.instagram {
    padding: 40px 0;
}

.instagram h1 {
    color: #fff;
}

.blog {
    margin: 20px 0;
}

.brands {
    margin: 40px 0;
}

.brands-box {
    overflow: hidden;
    border-top: 5px solid #222;
    border-bottom: 5px solid #222;
}


/* SEARCH */

.results {
    padding: 20px;
    background: #efefef;
    text-align: center;
    margin-bottom: 30px;
}


/* LOGIN */

.box-login-social {
    text-align: center;
    position: relative;
    background: #fff;
    padding: 30px;
    border: 1px solid #efefef;
    width: 580px;
    margin: auto;
}

.box-login-social img {
    margin: 0 auto
}

.box-or {
    margin: 15px 0;
    text-align: center;
}

.box-login {
    border: 1px solid #efefef;
    height: 320px;
    position: relative;
    background: #fff;
    padding: 30px;
}

.box-login h2 {}

.box-login h1 small {
    display: block;
    margin-top: 5px;
    font-size: 12px;
}

.box-login input[type="text"],
.box-login input[type="password"] {
    width: 100%
}

.box-login .form-inline a {
    font-size: 12px;
}

.box-login .btn {
    position: absolute;
    bottom: 30px;
    right: 30px;
}

.box-login-seguro {
    text-align: center;
    font-size: 11px;
}

.box-login-seguro img {
    margin-top: 7px;
    margin-bottom: 17px;
}

.box-login-seguro h1 {
    font-size: 24px;
}

.btn-fb-login {
    opacity: 1;
    -moz-transition: 0.2s;
    -webkit-transition: 0.2s;
    transition: 0.2s;
}


@media only screen and (max-width: 768px) {

    .box-login-social {
        width: 100%;
    }
}


/* BOTÃO FACEBOOK */

.box-login-social .btn {
    display: inline-block;
    padding: 6px 12px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: normal;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px;
}

.box-login-social .btn-social {
    position: relative;
    padding-left: 44px;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.box-login-social .btn-facebook {
    color: #fff;
    background-color: #3b5998;
    border-color: rgba(0, 0, 0, 0.2);
}




/* CADASTRO */

.box-cadastro {
    border: 1px solid #efefef;
    padding: 50px;
    margin-bottom: 30px;
}

.box-cadastro input[type="text"] {
    width: 100%
}

.box-cadastro .form-inline a {
    color: #aaa;
    font-size: 12px;
}

.box-cadastro .btn {
    /*position: absolute;
  bottom: 20px;
  right: 20px;
  */
}


/* PANEL */

.box-user {
    border: 1px solid #efefef;
    padding: 30px;
}

.box-user hr {
    border-top: 1px solid #dfdfdf;
}

.box-user strong {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.8;
    color: #000;
}

.box-panel {
    padding: 30px 30px 0 30px;
    background: #fff;
}

.section-painel .accordion dt a {
    padding: 15px 0;
    color: #333;
}

.accordion dt a.is-expanded {
    background-color: #ff8233;
    color: #fff;
    text-indent: 2em;
    margin-bottom: 1em;
}

.section-painel .accordion dl:first-child {
    border-top: 1px solid #e9e9e9;
}

.section-painel .accordion dd,
.section-painel .accordion__panel {
    border-bottom: 1px solid #e9e9e9;
    overflow-x: hidden;
}

.pedido-resumo {
    padding-top: 20px;
}

.pedido-resumo h2 {
    margin: 0 0 10px;
}

table.table-list {
    width: 100%;
}

table.table-list thead tr th {
    text-align: left;
    padding-bottom: 10px;
    border-bottom: 1px solid #e9e9e9;
    font-weight: bold;
}

table.table-list tbody tr td {
    padding: 10px 0;
    border-bottom: 1px solid #e9e9e9;
    color: #333;
}

table.table-list tbody tr:last-child td {
    border-bottom: none;
}


/* PRODUCT BADGES */

ul.item-badges-top {
    top: 0;
    left: 0;
    font-size: 12px;
    width: 100%;
    z-index: 1;
}

ul.item-badges-top>li {
    padding: 4px;
    font-weight: bold;
    margin: 10px 0px 10px 0px;
    background-color: #FF0000;
    color: #fff;
    border-radius: 2px;
    -webkit-box-shadow: 0px 0px 10px -4px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0px 0px 10px -4px rgba(0, 0, 0, 0.75);
    box-shadow: 0px 0px 10px -4px rgba(0, 0, 0, 0.75);
}

ul.item-badges-top>li:last-child {
    margin-right: 3px;
}

ul.item-badges-top>li.badge-fav {
    float: right;
    margin-right: 10px;
    background-color: #000;
}

ul.item-badges-top>li.badge-fav i {
    color: #fff;
}

ul.item-badges-top>li.badge-fav:hover {
    background-color: #f00;
}





/*ul.item-badges-bottom {
    display: none !important;
    font-size: 12px;
    display: block;
    margin: 1em 0
}*/

/*.prod-item-destaque ul.item-badges-bottom {
    display: block !important;
}*/

ul.item-badges-bottom {
    display: flex;
    justify-content: space-between;
    position: absolute;
    bottom: 0;
}

ul.item-badges-bottom-int {
    display: flex;
}

ul.item-badges-bottom>li.badge-new,
ul.item-badges-bottom-int>li.badge-new {

    background-color: #ff8233;
    color: #fff;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 500;
    padding: .5em .7em;
}

ul.item-badges-bottom>li.badge-oferta,
ul.item-badges-bottom-int>li.badge-oferta {

    background-color: #ff8233;
    color: #fff;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 500;
    padding: .5em .7em;
}

ul.item-badges-bottom>li.badge-ship,
ul.item-badges-bottom-int>li.badge-ship {

    letter-spacing: 2px;
    color: #fff;
    text-transform: uppercase;
    font-size: 11px;
    top: 0;
    background-color: #002bff;
    padding: .5em .7em;
}

ul.item-badges-bottom>li.badge-off,
ul.item-badges-bottom-int>li.badge-off {

    background-color: black;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    font-size: 11px;
    font-weight: 500;
    padding: .5em .7em;
}

.prod-info-box div.badge-off {
    font-weight: 600;
    background-color: #fcc82e;
    letter-spacing: 1px;
    color: #252d25;
    border: 1px solid #fcc82e;
    box-shadow: 0 0 0 0 rgba(252, 200, 46, 0.5);
    -webkit-animation: pulse 1.5s infinite;
    position: absolute;
    top: 0;
    right: 0;
    font-size: 13px;
    display: block;
    margin: 1em 0;
    padding: 5px;
}

/* PRODUCTS */

.products-home {
    background: #e9e9e9;
    padding: 80px 0;
    overflow: hidden;
}

.prod-item-megamenu {
    padding: 0 30px 0 30px;
    text-align: center;
    cursor: pointer;
    background: #fff;
    height: auto !important;
}

.prod-item-megamenu h1 {
    font-size: 14px;
    font-weight: 400;
    color: #777;
    height: 54px;
    text-transform: none;
    line-height: 1.2;
}

.prod-item-megamenu img.thumb {
    display: table;
    margin: 0 auto;
}

.prod-item-combo {
    height: auto;
    text-align: center;
    /*padding: 0 20px;*/
    position: relative;
}

.combo-plus {
    position: absolute;
    left: -13px;
    top: 200px;
    width: 25px;
    height: 25px;
    line-height: 25px;
    text-align: center;
    font-weight: 400;
    font-size: 18px;
    background: #e82583;
    color: #fff;
}

.prod-item-combo h1 {
    font-size: 14px;
    font-weight: 600;
    color: #444;
    text-transform: uppercase;
    line-height: 1.6;
    margin: 40px 0 0 0;
    height: 90px;
    overflow: hidden;
}

.prod-item-combo .price-for {
    font-size: 14px;
    font-weight: 700;
}

.prod-item-combo small {
    font-size: 12px;
}

.prod-item-combo-total {
    border: 2px solid #d9d9d9;
    padding: 20px;
}

.prod-item-combo .prod-img {
    overflow: hidden;
    /*display: block;
    display: -webkit-flex;
    display: flex;*/
    margin-top: 1em;
    position: relative;
}

.prod-item-combo .prod-align {
    position: relative;
    height: 265px;
}


.prod-item-combo .prod-img img {
    width: auto;
    height: auto;
    max-height: 265px;
    max-width: 100%;
}

.prod-item {
    cursor: pointer;
    text-align: left;
    height: 490px;
    position: relative;
    margin-bottom: 50px;
}

.prod-item .prod-desc {
    margin-top: 1em;
}

.prod-item .prod-desc .btn-cart {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border: 2px solid #ff8233;
    color: #5e5e5e;
    font-size: 18px;
    font-weight: 600;
    margin-top: 1.5em;
    bottom: 0;
    position: absolute;
}

.prod-item .prod-desc .btn-cart:hover {
    background-color: #ff8233;
    color: #fff !important;
}

.prod-item .prod-desc .btn-cart img {
    width: auto;
    margin-right: 1em
}

.prod-item .prod-img {
    /*
    overflow: hidden;
    display: block;
    display: -webkit-flex;
    display: flex;*/
    position: relative;
}

.prod-item .prod-align {
    position: relative;
    height: 265px;
}


.prod-item .prod-img img {
    width: auto;
    height: auto;
    max-height: 265px;
    max-width: 100%;
}

.prod-item .thumb {
    -moz-transition: 0.1s;
    -webkit-transition: 0.1s;
    transition: 0.1s;
}

.prod-item:hover .thumb {
    opacity: 0.85
}

.prod-item h1 {
    font-size: 14px;
    font-weight: 400;
    color: #727272;
    line-height: 1.4;
    margin: 20px 0 20px 0;
    height: 38px;
}

.prod-item h1 a {
    color: #1e1e1e;
}

.prod-item img.thumb {
    display: table;
    margin: auto;
}

.prod-item .btn-prod {
    padding: 15px 0;
}

.prod-off,
.prod-item .prod-fav {
    z-index: 1;
    position: absolute;
    top: 0;
    padding: 5px;
    display: flex;
    justify-content: flex-end;
    text-transform: uppercase;
}

.prod-off {
    right: 0;
}

.prod-item .prod-fav {
    left: 0;
}

.prod-off2 {
    display: block;
    min-height: 20px;
    padding: 0;
    overflow: hidden;
}

.prod-lanca,
.prod-frete {
    background-color: #ba264f;
    color: #fff;
    border-radius: 10px;
    text-align: center;
    font-size: 10px;
    padding: 2px 8px;
    text-transform: uppercase;
    margin: 0.5px 3px;
    display: inline-block;
}

.prod-promo {
    font-weight: 700;
    color: #fff;
    font-size: 12px;
    padding: 3px 5px 1px 5px;
    background: #f90101;
}

.prod-off-value {
    width: 40px;
    height: 40px;
    line-height: 1;
    text-align: center;
    font-weight: bold;
    color: #fff;
    font-size: 12px;
    padding: 14px 0px;
    background: #ff8233;
    border-radius: 50%;
}

.prod-feat {
    bottom: 10px;
    left: 10px;
    position: absolute;
    font-weight: 700;
    color: #fff;
    font-size: 9px;
    padding: 3px;
    background: #ff8233;
}

.prod-item a.prod-bt-comprar {
    padding: 10px;
    bottom: 0;
    left: 0;
    right: 0;
    display: none;
    position: absolute;
    text-align: center;
    font-size: 14px;
    background: #000;
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
}

.prod-item a.prod-bt-comprar:hover {
    background: #777;
}

.prod-item a.prod-bt-mais {
    position: absolute;
    top: 10px;
    left: 10px;
    display: none;
    padding: 5px 10px;
    text-align: center;
    font-size: 12px;
    background: #e82583;
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
}

.prod-item a.prod-bt-mais:hover {
    background: #ba1e69
}

.prod-item:hover a.prod-bt-comprar,
.prod-item:hover a.prod-bt-mais {
    display: inline-block;
}

ul.list-colors {
    display: table;
    margin: 0 auto 10px auto;
    overflow: hidden;
}

ul.list-colors li {
    float: left;
    margin: 0 3px 3px 3px;
}

ul.list-colors li img {
    width: 13px;
    height: 13px;
    border: 1px solid #ccc;
}

.foo img:last-child {
    display: none;
}

.foo:hover img:first-child {
    display: none
}

.foo:hover img:last-child {
    display: block;
}


/* PRODUCTS DETAIL */

.prod-info h1 {
    color: #000;
}

.prod-info h2 {
    text-transform: none;
    font-weight: 400;
    line-height: 1.4;
    font-size: 16px;
}

.prod-info .btn {
    display: block;
    height: 60px;
    line-height: 60px !important;
    font-size: 16px;
    border: 0px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    background-color: #ff8233;
    padding: 0;
    border-radius: 50px;
    text-align: center;
}

.prod-info .btn:hover {
    background: #ff8233;
    color: #fff !important;
}

.prod-info .btn i {
    font-weight: 300;
}

.prod-info .prod-fav {
    float: right;
    font-size: 20px;
    margin-left: 15px;
}

.prod-info-box {
    overflow: hidden;
    position: relative;
    display: block;
    padding: 20px 2px;
    text-align: left;
    border-top: 1px solid rgba(0, 0, 0, 0.07);
}

.prod-info-box .feat-box {
    border: 1px solid #ccc;
    padding: 3px 5px;
    font-size: 12px;
    border-radius: 2px;
    color: #aaa;
    text-transform: uppercase;
    display: inline-block;
}

.prod-info-box .badges {
    float: right;
}

.prod-info-box ul.list-thumb li {
    float: left;
    margin: 0 5px 5px 0;
    border: 1px solid #000;
    padding: 0;
}

.prod-info-box h2 {
    color: red;
}

.prod-info-box ul.list-thumb li img {
    height: 30px;
}

.prod-info-box .price-of {
    margin-left: 0;
}

.prod-info-box .price-varejo,
.prod-info-box .price-for {
    font-size: 18px;
}

.prod-info-box .price-off {
    margin-top: 5px;
}

.ico-btn {
    width: 24px;
    height: auto;
}

.price-of {
    display: block;
    font-size: 14px;
    color: #878787;
    text-decoration: line-through;
    font-weight: 400;
    margin-right: 1em;
}

.price-varejo {
    font-size: 18px;
    color: #1e1e1e;
    font-weight: 600;
}

.price-varejo span {
    border-radius: 2px;
    padding: 1px 3px;
    border: 1px solid #aaa;
    font-size: 9px;
    color: #777;
}

.price-for {
    font-size: 14px;
    font-weight: 900;
    color: #000;
}

.price-for span {
    display: inline-block;
    border-radius: 2px;
    padding: 1px 3px;
    border: 1px solid #aaa;
    font-size: 9px;
    color: #777;
}

.price-off {
    display: block;
    font-size: 12px;
    color: #00b01c;
    text-transform: uppercase;
}

.price-parc {
    font-size: 13px;
    color: #727272;
    display: block;
    margin-bottom: 5px;
}

.price-main {
    display: block;
    color: #000;
}

.price-main strong {
    font-size: 21px;
    font-weight: 900;
}

.price-submain {
    font-weight: 700;
    font-size: 16px;
    color: #000;
    margin: 15px 0;
    display: block;
}

.price-strong {
    color: #000;
    font-weight: 700;
}

.price-combo {
    overflow: hidden;
    text-align: center;
    padding: 10px 0 30px 0;
    border-top: 1px solid #e9e9e9;
    border-bottom: 1px solid #e9e9e9;
    margin-bottom: 20px;
}

.price-combo strong {
    font-size: 18px;
    color: #de3753;
    display: block;
}

.more-cats {
    display: block;
    line-height: 1;
    margin-top: 10px;
}

.more-cats a {
    font-size: 12px;
    color: #777;
    text-transform: uppercase;
}

.more-cats a:hover {
    color: #111;
}


/* LOOK */

.look-item {
    padding: 10px;
    border-top: 1px solid #ccc;
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
}

.look-item:last-child {
    border-top: 1px solid #ccc;
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}


/* CART */

.section-box {
    padding-top: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #efefef;
}

.section-box:last-child {
    border-bottom: 0
}

.section-cart-extra {
    padding-top: 30px;
    overflow: hidden;
}

.img-cart {
    max-width: 70%;
}

a.bt-remove {
    font-size: 10px;
    text-decoration: underline;
    text-transform: uppercase;
}

.field,
.field-desc {
    float: left;
}

a.link-cep {
    text-transform: uppercase;
    text-decoration: underline;
    font-size: 12px;
    margin: 0 2%;
}

.frete-input {
    padding: 9px;
    background: #fff;
    color: #444;
}

.frete-bt {
    padding: 11px 15px;
    background: #999;
    color: #fff !important;
    border: 1px solid #999;
    -moz-transition: 0.2s;
    -webkit-transition: 0.2s;
    transition: 0.2s;
}

.frete-bt:hover {
    background: #777;
    border-color: #777;
}


/* PAY */

.resume-box {
    background: #efefef;
    padding: 30px;
}

.resume-box hr {
    border-top: 1px solid #d9d9d9;
}


/* FINAL */

.nr-order {
    color: #fff;
    border-radius: 3px;
    background: #009fea;
    padding: 3px 8px;
    margin-left: 5px;
    font-size: 18px;
}


/* MIDIA */

.midia {
    padding: 40px 0;
    background: url(../img/midia-bg.jpg) top center no-repeat #efefef;
}

.midia h1 {}


/* BLOG */

.blog-home {
    display: block;
    padding: 50px 0;
}

.blog-home .posts a {
    color: #fff;
}

.blog-home .mb-3 {
    margin-bottom: 15px;
}

.blog-content .bar {
    margin: 40px 0;
}

.blog-content ul.list-line li {
    padding: 8px 0;
    border-bottom: 1px solid #e9e9e9;
}

.blog-content .search-field input {
    padding-left: 15px;
    background: #efefef !important;
}

.blog-home .button-more-post {
    margin-top: 20px;
}

.blog-content ul.list-line li a {}

.blog-content ul.list-line li a:hover {}

.blog-post {
    margin-bottom: 40px;
}

.blog-post .thumb {
    margin-bottom: 20px;
}

.blog-thumb {
    display: block;
    margin-bottom: 20px;
    height: 200px;
}

.box-blog-relacionados .jcarousel-wrapper {
    margin: 0;
}

.box-blog-relacionados .prod-item {
    padding: 0;
}

.side-box {
    width: 100%;
    float: left;
    border: 1px solid #efefef;
    padding: 30px;
}

.side-box .search-box {
    width: 100%;
}

.side-box .search-box .search-field {}

.side-box .search-box .search-field input {
    font-size: 13px;
    height: 35px;
    border-bottom-left-radius: 30px;
    border-top-left-radius: 30px;
}

.side-box .search-box .search-btn button {
    line-height: 1;
    text-align: center;
    background-color: #efefef;
    height: 35px;
    border-radius: 0px;
    border-bottom-right-radius: 30px;
    border-top-right-radius: 30px;
}

.side-box .search-box .search-btn button:hover {
    background: #777 !important;
    border-color: #777 !important;
}

.side-box hr {
    border-top: 1px solid #efefef;
}

.side-box .search-btn {
    width: 50px;
}

.side-box .search-field {
    width: calc(100% - 50px);
}

ul.list-side li {
    display: inline-block;
    margin: 0 2px 12px 0;
}

ul.list-side li a {
    border: 1px solid #777;
    color: #777;
    padding: 3px 5px;
}

ul.list-side li a:hover {
    border: 1px solid #ff8233;
    color: #ff8233;
}

ul.list-side li:last-child {
    margin-bottom: 0;
}


/* BLOG POST */

.blog-post h1 {
    font-size: 18px;
    font-weight: bold;
    text-transform: none;
    margin: 0 0 15px 0;
    line-height: 1.4;
    color: #393939;
    font-family: "Raleway", sans-serif;
    text-transform: uppercase;
}

.blog-post h1 small {
    display: block;
    color: #aaa;
    font-size: 12px;
    margin-top: 10px;
    text-transform: uppercase;
}

.blog-post p {
    font-size: 16px;
    line-height: 1.6;
    color: #5d5d5d;
    margin-bottom: 20px;
}

.blog-post ul {
    list-style-type: disc;
    padding-left: 40px;
    font-size: 16px;
    color: #5d5d5d;
}

.blog-post ul li {
    margin-bottom: 10px;
}

.blog-post blockquote {
    margin: 3rem 0;
    padding: 40px;
    padding-left: 50px;
    position: relative;
    border-left: 0;
}

.blog-post blockquote p {
    padding: 0;
    font-size: 23px;
    line-height: 1.4;
    color: #000000;
}

.blog-post blockquote:before {
    content: "\201C";
    font-size: 12rem;
    line-height: 0px;
    margin: 0;
    color: rgba(0, 0, 0, 0.25);
    font-family: arial, sans-serif;
    position: absolute;
    top: 75px;
    left: 0;
}

.blog-post strong {
    color: #ff8233;
}


/* GALERIA */

.galeria-item {
    margin-bottom: 30px;
}


/* LOJA */

.loja-box {
    height: 90px;
    margin-bottom: 30px;
}


/* SERVIÇO */

.servico-box {
    margin-bottom: 30px;
}


/* FALE */

.fale-box {
    text-align: center;
    height: 200px;
    margin-bottom: 30px;
}

.fale-box img {
    margin-bottom: 15px;
}


/* NEWSLETTER */

.newsletter {
    display: block;
    padding: 35px 0;
    background: #262626;
    position: relative;
}

.newsletter h3 {
    font-size: 20px;
    color: #fff;
}

/*.newsletter:before {
    content: "";
    position: absolute;
    background-image: url('../img/bg-nav-top-radius.png');
    background-repeat: repeat-x;
    width: 100%;
    height: 29px;
    top: -29px;
}*/

.newsletter .content {
    display: flex;
    align-items: center;
}

.newsletter .icon {
    margin-right: 20px;
}

.newsletter h3 {

    font-size: 24px;
    text-transform: uppercase;
}

.newsletter p {
    color: #fff;
    font-size: 16px;
    margin-bottom: 0;
}

.news-desc h1 {
    margin: 0 0 5px;
    font-size: 18px;
    color: #fff;
    font-weight: 900;
}

.news-form {
    position: relative;
}

.news-form label {
    display: none !important;
}

.news-form .input-group {
    background-color: #fff;
    border-radius: 50px;
}

.news-form input {
    padding: 20px;
    background: #fff;
    border: 0;
    width: 100%;
    position: relative;

    margin-top: 3px;
    background: transparent;
    border: 0px !important;
    margin-left: 30px;
}

.news-form button {
    background: transparent;
    border: 0;
    border-radius: 0px;
    padding: 15px;
    position: absolute;
    top: 0;
    right: 15px;
    color: #000;
    font-size: 26px;
    width: auto !important;
    margin: 0 !important;
}

.news-form button:hover {
    color: #b3131b !important;
}

@media only screen and (max-width: 768px) {
    .news-desc {
        margin-bottom: 30px;
    }

    .news-form {
        text-align: center
    }

    .news-form input,
    .news-form button,
    .news-form select {
        width: 100%;
        margin-bottom: 10px;
        text-transform: uppercase;
        margin-left: 0;
    }
}


/* REVEDENDOR */

.revendedor {
    display: block;
    padding: 80px 0;
    background: url(../img/revendedor-bg.jpg) center center no-repeat;
    text-align: center;
    color: #fff;
    font-size: 24px;
}

.revendedor h1 {
    font-size: 30px;
    text-transform: none;
    font-weight: 900;
    color: #fff;
    margin: 0 0 10px;
}

.revendedor .bt {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    border-bottom: 1px solid #fff;
    line-height: 1.8;
}

.revendedor-hero {
    padding: 150px 0;
    width: 100%;
    background: url(../img/revendedor-hero-bg.jpg) no-repeat top center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    margin-bottom: 80px;
}

.revendedor-hero .title {
    padding-top: 70px;
    width: 80%;
    margin: 0 auto;
    display: table;
    text-align: center;
    font-size: 32px;
    line-height: 1.4;
    color: #fff;
    font-weight: 300;
}

.form-rev {
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    color: #fff;
}

.form-rev input,
.form-rev button {
    width: 100%;
    padding: 10px;
    font-size: 18px;
    border-radius: 5px;
}

.form-rev button {
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    background: #e53935;
    color: #fff;
    font-size: 18px;
    padding: 15px 10px;
    border: 1px solid #e53935;
}

.form-rev button:hover {
    background: #b72e2a;
    border: 1px solid #b72e2a;
}

.form-rev p {
    margin-bottom: 10px;
}

.form-rev .box {
    margin: 0 auto;
    display: table;
    max-width: 450px;
    width: 100%;
    border-radius: 5px;
    padding: 50px;
    background: #fff;
}

.revendedor-hero h1 {
    text-align: center;
    text-transform: none;
    color: #fff;
    font-size: 70px;
    letter-spacing: -1px;
    margin: 0;
}

.ventajas {
    padding: 0 0 0 10%;
}

ul.list-ventajas {
    display: block;
}

ul.list-ventajas li i {
    color: #e53935;
}

ul.list-ventajas li {
    font-size: 18px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.revendedor-hero2 {
    margin-top: 80px;
    margin-bottom: 80px;
    padding: 150px 0;
    width: 100%;
    background: url(../img/revendedor-hero2-bg.jpg) no-repeat top center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.revendedor-hero2 h1 {
    text-align: center;
    text-transform: none;
    color: #fff;
    font-size: 70px;
    letter-spacing: -1px;
    margin: 0;
}

.revendedor-dudas {
    display: block;
    font-size: 18px;
}

.revendedor-dudas h2 {
    margin-top: 30px;
    font-size: 21px;
    line-height: 1.2;
    font-weight: 700;
    text-transform: none;
    color: #000;
}

.revendedor-dudas .resp {
    border-bottom: 1px dashed #dfdfdf;
    padding-bottom: 20px;
    font-size: 18px;
    font-weight: 400;
}

.revendedor-hero3 {
    margin-top: 80px;
    margin-bottom: 80px;
    padding: 150px 0;
    width: 100%;
    background: url(../img/revendedor-hero3-bg.jpg) no-repeat top center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.revendedor-hero3 h1 {
    text-align: center;
    text-transform: none;
    color: #fff;
    font-size: 70px;
    letter-spacing: -1px;
    margin: 0;
}

@media only screen and (max-width: 992px) {
    .revendedor-hero .title {
        margin-bottom: 30px;
    }

    .img-ventajas {
        margin-bottom: 30px;
    }

    .revendedor-dudas h2 {
        text-align: left;
    }
}


/* TIENDAS */

.tiendas .item {
    height: 360px;
    display: block;
    background: #efefef;
    margin-bottom: 30px;
}

.tiendas .item .fig {
    height: 165px;
    overflow: hidden;
}

.tiendas .item .desc {
    padding: 30px;
}

.tiendas .item .desc h1 {
    margin: 0 0 5px;
    font-size: 16px;
}

.tiendas .item a.map {
    color: #000;
    font-size: 14px;
    border-bottom: 1px solid #000;
    line-height: 1.8;
}

.tiendas .item a.map:hover {
    opacity: 0.7
}

@media only screen and (max-width: 768px) {
    .tiendas .item {
        height: auto;
        overflow: hidden;
    }

    .tiendas .item .fig {
        height: auto;
        overflow: hidden;
    }

    .tiendas .item .desc {
        width: 100%;
        text-align: left;
    }

    .tiendas .item .desc h1 {
        text-align: left;
    }
}


/* FAVORITOS */

.favoritos {
    display: block;
}

.favoritos .item {
    display: block;
    padding: 30px;
    border: 1px solid #efefef;
    margin-bottom: 30px;
}

.fav-img {}

.fav-desc h1 {
    font-size: 16px;
    margin: 20px 0 5px;
    font-weight: 400;
}

.fav-remove {
    padding-top: 20px;
    text-align: right;
}

@media only screen and (max-width: 768px) {
    .fav-desc h1 {
        text-align: left;
        line-height: 1.2
    }
}


/* FOOTER */

.footer-bg {
    width: 100%;
    padding: 5em 0;
    background: #f4f4f4;
    color: #414141;
}

.footer-bg h1 {
    color: #191919;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 20px;
}

.footer-bg a {
    color: #191919;
}

.footer-bg a:hover {}

.footer-bg hr {
    margin-top: 50px;
    margin-bottom: 50px;
}

.footer-bg .search-box {
    width: 100%;
}

.footer-bg .search-btn {
    width: 10%;
}

.footer-bg .search-field {
    width: 90%;
}

.footer-contact {
    margin-bottom: 20px;
}

.footer-contact h1 {
    color: #414141;
}

.footer-contact i {
    color: #707070;
    margin-right: .5em;
}

ul.list-line-footer {}

ul.list-line-footer li {
    line-height: 1.6;
    margin-bottom: 10px;
    font-size: 14px;
    color: #191919;
    font-weight: 500;
}

ul.list-line-footer li a {
    color: #191919;
}

ul.list-line-footer li a:hover {
    color: #191919;
}

.footer-credits {
    padding: 30px 0;
    font-size: 11px;
    background: #fff;
}


/* .footer-credits .footer-logo {
  width: 140px;
  padding-right: 20px;
  float: left;
  } */

.footer-wrap {
    display: block;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
    flex-direction: column;
}

.footer-logo,
.footer-desc {
    margin-bottom: 20px;
}

.footer-credits .footer-logo>img {
    width: 100%;
    margin: 0 auto;
}

.footer-ego {
    text-align: right;
}


/* .footer-credits .footer-desc {
  width: calc(100% - 160px);
  float: left;
  } */

.footer-credits a {
    color: #000;
}

.footer-credits a:hover {
    color: #ff8233;
}

.footer-credits h1 {
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
}

.footer-extras {
    display: block;
    padding: 50px 0;
    border-bottom: 1px solid #efefef;
}

.footer-extras h1 {
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    margin: 0 0 10px;
}

@media only screen and (max-width: 768px) {

    .logo-footer,
    .footer-pago,
    .footer-seg {}

    .search-btn {
        padding-right: 4em;
    }
}


/* modificações e adaptacoes */

.caixaimg {
    height: 220px;
    position: relative;
}

.img-responsiveh {
    max-height: 100%;
}

.celpgto {
    width: 70px;
    text-align: center;
    float: left;
}

li.menusel {
    color: #ff8233 !important;
    font-weight: 700;
}

li.menusel a {
    border-color: #ff8233;
    color: #ff8233 !important;
    font-weight: 700;
}

ul.list-sabor {
    padding: 0;
}

ul.list-sabor li {
    margin: 0;
    padding: 0;
    list-style: none;
    float: left;
    margin: 10px 10px 10px 0;
}

ul.list-sabor li a {
    padding: 7px;
    background: #fff;
    color: #777;
    font-size: 14px;
    font-weight: 700;
}

ul.list-sabor li a:hover {
    background: #ff8233;
    color: #fff;
}

ul.list-sabor li a:active {
    background: #ff8233;
    color: #fff;
}

ul.list-sabor li.color-select a {
    background: #ff8233;
}

ul.list-sabor li.color-not-avalible a {
    opacity: 0.3;
    cursor: default;
}

ul.list-sabor li.size-select a {
    background: #ff8233;
    color: #fff;
}

ul.list-sabor li.size-not-avaible a {
    opacity: 0.3;
    /*pointer-events: none;
  cursor: default;*/
}

table.tabela_frete {
    border: 1px solid #ccc;
    width: 100%;
}

table.tabela_frete tbody tr th {
    background: #ccc;
    color: #000;
    padding: 5px;
}

table.tabela_frete tbody tr td {
    border-bottom: 1px solid #ccc;
    padding: 5px;
}

@media (min-width: 0px) and (max-width: 360px) {
    a.menuzord-brand img {
        height: 40px !important;
    }

    .menuzord-responsive .showhide {
        padding-top: 10px !important;
    }
}

@media only screen and (max-width: 768px) {
    ul.list-header-bar {
        display: table;
        margin: 0 auto;
    }

    ul.esquerda {
        display: none
    }

    ul.direita {
        float: none;
        margin-top: 5px;
    }

    .search-box-header {
        margin: 0 10px;
        margin-bottom: 20px;
    }

    .section-box {
        text-align: center;
    }

    .user-box {
        display: table;
        margin-top: 0 !important;
        height: 0 !important;
        line-height: 0 !important;
    }

    .user-box .desc a {
        height: 0 !important;
        line-height: 0 !important;
    }

    .user-box .desc {
        text-align: center !important;
        line-height: 2.2;
    }

    .cart-box-hover {
        display: none !important;
    }

    .features .img-center {}

    .footer-highlights {
        height: auto;
        padding: 0 0 20px;
    }

    .footer-highlights .desc {
        width: 100%;
        text-align: center;
        margin: 0;
        font-size: 14px;
        margin-bottom: 10px;
    }

    .footer-highlights .desc h1 {
        font-size: 18px;
    }

    .footer-highlights .form {
        margin-top: 20px;
    }

    ul.list-line-footer {
        overflow: hidden;
        margin-bottom: 30px;
    }

    ul.list-line-footer li {}

    ul.list-line-footer li img {}

    .side-cat-title {}

    .side-cat-content {
        overflow: hidden;
    }

    .side-cat-content h2 {
        line-height: 1.4;
    }

    ul.side-cat-list li {
        display: block;
        text-align: left;
        margin: 0;
        margin-bottom: 12px;
    }

    ul.side-cat-list li a {
        padding: 3px 5px;
        border: 1px solid transparent;
        color: #000;
    }

    ul.side-cat-list li a:hover {
        border: 1px solid #d99f29;
        color: #d99f29;
    }

    ul.side-cat-list li.menusel a {
        border: 1px solid #ff8233;
    }

    .megamenu-content ul.cat-list li {
        display: block;
        width: 100%;
        margin: 0;
        border: 0;
        padding: 0px 10px;
        margin-bottom: 5px;
        text-align: center;
    }

    .btn,
    .btn2 {
        width: 100%;
        margin: 10px 0;
        display: block;
        line-height: 1.3 !important;
    }

    .prod-info-box,
    .prod-info {
        text-align: center;
    }

    .resume-box {
        margin: 30px 0;
        text-align: center;
    }

    .section-finaliza {
        text-align: center;
        padding: 30px;
        background: #fff;
    }

    .box-user {
        text-align: center;
    }

    .box-panel {
        margin: 30px 0;
    }

    .highlights-item img {
        width: 100%;
    }

    .box-login {
        margin: 30px 0;
        height: auto;
    }

    .box-login .btn {
        position: static;
        bottom: 0;
        right: 0;
    }

    .obs {
        text-transform: uppercase;
        width: 100%;
        text-align: left;
        margin-bottom: 20px;
        font-size: 12px;
    }

    ul.list-side li {
        text-align: center;
    }

    ul.list-pagination {
        float: none;
        display: table;
        margin: 0 auto;
        margin-top: 20px;
    }

    .prod-item {
        margin-top: 20px;
        height: 400px;
        text-align: center;
    }

    .prod-item h1 {
        height: 40px;
        overflow: hidden;
    }

    footer h1 {}

    .prod-item .prod-desc .btn-cart {
        font-size: 12px;
    }

    .prod-item .prod-align {
        height: 185px;
    }

    .prod-item .prod-img img {
        max-height: 185px;
    }


}

@media only screen and (max-width: 991px) {
    ul.list-header-bar li {
        padding: 0 7px;
        border-right: 0;
    }

    .user-box {
        display: table;
        margin: 0 auto;
        float: none;
        top: -7px;
        position: relative;
    }

    .user-box .desc {
        line-height: 1.2;
    }

    ul.list-line-footer li {
        width: 100%;
    }

    .prod-bt-mais {
        display: none;
        visibility: hidden;
    }

    .footer-contact .icon2 {
        display: none;
    }

    ul.list-bread {
        margin-bottom: 30px;
        display: block;
        overflow: hidden;
    }

    .prod-info .btn {
        line-height: 1;
    }

    #nav-fixed {
        display: none;
        visibility: hidden;
    }

    .cart-frete {
        padding-bottom: 10px;
        padding-top: 10px;
        overflow: hidden;
    }

    .desc2-whats {
        margin-top: 30px;
    }

    .footer-extras-content {
        margin-bottom: 10px;
        overflow: hidden;
    }

    .prod-item-combo-total {
        text-align: center;
        margin-top: 30px;
    }
}

@media (min-width: 769px) and (max-width: 990px) {
    .prod-info .btn {
        margin-top: 20px;
    }

    .footer-contact {
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .footer-highlights .desc {
        width: 100%;
        margin: 0;
    }

    .footer-highlights .form {
        margin-top: 20px;
    }
}


/* POPUP

.fancybox-opened .fancybox-skin {
  background: transparent !important;
}
*/

.bd {
    width: 1200px;
    background: #FFF;
    padding: 30px 40px 0 30px;
    overflow: hidden;
}

.bd-title small {
    display: block;
    margin: 0;
    font-size: 21px;
    letter-spacing: 0;
    color: #999;
    font-weight: 300;
}

@media (min-width: 0px) and (max-width: 1250px) {
    .bd {
        width: 100%;
        overflow: hidden;
    }
}

.bd-entrada {
    width: 400px;
    min-height: 410px;
    height: auto;
    padding: 20px;
    margin: 0 auto;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.bd-entrada .bd-form {
    margin: 0 auto;
    text-align: center;
}

.bd-entrada .bd-title {
    display: block;
    margin: 20px 0;
}

.bd-entrada .bd-title h1 {
    font-size: 25px;
    color: #000000;
    font-weight: 400;
    margin: 0;
    letter-spacing: 0px;
    line-height: 1;
}

.bd-entrada .bd-title h1 strong {
    font-weight: 900;
}

.bd-entrada .bd-title small {
    display: block;
    font-size: 13px;
    font-weight: 300;
    color: #aaa;
}

.bd-entrada .bd-email {
    display: block;
    margin-top: 10px;
    text-align: center;
    font-size: 12px;
    line-height: 2;
}

.bd-entrada .bd-email form {
    margin: 0 0 5px;
}

.bd-entrada .bd-email input {
    padding: 6px 10px;
    display: block;
    font-size: 14px;
    width: 100%;
    margin-bottom: 5px;
    border: 1px solid #ccc;
}

.bd-entrada .bd-email small {
    font-size: 12px;
    line-height: 1.4;
    color: #777;
}

.bd-entrada .bd-btn {
    display: block;
    margin-top: 20px;
}

.bd-entrada .bd-btn .btn {
    padding: 6px 10px;
    border-radius: 3px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    /*color: #fff;*/
    display: block;
    -moz-transition: 0.2s;
    -webkit-transition: 0.2s;
    transition: 0.2s;
}

.bd-entrada .bd-btn .btn:hover {
    background: #df4537;
    border-color: #df4537;
}

.bd-entrada .bd-btn .link-close {
    font-size: 14px;
    font-weight: 400;
    text-decoration: underline;
    color: #fff;
    display: block;
    background: transparent !important;
    -moz-transition: 0.2s;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    margin-top: 10px;
}

.bd-entrada .bd-btn .link-close:hover {
    color: #ccc;
}

.btn-gray,
.btn-gray:link,
.btn-gray:active,
.btn-gray:visited {
    border-radius: 3px;
    margin-top: 15px;
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
    background: #dfdfdf;
    color: #545454;
    border: 0;
    padding: 8px 18px;
    -moz-transition: 0.2s;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    display: inline-block;
    font-size: 12px;
}

@media only screen and (max-width: 768px) {
    .bd-entrada {
        display: block;
        width: auto;
        height: auto;
        margin: 5%;
        padding: 20px 20px;
    }

    .bd-entrada .bd-form {
        width: 100%;
    }
}


/* HOME PRODUCTS */

.home-products {
    padding: 50px 0;
}

.item-box {
    height: 300px;
    padding: 0 10px;
}

.item-txt {
    display: block;
    margin-bottom: 30px;
}

.item-txt h1 {
    font-size: 14px;
    margin: 0;
    line-height: 1.4;
}

.item-txt h1 a {
    color: #444;
}

.item-txt h1 a:hover {
    color: #de3753;
}

.item-img {
    display: block;
    overflow: hidden;
    -moz-transition: 0.2s;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    height: 200px;
}

.item-img:hover {
    opacity: 0.5;
}

.item-img img {
    max-height: 180px;
    margin: auto;
    display: block;
}

.price-de {
    color: #999;
    display: inline-block;
}

.price-de span {
    text-decoration: line-through;
}

.price-por {
    color: #de3753;
    display: inline-block;
}

.vlr-total {
    color: #383f62;
    font-size: 18px;
}

.vlr-total strong {
    font-weight: 700
}

.vlr-total span {
    display: block;
    font-size: 14px;
    color: #777;
}

.section-container {
    padding-top: 0;
    padding-bottom: 0;
}

.section-container-blog {
    padding-top: 50px;
    padding-bottom: 0;
}

ul.list-side-links {
    margin-bottom: 30px;
    display: block;
}

ul.list-side-links li a strong {
    color: #999;
    margin-top: 15px;
    display: block;
}

ul.list-side-links li a strong:hover {
    color: #ff8233;
}

.cat-title {
    margin-top: 50px;
    display: block;
}

.img-brand-menu {
    height: 50px;
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
    text-align: center;
    margin: 3px auto;
}


/* SIDE CAT */

.side-box .search-box {
    border: 0
}

.side-cat-title {
    font-weight: bold;
    border-bottom: 1px solid #1e1e1e;
    color: #1e1e1e;
    margin-top: -10px;
    padding-bottom: 5px;
    margin-bottom: 23px;
    font-size: 16px;
    text-transform: uppercase;
}

.side-cat {
    padding: 30px;
    background: #e9e9e9;
}

.side-cat h1 {
    font-size: 14px;
    font-weight: 700;
    margin: 0 0 10px;
}

ul.side-cat-list {}

ul.side-cat-list li {
    display: block;
    margin-bottom: 0;
    line-height: 1.6;
}

ul.side-cat-list li a {
    text-transform: uppercase;
}

ul.side-cat-list li a.link-all {
    color: #000;
}

ul.side-cat-list li a.link-all:hover {
    color: #d99f29
}

ul.side-cat-list-color li {
    height: 28px;
    width: 28px;
    float: left;
    margin: 0 8px 8px 0;
    background: #dfdfdf;
    position: relative;
}

ul.side-cat-list-color li a {
    padding: 0 7px;
    line-height: 2;
    position: relative;
}

ul.side-cat-list-color-livre li {
    height: 28px;
    float: left;
    margin: 0 8px 8px 0;
    background: #dfdfdf;
    position: relative;
}

ul.side-cat-list-color-livre li a.cor {
    padding: 0 7px;
    line-height: 2;
    /*position: relative;*/
    display: inline-block;
    background-color: white;
    border: 1px solid #e0e0e0;
}

.btn-x {
    float: right;
}

@media only screen and (max-width: 768px) {
    .btn-x {
        float: left;
        margin-right: 5px;
    }

    ul.side-cat-list-color li {
        display: inline-block;
    }

    ul.side-cat-list-color li a {
        padding: 3px 5px;
        border: 1px solid transparent;
        color: #777;
    }

    ul.side-cat-list-color li a:hover {
        border: 1px solid #111;
        color: #111;
    }

    ul.side-cat-list-color-livre li {
        display: inline-block;
    }

    ul.side-cat-list-color-livre li a {
        padding: 3px 5px;
        border: 1px solid transparent;
        color: #777;
    }

    ul.side-cat-list-color-livre li a:hover {
        border: 1px solid #111;
        color: #111;
    }

    .side-cat-title {
        display: none;
    }
}

.side-cat-content {
    border: 1px solid #efefef;
    width: 100%;
    float: left;
    background: #fff;
    padding: 30px;
}

.side-cat-content .side-title {
    margin: 0 0 10px;
    color: #aaa;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
}

.color-select {
    /*position: absolute;
    z-index: 99;*/
    background-color: #F00;
    padding: 0 5px;
    position: absolute;
}

.color-select2 {
    position: absolute;
    width: 28px;
    height: 28px;
    top: -5px;
    left: 0;
}

@media (min-width: 576px) {}

@media (min-width: 768px) {}

@media (min-width: 992px) {
    .footer-wrap {
        text-align: left;
        justify-content: flex-start;
        flex-direction: row;
    }

    .footer-logo,
    .footer-desc {
        margin-bottom: 0;
    }

    .footer-desc {
        margin: 0 20px;
        width: 100%;
        max-width: 600px;
    }
}

@media (min-width: 1200px) {}


/* Main Slider */

.owl-carouselind .owl-controls .owl-buttons div {
    color: #333;
    display: inline-block;
    zoom: 1;
    *display: inline;
    /*IE7 life-saver */
    width: 40px;
    height: 40px;
    line-height: 35px;
    text-align: center;
    margin: 5px 0;
    font-size: 14px;
    background: #fff;
    -moz-transition: 0.2s;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    box-shadow: 0 15px 15px rgba(0, 0, 0, 0.25);
    opacity: 1;
}

.owl-carouselind .owl-controls.clickable .owl-buttons div:hover {
    color: #fff;
    background: #ff8233;
    text-decoration: none;
}

.owl-carouselind .owl-controls .owl-buttons div {
    position: absolute;
}

.owl-carouselind .owl-controls .owl-buttons .owl-prev {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
    left: 0%;
    top: 40%;
}

.owl-carouselind .owl-controls .owl-buttons .owl-next {
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    right: 0%;
    top: 40%;
}

.owl-carouselind .owl-controls .owl-buttons .owl-next,
.owl-carouselind .owl-controls .owl-buttons .owl-prev {
    top: 50%;
    transform: translateY(-50%);
}


/* Categorias Destaque */

.owl-categorias-destaques .owl-controls .owl-buttons div {
    color: #333;
    display: inline-block;
    zoom: 1;
    *display: inline;
    /*IE7 life-saver */
    width: 40px;
    height: 40px;
    line-height: 35px;
    text-align: center;
    margin: 5px 0;
    font-size: 14px;
    background: #fff;
    -moz-transition: 0.2s;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    box-shadow: 0 15px 15px rgba(0, 0, 0, 0.25);
    opacity: 1;
    border-radius: 5px;
}

.owl-categorias-destaques .owl-controls.clickable .owl-buttons div:hover {
    color: #fff;
    background: #ff8233;
    text-decoration: none;
}

.owl-categorias-destaques .owl-controls .owl-buttons div {
    position: absolute;
}

.owl-categorias-destaques .owl-controls .owl-buttons .owl-prev {
    left: 0%;
    top: 30%;
}

.owl-categorias-destaques .owl-controls .owl-buttons .owl-next {
    right: 0%;
    top: 30%;
}

.owl-categorias-destaques .item {}


/* Owl 4 */

.owl-carouselind-4 .owl-controls .owl-buttons div {
    color: #333;
    display: inline-block;
    zoom: 1;
    *display: inline;
    /*IE7 life-saver */
    width: 40px;
    height: 40px;
    line-height: 35px;
    text-align: center;
    margin: 5px 0;
    font-size: 14px;
    background: #fff;
    -moz-transition: 0.2s;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    box-shadow: 0 15px 15px rgba(0, 0, 0, 0.25);
    border-radius: 5px;
    opacity: 1;
}

.owl-carouselind-4 .owl-controls.clickable .owl-buttons div:hover {
    color: #fff;
    background: #ff8233;
    text-decoration: none;
}

.owl-carouselind-4 .owl-controls .owl-buttons div {
    position: absolute;
}

.owl-carouselind-4 .owl-controls .owl-buttons .owl-prev {
    left: 0;
    top: 30%;
}

.owl-carouselind-4 .owl-controls .owl-buttons .owl-next {
    right: 0;
    top: 30%;
}

.owl-carouselind-4 .item {}

@media only screen and (max-width: 992px) {
    .owl-carouselind-4 .owl-controls .owl-buttons div {
        color: #000 !important;
        text-shadow: 0 3px 3px rgba(0, 0, 0, 0.3);
    }

    .owl-carouselind-4 .owl-controls .owl-buttons .owl-prev {
        left: 0%;
        top: 42%;
    }

    .owl-carouselind-4 .owl-controls .owl-buttons .owl-next {
        right: 0%;
        top: 42%;
    }
}


/* Marcas */
.owl-marcas .owl-controls .owl-buttons div {
    color: #000;
    display: inline-block;
    text-align: center;
    font-size: 26px;
    opacity: 1;
    border-radius: 0;
    font-style: normal;
    background: none;
    padding: 0;
}

.owl-marcas .owl-controls.clickable .owl-buttons div:hover {
    color: #e7e7e7;
    text-decoration: none;
}

.owl-marcas .owl-controls .owl-buttons div {
    position: absolute;
}

.owl-marcas .owl-controls .owl-buttons .owl-prev {
    left: 0%;
    top: 20px;
}

.owl-marcas .owl-controls .owl-buttons .owl-next {
    right: 0%;
    top: 20px;
}



/*
OWL
Marcas
*/
.owl-marcas .owl-nav {
    position: absolute;
    top: 35%;
    width: 100%;
    left: 0;
}

.owl-marcas .owl-nav .owl-prev {
    position: absolute;
    left: 0;
    font-size: 25px !important;
}

.owl-marcas .owl-nav .owl-next {
    position: absolute;
    right: 0;
    font-size: 25px !important;
}


.ambientes {
    padding: 50px 0 0 0;
    display: block;
}

/*
OWL
Slide
*/
.owl-slide .owl-dots {
    position: absolute;
    width: 100%;
    bottom: 15px;
}

.owl-slide .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background-color: #000000;
}

.owl-slide .owl-dots .owl-dot span {
    width: 9px;
    height: 9px;
    margin: 5px 3px;
    background: #aaaaaa;
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity .2s ease;
    border-radius: 30px;
}

/*
OWL
Ambientes
*/
.owl-ambientes .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background-color: #000000;
}

.owl-ambientes .owl-dots .owl-dot span {
    width: 12px;
    height: 12px;
    margin: 5px 7px;
    border: 1px solid #707070;
    background: #fff;
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity .2s ease;
    border-radius: 30px;
}

/*
OWL
Marcas
*/
.owl-produtos .owl-nav {
    position: absolute;
    width: 100%;
    top: 25%;
}

.owl-produtos .owl-nav .owl-prev {
    position: absolute;
    left: 0;
    font-size: 52px !important;
    color: #DFDFDF !important;
}

.owl-produtos .owl-nav .owl-next {
    position: absolute;
    right: 0;
    font-size: 52px !important;
    color: #DFDFDF !important;
}

.owl-produtos .owl-nav .owl-prev:hover,
.owl-produtos .owl-nav .owl-next:hover {
    background: transparent !important;
    color: #000 !important;
}

/*
OWL
Slide
*/
.owl-slide .owl-nav {
    position: absolute;
    width: 100%;
    top: 40%;
}

.owl-slide .owl-nav .owl-prev {
    position: absolute;
    left: 10%;
    font-size: 42px !important;
    color: #fff !important;
    text-shadow: 2px 3px 3px rgba(0, 0, 0, 0.55);
}

.owl-slide .owl-nav .owl-next {
    position: absolute;
    right: 10%;
    font-size: 42px !important;
    color: #fff !important;
    text-shadow: 2px 3px 3px rgba(0, 0, 0, 0.55);
}

.owl-slide .owl-nav .owl-prev:hover,
.owl-slide .owl-nav .owl-next:hover {
    background: transparent !important;
    color: #000 !important;
}

.instafeed {
    margin: 0em 0 0 0;
}

.instafeed h3 {
    text-align: center;
    background-color: #ff8233;
    padding: 2em 0;
    text-transform: uppercase;
    color: #fff;
    font-size: 18px;
    letter-spacing: 3px;
}

.instafeed h3 a:hover {
    color: white;
}



@media only screen and (max-width:768px) {
    .owl-slide .owl-nav {
        display: none;
    }
}

/*
UL
Social
*/
ul.social {
    margin: 0;
    padding: 0;
    list-style: none;
    display: inline;
}

ul.social li {
    display: inline-block;
}

ul.social li i {
    font-size: 16px;
    margin-left: .1em;
}

h3.social {
    font-size: 18px;
    font-weight: bold;
}

.d-inline {
    display: inline;
}

.d-inline-block {
    display: inline-block;
}

.news_conteudo label {
    font-size: 18px;
    font-weight: bold;
    margin-right: .5em;
}

@media only screen and (max-width:768px) {
    .newsletter div.social {
        text-align: center;
    }

    ul.social {
        margin: 2em 0;
        display: block;
        border-bottom: 1px solid #e7e7e7;
        padding-bottom: 2em;
    }

    .news_conteudo label {
        display: block;
        padding-bottom: 1em;
    }

    .newsletter .d-inline {
        display: block;
    }
}

/**/
.cart-frete {
    border-right: 1px solid #e7e7e7;
}


@media only screen and (max-width:768px) {
    .mb-mobile {
        margin-bottom: 1em;
    }
}

.owl-fastlojas .owl-nav .owl-prev {
    color: #111 !important;
    zoom: 1 !important;
    display: inline !important;
    border-radius: 50px !important;
    width: 30px;
    height: 30px;
    line-height: 1;
    text-align: center;
    margin: 5px 0;
    padding: 9px 0;
    font-size: 20px !important;
    background: #fff !important;
    border: 1px solid #f8f8f8;
    opacity: 1.0;
    -moz-transition: 0.2s;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    -webkit-box-shadow: 0px 14px 25px -5px rgba(0, 0, 0, 0.4) !important;
    -moz-box-shadow: 0px 14px 25px -5px rgba(0, 0, 0, 0.4) !important;
    box-shadow: 0px 14px 25px -5px rgba(0, 0, 0, 0.4) !important;
    left: 15px !important;
}

.owl-fastlojas .owl-nav .owl-next {
    color: #111 !important;
    zoom: 1 !important;
    display: inline !important;
    border-radius: 50px !important;
    width: 30px;
    height: 30px;
    line-height: 1;
    text-align: center;
    margin: 5px 0;
    padding: 9px 0;
    font-size: 20px !important;
    background: #fff !important;
    border: 1px solid #f8f8f8;
    opacity: 1.0;
    -moz-transition: 0.2s;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    -webkit-box-shadow: 0px 14px 25px -5px rgba(0, 0, 0, 0.4) !important;
    -moz-box-shadow: 0px 14px 25px -5px rgba(0, 0, 0, 0.4) !important;
    box-shadow: 0px 14px 25px -5px rgba(0, 0, 0, 0.4) !important;
    right: 15px !important;
}

.owl-fastlojas .owl-nav .owl-prev:hover,
.owl-fastlojas .owl-nav .owl-next:hover {
    color: #fff !important;
    background-color: #50d1bd !important;
}

@-webkit-keyframes pulse {
    0% {}

    70% {
        box-shadow: 0 0 0 5px rgba(171, 35, 40, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(171, 35, 40, 0);
    }
}


.bt-whatsapp-api {
    position: fixed;
    bottom: 0px;
    left: 0px;
    z-index: 99999;
}

.bt-whatsapp-api:hover .ballon-whatsapp-api {
    transition: all .5s ease;
    opacity: 1
}

.icon-whatsapp {
    background: #448a21;
    font-size: 3em;
    color: #fff;
    width: 50px;
    height: 50px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.icon-whatsapp .fa {
    margin-top: 18%
}

.icon-whatsapp:hover {
    transition: all .5s ease;
    color: #fff;
    background: #448a21;
    border-radius: 10px;
}

.ballon-whatsapp-api {
    display: none;
    transition: all .5s ease;
    opacity: 1;
    position: fixed;
    left: 90px;
    top: 92%;
    background: #fff;
    z-index: 999999;
    padding: .5em;
    border: 1px solid #e8e8e8;
    border-radius: 100px 100px 10px;
    color: #565656;
    -webkit-box-shadow: 1px 1px 133px -30px rgba(0, 0, 0, .75);
    -moz-box-shadow: 1px 1px 133px -30px rgba(0, 0, 0, .75);
    box-shadow: 1px 1px 133px -30px rgba(0, 0, 0, .75)
}

.btncor,
.btncor:link,
.btncor:active,
.btncor:visited {
    border-radius: 3px;
    text-align: center;
    font-weight: 700;
    /*text-transform: uppercase;*/
    border: 0;
    padding: 10px 20px;
    -moz-transition: 0.2s;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    display: block;
}

.btncor.verde {
    background: #00b727;
    color: #fff;
}

.btn2:hover.verde {
    background: #176f2a;
    color: #fff;
}

.btncor.azul {
    background: #1c83bf;
    color: #fff;
}

.btn2:hover.azul {
    background: #0f4c6f;
    color: #fff;
}

.selopromo {
    position: absolute;
    right: -15px;
    top: -15px;
    z-index: 99;
    max-width: 80px;
}

.selopromoin {
    position: absolute;
    z-index: 99;
    right: 55px;
}

.selopromo img,
.selopromoin img {
    width: 80px;

}

.userBoxDireita {
    padding-top: 10px;
}

.btn-envelope {
    background-color: transparent !important;
}

.fa.fa-envelope:hover {
    color: #ff8233;
}

.home-ribbon {
    text-align: center;
    padding: 1.5em 0;
    background-color: #fff;
    position: relative;
    z-index: 2;
}

.banner.mid {
    position: relative;
}

.banner.mid:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 50%;
    bottom: 0;
    left: 0;
    background-color: #f9f9f9;
    z-index: -1;
}

.bg-gray {
    background-color: #f9f9f9;
}

.banners.after-slide {
    padding-top: 10em;
    margin-top: -5em;
    position: relative;
}

.after-slide:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background-color: #f9f9f9;
}

.banners.footer {
    position: relative;
}

.banners.footer:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background-color: #fafafa;
}

.cart-lista-prod {
    max-height: 367px;
    overflow-y: auto;
    overflow-x: hidden;
}









/* novo cadastro */

.entry h3 {
    margin-top: 40px;
}

.entry .form-inline label {
    width: 30%;
    display: inline-block;
    font-weight: bold;
}

.entry .form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
    float: inherit !important;
    width: 65%;
}

.entry .form-inline input[type=checkbox],
.entry .form-inline input[type=radio] {
    display: inline-block;
    width: auto;
    float: inherit !important;
}

.entry .titendereco {
    display: inline-block;
    width: 30%;
}

.entry .titigual {
    display: inline-block;
}

.uppercase {
    text-transform: uppercase;
}

@media only screen and (max-width: 768px) {

    .entry .form-inline label {
        width: auto;
        display: block;
        font-weight: bold;
    }

    .entry .form-inline .form-control {
        display: block;
        width: 100%;
        vertical-align: middle;
        float: inherit !important;
    }

    .entry .titendereco {
        display: block;
        width: 100%;
    }

    .entry .titigual {
        display: block;
        margin-top: 15px;
    }

}

.steps {
    padding: 20px 0;
    background: #000000;
    color: #fff;
    overflow: hidden;
}

ul.list-steps {
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: center;
}

ul.list-steps li {
    padding: 0 30px;
    font-size: 18px;
    text-align: center;
}

ul.list-steps li i.fa-inverse {
    color: #ffffff
}

ul.list-steps li.active {
    color: #ff8233;
}

@media only screen and (max-width: 768px) {
    ul.list-steps {
        justify-content: space-evenly;
    }

    ul.list-steps li {
        padding: 10px 0;
    }

    ul.list-steps li span.txt {
        display: none;
    }
}

.caixa-carrinho {
    background: #f4f4f4;
    border-top: 1px solid rgba(0, 0, 0, .1);
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    margin-bottom: 40px;
}

.header-pgto .aviso-seguro {
    font-size: 11px;
    margin-bottom: 15px;
}

.header-pgto .aviso-seguro img {
    margin-top: -15px;
}

.header-pgto .aviso-seguro span {
    display: inline-block;
}

.body-content.textos ul {
    list-style-type: disc;
    list-style-position: inside;
}

.body-content.textos ol {
    list-style-type: decimal;
    list-style-position: inside;
}

.body-content.textos ul ul,
.body-content.textos ol ul {
    list-style-type: circle;
    list-style-position: inside;
    margin-left: 15px;
}

.body-content.textos ol ol,
.body-content.textos ul ol {
    list-style-type: lower-latin;
    list-style-position: inside;
    margin-left: 15px;
}


.caixahover:hover>.prod-item {
    /*border: 1px solid #8a8a8a;*/
    margin: -15px -15px 30px -15px;
    padding: 15px;
    border-radius: 10px;
    height: 525px;
    background: #f6f6f6;
}

.caixahover:hover>.prod-item .prod-desc .btn-cart {
    width: calc(100% - 30px);
    bottom: 19px;
    transition: none;
}


.pedido_item_aberto {
    background-color: #ff8233;
    color: #fff;
    text-indent: 2em;
    margin-bottom: 1em;
    padding: 15px 0;
    width: 100%;
    display: block;
    text-transform: uppercase;
    font-size: 14px;
}


.caixa-status {
    display: flex;
    font-family: arial;
    font-size: 15px;
    font-weight: bold;
    height: 60px;
    margin-bottom: 50px;
}

.caixa-status span {
    font-size: x-small;
    display: block;
}

.caixa-status .text-on {
    height: 60px;
    padding: 0 10px;
    background: #188918;
    color: #fff;
    width: 100%;
    text-align: center;
    line-height: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.caixa-status .text-off {
    height: 60px;
    padding: 0 10px;
    background: #d0d0d0;
    color: #878787;
    width: 100%;
    text-align: center;
    line-height: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.caixa-status .text-cancel {
    height: 60px;
    padding: 0 10px;
    background: #d80000;
    color: #fff;
    width: 100%;
    text-align: center;
    line-height: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.header-pgto .infoseg {
    text-align: right;
}

@media only screen and (max-width: 768px) {
    .header-pgto .infoseg strong {
        display: block;
    }

    ul.tabs li {
        width: 100%;
    }

    .combo-plus {
        left: calc(50% - 12px);
        top: 0;
    }

    .prod-item-combo {
        padding: 50px 20px;
    }
}

.megamenu .megamenu-content-list li a:hover {
    color: #003787;
}

.btn-wrapper {
    bottom: 50px;
    position: absolute;
    width: 100%;
}

.playlogo {
    position: absolute;
    width: inherit !important;
    display: inherit !important;
    top: calc(50% - 53px);
    left: calc(50% - 75px);
}

.playlogomini {
    padding: 0 !important;
    display: inherit !important;
    border: none !important;
    width: 32px !important;
    position: absolute;
    left: calc(50% - 16px) !important;
    top: 33px !important;
}

.caixaimg ul.item-badges-bottom {
    bottom: inherit;
}

.prod-item-combo .dadospreco {
    height: 83px;
    overflow: hidden;
}

.header-menu-mobile {
    background: #262626;
    border-bottom: 2px solid #ff8233;
}