/* BASIC */

.mt-2, .my-2 {
    margin-top: .5rem!important;
}

.mb-2, .my-2 {
    margin-bottom: .5rem!important;
}

.mt-3, .my-3 {
    margin-top: 1rem!important;
}

.mb-3, .my-3 {
    margin-bottom: 1rem!important;
}

.mt-4, .my-4 {
    margin-top: 1.5rem!important;
}

.mb-4, .my-4 {
    margin-bottom: 1.5rem!important;
}

body {
    font-family: "Open Sans", sans-serif;
}

.container {
    max-width: 1280px;
    width: 100%;
    display: block;
    margin: 0 auto;
}

/* HEADER */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    background: #fff;
    transition: box-shadow 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.header.scroll {
    transition: box-shadow 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-box-shadow: 0px 3px 25px -4px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0px 3px 25px -4px rgba(0, 0, 0, 0.75);
    box-shadow: 0px 3px 25px -4px rgba(0, 0, 0, 0.75);
}

.header__top {
    padding: 0;
}

.header__top .container {
    padding: 5px 0;
}

.header__logo {
    height: 80px;
    transition: 200ms ease-in-out all;
    padding: 0;
}

.header.scroll .header__logo {
    height: 50px;
    transition: 200ms ease-in-out all;
}

.header__logo h1,
.header__logo a,
.header__logo img {
    height: 100%;
}

.header__logo img {
    width: 100%;
    object-fit: contain;
}

.header__search .search__input {
    display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6, BB7 */
    display: -ms-flexbox; /* TWEENER - IE 10 */
    display: -webkit-flex;
    display: flex;
    align-items: stretch;
    border: 1px solid #c3c3c3;
    border-radius: 3px;
}

.search__input #search {
    height: 37px;
    padding-left: 10px;
    border: 0;
}

.search__input button {
    background: #fff;
    border: 0;
    border-left: 1px solid #c3c3c3;
}

.search__input button .fa-search,
.fa-user-circle {
    color: #696969;
}

.user__name {
    font-size: 0.8em;
}

.account__buttons {
    font-size: 0.8em;
    display: flex;
    font-weight: bold;
}

.account__user {
    display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6, BB7 */
    display: -ms-flexbox; /* TWEENER - IE 10 */
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.header__cart {
    position: relative;
}

.minicart__content {
    position: absolute;
    top: 35px;
    width: 320px;
    background: #fff;
    right: 10px;
    border: 1px solid;
    border-radius: 2px;
    padding: 10px;
    font-size: 13px;
    height: 0;
    opacity: 0;
    transition: all ease 300ms;
    z-index: -1;
    overflow-y: scroll;
}

.minicart__content.minicart__content-show {
    height: 250px;
    opacity: 1;
    transition: all ease 300ms;
    z-index: 1;
}

.minicart__content h2 {
    font-weight: bold;
    color: #666;
    margin-bottom: 15px;
}

.minicart__item .minicart__item-title {
    display: inline-block;
    width: calc(100% - 50px);
    vertical-align: top;
    font-size: 12px;
}

.minicart__item {
    margin-bottom: 10px;
}

.minicart__item img {
    width: 40px;
    height: 40px;
    display: inline-block;
    vertical-align: top;
    object-fit: cover;
}

.minicar__footer {
    text-align: center;
    width: 100%;
}

.minicart__value {
    color: #4ba02d;
    font-weight: bold;
    margin: 10px 0;
    font-size: 15px;
}

.minicart__btn {
    background: #67b64b;
    width: 80%;
    display: block;
    margin: 0 auto 20px;
    font-size: 15px;
    padding: 10px 0;
    color: #fff;
    font-weight: bold;
}

.minicart__content::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 9px solid #3e4095;
    position: absolute;
    top: -9px;
    right: 10px;
}

.minicar__footer > strong {
    display: block;
    margin-top: 10px;
}

.cart__link {
    border: 1px solid #c3c3c3;
    display: block;
    text-align: center;
    padding: 10px 0;
    border-radius: 3px;
    cursor: pointer;
}

#control-nav {
    display: none;
}

.menu__list {
    display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6, BB7 */
    display: -ms-flexbox; /* TWEENER - IE 10 */
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    position: relative;
}

.menu__item a,
.menu__item.item__all .menu__sub a {
    padding: 15px;
    box-sizing: border-box;
    display: block;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
}

.menu__item.item__all > div {
    color: #3e4095;
    font-weight: bold;
    padding: 15px;
    box-sizing: border-box;
    display: block;
    font-size: 14px;
}

.itens__mobile {
    display: none;
}

.header__search {
    display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6, BB7 */
    display: -ms-flexbox; /* TWEENER - IE 10 */
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header.scroll .header__bottom {
    display: none;
}

.menu__active {
    width: 15%;
    display: none;
    align-items: center;
    justify-content: space-around;
    border: 1px solid #c3c3c3;
    color: #696969;
    box-sizing: border-box;
    padding: 3px;
    border-radius: 2px;
    font-size: 14px;
    height: 39px;
    cursor: pointer;
}

.header.scroll .menu__active {
    display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6, BB7 */
    display: -ms-flexbox; /* TWEENER - IE 10 */
    display: -webkit-flex;
    display: flex;
}

.header__search form {
    width: 100%;
}

.header.scroll .header__search form {
    width: 82%;
}

.header.scroll .header__bottom.active {
    display: block;
}

.menu__sub {
    display: none;
    position: absolute;
    top: 44px;
    left: 0;
    width: 100%;
}

.header__contact {
    font-size: 12px;
    box-sizing: border-box;
    padding: 5px calc((100% - 1280px) / 2);
    text-align: right;
    display: flex;
    justify-content: space-between;
}

.header__contact div span {
    display: inline-block;
    vertical-align: middle;
    margin: 0 10px;
}

.header__contact div span i {
    margin-right: 5px;
}

.header__contact div span a {
    font-size: 12px;
}

.contact__div > span > a,
.contact__div > span > span {
    display: inline-block;
    vertical-align: top;
}

.contact__div a {
    margin: 0 5px;
    font-size: 14px;
}

.header .produto__adicionado {
    position: fixed;
    bottom: -50px;
    right: 0;
    padding-top: 15px;
    width: 100%;
    height: 50px;
    text-align: center;
    background: #28a745;
    z-index: 99999;
    transition: all 1s ease;
}

.header .produto__carrinho {
    position: fixed;
    bottom: -50px;
    right: 0;
    padding: 15px 0 0 15px;
    width: 100%;
    height: 50px;
    text-align: center;
    background: #28a745;
    z-index: 9999;
    transition: all 1s ease;
}

.header .produto__carrinho p {
    float: left;
    width: 50%;
}

.header .produto__carrinho .carrinho__popup__container {
    float: left;
    width: 50%;
}

.header .produto__carrinho .carrinho__popup__container a {
    padding: 5px 10px;
}

/* FOOTER */
.pagamento__imgs img,
.seguranca__imgs img {
    display: inline-block;
    vertical-align: top;
}

.pagamento__imgs img {
    max-height: 75px;
}

.seguranca__imgs img {
    max-height: 35px;
    margin-bottom: 3px;
    margin-bottom: 5px;
}

.footer {
    margin-top: 40px;
    color: #252525;
    border-top: 2px solid #00023b;
}

.footer__info {
    font-size: 14px;
    padding: 25px 0;
}

.info__pagamento .pagamento__item {
    display: inline-block;
    vertical-align: top;
    margin-right: 20px;
    max-width: 350px;
    min-width: 250px;
}

.footer__info h4 {
    margin-bottom: 15px;
    font-weight: bold;
}

.atendimento__item {
    margin: 10px 0;
    line-height: 1.3;
}

.institucional__links a {
    padding-bottom: 10px;
    display: block;
}

.footer__copyright {
    border-top: 1px solid #e1e1e1;
    text-align: center;
    padding: 10px 0;
    font-size: 13px;
    display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6, BB7 */
    display: -ms-flexbox; /* TWEENER - IE 10 */
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px calc((100% - 1280px) / 2);
}

.footer__copyright.last {
    margin-top: 0;
}

.footer__copyright.last p {
    width: 100%;
    text-align: center;
}

.footer__copyright.first {
    width: 100%;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    line-height: 1.5;
}

.img__ecommercenet {
    height: 30px;
    margin-left: 20px;
}

.img__ecommercenet img {
    height: 100%;
}

/* BLOCK PRODUTOS */
.produtos__block {
    margin: 40px 0;
}

.block__title {
    text-align: center;
    margin-top: 60px;
    font-size: 25px;
    font-weight: bold;
}

.block__desc {
    text-align: center;
    margin-bottom: 30px;
    margin-top: 10px;
    font-size: 14px;
    margin-bottom: 25px;
}

.block__item-img {
    height: 180px;
}

.block__item-img.modo_fotografia {
    height: 290px;
}

.block__item-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product__name {
    font-weight: bold;
    font-size: 16px;
    display: block;
    margin: 10px 0;
    min-height: 30px;
}

.block__lista .product__name {
    margin-bottom: 0;
    min-height: 35px;
}

.add_cart {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.add_cart .block__item-button {
    width: 75%;
    margin-top: 0;
}

.add_cart .qtd_change {
    width: 20%;
}

.block__lista .product__price-old {
    margin: 15px 0 5px;
}

.product__price-old,
.produto__price-old,
.produto__code {
    display: block;
    font-size: 12px;
    margin-bottom: 10px;
}

.product__price-new {
    display: block;
}

.produto__code {
    border-bottom: 1px solid #e1e1e1;
    width: 100%;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.product__price-new .payment__value {
    font-weight: bold;
    margin-right: 5px;
    font-size: 25px;
}

.product__price-new .payment__type {
    font-size: 12px;
}

.block__item-button {
    color: #fff;
    width: 100%;
    display: block;
    text-align: center;
    padding: 15px 0;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: bold;
    margin-top: 10px;
    border: 0;
    cursor: pointer;
}

.line-price {
    display: inline;
    text-decoration: line-through;
}

.block__item {
    margin-bottom: 50px;
}

.link__categoria {
    display: block;
    margin: 0 auto;
    width: 100%;
}

.link__categoria-link {
    background-color: #00023b;
    padding: 15px 20px;
    color: #fff;
    display: block;
    font-weight: bold;
    text-transform: uppercase;
    width: 25%;
    text-align: center;
    margin: 25px auto 0;
}

.produto__estoque {
    text-align: center;
    font-size: 14px;
    margin: 20px 0;
    color: red;
}

.link__parcelas {
    font-size: 12px;
    display: block;
    cursor: pointer;
    margin-top: 10px;
    font-weight: bold;
}

.block__item-content {
    text-align: center;
    min-height: 168px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pedido__orcamento {
    border: 1px solid #e1e1e1;
    padding: 15px;
    display: flex;
    flex-direction: column;
    margin: 10px 0;
}

.pedido__orcamento input[type="text"] {
    border: 1px solid #e1e1e1;
    padding: 10px;
    background: #fff;
    width: 80%;
    margin: 10px auto;
}

.pedido__orcamento-title {
    text-align: center;
    font-weight: bold;
    font-size: 16px;
}

.pedido__orcamento-subtitle {
    text-align: center;
    margin: 10px 0 5px;
    font-size: 14px;
}

.pedido__orcamento input[type="submit"] {
    margin: 0 auto;
    padding: 10px;
    width: 80%;
}

/* CAROUSEL PRODUTOS */
.carousel_box_item {
    padding: 0 30px;
}

.produtos__carousel_box,
.produtos__relacionados_box {
    position: relative;
}

.produtos__carousel_box.owl-carousel .owl-item img,
.produtos__relacionados_box.owl-carousel .owl-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.produtos__carousel_box .owl-prev,
.produtos__relacionados_box .owl-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -10px;
}

.produtos__carousel_box .owl-next,
.produtos__relacionados_box .owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -10px;
}

.produtos__carousel_box .owl-nav i.fas,
.produtos__relacionados_box .owl-nav i.fas {
    color: #666;
}

.produtos__carousel_box.owl-theme .owl-nav [class*="owl-"]:hover,
.produtos__relacionados_box.owl-theme .owl-nav [class*="owl-"]:hover {
    background: transparent;
}

.produtos__carousel_box.owl-theme .owl-nav [class*="owl-"]:hover i,
.produtos__relacionados_box.owl-theme .owl-nav [class*="owl-"]:hover i {
    color: #101010;
}

.produtos__carousel,
.produtos__block {
    margin: 20px 0 40px;
    display: block;
}

/* BLOCO DE IMAGEM HOME */
.imagem__home img {
    width: 100%;
}

.imagens__block {
    display: flex;
    overflow: hidden;
    justify-content: space-around;
    flex-wrap: wrap;
    flex-direction: row;
    margin: 10px 0;
}

.imagens__block_item {
    display: inline-block;
    object-fit: contain;
    flex: 1;
    min-width: 30%;
    margin: 0 5px;
    height: 200px;
}

.imagens__block_item:last-of-type {
    margin-right: 0;
}

.imagens__block_item:first-of-type {
    margin-left: 0;
}

/* NEWSLETTER */
.newsletter__block {
    padding: 25px 0;
}

.newsletter__title {
    font-weight: bold;
    margin-bottom: 5px;
    display: block;
}

.newsletter__sub {
    font-size: 13px;
}

.newsletter__input {
    width: 40%;
    border: 0;
    padding: 12px 10px;
    border: 1px solid #e1e1e1;
}

.newsletter__submit {
    border: 0;
    padding: 10px;
    width: 10%;
    background: #00023b;
    border: 2px solid #00023b;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
}

.newsletter__form {
    display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6, BB7 */
    display: -ms-flexbox; /* TWEENER - IE 10 */
    display: -webkit-flex;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.newsletter__redes {
    display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6, BB7 */
    display: -ms-flexbox; /* TWEENER - IE 10 */
    display: -webkit-flex;
    display: flex;
    align-items: center;
}

.newsletter {
    border-bottom: 1px solid #e1e1e1;
}

.rede__link {
    color: #00023b;
    font-size: 20px;
    border: 2px solid;
    margin: 0 5px;
    padding: 7px;
    width: 40px;
    text-align: center;
    border-radius: 50%;
}

/* KEYWORDS */
.keywords {
    background: #f1f1f1;
}

.keywords__block h5 {
    font-size: 14px;
    margin-bottom: 20px;
    color: #00023b;
}

.keyword__link {
    display: block;
    color: #666;
    font-size: 14px;
    margin-bottom: 7px;
}

.keyword__link:hover {
    text-decoration: underline;
}

.keywords .container {
    padding: 25px 0;
}

.keywords__block {
    background: #fff;
    padding: 20px;
    width: 30%;
    -moz-box-shadow: 0px 7px 11px -3px #e6e6e6;
    -webkit-box-shadow: 0px 7px 11px -3px #e6e6e6;
    box-shadow: 0px 7px 11px -3px #e6e6e6;
}

/* PITBAR */
.pitbar {
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    align-items: center;
    height: 48px;
    margin: 30px auto;
}

.pitbar img {
    width: 90%;
    margin: 0 auto;
    display: block;
    height: 100%;
    object-fit: contain;
}

.pitbar__item {
    height: 100%;
    display: block;
}

.preco__consulta {
    display: inline-block;
    font-weight: bold;
    min-height: 30px;
    line-height: 1;
}

.categoria__item .preco__consulta {
    min-height: 35px;
}

.aviso__estoque {
    position: absolute;
    bottom: -18px;
    left: 0;
    font-size: 11px;
    color: red;
    display: block;
    width: 100%;
    text-align: center;
}

.aviso__estoque.success {
    color: green;
}

/* PAGINA DO PRODUTO */
#xzoom-default {
    max-height: 350px;
    width: 100% !important;
    box-shadow: none;
    object-fit: contain;
}

.xzoom-container {
    max-width: 100%;
    margin: 0 auto;
    display: block !important;
    text-align: center;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.5);
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.5);
}

.xzoom-thumbs {
    margin-top: 15px;
    margin-bottom: 0;
}

.xzoom-thumbs a {
    display: inline-block;
    width: 70px;
    height: 100%;
}

.xzoom-thumbs a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: 0 0 10px 0;
    padding: 0;
}

.xzoom-preview {
    background: #fff !important;
}

.produto__nofoto {
    margin: 0 auto;
    display: block;
}

.produto__nofoto img {
    width: 100%;
}

.zoomWrapper {
    overflow: hidden;
}

.breadcrumb {
    text-align: left;
    font-size: 11px;
    color: #a1a0a0;
    max-width: 1280px;
    width: 100%;
    margin: 10px auto;
}

.breadcrumb__link {
    color: #a1a0a0;
    margin: 10px;
}

.produto__title {
    font-weight: bold;
    text-align: center;
    font-size: 22px;
    margin: 25px 0 10px;
}

.produto__subtitle {
    text-align: center;
    max-width: 60%;
    margin: 0 auto;
    width: 100%;
    font-size: 13px;
    color: #666;
}

.produto__box {
    margin: 35px 0;
}

.produto__rating {
    font-size: 12px;
    margin-bottom: 15px;
}

.produto__prices {
    border: 1px solid #e1e1e1;
    padding: 15px;
}

.produto__price-new {
    display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6, BB7 */
    display: -ms-flexbox; /* TWEENER - IE 10 */
    display: -webkit-flex;
    display: flex;
    align-items: center;
}

.produto__prices .payment__value,
.item__container .item__valor {
    font-weight: bold;
    font-size: 22px;
}

.produto__prices .avista .payment__value,
.item__container .item__valor {
    color: #4ba02d;
}

.fas.fa-barcode,
.far.fa-credit-card {
    font-size: 22px;
}

.produto__price-old {
    display: block;
    width: 100%;
}

.produto__desc {
    font-size: 12px;
    margin: 0 0 10px;
    border-bottom: 1px solid #e1e1e1;
    padding: 0 0 15px;
    width: 100%;
}

.parcelado .payment__value {
    font-weight: normal;
}

.payment__desc {
    font-size: 12px;
    margin-top: 5px;
    min-height: 12px;
}

.produto__parcelas {
    margin-top: 15px;
    font-size: 12px;
}

.produto__parcelas .fa-credit-card {
    font-size: 13px;
    color: #000;
    margin-right: 5px;
}

.btn__comprar {
    border-radius: 2px;
    width: 50%;
    display: block;
    font-weight: bold;
    text-transform: uppercase;
    margin: 20px auto;
    padding: 15px 0;
    text-align: center;
    border: 1px solid;
    cursor: pointer;
    transition: all ease 300ms;
}

.btn__send {
    width: 59%;
    display: inline-block;
    margin: 20px auto;
}

.btn__send .btn__comprar {
    width: 100%;
    margin: 0;
}

.btn__comprar:hover {
    transition: all ease 300ms;
}

.btn__comprar:active {
    transform: translateY(3px);
}

.btn__comprar.disabled {
    opacity: 0.65;
}

.produto__frete {
    border: 1px solid #e1e1e1;
    padding: 15px;
    margin-top: 10px;
}

.produto__frete .frete__text {
    display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6, BB7 */
    display: -ms-flexbox; /* TWEENER - IE 10 */
    display: -webkit-flex;
    display: flex;
    align-items: center;
    font-size: 13px;
}

.link__correios {
    font-size: 12px;
    margin-top: 5px;
    display: block;
}

.produto__frete .fa-truck {
    font-size: 16px;
    margin-right: 10px;
}

.frete__input button,
.frete__input input {
    border: 1px solid #e1e1e1;
    padding: 10px;
    background: #fff;
}

.frete__input input {
    width: 65%;
}

.frete__input button {
    font-weight: bold;
    cursor: pointer;
}

.frete__input button:disabled {
    color: #666;
    cursor: not-allowed;
}

.frete__valores {
    margin-top: 10px;
    font-size: 12px;
    color: #666;
    line-height: 1.2;
}

.tipo_servico {
    display: inline-block;
    vertical-align: top;
    margin-right: 15px;
    max-width: 150px;
}

.descricao__links {
    display: block;
    background: #f7f7f7;
    border: 1px solid #e1e1e1;
    padding: 20px 15px;
    border-radius: 2px;
    text-align: center;
    width: 100%;
}

.descricao__links a {
    background: #fff;
    border: 1px solid #e1e1e1;
    font-size: 14px;
    padding: 5px;
    border-radius: 2px;
    margin: 0 5px;
}

.produto__content {
    padding: 20px;
}

.produto__text > h4 {
    border-left-width: 3px;
    border-left-style: solid;
    padding-left: 15px;
    font-weight: bold;
    margin-bottom: 15px;
}

.produto__text {
    margin-bottom: 25px;
}

.table {
    display: table;
    width: 100%;
    min-height: 10px;
    font-size: 14px;
}

.produto__text .produto__descricao_content * {
    font-size: 14px;
    line-height: 1.5;
}

.atributos__table .table__item {
    display: table-cell;
    width: 45%;
    padding: 10px;
}

.atributos__table dt.table__item {
    width: 7%;
}

.atributos__table .table:nth-child(2n) {
    background: #f7f7f7;
}

.zoomWrapper {
    margin: 0 auto;
}

.thumbnails__list {
    text-align: center;
    margin-top: 15px;
}

.thumbnails__list a {
    max-width: 70px;
    height: 70px;
    display: inline-block;
}

.thumbnails__list a img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.parcelas__detalhes {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
    background: rgba(0, 0, 0, 0.8);
    width: 100%;
    height: 100%;
    display: none;
}

.parcelas__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40%;
    background: #fff;
    padding: 20px;
    border-radius: 2px;
}

.parcelas__close {
    content: "X";
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;
    font-weight: bold;
    background: #ccc;
    padding: 5px;
    border-radius: 2px;
    cursor: pointer;
}

.parcelas__detalhes.active {
    display: block;
}

.parcelas__title {
    font-weight: bold;
    text-align: center;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-size: 17px;
}

.produto__parcelas .toogle__close {
    display: inline-block;
    cursor: pointer;
}

.configuravel__box {
    margin-top: 20px;
    border: 1px solid #e1e1e1;
    padding: 15px 10px;
    font-size: 12px;
}

.configuravel__title {
    width: 100%;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 10px;
}

.configuravel__item {
    display: inline-block;
    vertical-align: top;
    margin-right: 10px;
    padding: 7px 10px;
    border: 1px solid #e1e1e1;
}

.configuravel__item label {
    cursor: pointer;
    display: block;
    margin: 0 auto;
}

.configuravel__item label input {
    margin: 0;
    display: inline-block;
    vertical-align: middle;
}

.configuravel__item img {
    max-height: 50px;
    max-width: 50px;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    margin: 0 auto 10px;
}

.adicionais__box {
    margin-top: 20px;
    border: 1px solid #e1e1e1;
    padding: 15px 10px;
    font-size: 12px;
    width: 49%;
}

.adicionais__title {
    width: 100%;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 10px;
}

.adicionais__item {
    display: block;
    padding: 7px 10px;
    border: 1px solid #e1e1e1;
    width: auto;
    margin: 5px 0;
}

.adicionais__item label {
    cursor: pointer;
    display: block;
    margin: 0 auto;
}

.adicionais__item label input {
    margin: 0;
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}

.adicionais__itens {
    display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6, BB7 */
    display: -ms-flexbox; /* TWEENER - IE 10 */
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.adicional__name {
    display: inline-block;
    margin-right: 5px;
}

.adicional__name.input__required::after {
    margin-left: 2px;
}

.adicional__select {
    background: transparent;
    color: inherit;
    font-size: 12px;
    width: 100%;
    margin-top: 5px;
}

.adicional__valor {
    margin-left: 5px;
    font-weight: bold;
}

.far.fa-money-bill-alt {
    font-size: 20px;
}

.cart__produto_adicionais {
    font-size: 12px;
    margin-top: 5px;
    width: 100%;
    display: block;
}

.adicionais__box_title {
    font-weight: bold;
    min-width: 20%;
}

.adicionais_cart__box {
    margin: 10px 0;
    display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6, BB7 */
    display: -ms-flexbox; /* TWEENER - IE 10 */
    display: -webkit-flex;
    display: flex;
    justify-content: flex-start;
}

.produto_observacao label {
    font-size: 13px;
    display: block;
    margin-bottom: 10px;
}

.produto_observacao {
    margin-top: 15px;
}

.aviso__status,
.aviso__status_sm {
    display: block;
    width: 50%;
    margin: 20px auto 0;
    text-align: center;
    border: 1px solid #696969;
    padding: 8px 0;
    font-size: 13px;
    color: #696969;
    font-weight: bold;
}

.aviso__status {
    width: 50%;
    border: 1px solid #696969;
}

.aviso__status_sm {
    width: 100%;
    border: 1px solid #e1e1e1;
}

.loader-container {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    border-radius: 25px;
    background: white;
    z-index: 9;
}

.loader {
    position: absolute;
    top: calc(50% - 60px);
    left: calc(50% - 60px);
    width: 120px;
    height: 120px;
    border: 16px solid #f3f3f3;
    border-top: 16px solid #3498db;
    border-radius: 50%;
    animation: spin 2s linear infinite;
    z-index: -1;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.fechar-popup {
    background: #2b272780;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10000;
    display: none;
}

.popup-container {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    height: 80%;
    background: white;
    padding: 10px;
    border-radius: 25px;
    z-index: 10001;
}

.popup-container .popup {
    width: 100%;
    height: 100%;
    padding: 20px;
    overflow-y: auto;
}

.popup-container .popup .fechar {
    position: absolute;
    top: 15px;
    right: 30px;
    width: 5px;
    height: 10px;
    cursor: pointer;
    z-index: 999;
}

.popup-container .popup::-webkit-scrollbar {
    width: 5px;
}
.popup-container .popup::-webkit-scrollbar-track {
    background: #bbb;
}
.popup-container .popup::-webkit-scrollbar-thumb {
    background: #777;
}
.popup-container .popup::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.popup-container .popup .produto__info {
    display: inline-block;
    width: 100%;
}

.popup-container .popup .produto__info #foto-popup {
    float: left;
    width: 50%;
}

.popup-container .popup .produto__info .produto__prices {
    float: right;
    width: 50%;
    border: 1px solid #e1e1e1;
}

.popup-container .popup .produto__info .avista {
    margin-bottom: 15px;
}

.popup-container .popup .produto__info .produto__desc {
    padding-top: 15px;
    border-bottom: none;
    border-top: 1px solid #e1e1e1;
}

.popup .produto__title {
    margin: 0 0 25px;
}

.popup .btn__send {
    width: 50%;
}

.popup .box_qtd_change {
    display: block;
    text-align: center;
    width: 50%;
}

.popup .produto__dados .qtd_change {
    width: 70%;
    margin-right: 0;
    position: relative;
}

.popup #compra_finalizacao {
    align-items: center;
    justify-content: space-around;
}

.header .fechar_desconto {
    display: none;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1f1f1f9e;
    z-index: 998;
}
.header .popup_desconto {
    display: none;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: fixed;
    width: 30%;
    height: 70%;
    z-index: 999;
}
.header .popup_desconto .fechar {
    position: absolute;
    top: 5px;
    right: 10px;
    width: 5px;
    height: 10px;
    cursor: pointer;
}
.header .popup_desconto .info_cliente {
    width: 100%;
    height: 100%;
    padding: 20px;
    text-align: center;
}
.header .popup_desconto .info_cliente img {
    max-height: 40%;
    max-width: 100%;
}
.header .popup_desconto .info_cliente .texto {
    font-size: 18px;
    margin-top: 10%;
}
.header .popup_desconto .info_cliente form input {
    width: 100%;
    height: 40px;
    margin: 10px 0;
    padding: 0 5px;
    border: 1px solid #a9a9a9;
}
.header .popup_desconto .info_cliente form .button {
    font-weight: 800;
    border-radius: 7px;
    cursor: pointer;
    border: none;
}

/* PACOTE DE PRODUTO */
.pacote__item_box {
    border: 1px solid #e1e1e1;
}

.pacote__imagem {
    height: 160px;
}

.pacote__imagem img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.pacote__name {
    display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6, BB7 */
    display: -ms-flexbox; /* TWEENER - IE 10 */
    display: -webkit-flex;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    font-size: 13px;
    padding: 5px 10px;
    background: #f4f4f4;
    cursor: pointer;
    min-height: 45px;
}

.pacote__name input {
    margin: 0 5px;
}

.pacote__preco {
    display: inline-block;
    font-weight: bold;
    margin-left: 5px;
}

.form__pacote .btn__send {
    margin: 0 auto;
    display: block;
}

.form__pacote {
    z-index: 993;
    background: #fff;
}

.container__pacote {
    position: relative;
}

.form__pacote .btn__send .btn__comprar {
    margin: 10px auto 0px;
}

.produto__pacote_item {
    margin-bottom: 20px;
}

.xzoom-preview {
    z-index: 9999;
}

/* CATEGORIA */
.categoria__banner img {
    width: 100%;
}

.categoria__banner {
    width: 100%;
    margin-bottom: 10px;
}

.categoria__title {
    font-size: 16px;
    color: #252525;
    font-weight: bold;
}

.categoria__container {
    margin: 30px 0;
}

.filtro__name::before {
    display: none;
    content: "+";
    margin-right: 5px;
    font-size: 16px;
}

.filtro__name {
    font-size: 14px;
    color: #252525;
    font-weight: bold;
    cursor: pointer;
    padding: 10px;
    border-bottom: 1px solid #ccc;
    width: 100%;
    display: block;
}

.filtro__item {
    border: 1px solid #ccc;
    width: 80%;
}

.filtro__content {
    padding: 5px 10px;
    font-size: 14px;
}

.filtro__content a {
    display: block;
    padding: 10px 0;
}

.item__container {
    display: block;
    width: 100%;
    padding: 10px 5px;
}

.item__container .item__img {
    height: 200px;
    display: block;
    margin: 0 auto;
    width: 100%;
    object-fit: contain;
}

.item__container .item__img.modo_fotografia {
    height: 290px;
}

.item__name {
    color: #666;
    font-size: 14px;
    margin: 10px 0;
}

.produtos__top {
    display: block;
    width: 100%;
    margin-bottom: 20px;
    font-size: 13px;
    color: #666;
    text-align: right;
}

.produtos__top span:nth-child(1) {
    border-right: 1px solid #666;
}

.produtos__top span {
    padding: 0 10px;
}

.produtos__top-select {
    background: #ccc;
    padding: 5px;
    border: 0;
    color: #666;
}

.categoria__item {
    margin-bottom: 50px;
    text-align: center;
}

.produtos__zoom {
    width: inherit;
    height: 380px;
    display: flex;
    justify-content: center;
    align-items: center;
}
ul.thumbnails {
    display: block;
    text-align: center;
    margin: 20px 0;
}

ul.thumbnails li img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
ul.thumbnails li {
    display: inline-block;
    width: 80px;
    height: 80px;
    margin: 0 5px;
}
.easyzoom {
    height: auto;
    max-height: 380px;
}
.easyzoom > a,
.easyzoom,
.easyzoom > a > img {
    width: inherit;
}
.easyzoom > a {
    max-height: 380px;
}
.easyzoom > a > img {
    max-height: 380px;
    height: auto;
    object-fit: contain;
}
.easyzoom.is-ready img {
    cursor: crosshair;
    min-width: 100%;
    min-height: 100%;
}

.form__ordenacao {
    display: inline-block;
}

.categoria__descricao {
    display: block;
    width: 100%;
    font-size: 13px;
    margin-bottom: 20px;
    text-align: justify;
    border-bottom: 1px solid #ccc;
    padding: 10px 5px;
}

/* HEADER CART */
.header__cart_logo img {
    width: 100%;
}

.cart .container {
    padding: 15px 0;
}

.cart {
    border: 1px solid #d1d1d1;
}

.header__cart_title {
    font-weight: bold;
    font-size: 18px;
    color: #252525;
}

.header__cart_links {
    display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6, BB7 */
    display: -ms-flexbox; /* TWEENER - IE 10 */
    display: -webkit-flex;
    display: flex;
    justify-content: space-around;
    font-size: 13px;
    font-weight: bold;
    color: #a7a7a7;
}

.header__cart_links a {
    cursor: not-allowed;
    pointer-events: none;
}

.header__cart_links .cart_link-active {
    cursor: pointer;
    pointer-events: auto;
}

.cart_link-active {
    color: #3e4095;
}

/* FOOTER CART */

.footer__cart,
.adress__cart {
    border-top: 1px solid #ebebeb;
    padding: 15px 0;
}

.cart__atendimento h4,
.cart__pagamento h4 {
    font-size: 15px;
}

.cart__atendimento,
.cart__pagamento {
    text-align: center;
    font-size: 13px;
}

.cart__atendimento p {
    font-size: 13px;
}

.cart__contact {
    display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6, BB7 */
    display: -ms-flexbox; /* TWEENER - IE 10 */
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    font-size: 13px;
}

.cart__contact_item {
    margin: 0 10px;
}

.cart__contact_item i {
    margin-right: 3px;
}

.adress__cart {
    font-size: 13px;
}

.footer__copyright.copyright__cart {
    background: #fff;
    border-top: 1px solid #ebebeb;
}

/* CART */
.main__cart {
    background: #f6f7f8;
    padding: 20px 0;
}

.cart__title {
    font-weight: bold;
    color: #252525;
    font-size: 16px;
}

.cart__box_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart__items_box {
    border: 1px solid #e7e9ef;
    background: #f9fafc;
    box-sizing: border-box;
    margin-top: 20px;
}

.cart__box_header {
    font-size: 11px;
    border-bottom: 1px solid #e7e9ef;
    padding: 10px;
    display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6, BB7 */
    display: -ms-flexbox; /* TWEENER - IE 10 */
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
}

.cart__box_header .col-md-1,
.cart__box_header .col-md-2 {
    text-align: center;
}

.cart__box_info {
    font-size: 15px;
    position: relative;
}

.aviso__estoque_cart {
    font-size: 11px;
    position: absolute;
    bottom: 0px;
    right: 0;
    width: 87%;
    color: red;
}

.cart__box_img {
    width: 50px;
    height: 50px;
    display: inline-block;
    vertical-align: top;
}

.cart__box_content {
    padding: 10px;
    display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6, BB7 */
    display: -ms-flexbox; /* TWEENER - IE 10 */
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart__produto_title {
    display: inline-block;
    font-size: 14px;
    width: calc(100% - 55px);
    vertical-align: top;
}

.cart__table_itens,
.cart__box_info {
    width: 55%;
}

.cart__table_qtd {
    width: 18%;
    text-align: center;
}

.cart__table_valor {
    width: 12%;
}

.cart__box_header > div:not(.cart__table_itens) {
    text-align: center;
}

.cart__box_content .cart__table_valor {
    font-size: 14px;
    text-align: center;
}

.payment .frete-agendado-container {
    background: #E8E8E8;
    padding: 15px 10px;
}

.error-message {
    color: red;
    font-size: 11px;
    margin: 10px 0 5px;
    font-weight: bold;
}

.error-border {
    border: 1px solid red !important;
}

.datetime-container {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
}

.retirar-agendado-container {
    margin: 10px 0 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

.retirar-agendado-container input {
    margin: 0;

}

.w-30 {
    width: 30% !important;
}

.datetime-container label {
    font-weight: 600;
    font-size: 12px;
}

.datetime-input {
    border: 2px solid #e7e9ef;
    border-radius: 5px;
    font-size: 16px;
    padding: 10px;
    margin-top: 10px;
}

.datetime-input::placeholder {
    font-size: 12px;
}
.datetime-input::-webkit-input-placeholder {
    font-size: 12px;
}
.datetime-input::-moz-placeholder {
    font-size: 12px;
}
.datetime-input:-ms-input-placeholder {
    font-size: 12px;
}
.datetime-input:-moz-placeholder {
    font-size: 12px;
}

.qtd_change {
    display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6, BB7 */
    display: -ms-flexbox; /* TWEENER - IE 10 */
    display: -webkit-flex;
    display: inline-flex;
    justify-content: center;
    border: 1px solid #e7e9ef;
    height: 40px;
    width: 80%;
}

.produto__dados .qtd_change {
    width: 30%;
    margin-right: 10%;
    position: relative;
}

.qtd_change button {
    width: 20%;
    background: #fff;
    border: 0;
    cursor: pointer;
    font-weight: bold;
    font-size: 17px;
}

.qtd_change input {
    width: 35%;
    text-align: center;
    border: 0;
    background: #fff;
}

.cart__table_qtd .qtd_change input,
.cart__table_qtd .qtd_change button {
    background: #f9fafc;
}

.cart__resumo_box {
    border: 1px solid #e7e9ef;
    background: #f9fafc;
    box-sizing: border-box;
    margin-top: 20px;
}

.frete__box .produto__frete {
    border: 0;
    padding: 15px 20px;
}

.frete__box {
    border-bottom: 1px solid #e7e9ef;
}

.resumo__subtotal,
.resumo__total {
    padding: 15px 20px;
    font-size: 13px;
    display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6, BB7 */
    display: -ms-flexbox; /* TWEENER - IE 10 */
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    color: #666;
    border-bottom: 1px solid #e7e9ef;
}

.resumo__subtotal .tipo_frete,
.resumo__subtotal .total_frete {
    display: inline-block;
    width: 50%;
    margin-top: 20px;
}

.resumo__subtotal .total_frete,
.resumo__subtotal .subtotal_compra {
    text-align: right;
}

.resumo__subtotal .subtotal_compra,
.resumo__subtotal .total_frete {
    color: #000;
    font-weight: bold;
    width: 50%;
}

.total_compra .payment__value {
    color: #4ba02d;
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 0;
}

.total_compra > span {
    display: block;
    text-align: right;
    margin-bottom: 15px;
}

.total_compra .valor__boleto {
    font-weight: bold;
}

.payment__desc.payment__boleto {
    color: #000;
}

.cart__resumo .btn__comprar,
.cart__items .btn__comprar {
    width: 100%;
    font-weight: normal;
    text-transform: none;
    font-size: 15px;
    border-radius: 0;
    padding: 12px;
}

.cart__items .btn__comprar {
    display: none;
}

.payment__parcelas a {
    color: #3e4095;
}

.frete__options {
    font-size: 13px;
    color: #666;
}

.frete__valor {
    color: #30b030;
    font-weight: bold;
}

.cart__items_buttons {
    margin-top: 20px;
    display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6, BB7 */
    display: -ms-flexbox; /* TWEENER - IE 10 */
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn__goback {
    display: inline-block;
    text-align: center;
    font-size: 14px;
    color: #666;
    border: 1px solid #e2e2e2;
    cursor: pointer;
    background: #fff;
    padding: 10px 15px;
    width: 100%;
}

.cupom_desconto {
    background: #fff;
    color: #666;
    border: 1px solid #e2e2e2;
    padding: 5px 10px;
    display: inline-flex;
}

.cupom_desconto input {
    width: 72%;
    border: 0;
}

.cupom_desconto button {
    background: #4ba02d;
    border: 0;
    color: #fff;
    padding: 5px 10px;
    border-radius: 2px;
}

.subtotal_item.cupom_desc {
    margin-top: 15px;
}

.aviso__cart {
    text-align: center;
    font-size: 14px;
    padding: 30px 0;
}
.adress__edit {
    margin-top: 20px;
    display: block;
    font-weight: bold;
    font-size: 12px;
}

#session_frete {
    margin-top: 10px;
}

.payment__top_box #session_frete {
    margin-top: 0;
}

.aviso__cadastro {
    font-size: 13px;
    text-align: center;
    padding: 15px 20px;
    margin: 10px 0;
    font-weight: bold;
    border: 1px solid #e7e9ef;
    background: #f9fafc;
    color: #666;
}

/* LOGIN */
.login_container,
.cadastrar {
    margin: 40px 0;
}

.login_container h2,
.cadastrar h2 {
    text-align: center;
    font-weight: bold;
    color: #252525;
    font-size: 18px;
    margin-bottom: 30px;
}

.login__form {
    display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6, BB7 */
    display: -ms-flexbox; /* TWEENER - IE 10 */
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
}

.login__form input {
    margin-bottom: 20px;
    padding: 10px;
    color: #252525;
    border: 1px solid #d7d7d7;
    border-radius: 2px;
}

.login__lembrar {
    font-size: 12px;
    color: #252525;
}

.btn__login {
    background: #67b64b;
    border: 0;
    padding: 10px 0;
    color: #fff;
    font-weight: bold;
    border-radius: 2px;
    font-size: 14px;
}

.login__desc,
.cadastro__desc {
    font-size: 12px;
    text-align: center;
    color: #666;
    margin-bottom: 20px;
}

.cadastro__desc_list {
    list-style: disc;
    width: 68%;
    margin: 0 auto;
    color: #666;
    font-size: 15px;
}

.cadastro__desc_list li {
    margin-bottom: 5px;
}

.btn__cadastro {
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    display: block;
    width: 100%;
    margin-top: 30px;
    text-align: center;
    border-radius: 2px;
    border: 0;
    padding: 10px 0;
}

.cadastro__box .login__form.recupera_senha > button {
    margin-top: 10px;
}

.cadastro__box .login__form.recupera_senha > input {
    margin-bottom: 10px;
}

/* CADASTRO */
.cadatrar__form {
    font-size: 14px;
    color: #252525;
}

.cadastrar__label {
    margin: 20px 0 10px;
    display: block;
}

.cadastrar__tipo {
    display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6, BB7 */
    display: -ms-flexbox; /* TWEENER - IE 10 */
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.tipo__pessoa {
    margin-right: 20px;
}

.input__100 input,
.input__50 input,
.input__25 input {
    width: 100%;
}

.input__50 {
    width: 48%;
    display: inline-block;
    vertical-align: top;
}

.input__25 {
    width: 23%;
    display: inline-block;
    vertical-align: top;
}

.cadastro__input input,
.cadastro__input select {
    padding: 10px;
    border-radius: 2px;
    border: 1px solid #d7d7d7;
    background: #fff;
}

.cadastro__input.input__100 textarea {
    width: 100%;
    min-height: 150px;
    border-radius: 2px;
    border: 1px solid #d7d7d7;
}

.input__50_margin {
    margin-right: 3%;
}

.input__25_margin {
    margin-right: 2%;
}

.cadastro__input select {
    width: 100%;
    color: #000;
}

.btn__cadastrar {
    background: #67b64b;
    display: block;
    width: 80%;
    margin: 25px auto 0;
    border: 0;
    padding: 10px;
    border-radius: 2px;
    color: #fff;
    font-weight: bold;
    font-size: 14px;
}

.cadastro__box .login__form input {
    margin-bottom: 0;
}

/* PAGAMENTO */
.payment__top_box {
    background: #fff;
    color: #666;
    border: 1px solid #d1d1d1;
    border-radius: 5px;
    width: 32%;
    padding: 15px;
    font-size: 14px;
}

.payment__top_box h2 {
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 15px;
}

.payment__items > div {
    display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6, BB7 */
    display: -ms-flexbox; /* TWEENER - IE 10 */
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.payment__items span .payment__desc {
    display: block;
    font-weight: normal;
}

.payment__items > div > span:last-child {
    font-weight: bold;
}

.payment__tabs {
    background: #fff;
    color: #666;
    border: 1px solid #d1d1d1;
    border-radius: 5px;
    width: 100%;
    font-size: 14px;
    margin-top: 30px;
    overflow: hidden;
}

.payment__methods.tabs {
    width: 30%;
    display: inline-block;
    vertical-align: top;
}

.payment__methods.tabs {
    margin: 0px;
    padding: 0px;
    list-style: none;
}
.payment__methods.tabs {
    background: none;
    color: #222;
    display: inline-block;
    cursor: pointer;
}

.payment__methods.tabs {
    color: #222;
    border-right: 1px solid #d1d1d1;
}

.payment__methods.tabs .tab-link.current {
    background: #f6f7f8;
}

.payment__methods.tabs .tab-link {
    padding: 15px;
    background: #fff;
    position: relative;
    color: #666;
}

.tab-content {
    display: none;
    padding: 15px;
    width: 100%;
}

.tab-content.current {
    display: inline-block;
    vertical-align: top;
}

.payment__methods.tabs .tab-link:not(:last-child) {
    border-bottom: 1px solid #d1d1d1;
}

.payment__form .cadastrar__label {
    margin: 0 0 10px;
}

.payment__form .cadastro__input {
    margin-bottom: 15px;
}

.servico__frete {
    margin-bottom: 10px;
}

.servico__frete input[type="radio"] {
    margin: 0;
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
}

.servico__frete label {
    cursor: pointer;
}

.horario_agendamento {
    margin: 10px 5px;
    padding: 10px 7px;
    border: 1px solid #e7e9ef;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    box-sizing: border-box;
    text-align: center;
}

.horario_agendamento > strong {
    display: block;
    margin-bottom: 10px;
    text-align: center;
}

.horario_agendamento select {
    background: #fff;
    padding: 3px;
}

#dia_agendamento {
    margin-bottom: 8px;
    padding: 3px;
}

.metodo__text {
    text-align: center;
    margin: 10px 0;
}

.metodo__valor {
    display: block;
    font-size: 20px;
}

.metodo__desc {
    margin-top: 10px;
    display: block;
}

.payment__troco {
    width: 70%;
    margin: 0 auto 25px;
    text-align: center;
}

.payment__pix {
    width: 70%;
    margin: 0 auto 25px;
    margin-top: 30px;
    text-align: center;
}

.payment__pix .label {
    font-size: 15px;
    margin: 15px 0;
}

.payment__pix .observacoes {
    font-size: 15px;
    text-align: justify;
    text-align-last: center;
    line-height: 1.2;
}

#input_troco {
    max-width: 100px;
    text-align: center;
}

.button__observacoes {
    background: #f6f7f8;
    padding: 15px 0;
    text-align: center;
    border-bottom: 1px solid #d1d1d1;
    display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6, BB7 */
    display: -ms-flexbox; /* TWEENER - IE 10 */
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-weight: bold;
}

.button__observacoes::after {
    content: "+";
    margin-left: 5px;
    font-size: 18px;
}

.button__observacoes.obs_togglecat::after {
    content: "-";
}

.button__observacoes i {
    font-size: 10px;
    margin-left: 5px;
}

.payment__observacao {
    text-align: center;
    display: none;
    margin: 10px 0;
    padding-bottom: 20px;
    border-bottom: 1px solid #d1d1d1;
}

.payment__observacao label {
    display: block;
    margin-bottom: 10px;
    text-align: center;
}

.payment__observacao textarea {
    width: 50%;
    height: 100px;
    border: 1px solid #d7d7d7;
    border-radius: 2px;
}

.payment__methods.tabs .tab-link::before {
    content: "";
    position: absolute;
    top: 13px;
    right: 5px;
    width: 15px;
    height: 15px;
    border: 1px solid #d1d1d1;
    border-radius: 100%;
    background: #fff;
}

.payment__methods.tabs .tab-link.tab-title::before,
.payment__methods.tabs .tab-link::after,
.payment__methods.tabs .tab-link.tab-title.current::after {
    display: none;
}

.payment__methods.tabs .tab-link.tab-title.current {
    background: #fff;
}

.payment__methods.tabs .tab-link.current::after {
    display: block;
    content: "";
    width: 9px;
    height: 9px;
    background: #158316;
    position: absolute;
    top: 16px;
    right: 8px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.pedido__transferencia {
    width: 60%;
    margin: 0 auto;
    border: 1px solid #ccc;
    margin-top: 20px;
    padding: 10px;
}

#input_troco::-webkit-inner-spin-button,
#input_troco::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* MINHA CONTA */
.account,
.account_edit {
    margin: 30px 0;
}

.painel__user {
    display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6, BB7 */
    display: -ms-flexbox; /* TWEENER - IE 10 */
    display: -webkit-flex;
    display: flex;
    align-items: center;
}

.account__icon {
    margin-right: 10px;
}

.account__name {
    font-size: 14px;
}

.pedidos__table_header {
    color: #fff;
    padding: 10px 0;
    text-align: center;
    font-size: 14px;
}

.pedidos__table {
    margin-top: 10px;
    border-bottom: 1px solid #ccc;
}

.pedidos__table_content {
    text-align: center;
    font-size: 14px;
}

.pedido__table_item {
    padding: 10px 0;
}

.pedido__table_add {
    font-size: 12px;
    margin-top: 5px;
    text-align: left;
}

.pedido__table_item:not(:last-of-type) {
    border-bottom: 1px solid #cccccc;
}

.painel__links {
    padding: 15px;
    font-size: 14px;
    border: 1px solid #ccc;
    margin-top: 20px;
}

.painel__links a {
    display: block;
    width: 100%;
}

.painel__links a:hover {
    font-weight: bold;
}

.painel__links a:not(:last-child) {
    margin-bottom: 10px;
}

.account__dados {
    font-size: 14px;
}

.accont__edit_box h2,
.account__pedidos h2 {
    font-weight: bold;
    font-size: 15px;
}

.accont__edit_box div h2 {
    margin-top: 20px;
}

.account_edit .btn__cadastrar {
    width: 50%;
    margin: 20px calc((100% - 50%) / 2) 0;
}

/* PEDIDO */
.pedido__content {
    margin-top: 20px;
    font-size: 14px;
}

.pedido__content > div {
    margin-bottom: 20px;
}

.pedido__label {
    font-weight: bold;
    margin-bottom: 5px;
}

.pedido__table_footer {
    text-align: right;
    padding: 20px;
    border-top: 1px solid #ccc;
}

.pedido__table_footer > div:not(:last-child) {
    margin-bottom: 10px;
}

.table_footer_stg {
    font-weight: bold;
}

.table_footer_val {
    min-width: 120px;
    display: inline-block;
}

.pedido__entrega {
    margin-bottom: 20px;
}

/* 404 PAGE */
.page__404 h2 {
    text-align: center;
    font-weight: bold;
    font-size: 28px;
}

.page__404 {
    padding: 30px 0;
}

.title__404 {
    text-align: center;
    margin-top: 20px;
}

.page__404.erro__pagamento .title__404 {
    width: 50%;
    margin: 20px auto;
}

.page__404.erro__pagamento ul {
    margin: 20px auto;
    margin-left: 20px;
}

.page__404.erro__pagamento ul li {
    text-align: left;
    list-style: circle;
}

.page__404.erro__pagamento p {
    margin: 15px 0;
}

.page__404.erro__pagamento {
    padding-bottom: 0;
}

/* PAGINAÇAO */
.pagination__box {
    display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6, BB7 */
    display: -ms-flexbox; /* TWEENER - IE 10 */
    display: -webkit-flex;
    display: flex;
    color: #666;
    margin-top: 30px;
    justify-content: center;
}

.pagination__box li {
    margin: 0 10px;
    list-style: none;
}

.pagination__box li.active {
    font-weight: bold;
    border-bottom: 1px solid #ccc;
    padding: 0 3px;
}

/* INSTITUCIONAL */
.institucional__title {
    text-align: center;
    padding: 30px 0;
    background: #f1f1f1;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 22px;
    color: #00023b;
    margin-bottom: 40px;
}

.institucional_content {
    font-size: 14px;
}

.institucional_content * {
    line-height: 2;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style: inherit;
}

.institucional_content img {
    max-width: 100%;
}

.conclusao_content {
    line-height: 1.5;
    font-size: 15px;
    text-align: center;
}

.pedido__code {
    font-weight: bold;
}

.conclusao__btn {
    display: block;
    width: 25%;
    margin: 20px auto 0;
    padding: 5px;
    text-align: center;
}

.pedido__dados {
    margin-top: 30px;
}

.pedido__dados p {
    width: 25%;
    margin: 20px auto 0;
    text-align: left;
}

.btn__cadastrar.btn__atendimento {
    width: 100%;
    padding: 7px;
}

.institucional_content .cadastro__input.input__50.input__50_margin {
    margin-right: 20px;
}

.institucional_content .cadastrar__label {
    margin: 20px 0 10px;
    display: block;
}

/* PRODUTOS RELACIONADOS */
.produtos__relacionados_title {
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 20px;
}

/* BOTAO SUBIR AO TOPO */
#subirTopo {
    text-decoration: none;
    bottom: 50px;
    right: 30px;
    color: #fff;
    text-align: center;
    cursor: pointer;
    padding: 10px;
    font-size: 15px;
    font-weight: bold;
    text-transform: uppercase;
    position: fixed;
    border: 0;
    font-family: sans-serif;
    opacity: 0.8;
    z-index: 999;
}

#subirTopo:hover {
    opacity: 1;
}

/* ATENDIMENTO */
.atendimento h3 {
    font-weight: bold;
    margin-bottom: 20px;
}

.validation_msg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    font-size: 2em;
    display: none;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    z-index: 999;
    padding: 0 calc((100% - 60%) / 2);
}

.validation_msg::after {
    content: "x";
    display: block;
    cursor: pointer;
    color: #ccc;
    font-weight: bold;
    position: absolute;
    top: 40%;
    right: 20%;
}

.validation_msg.donut::after {
    content: "";
    border: 8px solid rgba(0, 0, 0, 0.1);
    border-left-color: #ccc;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    animation: donut-spin 1.2s linear infinite;
    position: relative;
    top: auto;
    right: auto;
}

#validate_card,
#validate_data {
    font-size: 12px;
    margin: 10px 0;
    color: red;
}

@keyframes donut-spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.validation_msg.donut {
    display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6, BB7 */
    display: -ms-flexbox; /* TWEENER - IE 10 */
    display: -webkit-flex;
    display: flex;
}

.btn_recuperar {
    font-size: 12px;
    margin-bottom: 10px;
}

/* FALE CONOSCO */
.contato__form {
    font-size: 13px;
}

.btn__contato {
    display: block;
    width: 50%;
    margin: 20px auto;
}

#pedido__form .dados {
    display: none;
}

.msg_alerta {
    text-align: center;
    margin: 20px 0;
    color: red;
    font-size: 15px;
}

.msg_sucesso {
    text-align: center;
    margin: 20px 0;
    color: green;
    font-size: 13px;
}

.input__required::after {
    content: "*";
    color: red;
    margin-left: 5px;
    font-weight: bold;
}

label.alert-error {
    color: red;
    display: block;
    padding-top: 10px;
    text-align: center;
}

.wpp__mobile {
    display: none;
}

.c__btnsite_bg {
    transition: 500ms ease background;
}
.c__btnsite_bg:hover {
    transition: 500ms ease background;
}

.erro_pagseguro {
    text-align: center;
    padding: 5px 0;
    color: red;
    font-size: 14px;
    font-weight: bold;
}

.btn__goback_top {
    display: none;
}

.btn__goback_bottom {
    display: block;
}

label.error {
    color: red;
    font-size: 12px;
    display: block;
    margin-top: 3px;
}

/* ALERT */
.alert {
    border-radius: 3px;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
    position: relative;
}

.alert .close {
    color: #000;
    opacity: 0.2;
    padding: 0;
    cursor: pointer;
    background: 0 0;
    border: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    float: right;
    font-size: 21px;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    filter: alpha(opacity=20);
    opacity: 0.2;
}

.alert h4 {
    font-weight: 600;
    margin-top: 0;
    color: inherit;
    font-size: 14px;
}

.alert-danger {
    background-color: #dd4b39;
    color: #fff;
    border-color: #d73925;
}

.alert-success {
    background-color: #008000;
    color: #fff;
    border-color: #008000;
}

.alert-dismissable,
.alert-dismissible {
    padding-right: 35px;
}

.alert-dismissible .close {
    position: relative;
    top: 50%;
    right: 15px;
    color: inherit;
    position: absolute;
    line-height: 0;
}
/* ITENS SÓ DESKTOP */
@media screen and (min-width: 768px) {
    .menu__item_sub:hover .menu__sub {
        display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6, BB7 */
        display: -ms-flexbox; /* TWEENER - IE 10 */
        display: -webkit-flex;
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        align-content: flex-start;
        height: 200px;
    }

    .menu__sub > li {
        width: 20%;
        display: block;
        height: 40px;
    }

    .menu__sub li:hover {
        background: #f6f6f6;
    }

    .menu__item_sub > a::after {
        content: "";
        border: solid black;
        border-width: 0 1px 1px 0;
        display: inline-block;
        padding: 3px;
        transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
        position: absolute;
        color: #000;
        top: 40%;
        right: 0;
        display: none;
    }

    .menu__item_sub:hover > a::after {
        transform: rotate(-135deg);
        -webkit-transform: rotate(-135deg);
    }

    .header__cart_title h2 {
        margin-left: 20px;
    }

    .header__cart_logo {
        height: 50px;
    }

    .header__cart_logo h1,
    .header__cart_logo a {
        height: 100%;
    }

    .header__cart_logo img {
        height: 100%;
        width: 100%;
        object-fit: contain;
    }

    .tabs__content .fa-arrow-up {
        display: none;
    }

    .block__title {
        margin-bottom: 30px;
    }
}

.register__cpf .info {
    text-align: center;
    margin-bottom: 1rem;
}

.register__cpf {
    max-width: 800px;
    margin: 40px auto 0;
}

.register__cpf .cadastra__box {
    width: 100%;
    margin: 0;
}

.register__cpf .pessoa__fisica,
.register__cpf .btn__cadastrar {
    width: 100%;
}

.register__cpf form {
    width: 80%;
}

.wpp_btn {
    border: 1px solid;
    padding: 2px 6px;
    border-radius: 3px;
    text-align: center;
    display: inline-block;
    background: #2bb140;
    border-color: #2bb140;
    color: #fff;
    font-weight: bold;
    vertical-align: middle;
}

.tela_pedido_finalizado .conclusao_content {
    line-height: 2;
}

/* MOBILE */
@media screen and (max-width: 767px) {
    .w-xs-100 {
        width: 100% !important;
    }

    .register__cpf .pessoa__fisica {
        align-items: center;
        display: flex;
        flex-direction: column;
    }

    .register__cpf .pessoa__fisica .cadastro__input {
        margin: 0;
        width: 80%;
    }

    .register__cpf .btn__cadastrar {
        width: 80%;
    }

    body,
    html {
        overflow-x: hidden;
    }

    /* MENU */
    header .control-nav {
        position: absolute;
        left: 20px;
        top: 18px;
        display: block;
        width: 30px;
        padding: 5px 0;
        border: solid #3e4095;
        border-width: 3px 0;
        z-index: 2;
        cursor: pointer;
    }

    header .control-nav:before {
        content: "";
        display: block;
        height: 3px;
        background: #3e4095;
    }

    header .control-nav-close {
        position: fixed;
        right: 0;
        top: 0;
        bottom: 0;
        left: 0;
        display: block;
        z-index: 2;
        background: rgba(0, 0, 0, 0.4);
        -webkit-transition: all 500ms ease;
        transition: all 500ms ease;
        -webkit-transform: translate(-100%, 0);
        -ms-transform: translate(-100%, 0);
        transform: translate(-100%, 0);
    }

    header nav {
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        width: 280px;
        border-right: 1px solid #ccc;
        background: #fff;
        overflow-x: auto;
        z-index: 2;
        -webkit-transition: all 500ms ease;
        transition: all 500ms ease;
        -webkit-transform: translate(-100%, 0);
        -ms-transform: translate(-100%, 0);
        transform: translate(-100%, 0);
    }

    #control-nav:checked ~ .control-nav-close {
        -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
        transform: translate(0, 0);
    }

    #control-nav:checked ~ nav {
        -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
        transform: translate(0, 0);
    }

    .control-nav-close::after {
        content: "x";
        position: fixed;
        top: 5px;
        z-index: 99999;
        color: #fff;
        right: 15px;
        font-size: 30px;
        line-height: 1;
        text-shadow: 0 0 3px rgba(255, 255, 255, 0.9);
    }

    .easyzoom {
        pointer-events: none;
        cursor: default;
    }

    .menu__list {
        flex-direction: column;
    }

    .itens__mobile {
        display: block;
    }

    .itens__mobile a {
        font-weight: bold;
        font-size: 14px;
        padding: 15px;
        display: inline-block;
        width: 49%;
        text-align: center;
    }

    .itens__mobile-logo a {
        padding: 5px;
    }

    .menu__item > a {
        position: relative;
    }

    .menu__item.menu__item_sub > a {
        pointer-events: none;
        cursor: default;
        position: relative;
    }

    .menu__item.menu__item_sub > a::after {
        content: "+";
    }

    .menu__item > a::after {
        content: ">";
    }

    .menu__item.menu__item_sub.togglecat > a::after {
        content: "-";
    }

    .menu__item.menu__item_sub > a::after,
    .menu__item > a::after {
        position: absolute;
        right: 10px;
        font-weight: bold;
        font-size: 16px;
        top: 30%;
    }

    .itens__mobile-logo {
        height: 60px;
        margin: 0 auto;
        display: block;
        width: 100%;
    }

    .itens__mobile-logo a,
    .itens__mobile-logo img {
        height: 100%;
        width: 100%;
    }

    .itens__mobile-logo img {
        object-fit: contain;
    }

    .menu__item:hover,
    .menu__sub {
        background: transparent;
    }

    /* HEADER */
    .header__logo a {
        display: block;
        width: 55%;
        margin: 0 auto;
    }

    .header__logo h1,
    .header__logo a,
    .header__logo img {
        height: 100%;
        text-align: center;
    }

    .header__logo img {
        width: 100%;
        object-fit: contain;
    }

    .header__logo {
        height: 45px;
        margin-bottom: 20px;
    }

    .header__top {
        padding: 0 0 10px;
    }

    .header__cart {
        position: absolute;
        right: 10px;
        top: 10px;
        width: 15%;
    }

    .header__account {
        display: none;
    }

    .header {
        position: static;
    }

    .menu__item {
        border-bottom: 1px solid #3e4095;
    }

    .header__top .row {
        margin: 0;
    }

    .header__top .row > div {
        padding: 0;
    }

    .menu__sub {
        position: static;
    }

    .header__contact {
        display: none;
    }

    .header__search form {
        width: 97%;
        margin: 0 auto;
    }

    .search__input button {
        height: 37px;
        border-radius: 0;
    }

    .search__input #search {
        border-radius: 0;
    }

    .no-js .owl-carousel,
    .owl-carousel.owl-loaded {
        overflow: hidden;
    }

    /* BLOCO PRODUTOS */
    .block__title {
        margin-top: 30px;
        margin-bottom: 20px;
    }

    .block__item-img.modo_fotografia {
        height: 200px;
    }

    .block__item-content .payment__desc {
        min-height: auto;
        display: none;
    }

    .product__price-new .payment__type {
        display: block;
    }

    .block__item-img {
        width: 100%;
        text-align: center;
        height: 160px;
    }

    .block__item-img img {
        height: 100%;
        width: 100%;
        object-fit: contain;
    }

    .block__item-button {
        padding: 10px 0;
    }

    .product__name {
        font-size: 15px;
        margin: 10px 0;
    }

    .link__categoria-link {
        margin-top: 0;
    }

    .block__item {
        margin-bottom: 20px;
    }

    .popup-container {
        width: 100%;
        height: 100%;
        border-radius: unset;
    }

    .popup-container .popup::-webkit-scrollbar {
        width: 0px;
    }

    .popup-container .popup .produto__info {
        display: initial;
    }

    .popup-container .popup .produto__info #foto-popup {
        float: unset;
        width: 100%;
        border: none;
    }

    .popup-container .popup .produto__info .produto__prices {
        float: unset;
        width: 100%;
        border: 1px solid #e1e1e1;
    }

    .popup-container .popup .produto__info .avista {
        padding: 0;
    }

    .popup-container .popup .produto__info .produto__desc {
        padding: 0;
        margin: 0;
        padding-top: 15px;
        border-bottom: none;
        border-top: 1px solid #e1e1e1;
    }

    /* CAROUSEL PRODUTOS */
    .carousel_box_item .block__item-img {
        height: 160px;
    }

    .produtos__carousel_box.owl-carousel .owl-item img {
        height: 100%;
        object-fit: contain;
        width: 100%;
    }

    .produtos__block .link__categoria-link {
        width: 80%;
        font-size: 12px;
    }

    .produtos__carousel,
    .produtos__block {
        padding: 0 10px;
        box-sizing: border-box;
    }

    /* PRODUTO */
    .produto__subtitle {
        width: 90%;
    }

    .produto__content {
        padding: 20px 0px;
    }

    .produto__box {
        margin: 35px 0 10px;
    }

    .produto__descricao {
        display: none;
    }

    .produto__descricao_content {
        display: none;
    }

    .produto__text h4 {
        position: relative;
    }

    .produto__text h4::after {
        content: "+";
        position: absolute;
        right: 5px;
        font-size: 18px;
        top: -1px;
    }

    .produto__text .togglecat::after {
        content: "-";
    }

    .produto__imagens {
        margin-bottom: 20px;
    }

    .produto__rating {
        text-align: center;
    }

    .btn__comprar {
        width: 100%;
    }

    .adicionais__itens {
        flex-direction: column;
    }

    .adicionais__box {
        width: 100%;
    }

    .adicional__select {
        padding: 5px;
        font-size: 14px;
    }

    .adicionais__item label,
    .frete__input input,
    #dia_agendamento,
    .horario_agendamento select {
        font-size: 15px;
    }

    .adicionais__box_title {
        min-width: 29%;
    }

    .pessoa__endereco .input__25 {
        width: 47%;
    }

    /* CART */
    .cart__box_header {
        display: none;
    }

    .header__cart_logo {
        height: 45px;
    }

    .header__cart_title {
        text-align: center;
        margin: 10px 0;
    }

    .cart__box_content {
        display: block;
        border-bottom: 1px solid #e7e9ef;
    }

    .cart__box_info {
        width: 100%;
        margin-bottom: 10px;
    }

    .cart__table_qtd {
        width: 30%;
        display: inline-block;
        vertical-align: middle;
    }

    .cart__box_content .cart__table_valor {
        width: 33%;
        display: inline-block;
        vertical-align: middle;
        font-size: 13px;
    }

    .qtd_change {
        width: 100%;
    }

    .produto__dados .qtd_change {
        margin-right: 7%;
    }

    .header__cart_logo img,
    .header__cart_logo h1,
    .header__cart_logo a {
        height: 100%;
        display: block;
    }

    .header__cart_logo img {
        width: auto;
        margin: 0 auto;
    }

    .btn__goback,
    .cupom_desconto {
        margin-bottom: 15px;
    }

    .frete__input {
        margin-top: 10px;
    }

    .frete__input input {
        width: 75%;
    }

    .adress__cart .row > div {
        text-align: center;
    }

    .adress__cart .adress__cart_2 {
        margin-top: 10px;
    }

    .cart__contact {
        flex-direction: column;
    }

    .cart__contact_item {
        margin: 5px 0;
    }

    .resumo__total > span {
        width: 35%;
        display: inline-block;
    }

    .resumo__total > span.total_compra {
        width: 65%;
        display: inline-block;
    }

    .payment__top_box {
        width: 100%;
        margin-bottom: 10px;
    }

    .payment__methods.tabs {
        display: flex;
        flex-direction: column;
        border-bottom: 1px solid #d1d1d1;
    }

    .payment__methods.tabs .tab-link:not(:last-child) {
        border-bottom: 0;
    }

    .payment__tabs {
        margin-top: 5px;
    }

    .cupom_desconto input {
        width: 63%;
    }

    .cupom_desconto button {
        width: 33%;
        padding: 5px 0;
    }

    .cart__items_buttons > div,
    .cart__items_buttons > a {
        width: 49%;
    }

    .cart__items .btn__comprar {
        display: block;
    }

    .header__cart_links {
        margin-top: 20px;
    }

    .payment__troco {
        width: 100%;
    }

    /* CATEGORIA */
    .categoria__container {
        margin: 15px 0 30px;
    }

    .categoria__banner {
        margin-bottom: 10px;
        height: 45px;
        text-align: center;
    }

    .categoria__banner img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }

    .categoria__filtros {
        margin-bottom: 20px;
    }

    .item__container {
        padding: 10px 5px;
    }

    .item__name {
        font-size: 13px;
    }

    .produto__prices .payment__value,
    .item__container .item__valor {
        font-size: 20px;
    }

    .produtos__top {
        display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6, BB7 */
        display: -ms-flexbox; /* TWEENER - IE 10 */
        display: -webkit-flex;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .produtos__top span {
        text-align: center;
    }

    .produtos__top-select {
        margin-top: 10px;
    }

    .item__container .item__img {
        height: 160px;
        width: 100%;
        object-fit: contain;
    }

    .filtro__content {
        display: none;
    }

    .filtro__item {
        width: 100%;
    }

    .categoria__descricao {
        text-align: center;
        padding: 0 10px;
    }

    .item__container .item__img.modo_fotografia {
        height: 200px;
    }

    .categoria__item {
        margin-bottom: 20px;
    }

    .categoria__item .produto__parcelas {
        display: none;
    }

    .categoria__produtos {
        margin: 0 auto;
    }

    /* MINHA CONTA */
    .account.row > div,
    .account_edit.row > div {
        padding: 0;
        margin-bottom: 30px;
    }

    .account,
    .account_edit {
        margin: 0;
    }

    /*.input__50_margin {
        margin-right: 2%;
    }*/

    .cadastrar__label {
        font-size: 13px;
    }

    .painel__user {
        margin-top: 20px;
        justify-content: center;
    }

    /* LOGIN */
    .login_container,
    .cadastrar {
        margin: 10px 0;
    }

    .login_container {
        flex-direction: column-reverse;
    }

    .login__desc,
    .cadastro__desc {
        margin-bottom: 10px;
    }

    .login__form .btn__cadastro {
        margin-top: 20px;
    }

    .login_container > div {
        padding: 0;
        margin-bottom: 25px;
    }

    .login_container h2,
    .cadastrar h2 {
        margin-bottom: 15px;
    }

    /* FOOTER */
    .info__pagamento .pagamento__item {
        width: 100%;
        max-width: 100%;
        min-width: 100%;
    }

    .pagamento__imgs img {
        margin-bottom: 10px;
    }

    .pagamento__imgs img {
        max-height: 60px;
    }

    .keywords__block {
        width: 88%;
        margin: 0 auto 10px;
    }

    .info__atendimento,
    .info__institucional,
    .info__pagamento {
        text-align: center;
        margin-bottom: 20px;
    }

    .info__atendimento h4,
    .info__institucional h4,
    .info__pagamento h4 {
        font-weight: bold;
        margin-bottom: 10px;
    }

    .footer__copyright {
        flex-direction: column;
        padding: 15px 20px;
    }

    .img__ecommercenet {
        margin: 20px 0 10px;
    }

    .newsletter__form {
        flex-direction: column;
    }

    .newsletter__input {
        width: 90%;
        margin-bottom: 10px;
    }

    .newsletter__desc {
        text-align: center;
        margin-bottom: 10px;
    }

    .newsletter__submit {
        width: 25%;
    }

    .newsletter__redes {
        margin-top: 20px;
        justify-content: center;
    }

    .container {
        padding: 0px 5px;
    }

    .newsletter__block {
        padding: 10px;
    }

    .info__atendimento {
        margin-top: 20px;
    }

    /* MINICART */
    .minicart__content.minicart__content-show {
        height: 0;
        opacity: 0;
    }

    /* ATENDIMENTO */
    .atendimento .row > div:nth-child(2) {
        margin-top: 30px;
        text-align: center;
    }

    .xzoom-container {
        max-width: 100%;
    }

    .pedido__dados p {
        width: 90%;
    }

    #xzoom-default {
        width: 100% !important;
        object-fit: contain;
    }

    .wpp__mobile {
        display: block;
        position: fixed;
        bottom: 0;
        left: 16px;
        background: #2bb140;
        color: #fff;
        border-radius: 5px 5px 0 0;
        padding: 3px 6px;
        font-size: 14px;
        z-index: 999;
    }

    .parcelas__content {
        width: 95%;
    }

    .produto__frete {
        margin-top: 20px;
    }

    .aviso__estoque.success {
        bottom: -30px;
    }

    .aviso__estoque {
        bottom: -38px;
    }

    .filtro__name {
        position: relative;
    }

    .filtro__name::after {
        content: "+";
        position: absolute;
        right: 8px;
    }

    .aviso__status {
        width: 90%;
    }

    .produto__item.blog__item {
        width: 90%;
        margin: 0 auto;
    }

    .produtos__items.blog {
        flex-direction: column;
    }

    .payment__observacao textarea {
        width: 90%;
    }

    .tabs__content .fa-arrow-left {
        display: none;
    }

    .cadastro__input input,
    .cadastro__input select,
    .newsletter__input,
    .login__form input,
    .search__input #search {
        padding: 15px 10px;
        font-size: 15px;
    }

    .btn__cadastro,
    .btn__login,
    .btn__cadastrar {
        padding: 15px 0;
    }

    .btn__goback_top {
        display: block;
    }

    .btn__goback_bottom {
        display: none;
    }

    /* BLOCO DE IMAGENS */
    .imagens__block {
        flex-direction: column;
    }

    .imagens__block_item {
        margin: 5px 0;
        height: auto;
        max-height: 140px;
    }

    .imagens__block_item:first-of-type {
        margin-top: 0;
    }

    .imagens__block_item:last-of-type {
        margin-bottom: 0;
    }

    .servico__frete label {
        font-size: 15px;
    }

    .conclusao__btn {
        width: 80%;
    }
}
