:root {
    --cor-pink: #fd5f5c; /*Cor principal*/
    --cor-bg-topo: #ffffff; /*Cor bg topo*/
    --cor-item-menu: #000000; /*Cor item topo*/
    --cor-bg-rodape: #fd5f5c; /*Cor bg rodape*/
    --cor-bg-botao-minhaloja: #007bff; /*Cor texto botão minha loja*/
    --cor-texto-botao-minhaloja: #ffffff; /*Cor texto botão minha loja*/
    --cor-icones-como-usar: #fd5f5c; /*Cor icones como usar*/
    --cor-botoes-paginacao: #fd5f5c; /*Cor botões paginação*/
    --cor-loading: #fd5f5c; /*Cor botões paginação*/
    --cor-campo-newssletter: #fd5f5c; /*Cor Campo Newsletter*/
    --cor-background-principal: #ffffff; /*Cor Background principal*/
    --cor-background-seus-numeros: #ffffff; /*Cor texto seus números*/
    --cor-background-produtos: #ffffff; /*Cor background produtos*/
    --cor-texto-produtos: #252525; /*Cor texto produtos*/
    --cor-texto-seus-numeros: #252525; /*Cor texto seus números*/
    --cor-texto-newletter: #ffffff; /*Cor texto newletter*/
    --cor-icone-categoria: #636363; /*Cor ícone categoria*/
    --cor-texto-rodape: #636363; /*Cor texto rodapé*/
    --cor-backgroun-btn-newletter: #ffffff; /*Cor button newletter*/
    --cor-background-categorias: #ffffff; /*Cor backgorund categorias*/
    --cor-background-beneficios: #ffffff; /*Cor background benefícios*/
    --cor-icone-verificado: #0c7f00; /*Cor icone benefício verificado*/
    --cor-icone-tipo_beneficio: #ff8300; /*Cor icone tipo benefício*/
    --cor-titulos-headers: #252525; /*Cor Titulos página*/
    --cor_botao_login: #7367f0; /*Cor Titulos página*/
    --cor_texto_botao_login: #ffffff; /*Cor Titulos página*/
}

@font-face {
    font-family: 'Cera Pro Thin';
    src: url("../fonts/Cera Pro Thin.otf");
}

@font-face {
    font-family: 'Cera Pro Thin Italic';
    src: url("../fonts/Cera Pro Thin Italic.otf");
}

@font-face {
    font-family: 'Cera Pro Light';
    src: url("../fonts/Cera Pro Light.otf");
}

@font-face {
    font-family: 'Cera Pro Light Italic';
    src: url("../fonts/Cera Pro Light Italic");
}

@font-face {
    font-family: 'Cera Pro Regular';
    src: url("../fonts/Cera Pro Regular.otf");
}

@font-face {
    font-family: 'Cera Pro Regular Italic';
    src: url("../fonts/Cera Pro Regular Italic.otf");
}

@font-face {
    font-family: 'Cera Pro Medium';
    src: url("../fonts/Cera Pro Medium.otf");
}

@font-face {
    font-family: 'Cera Pro Medium Italic';
    src: url("../fonts/Cera Pro Medium Italic.otf");
}

@font-face {
    font-family: 'Cera Pro Bold';
    src: url("../fonts/Cera Pro Bold.otf");
}

@font-face {
    font-family: 'Cera Pro Bold Italic';
    src: url("../fonts/Cera Pro Bold Italic.otf");
}

@font-face {
    font-family: 'Cera Pro Black';
    src: url("../fonts/Cera Pro Black.otf");
}

@font-face {
    font-family: 'Cera Pro Black Italic';
    src: url("../fonts/Cera Pro Bold Italic.otf");
}

/************************************
	Reset
*************************************/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    -webkit-font-smoothing: antialiased;
    font-family: inherit;
    line-height: 1;
}

ul, li {
    list-style: none;
    padding-inline-start: 0;
    margin-block-start: 0;
    margin-block-end: 0;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

a:focus {
    outline: 0;
    box-shadow: 0;
}

/************************************
	Button template
*************************************/
.normal-btn {
    background-color: var(--cor-botoes-paginacao);
    color: #fff;
    font-size: 13px;
    border-radius: 999px;
    -webkit-border-radius: 999px;
    -moz-border-radius: 999px;
    -ms-border-radius: 999px;
    -o-border-radius: 999px;
    padding: 15px 30px;
    text-transform: uppercase;
    font-family: 'Cera Pro Bold';
    border: 2px solid var(--cor-botoes-paginacao);
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
    display: inline-block;
}

.normal-btn:hover {
    background-color: transparent;
    color: var(--cor-botoes-paginacao);
    border: 2px solid var(--cor-botoes-paginacao);
    text-decoration: none;
}

.normal-btn:focus {
    outline: 0;
    box-shadow: 0;
}

.normal-btn.pink {
    background-color: var(--cor-pink);
    color: #fff;
    font-size: 13px;
    border-radius: 999px;
    -webkit-border-radius: 999px;
    -moz-border-radius: 999px;
    -ms-border-radius: 999px;
    -o-border-radius: 999px;
    padding: 15px 30px;
    text-transform: uppercase;
    font-family: 'Cera Pro Bold';
    border: 2px solid var(--cor-pink);
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
    display: inline-block;
}

.normal-btn.pink:hover {
    background-color: transparent;
    color: var(--cor-pink);
    border: 2px solid var(--cor-pink);
    text-decoration: none;
}

.normal-btn.pink:focus {
    outline: 0;
    box-shadow: 0;
}

.normal-btn.coffee {
    background-color: #f79823;
    color: #fff;
    font-size: 13px;
    border-radius: 999px;
    -webkit-border-radius: 999px;
    -moz-border-radius: 999px;
    -ms-border-radius: 999px;
    -o-border-radius: 999px;
    padding: 15px 30px;
    text-transform: uppercase;
    font-family: 'Cera Pro Bold';
    border: 2px solid #f79823;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
    display: inline-block;
}

.normal-btn.coffee:hover {
    background-color: transparent;
    color: #f79823;
    border: 2px solid #f79823;
    text-decoration: none;
}

.normal-btn.coffee:focus {
    outline: 0;
    box-shadow: 0;
}

.normal-btn.black {
    background-color: #000;
    color: #fff;
    font-size: 13px;
    border-radius: 999px;
    -webkit-border-radius: 999px;
    -moz-border-radius: 999px;
    -ms-border-radius: 999px;
    -o-border-radius: 999px;
    padding: 15px 30px;
    text-transform: uppercase;
    font-family: 'Cera Pro Bold';
    border: 2px solid #000;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
    display: inline-block;
}

.normal-btn.black:hover {
    background-color: transparent;
    color: #000;
    border: 2px solid #000;
    text-decoration: none;
}

.normal-btn.black:focus {
    outline: 0;
    box-shadow: 0;
}

.normal-btn.outline {
    background-color: #fff;
    color: var(--cor-botoes-paginacao);
    font-size: 13px;
    border-radius: 999px;
    -webkit-border-radius: 999px;
    -moz-border-radius: 999px;
    -ms-border-radius: 999px;
    -o-border-radius: 999px;
    padding: 15px 30px;
    text-transform: uppercase;
    font-family: 'Cera Pro Bold';
    border: 2px solid var(--cor-botoes-paginacao);
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
    display: inline-block;
}

.normal-btn.outline:hover {
    background-color: var(--cor-botoes-paginacao);
    color: #fff;
    border: 2px solid var(--cor-botoes-paginacao);
    text-decoration: none;
}

.normal-btn.outline:focus {
    outline: 0;
    box-shadow: 0;
}

.no-round-btn {
    background-color: var(--cor-botoes-paginacao);
    color: #fff;
    font-size: 14px;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    padding: 15px 30px;
    text-transform: uppercase;
    font-family: 'Cera Pro Bold';
    border: 2px solid var(--cor-botoes-paginacao);
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
    display: inline-block;
}

.no-round-btn:hover {
    background-color: transparent;
    color: var(--cor-botoes-paginacao);
    border: 2px solid var(--cor-botoes-paginacao);
    text-decoration: none;
}

.no-round-btn:focus {
    outline: 0;
    box-shadow: 0;
}

.no-round-btn.black {
    background-color: #000;
    color: #fff;
    font-size: 14px;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    padding: 15px 30px;
    text-transform: uppercase;
    font-family: 'Cera Pro Bold';
    border: 2px solid #000;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
    display: inline-block;
}

.no-round-btn.black:hover {
    background-color: transparent;
    color: #000;
    border: 2px solid #000;
    text-decoration: none;
}

.no-round-btn.black:focus {
    outline: 0;
    box-shadow: 0;
}

.no-round-btn.pink {
    background-color: var(--cor-pink);
    color: #fff;
    font-size: 14px;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    padding: 15px 30px;
    text-transform: uppercase;
    font-family: 'Cera Pro Bold';
    border: 2px solid var(--cor-pink);
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
    display: inline-block;
}

.no-round-btn.pink:hover {
    background-color: transparent;
    color: var(--cor-pink);
    border: 2px solid var(--cor-pink);
    text-decoration: none;
}

.no-round-btn.pink:focus {
    outline: 0;
    box-shadow: 0;
}

.no-round-btn.coffee {
    background-color: #f79823;
    color: #fff;
    font-size: 14px;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    padding: 15px 30px;
    text-transform: uppercase;
    font-family: 'Cera Pro Bold';
    border: 2px solid #f79823;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
    display: inline-block;
}

.no-round-btn.coffee:hover {
    background-color: transparent;
    color: #f79823;
    border: 2px solid #f79823;
    text-decoration: none;
}

.no-round-btn.coffee:focus {
    outline: 0;
    box-shadow: 0;
}

.no-round-btn.smooth {
    background-color: #eaeff4;
    color: #252525;
    font-size: 14px;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    padding: 15px 30px;
    text-transform: uppercase;
    font-family: 'Cera Pro Bold';
    border: 2px solid #eaeff4;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
    display: inline-block;
}

.no-round-btn.smooth:hover {
    background-color: var(--cor-botoes-paginacao);
    color: #fff;
    border: 2px solid var(--cor-botoes-paginacao);
    text-decoration: none;
}

.no-round-btn.smooth:focus {
    outline: 0;
    box-shadow: 0;
}

.no-round-btn.black {
    background-color: #000;
    color: #fff;
    font-size: 13px;
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
    padding: 15px 30px;
    text-transform: uppercase;
    font-family: 'Cera Pro Bold';
    border: 2px solid #000;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
    display: inline-block;
}

.no-round-btn.black:hover {
    background-color: transparent;
    color: #000;
    border: 2px solid #000;
    text-decoration: none;
}

.no-round-btn.black:focus {
    outline: 0;
    box-shadow: 0;
}

.slider-btn, .slider .slick-arrow {
    background-color: var(--cor-botoes-paginacao);
    color: #fff;
    font-size: 14px;
    border-radius: 999px;
    -webkit-border-radius: 999px;
    -moz-border-radius: 999px;
    -ms-border-radius: 999px;
    -o-border-radius: 999px;
    padding: 10px;
    text-transform: uppercase;
    font-family: 'Cera Pro Bold';
    border: 2px solid var(--cor-botoes-paginacao);
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
    display: inline-block;
}

.slider-btn:hover, .slider .slick-arrow:hover {
    background-color: transparent;
    color: var(--cor-botoes-paginacao);
    border: 2px solid var(--cor-botoes-paginacao);
    text-decoration: none;
}

.slider-btn:focus, .slider .slick-arrow:focus {
    outline: 0;
    box-shadow: 0;
}

.round-icon-btn {
    background-color: #eaeff4;
    color: #252525;
    font-size: 14px;
    border-radius: 999px;
    -webkit-border-radius: 999px;
    -moz-border-radius: 999px;
    -ms-border-radius: 999px;
    -o-border-radius: 999px;
    padding: 0;
    text-transform: uppercase;
    font-family: 'Cera Pro Bold';
    border: 0px solid #fff;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
    display: inline-block;
}

.round-icon-btn:hover {
    background-color: var(--cor-botoes-paginacao);
    color: #fff;
    border: 0px solid #fff;
    text-decoration: none;
}

.round-icon-btn:focus {
    outline: 0;
    box-shadow: 0;
}

.round-icon-btn.pink {
    background-color: #eaeff4;
    color: #252525;
    font-size: 14px;
    border-radius: 999px;
    -webkit-border-radius: 999px;
    -moz-border-radius: 999px;
    -ms-border-radius: 999px;
    -o-border-radius: 999px;
    padding: 0;
    text-transform: uppercase;
    font-family: 'Cera Pro Bold';
    border: 0px solid #fff;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
    display: inline-block;
}

.round-icon-btn.pink:hover {
    background-color: var(--cor-pink);
    color: #fff;
    border: 0px solid #fff;
    text-decoration: none;
}

.round-icon-btn.pink:focus {
    outline: 0;
    box-shadow: 0;
}

.round-icon-btn.coffee {
    background-color: #eaeff4;
    color: #252525;
    font-size: 14px;
    border-radius: 999px;
    -webkit-border-radius: 999px;
    -moz-border-radius: 999px;
    -ms-border-radius: 999px;
    -o-border-radius: 999px;
    padding: 0;
    text-transform: uppercase;
    font-family: 'Cera Pro Bold';
    border: 0px solid #fff;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
    display: inline-block;
}

.round-icon-btn.coffee:hover {
    background-color: #f79823;
    color: #fff;
    border: 0px solid #fff;
    text-decoration: none;
}

.round-icon-btn.coffee:focus {
    outline: 0;
    box-shadow: 0;
}

.button-borderless {
    background-color: transparent;
    color: #252525;
    font-size: 18px;
    border-radius: 999px;
    -webkit-border-radius: 999px;
    -moz-border-radius: 999px;
    -ms-border-radius: 999px;
    -o-border-radius: 999px;
    padding: 0;
    text-transform: uppercase;
    font-family: 'Cera Pro Bold';
    border: 0px solid transparent;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
    display: inline-block;
}

.button-borderless:hover {
    background-color: transparent;
    color: var(--cor-botoes-paginacao);
    border: 0px solid transparent;
    text-decoration: none;
}

.button-borderless:focus {
    outline: 0;
    box-shadow: 0;
}

.tag-btn {
    background-color: #eaeff4;
    color: #636363;
    font-size: 16px;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
    padding: 10px;
    text-transform: uppercase;
    font-family: 'Cera Pro Bold';
    border: 1px solid #ebebeb;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
    display: inline-block;
    text-transform: none;
    font-family: 'Cera Pro Regular';
}

.tag-btn:hover {
    background-color: transparent;
    color: #252525;
    border: 1px solid #636363;
    text-decoration: none;
}

.tag-btn:focus {
    outline: 0;
    box-shadow: 0;
}

/************************************
	Typography template
*************************************/
.titleOff {
    font-family: "Cera Pro Bold";
    font-size: 24px;
    color: #b5b5b5;
    line-height: 50px;
    display: block;
}

.title, .title-bb {
    font-family: "Cera Pro Bold";
    font-size: 44px;
    color: var(--cor-titulos-headers);
    line-height: 50px;
    display: block;
}

@media (max-width: 576px) {
    .title, .title-bb {
        font-size: 30px;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    .title, .title-bb {
        font-size: 38px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .title, .title-bb {
        font-size: 38px;
    }
}

.title.green-underline:after, .title.coffee-underline:after, .coffee-underline.title-bb:after, .green-underline.title-bb:after {
    content: "";
    background-color: var(--cor-botoes-paginacao);
    width: 80px;
    height: 3px;
    display: block;
    margin: auto;
    margin-top: 15px;
}

.title.coffee-underline:after, .coffee-underline.title-bb:after {
    background-color: #f79823;
}

.color-subtitle {
    font-family: "Cera Pro Medium";
    font-size: 16px;
    color: var(--cor-botoes-paginacao);
    line-height: 1;
    display: block;
    text-transform: uppercase;
    letter-spacing: 3.2px;
}

.color-subtitle.pink {
    font-family: "Cera Pro Medium";
    font-size: 16px;
    color: var(--cor-pink);
    line-height: 1;
    display: block;
}

.color-subtitle.coffee {
    font-family: "Cera Pro Medium";
    font-size: 16px;
    color: #f79823;
    line-height: 1;
    display: block;
}

.color-type {
    font-family: "Cera Pro Bold";
    font-size: 14px;
    color: var(--cor-botoes-paginacao);
    line-height: 1;
    display: block;
    text-transform: initial;
}
.border-new{
    border: 1px solid var(--cor-botoes-paginacao);
    border-radius: 20px;
}


.color-type.pink {
    font-family: "Cera Pro Bold";
    font-size: 12px;
    color: var(--cor-pink);
    line-height: 1;
    display: block;
}

.color-type.coffee {
    font-family: "Cera Pro Bold";
    font-size: 12px;
    color: #f79823;
    line-height: 1;
    display: block;
}

.title-bb {
    border-bottom: 1px solid #ebebeb;
    padding-bottom: 10px;
    margin-bottom: 30px;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
}

.title-bb.green-underline:after, .title-bb.title.coffee-underline:after {
    content: "";
    background-color: var(--cor-botoes-paginacao);
    width: 80px;
    height: 3px;
    display: block;
    margin: auto;
    margin-top: 15px;
}

/************************************
    Input form template
*************************************/
.no-round-input {
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border: 1px solid #ebebeb;
    padding: 0 20px;
    height: 50px;
    width: 100%;
    transition: border 0.3s ease;
}

.no-round-input:focus {
    outline: 0;
    box-shadow: none;
    border-color: #b2b2b2;
}

.no-round-input::-webkit-input-placeholder {
    /* WebKit, Blink, Edge */
    font-family: "Cera Pro Regular";
    font-size: 16px;
    color: #d1d1d1;
    line-height: 1;
    display: block;
    line-height: -moz-block-height;
}

.no-round-input:-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: #909;
    font-family: "Cera Pro Regular";
    font-size: 16px;
    color: #d1d1d1;
    line-height: 1;
    display: block;
    line-height: -moz-block-height;
}

.no-round-input::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: #909;
    font-family: "Cera Pro Regular";
    font-size: 16px;
    color: #d1d1d1;
    line-height: 1;
    display: block;
    line-height: -moz-block-height;
}

.no-round-input:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    font-family: "Cera Pro Regular";
    font-size: 16px;
    color: #d1d1d1;
    line-height: 1;
    display: block;
    line-height: -moz-block-height;
}

.no-round-input::-ms-input-placeholder {
    /* Microsoft Edge */
    font-family: "Cera Pro Regular";
    font-size: 16px;
    color: #d1d1d1;
    line-height: 1;
    display: block;
    line-height: -moz-block-height;
}

.no-round-input::placeholder {
    /* Most modern browsers support this now. */
    font-family: "Cera Pro Regular";
    font-size: 16px;
    color: #d1d1d1;
    line-height: 1;
    display: block;
    line-height: -moz-block-height;
}

.no-round-input-bg {
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border: 1px solid #ebebeb;
    padding: 0 20px;
    height: 50px;
    width: 100%;
    transition: border 0.3s ease;
    background-color: #ebebeb;
}

.no-round-input-bg:focus {
    outline: 0;
    box-shadow: none;
    border-color: #b2b2b2;
}

.no-round-input-bg::-webkit-input-placeholder {
    /* WebKit, Blink, Edge */
    font-family: "Cera Pro Regular";
    font-size: 16px;
    color: #d1d1d1;
    line-height: 1;
    display: block;
    line-height: -moz-block-height;
}

.no-round-input-bg:-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: #909;
    font-family: "Cera Pro Regular";
    font-size: 16px;
    color: #d1d1d1;
    line-height: 1;
    display: block;
    line-height: -moz-block-height;
}

.no-round-input-bg::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: #909;
    font-family: "Cera Pro Regular";
    font-size: 16px;
    color: #d1d1d1;
    line-height: 1;
    display: block;
    line-height: -moz-block-height;
}

.no-round-input-bg:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    font-family: "Cera Pro Regular";
    font-size: 16px;
    color: #d1d1d1;
    line-height: 1;
    display: block;
    line-height: -moz-block-height;
}

.no-round-input-bg::-ms-input-placeholder {
    /* Microsoft Edge */
    font-family: "Cera Pro Regular";
    font-size: 16px;
    color: #d1d1d1;
    line-height: 1;
    display: block;
    line-height: -moz-block-height;
}

.no-round-input-bg::placeholder {
    /* Most modern browsers support this now. */
    font-family: "Cera Pro Regular";
    font-size: 16px;
    color: #d1d1d1;
    line-height: 1;
    display: block;
    line-height: -moz-block-height;
}

.textarea-form-bg {
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border: 1px solid #ebebeb;
    padding: 20px 20px;
    height: auto;
    width: 100%;
    transition: border 0.3s ease;
    background-color: #ebebeb;
}

.textarea-form-bg:focus {
    outline: 0;
    box-shadow: none;
    border-color: #b2b2b2;
}

.textarea-form-bg::-webkit-input-placeholder {
    /* WebKit, Blink, Edge */
    font-family: "Cera Pro Regular";
    font-size: 16px;
    color: #d1d1d1;
    line-height: 1;
    display: block;
    line-height: -moz-block-height;
}

.textarea-form-bg:-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: #909;
    font-family: "Cera Pro Regular";
    font-size: 16px;
    color: #d1d1d1;
    line-height: 1;
    display: block;
    line-height: -moz-block-height;
}

.textarea-form-bg::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: #909;
    font-family: "Cera Pro Regular";
    font-size: 16px;
    color: #d1d1d1;
    line-height: 1;
    display: block;
    line-height: -moz-block-height;
}

.textarea-form-bg:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    font-family: "Cera Pro Regular";
    font-size: 16px;
    color: #d1d1d1;
    line-height: 1;
    display: block;
    line-height: -moz-block-height;
}

.textarea-form-bg::-ms-input-placeholder {
    /* Microsoft Edge */
    font-family: "Cera Pro Regular";
    font-size: 16px;
    color: #d1d1d1;
    line-height: 1;
    display: block;
    line-height: -moz-block-height;
}

.textarea-form-bg::placeholder {
    /* Most modern browsers support this now. */
    font-family: "Cera Pro Regular";
    font-size: 16px;
    color: #d1d1d1;
    line-height: 1;
    display: block;
    line-height: -moz-block-height;
}

.round-input {
    border-radius: 999px;
    -webkit-border-radius: 999px;
    -moz-border-radius: 999px;
    -ms-border-radius: 999px;
    -o-border-radius: 999px;
    border: 1px solid #ebebeb;
    padding: 0 25px;
    height: 50px;
    width: 100%;
    transition: border 0.3s ease;
}

.round-input:focus {
    outline: 0;
    box-shadow: none;
    border-color: #b2b2b2;
}

.round-input::-webkit-input-placeholder {
    /* WebKit, Blink, Edge */
    font-family: "Cera Pro Regular";
    font-size: 16px;
    color: #d1d1d1;
    line-height: 1;
    display: block;
    line-height: -moz-block-height;
}

.round-input:-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: #909;
    font-family: "Cera Pro Regular";
    font-size: 16px;
    color: #d1d1d1;
    line-height: 1;
    display: block;
    line-height: -moz-block-height;
}

.round-input::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: #909;
    font-family: "Cera Pro Regular";
    font-size: 16px;
    color: #d1d1d1;
    line-height: 1;
    display: block;
    line-height: -moz-block-height;
}

.round-input:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    font-family: "Cera Pro Regular";
    font-size: 16px;
    color: #d1d1d1;
    line-height: 1;
    display: block;
    line-height: -moz-block-height;
}

.round-input::-ms-input-placeholder {
    /* Microsoft Edge */
    font-family: "Cera Pro Regular";
    font-size: 16px;
    color: #d1d1d1;
    line-height: 1;
    display: block;
    line-height: -moz-block-height;
}

.round-input::placeholder {
    /* Most modern browsers support this now. */
    font-family: "Cera Pro Regular";
    font-size: 16px;
    color: #d1d1d1;
    line-height: 1;
    display: block;
    line-height: -moz-block-height;
}

.no-border {
    border: 0 !important;
}

.select-form {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
    border: 1px solid #ebebeb;
    padding: 10px 30px 10px 20px;
    background-image: url(../images/arrow_carrot-down.svg);
    background-repeat: no-repeat;
    background-size: 15px;
    background-position: 90% center;
}

.select-form:focus {
    outline: 0;
    box-shadow: 0;
    border-color: var(--cor-botoes-paginacao);
}

.textarea-form {
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border: 1px solid #ebebeb;
    padding: 20px 20px;
    height: auto;
    width: 100%;
    -webkit-transition: border 0.3s ease;
    -moz-transition: border 0.3s ease;
    -ms-transition: border 0.3s ease;
    -o-transition: border 0.3s ease;
    transition: border 0.3s ease;
    resize: none;
}

.textarea-form:focus {
    outline: 0;
    box-shadow: none;
    border-color: #b2b2b2;
}

.textarea-form::-webkit-input-placeholder {
    /* WebKit, Blink, Edge */
    font-family: "Cera Pro Regular";
    font-size: 16px;
    color: #d1d1d1;
    line-height: 1;
    display: block;
}

.textarea-form:-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: #909;
    font-family: "Cera Pro Regular";
    font-size: 16px;
    color: #d1d1d1;
    line-height: 1;
    display: block;
}

.textarea-form::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: #909;
    font-family: "Cera Pro Regular";
    font-size: 16px;
    color: #d1d1d1;
    line-height: 1;
    display: block;
}

.textarea-form:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    font-family: "Cera Pro Regular";
    font-size: 16px;
    color: #d1d1d1;
    line-height: 1;
    display: block;
}

.textarea-form::-ms-input-placeholder {
    /* Microsoft Edge */
    font-family: "Cera Pro Regular";
    font-size: 16px;
    color: #d1d1d1;
    line-height: 1;
    display: block;
}

.textarea-form::placeholder {
    /* Most modern browsers support this now. */
    font-family: "Cera Pro Regular";
    font-size: 16px;
    color: #d1d1d1;
    line-height: 1;
    display: block;
}

/************************************
	Benefit
*************************************/
.benefit-block .our-benefits {
    padding: 25px 0;
    box-shadow: 0px 11px 59px 0 rgba(53, 78, 84, 0.06);
    background-color: var(--cor-background-beneficios);
}

.benefit-block .our-benefits.shadowless {
    box-shadow: none;
}

.benefit-block .our-benefits.benefit-border {
    border: 1px solid #ebebeb;
}

.benefit-block .our-benefits .benefit-detail {
    border-right: 1px solid #ebebeb;
}

.benefit-block .our-benefits .benefit-detail.boderless {
    border: 0;
}

.benefit-block .our-benefits .benefit-img {
    max-height: 26px;
    margin-bottom: 10px;
}

.benefit-block .our-benefits .benefit-title {
    font-family: "Cera Pro Bold";
    font-size: 16px;
    color: #252525;
    line-height: 1;
    display: block;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.benefit-block .our-benefits .benefit-describle {
    font-family: "Cera Pro Regular";
    font-size: 16px;
    color: #252525;
    line-height: 1;
    display: block;
}

.benefit-block .our-benefits.column {
    padding: 0;
}

.benefit-block .our-benefits.column .benefit-detail {
    border-right: 0;
    border-bottom: 1px solid #ebebeb;
    padding: 11px;
}

.benefit-block .our-benefits.column .benefit-detail.boderless {
    border-bottom: 0;
}

.benefit-block .our-benefits.column .benefit-img {
    margin-bottom: 0px;
    margin-right: 17px;
    max-height: 30px;
    max-width: 30px;
}

.benefit-block .our-benefits.column .benefit-detail_info {
    flex-grow: 1;
}

@media (max-width: 576px) {
    .benefit-block .our-benefits {
        padding: 10px 0;
    }

    .benefit-block .our-benefits .benefit-detail {
        padding: 15px 0;
        border-right: 0;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    .benefit-block .our-benefits {
        padding: 10px 0;
    }

    .benefit-block .our-benefits .benefit-detail {
        border-right: 0;
        padding: 15px 0;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .benefit-block .our-benefits {
        padding: 10px 0;
    }

    .benefit-block .our-benefits .col-12.col-md-6.col-lg-3:nth-child(2) .benefit-detail {
        border-right: 0;
    }

    .benefit-block .our-benefits .benefit-detail {
        padding: 15px 0;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .benefit-block .our-benefits {
        padding: 10px 0;
    }

    .benefit-block .our-benefits .benefit-detail {
        padding: 15px 0;
    }
}

/************************************
	Product
*************************************/
.list-product {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /*padding: 10px 10px 30px 10px;*/
    /*border: 1px solid #ebebeb;*/
    position: relative;
    z-index: 6;
    transition: 0.3s ease;
    margin-bottom: 30px;
    background-color: var(--cor-background-produtos);
    max-width: 200px;
    min-width: 200px;
}

.product {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px 10px 30px 10px;
    border: 1px solid #ebebeb;
    position: relative;
    z-index: 6;
    transition: 0.3s ease;
    margin-bottom: 30px;
    background-color: var(--cor-background-produtos);
}

.product.borderless {
    border: 0;
}

.product.pink .product-type {
    color: var(--cor-pink);
    height: 30px;
    text-align: center;
}

.product.coffee .product-type {
    color: #f79823;
}

.product:hover {
    /*border-top: 0px solid transparent;*/
    box-shadow: 0px 20px 32px 0 rgba(53, 78, 84, 0.15);
    z-index: 20;
}

/*.product:hover .product-select button {*/
/*    transform: scale(1) translateY(-20px);*/
/*}*/

/*.product:hover .product-name, .product:hover .shopping-cart .product-table .table tbody .product-price, .shopping-cart .product-table .table tbody .product:hover .product-price, .product:hover .shopping-cart .product-table .table tbody .product-total, .shopping-cart .product-table .table tbody .product:hover .product-total, .product:hover .shopping-cart .product-table .shop-compare .compre-table .table tbody .product-availability, .shopping-cart .product-table .shop-compare .compre-table .table tbody .product:hover .product-availability, .product:hover .shop-compare .compre-table .shopping-cart .product-table .table tbody .product-availability, .shop-compare .compre-table .shopping-cart .product-table .table tbody .product:hover .product-availability, .product:hover .shopping-cart .product-table .shop-compare .compre-table .table tbody .product-weight, .shopping-cart .product-table .shop-compare .compre-table .table tbody .product:hover .product-weight, .product:hover .shop-compare .compre-table .shopping-cart .product-table .table tbody .product-weight, .shop-compare .compre-table .shopping-cart .product-table .table tbody .product:hover .product-weight, .product:hover .shopping-cart .product-table .shop-compare .compre-table .table tbody .product-sku, .shopping-cart .product-table .shop-compare .compre-table .table tbody .product:hover .product-sku, .product:hover .shop-compare .compre-table .shopping-cart .product-table .table tbody .product-sku, .shop-compare .compre-table .shopping-cart .product-table .table tbody .product:hover .product-sku {*/
/*    transform: traslateY(20px);*/
/*    opacity: 0;*/
/*    visibility: hidden;*/
/*}*/

.product:hover .product-price,
.product:hover .shopping-cart
.product-table .table tbody .product-total,
.shopping-cart .product-table .table tbody .product:hover .product-total,
.product:hover .shop-compare .compre-table .table .product-availability,
.shop-compare .compre-table .table .product:hover .product-availability,
.product:hover .shop-compare .compre-table .table .product-weight,
.shop-compare .compre-table .table .product:hover .product-weight,
.product:hover .shop-compare .compre-table .table .product-sku,
.shop-compare .compre-table .table .product:hover .product-sku {
    /*transform: translateY(-20px);*/
}

/*.product:hover .product-img img {*/
/*    transform: scale(1.1);*/
/*    transform-origin: 50% 50%;*/
/*}*/

.product:hover:after {
    height: 45px;
    box-shadow: 0px 20px 32px 0 rgba(53, 78, 84, 0.15);
    opacity: 1;
    bottom: -40px;
}

.product:after {
    /*content: "";*/
    position: absolute;
    display: block;
    bottom: 0px;
    left: 0;
    height: 0px;
    width: 100%;
    background-color: white;
    z-index: 0;
    opacity: 0;
    border: 1px solid transparent;
    transition: 0.3s;
}

.product .product-img {
    height: 138px;
    width: 100%;
    display: flex;
    margin-bottom: 30px;
    justify-content: center;
    align-items: center;
}

.product .product-img img {
    max-width: 75%;
    max-height: 100%;
    transition: 0.3s ease;
}

.product .product-type {
    font-family: "Cera Pro Bold";
    font-size: 12px;
    color: var(--cor-botoes-paginacao);
    line-height: 1;
    display: block;
    text-transform: uppercase;
    letter-spacing: 2.4px;
    margin-bottom: 10px;
}

.product .product-name, .product .shopping-cart .product-table .table tbody .product-price, .shopping-cart .product-table .table tbody .product .product-price, .product .shopping-cart .product-table .table tbody .product-total, .shopping-cart .product-table .table tbody .product .product-total, .product .shopping-cart .product-table .shop-compare .compre-table .table tbody .product-availability, .shopping-cart .product-table .shop-compare .compre-table .table tbody .product .product-availability, .product .shop-compare .compre-table .shopping-cart .product-table .table tbody .product-availability, .shop-compare .compre-table .shopping-cart .product-table .table tbody .product .product-availability, .product .shopping-cart .product-table .shop-compare .compre-table .table tbody .product-weight, .shopping-cart .product-table .shop-compare .compre-table .table tbody .product .product-weight, .product .shop-compare .compre-table .shopping-cart .product-table .table tbody .product-weight, .shop-compare .compre-table .shopping-cart .product-table .table tbody .product .product-weight, .product .shopping-cart .product-table .shop-compare .compre-table .table tbody .product-sku, .shopping-cart .product-table .shop-compare .compre-table .table tbody .product .product-sku, .product .shop-compare .compre-table .shopping-cart .product-table .table tbody .product-sku, .shop-compare .compre-table .shopping-cart .product-table .table tbody .product .product-sku {
    font-family: "Cera Pro Medium";
    font-size: 18px;
    color: #252525;
    line-height: 24px;
    display: block;
    margin-bottom: 5px;
    transition: 0.4s;
    visibility: visible;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    margin-bottom: -20px;
    height: 100px;
}

.product .product-price, .product .shopping-cart .product-table .table tbody .product-total, .shopping-cart .product-table .table tbody .product .product-total, .product .shop-compare .compre-table .table .product-availability, .shop-compare .compre-table .table .product .product-availability, .product .shop-compare .compre-table .table .product-weight, .shop-compare .compre-table .table .product .product-weight, .product .shop-compare .compre-table .table .product-sku, .shop-compare .compre-table .table .product .product-sku {
    font-family: "Cera Pro Medium";
    font-size: 20px;
    color: #252525;
    line-height: 1;
    display: block;
    transition: .4s ease;
}

.product .product-price del, .product .shopping-cart .product-table .table tbody .product-total del, .shopping-cart .product-table .table tbody .product .product-total del, .product .shop-compare .compre-table .table .product-availability del, .shop-compare .compre-table .table .product .product-availability del, .product .shop-compare .compre-table .table .product-weight del, .shop-compare .compre-table .table .product .product-weight del, .product .shop-compare .compre-table .table .product-sku del, .shop-compare .compre-table .table .product .product-sku del {
    font-family: "Cera Pro Regular";
    font-size: 16px;
    color: #b2b2b2;
    line-height: 1;
    display: block;
    display: inline-block;
}

.product .product-select {
    position: absolute;
    transition: .3s ease;
    top: 100%;
    z-index: 5;
    bottom: 0;
}

.product .product-select button {
    height: 40px;
    width: 40px;
    transform: scale(0) translateY(0px);
    transiton: 0.4s;
}

/************************************
	Product list view
*************************************/
.product.list-view, .product.full-list-view {
    flex-direction: row;
}

.product.list-view:after, .product.full-list-view:after {
    display: none;
}

.product.list-view:hover .product-select button, .product.full-list-view:hover .product-select button {
    transform: scale(1) translateY(0);
}

.product.list-view:hover .product-name, .product.full-list-view:hover .product-name, .product.list-view:hover .shopping-cart .product-table .table tbody .product-price, .shopping-cart .product-table .table tbody .product.list-view:hover .product-price, .product.full-list-view:hover .shopping-cart .product-table .table tbody .product-price, .shopping-cart .product-table .table tbody .product.full-list-view:hover .product-price, .product.list-view:hover .shopping-cart .product-table .table tbody .product-total, .shopping-cart .product-table .table tbody .product.list-view:hover .product-total, .product.full-list-view:hover .shopping-cart .product-table .table tbody .product-total, .shopping-cart .product-table .table tbody .product.full-list-view:hover .product-total, .product.list-view:hover .shopping-cart .product-table .shop-compare .compre-table .table tbody .product-availability, .shopping-cart .product-table .shop-compare .compre-table .table tbody .product.list-view:hover .product-availability, .product.full-list-view:hover .shopping-cart .product-table .shop-compare .compre-table .table tbody .product-availability, .shopping-cart .product-table .shop-compare .compre-table .table tbody .product.full-list-view:hover .product-availability, .product.list-view:hover .shop-compare .compre-table .shopping-cart .product-table .table tbody .product-availability, .shop-compare .compre-table .shopping-cart .product-table .table tbody .product.list-view:hover .product-availability, .product.full-list-view:hover .shop-compare .compre-table .shopping-cart .product-table .table tbody .product-availability, .shop-compare .compre-table .shopping-cart .product-table .table tbody .product.full-list-view:hover .product-availability, .product.list-view:hover .shopping-cart .product-table .shop-compare .compre-table .table tbody .product-weight, .shopping-cart .product-table .shop-compare .compre-table .table tbody .product.list-view:hover .product-weight, .product.full-list-view:hover .shopping-cart .product-table .shop-compare .compre-table .table tbody .product-weight, .shopping-cart .product-table .shop-compare .compre-table .table tbody .product.full-list-view:hover .product-weight, .product.list-view:hover .shop-compare .compre-table .shopping-cart .product-table .table tbody .product-weight, .shop-compare .compre-table .shopping-cart .product-table .table tbody .product.list-view:hover .product-weight, .product.full-list-view:hover .shop-compare .compre-table .shopping-cart .product-table .table tbody .product-weight, .shop-compare .compre-table .shopping-cart .product-table .table tbody .product.full-list-view:hover .product-weight, .product.list-view:hover .shopping-cart .product-table .shop-compare .compre-table .table tbody .product-sku, .shopping-cart .product-table .shop-compare .compre-table .table tbody .product.list-view:hover .product-sku, .product.full-list-view:hover .shopping-cart .product-table .shop-compare .compre-table .table tbody .product-sku, .shopping-cart .product-table .shop-compare .compre-table .table tbody .product.full-list-view:hover .product-sku, .product.list-view:hover .shop-compare .compre-table .shopping-cart .product-table .table tbody .product-sku, .shop-compare .compre-table .shopping-cart .product-table .table tbody .product.list-view:hover .product-sku, .product.full-list-view:hover .shop-compare .compre-table .shopping-cart .product-table .table tbody .product-sku, .shop-compare .compre-table .shopping-cart .product-table .table tbody .product.full-list-view:hover .product-sku {
    transform: traslateY(0);
    opacity: 1;
    visibility: visible;
}

.product.list-view:hover .product-price, .product.full-list-view:hover .product-price, .product.list-view:hover .shopping-cart .product-table .table tbody .product-total, .shopping-cart .product-table .table tbody .product.list-view:hover .product-total, .product.full-list-view:hover .shopping-cart .product-table .table tbody .product-total, .shopping-cart .product-table .table tbody .product.full-list-view:hover .product-total, .product.list-view:hover .shop-compare .compre-table .table .product-availability, .shop-compare .compre-table .table .product.list-view:hover .product-availability, .product.full-list-view:hover .shop-compare .compre-table .table .product-availability, .shop-compare .compre-table .table .product.full-list-view:hover .product-availability, .product.list-view:hover .shop-compare .compre-table .table .product-weight, .shop-compare .compre-table .table .product.list-view:hover .product-weight, .product.full-list-view:hover .shop-compare .compre-table .table .product-weight, .shop-compare .compre-table .table .product.full-list-view:hover .product-weight, .product.list-view:hover .shop-compare .compre-table .table .product-sku, .shop-compare .compre-table .table .product.list-view:hover .product-sku, .product.full-list-view:hover .shop-compare .compre-table .table .product-sku, .shop-compare .compre-table .table .product.full-list-view:hover .product-sku {
    transform: translateY(0);
}

.product.list-view:hover .product-img_block .quickview, .product.full-list-view:hover .product-img_block .quickview {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}

.product.list-view .product-img_block, .product.full-list-view .product-img_block {
    text-align: center;
    flex: 1 1 33.3333%;
    padding-right: 30px;
}

.product.list-view .product-img_block .product-img, .product.full-list-view .product-img_block .product-img {
    margin-bottom: 0;
    height: auto;
    overflow: hidden;
}

.product.list-view .product-img_block .quickview, .product.full-list-view .product-img_block .quickview {
    font-family: 'Cera Pro Regular';
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    width: 100%;
    padding: 10px;
    -webkit-transform: translateY(50px);
    -moz-transform: translateY(50px);
    -ms-transform: translateY(50px);
    -o-transform: translateY(50px);
    transform: translateY(50px);
}

.product.list-view .product-info_block, .product.full-list-view .product-info_block {
    flex: 1 1 33.3333%;
    padding-right: 30px;
    border-right: 1px solid #ebebeb;
    position: relative;
}

.product.list-view .product-info_block .product-name, .product.full-list-view .product-info_block .product-name, .product.list-view .product-info_block .shopping-cart .product-table .table tbody .product-price, .shopping-cart .product-table .table tbody .product.list-view .product-info_block .product-price, .product.full-list-view .product-info_block .shopping-cart .product-table .table tbody .product-price, .shopping-cart .product-table .table tbody .product.full-list-view .product-info_block .product-price, .product.list-view .product-info_block .shopping-cart .product-table .table tbody .product-total, .shopping-cart .product-table .table tbody .product.list-view .product-info_block .product-total, .product.full-list-view .product-info_block .shopping-cart .product-table .table tbody .product-total, .shopping-cart .product-table .table tbody .product.full-list-view .product-info_block .product-total, .product.list-view .product-info_block .shopping-cart .product-table .shop-compare .compre-table .table tbody .product-availability, .shopping-cart .product-table .shop-compare .compre-table .table tbody .product.list-view .product-info_block .product-availability, .product.full-list-view .product-info_block .shopping-cart .product-table .shop-compare .compre-table .table tbody .product-availability, .shopping-cart .product-table .shop-compare .compre-table .table tbody .product.full-list-view .product-info_block .product-availability, .product.list-view .product-info_block .shop-compare .compre-table .shopping-cart .product-table .table tbody .product-availability, .shop-compare .compre-table .shopping-cart .product-table .table tbody .product.list-view .product-info_block .product-availability, .product.full-list-view .product-info_block .shop-compare .compre-table .shopping-cart .product-table .table tbody .product-availability, .shop-compare .compre-table .shopping-cart .product-table .table tbody .product.full-list-view .product-info_block .product-availability, .product.list-view .product-info_block .shopping-cart .product-table .shop-compare .compre-table .table tbody .product-weight, .shopping-cart .product-table .shop-compare .compre-table .table tbody .product.list-view .product-info_block .product-weight, .product.full-list-view .product-info_block .shopping-cart .product-table .shop-compare .compre-table .table tbody .product-weight, .shopping-cart .product-table .shop-compare .compre-table .table tbody .product.full-list-view .product-info_block .product-weight, .product.list-view .product-info_block .shop-compare .compre-table .shopping-cart .product-table .table tbody .product-weight, .shop-compare .compre-table .shopping-cart .product-table .table tbody .product.list-view .product-info_block .product-weight, .product.full-list-view .product-info_block .shop-compare .compre-table .shopping-cart .product-table .table tbody .product-weight, .shop-compare .compre-table .shopping-cart .product-table .table tbody .product.full-list-view .product-info_block .product-weight, .product.list-view .product-info_block .shopping-cart .product-table .shop-compare .compre-table .table tbody .product-sku, .shopping-cart .product-table .shop-compare .compre-table .table tbody .product.list-view .product-info_block .product-sku, .product.full-list-view .product-info_block .shopping-cart .product-table .shop-compare .compre-table .table tbody .product-sku, .shopping-cart .product-table .shop-compare .compre-table .table tbody .product.full-list-view .product-info_block .product-sku, .product.list-view .product-info_block .shop-compare .compre-table .shopping-cart .product-table .table tbody .product-sku, .shop-compare .compre-table .shopping-cart .product-table .table tbody .product.list-view .product-info_block .product-sku, .product.full-list-view .product-info_block .shop-compare .compre-table .shopping-cart .product-table .table tbody .product-sku, .shop-compare .compre-table .shopping-cart .product-table .table tbody .product.full-list-view .product-info_block .product-sku {
    font-family: "Cera Pro Medium";
    font-size: 20px;
    color: var(--cor-botoes-paginacao);
    line-height: 24px;
    display: inline-block;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
}

.product.list-view .product-info_block .product-name:hover, .product.full-list-view .product-info_block .product-name:hover, .product.list-view .product-info_block .shopping-cart .product-table .table tbody .product-price:hover, .shopping-cart .product-table .table tbody .product.list-view .product-info_block .product-price:hover, .product.full-list-view .product-info_block .shopping-cart .product-table .table tbody .product-price:hover, .shopping-cart .product-table .table tbody .product.full-list-view .product-info_block .product-price:hover, .product.list-view .product-info_block .shopping-cart .product-table .table tbody .product-total:hover, .shopping-cart .product-table .table tbody .product.list-view .product-info_block .product-total:hover, .product.full-list-view .product-info_block .shopping-cart .product-table .table tbody .product-total:hover, .shopping-cart .product-table .table tbody .product.full-list-view .product-info_block .product-total:hover, .product.list-view .product-info_block .shopping-cart .product-table .shop-compare .compre-table .table tbody .product-availability:hover, .shopping-cart .product-table .shop-compare .compre-table .table tbody .product.list-view .product-info_block .product-availability:hover, .product.full-list-view .product-info_block .shopping-cart .product-table .shop-compare .compre-table .table tbody .product-availability:hover, .shopping-cart .product-table .shop-compare .compre-table .table tbody .product.full-list-view .product-info_block .product-availability:hover, .product.list-view .product-info_block .shop-compare .compre-table .shopping-cart .product-table .table tbody .product-availability:hover, .shop-compare .compre-table .shopping-cart .product-table .table tbody .product.list-view .product-info_block .product-availability:hover, .product.full-list-view .product-info_block .shop-compare .compre-table .shopping-cart .product-table .table tbody .product-availability:hover, .shop-compare .compre-table .shopping-cart .product-table .table tbody .product.full-list-view .product-info_block .product-availability:hover, .product.list-view .product-info_block .shopping-cart .product-table .shop-compare .compre-table .table tbody .product-weight:hover, .shopping-cart .product-table .shop-compare .compre-table .table tbody .product.list-view .product-info_block .product-weight:hover, .product.full-list-view .product-info_block .shopping-cart .product-table .shop-compare .compre-table .table tbody .product-weight:hover, .shopping-cart .product-table .shop-compare .compre-table .table tbody .product.full-list-view .product-info_block .product-weight:hover, .product.list-view .product-info_block .shop-compare .compre-table .shopping-cart .product-table .table tbody .product-weight:hover, .shop-compare .compre-table .shopping-cart .product-table .table tbody .product.list-view .product-info_block .product-weight:hover, .product.full-list-view .product-info_block .shop-compare .compre-table .shopping-cart .product-table .table tbody .product-weight:hover, .shop-compare .compre-table .shopping-cart .product-table .table tbody .product.full-list-view .product-info_block .product-weight:hover, .product.list-view .product-info_block .shopping-cart .product-table .shop-compare .compre-table .table tbody .product-sku:hover, .shopping-cart .product-table .shop-compare .compre-table .table tbody .product.list-view .product-info_block .product-sku:hover, .product.full-list-view .product-info_block .shopping-cart .product-table .shop-compare .compre-table .table tbody .product-sku:hover, .shopping-cart .product-table .shop-compare .compre-table .table tbody .product.full-list-view .product-info_block .product-sku:hover, .product.list-view .product-info_block .shop-compare .compre-table .shopping-cart .product-table .table tbody .product-sku:hover, .shop-compare .compre-table .shopping-cart .product-table .table tbody .product.list-view .product-info_block .product-sku:hover, .product.full-list-view .product-info_block .shop-compare .compre-table .shopping-cart .product-table .table tbody .product-sku:hover, .shop-compare .compre-table .shopping-cart .product-table .table tbody .product.full-list-view .product-info_block .product-sku:hover {
    color: var(--cor-botoes-paginacao);
    text-decoration: none;
}

.product.list-view .product-info_block .product-price, .product.full-list-view .product-info_block .product-price, .product.list-view .product-info_block .shopping-cart .product-table .table tbody .product-total, .shopping-cart .product-table .table tbody .product.list-view .product-info_block .product-total, .product.full-list-view .product-info_block .shopping-cart .product-table .table tbody .product-total, .shopping-cart .product-table .table tbody .product.full-list-view .product-info_block .product-total, .product.list-view .product-info_block .shop-compare .compre-table .table .product-availability, .shop-compare .compre-table .table .product.list-view .product-info_block .product-availability, .product.full-list-view .product-info_block .shop-compare .compre-table .table .product-availability, .shop-compare .compre-table .table .product.full-list-view .product-info_block .product-availability, .product.list-view .product-info_block .shop-compare .compre-table .table .product-weight, .shop-compare .compre-table .table .product.list-view .product-info_block .product-weight, .product.full-list-view .product-info_block .shop-compare .compre-table .table .product-weight, .shop-compare .compre-table .table .product.full-list-view .product-info_block .product-weight, .product.list-view .product-info_block .shop-compare .compre-table .table .product-sku, .shop-compare .compre-table .table .product.list-view .product-info_block .product-sku, .product.full-list-view .product-info_block .shop-compare .compre-table .table .product-sku, .shop-compare .compre-table .table .product.full-list-view .product-info_block .product-sku {
    display: none;
}

.product.list-view .product-info_block .product-rated, .product.full-list-view .product-info_block .product-rated {
    margin-bottom: 15px;
}

.product.list-view .product-info_block .product-rated i, .product.full-list-view .product-info_block .product-rated i {
    color: #fac451;
    font-size: 13px;
}

.product.list-view .product-info_block .product-rated span, .product.full-list-view .product-info_block .product-rated span {
    font-family: "Cera Pro Regular";
    font-size: 13px;
    color: #b2b2b2;
    line-height: 1;
    display: block;
    display: inline-block;
}

.product.list-view .product-info_block .product-describe, .product.full-list-view .product-info_block .product-describe {
    font-family: "Cera Pro Regular";
    font-size: 16px;
    color: #636363;
    line-height: 26px;
    display: block;
    margin-bottom: 20px;
}

.product.list-view .product-info_block .product-avaiable, .product.full-list-view .product-info_block .product-avaiable {
    font-family: "Cera Pro Regular";
    font-size: 14px;
    color: #636363;
    line-height: 26px;
    display: block;
}

.product.list-view .product-info_block .product-avaiable span, .product.full-list-view .product-info_block .product-avaiable span {
    color: var(--cor-botoes-paginacao);
    display: inline-block;
}

.product.list-view .product-info_block .add-to-wishlist, .product.full-list-view .product-info_block .add-to-wishlist {
    position: absolute;
    top: 0;
    right: 30px;
}

.product.list-view .product-select, .product.full-list-view .product-select {
    display: none;
}

.product.list-view .product-select_list, .product.full-list-view .product-select_list {
    flex: 1 1 33.3333%;
    padding-left: 30px;
}

.product.list-view .product-select_list .delivery-status, .product.full-list-view .product-select_list .delivery-status {
    width: 100%;
    display: block;
    background-color: #ebebeb;
    text-align: center;
    padding: 15px;
    margin-bottom: 30px;
    font-family: "Cera Pro Regular";
    font-size: 14px;
    color: #252525;
    line-height: 1;
    display: block;
}

.product.list-view .product-select_list .product-price, .product.full-list-view .product-select_list .product-price, .product.list-view .product-select_list .shopping-cart .product-table .table tbody .product-total, .shopping-cart .product-table .table tbody .product.list-view .product-select_list .product-total, .product.full-list-view .product-select_list .shopping-cart .product-table .table tbody .product-total, .shopping-cart .product-table .table tbody .product.full-list-view .product-select_list .product-total, .product.list-view .product-select_list .shop-compare .compre-table .table .product-availability, .shop-compare .compre-table .table .product.list-view .product-select_list .product-availability, .product.full-list-view .product-select_list .shop-compare .compre-table .table .product-availability, .shop-compare .compre-table .table .product.full-list-view .product-select_list .product-availability, .product.list-view .product-select_list .shop-compare .compre-table .table .product-weight, .shop-compare .compre-table .table .product.list-view .product-select_list .product-weight, .product.full-list-view .product-select_list .shop-compare .compre-table .table .product-weight, .shop-compare .compre-table .table .product.full-list-view .product-select_list .product-weight, .product.list-view .product-select_list .shop-compare .compre-table .table .product-sku, .shop-compare .compre-table .table .product.list-view .product-select_list .product-sku, .product.full-list-view .product-select_list .shop-compare .compre-table .table .product-sku, .shop-compare .compre-table .table .product.full-list-view .product-select_list .product-sku {
    color: var(--cor-botoes-paginacao);
    font-size: 24px;
    margin-bottom: 25px;
}

.product.list-view .product-select_list .product-price del, .product.full-list-view .product-select_list .product-price del, .product.list-view .product-select_list .shopping-cart .product-table .table tbody .product-total del, .shopping-cart .product-table .table tbody .product.list-view .product-select_list .product-total del, .product.full-list-view .product-select_list .shopping-cart .product-table .table tbody .product-total del, .shopping-cart .product-table .table tbody .product.full-list-view .product-select_list .product-total del, .product.list-view .product-select_list .shop-compare .compre-table .table .product-availability del, .shop-compare .compre-table .table .product.list-view .product-select_list .product-availability del, .product.full-list-view .product-select_list .shop-compare .compre-table .table .product-availability del, .shop-compare .compre-table .table .product.full-list-view .product-select_list .product-availability del, .product.list-view .product-select_list .shop-compare .compre-table .table .product-weight del, .shop-compare .compre-table .table .product.list-view .product-select_list .product-weight del, .product.full-list-view .product-select_list .shop-compare .compre-table .table .product-weight del, .shop-compare .compre-table .table .product.full-list-view .product-select_list .product-weight del, .product.list-view .product-select_list .shop-compare .compre-table .table .product-sku del, .shop-compare .compre-table .table .product.list-view .product-select_list .product-sku del, .product.full-list-view .product-select_list .shop-compare .compre-table .table .product-sku del, .shop-compare .compre-table .table .product.full-list-view .product-select_list .product-sku del {
    font-size: 14px;
    display: block;
    margin-bottom: 5px;
}

.product.list-view .product-select_list button, .product.full-list-view .product-select_list button {
    margin-bottom: 10px;
    width: 100%;
    padding: 10px;
}

.product.list-view .product-select_list button:last-child, .product.full-list-view .product-select_list button:last-child {
    margin-bottom: 0;
}

.product.list-view .product-select_list .add-to-compare, .product.full-list-view .product-select_list .add-to-compare {
    border: 2px solid #ebebeb;
}

.product.list-view .product-select_list .add-to-compare:hover, .product.full-list-view .product-select_list .add-to-compare:hover {
    border: 2px solid var(--cor-botoes-paginacao);
}

/************************************
	Product full list view
*************************************/
.product.full-list-view .product-img_block {
    flex: 1 1 25%;
}

.product.full-list-view .product-img_block .product-img {
    height: 160px;
}

.product.full-list-view .product-info_block {
    flex: 1 1 55%;
}

.product.full-list-view .product-select_list {
    flex: 1 1 20%;
}

/************************************
	Product grid view
*************************************/
.product.grid-view .product-select_list {
    display: none;
}

.product.grid-view .product-img_block .quickview {
    display: none;
}

.product.grid-view .product-info_block {
    text-align: center;
}

.product.grid-view .product-info_block .product-rated {
    display: none;
}

.product.grid-view .product-info_block .product-describe {
    display: none;
}

.product.grid-view .product-info_block .product-avaiable {
    display: none;
}

.product.grid-view .product-info_block .add-to-wishlist {
    display: none;
}

/************************************
	Mini product
*************************************/
.mini-product {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.mini-product:hover .mini-product_img {
    border: 1px solid var(--cor-botoes-paginacao);
}

.mini-product.border {
    border: 1px solid #ebebeb;
}

.mini-product.border .mini-product_img {
    border: 0;
}

.mini-product.column {
    border-bottom: 1px solid #ebebeb;
    margin-bottom: 0;
}

.mini-product.column .mini-product_img {
    border: 0;
}

.mini-product.coffee .mini-product_info a {
    font-family: "Cera Pro Medium";
    font-size: 18px;
    color: #252525;
    line-height: 1;
    display: inline-block;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
}

.mini-product.coffee .mini-product_info a:hover {
    color: #f79823;
    text-decoration: none;
}

.mini-product.coffee:hover .mini-product_img {
    border: 1px solid #f79823;
}

.mini-product .mini-product_img {
    width: 100px;
    height: 100px;
    border: 1px solid #ebebeb;
    margin-right: 10px;
    padding: 10px;
    transition: border 0.3s ease;
}

.mini-product .mini-product_img a {
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
}

.mini-product .mini-product_img a img {
    width: 80px;
}

.mini-product .mini-product_info {
    flex-grow: 1;
}

.mini-product .mini-product_info a {
    font-family: "Cera Pro Medium";
    font-size: 18px;
    color: #252525;
    line-height: 1;
    display: inline-block;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
    margin-bottom: 10px;
}

.mini-product .mini-product_info a:hover {
    color: var(--cor-botoes-paginacao);
    text-decoration: none;
}

.mini-product .mini-product_info p {
    font-family: "Cera Pro Medium";
    font-size: 18px;
    color: #252525;
    line-height: 1;
    display: block;
}

.mini-product .mini-product_info p del {
    font-family: "Cera Pro Regular";
    font-size: 16px;
    color: #b2b2b2;
    line-height: 1;
    display: block;
    display: inline-block;
}

@media (max-width: 576px) {
    .product {
        text-align: center;
        padding: 10px 10px 20px;
        margin-bottom: 0;
        height: 100%;
    }

    .product.borderless {
        border: 1px solid #ebebeb;
    }

    .product:hover .product-name, .product:hover .shopping-cart .product-table .table tbody .product-price, .shopping-cart .product-table .table tbody .product:hover .product-price, .product:hover .shopping-cart .product-table .table tbody .product-total, .shopping-cart .product-table .table tbody .product:hover .product-total, .product:hover .shopping-cart .product-table .shop-compare .compre-table .table tbody .product-availability, .shopping-cart .product-table .shop-compare .compre-table .table tbody .product:hover .product-availability, .product:hover .shop-compare .compre-table .shopping-cart .product-table .table tbody .product-availability, .shop-compare .compre-table .shopping-cart .product-table .table tbody .product:hover .product-availability, .product:hover .shopping-cart .product-table .shop-compare .compre-table .table tbody .product-weight, .shopping-cart .product-table .shop-compare .compre-table .table tbody .product:hover .product-weight, .product:hover .shop-compare .compre-table .shopping-cart .product-table .table tbody .product-weight, .shop-compare .compre-table .shopping-cart .product-table .table tbody .product:hover .product-weight, .product:hover .shopping-cart .product-table .shop-compare .compre-table .table tbody .product-sku, .shopping-cart .product-table .shop-compare .compre-table .table tbody .product:hover .product-sku, .product:hover .shop-compare .compre-table .shopping-cart .product-table .table tbody .product-sku, .shop-compare .compre-table .shopping-cart .product-table .table tbody .product:hover .product-sku {
        transform: traslateY(0);
        opacity: 1;
        visibility: visible;
    }

    .product:hover .product-price, .product:hover .shopping-cart .product-table .table tbody .product-total, .shopping-cart .product-table .table tbody .product:hover .product-total, .product:hover .shop-compare .compre-table .table .product-availability, .shop-compare .compre-table .table .product:hover .product-availability, .product:hover .shop-compare .compre-table .table .product-weight, .shop-compare .compre-table .table .product:hover .product-weight, .product:hover .shop-compare .compre-table .table .product-sku, .shop-compare .compre-table .table .product:hover .product-sku {
        transform: translateY(0);
    }

    .product .product-img {
        padding: 20px;
    }

    .product .product-select {
        display: none;
    }

    .product:after {
        display: none;
    }

    .product.list-view, .product.full-list-view {
        flex-direction: column;
    }

    .product.list-view .product-img_block, .product.full-list-view .product-img_block {
        margin-bottom: 30px;
        width: 100%;
        padding-right: 0;
    }

    .product.list-view .product-img_block .product-img, .product.full-list-view .product-img_block .product-img {
        height: 138px;
    }

    .product.list-view .product-img_block .quickview-list, .product.full-list-view .product-img_block .quickview-list {
        display: none;
    }

    .product.list-view .product-info_block, .product.full-list-view .product-info_block {
        width: 100%;
        padding-right: 0;
        border-right: 0;
        margin-bottom: 30px;
    }

    .product.list-view .product-info_block .add-to-wishlist, .product.full-list-view .product-info_block .add-to-wishlist {
        right: 0;
    }

    .product.list-view .product-select_list, .product.full-list-view .product-select_list {
        width: 100%;
        padding-left: 0;
    }

    .product.full-list-view .product-info_block .product-describe--1 {
        display: none;
    }

    .no-gutters-sm {
        margin-right: 0;
        margin-left: 0;
    }

    .no-gutters-sm > .col,
    .no-gutters-sm > [class*="col-"] {
        padding-right: 0;
        padding-left: 0;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    .product:hover .product-name, .product:hover .shopping-cart .product-table .table tbody .product-price, .shopping-cart .product-table .table tbody .product:hover .product-price, .product:hover .shopping-cart .product-table .table tbody .product-total, .shopping-cart .product-table .table tbody .product:hover .product-total, .product:hover .shopping-cart .product-table .shop-compare .compre-table .table tbody .product-availability, .shopping-cart .product-table .shop-compare .compre-table .table tbody .product:hover .product-availability, .product:hover .shop-compare .compre-table .shopping-cart .product-table .table tbody .product-availability, .shop-compare .compre-table .shopping-cart .product-table .table tbody .product:hover .product-availability, .product:hover .shopping-cart .product-table .shop-compare .compre-table .table tbody .product-weight, .shopping-cart .product-table .shop-compare .compre-table .table tbody .product:hover .product-weight, .product:hover .shop-compare .compre-table .shopping-cart .product-table .table tbody .product-weight, .shop-compare .compre-table .shopping-cart .product-table .table tbody .product:hover .product-weight, .product:hover .shopping-cart .product-table .shop-compare .compre-table .table tbody .product-sku, .shopping-cart .product-table .shop-compare .compre-table .table tbody .product:hover .product-sku, .product:hover .shop-compare .compre-table .shopping-cart .product-table .table tbody .product-sku, .shop-compare .compre-table .shopping-cart .product-table .table tbody .product:hover .product-sku {
        transform: traslateY(0);
        opacity: 1;
    }

    .product:hover .product-price, .product:hover .shopping-cart .product-table .table tbody .product-total, .shopping-cart .product-table .table tbody .product:hover .product-total, .product:hover .shop-compare .compre-table .table .product-availability, .shop-compare .compre-table .table .product:hover .product-availability, .product:hover .shop-compare .compre-table .table .product-weight, .shop-compare .compre-table .table .product:hover .product-weight, .product:hover .shop-compare .compre-table .table .product-sku, .shop-compare .compre-table .table .product:hover .product-sku {
        transform: translateY(0);
    }

    .product .product-select {
        display: none;
    }

    .product:after {
        display: none;
    }

    .product.full-list-view .product-img_block {
        flex: 1 1 33.33333%;
    }

    .product.full-list-view .product-info_block {
        flex: 1 1 33.33333%;
    }

    .product.full-list-view .product-info_block .product-describe--1 {
        display: none;
    }

    .product.full-list-view .product-select_list {
        flex: 1 1 33.33333%;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .product.full-list-view .product-info_block {
        flex: 1 1 45%;
    }

    .product.full-list-view .product-select_list {
        flex: 1 1 30%;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .product.full-list-view .product-info_block {
        flex: 1 1 45%;
    }

    .product.full-list-view .product-select_list {
        flex: 1 1 30%;
    }
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .product.full-list-view .product-info_block {
        flex: 1 1 45%;
    }

    .product.full-list-view .product-select_list {
        flex: 1 1 30%;
    }
}

/************************************
	Mobile menu
*************************************/
#mobile-menu {
    margin-bottom: 15px;
    padding: 15px 0;
    display: none;
}

#mobile-menu .mobile-menu_block {
    height: 100%;
}

#mobile-menu .mobile-menu_block .mobile-menu--control {
    font-size: 18px;
    color: #252525;
    line-height: 1;
    display: inline-block;
    transition: 0.3s ease;
}

#mobile-menu .mobile-menu_block .mobile-menu--control:hover {
    color: var(--cor-botoes-paginacao);
    text-decoration: none;
}

#mobile-menu .mobile-menu_block .ogamin-mobile-menu_bg {
    position: fixed;
    width: 100vw;
    height: 100vh;
    z-index: 110;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.65);
    display: none;
}

#mobile-menu .mobile-menu_block #ogami-mobile-menu {
    position: fixed;
    background-color: #fff;
    top: 0;
    left: -100%;
    z-index: 999;
    width: 80vw;
    height: 100vh;
    transition: 0.4s;
    overflow-y: auto;
}

#mobile-menu .mobile-menu_block #ogami-mobile-menu #mobile-menu--closebtn {
    width: 100%;
}

#mobile-menu .mobile-menu_block #ogami-mobile-menu .sub-menu--expander i {
    font-size: 20px;
}

#mobile-menu .mobile-menu_block #ogami-mobile-menu .mobile-menu_items {
    padding: 0 30px;
    margin-bottom: 20px;
}

#mobile-menu .mobile-menu_block #ogami-mobile-menu .mobile-menu_items .toggleable {
    position: relative;
    padding: 10px 0;
}

#mobile-menu .mobile-menu_block #ogami-mobile-menu .mobile-menu_items .toggleable .menu-item {
    font-family: "Cera Pro Regular";
    font-size: 18px;
    color: var(--cor-item-menu);
    line-height: 1;
    display: block;
    line-height: 28px;
}

#mobile-menu .mobile-menu_block #ogami-mobile-menu .mobile-menu_items .toggleable .menu-item.active {
    color: var(--cor-botoes-paginacao);
}

#mobile-menu .mobile-menu_block #ogami-mobile-menu .mobile-menu_items .toggleable .sub-menu {
    margin-top: 15px;
    margin-left: 30px;
}

#mobile-menu .mobile-menu_block #ogami-mobile-menu .mobile-menu_items .toggleable .sub-menu li a {
    font-family: "Cera Pro Regular";
    font-size: 15px;
    color: var(--cor-item-menu);;
    line-height: 1;
    display: block;
    line-height: 30px;
    text-transform: capitalize;
}

#mobile-menu .mobile-menu_block #ogami-mobile-menu .mobile-menu_items .toggleable span {
    position: absolute;
    right: 0;
    top: 10px;
}

#mobile-menu .mobile-menu_block #ogami-mobile-menu .mobile-login {
    padding: 0 30px;
    margin-bottom: 30px;
}

#mobile-menu .mobile-menu_block #ogami-mobile-menu .mobile-login h2 {
    font-family: "Cera Pro Bold";
    font-size: 20px;
    color: #252525;
    line-height: 1;
    display: block;
    margin-bottom: 15px;
}

#mobile-menu .mobile-menu_block #ogami-mobile-menu .mobile-login a {
    font-family: "Cera Pro Regular";
    font-size: 18px;
    color: #252525;
    line-height: 1;
    display: inline-block;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
    display: block;
    line-height: 28px;
    padding: 5px 0;
}

#mobile-menu .mobile-menu_block #ogami-mobile-menu .mobile-login a:hover {
    color: var(--cor-botoes-paginacao);
    text-decoration: none;
}

#mobile-menu .mobile-menu_block #ogami-mobile-menu .mobile-social {
    padding: 0 30px;
}

#mobile-menu .mobile-menu_block #ogami-mobile-menu .mobile-social a {
    font-size: 18px;
    color: #b2b2b2;
    line-height: 1;
    display: inline-block;
    transition: 0.3s ease;
    margin-right: 25px;
}

#mobile-menu .mobile-menu_block #ogami-mobile-menu .mobile-social a:hover {
    color: var(--cor-botoes-paginacao);
    text-decoration: none;
}

#mobile-menu .mobile-menu_logo {
    height: 100%;
}

#mobile-menu .mobile-product_function {
    height: 100%;
}

#mobile-menu .mobile-product_function a {
    font-size: 18px;
    color: #252525;
    line-height: 1;
    display: inline-block;
    transition: 0.3s ease;
    padding-left: 15px;
}

#mobile-menu .mobile-product_function a:hover {
    color: var(--cor-botoes-paginacao);
    text-decoration: none;
}

@media (max-width: 576px) {
    #mobile-menu {
        display: block;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    #mobile-menu {
        display: block;
    }

    #mobile-menu .mobile-menu_block #ogami-mobile-menu {
        width: 50vw;
    }

    #menus-categorias {
        display: none;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    #mobile-menu {
        display: block;
    }

    #mobile-menu .mobile-menu_block #ogami-mobile-menu {
        width: 50vw;
    }

    #menus-categorias {
        display: none;
    }
}

/************************************
	Mini tab title
*************************************/
.mini-tab-title {
    border-bottom: 1px solid #ebebeb;
    margin-bottom: 30px;
}

.mini-tab-title.underline .title, .mini-tab-title.underline .title-bb {
    font-size: 24px;
    position: relative;
}

.mini-tab-title.underline .title:after, .mini-tab-title.underline .title-bb:after {
    content: "";
    position: absolute;
    height: 3px;
    width: 90px;
    display: block;
    background-color: var(--cor-botoes-paginacao);
    bottom: 0;
}

.mini-tab-title.underline.pink .title:after, .mini-tab-title.underline.pink .title-bb:after {
    background-color: var(--cor-pink);
}

.mini-tab-title.underline.pink .tab-control a.active {
    color: var(--cor-pink);
}

.mini-tab-title.underline.pink .tab-control a.active:after {
    background-color: var(--cor-pink);
}

.mini-tab-title .title, .mini-tab-title .title-bb {
    white-space: nowrap;
}

.mini-tab-title .tab-control {
    padding-bottom: 0;
    overflow-x: visible;
}

.mini-tab-title .tab-control a.active {
    color: var(--cor-botoes-paginacao);
}

.mini-tab-title .tab-control a.active:after {
    content: "";
    position: absolute;
    height: 3px;
    width: 100%;
    display: block;
    background-color: var(--cor-botoes-paginacao);
    bottom: -16px;
}

@media (max-width: 576px) {
    .mini-tab-title .title, .mini-tab-title .title-bb {
        margin-bottom: 15px;
    }

    .mini-tab-title .tab-control {
        padding-bottom: 16px;
        overflow-x: auto;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    .mini-tab-title .title, .mini-tab-title .title-bb {
        margin-bottom: 35px;
    }

    .mini-tab-title .tab-control {
        padding-bottom: 16px;
        overflow-x: auto;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .mini-tab-title .title, .mini-tab-title .title-bb {
        font-size: 26px;
    }
}

/************************************
	Tab template
*************************************/
.tab-control {
    text-align: center;
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 10px;
    margin-bottom: 0;
}

.tab-control li {
    display: inline-block;
    padding: 0 15px;
}

.tab-control li:first-child {
    padding-left: 0;
}

.tab-control li:last-child {
    padding-right: 0;
}

.tab-control li a {
    font-family: "Cera Pro Medium";
    font-size: 18px;
    color: #b2b2b2;
    line-height: 1;
    display: inline-block;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
    position: relative;
}

.tab-control li a:hover {
    color: #b2b2b2;
    text-decoration: none;
}

.tab-control li a.active {
    color: var(--cor-botoes-paginacao);
}

.tab-control li a.active:after {
    content: "";
    position: absolute;
    height: 4px;
    width: 100%;
    display: block;
    background-color: var(--cor-botoes-paginacao);
    bottom: -10px;
}

/************************************
	Breadcrumb
*************************************/
.ogami-breadcrumb {
    margin: 30px 0;
}

.ogami-breadcrumb ul {
    padding-top: 30px;
    border-top: 1px solid #ebebeb;
}

.ogami-breadcrumb ul li {
    display: inline-block;
}

.ogami-breadcrumb ul li:last-child .breadcrumb-link:after {
    display: none;
}

.ogami-breadcrumb ul li .breadcrumb-link {
    font-family: "Cera Pro Medium";
    font-size: 16px;
    color: #252525;
    line-height: 1;
    display: inline-block;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
    line-height: 24px;
}

.ogami-breadcrumb ul li .breadcrumb-link:hover {
    color: #252525;
    text-decoration: none;
}

.ogami-breadcrumb ul li .breadcrumb-link i {
    padding-right: 5px;
}

.ogami-breadcrumb ul li .breadcrumb-link:after {
    content: "\35";
    font-family: 'ElegantIcons';
    color: #b2b2b2;
    padding: 0 10px;
}

.ogami-breadcrumb ul li .breadcrumb-link.active {
    color: #b2b2b2;
}

/************************************
	Shop sidebar
*************************************/
.filter-sidebar--background {
    background-color: rgba(0, 0, 0, 0.65);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    height: 100vh;
    width: 100vw;
}

#show-filter-sidebar {
    display: inline-block;
}

#show-filter-sidebar h5 {
    cursor: pointer;
    font-family: "Cera Pro Bold";
    font-size: 18px;
    color: #252525;
    line-height: 1;
    display: inline-block;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
}

#show-filter-sidebar h5:hover {
    color: var(--cor-botoes-paginacao);
    text-decoration: none;
}

#show-filter-sidebar h5 i {
    margin-right: 15px;
}

.shop-sidebar.fixed {
    background-color: #fff;
    position: fixed;
    height: 100vh;
    width: 80vw;
    overflow-y: auto;
    padding: 30px;
    top: 0;
    left: -100%;
    z-index: 100;
    transition: 0.3s ease;
}

.shop-sidebar #filter-sidebar--closebtn {
    width: 100%;
    margin-bottom: 30px;
}

.shop-sidebar .shop-sidebar_department .department_top .title, .shop-sidebar .shop-sidebar_department .department_top .title-bb {
    font-size: 24px;
}

.shop-sidebar .shop-sidebar_department .department_bottom .department-link {
    font-family: "Cera Pro Regular";
    font-size: 16px;
    color: #252525;
    line-height: 39px;
    display: inline-block;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
}

.shop-sidebar .shop-sidebar_department .department_bottom .department-link:hover {
    color: var(--cor-botoes-paginacao);
    text-decoration: none;
}

.shop-sidebar .shop-sidebar_price-filter {
    margin-bottom: 30px;
}

.shop-sidebar .shop-sidebar_price-filter .price-filter_bottom .filter-group {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 20px;
}

.shop-sidebar .shop-sidebar_price-filter .price-filter_bottom .filter-group #amount {
    font-family: "Cera Pro Regular";
    font-size: 16px;
    color: #252525;
    line-height: 39px;
    display: block;
    border: 0;
    width: 100px;
}

.shop-sidebar .shop-sidebar_price-filter .price-filter_bottom .filter-group button {
    height: 34px;
    width: 80px;
    padding: 0;
}

.shop-sidebar .shop-sidebar_price-filter .price-filter_bottom .slider-bar {
    height: 3px;
    background-color: #ebebeb;
    border: 0;
}

.shop-sidebar .shop-sidebar_price-filter .price-filter_bottom .range-bar {
    background-color: var(--cor-botoes-paginacao);
}

.shop-sidebar .shop-sidebar_price-filter .price-filter_bottom .handle {
    border-radius: 999px;
    background-color: var(--cor-botoes-paginacao);
    top: -5px;
    height: 15px;
    width: 15px;
}

.shop-sidebar .shop-sidebar_price-filter .price-filter_bottom .ui-state-active {
    border: 0;
}

.shop-sidebar .shop-sidebar_color-filter {
    margin-bottom: 30px;
}

.shop-sidebar .shop-sidebar_color-filter .color-filter_bottom .color {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.shop-sidebar .shop-sidebar_color-filter .color-filter_bottom .color:last-child {
    margin-bottom: 0;
}

.shop-sidebar .shop-sidebar_color-filter .color-filter_bottom .color .visible-color {
    display: inline-block;
    height: 23px;
    width: 23px;
    border-radius: 999px;
    margin-right: 15px;
}

.shop-sidebar .shop-sidebar_color-filter .color-filter_bottom .color a {
    font-family: "Cera Pro Regular";
    font-size: 16px;
    color: #252525;
    line-height: 1;
    display: inline-block;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
    display: inline-block;
}

.shop-sidebar .shop-sidebar_color-filter .color-filter_bottom .color a:hover {
    color: #252525;
    text-decoration: none;
}

.shop-sidebar .shop-sidebar_size .size_bottom .size {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.shop-sidebar .shop-sidebar_size .size_bottom .size input {
    margin-right: 15px;
    height: 15px;
    width: 15px;
}

.shop-sidebar .shop-sidebar_size .size_bottom .size label {
    font-family: "Cera Pro Regular";
    font-size: 16px;
    color: #252525;
    line-height: 1;
    display: block;
    margin-bottom: 0;
}

.shop-sidebar .shop-sidebar_tag .tag_bottom .tag-btn {
    margin: 0 8px 8px 0;
}

@media (max-width: 576px) {
    .shop-sidebar {
        margin-bottom: 30px;
    }

    .shop-sidebar .mini-tab-title .title, .shop-sidebar .mini-tab-title .title-bb {
        margin-bottom: 0;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    .shop-sidebar {
        margin-bottom: 30px;
    }

    .shop-sidebar .mini-tab-title .title, .shop-sidebar .mini-tab-title .title-bb {
        margin-bottom: 0;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .shop-sidebar {
        margin-bottom: 30px;
    }

    .shop-sidebar.fixed {
        width: 50vw;
    }

    .shop-sidebar .mini-tab-title .title, .shop-sidebar .mini-tab-title .title-bb {
        margin-bottom: 0;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .shop-sidebar {
        margin-bottom: 30px;
    }

    .shop-sidebar.fixed {
        width: 50vw;
    }
}

/************************************
	Blog sidebar
*************************************/
.blog-sidebar #filter-sidebar--closebtn {
    margin-bottom: 30px;
    width: 100%;
}

.blog-sidebar.fixed {
    background-color: #fff;
    position: fixed;
    height: 100vh;
    width: 80vw;
    overflow-y: auto;
    padding: 30px;
    top: 0;
    left: -100%;
    z-index: 100;
    transition: 0.3s ease;
}

.blog-sidebar .blog-sidebar_search {
    margin-bottom: 30px;
}

.blog-sidebar .blog-sidebar_search .search_block input {
    background-image: url("../images/blog/icon_search2.svg");
    background-position: 90% center;
    background-size: 15px;
    background-repeat: no-repeat;
}

.blog-sidebar .blog-sidebar_categories .categories_bottom .category-link {
    font-family: "Cera Pro Regular";
    font-size: 16px;
    color: #252525;
    line-height: 39px;
    display: inline-block;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
}

.blog-sidebar .blog-sidebar_categories .categories_bottom .category-link:hover {
    color: var(--cor-botoes-paginacao);
    text-decoration: none;
}

.blog-sidebar .blog-sidebar_recent-post .recent-post_bottom .mini-post_block {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.blog-sidebar .blog-sidebar_recent-post .recent-post_bottom .mini-post_block .mini-post_img {
    max-width: 80px;
    max-height: 80px;
    margin-right: 15px;
}

.blog-sidebar .blog-sidebar_recent-post .recent-post_bottom .mini-post_block .mini-post_img a {
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-sidebar .blog-sidebar_recent-post .recent-post_bottom .mini-post_block .mini-post_img a img {
    width: 80px;
    height: 80px;
}

.blog-sidebar .blog-sidebar_recent-post .recent-post_bottom .mini-post_block .mini-post_text {
    flex-grow: 1;
}

.blog-sidebar .blog-sidebar_recent-post .recent-post_bottom .mini-post_block .mini-post_text a {
    font-family: "Cera Pro Bold";
    font-size: 16px;
    color: #252525;
    line-height: 24px;
    display: inline-block;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
    margin-bottom: 5px;
}

.blog-sidebar .blog-sidebar_recent-post .recent-post_bottom .mini-post_block .mini-post_text a:hover {
    color: var(--cor-botoes-paginacao);
    text-decoration: none;
}

.blog-sidebar .blog-sidebar_recent-post .recent-post_bottom .mini-post_block .mini-post_text h5 {
    font-family: "Cera Pro Regular";
    font-size: 12px;
    color: #b2b2b2;
    line-height: 18px;
    display: block;
}

.blog-sidebar .blog-sidebar_tags .tags_bottom .tag-btn {
    margin: 0 8px 8px 0;
}

@media (min-width: 768px) and (max-width: 991px) {
    .blog-sidebar.fixed {
        width: 50vw;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .blog-sidebar.fixed {
        width: 50vw;
    }
}

/************************************
	Order step
*************************************/
.order-step {
    margin-bottom: 50px;
}

.order-step .order-step_block .step-block {
    overflow: hidden;
    position: relative;
    text-align: center;
    background: #fff;
}

.order-step .order-step_block .step-block::before {
    content: '';
    z-index: 1;
    position: absolute;
    top: 0;
    left: -43px;
    border: 1px solid #ededed;
    width: 60px;
    height: 60px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    background: #fff;
}

.order-step .order-step_block .step-block::after {
    position: absolute;
    content: '';
    border-width: 1px 0;
    border-style: solid;
    border-color: #ededed;
    width: calc(100% - 30px);
    height: 100%;
    z-index: 5;
    left: 0;
    top: 0;
}

.order-step .order-step_block .step-block.active {
    background-color: var(--cor-botoes-paginacao);
}

.order-step .order-step_block .step-block.active .step h2 {
    color: #fff;
}

.order-step .order-step_block .step-block.active .step span {
    color: rgba(255, 255, 255, 0.25);
}

.order-step .order-step_block .step-block.active .step::before {
    display: none;
}

.order-step .order-step_block .step-block.active .step::after {
    background-color: var(--cor-botoes-paginacao);
}

.order-step .order-step_block .step-block .step {
    height: 60px;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.order-step .order-step_block .step-block .step h2 {
    font-family: "Cera Pro Medium";
    font-size: 20px;
    color: #252525;
    line-height: 1;
    display: block;
    text-transform: uppercase;
    position: unset;
    z-index: 2;
}

.order-step .order-step_block .step-block .step span {
    font-family: "Cera Pro Bold";
    font-size: 48px;
    color: rgba(45, 44, 64, 0.1);
    line-height: 1;
    display: block;
    position: absolute;
    right: 35px;
    user-select: none;
    z-index: 5;
}

.order-step .order-step_block .step-block .step::before {
    content: '';
    z-index: 1;
    position: absolute;
    top: 0;
    right: 12px;
    border: 1px solid #ededed;
    border-width: 1px 1px 0 0;
    width: 60px;
    height: 60px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    background: #fff;
    z-index: 2;
}

.order-step .order-step_block .step-block .step::after {
    content: '';
    z-index: 1;
    position: absolute;
    top: 0;
    right: -30px;
    border-style: solid;
    border-color: #fff #fff #fff transparent;
    border-width: 30px;
    width: 60px;
    height: 60px;
    background: #fff;
}

.order-step .order-step_block .step-block--1::before {
    display: none;
}

.order-step .order-step_block .step-block--1::after {
    border-width: 1px 0 1px 1px;
}

@media (max-width: 576px) {
    .order-step .order-step_block .step-block {
        margin-bottom: 15px;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    .order-step .order-step_block .step-block {
        margin-bottom: 15px;
    }
}

/************************************
	Animation
*************************************/
@-webkit-keyframes mymove {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

@-moz-keyframes mymove {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

@-o-keyframes mymove {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes mymove {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

/************************************
	Preload
*************************************/
#preload {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: white;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

#preload .preload-box .line {
    margin: 0 5px;
    display: inline-block;
    width: 15px;
    height: 15px;
    border-radius: 15px;
    background-color: var(--cor-botoes-paginacao);
}

#preload .preload-box .line:nth-last-child(1) {
    animation: loadingC .6s .1s linear infinite;
}

#preload .preload-box .line:nth-last-child(2) {
    animation: loadingC .6s .2s linear infinite;
}

#preload .preload-box .line:nth-last-child(3) {
    animation: loadingC .6s .3s linear infinite;
}

@keyframes loadingC {

0
{
    transform: translate(0, 0)
;
}

50
%
{
    transform: translate(0, 15px)
;
}

100
%
{
    transform: translate(0, 0)
;
}
}

/************************************
	Quickview
*************************************/
#quickview {
    /*position: fixed;*/
    /*top: 0;*/
    /*left: 0;*/
    /*width: 100vw;*/
    /*height: 100vh;*/
    /*background-color: rgba(0, 0, 0, 0.27);*/
    z-index: 999;
    /*display: flex;*/
    align-items: center;
    justify-content: center;
    -webkit-border-radius: 20px !important;
}

#quickview .quickview-box {
    /*position: relative;*/
    /*width: 1200px;*/
    /*min-height: 400px;*/
    background-color: #fff;
    padding: 30px 40px 50px 40px;
    cursor: default;
}

#quickview .quickview-box #quickview-close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    height: 30px;
    width: 30px;
    z-index: 200;
}

#quickview .quickview-box .shop-detail_img .big-img .big-img_block {
    height: auto !important;
}

#quickview .quickview-box .shop-detail_img .slide-img {
    height: auto !important;
}

#quickview .quickview-box .shop-detail_info .product-describe {
    margin-bottom: 5px !important;
    min-height: 5vh;
}

#quickview .quickview-box .shop-detail_info .product-select {
    margin-bottom: 30px !important;
}

@media (max-width: 576px) {
    #quickview .quickview-box {
        height: 80%;
        padding: 15px;
        overflow-y: auto;
        display: inline-block;
    }

    #quickview .quickview-box .shop-detail_img #zoom-btn {
        display: none;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    #quickview .quickview-box {
        height: 80%;
        padding: 15px;
        overflow-y: auto;
        display: inline-block;
    }

    #quickview .quickview-box .shop-detail_img #zoom-btn {
        display: none;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    #quickview .quickview-box {
        height: 85%;
        padding: 30px;
        overflow-y: auto;
        display: inline-block;
    }

    #quickview .quickview-box .shop-detail_img #zoom-btn {
        display: none;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    #quickview .quickview-box {
        height: 85%;
        padding: 30px;
        overflow-y: auto;
        display: inline-block;
    }

    #quickview .quickview-box .shop-detail_img #zoom-btn {
        display: none;
    }
}

@media (min-width: 1200px) and (max-width: 1399px) {
    #quickview .quickview-box {
        /*width: 60%;*/
        padding: 30px;
        overflow-y: auto;
        display: inline-block;
    }

    #quickview .quickview-box .shop-detail_img #zoom-btn {
        display: none;
    }
}

/************************************
	Header
*************************************/
header .header-block {
    height: auto;
    background-color: #f5f5f5;
    padding: 15px;
}

header .header-block .header-left p {
    font-family: "Cera Pro Regular";
    font-size: 16px;
    color: #252525;
    line-height: 1;
    display: block;
}

header .header-block .header-left p i {
    margin-right: 15px;
}

header .header-block .header-left p:last-child {
    margin-right: 0;
}

header .header-block .header-left p:after {
    content: "|";
    padding: 0 15px;
    line-height: 1;
    color: #ebebeb;
}

header .header-block .header-left p:last-child:after {
    display: none;
}

header .header-block .header-right .social-link a {
    font-family: "Cera Pro Regular";
    font-size: 16px;
    color: #252525;
    line-height: 1;
    display: inline-block;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
    padding: 0 10px;
}

header .header-block .header-right .social-link a:hover {
    color: var(--cor-botoes-paginacao);
    text-decoration: none;
}

header .header-block .header-right .social-link a:first-child {
    padding-left: 0;
}

header .header-block .header-right .social-link a:last-child {
    padding-right: 0;
}

header .header-block .header-right .social-link:after {
    content: "|";
    padding: 0 10px;
    line-height: 1;
    color: #ebebeb;
}

header .header-block .header-right .language .selected-language, header .header-block .header-right .language .selected-language .list-language li {
    font-family: "Cera Pro Regular";
    font-size: 16px;
    color: #252525;
    line-height: 1;
    display: block;
    cursor: pointer;
    display: inline-block;
    position: relative;
}

header .header-block .header-right .language .selected-language:hover .language-list, header .header-block .header-right .language .selected-language .list-language li:hover .language-list {
    display: block;
}

header .header-block .header-right .language .selected-language img, header .header-block .header-right .language .selected-language .list-language li img {
    max-height: 13px;
    margin-top: -5px;
    margin-right: 10px;
}

header .header-block .header-right .language .selected-language:hover .list-language, header .header-block .header-right .language .selected-language .list-language li:hover .list-language {
    display: block;
}

header .header-block .header-right .language .selected-language .list-language, header .header-block .header-right .language .selected-language .list-language li .list-language {
    position: absolute;
    background-color: #fff;
    z-index: 1;
    top: 20px;
    padding: 0 5px;
    box-shadow: 0 0 18px 0 rgba(0, 0, 0, 0.1);
    display: none;
}

header .header-block .header-right .language .selected-language .list-language li {
    padding: 10px 0;
}

header .header-block .header-right .language:after {
    content: "|";
    padding: 0 10px;
    line-height: 1;
    color: #ebebeb;
}

header .header-block .header-right .login a {
    font-family: "Cera Pro Regular";
    font-size: 16px;
    color: #252525;
    line-height: 1;
    display: inline-block;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
}

header .header-block .header-right .login a:hover {
    color: var(--cor-botoes-paginacao);
    text-decoration: none;
}

header .header-block .header-right .login a i {
    margin-right: 15px;
}

header .navigation {
    padding: 20px 0;
}

header .navigation .navgition-menu {
    height: 100%;
}

header .navigation .navgition-menu ul .toggleable {
    position: relative;
    display: inline-block;
    padding: 0 20px;
}

header .navigation .navgition-menu ul .toggleable:last-child {
    padding-right: 0;
}

header .navigation .navgition-menu ul .toggleable:last-child .menu-item:after {
    display: none;
}

header .navigation .navgition-menu ul .toggleable:first-child {
    padding-left: 0;
}

header .navigation .navgition-menu ul .toggleable:hover .sub-menu {
    opacity: 1;
    visibility: visible;
}

header .navigation .navgition-menu ul .toggleable .menu-item {
    font-family: "Cera Pro Bold";
    font-size: 16px;
    color: var(--cor-item-menu);
    line-height: 1;
    display: inline-block;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
    text-transform: uppercase;
    padding: 10px 0;
}

header .navigation .navgition-menu ul .toggleable .menu-item:hover {
    color: var(--cor-botoes-paginacao);
    text-decoration: none;
}

/*header .navigation .navgition-menu ul .toggleable .menu-item:after {*/
/*    content: "\33";*/
/*    font-family: 'ElegantIcons';*/
/*    margin-left: 10px;*/
/*}*/

header .navigation .navgition-menu ul .toggleable .menu-item.active {
    color: var(--cor-botoes-paginacao);
}

header .navigation .navgition-menu ul .toggleable .sub-menu {
    position: absolute;
    min-width: 255px;
    opacity: 0;
    visibility: hidden;
    padding: 20px 30px;
    background-color: #fff;
    box-shadow: 0 0 18px 0 rgba(0, 0, 0, 0.1);
    z-index: 100;
    transition: 0.4s ease-out;
    border-radius: 5px;
}

header .navigation .navgition-menu ul .toggleable .sub-menu li {
    display: block;
    padding: 10px 0;
}

header .navigation .navgition-menu ul .toggleable .sub-menu li a {
    font-family: "Cera Pro Regular";
    font-size: 15px;
    color: #636363;
    line-height: 1;
    display: inline-block;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
    text-transform: capitalize;
}

header .navigation .navgition-menu ul .toggleable .sub-menu li a:hover {
    color: var(--cor-botoes-paginacao);
    text-decoration: none;
}

header .navigation .navgition-menu ul .toggleable .sub-menu.shop {
    padding: 30px;
    min-width: 700px;
    left: -100px;
}

header .navigation .navgition-menu ul .toggleable .sub-menu.shop .nav-column {
    margin-right: 75px;
}

header .navigation .navgition-menu ul .toggleable .sub-menu.shop .nav-column h2 {
    font-family: "Cera Pro Bold";
    font-size: 18px;
    color: #252525;
    line-height: 1;
    display: block;
    margin-bottom: 15px;
}

header .navigation .product-function {
    height: 100%;
}

header .navigation .product-function #wishlist {
    margin-right: 15px;
}

header .navigation .product-function .function-icon {
    font-size: 20px;
    color: #252525;
    line-height: 0;
    display: inline-block;
    transition: 0.3s ease;
}

header .navigation .product-function .function-icon:hover {
    color: var(--cor-botoes-paginacao);
    text-decoration: none;
}

header .navigation .product-function .function-icon:last-child {
    margin-right: 0;
}

header .navigation .product-function .function-icon span {
    font-family: "Cera Pro Bold";
    font-size: 16px;
    color: #252525;
    line-height: 1;
    display: inline-block;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
    margin-left: 15px;
}

header .navigation .product-function .function-icon span:hover {
    color: var(--cor-botoes-paginacao);
    text-decoration: none;
}

header .navigation_v2 {
    padding-bottom: 0;
}

header .navigation_v2 .logo {
    display: block;
}

header .navigation_v2 .website-search_v2 button {
    padding: 0;
}

header .navigation-filter .department-menu_block {
    position: relative;
    height: 100%;
    width: 100%;
}

header .navigation-filter .department-menu_block .department-menu {
    background-color: var(--cor-botoes-paginacao);
    height: 100%;
    display: flex;
    cursor: pointer;
    padding: 0 15px;
    font-family: "Cera Pro Bold";
    font-size: 18px;
    color: #fff;
    line-height: 1;
    display: block;
}

header .navigation-filter .department-menu_block .department-menu i {
    font-size: 15px;
}

header .navigation-filter .department-menu_block .department-dropdown-menu {
    position: absolute;
    width: 100%;
    z-index: 99;
}

header .navigation-filter .department-menu_block .department-dropdown-menu ul {
    width: 100%;
    padding: 14px;
    background-color: var(--cor-background-categorias);
    border: 1px solid #ebebeb;
}

.iconefas-categorias {
    color: var(--cor-icone-categoria);
}

.benefit-block .our-benefits .benefit-describle:hover{
    color: var(--cor-pink);
    cursor: pointer;
}

header .navigation-filter .department-menu_block .department-dropdown-menu ul li {
    display: block;
    width: 100%;
    border-bottom: 1px dashed #ebebeb;
    padding: 10px 0;
}

header .navigation-filter .department-menu_block .department-dropdown-menu ul li:last-child {
    border-bottom: 0;
}

header .navigation-filter .department-menu_block .department-dropdown-menu ul li a {
    font-family: "Cera Pro Regular";
    font-size: 16px;
    color: #636363;
    line-height: 1;
    display: inline-block;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
}

header .navigation-filter .department-menu_block .department-dropdown-menu ul li a:hover {
    color: var(--cor-botoes-paginacao);
    text-decoration: none;
}

header .navigation-filter .department-menu_block .department-dropdown-menu ul li a i {
    width: 20px;
    margin-right: 7px;
    font-size: 20px;
}

header .navigation-filter .website-search, header .navigation-filter .navigation_v2 .website-search_v2, header .navigation_v2 .navigation-filter .website-search_v2 {
    border: 1px solid #f5f5f5;
    position: relative;
}

header .navigation-filter .website-search .filter-search, header .navigation-filter .navigation_v2 .website-search_v2 .filter-search, header .navigation_v2 .navigation-filter .website-search_v2 .filter-search {
    height: 100%;
    position: relative;
    cursor: pointer;
}

header .navigation-filter .website-search .filter-search:hover .categories-select_box, header .navigation-filter .navigation_v2 .website-search_v2 .filter-search:hover .categories-select_box, header .navigation_v2 .navigation-filter .website-search_v2 .filter-search:hover .categories-select_box {
    display: block;
}

header .navigation-filter .website-search .filter-search .categories-select, header .navigation-filter .navigation_v2 .website-search_v2 .filter-search .categories-select, header .navigation_v2 .navigation-filter .website-search_v2 .filter-search .categories-select {
    width: 100%;
    height: 100%;
}

header .navigation-filter .website-search .filter-search:after, header .navigation-filter .navigation_v2 .website-search_v2 .filter-search:after, header .navigation_v2 .navigation-filter .website-search_v2 .filter-search:after {
    content: "";
    position: absolute;
    width: 1px;
    height: 30px;
    background-color: #f5f5f5;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

header .navigation-filter .website-search .filter-search .categories-select_box, header .navigation-filter .navigation_v2 .website-search_v2 .filter-search .categories-select_box, header .navigation_v2 .navigation-filter .website-search_v2 .filter-search .categories-select_box {
    position: absolute;
    width: 100%;
    display: none;
    z-index: 100;
}

header .navigation-filter .website-search .filter-search .categories-select_box ul, header .navigation-filter .navigation_v2 .website-search_v2 .filter-search .categories-select_box ul, header .navigation_v2 .navigation-filter .website-search_v2 .filter-search .categories-select_box ul {
    padding: 20px 30px;
    background-color: #fff;
    box-shadow: 0 0 18px 0 rgba(0, 0, 0, 0.1);
    z-index: 100;
}

header .navigation-filter .website-search .filter-search .categories-select_box ul li, header .navigation-filter .navigation_v2 .website-search_v2 .filter-search .categories-select_box ul li, header .navigation_v2 .navigation-filter .website-search_v2 .filter-search .categories-select_box ul li {
    display: block !important;
    padding: 10px 0;
    cursor: pointer;
    font-family: "Cera Pro Regular";
    font-size: 16px;
    color: #252525;
    line-height: 1;
    display: inline-block;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
}

header .navigation-filter .website-search .filter-search .categories-select_box ul li:hover, header .navigation-filter .navigation_v2 .website-search_v2 .filter-search .categories-select_box ul li:hover, header .navigation_v2 .navigation-filter .website-search_v2 .filter-search .categories-select_box ul li:hover {
    color: var(--cor-botoes-paginacao);
    text-decoration: none;
}

header .navigation-filter .website-search button, header .navigation-filter .navigation_v2 .website-search_v2 button, header .navigation_v2 .navigation-filter .website-search_v2 button {
    height: 100%;
    width: 100%;
}

header .navigation-filter .phone-number {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

header .navigation-filter .phone-number .phone-number_icon {
    display: inline-block;
    height: 35px;
    width: 35px;
    background-color: var(--cor-background-principal);
    text-align: center;
    border-radius: 999px;
    margin-right: 5px;
}

header .navigation-filter .phone-number .phone-number_icon i {
    line-height: 35px;
    color: var(--cor-pink);
    font-size: 16px;
}

header .navigation-filter .phone-number h2 {
    font-family: "Cera Pro Medium";
    font-size: 22px;
    color: var(--cor-titulos-headers);
    line-height: 1;
    display: block;
    display: inline-block;
}

/************************************
	Header pink
*************************************/
header.pink .header-block .header-right .social-link a {
    font-family: "Cera Pro Regular";
    font-size: 16px;
    color: #252525;
    line-height: 1;
    display: inline-block;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
}

header.pink .header-block .header-right .social-link a:hover {
    color: var(--cor-pink);
    text-decoration: none;
}

header.pink .header-block .header-right .login a {
    font-family: "Cera Pro Regular";
    font-size: 16px;
    color: #252525;
    line-height: 1;
    display: inline-block;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
}

header.pink .header-block .header-right .login a:hover {
    color: var(--cor-pink);
    text-decoration: none;
}

header.pink .navigation .navgition-menu ul .toggleable .menu-item {
    font-family: "Cera Pro Bold";
    font-size: 16px;
    color: var(--cor-item-menu);
    line-height: 1;
    display: inline-block;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
}

header.pink .navigation .navgition-menu ul .toggleable .menu-item:hover {
    color: var(--cor-pink);
    text-decoration: none;
}

header.pink .navigation .navgition-menu ul .toggleable .menu-item.active {
    color: var(--cor-pink);
}

header.pink .navigation .navgition-menu ul .toggleable .sub-menu li a {
    font-family: "Cera Pro Regular";
    font-size: 15px;
    color: #636363;
    line-height: 1;
    display: inline-block;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
}

header.pink .navigation .navgition-menu ul .toggleable .sub-menu li a:hover {
    color: var(--cor-pink);
    text-decoration: none;
}

header.pink .navigation .product-function {
    height: 100%;
}

header.pink .navigation .product-function #wishlist {
    margin-right: 15px;
}

header.pink .navigation .product-function .function-icon {
    font-size: 20px;
    color: #252525;
    line-height: 0;
    display: inline-block;
    transition: 0.3s ease;
}

header.pink .navigation .product-function .function-icon:hover {
    color: var(--cor-pink);
    text-decoration: none;
}

header.pink .navigation .product-function .function-icon:last-child {
    margin-right: 0;
}

header.pink .navigation .product-function .function-icon span {
    font-family: "Cera Pro Bold";
    font-size: 16px;
    color: #252525;
    line-height: 1;
    display: inline-block;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
    margin-left: 15px;
}

header.pink .navigation .product-function .function-icon span:hover {
    color: var(--cor-pink);
    text-decoration: none;
}

header.pink .navigation-filter .department-menu_block .department-menu {
    background-color: var(--cor-pink);
}

header.pink .navigation-filter .department-menu_block .department-dropdown-menu ul li a {
    font-family: "Cera Pro Regular";
    font-size: 16px;
    color: #636363;
    line-height: 1;
    display: inline-block;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
}

header.pink .navigation-filter .department-menu_block .department-dropdown-menu ul li a:hover {
    color: var(--cor-pink);
    text-decoration: none;
}

header.pink .navigation-filter .website-search .filter-search .categories-select_box ul li, header.pink .navigation-filter .navigation_v2 .website-search_v2 .filter-search .categories-select_box ul li, header.pink .navigation_v2 .navigation-filter .website-search_v2 .filter-search .categories-select_box ul li {
    font-family: "Cera Pro Regular";
    font-size: 16px;
    color: #252525;
    line-height: 1;
    display: inline-block;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
}

header.pink .navigation-filter .website-search .filter-search .categories-select_box ul li:hover, header.pink .navigation-filter .navigation_v2 .website-search_v2 .filter-search .categories-select_box ul li:hover, header.pink .navigation_v2 .navigation-filter .website-search_v2 .filter-search .categories-select_box ul li:hover {
    color: var(--cor-pink);
    text-decoration: none;
}

header.pink .navigation-filter .website-search button.no-round-btn, header.pink .navigation-filter .navigation_v2 .website-search_v2 button.no-round-btn, header.pink .navigation_v2 .navigation-filter .website-search_v2 button.no-round-btn {
    padding: 0;
}

/************************************
	Header coffee
*************************************/
header.coffee .navigation {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.72);
}

header.coffee .navigation .navgition-menu ul .toggleable .menu-item {
    font-family: "Cera Pro Bold";
    font-size: 16px;
    color: #fff;
    line-height: 1;
    display: inline-block;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
}

header.coffee .navigation .navgition-menu ul .toggleable .menu-item:hover {
    color: #fff;
    text-decoration: none;
}

header.coffee .navigation .navgition-menu ul .toggleable .menu-item.active {
    color: #fff;
}

header.coffee .navigation .navgition-menu ul .toggleable .sub-menu li a {
    font-family: "Cera Pro Regular";
    font-size: 15px;
    color: #636363;
    line-height: 1;
    display: inline-block;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
}

header.coffee .navigation .navgition-menu ul .toggleable .sub-menu li a:hover {
    color: #f79823;
    text-decoration: none;
}

header.coffee .navigation .nav-right_block {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header.coffee .navigation .nav-right_block .website-search_coffee {
    position: relative;
}

header.coffee .navigation .nav-right_block .website-search_coffee button {
    height: 35px;
    width: 35px;
    padding: 0;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
}

header.coffee .navigation .nav-right_block .product-function .function-icon {
    color: #fff;
}

header.coffee .navigation .nav-right_block .product-function .function-icon span {
    display: none;
}

/************************************
	Header coffee 2
*************************************/
header.coffee-2 .header-block .header-right .social-link a {
    font-family: "Cera Pro Regular";
    font-size: 16px;
    color: #252525;
    line-height: 1;
    display: inline-block;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
}

header.coffee-2 .header-block .header-right .social-link a:hover {
    color: #f79823;
    text-decoration: none;
}

header.coffee-2 .header-block .header-right .login a {
    font-family: "Cera Pro Regular";
    font-size: 16px;
    color: #252525;
    line-height: 1;
    display: inline-block;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
}

header.coffee-2 .header-block .header-right .login a:hover {
    color: #f79823;
    text-decoration: none;
}

header.coffee-2 .navigation .navgition-menu ul .toggleable .menu-item {
    font-family: "Cera Pro Bold";
    font-size: 16px;
    color: var(--cor-item-menu);
    line-height: 1;
    display: inline-block;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
}

header.coffee-2 .navigation .navgition-menu ul .toggleable .menu-item:hover {
    color: #f79823;
    text-decoration: none;
}

header.coffee-2 .navigation .navgition-menu ul .toggleable .menu-item.active {
    color: #f79823;
}

header.coffee-2 .navigation .navgition-menu ul .toggleable .sub-menu li a {
    font-family: "Cera Pro Regular";
    font-size: 15px;
    color: #636363;
    line-height: 1;
    display: inline-block;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
}

header.coffee-2 .navigation .navgition-menu ul .toggleable .sub-menu li a:hover {
    color: #f79823;
    text-decoration: none;
}

header.coffee-2 .navigation .product-function {
    height: 100%;
}

header.coffee-2 .navigation .product-function #wishlist {
    margin-right: 15px;
}

header.coffee-2 .navigation .product-function .function-icon {
    font-size: 20px;
    color: #252525;
    line-height: 0;
    display: inline-block;
    transition: 0.3s ease;
}

header.coffee-2 .navigation .product-function .function-icon:hover {
    color: #f79823;
    text-decoration: none;
}

header.coffee-2 .navigation .product-function .function-icon:last-child {
    margin-right: 0;
}

header.coffee-2 .navigation .product-function .function-icon span {
    font-family: "Cera Pro Bold";
    font-size: 16px;
    color: #252525;
    line-height: 1;
    display: inline-block;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
    margin-left: 15px;
}

header.coffee-2 .navigation .product-function .function-icon span:hover {
    color: #f79823;
    text-decoration: none;
}

header.coffee-2 .navigation-filter .department-menu_block .department-menu {
    background-color: #f79823;
}

header.coffee-2 .navigation-filter .department-menu_block .department-dropdown-menu ul li a {
    font-family: "Cera Pro Regular";
    font-size: 16px;
    color: #636363;
    line-height: 1;
    display: inline-block;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
}

header.coffee-2 .navigation-filter .department-menu_block .department-dropdown-menu ul li a:hover {
    color: #f79823;
    text-decoration: none;
}

header.coffee-2 .navigation-filter .website-search .filter-search .categories-select_box ul li, header.coffee-2 .navigation-filter .navigation_v2 .website-search_v2 .filter-search .categories-select_box ul li, header.coffee-2 .navigation_v2 .navigation-filter .website-search_v2 .filter-search .categories-select_box ul li {
    font-family: "Cera Pro Regular";
    font-size: 16px;
    color: #252525;
    line-height: 1;
    display: inline-block;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
}

header.coffee-2 .navigation-filter .website-search .filter-search .categories-select_box ul li:hover, header.coffee-2 .navigation-filter .navigation_v2 .website-search_v2 .filter-search .categories-select_box ul li:hover, header.coffee-2 .navigation_v2 .navigation-filter .website-search_v2 .filter-search .categories-select_box ul li:hover {
    color: #f79823;
    text-decoration: none;
}

@media (max-width: 576px) {
    header .header-block {
        display: none !important;
    }

    header .navigation {
        display: none !important;
    }

    header .navigation_v2 {
        display: block !important;
        padding-top: 0;
    }

    header .navigation_v2 .logo {
        display: none;
    }

    header .navigation_v2 .navgition-menu {
        display: none !important;
    }

    header .navigation_v2 .product-function {
        display: none !important;
    }

    header .navigation-filter .department-menu_block {
        height: 50px;
    }

    header .navigation-filter .website-search, header .navigation-filter .navigation_v2 .website-search_v2, header .navigation_v2 .navigation-filter .website-search_v2 {
        margin-bottom: 15px;
    }

    header .navigation-filter .filter-search {
        display: none;
    }

    header .navigation-filter .phone-number {
        display: none;
    }

    header.coffee .navigation {
        display: block !important;
        position: unset;
        background-color: #fff;
        padding-top: 0;
    }

    header.coffee .navigation .logo {
        display: none !important;
    }

    header.coffee .navigation .product-function {
        display: none !important;
    }

    header.coffee .navigation .navgition-menu {
        display: none !important;
    }

    header.coffee .navigation .website-search_coffee {
        width: 100%;
    }

    header.coffee .navigation .website-search_coffee input {
        border: 1px solid #ebebeb !important;
    }

    .department-menu_block, .department-dropdown-menu {
        display: none;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    header .header-block {
        display: none !important;
    }

    header .navigation {
        display: none !important;
    }

    header .navigation-filter .department-menu_block {
        height: 50px;
    }

    header .navigation-filter .website-search, header .navigation-filter .navigation_v2 .website-search_v2, header .navigation_v2 .navigation-filter .website-search_v2 {
        margin-bottom: 15px;
    }

    header .navigation-filter .filter-search {
        display: none;
    }

    header .navigation-filter .phone-number {
        display: none;
    }

    header.coffee .navigation {
        display: block !important;
        position: unset;
        background-color: #fff;
        padding-top: 0;
    }

    header.coffee .navigation .logo {
        display: none !important;
    }

    header.coffee .navigation .navgition-menu {
        display: none !important;
    }

    header.coffee .navigation .nav-right_block .website-search_coffee {
        width: 100%;
        margin-right: 30px;
    }

    header.coffee .navigation .nav-right_block .website-search_coffee input {
        border: 1px solid #ebebeb !important;
    }

    header.coffee .navigation .nav-right_block .product-function .function-icon {
        font-size: 20px;
        color: #252525;
        line-height: 0;
        display: inline-block;
        transition: 0.3s ease;
    }

    header.coffee .navigation .nav-right_block .product-function .function-icon:hover {
        color: #f79823;
        text-decoration: none;
    }

    header.coffee .navigation .nav-right_block .product-function .function-icon span {
        display: inline-block;
    }

    .department-menu_block, .department-dropdown-menu {
        display: none;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    header .header-block {
        display: none !important;
    }

    header .navigation {
        display: none !important;
    }

    header .navigation-filter .department-menu_block {
        height: 50px;
    }

    header .navigation-filter .website-search, header .navigation-filter .navigation_v2 .website-search_v2, header .navigation_v2 .navigation-filter .website-search_v2 {
        margin-bottom: 15px;
    }

    header .navigation-filter .filter-search {
        display: none;
    }

    header .navigation-filter .phone-number {
        display: none;
    }

    header .navigation_v2 {
        display: block !important;
        padding-top: 0;
    }

    header .navigation_v2 .logo {
        display: none;
    }

    header .navigation_v2 .website-search_v2 {
        display: block;
    }

    header .navigation_v2 .website-search_v2 .filter-search {
        display: block;
    }

    header .navigation_v2 .navgition-menu {
        display: none !important;
    }

    header .navigation_v2 .product-function {
        display: none !important;
    }

    header.coffee .navigation {
        display: block !important;
        position: unset;
        background-color: #fff;
        padding-top: 0;
    }

    header.coffee .navigation .logo {
        display: none !important;
    }

    header.coffee .navigation .navgition-menu {
        display: none !important;
    }

    header.coffee .navigation .nav-right_block .website-search_coffee {
        width: 100%;
        margin-right: 30px;
    }

    header.coffee .navigation .nav-right_block .website-search_coffee input {
        border: 1px solid #ebebeb !important;
    }

    header.coffee .navigation .nav-right_block .product-function .function-icon {
        font-size: 20px;
        color: #252525;
        line-height: 0;
        display: inline-block;
        transition: 0.3s ease;
    }

    header.coffee .navigation .nav-right_block .product-function .function-icon:hover {
        color: #f79823;
        text-decoration: none;
    }

    header.coffee .navigation .nav-right_block .product-function .function-icon span {
        display: inline-block;
    }

    .department-menu_block, .department-dropdown-menu {
        display: none;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    header .navigation-filter .phone-number {
        display: none;
    }

    header .navigation_v2 {
        display: block;
    }

    header .navigation_v2 .logo {
        display: block;
        margin-bottom: 30px;
    }

    header .navigation_v2 .website-search_v2 {
        margin-bottom: 30px;
    }

    header.coffee .navigation .navgition-menu ul .toggleable {
        padding: 0 15px;
    }
}

@media (min-width: 1200px) and (max-width: 1399px) {
    header .navigation_v2 {
        display: block;
    }

    header .navigation_v2 .logo {
        display: block;
        padding-bottom: 30px;
    }

    header .navigation_v2 .product-function {
        padding-bottom: 30px;
    }

    header .navigation_v2 .navgition-menu ul .toggleable {
        padding: 0 15px;
    }

    header .navigation_v2 .navgition-menu ul .toggleable .sub-menu.shop {
        left: -260px;
    }
}

@media (min-width: 1400px) and (max-width: 1769px) {
    header .navigation_v2 {
        display: block;
    }

    header .navigation_v2 .logo {
        display: block;
        padding-bottom: 30px;
    }

    header .navigation_v2 .product-function {
        padding-bottom: 30px;
    }

    header .navigation_v2 .navgition-menu ul .toggleable {
        padding: 0 15px;
    }

    header .navigation_v2 .navgition-menu ul .toggleable .sub-menu.shop {
        left: -200px;
    }
}

/************************************
	Slider
*************************************/
.slider {
    position: relative;
    margin-top: 30px;
}

.slider:hover .slick-arrow {
    opacity: 1;
    visibility: visible;
}

.slider .slider_wrapper .slider-block {
    position: relative;
    display: flex;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 100px 0;
}

.slider .slider_wrapper .slider-block img {
    min-width: 100%;
}

.slider .slider_wrapper .slider-block .slider-content {
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
}

.slider .slider_wrapper .slider-block .slider-content .slider-text h5 {
    font-family: "Cera Pro Bold";
    font-size: 14px;
    color: var(--cor-botoes-paginacao);
    line-height: 1;
    display: block;
    letter-spacing: 2.8px;
    margin-bottom: 10px;
}

.slider .slider_wrapper .slider-block .slider-content .slider-text h1 {
    font-family: "Cera Pro Bold";
    font-size: 60px;
    color: #252525;
    line-height: 1;
    display: block;
    margin-bottom: 15px;
}

.slider .slider_wrapper .slider-block .slider-content .slider-text h3 {
    font-family: "Cera Pro Bold";
    font-size: 30px;
    color: var(--cor-botoes-paginacao);
    line-height: 1;
    display: block;
    margin-bottom: 50px;
}

.slider .slider_wrapper .slider-block .slider-content .slider-text h3 span {
    font-family: "Cera Pro Regular";
    font-size: 18px;
    color: #636363;
    line-height: 1;
    display: block;
    display: inline-block;
}

.slider .slider_wrapper .slider-block .slider-content .slider-img {
    position: relative;
}

.slider .slider_wrapper .slider-block .slider-content .slider-img img {
    width: 100%;
}

.slider .slider_wrapper .slider-block .slider-content .slider-img .img {
    position: absolute;
    top: 0;
    left: 0;
    max-height: 100%;
}

.slider .slider_wrapper .slider-block .slider-content .slider-img .prallax-img {
    position: absolute;
    top: 0;
    left: 0;
}

.slider .benefit-block {
    position: absolute;
    bottom: -50px;
    width: 100%;
    z-index: 10;
}

.slider .slick-arrow {
    height: 40px;
    width: 40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    opacity: 0;
    visibility: hidden;
}

.slider .slick-prev {
    position: absolute;
    left: 15px;
}

.slider .slick-next {
    position: absolute;
    right: 15px;
}

.slider .slider-banner {
    margin-top: 30px;
}

.slider .slider-banner a img {
    width: 100%;
}

.slider.slider-hp-2 .slider_wrapper .slick-arrow {
    display: none !important;
}

/************************************
	Slider v2
*************************************/
.slider_v2 {
    margin-top: 0;
}

.slider_v2 .slider_wrapper .slider-block {
    padding: 175px 0 100px;
}

.slider_v2 .slider_wrapper .slider-block .slider-content {
    margin-top: 0;
    display: flex;
    align-items: center;
}

.slider_v2 .slider_wrapper .slider-block .slider-content .slider_img {
    margin-bottom: 60px;
}

.slider_v2 .slider_wrapper .slider-block .slider-content .slider_img img {
    max-height: 270px;
}

.slider_v2 .slick-arrow {
    background-color: #f79823;
    color: #fff;
    font-size: 13px;
    border-radius: 999px;
    -webkit-border-radius: 999px;
    -moz-border-radius: 999px;
    -ms-border-radius: 999px;
    -o-border-radius: 999px;
    padding: 15px 30px;
    text-transform: uppercase;
    font-family: 'Cera Pro Bold';
    border: 2px solid #f79823;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
    display: inline-block;
    height: 50px;
    width: 50px;
    top: 50%;
    transform: translateY(-50%);
    padding: 0;
}

.slider_v2 .slick-arrow:hover {
    background-color: transparent;
    color: #f79823;
    border: 2px solid #f79823;
    text-decoration: none;
}

.slider_v2 .slick-arrow:focus {
    outline: 0;
    box-shadow: 0;
}

.slider_v2 .slick-prev {
    position: absolute;
    left: 70px;
}

.slider_v2 .slick-next {
    position: absolute;
    right: 70px;
}

@media (max-width: 576px) {
    .slider .slider_wrapper .slider-block {
        padding: 60px 0;
    }

    .slider .slider_wrapper .slider-block .slider-content .slider-text {
        margin-bottom: 40px;
    }

    .slider .slider_wrapper .slider-block .slider-content .slider-text h1 {
        font-size: 45px;
    }

    .slider .benefit-block {
        position: unset;
        margin-top: 15px;
    }

    .slider .benefit-block .our-benefits {
        padding: 10px 0;
    }

    .slider .benefit-block .our-benefits .benefit-detail {
        padding: 15px 0;
    }

    .slider .slick-arrow {
        opacity: 1;
        visibility: visible;
    }

    .slider-banner {
        margin-top: 30px;
    }

    .slider-banner a img {
        width: 100%;
        margin-bottom: 30px;
    }

    .slider_v2 .slider_wrapper .slick-arrow {
        height: 40px;
        width: 40px;
    }

    .slider_v2 .slider_wrapper .slick-prev {
        left: 15px;
    }

    .slider_v2 .slider_wrapper .slick-next {
        right: 15px;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    .slider .slider_wrapper .slider-block {
        padding: 60px 0;
    }

    .slider .slider_wrapper .slider-block .slider-content .slider-text {
        margin-bottom: 40px;
    }

    .slider .slider_wrapper .slider-block .slider-content .slider-img {
        width: 50%;
        margin: auto;
    }

    .slider .benefit-block {
        position: unset;
        margin-top: 15px;
    }

    .slider .slick-arrow {
        opacity: 1;
        visibility: visible;
    }

    .slider-banner {
        margin-top: 30px;
    }

    .slider-banner a img {
        width: 100%;
        margin-bottom: 30px;
    }

    .slider_v2 .slider_wrapper .slick-arrow {
        height: 40px;
        width: 40px;
    }

    .slider_v2 .slider_wrapper .slick-prev {
        left: 15px;
    }

    .slider_v2 .slider_wrapper .slick-next {
        right: 15px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .slider .slider_wrapper .slider-block img {
        max-height: 500px;
    }

    .slider .slick-arrow {
        opacity: 1;
        visibility: visible;
    }

    .slider-banner {
        margin-top: 30px;
    }

    .slider-banner a img {
        width: 100%;
        margin-bottom: 30px;
    }

    .slider_v2 .slider_wrapper .slick-prev {
        left: 15px;
    }

    .slider_v2 .slider_wrapper .slick-next {
        right: 15px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .slider .slider_wrapper .slider-block img {
        max-height: 600px;
    }

    .slider .slick-arrow {
        opacity: 1;
        visibility: visible;
    }
}

/************************************
	Item categories
*************************************/
.items-category {
    padding: 100px 0 60px 0;
}

.items-category .product-item {
    width: 100%;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 10px;
    border: 1px solid #d0faa3;
    height: 300px;
}

.items-category .product-item:hover img {
    animation: mymove 1s infinite;
}

.items-category .product-item:hover {
    text-decoration: none;
}

.items-category .product-item .categories-img {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
}

.items-category .product-item .categories-img img {
    max-height: 170px;
    max-width: 90%;
}

.items-category .product-item h2 {
    font-family: "Cera Pro Bold";
    font-size: 24px;
    color: #252525;
    line-height: 1;
    display: block;
}

.items-category .product-item p {
    font-family: "Cera Pro Regular";
    font-size: 12px;
    color: var(--cor-botoes-paginacao);
    line-height: 24px;
    display: block;
}

@media (max-width: 576px) {
    .items-category {
        padding: 60px 0 0 0;
    }

    .items-category .product-item {
        padding: 10px;
        margin-bottom: 30px;
    }

    .items-category .product-item img {
        max-height: 150px;
    }

    .items-category .product-item h2 {
        font-family: "Cera Pro Bold";
        font-size: 20px;
        color: #252525;
        line-height: 1;
        display: block;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    .items-category {
        padding: 60px 0 30px 0;
    }

    .items-category .product-item {
        margin-bottom: 30px;
    }
}

/************************************
	Feature Products
*************************************/
.feature-products h1 {
    margin-bottom: 35px;
}

.feature-products #tab .tab-control {
    text-align: center;
    margin-bottom: 40px;
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 10px;
}

.feature-products #tab .tab-control li {
    display: inline-block;
    padding: 0 15px;
}

.feature-products #tab .tab-control li:first-child {
    padding-left: 0;
}

.feature-products #tab .tab-control li:last-child {
    padding-right: 0;
}

.feature-products #tab .tab-control li a {
    font-family: "Cera Pro Medium";
    font-size: 18px;
    color: #b2b2b2;
    line-height: 1;
    display: inline-block;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
    position: relative;
}

.feature-products #tab .tab-control li a:hover {
    color: #b2b2b2;
    text-decoration: none;
}

.feature-products #tab .tab-control li a.active {
    color: var(--cor-botoes-paginacao);
}

.feature-products #tab .tab-control li a.active:after {
    content: "";
    position: absolute;
    height: 4px;
    width: 100%;
    display: block;
    background-color: var(--cor-botoes-paginacao);
    bottom: -10px;
}

.feature-products.coffee #tab .tab-control li a.active {
    color: #f79823;
}

.feature-products.coffee #tab .tab-control li a.active:after {
    background-color: #f79823;
}

/************************************
	Feature Products v2
*************************************/
.feature-products_v2 {
    margin-top: 80px;
}

@media (max-width: 576px) {
    .feature-products.coffee {
        margin-bottom: 60px;
    }

    .feature-products_v2 {
        margin: 0 0 60px;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    .feature-products_v2 {
        margin-top: 30px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .feature-products #tab .col-12.col-sm-6.col-md-4.col-lg-3:nth-child(7) {
        display: none;
    }

    .feature-products #tab .col-12.col-sm-6.col-md-4.col-lg-3:nth-child(8) {
        display: none;
    }

    .feature-products_v2 {
        margin-top: 30px;
    }
}

/************************************
	Banner
*************************************/
.banner {
    margin: 50px 0 60px 0;
}

.banner .banner-block {
    height: 450px;
    overflow: hidden;
}

.banner .banner-block .banner-block_detail {
    height: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-repeat: no-repeat;
}

.banner .banner-block .banner-block_detail:hover img {
    animation: mymove 1s infinite;
}

.banner .banner-block .banner-block_detail:hover .banner-btn {
    transform: translateY(0);
    opacity: 1;
}

.banner .banner-block .banner-block_detail img {
    max-height: 280px;
    max-width: 80%;
}

.banner .banner-block .banner-block_detail .banner-btn {
    position: absolute;
    transform: translateY(20px);
    opacity: 0;
    bottom: 30px;
}

/************************************
	Banner v2
*************************************/
.banner_v2, .banner_v3 {
    margin-top: 34px;
}

.banner_v2 .banner-block, .banner_v3 .banner-block {
    padding: 70px 0;
    background-image: url(../images/homepage03/banner_bg.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.banner_v2 .banner-block .banner-text h5, .banner_v3 .banner-block .banner-text h5 {
    margin-bottom: 15px;
}

.banner_v2 .banner-block .banner-text h2, .banner_v3 .banner-block .banner-text h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.banner_v2 .banner-block .banner-text p, .banner_v3 .banner-block .banner-text p {
    font-family: "Cera Pro Regular";
    font-size: 16px;
    color: #636363;
    line-height: 26px;
    display: block;
    max-width: 305px;
    margin-bottom: 50px;
}

/************************************
	Banner v3
*************************************/
.banner_v3 {
    margin-bottom: 30px;
}

.banner_v3 .banner-block {
    padding: 125px 0;
    background-image: url(../images/homepage05/banner_bg.png);
}

.banner_v3 .banner-block .banner-text h5 {
    margin-bottom: 15px;
}

.banner_v3 .banner-block .banner-text h2 {
    font-size: 60px;
    margin-bottom: 15px;
}

.banner_v3 .banner-block .banner-text h3 {
    font-family: "Cera Pro Bold";
    font-size: 30px;
    color: #f79823;
    line-height: 26px;
    display: block;
    margin-bottom: 38px;
}

.banner_v3 .banner-block .banner-text h3 span {
    font-family: "Cera Pro Regular";
    font-size: 18px;
    color: #636363;
    line-height: 26px;
    display: block;
    display: inline-block;
}

/************************************
	Banner group
*************************************/
.banner-group {
    margin: 30px 0 30px 0;
}

.banner-group .small-banner, .banner-group .large-banner {
    height: 236px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 15px 0;
    margin-bottom: 30px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.banner-group .small-banner img, .banner-group .large-banner img {
    max-height: 190px;
}

.banner-group .small-banner:hover img, .banner-group .large-banner:hover img {
    animation: mymove 1s infinite;
}

.banner-group .large-banner {
    display: block;
}

.banner-group .large-banner .row {
    height: 100%;
}

.banner-group .large-banner .banner-text h3 {
    font-family: "Cera Pro Bold";
    font-size: 30px;
    color: #252525;
    line-height: 1;
    display: block;
    line-height: 48px;
}

.banner-group .large-banner .banner-text h3 span {
    color: red;
}

.banner-group .large-banner:hover img {
    animation: mymove 1s infinite;
}

@media (max-width: 576px) {
    .banner {
        margin: 60px 0 30px;
    }

    .banner .banner-block {
        height: auto;
    }

    .banner .banner-block .banner-block_detail {
        height: 250px;
        padding: 30px;
    }

    .banner .banner-block .banner-block_detail img {
        max-height: 200px;
        max-width: 250px;
    }

    .banner_v2 .banner-block .banner-text, .banner_v3 .banner-block .banner-text {
        margin-bottom: 50px;
    }

    .banner_v2 .banner-block .banner-text p, .banner_v3 .banner-block .banner-text p {
        max-width: inherit;
    }

    .banner-group .small-banner, .banner-group .large-banner {
        height: auto;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    .banner .banner-block {
        height: auto;
    }

    .banner .banner-block .banner-block_detail {
        height: 275px;
        padding: 30px;
    }

    .banner .banner-block .banner-block_detail img {
        max-height: 200px;
    }

    .banner_v2 .banner-block .banner-text, .banner_v3 .banner-block .banner-text {
        margin-bottom: 70px;
    }

    .banner_v2 .banner-block .banner-text p, .banner_v3 .banner-block .banner-text p {
        max-width: inherit;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .banner .banner-block {
        height: auto;
    }

    .banner .banner-block .banner-block_detail {
        height: auto;
        padding: 30px;
    }

    .banner .banner-block .banner-block_detail img {
        max-height: 200px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .banner .banner-block {
        height: 300px;
    }

    .banner .banner-block .banner-block_detail {
        height: 300px;
        padding: 30px;
    }

    .banner .banner-block .banner-block_detail img {
        max-height: 200px;
    }
}

/************************************
	Deal of the week
*************************************/
.deal-of-week {
    margin-bottom: 60px;
}

.deal-of-week h1 {
    margin-bottom: 100px;
}

.deal-of-week .featured-use {
    display: flex;
    margin-bottom: 40px;
    align-items: center;
}

.deal-of-week .featured-use h5 {
    font-family: "Cera Pro Bold";
    font-size: 18px;
    color: #252525;
    line-height: 24px;
    display: block;
    margin-bottom: 12px;
}

.deal-of-week .featured-use p {
    font-family: "Cera Pro Regular";
    font-size: 16px;
    color: #636363;
    line-height: 30px;
    display: block;
    line-height: 24px;
}

.deal-of-week .featured-use .featured-use_intro {
    flex-grow: 1;
}

.deal-of-week .week-product_img {
    position: relative;
    display: inline-block;
}

.deal-of-week .week-product_img p {
    text-align: center;
    position: absolute;
    border-radius: 999px;
    height: 70px;
    width: 70px;
    background-color: #fff;
    padding: 20px 0;
    bottom: 0;
    right: 0;
    box-shadow: 0px 5px 13px 0 rgba(53, 78, 84, 0.21);
    font-family: "Cera Pro Regular";
    font-size: 12px;
    color: var(--cor-botoes-paginacao);
    line-height: 1;
    display: block;
}

.deal-of-week .week-product_img p span {
    font-family: "Cera Pro Bold";
    font-size: 18px;
    color: var(--cor-botoes-paginacao);
    line-height: 1;
    display: block;
}

.deal-of-week .featured-use_icon {
    margin-left: 26px;
    margin-right: 26px;
}

.deal-of-week .featured-use_icon .icon-detail {
    border-radius: 999px;
    background-color: #eaeff4;
    height: 54px;
    width: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.deal-of-week .featured-use_icon img {
    max-width: 24px;
}

.deal-of-week #event-countdown {
    margin-top: 30px;
}

.deal-of-week #event-countdown .countdown-number {
    font-family: "Cera Pro Medium";
    font-size: 12px;
    color: #636363;
    line-height: 0.8;
    display: block;
    text-transform: uppercase;
    margin: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px solid #ebebeb;
    border-radius: 10px;
    height: 72px;
    width: 60px;
    padding: 5px;
}

.deal-of-week #event-countdown .countdown-number span {
    display: block;
    font-family: "Cera Pro Bold";
    font-size: 30px;
    color: var(--cor-botoes-paginacao);
    line-height: 0.8;
    display: block;
}

/************************************
	Deal of the week v2
*************************************/
.deal-of-week_v2, .deal-of-week_v3 {
    padding: 60px 0;
    margin: 80px 0;
    background-image: url("../images/homepage02/dow_banner.jpg");
    background-position: center;
    background-size: cover;
}

.deal-of-week_v2 .dow-info h2, .deal-of-week_v3 .dow-info h2 {
    margin-bottom: 18px;
}

.deal-of-week_v2 .dow-info p, .deal-of-week_v3 .dow-info p {
    font-family: "Cera Pro Regular";
    font-size: 16px;
    color: #636363;
    line-height: 26px;
    display: block;
    margin-bottom: 20px;
}

.deal-of-week_v2 .dow-info #event-countdown, .deal-of-week_v3 .dow-info #event-countdown {
    margin-bottom: 30px;
}

.deal-of-week_v2 .dow-info #event-countdown .countdown-number, .deal-of-week_v3 .dow-info #event-countdown .countdown-number {
    font-family: "Cera Pro Medium";
    font-size: 12px;
    color: #636363;
    line-height: 0.8;
    display: block;
    text-transform: uppercase;
    margin: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    height: 72px;
    width: 60px;
    padding: 5px;
    background-color: #fff;
    box-shadow: 0px 2px 2px 0 rgba(0, 0, 0, 0.1);
}

.deal-of-week_v2 .dow-info #event-countdown .countdown-number:first-child, .deal-of-week_v3 .dow-info #event-countdown .countdown-number:first-child {
    margin-left: 0;
}

.deal-of-week_v2 .dow-info #event-countdown .countdown-number:last-child, .deal-of-week_v3 .dow-info #event-countdown .countdown-number:last-child {
    margin-right: 0;
}

.deal-of-week_v2 .dow-info #event-countdown .countdown-number span, .deal-of-week_v3 .dow-info #event-countdown .countdown-number span {
    display: block;
    font-family: "Cera Pro Bold";
    font-size: 30px;
    color: var(--cor-botoes-paginacao);
    line-height: 0.8;
    display: block;
}

.deal-of-week_v2 .dow-img, .deal-of-week_v3 .dow-img {
    text-align: center;
}

.deal-of-week_v2 .dow-img img, .deal-of-week_v3 .dow-img img {
    max-width: 450px;
}

/************************************
	Deal of the week v3
*************************************/
.deal-of-week_v3 {
    padding: 0;
    margin: 30px 0 60px 0;
    background-image: unset;
}

.deal-of-week_v3 .deal-of-week_block {
    padding: 50px 0;
    background-color: #fff3dd;
}

.deal-of-week_v3 .deal-of-week_block .dow-info h2:after {
    width: 60px;
    margin: 15px 0 0 0;
}

.deal-of-week_v3 .deal-of-week_block .dow-info h3 {
    font-family: "Cera Pro Bold";
    font-size: 30px;
    color: #f79823;
    line-height: 1;
    display: block;
    line-height: 48px;
    margin-bottom: 5px;
}

.deal-of-week_v3 .deal-of-week_block .dow-info h3 span {
    font-family: "Cera Pro Regular";
    font-size: 18px;
    color: #636363;
    line-height: 1;
    display: block;
    display: inline-block;
}

.deal-of-week_v3 .deal-of-week_block .dow-info #event-countdown .countdown-number {
    border-radius: 999px;
    height: 80px;
    width: 80px;
    padding: 5px;
    margin: 0 5px;
    box-shadow: 0px 2px 5px 0 rgba(0, 0, 0, 0.1);
}

.deal-of-week_v3 .deal-of-week_block .dow-info #event-countdown span {
    color: #f79823;
}

/************************************
	Deal of the week slide
*************************************/
.deal-of-week_slide {
    margin-bottom: 30px;
}

.deal-of-week_slide .week-deal_top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.deal-of-week_slide .week-deal_top .week-deal_control .slick-arrow {
    background-color: #eaeff4;
    color: #636363;
    font-size: 11px;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    padding: 2px;
    text-transform: uppercase;
    font-family: 'Cera Pro Bold';
    border: 5px solid #eaeff4;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
    display: inline-block;
    margin-right: 3px;
}

.deal-of-week_slide .week-deal_top .week-deal_control .slick-arrow:hover {
    background-color: var(--cor-pink);
    color: #fff;
    border: 5px solid var(--cor-pink);
    text-decoration: none;
}

.deal-of-week_slide .week-deal_top .week-deal_control .slick-arrow:focus {
    outline: 0;
    box-shadow: 0;
}

.deal-of-week_slide .week-deal_top .week-deal_control .slick-arrow:last-child {
    margin-right: 0;
}

.deal-of-week_slide .week-deal_bottom .deal-block {
    border: 2px solid var(--cor-pink);
    padding: 15px;
}

.deal-of-week_slide .week-deal_bottom .deal-block .deal-discount {
    font-family: "Cera Pro Bold";
    font-size: 14px;
    color: #fff;
    line-height: 1;
    display: block;
    background-color: var(--cor-pink);
    padding: 3px 8px;
    display: inline-block;
    margin-bottom: 20px;
}

.deal-of-week_slide .week-deal_bottom .deal-block .deal-img {
    margin-bottom: 40px;
    height: 180px;
}

.deal-of-week_slide .week-deal_bottom .deal-block .deal-img a {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    padding: 5px;
}

.deal-of-week_slide .week-deal_bottom .deal-block .deal-img a img {
    max-width: 100%;
    max-height: 100%;
}

.deal-of-week_slide .week-deal_bottom .deal-block .deal-countdown {
    margin-bottom: 40px;
}

.deal-of-week_slide .week-deal_bottom .deal-block .deal-countdown .event-countdown {
    display: flex;
    justify-content: center;
}

.deal-of-week_slide .week-deal_bottom .deal-block .deal-countdown .event-countdown .countdown-number {
    font-family: "Cera Pro Medium";
    font-size: 11px;
    color: #636363;
    line-height: 0.5;
    display: block;
    margin: 0 2px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid #ebebeb;
    border-radius: 10px;
    height: 48px;
    width: 48px;
    padding: 5px;
    text-transform: uppercase;
    background-color: #eaeff4;
}

.deal-of-week_slide .week-deal_bottom .deal-block .deal-countdown .event-countdown .countdown-number span {
    display: block;
    font-family: "Cera Pro Bold";
    font-size: 24px;
    color: #252525;
    line-height: 1;
    display: block;
}

.deal-of-week_slide .week-deal_bottom .deal-block .deal-info .deal-type {
    margin-bottom: 10px;
}

.deal-of-week_slide .week-deal_bottom .deal-block .deal-info .deal-name {
    font-family: "Cera Pro Medium";
    font-size: 18px;
    color: #252525;
    line-height: 24px;
    display: inline-block;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
    margin-bottom: 5px;
    transiton: 0.4s;
}

.deal-of-week_slide .week-deal_bottom .deal-block .deal-info .deal-name:hover {
    color: var(--cor-pink);
    text-decoration: none;
}

.deal-of-week_slide .week-deal_bottom .deal-block .deal-info .deal-price {
    font-family: "Cera Pro Medium";
    font-size: 20px;
    color: #252525;
    line-height: 1;
    display: block;
    transition: .4s ease;
    margin-bottom: 30px;
}

.deal-of-week_slide .week-deal_bottom .deal-block .deal-info .deal-price del {
    font-family: "Cera Pro Regular";
    font-size: 16px;
    color: #b2b2b2;
    line-height: 1;
    display: block;
    display: inline-block;
}

.deal-of-week_slide .week-deal_bottom .deal-block .deal-select {
    margin-bottom: 10px;
}

.deal-of-week_slide .week-deal_bottom .deal-block .deal-select button {
    height: 40px;
    width: 40px;
    transiton: 0.4s;
}

/************************************
	Deal of the week parallax
*************************************/
.deal-of-week_parallax {
    margin-top: 30px;
    padding: 100px 0;
    background-image: url(../images/homepage04/parallax-home4_2.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.deal-of-week_parallax h1 {
    color: #fff;
}

.deal-of-week_parallax .week-product_img {
    position: relative;
    display: inline-block;
}

.deal-of-week_parallax .featured-use .featured-use_intro h5 {
    color: #fff;
}

.deal-of-week_parallax .featured-use .featured-use_intro p {
    color: #fff;
}

.deal-of-week_parallax .featured-use .featured-use_icon .icon-detail {
    background-color: #fff;
}

@media (max-width: 576px) {
    .deal-of-week .featured-use .featured-use_icon {
        margin-left: 0;
    }

    .deal-of-week .week-product_img {
        margin-bottom: 30px;
    }

    .deal-of-week #event-countdown {
        margin-top: 0px;
    }

    .deal-of-week_v2, .deal-of-week_v3 {
        margin: 60px 0 30px 0;
    }

    .deal-of-week_v2 .dow-info, .deal-of-week_v3 .dow-info {
        margin-bottom: 50px;
    }

    .deal-of-week_v2 .dow-img img, .deal-of-week_v3 .dow-img img {
        max-width: 100%;
    }

    .deal-of-week_v3 .deal-of-week_block .dow-img {
        margin-bottom: 30px;
    }

    .deal-of-week_v3 .deal-of-week_block .dow-info h2:after {
        width: 60px;
        margin: auto;
    }

    .deal-of-week_v3 .deal-of-week_block .dow-info #event-countdown .countdown-number {
        border-radius: 999px;
        height: 70px;
        width: 70px;
        padding: 5px;
        box-shadow: none;
        margin: 0 5px;
    }

    .deal-of-week_v3 .deal-of-week_block .dow-info #event-countdown span {
        color: #f79823;
    }

    .deal-of-week_parallax {
        padding: 60px 0 30px 0;
    }

    .deal-of-week_parallax .week-product_img {
        margin-bottom: 60px;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    .deal-of-week .featured-use {
        justify-content: between;
    }

    .deal-of-week .featured-use .featured-use_intro {
        flex-grow: 1;
    }

    .deal-of-week .featured-use .featured-use_icon {
        margin-left: 0;
        margin-right: 26px;
    }

    .deal-of-week .week-product_img {
        margin-bottom: 30px;
        text-align: center;
    }

    .deal-of-week #event-countdown {
        margin-top: 0;
    }

    .deal-of-week_v2, .deal-of-week_v3 {
        margin: 60px 0;
    }

    .deal-of-week_v2 .dow-info, .deal-of-week_v3 .dow-info {
        margin-bottom: 50px;
    }

    .deal-of-week_v2 .dow-img img, .deal-of-week_v3 .dow-img img {
        max-width: 100%;
        width: 100%;
    }

    .deal-of-week_v3 .deal-of-week_block .dow-img {
        margin-bottom: 30px;
    }

    .deal-of-week_v3 .deal-of-week_block .dow-info h2:after {
        width: 60px;
        margin: auto;
    }

    .deal-of-week_v3 .deal-of-week_block .dow-info #event-countdown .countdown-number {
        border-radius: 999px;
        height: 70px;
        width: 70px;
        padding: 5px;
        box-shadow: none;
        margin: 0 5px;
    }

    .deal-of-week_v3 .deal-of-week_block .dow-info #event-countdown span {
        color: #f79823;
    }

    .deal-of-week_parallax {
        padding: 60px 0 30px 0;
    }

    .deal-of-week_parallax .title, .deal-of-week_parallax .title-bb {
        margin-bottom: 50px;
    }

    .deal-of-week_parallax .week-product_img {
        margin-bottom: 60px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .deal-of-week .featured-use .featured-use_icon-left {
        margin-right: 0;
    }

    .deal-of-week_v2, .deal-of-week_v3 {
        margin: 60px 0 30px 0;
    }

    .deal-of-week_v2 .dow-info, .deal-of-week_v3 .dow-info {
        margin-bottom: 70px;
    }

    .deal-of-week_v2 .dow-img img, .deal-of-week_v3 .dow-img img {
        max-width: 100%;
    }

    .deal-of-week_slide .week-deal_bottom {
        margin: 0 -10px;
    }

    .deal-of-week_slide .week-deal_bottom .deal-block {
        margin: 0 10px;
    }

    .deal-of-week_v3 .deal-of-week_block .dow-img {
        margin-bottom: 30px;
    }

    .deal-of-week_v3 .deal-of-week_block .dow-info {
        margin-bottom: 0;
    }

    .deal-of-week_v3 .deal-of-week_block .dow-info h2:after {
        width: 60px;
        margin: auto;
        margin-top: 15px;
    }

    .deal-of-week_v3 .deal-of-week_block .dow-info #event-countdown .countdown-number {
        border-radius: 999px;
        height: 70px;
        width: 70px;
        padding: 5px;
        box-shadow: none;
        margin: 0 5px;
    }

    .deal-of-week_v3 .deal-of-week_block .dow-info #event-countdown span {
        color: #f79823;
    }

    .deal-of-week_parallax {
        padding: 60px 0;
    }

    .deal-of-week_parallax .title, .deal-of-week_parallax .title-bb {
        margin-bottom: 50px;
    }

    .deal-of-week_parallax .week-product_img {
        display: none;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .deal-of-week .featured-use .featured-use_icon-left {
        margin-right: 0;
    }

    .deal-of-week #event-countdown {
        margin-top: 0;
    }

    .deal-of-week_slide .week-deal_bottom {
        margin: 0 -10px;
    }

    .deal-of-week_slide .week-deal_bottom .deal-block {
        margin: 0 10px;
    }
}

/************************************
	Partner
*************************************/
.partner {
    height: 120px;
    margin-bottom: 60px;
}

.partner.partner_block-bgless .partner_block {
    background-color: #fff;
    border: 1px solid #ebebeb;
}

.partner .partner_block {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    background-color: #f5f5f5;
}

.partner .partner_block .partner--logo {
    height: 120px;
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    /*transition: .3s ease;*/
}

.partner .partner_block .partner--logo:hover {
    /*transform: scale(0.9);*/
    transform-origin: 105% 105%;
}

.partner .partner_block .partner--logo img {
    height: 100%;
}

/************************************
	Footer
*************************************/
.footer-logo {
    margin-bottom: 20px;
}

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

.footer-contact p {
    font-family: "Cera Pro Medium";
    font-size: 14px;
    color: var(--cor-texto-rodape);
    line-height: 28px;
    display: block;
}

.footer-social a {
    height: 40px;
    width: 40px;
    line-height: 40px;
    text-align: center;
    margin-right: 12px;
    color: #636363;
}

.footer-quicklink {
    display: flex;
    flex-direction: column;
}

.footer-quicklink h5 {
    font-family: "Cera Pro Bold";
    font-size: 16px;
    color: var(--cor-titulos-headers);
    line-height: 1;
    display: block;
    text-transform: uppercase;
    margin-bottom: 26px;
    margin-top: 16px;
}

.footer-quicklink a {
    font-family: "Cera Pro Medium";
    font-size: 16px;
    color: #636363;
    line-height: 36px;
    display: inline-block;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
}

.footer-quicklink a:hover {
    color: var(--cor-botoes-paginacao);
    text-decoration: none;
}

.newletter {
    margin-top: 20px;
    padding: 30px;
    background-color: var(--cor-bg-rodape);
}

.newletter .newletter_text h5 {
    font-family: "Cera Pro Bold";
    font-size: 22px;
    color: var(--cor-texto-rodape);
    line-height: 1;
    display: block;
    margin-bottom: 10px;
}

.newletter .newletter_text p {
    font-family: "Cera Pro Medium";
    font-size: 16px;
    color: #fff;
    line-height: 24px;
    display: block;
    color: var(--cor-texto-rodape);
}

.newletter .newletter_input {
    position: relative;
}

.newletter .newletter_input input {
    height: 50px;
    background-color: var(--cor-campo-newssletter);
    border: 0;
    caret-color: #fff;
    color: #fff;
}

.newletter .newletter_input input::placeholder {
    color: #fff;
}

.newletter .newletter_input button {
    position: absolute;
    top: 0;
    right: 0;
    height: 50px;
    background-color: #fff;
    color: var(--cor-botoes-paginacao);
    font-size: 16px;
    border-radius: 999px;
    -webkit-border-radius: 999px;
    -moz-border-radius: 999px;
    -ms-border-radius: 999px;
    -o-border-radius: 999px;
    padding: 15px 30px;
    text-transform: uppercase;
    font-family: 'Cera Pro Bold';
    border: 2px solid #fff;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
    display: inline-block;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.newletter .newletter_input button:hover {
    background-color: #ffffff96;
    color: var(--cor-botoes-paginacao);
    border: 2px solid #ffffff96;
    text-decoration: none;
}

.newletter .newletter_input button:focus {
    outline: 0;
    box-shadow: 0;
}

.footer-v2_header {
    padding-bottom: 50px;
    border-bottom: 1px solid #ebebeb;
}

.footer-v2_header .newletter_v2 {
    margin-top: 0;
    background-color: transparent;
    padding: 0;
}

.footer-v2_header .newletter_v2 .newletter_text {
    margin-bottom: 25px;
}

.footer-v2_header .newletter_v2 .newletter_text h5 {
    font-family: "Cera Pro Bold";
    font-size: 16px;
    color: #252525;
    line-height: 1;
    display: block;
    margin-bottom: 30px;
    margin-top: 16px;
}

.footer-v2_header .newletter_v2 .newletter_text p {
    font-family: "Cera Pro Medium";
    font-size: 16px;
    color: #636363;
    line-height: 24px;
    display: block;
    line-height: 26px;
}

.footer-v2_header .newletter_v2 .newletter_input {
    position: relative;
}

.footer-v2_header .newletter_v2 .newletter_input input {
    background-color: #eaeff4;
    caret-color: unset;
    color: #252525;
}

.footer-v2_header .newletter_v2 .newletter_input input::placeholder {
    color: #d1d1d1;
}

.footer-v2_header .newletter_v2 .newletter_input button {
    position: absolute;
    top: 0;
    right: 0;
    height: 50px;
    background-color: var(--cor-botoes-paginacao);
    color: #fff;
    font-size: 13px;
    border-radius: 999px;
    -webkit-border-radius: 999px;
    -moz-border-radius: 999px;
    -ms-border-radius: 999px;
    -o-border-radius: 999px;
    padding: 15px 30px;
    text-transform: uppercase;
    font-family: 'Cera Pro Bold';
    border: 2px solid var(--cor-botoes-paginacao);
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
    display: inline-block;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.footer-v2_header .newletter_v2 .newletter_input button:hover {
    background-color: transparent;
    color: var(--cor-botoes-paginacao);
    border: 2px solid var(--cor-botoes-paginacao);
    text-decoration: none;
}

.footer-v2_header .newletter_v2 .newletter_input button:focus {
    outline: 0;
    box-shadow: 0;
}

.footer-credit {
    padding: 15px 0;
}

.footer-credit .footer-creadit_block p {
    font-family: "Cera Pro Medium";
    font-size: 16px;
    color: #636363;
    line-height: 1;
    display: block;
    line-height: 20px;
}

/************************************
	Footer pink
*************************************/
/*footer.pink {*/
/*    padding-bottom: 20px;*/
/*}*/

.pink .footer-quicklink a {
    font-family: "Cera Pro Medium";
    font-size: 14px;
    color: var(--cor-titulos-headers);
    line-height: 36px;
    display: inline-block;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
}

.pink .footer-quicklink a:hover {
    color: var(--cor-pink);
    text-decoration: none;
}

.pink .newletter {
    background-color: var(--cor-bg-rodape);
}

.pink .newletter .newletter_input {
    position: relative;
}

.pink .newletter .newletter_input input {
    background-color: var(--cor-campo-newssletter);
    color: var(--cor-texto-newletter);
}

.pink .newletter .newletter_input input::placeholder {
    color: var(--cor-texto-newletter);
    opacity: 1;
}

.pink .newletter .newletter_input input:-ms-input-placeholder {
    color: var(--cor-texto-newletter);
    opacity: 1;
}

.pink .newletter .newletter_input input::-ms-input-placeholder {
    color: var(--cor-texto-newletter);
    opacity: 1;
}

.pink .newletter .newletter_input button {
    position: absolute;
    top: 0;
    right: 0;
    height: 50px;
    background-color: var(--cor-backgroun-btn-newletter);
    color: var(--cor-pink);
    font-size: 16px;
    border-radius: 999px;
    -webkit-border-radius: 999px;
    -moz-border-radius: 999px;
    -ms-border-radius: 999px;
    -o-border-radius: 999px;
    padding: 15px 30px;
    text-transform: uppercase;
    font-family: 'Cera Pro Bold';
    border: 2px solid #fff;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
    display: inline-block;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.pink .newletter .newletter_input button:hover {
    background-color: #ffffff96;
    color: var(--cor-pink);
    border: 2px solid #ffffff96;
    text-decoration: none;
}

.pink .newletter .newletter_input button:focus {
    outline: 0;
    box-shadow: 0;
}

/************************************
	Footer coffee
*************************************/
/*.coffee .footer-quicklink a {*/
/*    font-family: "Cera Pro Medium";*/
/*    font-size: 16px;*/
/*    color: #636363;*/
/*    line-height: 36px;*/
/*    display: inline-block;*/
/*    -webkit-transition: 0.3s ease;*/
/*    -moz-transition: 0.3s ease;*/
/*    -ms-transition: 0.3s ease;*/
/*    -o-transition: 0.3s ease;*/
/*    transition: 0.3s ease;*/
/*}*/

/*.coffee .footer-quicklink a:hover {*/
/*    color: #f79823;*/
/*    text-decoration: none;*/
/*}*/

/*.coffee .newletter {*/
/*    background-color: #f79823;*/
/*}*/

/*.coffee .newletter .newletter_input {*/
/*    position: relative;*/
/*}*/

/*.coffee .newletter .newletter_input input {*/
/*    background-color: #ffbb67;*/
/*}*/

/*.coffee .newletter .newletter_input button {*/
/*    position: absolute;*/
/*    top: 0;*/
/*    right: 0;*/
/*    height: 50px;*/
/*    background-color: #fff;*/
/*    color: #f79823;*/
/*    font-size: 16px;*/
/*    border-radius: 999px;*/
/*    -webkit-border-radius: 999px;*/
/*    -moz-border-radius: 999px;*/
/*    -ms-border-radius: 999px;*/
/*    -o-border-radius: 999px;*/
/*    padding: 15px 30px;*/
/*    text-transform: uppercase;*/
/*    font-family: 'Cera Pro Bold';*/
/*    border: 2px solid #fff;*/
/*    -webkit-transition: 0.3s ease;*/
/*    -moz-transition: 0.3s ease;*/
/*    -ms-transition: 0.3s ease;*/
/*    -o-transition: 0.3s ease;*/
/*    transition: 0.3s ease;*/
/*    display: inline-block;*/
/*    border-top-left-radius: 0;*/
/*    border-bottom-left-radius: 0;*/
/*}*/

/*footer.coffee .newletter .newletter_input button:hover {*/
/*    background-color: #ffffff96;*/
/*    color: #f79823;*/
/*    border: 2px solid #ffffff96;*/
/*    text-decoration: none;*/
/*}*/

/*footer.coffee .newletter .newletter_input button:focus {*/
/*    outline: 0;*/
/*    box-shadow: 0;*/
/*}*/

@media (max-width: 576px) {
    footer .footer-social {
        margin-bottom: 30px;
    }

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

    footer .footer-quicklink h5 {
        margin-bottom: 20px;
        margin-top: 0px;
    }

    footer .newletter {
        margin-top: 0;
        padding: 30px 0;
    }

    footer .newletter .newletter_text {
        margin-bottom: 20px;
    }

    footer .footer-credit .footer-creadit_block p {
        margin-bottom: 10px;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    footer .footer-social {
        margin-bottom: 30px;
    }

    footer .newletter {
        margin-top: 0;
    }

    footer .newletter .newletter_text {
        margin-bottom: 20px;
    }

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

    footer .footer-quicklink h5 {
        margin-bottom: 20px;
        margin-top: 0;
    }

    footer .footer-credit .footer-creadit_block p {
        margin-bottom: 10px;
    }

    footer .footer-credit .footer-creadit_block .payment-method {
        max-width: 150px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    footer .footer-v2_header .footer-social {
        margin-bottom: 30px;
    }

    footer .footer-quicklink {
        margin-bottom: 30px;
    }
}

/************************************
	Sale product
*************************************/
@media (max-width: 576px) {
    .sale-product .sale-product_bottom .w-100 {
        display: none;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    .sale-product .sale-product_bottom .w-100 {
        display: none;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .sale-product .sale-product_top .title-bb {
        font-size: 26px;
    }

    .sale-product .sale-product_bottom .w-100 {
        display: none;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .sale-product .sale-product_bottom .w-100 {
        display: none;
    }
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .sale-product .sale-product_bottom .w-100 {
        display: none;
    }
}

@media (min-width: 1400px) and (max-width: 1769px) {
    .sale-product .sale-product_bottom .w-100 {
        display: none;
    }
}

@media (max-width: 576px) {
    .sale-product .sale-product_bottom .col-12.col-sm-6.col-lg-4.col-lg-3.col-xxl-3.col-xxxl:nth-child(n+7) {
        display: none;
    }

    .home3-product-block #tab-so1 .best-seller_bottom .col-6.col-md-4:nth-child(n+3), .home3-product-block #tab-so2 .best-seller_bottom .col-6.col-md-4:nth-child(n+3) {
        display: none;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    .home3-product-block #tab-so1 .best-seller_bottom .col-6.col-md-4:nth-child(n+3), .home3-product-block #tab-so2 .best-seller_bottom .col-6.col-md-4:nth-child(n+3) {
        display: none;
    }

    .home3-product-block #tab-so2 .best-seller_bottom .col-6.col-md-4:nth-child(n+3) {
        display: none;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .feature-products.feature-products_v2 #tab .col-12.col-sm-6.col-md-4.col-lg-3.col-xxl-2:nth-child(n+7) {
        display: none !important;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .sale-product .sale-product_bottom .col-12.col-sm-6.col-lg-4.col-lg-3.col-xxl-3.col-xxxl:nth-child(n+8) {
        display: none;
    }

    .home3-product-block .sidebar-benefit .benefit-block .our-benefits.column .benefit-detail {
        border-bottom: 0;
    }
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .sale-product .sale-product_bottom .col-12.col-sm-6.col-lg-4.col-lg-3.col-xxl-3.col-xxxl:nth-child(n+8) {
        display: none;
    }
}

/************************************
	Product block
*************************************/
/************************************
	Home3 product block
*************************************/
.home3-product-block {
    margin: 60px 0;
}

.sale-product {
    margin: 20px 0 30px 0;
}

.sale-product .sale-product_bottom {
    border: 1px solid #ebebeb;
}

.home3-product-block .customer-satisfied .customer-satisfied_border {
    border: 1px solid #ebebeb;
    padding: 30px;
}

.home3-product-block .customer-satisfied .customer-satisfied_wrapper .customer-satisfied_block .customer-img {
    height: 100px;
    width: 100px;
    border-radius: 999px;
    border: 1px solid #ebebeb;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.home3-product-block .customer-satisfied .customer-satisfied_wrapper .customer-satisfied_block .customer-img img {
    max-width: 100%;
    max-height: 100%;
}

.home3-product-block .customer-satisfied .customer-satisfied_wrapper .customer-satisfied_block .customer-info .customer-name {
    font-family: "Cera Pro Bold";
    font-size: 16px;
    color: #252525;
    line-height: 1;
    display: block;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.home3-product-block .customer-satisfied .customer-satisfied_wrapper .customer-satisfied_block .customer-info .customer-comment {
    font-family: "Cera Pro Regular";
    font-size: 16px;
    color: #252525;
    line-height: 26px;
    display: block;
    margin-bottom: 25px;
}

.home3-product-block .customer-satisfied .customer-satisfied_wrapper .customer-satisfied_block .customer-info .customer-rate {
    margin-bottom: 55px;
}

.home3-product-block .customer-satisfied .customer-satisfied_wrapper .customer-satisfied_block .customer-info .customer-rate i {
    font-size: 16px;
    color: #efb11c;
    padding: 0 3px;
}

.home3-product-block .customer-satisfied .customer-satisfied_control .dots-wrap {
    margin-bottom: 0;
}

.home3-product-block .customer-satisfied .customer-satisfied_control .dots-wrap li {
    height: 8px;
    width: 8px;
    background-color: #eaeff4;
    border-radius: 999px;
    display: inline-block;
    margin: 0 5px;
}

.home3-product-block .customer-satisfied .customer-satisfied_control .dots-wrap li.slick-active {
    width: 30px;
    background-color: var(--cor-pink);
}

.home3-product-block .quick-banner {
    margin-bottom: 20px;
}

/************************************
	Home5 product block
*************************************/
/*.home5-product-block {*/
/*    margin-bottom: 40px;*/
/*}*/

/*.home5-product-block .mini-product-title {*/
/*    font-family: "Cera Pro Bold";*/
/*    font-size: 24px;*/
/*    color: #252525;*/
/*    line-height: 1;*/
/*    display: block;*/
/*}*/

/*.home5-product-block .mini-product-title .mini-product_top {*/
/*    display: flex;*/
/*    align-items: flex-end;*/
/*    justify-content: space-between;*/
/*    margin-bottom: 30px;*/
/*}*/

/*.home5-product-block .mini-product-title .mini-product_top .mini-product_control button {*/
/*    background-color: transparent;*/
/*    color: #252525;*/
/*    font-size: 11px;*/
/*    border-radius: 999px;*/
/*    -webkit-border-radius: 999px;*/
/*    -moz-border-radius: 999px;*/
/*    -ms-border-radius: 999px;*/
/*    -o-border-radius: 999px;*/
/*    padding: 0px;*/
/*    text-transform: uppercase;*/
/*    font-family: 'Cera Pro Bold';*/
/*    border: 1px solid #ebebeb;*/
/*    -webkit-transition: 0.3s ease;*/
/*    -moz-transition: 0.3s ease;*/
/*    -ms-transition: 0.3s ease;*/
/*    -o-transition: 0.3s ease;*/
/*    transition: 0.3s ease;*/
/*    display: inline-block;*/
/*    height: 25px;*/
/*    width: 25px;*/
/*    margin-right: 5px;*/
/*}*/

/*.home5-product-block .mini-product-title .mini-product_top .mini-product_control button:hover {*/
/*    background-color: #f79823;*/
/*    color: #fff;*/
/*    border: 1px solid #ebebeb;*/
/*    text-decoration: none;*/
/*}*/

/*.home5-product-block .mini-product-title .mini-product_top .mini-product_control button:focus {*/
/*    outline: 0;*/
/*    box-shadow: 0;*/
/*}*/

/*.home5-product-block .mini-product-title .mini-product_top .mini-product_control button:last-child {*/
/*    margin-right: 0;*/
/*}*/

/*.home5-product-block .mini-product-title .mini-product_bottom .mini-product_block .mini-product {*/
/*    margin-bottom: 20px;*/
/*}*/

/************************************
	Home1 best seller
*************************************/
@media (max-width: 576px) {
    .home3-product-block {
        margin: 30px 0 30px 0;
    }

    .home3-product-block #tab {
        margin-bottom: 60px;
    }

    .home3-product-block .deal-of-week_slide {
        margin-bottom: 60px;
    }

    .home3-product-block .deal-of-week_slide .week-deal_top h2 {
        margin-bottom: 0;
    }

    .home3-product-block .sidebar-benefit {
        margin-bottom: 30px;
    }

    .sale-product {
        margin-bottom: 60px;
    }

    .sale-product .sale-product_top h2 {
        margin-bottom: 0;
    }

    .home3-product-block .customer-satisfied {
        margin-bottom: 30px;
    }

    .home3-product-block #tab-so1, .home3-product-block #tab-so2 {
        margin-bottom: 30px;
    }

    .home3-product-block #tab-so2 {
        margin-bottom: 60px;
    }

    .home3-product-block #tab {
        margin-bottom: 60px;
    }

    .home3-product-block .quick-banner {
        margin-bottom: 30px;
    }

    .best-seller #tab-so1, .best-seller .home3-product-block #tab-so2, .home3-product-block .best-seller #tab-so2 {
        margin-bottom: 40px;
    }

    .best-seller #tab-so2 {
        margin-bottom: 30px;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    .home3-product-block {
        margin: 30px 0 30px 0;
    }

    .home3-product-block .deal-of-week_slide {
        margin-bottom: 60px;
    }

    .home3-product-block .deal-of-week_slide .week-deal_top h2 {
        margin-bottom: 0;
    }

    .home3-product-block .sidebar-benefit {
        margin-bottom: 30px;
    }

    .sale-product {
        margin-bottom: 60px;
    }

    .sale-product .sale-product_top h2 {
        margin-bottom: 0;
    }

    .home3-product-block .customer-satisfied {
        margin-bottom: 30px;
    }

    .home3-product-block #tab {
        margin-bottom: 30px;
    }

    .home3-product-block .quick-banner {
        margin-bottom: 30px;
    }

    .home3-product-block #tab-so2 {
        margin-bottom: 30px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .home3-product-block {
        margin: 30px 0 30px 0;
    }

    .home3-product-block .deal-of-week_slide {
        margin-bottom: 60px;
    }

    .home3-product-block .deal-of-week_slide .week-deal_top h2 {
        margin-bottom: 0;
    }

    .home3-product-block .sidebar-benefit {
        margin-bottom: 30px;
    }

    .home3-product-block .sidebar-benefit .benefit-block .our-benefits .benefit-detail {
        border-bottom: 0;
    }

    .sale-product {
        margin-bottom: 60px;
    }

    .sale-product .sale-product_top h2 {
        margin-bottom: 0;
    }

    .home3-product-block .customer-satisfied {
        margin-bottom: 30px;
    }

    .home3-product-block #tab {
        margin-bottom: 30px;
    }

    .home3-product-block .quick-banner {
        margin-bottom: 30px;
    }

    .home3-product-block #tab-so2 {
        margin-bottom: 30px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .home3-product-block {
        margin: 30px 0 30px 0;
    }

    .home3-product-block .deal-of-week_slide {
        margin-bottom: 60px;
    }

    .home3-product-block .deal-of-week_slide .week-deal_top h2 {
        margin-bottom: 0;
    }

    .home3-product-block .sidebar-benefit {
        margin-bottom: 30px;
    }

    .sale-product {
        margin-bottom: 60px;
    }

    .sale-product .sale-product_top h2 {
        margin-bottom: 0;
    }

    .home3-product-block .customer-satisfied {
        margin-bottom: 30px;
    }

    .home3-product-block #tab {
        margin-bottom: 30px;
    }

    .home3-product-block .quick-banner {
        margin-bottom: 30px;
    }

    .home3-product-block #tab-so2 {
        margin-bottom: 30px;
    }
}

/************************************
	Quick banner
*************************************/
/*.quick-banner {*/
/*    background-image: url(../images/homepage03/quick_banner_1_bg.jpg);*/
/*    background-repeat: no-peat;*/
/*    background-position: center;*/
/*    background-size: cover;*/
/*    padding: 40px 0;*/
/*}*/

/*.quick-banner:hover img {*/
/*    animation: mymove 1s infinite;*/
/*}*/

/*.quick-banner .banner-text .discount-block h2 {*/
/*    font-family: "Cera Pro Bold";*/
/*    font-size: 62px;*/
/*    color: var(--cor-pink);*/
/*    line-height: 1;*/
/*    display: block;*/
/*    padding-right: 5px;*/
/*}*/

/*.quick-banner .banner-text .discount-block h3 {*/
/*    font-family: "Cera Pro Bold";*/
/*    font-size: 24px;*/
/*    color: #252525;*/
/*    line-height: 1;*/
/*    display: block;*/
/*    text-transform: uppercase;*/
/*}*/

/*.quick-banner .banner-text .discount-block h3 span {*/
/*    color: var(--cor-pink);*/
/*}*/

/*.quick-banner .banner-text p {*/
/*    font-family: "Cera Pro Regular";*/
/*    font-size: 16px;*/
/*    color: #636363;*/
/*    line-height: 24px;*/
/*    display: block;*/
/*    margin-bottom: 15px;*/
/*}*/

/*!*************************************/
/*	Quick banner 2*/
/**************************************!*/
/*.quick-banner-2, .quick-banner-3 {*/
/*    background-image: url(../images/homepage03/quick_banner_2_bg.jpg);*/
/*}*/

/*.quick-banner-2 .banner-text.big .day, .quick-banner-3 .banner-text.big .day {*/
/*    font-size: 30px;*/
/*    line-height: 36px;*/
/*}*/

/*.quick-banner-2 .banner-text.big .sale, .quick-banner-3 .banner-text.big .sale {*/
/*    font-size: 30px;*/
/*    line-height: 36px;*/
/*}*/

/*.quick-banner-2 .banner-text.big span, .quick-banner-3 .banner-text.big span {*/
/*    display: inline-block;*/
/*}*/

/*.quick-banner-2 .banner-text .day, .quick-banner-3 .banner-text .day {*/
/*    font-family: "Cera Pro Regular";*/
/*    font-size: 24px;*/
/*    color: #252525;*/
/*    line-height: 1;*/
/*    display: block;*/
/*    margin-bottom: 5px;*/
/*    line-height: 28px;*/
/*}*/

/*.quick-banner-2 .banner-text .sale, .quick-banner-3 .banner-text .sale {*/
/*    font-family: "Cera Pro Bold";*/
/*    font-size: 24px;*/
/*    color: #252525;*/
/*    line-height: 1;*/
/*    display: block;*/
/*    margin-bottom: 15px;*/
/*    line-height: 28px;*/
/*}*/

/*.quick-banner-2 .banner-text .sale span, .quick-banner-3 .banner-text .sale span {*/
/*    color: var(--cor-pink);*/
/*}*/

/*!*************************************/
/*	Quick banner 3*/
/**************************************!*/
/*.quick-banner-3 {*/
/*    background-image: url(../images/homepage03/quick_banner_3_bg.jpg);*/
/*}*/

/************************************
	Quick banner block
*************************************/
.quick-banner_block {
    margin: 30px 0 60px 0;
}

.quick-banner_block .quick-banner .bannner-img img {
    max-height: 190px;
}

@media (max-width: 576px) {
    .quick-banner .bannner-img {
        margin-bottom: 30px;
    }

    .quick-banner_block {
        display: none;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    .quick-banner .bannner-img {
        margin-bottom: 30px;
    }

    .quick-banner_block .quick-banner_block .quick-banner {
        margin-bottom: 30px;
    }

    .quick-banner-2, .quick-banner-3 {
        margin-bottom: 30px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .quick-banner {
        margin-bottom: 30px;
    }

    .quick-banner_block {
        margin: 30px 0;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .quick-banner .banner-text h3 br {
        display: none;
    }
}

/************************************
	Introduce
*************************************/
.ogami-introduce .ogami-introduce_block {
    padding: 60px 0 100px 0;
    background-image: url("../images/homepage04/introduce_bg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.ogami-introduce .ogami-introduce_block .introduce_img {
    margin-bottom: 30px;
}

.ogami-introduce .ogami-introduce_block .introduce_img img {
    max-width: 100%;
}

.ogami-introduce .ogami-introduce_block .introduce-info h1 {
    margin-bottom: 30px;
}

.ogami-introduce .ogami-introduce_block .introduce-info p {
    font-family: "Cera Pro Regular";
    font-size: 16px;
    color: #636363;
    line-height: 26px;
    display: block;
    margin-bottom: 30px;
}

.ogami-introduce .ogami-introduce_block .introduce-info .founder-confirm .founder_signature {
    margin-bottom: 30px;
}

.ogami-introduce .ogami-introduce_block .introduce-info .founder-confirm .founder_signature img {
    max-width: 160px;
}

.ogami-introduce .ogami-introduce_block .introduce-info .founder-confirm .founder_name h2 {
    font-family: "Cera Pro Bold";
    font-size: 22px;
    color: #252525;
    line-height: 1;
    display: block;
    margin-bottom: 10px;
}

.ogami-introduce .ogami-introduce_block .introduce-info .founder-confirm .founder_name h5 {
    font-family: "Cera Pro Medium";
    font-size: 12px;
    color: #f79823;
    line-height: 1;
    display: block;
    text-transform: uppercase;
}

/************************************
	Delevery process
*************************************/
.delivery-process {
    position: relative;
}

.delivery-process .delivery-process_holder {
    margin-bottom: 60px;
    background-image: url(../images/homepage04/parallax-home4.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding: 120px 0;
}

.delivery-process .delivery-process_holder .delivery-process_wrapper h1 {
    margin-bottom: 95px;
}

.delivery-process .delivery-process_holder .delivery-process_wrapper .delivery-process_block .process .process-icon {
    display: inline-block;
    position: relative;
    margin-bottom: 20px;
}

.delivery-process .delivery-process_holder .delivery-process_wrapper .delivery-process_block .process .process-icon:after {
    content: "";
    background-image: url(../images/homepage04/step_icon.png);
    background-repeat: no-repeat;
    width: 190px;
    height: 35px;
    display: block;
    position: absolute;
    left: 100%;
    top: 0;
}

.delivery-process .delivery-process_holder .delivery-process_wrapper .delivery-process_block .process .process-icon.clear:after {
    display: none;
}

.delivery-process .delivery-process_holder .delivery-process_wrapper .delivery-process_block .process .process-text h5 {
    font-family: "Cera Pro Bold";
    font-size: 18px;
    color: #f79823;
    line-height: 1;
    display: block;
    margin-bottom: 15px;
}

.delivery-process .delivery-process_holder .delivery-process_wrapper .delivery-process_block .process .process-text p {
    font-family: "Cera Pro Regular";
    font-size: 18px;
    color: #fff;
    line-height: 1;
    display: block;
}

.delivery-process .benefit-block {
    width: 100%;
    top: -60px;
    left: 0;
    position: absolute;
}

@media (max-width: 576px) {
    .delivery-process .benefit-block {
        position: unset;
        margin-bottom: 30px;
    }

    .delivery-process .delivery-process_holder {
        padding: 60px 0;
    }

    .delivery-process .delivery-process_holder .delivery-process_wrapper h1 {
        margin-bottom: 50px;
    }

    .delivery-process .delivery-process_holder .delivery-process_wrapper .delivery-process_block .col-6.col-md-3:nth-child(n+3) .process {
        margin-bottom: 0;
    }

    .delivery-process .delivery-process_holder .delivery-process_wrapper .delivery-process_block .process {
        margin-bottom: 30px;
    }

    .delivery-process .delivery-process_holder .delivery-process_wrapper .delivery-process_block .process .process-icon:after {
        display: none;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    .delivery-process .benefit-block {
        position: unset;
        margin-bottom: 30px;
    }

    .delivery-process .delivery-process_holder {
        padding: 60px 0;
    }

    .delivery-process .delivery-process_holder .delivery-process_wrapper h1 {
        margin-bottom: 50px;
    }

    .delivery-process .delivery-process_holder .delivery-process_wrapper .delivery-process_block .col-6.col-md-3:nth-child(n+3) .process {
        margin-bottom: 0;
    }

    .delivery-process .delivery-process_holder .delivery-process_wrapper .delivery-process_block .process {
        margin-bottom: 50px;
    }

    .delivery-process .delivery-process_holder .delivery-process_wrapper .delivery-process_block .process .process-icon:after {
        display: none;
    }
}

/************************************
	From the blog
*************************************/
.from-blog {
    margin-bottom: 60px;
}

.from-blog .title, .from-blog .title-bb {
    margin-bottom: 35px;
}

.from-blog .news_wrapper {
    cursor: grab;
    margin: 0 -15px;
}

.from-blog .news-blog {
    position: relative;
    max-height: 450px;
    overflow: hidden;
    border-radius: 5px;
}

.from-blog .news-blog .news-blog_img {
    display: flex;
    align-items: center;
    justify-content: center;
}

.from-blog .news-blog .news-blog_img img {
    width: 100%;
    height: auto;
}

.from-blog .news-blog .news-blog_text {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background-color: #fff;
    border-radius: 5px;
    padding: 20px 30px;
}

.from-blog .news-blog .news-blog_text .news-credit {
    margin-bottom: 10px;
}

.from-blog .news-blog .news-blog_text .news-credit .credit {
    font-family: "Cera Pro Medium";
    font-size: 16px;
    color: #b2b2b2;
    line-height: 1;
    display: inline-block;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
    margin-right: 20px;
}

.from-blog .news-blog .news-blog_text .news-credit .credit:hover {
    color: #f79823;
    text-decoration: none;
}

.from-blog .news-blog .news-blog_text .news-credit .credit i {
    color: #f79823;
    margin-right: 10px;
}

.from-blog .news-blog .news-blog_text .news-title {
    font-family: "Cera Pro Bold";
    font-size: 24px;
    color: #252525;
    line-height: 30px;
    display: inline-block;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
}

.from-blog .news-blog .news-blog_text .news-title:hover {
    color: #f79823;
    text-decoration: none;
}

@media (max-width: 576px) {
    .from-blog .news-blog {
        margin-bottom: 30px;
    }
}

/************************************
	Shop layout
*************************************/
.shop-layout {
    margin-bottom: 60px;
}

.shop-layout .recentview-product {
    margin-top: 50px;
}

.shop-layout .recentview-product .recentview-product_bottom .mini-product {
    padding: 15px 0;
}

/************************************
	Shop grid list
*************************************/
.shop-grid-list .shop-products .shop-products_top .product-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.shop-grid-list .shop-products .shop-products_top .product-option .view-method p {
    font-family: "Cera Pro Bold";
    font-size: 20px;
    color: #ccc;
    line-height: 1;
    display: inline-block;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
    margin-right: 15px;
    cursor: pointer;
}

.shop-grid-list .shop-products .shop-products_top .product-option .view-method p:hover {
    color: var(--cor-botoes-paginacao);
    text-decoration: none;
}

.shop-grid-list .shop-products .shop-products_top .product-option .view-method p:last-child {
    margin-right: 0;
}

.shop-grid-list .shop-products .shop-products_top .product-option .view-method p.active {
    color: var(--cor-botoes-paginacao);
}

.shop-grid-list .shop-products .shop-pagination ul {
    margin-bottom: 0;
}

.shop-grid-list .shop-products .shop-pagination ul li {
    display: inline-block;
}

.shop-grid-list .shop-products .shop-pagination ul li .no-round-btn {
    height: 40px;
    width: 40px;
    padding: 0;
}

.shop-grid-list .shop-products .shop-pagination ul li .no-round-btn.active {
    background-color: var(--cor-botoes-paginacao);
    color: #fff;
    border: 1px solid var(--cor-botoes-paginacao);
}

/************************************
	Shop detail
*************************************/
.shop-detail #show-filter-sidebar, #quickview .quickview-box #show-filter-sidebar {
    margin-bottom: 30px;
}

.shop-detail .shop-detail_img, #quickview .quickview-box .shop-detail_img {
    position: relative;
}

.shop-detail .shop-detail_img #zoom-btn, #quickview .quickview-box .shop-detail_img #zoom-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    height: 40px;
    width: 40px;
    z-index: 20;
}

.shop-detail .shop-detail_img .big-img, #quickview .quickview-box .shop-detail_img .big-img {
    width: 100%;
    border: none;
    margin-bottom: 10px;
}

.shop-detail .shop-detail_img .big-img .big-img_block, #quickview .quickview-box .shop-detail_img .big-img .big-img_block {
    width: 100%;
    height: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shop-detail .shop-detail_img .big-img .big-img_block img, #quickview .quickview-box .shop-detail_img .big-img .big-img_block img {
    width: auto;
}

.shop-detail .shop-detail_img .slide-img, #quickview .quickview-box .shop-detail_img .slide-img {
    overflow: hidden;
    height: 130px;
    position: relative;
    width: 100%;
}

.shop-detail .shop-detail_img .slide-img:hover .slick-arrow, #quickview .quickview-box .shop-detail_img .slide-img:hover .slick-arrow {
    opacity: 1;
}

.shop-detail .shop-detail_img .slide-img .slick-arrow, #quickview .quickview-box .shop-detail_img .slide-img .slick-arrow {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 50;
    opacity: 0;
    background-color: rgba(0, 0, 0, 0.55);
    color: #fff;
    font-size: 14px;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    padding: 10px;
    text-transform: uppercase;
    font-family: 'Cera Pro Bold';
    border: 0 solid var(--cor-botoes-paginacao);
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
    display: inline-block;
}

.shop-detail .shop-detail_img .slide-img .slick-arrow:hover, #quickview .quickview-box .shop-detail_img .slide-img .slick-arrow:hover {
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    border: 0 solid var(--cor-botoes-paginacao);
    text-decoration: none;
}

.shop-detail .shop-detail_img .slide-img .slick-arrow:focus, #quickview .quickview-box .shop-detail_img .slide-img .slick-arrow:focus {
    outline: 0;
    box-shadow: 0;
}

.shop-detail .shop-detail_img .slide-img .slick-prev, #quickview .quickview-box .shop-detail_img .slide-img .slick-prev {
    left: 0;
}

.shop-detail .shop-detail_img .slide-img .slick-next, #quickview .quickview-box .shop-detail_img .slide-img .slick-next {
    right: 0;
}

.shop-detail .shop-detail_img .slide-img .slide-img_block, #quickview .quickview-box .shop-detail_img .slide-img .slide-img_block {
    border: 1px solid #ebebeb;
    height: 100%;
    width: 33.3333%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    cursor: pointer;
}

.shop-detail .shop-detail_img .slide-img .slide-img_block:last-child, #quickview .quickview-box .shop-detail_img .slide-img .slide-img_block:last-child {
    margin-right: 0;
}

.shop-detail .shop-detail_img .slide-img .slide-img_block.slick-current, #quickview .quickview-box .shop-detail_img .slide-img .slide-img_block.slick-current {
    border: 2px solid var(--cor-botoes-paginacao);
    border-radius: 2px;
}

.shop-detail .shop-detail_img .slide-img .slide-img_block img, #quickview .quickview-box .shop-detail_img .slide-img .slide-img_block img {
    max-width: 100%;
    max-height: 100%;
}

.shop-detail .shop-detail_info, #quickview .quickview-box .shop-detail_info {
    margin-bottom: 50px;
}

.shop-detail .shop-detail_info .product-type, #quickview .quickview-box .shop-detail_info .product-type {
    margin-bottom: 10px;
}

.shop-detail .shop-detail_info .product-name, #quickview .quickview-box .shop-detail_info .product-name, .shop-detail .shop-detail_info .shopping-cart .product-table .table tbody .product-price, .shopping-cart .product-table .table tbody .shop-detail .shop-detail_info .product-price, #quickview .quickview-box .shop-detail_info .shopping-cart .product-table .table tbody .product-price, .shopping-cart .product-table .table tbody #quickview .quickview-box .shop-detail_info .product-price, .shop-detail .shop-detail_info .shopping-cart .product-table .table tbody .product-total, .shopping-cart .product-table .table tbody .shop-detail .shop-detail_info .product-total, #quickview .quickview-box .shop-detail_info .shopping-cart .product-table .table tbody .product-total, .shopping-cart .product-table .table tbody #quickview .quickview-box .shop-detail_info .product-total, .shop-detail .shop-detail_info .shopping-cart .product-table .shop-compare .compre-table .table tbody .product-availability, .shopping-cart .product-table .shop-compare .compre-table .table tbody .shop-detail .shop-detail_info .product-availability, #quickview .quickview-box .shop-detail_info .shopping-cart .product-table .shop-compare .compre-table .table tbody .product-availability, .shopping-cart .product-table .shop-compare .compre-table .table tbody #quickview .quickview-box .shop-detail_info .product-availability, .shop-detail .shop-detail_info .shop-compare .compre-table .shopping-cart .product-table .table tbody .product-availability, .shop-compare .compre-table .shopping-cart .product-table .table tbody .shop-detail .shop-detail_info .product-availability, #quickview .quickview-box .shop-detail_info .shop-compare .compre-table .shopping-cart .product-table .table tbody .product-availability, .shop-compare .compre-table .shopping-cart .product-table .table tbody #quickview .quickview-box .shop-detail_info .product-availability, .shop-detail .shop-detail_info .shopping-cart .product-table .shop-compare .compre-table .table tbody .product-weight, .shopping-cart .product-table .shop-compare .compre-table .table tbody .shop-detail .shop-detail_info .product-weight, #quickview .quickview-box .shop-detail_info .shopping-cart .product-table .shop-compare .compre-table .table tbody .product-weight, .shopping-cart .product-table .shop-compare .compre-table .table tbody #quickview .quickview-box .shop-detail_info .product-weight, .shop-detail .shop-detail_info .shop-compare .compre-table .shopping-cart .product-table .table tbody .product-weight, .shop-compare .compre-table .shopping-cart .product-table .table tbody .shop-detail .shop-detail_info .product-weight, #quickview .quickview-box .shop-detail_info .shop-compare .compre-table .shopping-cart .product-table .table tbody .product-weight, .shop-compare .compre-table .shopping-cart .product-table .table tbody #quickview .quickview-box .shop-detail_info .product-weight, .shop-detail .shop-detail_info .shopping-cart .product-table .shop-compare .compre-table .table tbody .product-sku, .shopping-cart .product-table .shop-compare .compre-table .table tbody .shop-detail .shop-detail_info .product-sku, #quickview .quickview-box .shop-detail_info .shopping-cart .product-table .shop-compare .compre-table .table tbody .product-sku, .shopping-cart .product-table .shop-compare .compre-table .table tbody #quickview .quickview-box .shop-detail_info .product-sku, .shop-detail .shop-detail_info .shop-compare .compre-table .shopping-cart .product-table .table tbody .product-sku, .shop-compare .compre-table .shopping-cart .product-table .table tbody .shop-detail .shop-detail_info .product-sku, #quickview .quickview-box .shop-detail_info .shop-compare .compre-table .shopping-cart .product-table .table tbody .product-sku, .shop-compare .compre-table .shopping-cart .product-table .table tbody #quickview .quickview-box .shop-detail_info .product-sku {
    font-family: "Cera Pro Bold";
    font-size: 24px;
    color: var(--cor-botoes-paginacao);
    line-height: 28px;
    display: inline-block;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
    margin-bottom: 10px;
}

.shop-detail .shop-detail_info .product-name:hover, #quickview .quickview-box .shop-detail_info .product-name:hover, .shop-detail .shop-detail_info .shopping-cart .product-table .table tbody .product-price:hover, .shopping-cart .product-table .table tbody .shop-detail .shop-detail_info .product-price:hover, #quickview .quickview-box .shop-detail_info .shopping-cart .product-table .table tbody .product-price:hover, .shopping-cart .product-table .table tbody #quickview .quickview-box .shop-detail_info .product-price:hover, .shop-detail .shop-detail_info .shopping-cart .product-table .table tbody .product-total:hover, .shopping-cart .product-table .table tbody .shop-detail .shop-detail_info .product-total:hover, #quickview .quickview-box .shop-detail_info .shopping-cart .product-table .table tbody .product-total:hover, .shopping-cart .product-table .table tbody #quickview .quickview-box .shop-detail_info .product-total:hover, .shop-detail .shop-detail_info .shopping-cart .product-table .shop-compare .compre-table .table tbody .product-availability:hover, .shopping-cart .product-table .shop-compare .compre-table .table tbody .shop-detail .shop-detail_info .product-availability:hover, #quickview .quickview-box .shop-detail_info .shopping-cart .product-table .shop-compare .compre-table .table tbody .product-availability:hover, .shopping-cart .product-table .shop-compare .compre-table .table tbody #quickview .quickview-box .shop-detail_info .product-availability:hover, .shop-detail .shop-detail_info .shop-compare .compre-table .shopping-cart .product-table .table tbody .product-availability:hover, .shop-compare .compre-table .shopping-cart .product-table .table tbody .shop-detail .shop-detail_info .product-availability:hover, #quickview .quickview-box .shop-detail_info .shop-compare .compre-table .shopping-cart .product-table .table tbody .product-availability:hover, .shop-compare .compre-table .shopping-cart .product-table .table tbody #quickview .quickview-box .shop-detail_info .product-availability:hover, .shop-detail .shop-detail_info .shopping-cart .product-table .shop-compare .compre-table .table tbody .product-weight:hover, .shopping-cart .product-table .shop-compare .compre-table .table tbody .shop-detail .shop-detail_info .product-weight:hover, #quickview .quickview-box .shop-detail_info .shopping-cart .product-table .shop-compare .compre-table .table tbody .product-weight:hover, .shopping-cart .product-table .shop-compare .compre-table .table tbody #quickview .quickview-box .shop-detail_info .product-weight:hover, .shop-detail .shop-detail_info .shop-compare .compre-table .shopping-cart .product-table .table tbody .product-weight:hover, .shop-compare .compre-table .shopping-cart .product-table .table tbody .shop-detail .shop-detail_info .product-weight:hover, #quickview .quickview-box .shop-detail_info .shop-compare .compre-table .shopping-cart .product-table .table tbody .product-weight:hover, .shop-compare .compre-table .shopping-cart .product-table .table tbody #quickview .quickview-box .shop-detail_info .product-weight:hover, .shop-detail .shop-detail_info .shopping-cart .product-table .shop-compare .compre-table .table tbody .product-sku:hover, .shopping-cart .product-table .shop-compare .compre-table .table tbody .shop-detail .shop-detail_info .product-sku:hover, #quickview .quickview-box .shop-detail_info .shopping-cart .product-table .shop-compare .compre-table .table tbody .product-sku:hover, .shopping-cart .product-table .shop-compare .compre-table .table tbody #quickview .quickview-box .shop-detail_info .product-sku:hover, .shop-detail .shop-detail_info .shop-compare .compre-table .shopping-cart .product-table .table tbody .product-sku:hover, .shop-compare .compre-table .shopping-cart .product-table .table tbody .shop-detail .shop-detail_info .product-sku:hover, #quickview .quickview-box .shop-detail_info .shop-compare .compre-table .shopping-cart .product-table .table tbody .product-sku:hover, .shop-compare .compre-table .shopping-cart .product-table .table tbody #quickview .quickview-box .shop-detail_info .product-sku:hover {
    text-decoration: none;
}

.shop-detail .shop-detail_info .product-describe, #quickview .quickview-box .shop-detail_info .product-describe {
    font-family: "Cera Pro Light";
    font-size: 16px;
    color: #636363;
    line-height: 26px;
    display: block;
    margin-bottom: 10px;
}

.cont-linha{
    -webkit-line-clamp: 9;
}

.shop-detail .shop-detail_info .product-more, #quickview .quickview-box .shop-detail_info .product-more {
    font-family: "Cera Pro Regular";
    font-size: 14px;
    color: #b2b2b2;
    line-height: 24px;
    display: inline-block;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
    margin-bottom: 30px;
}

.shop-detail .shop-detail_info .product-more:hover, #quickview .quickview-box .shop-detail_info .product-more:hover {
    color: var(--cor-botoes-paginacao);
    text-decoration: none;
}

.shop-detail .shop-detail_info .delivery-status, #quickview .quickview-box .shop-detail_info .delivery-status {
    width: 100%;
    display: block;
    background-color: #ebebeb;
    text-align: center;
    padding: 15px;
    margin-bottom: 30px;
    font-family: "Cera Pro Regular";
    font-size: 14px;
    color: #252525;
    line-height: 1;
    display: block;
}

.shop-detail .shop-detail_info .price-rate .product-price, #quickview .quickview-box .shop-detail_info .price-rate .product-price, .shop-detail .shop-detail_info .price-rate .shopping-cart .product-table .table tbody .product-total, .shopping-cart .product-table .table tbody .shop-detail .shop-detail_info .price-rate .product-total, #quickview .quickview-box .shop-detail_info .price-rate .shopping-cart .product-table .table tbody .product-total, .shopping-cart .product-table .table tbody #quickview .quickview-box .shop-detail_info .price-rate .product-total, .shop-detail .shop-detail_info .price-rate .shop-compare .compre-table .table .product-availability, .shop-compare .compre-table .table .shop-detail .shop-detail_info .price-rate .product-availability, #quickview .quickview-box .shop-detail_info .price-rate .shop-compare .compre-table .table .product-availability, .shop-compare .compre-table .table #quickview .quickview-box .shop-detail_info .price-rate .product-availability, .shop-detail .shop-detail_info .price-rate .shop-compare .compre-table .table .product-weight, .shop-compare .compre-table .table .shop-detail .shop-detail_info .price-rate .product-weight, #quickview .quickview-box .shop-detail_info .price-rate .shop-compare .compre-table .table .product-weight, .shop-compare .compre-table .table #quickview .quickview-box .shop-detail_info .price-rate .product-weight, .shop-detail .shop-detail_info .price-rate .shop-compare .compre-table .table .product-sku, .shop-compare .compre-table .table .shop-detail .shop-detail_info .price-rate .product-sku, #quickview .quickview-box .shop-detail_info .price-rate .shop-compare .compre-table .table .product-sku, .shop-compare .compre-table .table #quickview .quickview-box .shop-detail_info .price-rate .product-sku {
    display: inline-block;
    color: var(--cor-botoes-paginacao);
    font-size: 24px;
    margin-bottom: 25px;
    margin-right: 20px;
}

.shop-detail .shop-detail_info .price-rate .product-price del, #quickview .quickview-box .shop-detail_info .price-rate .product-price del, .shop-detail .shop-detail_info .price-rate .shopping-cart .product-table .table tbody .product-total del, .shopping-cart .product-table .table tbody .shop-detail .shop-detail_info .price-rate .product-total del, #quickview .quickview-box .shop-detail_info .price-rate .shopping-cart .product-table .table tbody .product-total del, .shopping-cart .product-table .table tbody #quickview .quickview-box .shop-detail_info .price-rate .product-total del, .shop-detail .shop-detail_info .price-rate .shop-compare .compre-table .table .product-availability del, .shop-compare .compre-table .table .shop-detail .shop-detail_info .price-rate .product-availability del, #quickview .quickview-box .shop-detail_info .price-rate .shop-compare .compre-table .table .product-availability del, .shop-compare .compre-table .table #quickview .quickview-box .shop-detail_info .price-rate .product-availability del, .shop-detail .shop-detail_info .price-rate .shop-compare .compre-table .table .product-weight del, .shop-compare .compre-table .table .shop-detail .shop-detail_info .price-rate .product-weight del, #quickview .quickview-box .shop-detail_info .price-rate .shop-compare .compre-table .table .product-weight del, .shop-compare .compre-table .table #quickview .quickview-box .shop-detail_info .price-rate .product-weight del, .shop-detail .shop-detail_info .price-rate .shop-compare .compre-table .table .product-sku del, .shop-compare .compre-table .table .shop-detail .shop-detail_info .price-rate .product-sku del, #quickview .quickview-box .shop-detail_info .price-rate .shop-compare .compre-table .table .product-sku del, .shop-compare .compre-table .table #quickview .quickview-box .shop-detail_info .price-rate .product-sku del {
    color: #b2b2b2;
    font-size: 14px;
    display: block;
    margin-bottom: 5px;
}

.shop-detail .shop-detail_info .price-rate .product-rated, #quickview .quickview-box .shop-detail_info .price-rate .product-rated {
    margin-bottom: 15px;
    display: inline-block;
}

.shop-detail .shop-detail_info .price-rate .product-rated i, #quickview .quickview-box .shop-detail_info .price-rate .product-rated i {
    color: #fac451;
    font-size: 13px;
}

.shop-detail .shop-detail_info .price-rate .product-rated span, #quickview .quickview-box .shop-detail_info .price-rate .product-rated span {
    font-family: "Cera Pro Regular";
    font-size: 13px;
    color: #b2b2b2;
    line-height: 1;
    display: block;
    display: inline-block;
}

.shop-detail .shop-detail_info .color-select, #quickview .quickview-box .shop-detail_info .color-select {
    margin-bottom: 30px;
}

.shop-detail .shop-detail_info .color-select h5, #quickview .quickview-box .shop-detail_info .color-select h5 {
    font-family: "Cera Pro Regular";
    font-size: 14px;
    color: #252525;
    line-height: 1;
    display: block;
    display: inline-block;
    margin-right: 15px;
}

.shop-detail .shop-detail_info .color-select .color, #quickview .quickview-box .shop-detail_info .color-select .color {
    border-radius: 999px;
    height: 13px;
    width: 13px;
    margin-right: 10px;
    display: inline-block;
}

.shop-detail .shop-detail_info .quantity-select, #quickview .quickview-box .shop-detail_info .quantity-select {
    margin-bottom: 50px;
}

.shop-detail .shop-detail_info .quantity-select label, #quickview .quickview-box .shop-detail_info .quantity-select label {
    font-family: "Cera Pro Regular";
    font-size: 14px;
    color: #252525;
    line-height: 1;
    display: block;
    display: inline-block;
    margin-right: 15px;
}

.shop-detail .shop-detail_info .quantity-select input, #quickview .quickview-box .shop-detail_info .quantity-select input {
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border: 1px solid #ebebeb;
    padding: 5px 5px 5px 10px;
    height: 40px;
    width: 100%;
    transition: border 0.3s ease;
    width: 60px;
}

.shop-detail .shop-detail_info .quantity-select input:focus, #quickview .quickview-box .shop-detail_info .quantity-select input:focus {
    outline: 0;
    box-shadow: none;
    border-color: #b2b2b2;
}

.shop-detail .shop-detail_info .quantity-select input::-webkit-input-placeholder, #quickview .quickview-box .shop-detail_info .quantity-select input::-webkit-input-placeholder {
    /* WebKit, Blink, Edge */
    font-family: "Cera Pro Regular";
    font-size: 16px;
    color: #d1d1d1;
    line-height: 1;
    display: block;
    line-height: -moz-block-height;
}

.shop-detail .shop-detail_info .quantity-select input:-moz-placeholder, #quickview .quickview-box .shop-detail_info .quantity-select input:-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: #909;
    font-family: "Cera Pro Regular";
    font-size: 16px;
    color: #d1d1d1;
    line-height: 1;
    display: block;
    line-height: -moz-block-height;
}

.shop-detail .shop-detail_info .quantity-select input::-moz-placeholder, #quickview .quickview-box .shop-detail_info .quantity-select input::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: #909;
    font-family: "Cera Pro Regular";
    font-size: 16px;
    color: #d1d1d1;
    line-height: 1;
    display: block;
    line-height: -moz-block-height;
}

.shop-detail .shop-detail_info .quantity-select input:-ms-input-placeholder, #quickview .quickview-box .shop-detail_info .quantity-select input:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    font-family: "Cera Pro Regular";
    font-size: 16px;
    color: #d1d1d1;
    line-height: 1;
    display: block;
    line-height: -moz-block-height;
}

.shop-detail .shop-detail_info .quantity-select input::-ms-input-placeholder, #quickview .quickview-box .shop-detail_info .quantity-select input::-ms-input-placeholder {
    /* Microsoft Edge */
    font-family: "Cera Pro Regular";
    font-size: 16px;
    color: #d1d1d1;
    line-height: 1;
    display: block;
    line-height: -moz-block-height;
}

.shop-detail .shop-detail_info .quantity-select input::placeholder, #quickview .quickview-box .shop-detail_info .quantity-select input::placeholder {
    /* Most modern browsers support this now. */
    font-family: "Cera Pro Regular";
    font-size: 16px;
    color: #d1d1d1;
    line-height: 1;
    display: block;
    line-height: -moz-block-height;
}

.shop-detail .shop-detail_info .product-select, #quickview .quickview-box .shop-detail_info .product-select {
    margin-bottom: 15px;
}

.shop-detail .shop-detail_info .product-select button, #quickview .quickview-box .shop-detail_info .product-select button {
    margin-bottom: 10px;
    width: 100%;
    padding: 10px;
}

.shop-detail .shop-detail_info .product-select button:last-child, #quickview .quickview-box .shop-detail_info .product-select button:last-child {
    margin-bottom: 0;
}

.shop-detail .shop-detail_info .product-select .add-to-compare, #quickview .quickview-box .shop-detail_info .product-select .add-to-compare {
    border: 2px solid #ebebeb;
}

.shop-detail .shop-detail_info .product-select .add-to-compare:hover, #quickview .quickview-box .shop-detail_info .product-select .add-to-compare:hover {
    border: 2px solid var(--cor-botoes-paginacao);
}

.shop-detail .shop-detail_info .product-share h5, #quickview .quickview-box .shop-detail_info .product-share h5 {
    font-family: "Cera Pro Regular";
    font-size: 15px;
    color: #252525;
    line-height: 1;
    display: block;
    display: inline-block;
    margin-right: 15px;
    padding: 15px;
    border-radius: 11px;
    border: none;
}

.shop-detail .shop-detail_info .product-share a, #quickview .quickview-box .shop-detail_info .product-share a {
    font-family: "Cera Pro Medium";
    font-size: 15px;
    color: #b2b2b2;
    line-height: 1;
    display: inline-block;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
    margin-right: 15px;
}

.shop-detail .shop-detail_info .product-share a:hover, #quickview .quickview-box .shop-detail_info .product-share a:hover {
    color: var(--cor-botoes-paginacao);
    text-decoration: none;
}

.shop-detail .shop-detail_info .product-share a:last-child, #quickview .quickview-box .shop-detail_info .product-share a:last-child {
    margin-right: 0;
}

.shop-detail .shop-detail_more-info, #quickview .quickview-box .shop-detail_more-info {
    border: 1px solid #ebebeb;
}

.shop-detail .shop-detail_more-info #tab-so3 ul, #quickview .quickview-box .shop-detail_more-info #tab-so3 ul {
    display: flex;
}

.shop-detail .shop-detail_more-info #tab-so3 ul li, #quickview .quickview-box .shop-detail_more-info #tab-so3 ul li {
    display: inline-block;
    background-color: #eaeff4;
    padding: 10px;
    flex: 1 1 33.33333%;
    text-align: center;
    transition: .3s ease;
    border-right: 1px solid #fff;
}

.shop-detail .shop-detail_more-info #tab-so3 ul li:last-child, #quickview .quickview-box .shop-detail_more-info #tab-so3 ul li:last-child {
    border-right: 0;
}

.shop-detail .shop-detail_more-info #tab-so3 ul li.active, #quickview .quickview-box .shop-detail_more-info #tab-so3 ul li.active {
    background-color: var(--cor-botoes-paginacao);
}

.shop-detail .shop-detail_more-info #tab-so3 ul li.active a, #quickview .quickview-box .shop-detail_more-info #tab-so3 ul li.active a {
    font-family: "Cera Pro Medium";
    font-size: 16px;
    color: #fff;
    line-height: 24px;
    display: inline-block;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
}

.shop-detail .shop-detail_more-info #tab-so3 ul li.active a:hover, #quickview .quickview-box .shop-detail_more-info #tab-so3 ul li.active a:hover {
    color: #fff;
    text-decoration: none;
}

.shop-detail .shop-detail_more-info #tab-so3 ul li a, #quickview .quickview-box .shop-detail_more-info #tab-so3 ul li a {
    font-family: "Cera Pro Medium";
    font-size: 16px;
    color: #252525;
    line-height: 24px;
    display: inline-block;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
    text-transform: uppercase;
}

.shop-detail .shop-detail_more-info #tab-so3 ul li a:hover, #quickview .quickview-box .shop-detail_more-info #tab-so3 ul li a:hover {
    color: #252525;
    text-decoration: none;
}

.shop-detail .shop-detail_more-info #tab-so3 .description-block, #quickview .quickview-box .shop-detail_more-info #tab-so3 .description-block {
    padding: 30px;
}

.shop-detail .shop-detail_more-info #tab-so3 .description-block .description-item_block, #quickview .quickview-box .shop-detail_more-info #tab-so3 .description-block .description-item_block {
    margin-bottom: 30px;
}

.shop-detail .shop-detail_more-info #tab-so3 .description-block .description-item_block:last-child, #quickview .quickview-box .shop-detail_more-info #tab-so3 .description-block .description-item_block:last-child {
    margin-bottom: 0;
}

.shop-detail .shop-detail_more-info #tab-so3 .description-block .description-item_block .description-item_text h2, #quickview .quickview-box .shop-detail_more-info #tab-so3 .description-block .description-item_block .description-item_text h2 {
    font-family: "Cera Pro Bold";
    font-size: 30px;
    color: #252525;
    line-height: 38px;
    display: block;
    margin-bottom: 15px;
}

.shop-detail .shop-detail_more-info #tab-so3 .description-block .description-item_block .description-item_text p, #quickview .quickview-box .shop-detail_more-info #tab-so3 .description-block .description-item_block .description-item_text p {
    font-family: "Cera Pro Regular";
    font-size: 16px;
    color: #636363;
    line-height: 26px;
    display: block;
}

.shop-detail .shop-detail_more-info #tab-so3 .specifications_block, #quickview .quickview-box .shop-detail_more-info #tab-so3 .specifications_block {
    padding: 30px;
}

.shop-detail .shop-detail_more-info #tab-so3 .specifications_block .shop_attributes, #quickview .quickview-box .shop-detail_more-info #tab-so3 .specifications_block .shop_attributes {
    width: 100%;
}

.shop-detail .shop-detail_more-info #tab-so3 .specifications_block .shop_attributes tbody, #quickview .quickview-box .shop-detail_more-info #tab-so3 .specifications_block .shop_attributes tbody {
    border: 1px solid #ebebeb;
}

.shop-detail .shop-detail_more-info #tab-so3 .specifications_block .shop_attributes tbody th, #quickview .quickview-box .shop-detail_more-info #tab-so3 .specifications_block .shop_attributes tbody th {
    width: 30%;
    padding: 18px;
    font-size: 16px;
    font-family: 'Cera Pro Bold';
    color: #252525;
    text-transform: uppercase;
}

.shop-detail .shop-detail_more-info #tab-so3 .specifications_block .shop_attributes tbody td, #quickview .quickview-box .shop-detail_more-info #tab-so3 .specifications_block .shop_attributes tbody td {
    width: 70%;
    padding: 18px;
    font-size: 16px;
    line-height: 20px;
    font-family: 'Cera Pro Regular';
    color: #636363;
}

.shop-detail .shop-detail_more-info #tab-so3 .customer-reviews_block, #quickview .quickview-box .shop-detail_more-info #tab-so3 .customer-reviews_block {
    padding: 30px;
}

.shop-detail .shop-detail_more-info #tab-so3 .customer-reviews_block .customer-review, #quickview .quickview-box .shop-detail_more-info #tab-so3 .customer-reviews_block .customer-review {
    display: flex;
    margin-bottom: 30px;
}

.shop-detail .shop-detail_more-info #tab-so3 .customer-reviews_block .customer-review .customer-review_left, #quickview .quickview-box .shop-detail_more-info #tab-so3 .customer-reviews_block .customer-review .customer-review_left {
    padding-right: 30px;
    border-right: 1px solid #ebebeb;
}

.shop-detail .shop-detail_more-info #tab-so3 .customer-reviews_block .customer-review .customer-review_left .customer-review_img, #quickview .quickview-box .shop-detail_more-info #tab-so3 .customer-reviews_block .customer-review .customer-review_left .customer-review_img {
    width: 70px;
    height: 70px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 15px;
    margin-left: auto;
    margin-right: auto;
}

.shop-detail .shop-detail_more-info #tab-so3 .customer-reviews_block .customer-review .customer-review_left .customer-review_img img, #quickview .quickview-box .shop-detail_more-info #tab-so3 .customer-reviews_block .customer-review .customer-review_left .customer-review_img img {
    max-width: 100%;
    max-height: 100%;
}

.shop-detail .shop-detail_more-info #tab-so3 .customer-reviews_block .customer-review .customer-review_left .customer-rate, #quickview .quickview-box .shop-detail_more-info #tab-so3 .customer-reviews_block .customer-review .customer-review_left .customer-rate {
    text-align: center;
}

.shop-detail .shop-detail_more-info #tab-so3 .customer-reviews_block .customer-review .customer-review_left .customer-rate i, #quickview .quickview-box .shop-detail_more-info #tab-so3 .customer-reviews_block .customer-review .customer-review_left .customer-rate i {
    font-size: 13px;
    color: #efb11c;
}

.shop-detail .shop-detail_more-info #tab-so3 .customer-reviews_block .customer-review .customer-comment, #quickview .quickview-box .shop-detail_more-info #tab-so3 .customer-reviews_block .customer-review .customer-comment {
    flex-grow: 1;
}

.shop-detail .shop-detail_more-info #tab-so3 .customer-reviews_block .customer-review .customer-comment .comment-date, #quickview .quickview-box .shop-detail_more-info #tab-so3 .customer-reviews_block .customer-review .customer-comment .comment-date {
    font-family: "Cera Pro Regular";
    font-size: 14px;
    color: #b2b2b2;
    line-height: 1;
    display: block;
    margin-bottom: 5px;
}

.shop-detail .shop-detail_more-info #tab-so3 .customer-reviews_block .customer-review .customer-comment .customer-name, #quickview .quickview-box .shop-detail_more-info #tab-so3 .customer-reviews_block .customer-review .customer-comment .customer-name {
    font-family: "Cera Pro Regular";
    font-size: 16px;
    color: #252525;
    line-height: 1;
    display: block;
    margin-bottom: 15px;
}

.shop-detail .shop-detail_more-info #tab-so3 .customer-reviews_block .customer-review .customer-comment .customer-commented, #quickview .quickview-box .shop-detail_more-info #tab-so3 .customer-reviews_block .customer-review .customer-comment .customer-commented {
    font-family: "Cera Pro Regular";
    font-size: 16px;
    color: #636363;
    line-height: 24px;
    display: block;
}

.shop-detail .shop-detail_more-info #tab-so3 .customer-reviews_block .add-review .add-review_top h2, #quickview .quickview-box .shop-detail_more-info #tab-so3 .customer-reviews_block .add-review .add-review_top h2 {
    font-family: "Cera Pro Bold";
    font-size: 16px;
    color: #252525;
    line-height: 1;
    display: block;
    margin-bottom: 22px;
}

.shop-detail .shop-detail_more-info #tab-so3 .customer-reviews_block .add-review .add-review_bottom input, #quickview .quickview-box .shop-detail_more-info #tab-so3 .customer-reviews_block .add-review .add-review_bottom input {
    margin-bottom: 15px;
}

.shop-detail .shop-detail_more-info #tab-so3 .customer-reviews_block .add-review .add-review_bottom .rating, #quickview .quickview-box .shop-detail_more-info #tab-so3 .customer-reviews_block .add-review .add-review_bottom .rating {
    margin-bottom: 22px;
}

.shop-detail .shop-detail_more-info #tab-so3 .customer-reviews_block .add-review .add-review_bottom .rating h5, #quickview .quickview-box .shop-detail_more-info #tab-so3 .customer-reviews_block .add-review .add-review_bottom .rating h5 {
    font-family: "Cera Pro Regular";
    font-size: 16px;
    color: #252525;
    line-height: 1;
    display: block;
    display: inline-block;
    margin-right: 15px;
}

.shop-detail .shop-detail_more-info #tab-so3 .customer-reviews_block .add-review .add-review_bottom .rating span i, #quickview .quickview-box .shop-detail_more-info #tab-so3 .customer-reviews_block .add-review .add-review_bottom .rating span i {
    font-size: 14px;
    color: #efb11c;
    display: inline-block;
}

.shop-detail .shop-detail_more-info #tab-so3 .customer-reviews_block .add-review .add-review_bottom textarea, #quickview .quickview-box .shop-detail_more-info #tab-so3 .customer-reviews_block .add-review .add-review_bottom textarea {
    margin-bottom: 10px;
}

/************************************
	Shop detail full width
*************************************/
.shop-detail-fullwidth {
    margin-bottom: 50px;
}

.shop-detail-fullwidth .shop-detail_img .big-img .big-img_block {
    height: auto;
}

.shop-detail-fullwidth .shop-detail_img .slide-img {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: auto;
}

.shop-detail-fullwidth .shop-detail_img .slide-img .slide-img_block {
    height: auto;
    width: 99%;
    margin-right: 0px;
    margin-bottom: 30px;
}

.shop-detail-fullwidth .shop-detail_img .slide-img .slide-img_block:last-child {
    margin-bottom: 0;
}

.shop-detail-fullwidth .shop-detail_info {
    padding-right: 20px;
}

.shop-detail-fullwidth .shop-detail_info .product-name, .shop-detail-fullwidth .shop-detail_info .shopping-cart .product-table .table tbody .product-price, .shopping-cart .product-table .table tbody .shop-detail-fullwidth .shop-detail_info .product-price, .shop-detail-fullwidth .shop-detail_info .shopping-cart .product-table .table tbody .product-total, .shopping-cart .product-table .table tbody .shop-detail-fullwidth .shop-detail_info .product-total, .shop-detail-fullwidth .shop-detail_info .shopping-cart .product-table .shop-compare .compre-table .table tbody .product-availability, .shopping-cart .product-table .shop-compare .compre-table .table tbody .shop-detail-fullwidth .shop-detail_info .product-availability, .shop-detail-fullwidth .shop-detail_info .shop-compare .compre-table .shopping-cart .product-table .table tbody .product-availability, .shop-compare .compre-table .shopping-cart .product-table .table tbody .shop-detail-fullwidth .shop-detail_info .product-availability, .shop-detail-fullwidth .shop-detail_info .shopping-cart .product-table .shop-compare .compre-table .table tbody .product-weight, .shopping-cart .product-table .shop-compare .compre-table .table tbody .shop-detail-fullwidth .shop-detail_info .product-weight, .shop-detail-fullwidth .shop-detail_info .shop-compare .compre-table .shopping-cart .product-table .table tbody .product-weight, .shop-compare .compre-table .shopping-cart .product-table .table tbody .shop-detail-fullwidth .shop-detail_info .product-weight, .shop-detail-fullwidth .shop-detail_info .shopping-cart .product-table .shop-compare .compre-table .table tbody .product-sku, .shopping-cart .product-table .shop-compare .compre-table .table tbody .shop-detail-fullwidth .shop-detail_info .product-sku, .shop-detail-fullwidth .shop-detail_info .shop-compare .compre-table .shopping-cart .product-table .table tbody .product-sku, .shop-compare .compre-table .shopping-cart .product-table .table tbody .shop-detail-fullwidth .shop-detail_info .product-sku {
    margin-bottom: 30px;
    font-size: 30px;
}

.shop-detail-fullwidth .shop-detail_info .product-describe_block {
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid #ebebeb;
}

.shop-detail-fullwidth .shop-detail_info .product-category {
    margin-bottom: 30px;
}

.shop-detail-fullwidth .shop-detail_info .product-category .category {
    font-family: "Cera Pro Regular";
    font-size: 16px;
    color: #252525;
    line-height: 1;
    display: block;
    display: inline-block;
    line-height: 24px;
}

.shop-detail-fullwidth .shop-detail_info .product-category .category:after {
    content: "|";
    margin: 0 15px;
    color: #ebebeb;
}

.shop-detail-fullwidth .shop-detail_info .product-category .category span {
    color: #b2b2b2;
    margin-left: 10px;
    display: inline-block;
}

.shop-detail-fullwidth .shop-detail_info .product-category .category span a {
    font-family: "Cera Pro Regular";
    font-size: 16px;
    color: #636363;
    line-height: 1;
    display: inline-block;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
}

.shop-detail-fullwidth .shop-detail_info .product-category .category span a:hover {
    color: var(--cor-botoes-paginacao);
    text-decoration: none;
}

.shop-detail-fullwidth .shop-detail_info .product-category .category span a:after {
    content: ",";
}

.shop-detail-fullwidth .shop-detail_info .product-category .category span a:last-child:after {
    display: none;
}

.shop-detail-fullwidth .shop-detail_info-full {
    padding-left: 50px;
    padding-right: 0;
    margin-bottom: 0;
    border-left: 1px solid #ebebeb;
}

.shop-detail-fullwidth .shop-detail_info-full .product-guarante .guarante {
    font-family: "Cera Pro Regular";
    font-size: 14px;
    color: #b2b2b2;
    line-height: 30px;
    display: block;
}

.shop-detail-fullwidth .shop-detail_info-full .product-guarante .guarante:before {
    content: "\f00c";
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--cor-botoes-paginacao);
    margin-right: 10px;
}

.shop-detail-fullwidth .shop-detail_more-info #tab-so3 .description-block {
    margin: 30px 60px;
}

.shop-detail-fullwidth .shop-detail_more-info #tab-so3 .specifications_block {
    margin: 30px 60px;
}

.shop-detail-fullwidth .shop-detail_more-info #tab-so3 .customer-reviews_block {
    margin: 30px 60px;
}

.shop-detail-fullwidth .shop-detail_more-info #tab-so3 .description-block {
    padding: 30px 60px;
    margin: 0;
}

.shop-detail-fullwidth .shop-detail_more-info #tab-so3 .specifications_block {
    padding: 30px 60px;
    margin: 0;
}

.shop-detail-fullwidth .shop-detail_more-info #tab-so3 .customer-reviews_block {
    padding: 30px 60px;
    margin: 0;
}

@media (max-width: 576px) {
    .shop-grid-list .shop-products .mini-tab-title {
        padding-bottom: 15px;
    }

    .shop-grid-list .shop-products .mini-tab-title .title, .shop-grid-list .shop-products .mini-tab-title .title-bb {
        margin-bottom: 0;
    }

    .shop-grid-list .shop-products .shop-products_top .product-option {
        white-space: nowrap;
        overflow-x: auto;
    }

    .shop-grid-list .shop-products .shop-products_top .product-option .product-filter {
        margin-right: 20px;
    }

    .shop-grid-list .shop-products .shop-products_top .product-option {
        margin-top: 15px;
    }

    .shop-grid-list .shop-products .shop-products_bottom--fullwidth .w-100 {
        display: none;
    }

    .shop-detail .shop-detail_img, #quickview .quickview-box .shop-detail_img {
        margin-bottom: 30px;
    }

    .shop-detail .shop-detail_img .big-img .big-img_block, #quickview .quickview-box .shop-detail_img .big-img .big-img_block {
        height: auto;
    }

    .shop-detail .shop-detail_img .slide-img, #quickview .quickview-box .shop-detail_img .slide-img {
        height: auto;
    }

    .shop-detail .shop-detail_more-info #tab-so3 ul, #quickview .quickview-box .shop-detail_more-info #tab-so3 ul {
        white-space: nowrap;
        overflow-x: auto;
    }

    .shop-detail .shop-detail_more-info #tab-so3 .description-block, #quickview .quickview-box .shop-detail_more-info #tab-so3 .description-block {
        padding: 15px;
    }

    .shop-detail .shop-detail_more-info #tab-so3 .description-block .description-item_block .description-item_img, #quickview .quickview-box .shop-detail_more-info #tab-so3 .description-block .description-item_block .description-item_img {
        margin-bottom: 30px;
    }

    .shop-detail .shop-detail_more-info #tab-so3 .specifications_block, #quickview .quickview-box .shop-detail_more-info #tab-so3 .specifications_block {
        padding: 15px;
    }

    .shop-detail .shop-detail_more-info #tab-so3 .customer-reviews_block, #quickview .quickview-box .shop-detail_more-info #tab-so3 .customer-reviews_block {
        padding: 15px;
    }

    .shop-detail .shop-detail_more-info #tab-so3 .customer-reviews_block .customer-review .customer-review_left, #quickview .quickview-box .shop-detail_more-info #tab-so3 .customer-reviews_block .customer-review .customer-review_left {
        margin-bottom: 30px;
        padding-right: 0;
        border-right: 0;
    }

    .shop-detail .shop-detail_more-info #tab-so3 .customer-reviews_block .customer-review .customer-review_left .customer-review_img.text-center, #quickview .quickview-box .shop-detail_more-info #tab-so3 .customer-reviews_block .customer-review .customer-review_left .customer-review_img.text-center {
        margin-left: 0;
    }


    .shop-detail .shop-detail_more-info #tab-so3 .customer-reviews_block .customer-review .customer-review_left .customer-rate, #quickview .quickview-box .shop-detail_more-info #tab-so3 .customer-reviews_block .customer-review .customer-review_left .customer-rate {
        text-align: left;
    }

    .shop-detail-fullwidth .shop-detail_info {
        padding-right: 0px;
        margin-bottom: 30px;
    }

    .shop-detail-fullwidth .shop-detail_info .product-category .category {
        display: block;
    }

    .shop-detail-fullwidth .shop-detail_info .product-category .category:after {
        display: none;
    }

    .shop-detail-fullwidth .shop-detail_info-full {
        padding-left: 0;
        border-left: 0;
        margin-bottom: 30px;
    }

    .shop-layout .related-product .related-product_top .title, .shop-layout .related-product .related-product_top .title-bb {
        margin-bottom: 0;
    }

    .shop-layout .shop-pagination {
        margin-top: 30px;
    }

    .shop-layout .shop-grid-list .shop-products .shop-products_bottom .col-12:nth-child(n+5) {
        display: none;
    }

    .shop-layout .shop-grid-list .shop-products .shop-products_bottom--fullwidth .col-12:nth-child(n+5) {
        display: none;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    .shop-grid-list .shop-products .mini-tab-title {
        padding-bottom: 10px;
    }

    .shop-grid-list .shop-products .mini-tab-title .title, .shop-grid-list .shop-products .mini-tab-title .title-bb {
        margin-bottom: 0;
    }

    .shop-grid-list .shop-products .shop-products_top .product-option {
        white-space: nowrap;
        overflow-x: auto;
    }

    .shop-grid-list .shop-products .shop-products_top .product-option .product-filter {
        margin-right: 20px;
    }

    .shop-grid-list .shop-products .shop-products_top .product-option {
        margin-top: 15px;
    }

    .shop-grid-list .shop-products .shop-products_bottom--fullwidth .w-100 {
        display: none;
    }

    .shop-grid-list .shop-products .shop-products_bottom .col-12:nth-child(n+5) {
        display: none;
    }

    .shop-layout .shop-grid-list .shop-products .shop-products_bottom .col-12:nth-child(n+5) {
        display: none;
    }

    .shop-layout .shop-grid-list .shop-products .shop-products_bottom--fullwidth .col-12:nth-child(n+5) {
        display: none;
    }

    .shop-detail .shop-detail_img, #quickview .quickview-box .shop-detail_img {
        margin-bottom: 30px;
    }

    .shop-detail .shop-detail_img .big-img .big-img_block, #quickview .quickview-box .shop-detail_img .big-img .big-img_block {
        height: auto;
    }

    .shop-detail .shop-detail_img .slide-img, #quickview .quickview-box .shop-detail_img .slide-img {
        height: auto;
    }

    .shop-detail .shop-detail_more-info #tab-so3 .description-block .description-item_block .description-item_img, #quickview .quickview-box .shop-detail_more-info #tab-so3 .description-block .description-item_block .description-item_img {
        margin-bottom: 30px;
    }

    .shop-detail-fullwidth .shop-detail_info {
        padding-right: 0px;
        margin-bottom: 30px;
    }

    .shop-detail-fullwidth .shop-detail_info .product-category .category {
        display: block;
    }

    .shop-detail-fullwidth .shop-detail_info .product-category .category:after {
        display: none;
    }

    .shop-detail-fullwidth .shop-detail_info-full {
        padding-left: 0;
        border-left: 0;
        margin-bottom: 30px;
    }

    .shop-detail-fullwidth .shop-detail_more-info #tab-so3 .description-block {
        padding: 30px;
        margin: 0;
    }

    .shop-detail-fullwidth .shop-detail_more-info #tab-so3 .specifications_block {
        padding: 30px;
        margin: 0;
    }

    .shop-detail-fullwidth .shop-detail_more-info #tab-so3 .customer-reviews_block {
        padding: 30px;
        margin: 0;
    }

    .shop-layout .related-product .related-product_top .title, .shop-layout .related-product .related-product_top .title-bb {
        margin-bottom: 0;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .shop-grid-list .shop-products .mini-tab-title {
        padding-bottom: 10px;
    }

    .shop-grid-list .shop-products .mini-tab-title .title, .shop-grid-list .shop-products .mini-tab-title .title-bb {
        margin-bottom: 0;
    }

    .shop-grid-list .shop-products .shop-products_top .product-option {
        white-space: nowrap;
        overflow-x: auto;
    }

    .shop-grid-list .shop-products .shop-products_top .product-option .product-filter {
        margin-right: 20px;
    }

    .shop-grid-list .shop-products .shop-products_top .product-option {
        margin-top: 15px;
    }

    .shop-grid-list .shop-products .shop-products_bottom--fullwidth .w-100 {
        display: none;
    }

    .shop-detail .shop-detail_img, #quickview .quickview-box .shop-detail_img {
        margin-bottom: 30px;
    }

    .shop-detail .shop-detail_img .big-img .big-img_block, #quickview .quickview-box .shop-detail_img .big-img .big-img_block {
        height: auto;
    }

    .shop-detail .shop-detail_img .slide-img, #quickview .quickview-box .shop-detail_img .slide-img {
        height: auto;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .shop-grid-list .shop-products .mini-tab-title {
        padding-bottom: 10px;
    }

    .shop-grid-list .shop-products .mini-tab-title .title, .shop-grid-list .shop-products .mini-tab-title .title-bb {
        margin-bottom: 0;
    }

    .shop-grid-list .shop-products .shop-products_top .product-option {
        white-space: nowrap;
        overflow-x: auto;
    }

    .shop-grid-list .shop-products .shop-products_top .product-option .product-filter {
        margin-right: 20px;
    }

    .shop-grid-list .shop-products .shop-products_top .product-option {
        margin-top: 15px;
    }

    .shop-grid-list .shop-products .shop-products_bottom--fullwidth .w-100 {
        display: none;
    }

    .shop-detail .shop-detail_img, #quickview .quickview-box .shop-detail_img {
        margin-bottom: 30px;
    }

    .shop-detail .shop-detail_img .big-img .big-img_block, #quickview .quickview-box .shop-detail_img .big-img .big-img_block {
        height: auto;
    }

    .shop-detail .shop-detail_img .slide-img, #quickview .quickview-box .shop-detail_img .slide-img {
        height: auto;
    }

    .shop-layout .shop-grid-list .shop-products .shop-products_bottom--fullwidth .col-12:nth-child(n+8) {
        display: none;
    }
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .shop-grid-list .shop-products .shop-products_bottom--fullwidth .w-100 {
        display: none;
    }

    .shop-detail-fullwidth .shop-detail_info {
        padding-right: 0px;
    }

    .shop-detail-fullwidth .shop-detail_info .product-category .category {
        display: block;
    }

    .shop-detail-fullwidth .shop-detail_info .product-category .category:after {
        display: none;
    }

    .shop-detail-fullwidth .shop-detail_info-full {
        padding-left: 20px;
    }

    .shop-layout .shop-grid-list .shop-products .shop-products_bottom--fullwidth .col-12:nth-child(n+8) {
        display: none;
    }
}

@media (min-width: 1400px) and (max-width: 1769px) {
    .shop-grid-list .shop-products .shop-products_bottom--fullwidth .w-100 {
        display: none;
    }
}

/************************************
	Shopping cart
*************************************/
.shopping-cart {
    margin-bottom: 60px;
}

.shopping-cart .product-table .table {
    border: 1px solid #ebebeb;
}

.shopping-cart .product-table .table .product-clear button {
    background-color: #fff;
    color: #252525;
    font-size: 13px;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    padding: 0;
    text-transform: uppercase;
    font-family: 'Cera Pro Bold';
    border: 1px solid #ebebeb;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
    display: inline-block;
    height: 30px;
    width: 30px;
}

.shopping-cart .product-table .table .product-clear button:hover {
    background-color: var(--cor-botoes-paginacao);
    color: #fff;
    border: 1px solid var(--cor-botoes-paginacao);
    text-decoration: none;
}

.shopping-cart .product-table .table .product-clear button:focus {
    outline: 0;
    box-shadow: 0;
}

.shopping-cart .product-table .table thead th {
    font-family: "Cera Pro Bold";
    font-size: 16px;
    color: #252525;
    line-height: 1;
    display: block;
    text-transform: uppercase;
    display: table-cell;
    text-align: center;
    border-bottom: 1px solid #ebebeb;
    vertical-align: middle;
    border-top: 0;
}

.shopping-cart .product-table .table tbody td {
    text-align: center;
    vertical-align: middle;
    border-top: 0;
}

.shopping-cart .product-table .table tbody .product-iamge .img-wrapper {
    height: 170px;
    width: 170px;
    background-color: #f8f8f8;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shopping-cart .product-table .table tbody .product-iamge .img-wrapper img {
    max-height: 100%;
    max-width: 100%;
}

.shopping-cart .product-table .table tbody .product-name, .shopping-cart .product-table .table tbody .product-price, .shopping-cart .product-table .table tbody .product-total, .shopping-cart .product-table .shop-compare .compre-table .table tbody .product-availability, .shop-compare .compre-table .shopping-cart .product-table .table tbody .product-availability, .shopping-cart .product-table .shop-compare .compre-table .table tbody .product-weight, .shop-compare .compre-table .shopping-cart .product-table .table tbody .product-weight, .shopping-cart .product-table .shop-compare .compre-table .table tbody .product-sku, .shop-compare .compre-table .shopping-cart .product-table .table tbody .product-sku {
    font-family: "Cera Pro Bold";
    font-size: 16px;
    color: #252525;
    line-height: 1;
    display: block;
    display: table-cell;
}

.shopping-cart .product-table .table tbody .product-price, .shopping-cart .product-table .table tbody .product-total, .shopping-cart .product-table .shop-compare .compre-table .table tbody .product-availability, .shop-compare .compre-table .shopping-cart .product-table .table tbody .product-availability, .shopping-cart .product-table .shop-compare .compre-table .table tbody .product-weight, .shop-compare .compre-table .shopping-cart .product-table .table tbody .product-weight, .shopping-cart .product-table .shop-compare .compre-table .table tbody .product-sku, .shop-compare .compre-table .shopping-cart .product-table .table tbody .product-sku {
    color: var(--cor-botoes-paginacao);
}

.shopping-cart .product-table .table tbody .product-quantity input {
    height: 40px;
    width: 60px;
    border-radius: 5px;
    padding: 0 10px;
}

.shopping-cart .coupon form input {
    border-width: 0 0 1px 0;
    width: auto;
    margin-right: 15px;
}

.shopping-cart .cart-total_block {
    margin-top: 50px;
}

.shopping-cart .cart-total_block h2 {
    font-family: "Cera Pro Bold";
    font-size: 18px;
    color: #252525;
    line-height: 1;
    display: block;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.shopping-cart .cart-total_block .table {
    border: 1px solid #ebebeb;
    margin-bottom: 30px;
}

.shopping-cart .cart-total_block .table tbody th {
    font-family: "Cera Pro Bold";
    font-size: 16px;
    color: #636363;
    line-height: 1;
    display: block;
    display: table-cell;
    padding: 20px 10px;
}

.shopping-cart .cart-total_block .table tbody td {
    font-family: "Cera Pro Medium";
    font-size: 16px;
    color: #252525;
    line-height: 1;
    display: block;
    display: table-cell;
    padding: 20px 10px;
}

.shopping-cart .cart-total_block .table tbody td p {
    font-family: "Cera Pro Regular";
    font-size: 16px;
    color: #636363;
    line-height: 24px;
    display: block;
}

.shopping-cart .cart-total_block .checkout-method {
    text-align: center;
}

.shopping-cart .cart-total_block .checkout-method button {
    width: 100%;
    margin-bottom: 20px;
}

.shopping-cart .cart-total_block .checkout-method span {
    font-family: "Cera Pro Regular";
    font-size: 16px;
    color: #b2b2b2;
    line-height: 1;
    display: block;
    margin-bottom: 20px;
}

.shopping-cart .cart-total_block .checkout-method a {
    font-family: "Cera Pro Medium";
    font-size: 16px;
    color: #b2b2b2;
    line-height: 1;
    display: inline-block;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
}

.shopping-cart .cart-total_block .checkout-method a:hover {
    color: var(--cor-botoes-paginacao);
    text-decoration: none;
}

@media (max-width: 576px) {
    .coupon {
        margin-bottom: 30px;
    }

    .coupon form input {
        width: 100%;
    }

    .coupon form button {
        width: 100%;
    }

    .cart-update {
        width: 100%;
    }
}

/************************************
	Shop checkout
*************************************/
.shop-checkout {
    margin-bottom: 40px;
}

.shop-checkout .form-title {
    font-family: "Cera Pro Bold";
    font-size: 18px;
    color: #252525;
    line-height: 1;
    display: block;
    margin-bottom: 30px;
}

.shop-checkout .form-group {
    margin-bottom: 30px;
}

.shop-checkout .form-group label {
    font-family: "Cera Pro Regular";
    font-size: 16px;
    color: #636363;
    line-height: 1;
    display: block;
    margin-bottom: 10px;
    display: inline-block;
}

.shop-checkout .shopping-cart .cart-total_block {
    margin-top: 0;
}

.shop-checkout .shopping-cart .cart-total_block .table {
    border: 0;
}

.shop-checkout .shopping-cart .cart-total_block .table tbody th {
    padding: 30px 10px;
}

.shop-checkout .shopping-cart .cart-total_block .table tbody td {
    padding: 30px 10px;
    text-align: right;
}

.shop-checkout .shopping-cart .cart-total_block .table tbody .name {
    font-family: "Cera Pro Regular";
    font-size: 16px;
    color: #252525;
    line-height: 1;
    display: block;
    border-top: 0;
}

.shop-checkout .shopping-cart .cart-total_block .table tbody .price {
    color: var(--cor-botoes-paginacao);
}

.shop-checkout .shopping-cart .cart-total_block .table tbody .price.black {
    color: #252525;
}

.shop-checkout .shopping-cart .cart-total_block .table tbody .total {
    font-size: 20px;
    color: var(--cor-botoes-paginacao);
}

.shop-checkout .shopping-cart .submit-btn {
    width: 100%;
}

/************************************
	Order complete
*************************************/
.order-complete {
    margin-bottom: 60px;
}

.order-complete h1 {
    font-family: "Cera Pro Bold";
    font-size: 24px;
    color: #252525;
    line-height: 27px;
    display: block;
    padding: 80px 0;
    margin-bottom: 50px;
}

.order-complete h1 span {
    color: var(--cor-botoes-paginacao);
}

@media (min-width: 992px) and (max-width: 1199px) {
    .order-complete .benefit-block .our-benefits .benefit-detail {
        border-right: 1px solid #ebebeb !important;
    }
}

/************************************
	Shop compare
*************************************/
.shop-compare {
    margin-bottom: 60px;
}

.shop-compare .compre-table .table {
    display: table;
}

.shop-compare .compre-table .table th {
    vertical-align: middle;
    font-family: "Cera Pro Bold";
    font-size: 16px;
    color: #252525;
    line-height: 1;
    display: block;
    text-transform: uppercase;
    display: table-cell;
    text-align: center;
    border-bottom: 1px solid #ebebeb;
    border-right: 1px solid #ebebeb;
    border-top: 0;
    width: 25%;
    padding: 15px;
    line-height: 24px;
}

.shop-compare .compre-table .table td {
    text-align: center;
    vertical-align: middle;
    border-top: 0;
    border-bottom: 1px solid #ebebeb;
    border-right: 1px solid #ebebeb;
    display: table-cell !important;
    width: 25%;
    padding: 15px;
}

.shop-compare .compre-table .table td:last-child {
    border-right: 0;
}

.shop-compare .compre-table .table .product-items {
    text-align: center;
}

.shop-compare .compre-table .table .product-items .product-img {
    height: 135px;
    width: 135px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    padding: 15px;
}

.shop-compare .compre-table .table .product-items .product-img img {
    max-width: 100%;
    max-height: 100%;
}

.shop-compare .compre-table .table .product-items .product-name, .shop-compare .compre-table .shopping-cart .product-table .table .product-items tbody .product-price, .shopping-cart .product-table .shop-compare .compre-table .table .product-items tbody .product-price, .shop-compare .compre-table .shopping-cart .product-table .table tbody .product-items .product-price, .shopping-cart .product-table .shop-compare .compre-table .table tbody .product-items .product-price, .shop-compare .compre-table .shopping-cart .product-table .table .product-items tbody .product-total, .shopping-cart .product-table .shop-compare .compre-table .table .product-items tbody .product-total, .shop-compare .compre-table .shopping-cart .product-table .table tbody .product-items .product-total, .shopping-cart .product-table .shop-compare .compre-table .table tbody .product-items .product-total, .shopping-cart .product-table .shop-compare .compre-table .table .product-items tbody .product-availability, .shopping-cart .product-table .shop-compare .compre-table .table tbody .product-items .product-availability, .shop-compare .compre-table .shopping-cart .product-table .table .product-items tbody .product-availability, .shop-compare .compre-table .shopping-cart .product-table .table tbody .product-items .product-availability, .shopping-cart .product-table .shop-compare .compre-table .table .product-items tbody .product-weight, .shopping-cart .product-table .shop-compare .compre-table .table tbody .product-items .product-weight, .shop-compare .compre-table .shopping-cart .product-table .table .product-items tbody .product-weight, .shop-compare .compre-table .shopping-cart .product-table .table tbody .product-items .product-weight, .shopping-cart .product-table .shop-compare .compre-table .table .product-items tbody .product-sku, .shopping-cart .product-table .shop-compare .compre-table .table tbody .product-items .product-sku, .shop-compare .compre-table .shopping-cart .product-table .table .product-items tbody .product-sku, .shop-compare .compre-table .shopping-cart .product-table .table tbody .product-items .product-sku {
    font-family: "Cera Pro Medium";
    font-size: 18px;
    color: #252525;
    line-height: 30px;
    display: block;
}

.shop-compare .compre-table .table .product-rate i {
    font-size: 14px;
    color: #efb11c;
}

.shop-compare .compre-table .table .product-price, .shop-compare .compre-table .shopping-cart .product-table .table tbody .product-total, .shopping-cart .product-table .shop-compare .compre-table .table tbody .product-total, .shop-compare .compre-table .table .product-availability, .shop-compare .compre-table .table .product-weight, .shop-compare .compre-table .table .product-sku {
    font-family: "Cera Pro Medium";
    font-size: 16px;
    color: var(--cor-botoes-paginacao);
    line-height: 1;
    display: block;
}

.shop-compare .compre-table .table .add-to-cart a {
    font-family: "Cera Pro Medium";
    font-size: 16px;
    color: #636363;
    line-height: 1;
    display: inline-block;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
    text-transform: uppercase;
}

.shop-compare .compre-table .table .add-to-cart a:hover {
    color: var(--cor-botoes-paginacao);
    text-decoration: none;
}

.shop-compare .compre-table .table .product-availability.oos {
    color: red;
}

.shop-compare .compre-table .table .product-weight, .shop-compare .compre-table .table .product-sku {
    color: #636363;
}

.shop-compare .compre-table .table .product-color .color {
    height: 10px;
    width: 10px;
    border-radius: 999px;
    display: block;
    margin: auto;
}

.shop-compare .compre-table .table .product-sku {
    border-bottom: 0;
}

@media (max-width: 576px) {
    .shop-compare .compre-table .table {
        display: inline-block;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    .shop-compare .compre-table .table {
        display: inline-block;
    }
}

/************************************
	Blog layout
*************************************/
.blog-layout {
    margin-bottom: 60px;
}

.blog-layout #show-filter-sidebar {
    margin-bottom: 30px;
}

.blog-layout .blog-pagination ul {
    margin-bottom: 0;
}

.blog-layout .blog-pagination ul li {
    display: inline-block;
}

.blog-layout .blog-pagination ul li .no-round-btn {
    height: 40px;
    width: 40px;
    padding: 0;
}

.blog-layout .blog-pagination ul li .no-round-btn.active {
    background-color: var(--cor-botoes-paginacao);
    color: #fff;
    border: 1px solid var(--cor-botoes-paginacao);
}

.blog-layout .blog-loadmore {
    text-align: center;
}

.blog-layout .blog-loadmore button {
    background-color: #fff;
    color: #252525;
    font-size: 13px;
    border-radius: 999px;
    -webkit-border-radius: 999px;
    -moz-border-radius: 999px;
    -ms-border-radius: 999px;
    -o-border-radius: 999px;
    padding: 15px 30px;
    text-transform: uppercase;
    font-family: 'Cera Pro Bold';
    border: 2px solid var(--cor-botoes-paginacao);
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
    display: inline-block;
}

.blog-layout .blog-loadmore button:hover {
    background-color: var(--cor-botoes-paginacao);
    color: #fff;
    border: 2px solid var(--cor-botoes-paginacao);
    text-decoration: none;
}

.blog-layout .blog-loadmore button:focus {
    outline: 0;
    box-shadow: 0;
}

.blog-layout .blog-loadmore button i {
    margin-right: 10px;
}

.blog-layout .blog-img a {
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-layout .blog-img a img {
    width: 100%;
}

.blog-layout .blog-tag {
    font-family: "Cera Pro Bold";
    font-size: 12px;
    color: #fff;
    line-height: 1;
    display: block;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 8px 20px;
    display: inline-block;
    background-color: var(--cor-botoes-paginacao);
    border-radius: 2px;
    margin-bottom: 10px;
}

.blog-layout .blog-title {
    font-family: "Cera Pro Bold";
    font-size: 28px;
    color: #252525;
    line-height: 38px;
    display: inline-block;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
    margin-bottom: 10px;
}

.blog-layout .blog-title:hover {
    color: #252525;
    text-decoration: none;
}

.blog-layout .blog-credit {
    margin-bottom: 15px;
}

.blog-layout .blog-credit .credit {
    font-family: "Cera Pro Regular";
    font-size: 14px;
    color: #b2b2b2;
    line-height: 1;
    display: block;
    display: inline-block;
}

.blog-layout .blog-credit .credit.date:after {
    content: "|";
    padding: 0 15px;
}

.blog-layout .blog-describe {
    font-family: "Cera Pro Regular";
    font-size: 16px;
    color: #636363;
    line-height: 24px;
    display: block;
    margin-bottom: 20px;
}

.blog-layout .blog-readmore {
    font-family: "Cera Pro Bold";
    font-size: 13px;
    color: #252525;
    line-height: 1;
    display: inline-block;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
    text-transform: uppercase;
}

.blog-layout .blog-readmore:hover {
    color: var(--cor-botoes-paginacao);
    text-decoration: none;
}

.blog-layout .blog-readmore span {
    color: var(--cor-botoes-paginacao);
}

/************************************
	Blog list
*************************************/
.blog-list .blog-block {
    margin-bottom: 35px;
    padding-bottom: 35px;
    border-bottom: 1px solid #ebebeb;
}

.blog-list .blog-block:last-child {
    border-bottom: 0;
    padding-bottom: 0;
    margin-bottom: 30px;
}

.blog-list .blog-block .blog-text {
    flex-grow: 1;
}

/************************************
	Blog grid
*************************************/
.blog-grid .blog-block, .blog-grid_1col .blog-block {
    margin-bottom: 40px;
}

.blog-grid .blog-block .blog-img, .blog-grid_1col .blog-block .blog-img {
    margin-bottom: 20px;
}

/************************************
	Blog masonry
*************************************/
.blog-masonry {
    column-count: 3;
    column-gap: 30px;
}

.blog-masonry .blog-block {
    display: inline-block;
    margin-bottom: 40px;
}

.blog-masonry .blog-block .blog-img {
    margin-bottom: 20px;
}

.blog-masonry .blog-block:nth-child(2n) {
    margin-bottom: 0;
}

/************************************
	Blog 1 column
*************************************/
.blog-grid_1col .blog-block {
    margin-bottom: 35px;
    padding-bottom: 35px;
    border-bottom: 1px solid #ebebeb;
}

.blog-grid_1col .blog-block .blog-title {
    font-size: 36px;
    line-height: 46px;
    margin-bottom: 20px;
}

.blog-grid_1col .blog-block .blog-img {
    position: relative;
}

.blog-grid_1col .blog-block .blog-img .blog-tag {
    position: absolute;
    top: 0;
    left: 0;
}

.blog-grid_1col .blog-pagination {
    text-align: center;
}

/************************************
	Blog detail
*************************************/
.blog-detail .blog-detail_block {
    margin-bottom: 30px;
}

.blog-detail .blog-detail_block .blog-title {
    font-size: 36px;
    line-height: 48px;
    margin-bottom: 10px;
}

.blog-detail .blog-detail_block .blog-img {
    margin-bottom: 20px;
}

.blog-detail .blog-detail_block .blog-img img {
    width: 100%;
}

.blog-detail .blog-detail_block .blog-quote {
    margin-bottom: 30px;
    border-left: 3px solid var(--cor-botoes-paginacao);
    padding-left: 20px;
}

.blog-detail .blog-detail_block .blog-quote q {
    font-family: "Cera Pro Regular";
    font-size: 18px;
    color: #252525;
    line-height: 26px;
    display: block;
    font-family: 'Cera Pro Regular Italic';
    margin-bottom: 15px;
}

.blog-detail .blog-detail_block .blog-quote p {
    font-family: "Cera Pro Regular";
    font-size: 14px;
    color: #252525;
    line-height: 1;
    display: block;
    text-align: right;
}

.blog-detail .blog-detail_block .blog-describe {
    line-height: 30px;
}

.blog-detail .blog-detail_block .blog-subtitle {
    font-family: "Cera Pro Medium";
    font-size: 24px;
    color: #252525;
    line-height: 28px;
    display: block;
    margin-bottom: 20px;
}

.blog-detail .blog-detail_footer {
    padding-bottom: 30px;
    border-bottom: 1px solid #ebebeb;
    margin-bottom: 15px;
}

.blog-detail .blog-detail_footer .blog-sidebar_tags a {
    margin-right: 10px;
}

.blog-detail .blog-detail_footer .blog-detail_share h5 {
    font-family: "Cera Pro Regular";
    font-size: 16px;
    color: #252525;
    line-height: 1;
    display: block;
    display: inline-block;
    margin-right: 15px;
}

.blog-detail .blog-detail_footer .blog-detail_share span {
    display: inline-block;
}

.blog-detail .blog-detail_footer .blog-detail_share span a {
    font-family: "Cera Pro Regular";
    font-size: 13px;
    color: #636363;
    line-height: 1;
    display: inline-block;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
    margin-right: 30px;
}

.blog-detail .blog-detail_footer .blog-detail_share span a:hover {
    color: var(--cor-botoes-paginacao);
    text-decoration: none;
}

.blog-detail .blog-detail_footer .blog-detail_share span a:last-child {
    margin-right: 0;
}

.blog-detail .blog-detail_comment .comment-title {
    font-family: "Cera Pro Regular";
    font-size: 24px;
    color: #636363;
    line-height: 1;
    display: block;
    margin-bottom: 40px;
}

.blog-detail .blog-detail_comment .customer-reviews_block {
    padding-bottom: 50px;
    border-bottom: 1px solid #ebebeb;
    margin-bottom: 50px;
}

.blog-detail .blog-detail_comment .customer-reviews_block .customer-review {
    display: flex;
    margin-bottom: 30px;
}

.blog-detail .blog-detail_comment .customer-reviews_block .customer-review:last-child {
    margin-bottom: 0;
}

.blog-detail .blog-detail_comment .customer-reviews_block .customer-review:last-child .customer-comment button {
    margin-bottom: 0;
}

.blog-detail .blog-detail_comment .customer-reviews_block .customer-review .customer-review_left .customer-review_img {
    width: 80px;
    height: 80px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 15px;
    background-color: #eaeff4;
}

.blog-detail .blog-detail_comment .customer-reviews_block .customer-review .customer-review_left .customer-review_img img {
    max-width: 100%;
    max-height: 100%;
}

.blog-detail .blog-detail_comment .customer-reviews_block .customer-review .customer-comment {
    flex-grow: 1;
}

.blog-detail .blog-detail_comment .customer-reviews_block .customer-review .customer-comment .comment-date {
    font-family: "Cera Pro Regular";
    font-size: 14px;
    color: #b2b2b2;
    line-height: 1;
    display: block;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.blog-detail .blog-detail_comment .customer-reviews_block .customer-review .customer-comment .customer-name {
    font-family: "Cera Pro Bold";
    font-size: 18px;
    color: #252525;
    line-height: 1;
    display: block;
    margin-bottom: 10px;
}

.blog-detail .blog-detail_comment .customer-reviews_block .customer-review .customer-comment .customer-commented {
    font-family: "Cera Pro Regular";
    font-size: 16px;
    color: #636363;
    line-height: 24px;
    display: block;
    margin-bottom: 15px;
}

.blog-detail .blog-detail_comment .customer-reviews_block .customer-review .customer-comment button {
    background-color: #fff;
    color: #252525;
    font-size: 13px;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
    padding: 8px 20px;
    text-transform: uppercase;
    font-family: 'Cera Pro Bold';
    border: 1px solid #b2b2b2;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
    display: inline-block;
    margin-bottom: 40px;
}

.blog-detail .blog-detail_comment .customer-reviews_block .customer-review .customer-comment button:hover {
    background-color: var(--cor-botoes-paginacao);
    color: #fff;
    border: 1px solid var(--cor-botoes-paginacao);
    text-decoration: none;
}

.blog-detail .blog-detail_comment .customer-reviews_block .customer-review .customer-comment button:focus {
    outline: 0;
    box-shadow: 0;
}

.blog-detail .blog-detail_comment .customer-reviews_block .customer-review .customer-comment .replied-comment button {
    margin-bottom: 0;
}

.blog-detail .blog-detail_comment .leave-reviews_block form input {
    margin-bottom: 30px;
}

.blog-detail .blog-detail_comment .leave-reviews_block form textarea {
    margin-bottom: 50px;
}

@media (max-width: 576px) {
    .blog-list .blog-block .blog-text .blog-title {
        font-size: 18px;
        line-height: 26px;
    }

    .blog-list .blog-block .blog-text .blog-credit {
        display: none;
    }

    .blog-list .blog-block .blog-text .blog-describe {
        display: none;
    }

    .blog-list .blog-block .blog-text .blog-readmore {
        display: none;
    }

    .blog-masonry {
        column-count: 1;
    }

    .blog-masonry .blog-block:nth-child(2n) {
        margin-bottom: 40px;
    }

    .blog-detail .blog-detail_footer .blog-sidebar_tags {
        margin-bottom: 15px;
    }

    .blog-detail .blog-detail_comment .customer-reviews_block .customer-review .customer-comment .replied-comment {
        border-left: 3px solid var(--cor-botoes-paginacao);
        padding-left: 15px;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    .blog-list .blog-block .blog-text .blog-title {
        font-size: 20px;
        line-height: 28px;
    }

    .blog-list .blog-block .blog-text .blog-credit {
        display: none;
    }

    .blog-list .blog-block .blog-text .blog-describe {
        display: none;
    }

    .blog-list .blog-block .blog-text .blog-readmore {
        display: none;
    }

    .blog-masonry {
        column-count: 1;
    }

    .blog-masonry .blog-block:nth-child(2n) {
        margin-bottom: 40px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .blog-masonry {
        column-count: 2;
    }

    .blog-masonry .blog-block:nth-child(2n) {
        margin-bottom: 40px;
    }
}

/************************************
	Account
*************************************/
.account {
    padding: 40px 0 60px 0;
}

.account h1 {
    text-align: center;
    margin-bottom: 40px;
}

.account form label {
    font-family: "Cera Pro Regular";
    font-size: 16px;
    color: #252525;
    line-height: 1;
    display: block;
    margin-bottom: 10px;
}

.account form input {
    margin-bottom: 30px;
}

.account form .account-method {
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.account form .account-method input {
    margin-bottom: 0;
    margin-right: 10px;
}

.account form .account-method label {
    display: inline-block;
    margin-bottom: 0;
}

.account form .account-method .account-forgot a {
    font-family: "Cera Pro Regular";
    font-size: 16px;
    color: #636363;
    line-height: 1;
    display: inline-block;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
}

.account form .account-method .account-forgot a:hover {
    color: var(--cor-botoes-paginacao);
    text-decoration: none;
}

.account form .account-function {
    text-align: center;
}

.account form .account-function button {
    width: 100%;
    margin-bottom: 30px;
}

.account form .account-function .create-account {
    font-family: "Cera Pro Regular";
    font-size: 16px;
    color: #252525;
    line-height: 1;
    display: inline-block;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
    text-transform: uppercase;
    text-decoration: underline;
}

.account form .account-function .create-account:hover {
    color: var(--cor-botoes-paginacao);
    text-decoration: none;
}

/************************************
	About us
*************************************/
.about-us {
    margin-bottom: 60px;
}

.about-us .title, .about-us .title-bb {
    font-size: 36px;
    line-height: 48px;
    margin-bottom: 30px;
}

.about-us .our-story {
    margin-bottom: 60px;
}

.about-us .our-story .title:after, .about-us .our-story .title-bb:after {
    margin-left: 0;
    margin-right: 0;
}

.about-us .our-story .our-story_text p {
    font-family: "Cera Pro Regular";
    font-size: 16px;
    color: #636363;
    line-height: 26px;
    display: block;
    margin-bottom: 20px;
}

.about-us .our-story .our-story_video {
    position: relative;
}

.about-us .our-story .our-story_video img {
    width: 100%;
}
.bg-paginacao{
    background-color: var(--cor-botoes-paginacao) !important;
}
.p-c {
    font-size: 14px;
    color: #636363;
    margin-bottom: 7px;
}
.btn-new{
    padding: 15px 15px 0px 15px !important;
}
.class-cod{
    width: 90%;
    position: relative;
    top: -9px;
}
.about-us .our-story .our-story_video .play-btn {
    position: absolute;
    background-color: #fff;
    color: var(--cor-botoes-paginacao);
    font-size: 13px;
    border-radius: 999px;
    -webkit-border-radius: 999px;
    -moz-border-radius: 999px;
    -ms-border-radius: 999px;
    -o-border-radius: 999px;
    padding: 20px;
    text-transform: uppercase;
    font-family: 'Cera Pro Bold';
    border: 0px solid var(--cor-botoes-paginacao);
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
    display: inline-block;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.about-us .our-story .our-story_video .play-btn:hover {
    background-color: var(--cor-botoes-paginacao);
    color: #fff;
    border: 0px solid var(--cor-botoes-paginacao);
    text-decoration: none;
}

.about-us .our-story .our-story_video .play-btn:focus {
    outline: 0;
    box-shadow: 0;
}

.our-number {
    margin-bottom: 60px;
    padding: 50px 0;
    border: 1px solid #ebebeb;
    background-color: var(--cor-background-seus-numeros);
}

.our-number .our-number_block {
    display: flex;
    align-items: center;
    justify-content: center;
}

.our-number .our-number_block .our-number_icon {
    margin-right: 20px;
}

.our-number .our-number_block .our-number_icon img {
    max-height: 100px;
}

.our-number .our-number_block .our-number_info .nummber-increase {
    font-family: "Cera Pro Medium";
    font-size: 48px;
    color: #252525;
    line-height: 1;
    display: block;
    color: var(--cor-texto-seus-numeros);
}

.our-number .our-number_block .our-number_info p {
    font-family: "Cera Pro Regular";
    font-size: 16px;
    color:var(--cor-texto-seus-numeros);
    line-height: 1;
    display: block;
}

.about-us .why-choose-us {
    margin-bottom: 60px;
    height: 450px;
    padding: 50px 0 0 0;
    overflow: hidden;
    background-image: url(../images/pages/wcu_bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.about-us .why-choose-us .title:after, .about-us .why-choose-us .title-bb:after {
    margin-left: 0;
    margin-right: 0;
}

.about-us .why-choose-us .wcu_img img {
    width: 100%;
}

.about-us .why-choose-us .wcu-wrapper .wcu-block {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.about-us .why-choose-us .wcu-wrapper .wcu-block .wcu_icon {
    margin-right: 26px;
}

.about-us .why-choose-us .wcu-wrapper .wcu-block .wcu_icon .icon-detail {
    border-radius: 999px;
    height: 54px;
    width: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-us .why-choose-us .wcu-wrapper .wcu-block .wcu_icon img {
    max-width: 100%;
}

.about-us .why-choose-us .wcu-wrapper .wcu-block .wcu_intro {
    flex-grow: 1;
}

.about-us .why-choose-us .wcu-wrapper .wcu-block .wcu_intro h5 {
    font-family: "Cera Pro Bold";
    font-size: 18px;
    color: #252525;
    line-height: 1;
    display: block;
    margin-bottom: 12px;
}

.about-us .why-choose-us .wcu-wrapper .wcu-block .wcu_intro p {
    font-family: "Cera Pro Regular";
    font-size: 16px;
    color: #636363;
    line-height: 30px;
    display: block;
    line-height: 24px;
}

.about-us .our-farmer {
    text-align: center;
}

.about-us .our-farmer .our-farmer-block {
    position: relative;
    transform-style: preserve-3d;
}

.about-us .our-farmer .our-farmer-block:hover .farmer-contact_wrapper {
    opacity: 1;
    visibility: visible;
}

.about-us .our-farmer .our-farmer-block .farmer-img img {
    width: 100%;
}

.about-us .our-farmer .our-farmer-block .farmer-contact_wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.about-us .our-farmer .our-farmer-block .farmer-contact_wrapper .farmer-contact {
    text-align: center;
    transform: translateZ(30px);
}

.about-us .our-farmer .our-farmer-block .farmer-contact_wrapper .farmer-contact h2 {
    font-family: "Cera Pro Bold";
    font-size: 22px;
    color: #fff;
    line-height: 1;
    display: block;
    margin-bottom: 15px;
}

.about-us .our-farmer .our-farmer-block .farmer-contact_wrapper .farmer-contact h5 {
    font-family: "Cera Pro Regular";
    font-size: 12px;
    color: #fff;
    line-height: 1;
    display: block;
    margin-bottom: 30px;
}

.about-us .our-farmer .our-farmer-block .farmer-contact_wrapper .farmer-contact .farmer-social a {
    font-family: "Cera Pro Regular";
    font-size: 16px;
    color: #fff;
    line-height: 1;
    display: inline-block;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
    margin-right: 30px;
}

.about-us .our-farmer .our-farmer-block .farmer-contact_wrapper .farmer-contact .farmer-social a:hover {
    color: #fff;
    text-decoration: none;
}

.about-us .our-farmer .our-farmer-block .farmer-contact_wrapper .farmer-contact .farmer-social a:last-child {
    margin-right: 0;
}

@media (max-width: 576px) {
    .our-number {
        padding: 30px 0 0 0;
    }

    .our-number .our-number_block {
        margin-bottom: 30px;
    }

    .about-us .why-choose-us {
        height: auto;
    }

    .about-us .why-choose-us .wcu_img {
        margin-bottom: 30px;
    }

    .about-us .our-farmer .our-farmer-block {
        margin-bottom: 30px;
    }

    .about-us .our-farmer .our-farmer-block .farmer-contact_wrapper {
        opacity: 1;
        visibility: visible;
    }

    .shop-detail_info {
        margin-top: 30px;
    }

    .quickview-box .box2 {
        position: relative !important;;
        left: 0px !important;
        top: 80px !important;;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    .our-number {
        padding: 30px 0 0 0;
    }

    .our-number .our-number_block {
        margin-bottom: 30px;
    }

    .about-us .why-choose-us {
        height: auto;
    }

    .about-us .why-choose-us .wcu_img {
        margin-bottom: 30px;
    }

    .about-us .our-farmer .our-farmer-block {
        margin-bottom: 30px;
    }

    .about-us .our-farmer .our-farmer-block .farmer-contact_wrapper {
        opacity: 1;
        visibility: visible;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .about-us .why-choose-us {
        height: auto;
    }

    .about-us .why-choose-us .wcu_img {
        margin-bottom: 30px;
    }

    .about-us .our-farmer .our-farmer-block {
        margin-bottom: 30px;
    }

    .about-us .our-farmer .our-farmer-block .farmer-contact_wrapper {
        opacity: 1;
        visibility: visible;
    }
}

/************************************
	FAQ
*************************************/
.faq {
    margin-bottom: 60px;
}

.faq #accordion .faq-question, .faq #accordion .faq-answer {
    display: flex;
    align-items: center;
    background-color: transparent;
    border: 0;
}

.faq #accordion .faq-question i, .faq #accordion .faq-answer i {
    color: #fff;
    background-color: #b2b2b2;
    padding: 10px;
    margin-right: 20px;
}

.faq #accordion .faq-question h3, .faq #accordion .faq-answer h3 {
    font-family: "Cera Pro Regular";
    font-size: 18px;
    color: #252525;
    line-height: 26px;
    display: block;
    text-transform: uppercase;
    display: inline-block;
}

.faq #accordion .faq-question.question-active, .faq #accordion .question-active.faq-answer {
    outline: 0;
}

.faq #accordion .faq-question.question-active i, .faq #accordion .question-active.faq-answer i {
    color: #fff;
    background-color: var(--cor-botoes-paginacao);
    padding: 10px;
}

.faq #accordion .faq-question.question-active i:before, .faq #accordion .question-active.faq-answer i:before {
    content: "\4b";
}

.faq #accordion .faq-answer p {
    font-family: "Cera Pro Regular";
    font-size: 16px;
    color: #636363;
    line-height: 24px;
    display: block;
}

/************************************
	Coming soon
*************************************/
.coming-soon {
    background-image: url("../images/pages/coming_soon_bg.png");
    background-size: 90% 90%;
    background-repeat: no-repeat;
    background-position: center;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
}

.coming-soon .coming-soon_block {
    text-align: center;
}

.coming-soon .coming-soon_block h1 {
    margin-bottom: 20px;
}

.coming-soon .coming-soon_block .subtitle {
    font-family: "Cera Pro Regular";
    font-size: 14px;
    color: #252525;
    line-height: 1;
    display: block;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 100px;
}

.coming-soon .coming-soon_block #event-countdown {
    padding-bottom: 40px;
    margin-bottom: 80px;
    border-bottom: 1px solid #ebebeb;
}

.coming-soon .coming-soon_block #event-countdown .countdown-number {
    margin-right: 100px;
    text-transform: uppercase;
    display: inline-block;
    font-family: "Cera Pro Regular";
    font-size: 16px;
    color: #252525;
    line-height: 1;
    display: block;
}

.coming-soon .coming-soon_block #event-countdown .countdown-number:last-child {
    margin-right: 0;
}

.coming-soon .coming-soon_block #event-countdown .countdown-number br {
    display: none;
}

.coming-soon .coming-soon_block #event-countdown .countdown-number span {
    font-family: "Cera Pro Bold";
    font-size: 60px;
    color: var(--cor-botoes-paginacao);
    line-height: 1;
    display: block;
    display: inline-block;
}

.coming-soon .coming-soon_block #event-countdown .countdown-number span:after {
    content: "/";
    font-family: "Cera Pro Regular";
    font-size: 16px;
    color: #252525;
    line-height: 1;
    display: block;
    display: inline-block;
}

.coming-soon .coming-soon_block .follow-us h5 {
    font-family: "Cera Pro Regular";
    font-size: 18px;
    color: #252525;
    line-height: 1;
    display: block;
    margin-bottom: 30px;
}

.coming-soon .coming-soon_block .follow-us a {
    height: 30px;
    width: 30px;
    line-height: 30px;
    margin: 0 15px;
}

@media (max-width: 576px) {
    .coming-soon {
        background-size: cover;
    }

    .coming-soon .coming-soon_block #event-countdown .countdown-number {
        margin-right: 15px;
        font-size: 14px;
    }

    .coming-soon .coming-soon_block #event-countdown .countdown-number span {
        font-size: 28px;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    .coming-soon {
        background-size: cover;
    }

    .coming-soon .coming-soon_block #event-countdown .countdown-number {
        margin-right: 40px;
    }

    .coming-soon .coming-soon_block #event-countdown .countdown-number span {
        font-size: 40px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .coming-soon .coming-soon_block #event-countdown .countdown-number {
        margin-right: 60px;
    }
}

/************************************
	Contact us
*************************************/
.contact-us {
    margin-bottom: 60px;
}

.contact-us .feature.map {
    height: 600px;
}

.contact-us .feature.map iframe {
    height: 100%;
    width: 100%;
    border: 0;
    filter: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/></filter></svg>#grayscale");
    /* Firefox 10+ */
    filter: gray;
    /* IE6-9 */
    -webkit-filter: grayscale(99%);
    /* Chrome 19+ & Safari 6+ */
    -webkit-backface-visibility: hidden;
    /* Fix for transition flickering */
}

.contact-us .contact-method {
    padding: 90px 0 60px 0;
}

.contact-us .contact-method .method-block {
    text-align: center;
}

.contact-us .contact-method .method-block i {
    font-size: 40px;
    color: var(--cor-botoes-paginacao);
    display: block;
    margin-bottom: 35px;
}

.contact-us .contact-method .method-block .method-block_text p {
    font-family: "Cera Pro Regular";
    font-size: 18px;
    color: #252525;
    line-height: 28px;
    display: block;
}

.contact-us .contact-method .method-block .method-block_text p span {
    color: #b2b2b2;
}

.contact-us .leave-message {
    text-align: center;
}

.contact-us .leave-message .title, .contact-us .leave-message .title-bb {
    font-size: 36px;
    margin-bottom: 15px;
}

.contact-us .leave-message p {
    font-family: "Cera Pro Regular";
    font-size: 16px;
    color: #252525;
    line-height: 24px;
    display: block;
    margin-bottom: 40px;
}

.contact-us .leave-message form input {
    margin-bottom: 30px;
}

@media (max-width: 576px) {
    .contact-us .contact-method .method-block {
        margin-bottom: 40px;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    .contact-us .contact-method .method-block {
        margin-bottom: 40px;
    }
}

/************************************
	404 Error
*************************************/
.error-404 {
    padding: 60px 0 80px 0;
}

.error-404 h1 {
    font-family: "Cera Pro Bold";
    font-size: 48px;
    color: #252525;
    line-height: 60px;
    display: block;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.error-404 p {
    font-family: "Cera Pro Regular";
    font-size: 16px;
    color: #252525;
    line-height: 30px;
    display: block;
    margin-bottom: 40px;
}

.error-404 img {
    width: 100%;
}

@media (max-width: 576px) {
    .error-404 .normal-btn {
        margin-bottom: 80px;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    .error-404 .normal-btn {
        margin-bottom: 60px;
    }
}

/************************************
	CUSTOM CLASSES
*************************************/
.select-categorias {
    border: 0px;
    background-color: #ffffff;
    font-size: 17px;
    margin: 0px 10px;
    height: 50px;
    width: 205px;
}

.custom-fixed-nav {
    left: 0;
    top: 0;
    width: 100%;
    position: fixed;
    z-index: 999;
    background-color: var(--cor-bg-topo);
    color: var(--cor-item-menu);
}

.custom-margin-top {
    margin-top: 125px !important;
}

@media (max-width: 767px) {
    .custom-margin-top {
        margin-top: 0 !important;
    }
}

.custom-top-banners {
    width: 100%;
    display: block;

}

.custom-banners-top-control {
    top: -20px;
    position: relative;
    text-align: center;
}

.custom-banners-top-control .dots-wrap {
    margin-bottom: 0;
}

.custom-banners-top-control .dots-wrap li {
    height: 8px;
    width: 8px;
    background-color: #eaeff4;
    border-radius: 999px;
    display: inline-block;
    margin: 0 5px;
    cursor: pointer;
}

.custom-banners-top-control .dots-wrap li.slick-active {
    width: 30px;
    background-color: #000;
    cursor: pointer;
}

.custom-banners-meio-control {
    top: -20px;
    position: relative;
    text-align: center;
}

.custom-banners-meio-control .dots-wrap {
    margin-bottom: 0;
}

.custom-banners-meio-control .dots-wrap li {
    height: 8px;
    width: 8px;
    background-color: #eaeff4;
    border-radius: 999px;
    display: inline-block;
    margin: 0 5px;
    cursor: pointer;
}

.custom-banners-meio-control .dots-wrap li.slick-active {
    width: 30px;
    background-color: #000;
    cursor: pointer;
}

.custom-banners-parceiros-destaque-control {
    top: -20px;
    position: relative;
    text-align: center;
}

.custom-banners-parceiros-destaque-control .dots-wrap {
    margin-bottom: 0;
}

.custom-banners-parceiros-destaque-control .dots-wrap li {
    height: 8px;
    width: 8px;
    background-color: #eaeff4;
    border-radius: 999px;
    display: inline-block;
    margin: 0 5px;
    cursor: pointer;
}

.custom-banners-parceiros-destaque-control .dots-wrap li.slick-active {
    width: 30px;
    background-color: #000;
    cursor: pointer;
}

.custom-banners-parceiros-especiais-control {
    top: -20px;
    position: relative;
    text-align: center;
}

.custom-banners-parceiros-especiais-control .dots-wrap {
    margin-bottom: 0;
}

.custom-banners-parceiros-especiais-control .dots-wrap li {
    height: 8px;
    width: 8px;
    background-color: #eaeff4;
    border-radius: 999px;
    display: inline-block;
    margin: 0 5px;
    cursor: pointer;
}

.custom-banners-parceiros-especiais-control .dots-wrap li.slick-active {
    width: 30px;
    background-color: #000;
    cursor: pointer;
}

.home3-product-block {
    margin: 20px 0 !important;
}

html, #main{
    background-color: var(--cor-background-principal);
}

.custom-newsletter-poweredby {
    font-size: 9px;
    text-align: right;
    color: #FFF;
    margin-top: 5px;
}

.custom-newsletter-poweredby a, a:hover {
    text-decoration: none;
    color: #FFF;
}

.custom-partner-top {
    margin-bottom: 0 !important;
}

.custom-partiner-width {
    width: 100px;
    -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
    filter: grayscale(100%);
}

.custom-partiner-width:hover {
    width: 100px;
    -webkit-filter: grayscale(0); /* Safari 6.0 - 9.0 */
    filter: grayscale(0);
}

.custom-best-seller-height {
    min-height: 993px !important;
}

/* color for socket loading */
.loading-spinner-container {
    text-align: center;
    background: #fff !important;
    height: 150px;
    padding-top: 16 / 9;
}

.spinner {
    display: inline-block;
}

.cursor-pointer {
    cursor: pointer;
}

.swal2-close {
    background-color: #eaeff4 !important;
    color: #252525 !important;
    font-size: 14px !important;
    border-radius: 999px !important;
    -webkit-border-radius: 999px !important;
    -moz-border-radius: 999px !important;
    -ms-border-radius: 999px !important;
    -o-border-radius: 999px !important;
    padding: 0 !important;
    text-transform: uppercase !important;
    font-family: 'Cera Pro Bold' !important;
    border: 0px solid #fff !important;
    -webkit-transition: 0.3s ease !important;
    -moz-transition: 0.3s ease !important;
    -ms-transition: 0.3s ease !important;
    -o-transition: 0.3s ease !important;
    transition: 0.3s ease !important;
    display: inline-block !important;
    width: 2.2em !important;
    height: 2.2em !important;
    top: 10px !important;
    right: 10px !important;
}

.swal2-close:hover {
    background-color: var(--cor-botoes-paginacao) !important;
    color: #fff !important;
    border: 0px solid #fff !important;
    text-decoration: none !important;
}

.swal2-close:focus {
    outline: 0 !important;
    box-shadow: 0 !important;
}

.custom-categoria-size {
    font-size: 70px;
    padding-bottom: 10px;
}

.custom-categoria-color {
    color: #cccccc;
}

.custom-categoria-color:hover {
    color: var(--cor-pink);
}

.custom-cat-name {
    height: 40px !important;
}

.custom-cat-counters {
    font-size: 10px;
}

.custom-main-content-top-pathern {
    margin-top: 21px !important;
}

.custom-margin-top-pathern {
    margin-top: 25px !important;
}

.custom-grid-lojas-margin-top {
    margin-top: 35px !important;
    margin-bottom: 35px !important;
}

.custom-grid-lojas-margin-top-inner {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
}

.custom-item-type {
    font-family: "Cera Pro Bold";
    font-size: 12px;
    color: var(--cor-pink);
    line-height: 1;
    display: block;
    text-transform: uppercase;
    letter-spacing: 2.4px;
    margin-bottom: 10px;
    height: 30px;
    text-align: center;
}

.custom-item-title {
    font-family: "Cera Pro Medium";
    font-size: 18px;
    color: #252525;
    line-height: 24px;
    display: block;
    margin-bottom: 5px;
    transition: 0.4s;
    visibility: visible;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    margin-bottom: -20px;
    height: 100px;
    color: var(--cor-texto-produtos);
}

.custom-item-title-height {
    height: 50px !important;
}

.shop-pagination ul {
    margin-bottom: 0;
}

.shop-pagination ul li {
    display: inline-block;
}

.shop-pagination ul li .no-round-btn {
    height: 40px;
    width: 40px;
    padding: 0;
}

.shop-pagination ul li .no-round-btn.active {
    background-color: var(--cor-botoes-paginacao);
    color: #fff;
    border: 1px solid var(--cor-botoes-paginacao);
}

.internal {
    margin-left: 2px;
    margin-right: 2px;
}

.loading-grid {
    background: rgb(177 177 177 / 5%);
    height: 100%;
    width: 98%;
    position: absolute;
    right: 0px;
    top: 0px;
    padding-left: 50%;
    margin-right: 10px;
}

.powered-by {
    color: #fff;
}

.powered-by:hover {
    color: #fff;
    text-decoration: none;
}

.grid-list-loading {
    text-align: center;
    background: #fff !important;
    height: 380px;
    padding-top: 20%;
}

.custom-banners-lateral-control {
    top: -20px;
    position: relative;
    text-align: center;
}

.custom-banners-lateral-control .dots-wrap {
    margin-bottom: 0;
}

.custom-banners-lateral-control .dots-wrap li {
    height: 8px;
    width: 8px;
    background-color: #eaeff4;
    border-radius: 999px;
    display: inline-block;
    margin: 0 5px;
    cursor: pointer;
}

.custom-banners-lateral-control .dots-wrap li.slick-active {
    width: 30px;
    background-color: #000;
    cursor: pointer;
}

.custom-icon-size-details {
    font-size: 200px;
}

.cuscom-box-icon-details {
    width: 407px;
    height: 280px;
    padding-top: 40px;
}

.custom-big-img {
    height: 400px !important;
    width: 382px !important;
    text-align: center !important;
}

.custom-font-size-10 {
    font-size: 10px !important;
}

.modal-open{
    overflow: auto !important;;
    padding-right: 0 !important;
}

.custom-img-max-size {
    width: 185px !important;
    margin-top: 100px;
}

.btn-minhaloja {
    background-color: var(--cor-bg-botao-minhaloja) !important;
    border-color: var(--cor-bg-botao-minhaloja) !important;
}

.cor-botao-minha-loja {
    color: var(--cor-texto-botao-minhaloja) !important;
}

.custom-color-icons {
    fill: var(--cor-icones-como-usar);
}

.custom-benefit-height {
    height: 98px;
}

.custom-benefit-icon-box {
    width: 36px;
    height: 36px;
    margin-right: 11px
}

#scrollUp {
    right: 20px;
    bottom: 20px;
    background-color: var(--cor-botoes-paginacao);
    color: white;
    padding: 10px;
    border-radius: 999px;
    font-size: 30px;
    border: 2px solid white;
    transition: 0.3s;
}

/*.certificado::before {*/
/*    position: absolute;*/
/*    height: 25px;*/
/*    width: 25px;*/
/*    top: 0;*/
/*    right: 0;*/
/*    !*background-image: url('../../../../imgs/certificado2.svg');*!*/
/*    content: ' ';*/
/*    margin-top: 5px;*/
/*    margin-right: 5px;*/
/*    background-color: var(--cor-icone-verificado);*/
/*    -webkit-mask-image: url('../../../../imgs/certificado.svg');*/
/*    mask-image: url('../../../../imgs/certificado.svg');*/
/*}*/

#scrollUp:hover {
    text-decoration: none;
    background-color: var(--cor-botoes-paginacao);
}

.footersite {
    position: absolute;
    bottom: 0;
}

.vw-tipo-integracao-1001::after {
    content: '1001';
    top: 10px;
    position: absolute;
    font-size: 10px;
}

.vw-tipo-integracao-1001::before {
    content: ' ';
    background-color: #FF0000;
    width: 5px;
    height: 85%;
    top: 0;
    position: absolute;
    left: 0;
    margin-top: 33px;
}

.vw-tipo-integracao-awin::after {
    content: 'Awin';
    top: 10px;
    position: absolute;
    font-size: 10px;
}

.vw-tipo-integracao-awin::before {
    content: ' ';
    background-color: #0c4b00;
    width: 5px;
    height: 85%;
    top: 0;
    position: absolute;
    left: 0;
    margin-top: 33px;
}

.vw-tipo-integracao-lomadee::after {
    content: 'Lomadee';
    top: 10px;
    position: absolute;
    font-size: 10px;
}

.vw-tipo-integracao-lomadee::before {
    content: ' ';
    background-color: #0019ac;
    width: 5px;
    height: 85%;
    top: 0;
    position: absolute;
    left: 0;
    margin-top: 33px;
}

.vw-tipo-integracao-rakuten::after {
    content: 'Rakuten';
    top: 10px;
    position: absolute;
    font-size: 10px;
}

.vw-tipo-integracao-rakuten::before {
    content: ' ';
    background-color: #c2ac00;
    width: 5px;
    height: 85%;
    top: 0;
    position: absolute;
    left: 0;
    margin-top: 33px;
}

.vw-tipo-integracao-afiliados::after {
    content: 'Afiliados';
    top: 10px;
    position: absolute;
    font-size: 10px;
}

.vw-tipo-integracao-afiliados::before {
    content: ' ';
    background-color: #cd00ff;
    width: 5px;
    height: 85%;
    top: 0;
    position: absolute;
    left: 0;
    margin-top: 33px;
}

.vw-tipo-integracao-amazon::after {
    content: 'Afiliados';
    top: 10px;
    position: absolute;
    font-size: 10px;
}

.vw-tipo-integracao-amazon::before {
    content: ' ';
    background-color: #000000;
    width: 5px;
    height: 85%;
    top: 0;
    position: absolute;
    left: 0;
    margin-top: 33px;
}

.modal-content {
    -webkit-border-radius: 20px !important;
    -moz-border-radius: 20px !important;
    border-radius: 20px !important;
    -webkit-border: 20px !important;
    -moz-border: 20px !important;
    border: 1px solid var(--cor-botoes-paginacao) !important;
}
.cor-text-benefício{
    color: #ff8300;
    font-size: 13px;
    font-weight: 400;
}

.quickview-box {
    -webkit-border-radius: 20px !important;
    -moz-border-radius: 20px !important;
    border-radius: 35px !important;
    -webkit-border: 20px !important;
    -moz-border: 20px !important;
    border: 20px !important;
}

.quickview-box .vh-23 {
    height: 23vh;
}

.quickview-box .vh-47 {
    height: 47vh;
}

quickview-box-image {
    max-width: 41vh;
    max-height: 41vh;
}

#quickview .quickview-box .shop-detail_img .big-img .vh-45 {
    height: 45vh !important;
}

.quickview-box .fs-9 {
    font-size: 9px;
}

.likebtn, .unlikebtn {
    transition: 0.3s;
    fill: #8f8f8f;
}

.likebtn:hover, .like-selected {
    fill: var(--success);
}

.unlikebtn:hover, .dislike-selected {
    fill: var(--danger);
}

.quickview-box .box2 {
    width: 370px;
    margin: 320px auto;
    border: 2px solid var(--cor-botoes-paginacao);
    padding: 20px;
    text-align: center;
    font-weight: 900;
    color: #00bfb6;
    font-family: arial;
    position: absolute;
    background: #fff;
    top: 9px;
    left: 73px;
    border-radius: 30px;
}

.quickview-box .sb10:before {
    content: "";
    width: 0px;
    height: 0px;
    position: absolute;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid transparent;
    border-bottom: 10px solid var(--cor-botoes-paginacao);
    right: 50%;
    top: -21px;
}

.quickview-box .sb10:after {
    content: "";
    width: 0px;
    height: 0px;
    position: absolute;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid transparent;
    border-bottom: 10px solid #fff;
    right: 50%;
    top: -18px;
}

.quickview-box .sendErrorForm {
    background: var(--cor-botoes-paginacao);
    padding: 6px 30px;
    font-size: 12px !important;
    border-radius: 10px;
}

.quickview-box .textAreaErrorForm {
    font-size: 12px !important;
    padding: 0px;
    line-height: 14px;
    border: none;
    border-bottom: 2px solid var(--cor-botoes-paginacao);
    border-radius: 0px;
    min-height: 70px;
}

.quickview-box .textAreaErrorForm:focus {
    outline: none;
}

.quickview-box .copy-icon {
    fill: var(--cor-texto-botao-minhaloja);
    margin-top: 3px;
    float: right;
}

.copied, .notCopied {
    display: none;
    position: absolute;
    top: -10px;
    left: 200px;
    background: #fd5f5c;
    font-size: 12px;
    padding: 3px;
    border-radius: 4px;
    transition: 0.7s;
}

.codInput {
    color: var(--cor-texto-botao-minhaloja);
    background: var(--cor-botoes-paginacao);
}

.codInput::selection {
    background: transparent;
    color: var(--cor-texto-botao-minhaloja);
}

.codInput:focus{
    outline: none;
}

.icon_tipo_beneficio {
    fill: var(--cor-icone-tipo_beneficio);
    color: var(--cor-icone-tipo_beneficio);
    stroke: none;
    fill-rule: nonzero;
    fill-opacity: 1;
}
.icon_position{
    position: relative;
    top: -2px;
}
.verificado {
    fill: var(--cor-icone-verificado);
    stroke: none;
    fill-rule: nonzero;
    fill-opacity: 1;
}

.text_tipo_beneficio {
    font-size: 9px;
}

.box-informacoes-validas {
    width: 100%;
    min-height: 30px;
}

.height-20 {
    height: 20px !important;
}

.hide-extra-title {
    overflow: hidden;
    text-overflow: ellipsis;
    width: 660px;
}
.max-marcas{
    max-width: 110px;
    max-height: 50px;
}
@media (max-width: 770px){
    .max-marcas {
        max-width: 200px;
        max-height: 200px;
    }
}

