/* 
    Created on : 09/02/2016, 14:13:33
    Author     : matheusmoreira
*/
.transition {
    transition: 0.3s all;
    -webkit-transition: 0.3s all;
    -moz-transition: 0.3s all;
}

.fontzero {
    font-size: 0rem !important;
    position: absolute;
}

.content {
    width: 90%;
    max-width: 1366px;
    padding: 40px 0;
}

/*HEADER*/
.main_header {
    background-color: #222;
    color: #FFF;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
    -webkit-box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.15);
}

/*header content*/
.main_header_content {
    flex-basis: 70%;
    display: flex;
    align-items: center;
}

/*logo*/
.main_header_logo {
    flex-basis: 20%;
    max-width: 180px;
    padding: 0 15px;
}

.main_header_logo a {
    display: block;
}

.site_title {
    position: absolute;
    text-indent: -9999px;
}

.main_header_logo a:hover {
    opacity: 0.7;
}

/*departments*/
.main_header_departments {
    width: 100%;
    text-align: center;
    color: #888;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.main_header_departments li {
    position: relative;
}

.main_header_departments a {
    width: 100%;
    display: block;
    padding: 15px 10px;
    transition: 0.3s all;
    -webkit-transition: 0.3s all;
    -moz-transition: 0.3s all;
}

.main_header_departments_li,
.main_header_departments_li a {
    text-transform: uppercase;
    font-size: 0.875em;
    cursor: pointer;
    color: #888;
    text-decoration: none;
}

.main_header_departments_li:hover,
.main_header_departments_li a:hover {
    color: #FFF;
}

.main_header_departments ul {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 999;
    width: 230px;
    -webkit-box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.15);
    background: #222;
    border-top: none;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity 0.2s linear
}

.main_header_departments ul li {
    border: none;
    width: 100%;
}

.main_header_departments ul a {
    padding: 15px 20px;
}

.main_header_departments ul ul {
    top: 0;
    left: 100%;
}

.main_header_departments li:hover > ul {
    visibility: visible;
    opacity: 1;
}

/*search*/
.main_header_search_menu {
    flex-basis: 30%;

    display: -webkit-flex; /* Safari */
    -webkit-justify-content: flex-end; /* Safari 6.1+ */
    display: flex;
    justify-content: flex-end;
}

.main_header_search {
    flex: 1;
    text-align: center;
}

.btn_close_search {
    display: none;
}

.btn_open_search {
    width: 60px;
    text-align: center;
    padding: 13px 0;
    cursor: pointer;
    display: none;
}

.btn_open_search:hover {
    opacity: 0.7;
}

.main_header_search form {
    display: flex;
    background-color: #606060;
}

.main_header_search input {
    width: 100%;
    font-size: 0.875em;
    padding: 15px;
    color: #D2D2D2;
    border: none;
    background: none;
    outline: none;
}

.main_header_search button {
    border: none;
    padding: 0 15px;
    font-size: 1em;
    color: #FFF;
    background: none;
    cursor: pointer;
}

.main_header_search button:hover {
    opacity: 0.7;
}

/*menu*/
.main_header_menu {
    flex-basis: 120px;
    text-align: right;
    display: flex;
    align-items: center;
}

.main_header_menu_user {
    flex-basis: 50%;
    text-align: center;
    position: relative;
}

.main_header_menu_user_a {
    display: block;
    cursor: pointer;
    width: 100%;
    padding: 13px 0;
    font-size: 0.65em;
}

.main_header_menu_user_a::before {
    font-size: 1.6em;
    vertical-align: middle;
    margin-right: 5px !important;
}

.main_header_menu_user:hover .main_header_menu_user_a,
.main_header_menu_user_a:hover {
    opacity: 0.7;
}

.main_header_menu_user nav {
    position: absolute;
    background-color: #222;
    text-align: left;
    right: 0;
    top: 100%;
    padding: 10px 20px;
    width: 200px;
    display: none;
}

.main_header_menu_user nav a {
    display: block;
    padding: 8px 0;
    color: #FFF;
    text-decoration: none;
    font-size: 0.875em;
}

.main_header_menu_user nav a:hover {
    opacity: 0.7;
}

.main_header_menu_user:hover nav {
    display: block;
}

.main_header_menu_user_a,
.main_header_menu_user_a:hover,
.main_header_menu_cart,
.main_header_menu_cart:hover {
    color: #FFF;
    text-decoration: none;
}

.main_header_menu_cart {
    flex-basis: 50%;
    text-align: center;
    padding: 13px 0;
    background-color: var(--themeColorA);
}

.main_header_menu_cart {
    position: relative;
}

.main_header_menu_cart:hover {
    opacity: 0.7;
}

.main_header_menu_cart span {
    position: absolute;
    left: calc(50% + 12px);
    bottom: 55%;
    font-size: 0.6em;
}

.main_alert_message {
    text-align: center;
    font-size: 0.6rem;
    background-color: red;
    color: #FFF;
}

.main_alert_message .content {
    padding: 10px 0;
}

/*PAGMENTS*/
.main_infos_pagments {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    background-color: #F7F7F7;
    color: #888;
    font-weight: 400;
    padding: 10px 0;
    border-bottom: 1px solid #D2D2D2;
    position: relative;
    -webkit-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.15);
}

.main_infos_pagments .content {
    padding: 0;
}

.main_infos_pagments article {
    padding: 0 15px;
    text-align: center;
}

.main_infos_pagments h1 {
    font-weight: 400;
    font-size: 0.875em;
    text-transform: uppercase;
}

/*ALERT*/
.main_alert {
    background: #FF0000;
    color: #FFF;
    padding: 20px;
    text-align: center;
}

/*SLIDE*/
.main_slide {
    display: block;
    margin-bottom: 20px;
}

.main_slide .content {
    width: 100%;
    max-width: 100%;
}

/*BANNERS*/
.main_banners_b_slide {
    display: inline-block;
}

.main_banners_b_slide_item {
    width: 48%;
    float: left;
    margin-right: 4%;
}

.wc_slide_item a:hover,
.main_banners_b_slide_item a:hover {
    opacity: 0.7;
}

.main_banners_b_slide_item:nth-of-type(2) {
    margin-right: 0;
}

/*CATEGORIES RANDOMS*/
.random_categories {
    display: flex;
    justify-content: space-between;
    padding: 0 1.5rem;
    gap: 1.5rem;
}

.random_categories_item {
    flex: 1;
    position: relative;
    border-radius: 16px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    overflow: hidden;
}

.random_categories_item img {
    width: 100%;
}

.random_categories_item_header {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.random_categories_item_header h2 {
    font-weight: 700;
    font-size: 2.5rem;
    color: #FFF;
}

.random_categories_item_header a {
    padding: 5px 35px;
    background: #191919;
    color: #FFF;
    font-size: 0.875rem;
    text-decoration: none;
    text-transform: uppercase;
    margin-top: 10px;

    transition: all 0.2s;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
}

.random_categories_item_header a:hover {
    opacity: 0.8;
}

.main_home_products .content {
    padding: 0;
}

/*TITLE SECTIONS*/
.title_sections {
    text-transform: uppercase;
    color: #222;
    margin-bottom: 30px;
}

/*BREAD CRUMBS*/
.breadcrumbs {
    display: block;
    font-size: 1em;
    font-weight: 300;
    color: #555;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.breadcrumbs a {
    text-decoration: none;
    color: var(--themeColorA_h);
    font-weight: 600;
}

/*404*/
.not_found header {
    width: 600px;
    max-width: 90%;
    text-align: center;
    margin: 0 auto 40px auto;
}

.not_found header img {
    margin-bottom: 40px;
}

.not_found header h1 {
    font-size: 2em;
    font-weight: 400;
}

.not_found header .btn {
    font-size: 1.2em;
    margin-top: 40px;
    padding: 15px 25px;
}

/*PAGINAS*/
.page_single {
    background: #fbfbfb;
    padding: 40px 0;
}

.page_single header {
    text-align: center;
    text-transform: uppercase;
    color: var(--themeColorA);
    margin-bottom: 30px;
}

.page_single .page_content {
    padding: 30px;
    background: #fff;
}

/*SINGLE PRODUCT STYLE*/
.single_pdt {
    border: 1px solid rgba(0, 0, 0, 0);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 16px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    overflow: hidden;
}

.single_pdt a {
    text-decoration: none;
}

.single_pdt:hover {
    border-color: var(--themeColorA);
}

.single_pdt:hover header h1 {
    color: var(--themeColorA);
}

.single_pdt_cover {
    position: relative;
}

.single_pdt_cover img {
    width: 100%;
}

.single_pdt_offer {
    font-size: 0.875em;
    text-align: right;
    color: #fff;
    position: absolute;
    top: 10px;
    left: 0;
    padding: 5px 10px;
    background: var(--themeColorA);
}

.single_pdt_stock {
    font-size: 0.875em;
    text-align: right;
    color: #fff;
    position: absolute;
    top: 10px;
    left: 0;
    padding: 5px 10px;
    background: #D41943;
}

.single_pdt_offer_ident {
    top: 41px;
}


.single_pdt_content_desc {
    padding: 20px;
}

.single_pdt header {
    border-bottom: 1px dotted #D2D2D2;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.single_pdt header h1 {
    font-size: 1em;
    line-height: 1;
    font-weight: 700;
    margin-bottom: 5px;
    color: #222222;
}

.single_pdt header p {
    font-size: 0.7em;
    font-weight: 300;
    color: #222222;
}

.single_pdt_price {
    font-size: 1.25em;
    font-weight: 700;
    color: #222;
}

.single_pdt_price span {
    display: block;
    font-size: 0.6em;
    color: #888;
    font-weight: 300;
}

.pdt_single_split {
    font-size: 0.55em;
    font-weight: 300;
    color: #ccc;
}

.single_pdt_btn {
    padding: 15px;
    text-align: center;
    background: #eee;
}

.single_pdt_btn form {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.single_pdt_btn p {
    display: flex;
}

.single_pdt_btn .workcontrol_cart_list_item input {
    width: 35px !important;
}

.single_pdt_btn .workcontrol_cart_list_item .change {
    padding: 6px 0 !important;
}

.single_pdt_btn .btn {
    height: 34px;
    margin: 0;
    font-size: 0.7em;
    text-transform: uppercase;
    padding: 0 20px;
    font-weight: 600;
    background-color: var(--themeColorA);
    text-shadow: 1px 1px rgba(0, 0, 0, 0.3);
}

.single_pdt_btn .btn:hover {
    background-color: var(--themeColorA_h);
}

.owl-dots {
    text-align: center;
    margin-top: 20px;
}

.owl-dots span {
    background-color: #D2D2D2;
    display: inline-block;
    height: 4px;
    margin: 0 5px;
    width: 20px;
    transition: 0.3s all;
    -webkit-transition: 0.3s all;
    -moz-transition: 0.3s all;
}

.owl-dots button {
    outline: none;
}

.owl-dots button:hover span,
.owl-dots button.active span {
    height: 6px;
    background-color: var(--themeColorA);
}

/*BANNERS BAIXO DESTAQUES*/
.main_banners_b_dest {
    display: inline-block;
    margin-bottom: 40px;
}

.main_banners_b_dest_item {
    width: 31%;
    float: left;
    margin-right: 3.5%;
}

.main_banners_b_dest_item a:hover {
    opacity: 0.7;
}

.main_banners_b_dest_item:nth-of-type(3) {
    margin-right: 0;
}

/*ULTIMAS DO BLOG*/
.main_last_news .content {
    padding: 0;
    margin-bottom: 40px;
}

/*NEWSLETTER*/
.main_news {
    background-color: var(--themeColorA);
}

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

.main_news_title {
    flex-basis: 45%;
    color: #FFF;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 1.2em;
}

.main_news_form {
    flex-basis: 55%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.main_news_form_content {
    width: 100%;
    display: flex;
}

.main_news_form input {
    border: none;
    background: none;
    border-bottom: 1px solid #FFF;
    color: #FFF;
    margin: 0 5px;
    outline: none;
}

.main_news_form input::-webkit-input-placeholder { /* Edge */
    color: #e3e3e3;
}

.main_news_form input:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #e3e3e3;
}

.main_news_form input::placeholder {
    color: #e3e3e3;
}

.main_news_form button {
    border: none;
    background-color: #222;
    color: #FFF;
    padding: 0 15px;
    cursor: pointer;
    margin-left: 5px !important;
}

.main_news_form button:hover {
    background-color: #333;
}

/*FOOTER*/
.main_footer {
    background-color: #222;
}

/*rodape*/
.main_rodape .content {
    display: flex;
    padding: 50px 0 100px 0;
}

.main_rodape_menu {
    display: flex;
    align-items: flex-start;
    flex-basis: 50%;
}

.main_rodape_menu li {
    color: #FFF;
    font-weight: 500;
    text-transform: uppercase;
    flex-basis: 50%;
}

.main_rodape_menu_li_ul {
    margin-top: 10px;
}

.main_rodape_menu_li_ul a {
    text-decoration: none;
    color: #888;
    text-transform: initial;
    font-size: 0.75em;
}

.main_rodape_menu_li_ul a:hover {
    color: #FFF;
}

.payment_forms {
    flex-basis: 25%;
}

.payment_forms span {
    display: block;
    color: #FFF;
    font-weight: 500;
    text-transform: uppercase;
    flex-basis: 50%;
    margin-bottom: 15px;
}

.main_rodape_redes {
    flex-basis: 25%;
    text-align: right;
    display: block;
}

.main_rodape_redes a {
    display: inline-block;
    text-decoration: none;
    font-size: 1.3em;
    color: #888;
    margin-left: 10px !important;
}

.main_rodape_redes a:hover {
    color: #FFF;
}

/*copyright*/
.main_copyright {
    color: #888;
}

.main_copyright .content {
    border-top: 1px solid #606060;
    padding: 30px 0 60px 0;
    display: flex;
    align-items: center;
}

.main_copyright_infos, .main_copyright_ass {
    flex-basis: 50%;
    font-size: 0.75em;
}

.main_copyright_infos p, .main_copyright_ass p {
    font-weight: 300;
}

.main_copyright_ass {
    text-align: right;
}

.main_copyright_ass a {
    text-decoration: none;
    font-weight: 700;
    color: #FFF;
}

.main_copyright_ass a:hover {
    opacity: 0.7;
}

/*PRODUCT STORE*/
.produtct_basics_cover {
    float: left;
    width: 55%;
    position: relative;
}

.produtct_basics_cover img {
    width: 100%;
}

.produtct_basics_cover_offer {
    position: absolute;
    top: 50px;
    left: 0;
    text-align: right;
    color: #fff;
    width: 50%;
    padding: 10px 20px;
    background: var(--themeColorA);
    font-size: 0.8em;
}

.produtct_basics_cover_stock {
    position: absolute;
    top: 50px;
    left: 0;
    text-align: right;
    color: #fff;
    width: 45%;
    padding: 10px 20px;
    background: #d6a6a6;
    font-size: 0.8em;
}

.produtct_basics_cover_ident {
    top: 88px;
}

.produtct_basics_cover ul {
    display: block;
    width: 100%;
    padding-top: 10px;
    background: #fff;
}

.produtct_basics_cover li {
    display: inline-block;
    width: 20%;
    margin-bottom: 15px;
}

.produtct_basics_infor {
    float: right;
    width: 45%;
    padding-left: 5%;
}

.produtct_basics_infor .info {
    padding: 25px 0;
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
    font-size: 0.875em;
    color: #555;
}

.produtct_basics_infor .info p {
    margin-bottom: 3px;
}

.produtct_basics_infor .info .reviews {
    margin: 10px 0 20px 0;
    font-size: 0.9em;
    text-transform: uppercase;
    color: var(--themeColorA);
}

.produtct_basics_infor header {
    display: flex;
    flex-direction: column;
}

.produtct_basics_infor header h1 {
    font-size: 1.8em;
    text-transform: uppercase;
    font-weight: 700;
    color: #222222;
}

.produtct_basics_infor header .cat {
    text-transform: uppercase;
    color: var(--themeColorA);
    text-decoration: none !important;
}

.produtct_basics_infor header .cat:hover {
    color: var(--themeColorA_h);
}

.produtct_basics_infor header p {
    font-size: 0.8em;
}

.produtct_basics_infor .info .price {
    display: flex;
    flex-direction: column;
}

.produtct_basics_infor .info .price p {
    font-weight: 300;
    color: #888888;
    font-size: 1.1em;
    margin: 0;
}

.produtct_basics_infor .info .price span {
    font-size: 2.2em;
    text-transform: uppercase;
    font-weight: 700;
    color: #222222;
}

.produtct_basics_infor .price_split {
    font-size: 0.5em;
    color: #888;
}

.produtct_basics_infor form {
    display: block;
    width: 100%;
    vertical-align: bottom;
}

.produtct_basics_infor a {
    text-decoration: none;
    color: var(--themeColorA_h);
}

.produtct_basics_infor a:hover {
    color: var(--themeColorA_h);
    text-decoration: underline;
}

.produtct_basics_infor .wc_cart_add button.btn {
    background-color: var(--themeColorA) !important;
    text-shadow: none;
    transition: all 0.2s;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
}

.produtct_basics_infor .wc_cart_add button.btn:hover {
    background-color: var(--themeColorA_h) !important;
}

/*Sharer*/
.produtct_basics_infor_sharer {
    margin: 40px 0;
    display: flex;
    align-items: center;
}

.produtct_basics_infor_sharer span {
    text-transform: uppercase;
    font-size: 0.75em;
}

.produtct_basics_infor_sharer a {
    text-decoration: none !important;
    margin: 0 5px;
}

.produtct_basics_infor_sharer .post_share {
    display: flex;
    margin-left: 15px;
}

/*Descriptions*/
.produtct_basics_infor_descriptions {
    text-align: left !important;
}

.description_ask {
    flex-basis: 100%;
    cursor: pointer;
    padding: 20px 0;
    border-top: 1px solid #D2D2D2;
}

.description_ask .title {
    font-weight: 700;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.description_ask .title i {
    font-size: 0.8em;
}

.description_ask_coll {
    display: none;
    padding-top: 15px;
    font-size: 0.8em;
    font-weight: 300;
    color: #888888;
}

.description_ask_coll .htmlchars {
    padding: 0 !important;
}

.description_ask_coll p {
    font-size: 1em !important;
}

.produtct_infor {
    background: #fbfbfb;
}

.produtct_infor .htmlchars {
    padding: 30px;
    background: #fff;
}

.produtct_more {
    text-align: center;
    color: #222;
}

.produtct_more .content {
    padding: 0;
}

.produtct_more .content > header {
    margin-bottom: 30px;
}

.produtct_more .content > header h1 {
    font-size: 2em;
    text-transform: uppercase;
    font-weight: 700;
}

.produtct_more .content > header p {
    font-size: 0.8em;
    text-transform: uppercase;
    font-weight: 300;
}

.produtct_more .single_pdt {
    background: #fff;
    border: none;
    box-shadow: none;
    color: #ccc;
}

.produtct_reviews .comments {
    font-size: 0.875em;
    background: #fff;
}

/*LIST*/
.single_list {
    float: right;
    width: 75%;
    padding: 40px 0 0 40px;
}

.main_home_products .single_list {
    padding-top: 40px;
}

.single_list .single_pdt {
    width: 30%;
    margin: 0 5% 30px 0;
    display: inline-block;
}

.single_list .single_pdt:nth-of-type(3n+0) {
    margin-right: 0;
}

/*SIDEBAR*/
.single_sidebar {
    float: left;
    width: 25%;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    padding-top: 40px;
}

.main_home_products .single_sidebar {
    padding-top: 40px;
}

.single_sidebar section > h1 {
    font-size: 1.5em;
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid #ccc;
}

.single_sidebar section > h1 span {
    border-bottom: 5px solid #ccc;
    padding-bottom: 11px;
}

.single_sidebar_widget {
    float: left;
    width: 100%;
    margin-bottom: 30px;
    background: #fff;
}

.single_sidebar_widget.delivered article {
    float: left;
    width: 100%;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px dotted #ccc;
}

.single_sidebar_widget.delivered article img {
    float: left;
    width: 30%;
    border-radius: 16px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    overflow: hidden;
}

.single_sidebar_widget.delivered article div {
    float: right;
    width: 70%;
    padding-left: 5%;
}

.single_sidebar_widget.delivered article h1 {
    font-size: 1em;
    font-weight: 500;
    line-height: 1.1;
    margin: 0 0 8px 0;
}

.single_sidebar_widget.delivered article a {
    color: var(--themeColorA_h);
    text-decoration: none;
}

.single_sidebar_widget.delivered article a:hover {
    color: #5fa961;
    text-decoration: underline;
}

.single_sidebar_widget.delivered article p {
    font-size: 0.75em;
    font-weight: 300;
    color: #555;
}

.single_sidebar_widget.delivered article p.description {
    margin: 10px 0;
}

.single_sidebar_widget.delivered article .offer {
    font-size: 0.75em;
    font-weight: 500;
    color: #888;
    margin-bottom: 5px;
}

.single_sidebar_widget.delivered article .offer span {
    color: #222;
    display: block;
    font-weight: 700;
    font-size: 1.9em;
    margin-top: 3px;
    line-height: 1;
}

.single_sidebar_widget.delivered article .offerend {
    font-size: 0.6em;
    text-transform: uppercase;
}

.single_sidebar_widget.delivered .single_sidebar_widget_price {
    width: 100%;
    padding: 0;
}

.single_sidebar_widget.posts article {
    float: left;
    width: 100%;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px dotted #ccc;
}

.single_sidebar_widget.posts article img {
    width: 100%;
    margin-bottom: 15px;
}

.single_sidebar_widget.posts article h1 {
    font-size: 1.1em;
    font-weight: 500;
    line-height: 1.3;
}

.single_sidebar_widget.posts article a {
    color: var(--themeColorA_h);
    text-decoration: none;
}

.single_sidebar_widget.posts article a:hover {
    color: #5fa961;
    text-decoration: underline;
}

.single_sidebar_widget:before {
    clear: both;
}

/*BLOG LIST*/

/*header*/
.blog_header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    position: relative;
}

.blog_header h2 {
    text-transform: uppercase;
    font-size: 2rem;
}

.blog_header a {
    text-decoration: none;
}

.blog_header .keep_buying {
    text-transform: uppercase;
    position: absolute;
    left: 0;

    color: #000;
    opacity: 0.5;
    transition: all 0.2s;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
}

.blog_header .keep_buying:hover {
    opacity: 1;
    padding-left: 5px;
}

.blog_header_categories {
    display: flex;
    align-items: center;
    position: absolute;
    right: 0;
}

.blog_header_categories a {
    text-transform: uppercase;
    color: #888888;
    padding: 5px 10px;

    transition: all 0.2s;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
}

.blog_header_categories a:hover,
.blog_header_categories a.active {
    color: var(--themeColorA);
}

.blog_posts_slide {
    margin-bottom: 50px;
}

/*list*/
.blog_posts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 40px;
}

.blog_posts_header {
    margin-bottom: 30px;
    text-align: center;
    font-size: 1.3em;
    font-weight: 300;
}

.blog_posts_header b {
    color: var(--themeColorA)
}

.blog_posts_item a {
    text-decoration: none;
}

.blog_posts_item_thumb {
    overflow: hidden;
    border-radius: 16px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
}

.blog_posts_item_thumb img {
    width: 100%;
    transition: 0.3s all;
    -webkit-transition: 0.3s all;
    -moz-transition: 0.3s all;
}

.blog_posts_item:hover img {
    transform: scale(1.08);
    -webkit-transform: scale(1.08);
    -moz-transform: scale(1.08);
}

.blog_posts_item_header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.blog_posts_item_header a {
    transition: all 0.2s;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
}

.blog_posts_item_header a:hover {
    opacity: 0.7;
}

.blog_posts_item_header .cat {
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--themeColorA);
}

.blog_posts_item_header h3 {
    margin: 10px;
    color: #222222;
}

.blog_posts_item_header .description {
    color: #888888;
}

/*BLOG SINGLE*/
.single_post .blog_header {
    padding-bottom: 20px;
    border-bottom: 1px solid #D2D2D2;
}

/*Header*/
.post_content_header {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
}

.post_content {
    display: flex;
    flex-direction: column;
}

.post_content_header {
    width: 100%;
    max-width: 900px;
    margin: 0 auto 40px auto;
    text-align: center;
}

.post_header_info span {
    font-size: 0.7rem;
    margin: 0 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
    font-weight: 100;
}

.post_header_info a {
    text-decoration: none;
    color: var(--themeColorA);
    transition: opacity 0.2s;
    -webkit-transition: opacity 0.2s;
    -moz-transition: opacity 0.2s;
}

.post_header_info a:hover {
    opacity: 0.8;
}

.post_content_header h3 {
    margin-top: 20px;
    color: #222;
    font-size: 2.2rem;
}

/*Content*/
.post_content_content {
    display: flex;
}

.post_content_side {
    flex: 1;
}

.post_content_side.left {
    margin-right: 10px;
}

.post_content_side .post_share {
    display: flex;
    flex-direction: column;

    top: 0;
    left: 0;
    position: -webkit-sticky;
    position: sticky;

    padding-top: 40px;
}

.post_content_side .post_share a {
    margin-bottom: 10px;
}

.post_content_content .htmlchars {
    max-width: 900px;
    padding: 0;
    padding-top: 40px;
}

/*Post Tags*/
.post_content_tags {
    display: flex;
    justify-content: center;
    background: #F7F7F7;
    padding: 15px 30px;
    margin: 30px 0;
}

.post_content_tags p {
    color: #222222;
    text-transform: uppercase;
}

.post_content_tags a {
    color: #888888;
    font-weight: 300;
    text-decoration: none;
}

.post_content_tags a:hover {
    color: #555555;
}

/*Related Products*/
.main_home_products {
    margin: 0 0 40px 0;
}

.main_home_products_title {
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.8em;
}

.main_home_products_content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 30px;
}

/*Comments*/
.post_content_comments {
    width: 100%;
    display: flex;
}

/*1216px*/
@media (max-width: 76em) {
    .main_destaques_content {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 30px;
    }

    .produtct_basics_cover_stock {
        width: 65%;
    }

    .produtct_basics_cover_offer {
        width: 70%;
    }
}

/*1080px*/
@media (max-width: 67.5em) {
    html {
        font-size: 93.75%;
    }

    .slide_post_item_desc h4 {
        font-size: 1.5rem !important;
    }

    .slide_post_item_desc_description {
        font-size: 0.8em;
    }

    .post_content_content {
        flex-wrap: wrap;
    }

    .post_content_content .htmlchars {
        max-width: 100%;
    }

    .post_content_side {
        display: none;
    }

    .post_content_side.left {
        display: block;
        margin: 0;
        order: 2;
        width: 100%;
        flex: auto;
    }

    .post_content_side .post_share {
        display: flex;
        flex-direction: row;
        padding-top: 10px;
    }

    .post_content_side .post_share a {
        margin-right: 10px;
    }
}

/*1024px*/
@media (max-width: 64em) {
    .single_list {
        padding: 0;
        float: left;
        width: 100%;
    }

    .single_sidebar {
        display: none;
    }

    .produtct_basics_cover,
    .produtct_basics_infor {
        width: 100%;
        padding: 0;
        text-align: center;
    }

    .produtct_basics_cover > img {
        float: left;
        width: 50%;
    }

    .produtct_basics_cover ul {
        float: right;
        width: 50%;
        padding-left: 5%;
    }

    .produtct_basics_cover ul li {
        width: 33%;
    }

    .produtct_basics_cover {
        margin-bottom: 30px;
    }

    .main_header {
        justify-content: space-between;
    }

    .main_header_logo {
        flex-basis: 100%;
    }

    .main_header_content {
        flex: 1;
    }

    .b_menu_mobile {
        width: 50px;
        height: 48px;
        cursor: pointer;
        display: block;
        position: relative;
    }

    .b_menu_mobile:before, .b_menu_mobile:after {
        position: absolute;
        display: block;
        content: '';
        transition: all 0.2s ease;
        -webkit-transition: all 0.2s ease;
        -moz-transition: all 0.2s ease;
    }

    .b_menu_mobile:before {
        top: 17px;
        left: 15px;
        height: 2px;
        width: 20px;
        background: #FFF;
    }

    .b_menu_mobile:after {
        top: 23px;
        left: 15px;
        height: 8px;
        width: 20px;
        border-top: 2px solid #FFF;
        border-bottom: 2px solid #FFF;
    }

    .menu-open:before {
        top: 23px;
        background: #FFF;
        width: 20px;
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }

    .menu-open:after {
        top: 23px;
        border: 0;
        height: 2px;
        width: 20px;
        background: #FFF;
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    .main_header_departments {
        display: block;
        position: fixed;
        left: -100%;
        top: 0;
        padding: 0;
        width: 76%;
        height: 100%;
        min-width: 200px;
        background: #222;
        border: none;
        max-width: 340px;
        margin: 0;
        z-index: 9999;
        overflow: hidden;
        overflow-y: auto;
        -webkit-box-shadow: 2px 0px 10px 0px rgba(0, 0, 0, 0.3);
        -moz-box-shadow: 2px 0px 10px 0px rgba(0, 0, 0, 0.3);
        box-shadow: 2px 0px 10px 0px rgba(0, 0, 0, 0.3);
    }

    .main_header_departments li,
    .main_header_departments a, .main_header_departments ul,
    .main_header_departments ul li, .main_header_departments ul a {
        float: left;
        text-align: center;
        visibility: visible;
        opacity: 1;
        line-height: 1.2;
        position: static;
        width: 100%;
        flex-basis: 100%;
        flex-wrap: wrap;
        height: auto;
        border: none;
        margin: 0;
        padding: 0 !important;
        background: none !important;
        box-shadow: none;
    }

    .main_header_departments li a {
        font-size: 1.2em;
        padding: 15px 30px !important;
        color: #FFF !important;
    }

    .main_header_departments li a i,
    .main_header_departments > li > a:after {
        display: none;
    }

    .main_header_departments ul {
        background-color: rgba(0, 0, 0, 0.3) !important;
        border-radius: 0;
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
    }

    .main_header_departments ul a {
        font-size: 1em;
    }

    .main_header_departments a:hover {
        opacity: 0.7 !important;
    }

    .main_header_search_menu {
        flex-basis: 380px;
    }

    .main_home_products_content {
        grid-template-columns: repeat(2, 1fr);
    }
}

/*832*/
@media (max-width: 52em) {
    .main_header {
        flex-wrap: wrap;
    }

    .main_header_departments {
        flex-basis: 100%;
        order: 1;
    }

    .main_news .content {
        flex-wrap: wrap;
    }

    .main_header_search_menu {
        flex-basis: 180px;
    }

    .main_header_search {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        z-index: 9999;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.9);
    }

    .btn_close_search {
        top: 20px;
        right: 20px;
        position: absolute;
        cursor: pointer;
        display: block;
    }

    .btn_open_search {
        display: block;
    }

    .btn_close_search:hover {
        opacity: 0.7;
    }

    .main_header_search form {
        margin: auto;
        width: 90%;
        background: none;
        border-bottom: 1px solid #FFF;
    }

    .main_header_search form input::placeholder {
        color: #FFF;
    }

    .main_news_title {
        flex-basis: 100%;
        font-size: 1em;
        text-align: center;
    }

    .main_news_form {
        flex-basis: 100%;
        margin-top: 30px;
    }

    .main_rodape .content {
        flex-wrap: wrap;
        padding: 40px 0;
    }

    .main_rodape_menu {
        flex-basis: 100%;
        text-align: center;
        margin-bottom: 40px;
    }

    .main_rodape_redes {
        flex-basis: 100%;
        text-align: center;
    }

    .single_list .single_pdt:nth-of-type(3n+0),
    .single_list .single_pdt {
        width: 48%;
        margin: 0 4% 30px 0;
    }

    .single_list .single_pdt:nth-of-type(2n+0) {
        margin-right: 0;
    }

    .main_rodape_menu {
        flex-wrap: wrap;
    }

    .main_rodape_menu li {
        flex-basis: 100%;
        margin-bottom: 20px;
    }

    .main_rodape_menu li:last-child,
    .main_rodape_menu_li_ul li {
        margin-bottom: 0;
    }

    .payment_forms {
        flex-basis: 100%;
        max-width: 250px;
        text-align: center;
        margin: 0 auto 40px auto;
    }

    .main_copyright .content {
        padding: 0 0 40px 0;
        flex-wrap: wrap;
    }

    .main_copyright_infos, .main_copyright_ass {
        flex-basis: 100%;
        text-align: center;
    }

    .main_copyright_infos, .main_copyright_ass {
        margin-top: 30px;
    }

    .random_categories_item_header h2 {
        font-size: 1.8rem;
    }

    .main_destaques_content {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 30px;
    }

    .blog_header {
        justify-content: space-between;
        flex-wrap: wrap;
        margin-bottom: 30px;
    }

    .blog_header h2 {
        width: 100%;
        text-align: center;
        margin-bottom: 20px;
    }

    .blog_header .keep_buying {
        position: initial;
        order: 2;
    }

    .blog_header_categories {
        position: initial;
        order: 3;
    }

    .blog_header a {
        font-size: 0.875em;
    }

    .slide_post_item_desc {
        padding: 20px !important;
    }
}

/*720*/
@media (max-width: 45em) {
    html {
        font-size: 87.5%;
    }

    .post_content_header h3 {
        font-size: 1.8rem;
    }

    .blog_posts_slide {
        margin-bottom: 30px;
    }

    .slide_post_item_desc h4 {
        font-size: 1rem !important;
    }

    .slide_post_item_desc_description {
        display: none;
    }

    .blog_posts_item_header h3 {
        font-size: 1em;
    }

    .blog_posts_item_header .description {
        font-size: 0.8em;
    }
}

/*544*/
@media (max-width: 34em) {
    .content {
        padding: 30px 0;
    }

    .main_header_logo {
        flex-basis: 100%;
        text-align: center;
    }

    .random_categories {
        flex-direction: column;
    }

    .random_categories_item {
        max-width: 100%;
    }

    .produtct_basics_cover img,
    .produtct_basics_cover ul {
        width: 100%;
    }

    .produtct_basics_cover_stock {
        width: 55%;
    }

    .produtct_basics_cover_offer {
        width: 60%;
    }

    .single_pdt {
        text-align: center;
    }

    .main_destaques_content {
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 30px;
    }

    .blog_posts {
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 30px;
    }

    .main_home_products_content {
        grid-template-columns: repeat(1, 1fr);
    }

    .single_pdt_btn form {
        flex-direction: column;
        gap: 16px;
    }

    .single_pdt_btn p {
        width: 100%;
    }

    .single_pdt_btn .workcontrol_cart_list_item input {
        flex: 1;
    }

    .single_pdt_btn .btn {
        width: 100%;
        max-width: 100%;
    }
}