/*
Theme Name: Site Express
Theme URI: https://ijoin.com.br
Author: Natanael Santos
Author URI: https://ijoin.com.br
Description: Theme dev
Requires at least: 5.6
Tested up to: 5.9
Requires PHP: 7.0
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: site-express
Tags: one-column, custom-menu, custom-logo, featured-images, translation-ready
*/


:root{
    --green:#27ae60;
    --black:#192a56;
    --light-color:#666;
    --box-shadow:0 .5rem 1.5rem rgba(0,0,0,.1);

    --hamburger-color: rgb(43, 43, 43);
    --hamburger-bar-color: #e7e7e7;
    --header-bar-color: #f7f7f7;
    --menu-nav-color:  rgba(245,245,245,.95);
    /* --menu-nav-color:  rgba(54, 176, 255,.95); */
    --menu-label-color: #888;
    
    /* Menu Item Level 1 */
    --menu-bgl1-color: rgba(255,255,255, 0.1);
    --menu-bgl1-border: 1px solid #ccc;
    --menu-link1-color: #333;
    --menu-link1-active: #50a9d6;
    --menu-link1-hover: #dc7000; 

    /* Menu Item Level 2 */
    --menu-bgl2-color: #f4f4f4;
    --menu-bgl2-border: 1px solid #e8e8e8;
    --menu-bgl2-hover: #e2e2e2;

    /* Menu Item Level 3 */
    --menu-bgl3-color: #eee;
    --menu-bgl3-border: 1px solid #101010;
    --menu-bgl3-hover: #e2e2e2;

    /* Font utility */
    --font-title: 'Montserrat', sans-serif;

    /* Footer */
    --footer-bg-color: #020202;
}

/*INI FONTS
_______________________________________________________________________*/

@font-face { 
    font-family: BebasNeue-Regular;
    src: url('assets/fonts/BebasNeue-Regular.otf');
    font-weight: normal; 
}

.fully__page{
    /* display: grid; 
    grid-template-rows: auto 1fr auto;*/
}

.fully__page main{
    min-height: 100vh;
}

.header__main{
    background-color: var(--header-bar-color);    
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.hamburger__container{
    display: flex;
}

.header__menu .hamburger {
	height: 60px;
	width: 60px;
	display: inline-block;
	/* border: 3px solid white; */
    border: 3px solid var(--hamburger-color);
	border-radius: 50%;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 100;
	cursor: pointer;
	transform: scale(0.8);
	margin-right: 0;
}
.header__menu .hamburger:after {
	position: absolute;
	content: '';
	height: 100%;
	width: 100%;
	border-radius: 50%;
	border: 3px solid var(--hamburger-color);
	animation: hamburger_puls 2s ease infinite;
}
.header__menu .hamburger .bar {
	height: 2px;
	width: 30px;
	position: relative;
	background-color: var(--hamburger-color);
	z-index: -1;
}
.header__menu .hamburger .bar::after,
.header__menu .hamburger .bar::before {
	content: '';
	position: absolute;
	height: 100%;
	width: 100%;
	left: 0;
	background-color: var(--hamburger-color);
	transition: 0.3s ease;
	transition-property: top, bottom;
}
.header__menu .hamburger .bar::after {
	top: 8px;
}
.header__menu .hamburger .bar::before {
	bottom: 8px;
}

.header__menu .hamburger.active .bar{
    background-color: var(--hamburger-bar-color);
}

.header__menu .hamburger.active .bar::before {
	bottom: 0;
    transform: rotate(45deg);
}
.header__menu .hamburger.active .bar::after {
	top: 0;
    transform: rotate(130deg);
}

.header__menu{
    display: flex;
	margin: 0 auto;
    max-width: 65rem;
    padding: 0 2rem;
    position: relative;
}

.header__menu .header__logo{
    flex: 1;
    display: flex;
    align-items: center;
}

.header__logo .logo{
    color: #323232;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 3rem;
}

.header__logo .logo img{
    max-width: 70%;
}


.header__menu .menu{
    position: fixed;
    height: calc(100vh - .2rem);
    top: .2rem;
    left: 0;
    width: 100%;
    /* background-color: #69bde7; */
    background: var(--menu-nav-color);
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    /* overflow-x: hidden;
    overflow-y: auto; */
    transform: translateX(100%);
    transition: .65s;

    font-family: BebasNeue-Regular;
    /* font-family: monospace; */
}

.menu.active{
    /* left: 20%; */
    transform: translateX(20%);
}

.menu__nav .menu__label{
    color: var(--menu-label-color);
    font-size: 1.5rem;
    padding: 0.7rem 1rem;
}

/* .header__menu .menu__nav{
    flex: initial;
    width: 100%;    
} */

.header__menu .menu__list {
    list-style: none;
    padding: 0;
    flex-direction: column;
}

.menu__list .menu-item{
    width: 100%;
    /* opacity: 0; */
    transform: translateY(15px);
    padding: 0.7rem 0.9rem;
    /* background: aqua;
    border: 1px solid; */
}

.menu__list .menu-item > a{
    color: var(--menu-link1-color);
    line-height: 1;
    text-decoration: none;
    /* padding: 1.6rem 2rem; */
}

/* .menu__list .menu-item:hover > a{
    transform: scale(1);
    background-color: #50a9d6;
} */

.menu__list .menu-item.menu-item-has-children a.active::before{
    content: "";
    background-color: var(--menu-link-active);
    width: .4rem;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
} 

.menu__list .menu-item.menu-item-has-children > a::after{
    content: "\f284";/* <i class="bi bi-chevron-left"></i> */
    display: inline-block;
    font-family: bootstrap-icons !important;
    font-style: normal;
    font-weight: normal !important;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    margin-left: 0.5rem;
    vertical-align: -0.125em;
    -webkit-font-smoothing: antialiased;
    /*transform: rotate(270deg);*/
    transform: rotate(0);
    transition: transform .3s;  
    z-index: 10;  
}



.menu__list .menu-item-has-children > .sub-menu{
    cursor: pointer;
    transform:translateX(.2rem);
    transform: translateY(1rem);
    z-index: 999;

    position: initial;
    top: initial;
    left: initial;
    transform: initial;
    /* opacity: 1; */
    pointer-events: auto;
    width: 100%;
    /* padding: 0; */
    /* background-color: #3183ac; */
}

.menu__list .menu-item-has-children > .sub-menu .arrow{
    top: 1rem;
    left: 1rem;
}

.menu__list .menu-item-has-children > a.arrow::after{
    transform: rotate(-90deg);
    transition: transform .3s;
}

.menu__list .menu-item-has-children a.show ~ .sub-menu{
    max-height: 100vh;
    /* margin-top: 1rem;     */
    opacity: 1;
    visibility: visible;
    transition: all .5s;
}

.menu-item .sub-menu{
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    transition: all .5s;
    padding: 0;
}

.menu__list .menu-item .sub-menu .menu-item{
    background-color: var(--menu-bgl2-color);
    border-bottom: var(--menu-bgl2-border);
    display: block;
    /* margin: 0.1rem 0; */
    padding: .8rem;
    position: relative;
    /* opacity: 100%; */
}

.menu__list .menu-item .sub-menu .menu-item:nth-last-child(1){    
    border-bottom: none;
    margin-bottom: 1rem;    
}


/* .menu__list .menu-item:hover .sub-menu{
    display: block;
    transition: all .3s;
} */



.log__sign{
    flex: initial;
    width: 100%;
    padding: 1.5rem 1.9rem;
    justify-content: flex-start;
    opacity: 1;
    transform: translateY(15px);
}

.log__sign .btn{
    display: inline-block;
    padding: .5rem 1.3rem;
    font-size: .8rem;
    border: 2px solid #323232;
    border-radius: 2rem;
    line-height: 1;
    margin: 0 .2rem;
    transition: all .3s;
    text-transform: uppercase;
}

.log__sign .btn.solid, .log__sign .btn.transparent:hover{
    background-color: #fff;
    color: #323232;
    transition: all .3s;
}

.log__sign .btn.transparent, .log__sign .btn.solid:hover{
    background-color: transparent;
    color: #323232;
    transition: all .3s;
}




/* Global
------------------------------------------------------------*/
.wrapper__title h1{    
    font-family: var(--font-title);
    width: fit-content;
    height: auto;
    margin: 0 auto;
    position: relative;
    
}

.wrapper__title h1:before{
    content: "";
    border: solid 4px #d37d23;
    border-right: none;
    width: 4px;
    position: absolute;
    height: calc(100% + 14px);
    left: -10px;
    top: -7px;

}

.border__radius--2{
    border-radius: .2rem;
}

/* .wrapper__title-{
    background-color: aqua
} */

.page__title{

}

.page__title h2{
    font-family: BebasNeue-Regular;
    /* font-family: Montserrat; */
    /* font-family: "Oswald", Sans-serif; */
    text-transform: uppercase;
    font-weight: 400;
    font-size: 2.5rem;
    letter-spacing: 3px;
    position: relative;
}

.page__title h2:before{
    content: "";
    border: solid 4px #d37d23;
    border-right: none;
    width: 4px;
    position: absolute;
    height: calc(100% + 14px);
    left: -10px;
    top: -7px;
}

/* Home Vídeo
------------------------------------------------------------*/
.sec__video{
    height: 100vh;
    width: 100%;
    display: block;
}

.home .video__wrapper {
    max-width: 100%;
    width: 100%;
    height: 100%;
}

.home .video__wrapper video {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.home .video__wrapper-content {
    /* background-color: rgba(0,0,0, 0.2); */
    margin: 0 auto;
    width: 70%;  
    /*height: 80% !important*/;
    padding-top: 4rem;
    z-index: 1;
}

.home .video__title{
    color: #fff;
    font-weight: 600;
    /* font-family: Montserrat; */
    text-shadow: 2px 2px 4px rgba(10,13,23,0.5);
}

.home .video__description{
    color: #fff;
    text-shadow: 2px 2px 4px rgba(10,13,23,0.5);
}



/* Slider
------------------------------------------------------------*/
.sec__slider{}
.slider__title{
    font-size: 1rem;
    padding: 0 1rem;
    text-shadow: 1px 1px 3px rgb(0 0 0 / 30%);
}

.slider__title--white{
    color: #fff ;
}

.slider__text{
    font-size: .8rem;
    padding: 1rem;
}

.slider__text--white{
    color: #fff;
}

.slider-item-ratio .slider-container a > img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.slider__unity .link.btn{
    margin: 0 auto;
    font-family: Nunito;
}


/* Sec Hero
------------------------------------------------------------*/
.sec__hero{
    /* background-image: url(img/bg-hero.jpg); */
    background-size: cover;
    background-position: top center;
    position: relative;
    z-index: 1;
    /* min-height: 500px; */
}

.hero__overlay{
    background: rgba(0, 0, 0, 0.3);   
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;    
}

.hero__grid{
    display: grid;
    place-items: center;   
}

.hero__card{
    display: flex;
    flex-direction: column;
    padding: 1rem;
    width: clamp(200px, 100%, 400px);
}

.hero__card h3{
    font-family: var(--font-title);
}

.hero__card--border{
    border: 1px solid rgba(0,0,0,.125);
    border-radius: 0.25rem;
    box-shadow: var(--box-shadow);
}


.hero__content{}
.hero__content--padding{
    padding: 2rem 0;
}

.hero__form .form-control{
    background: #eee;    
    padding: 0.5rem;
    font-size: 1rem;
    color: #333;
    text-transform: none;
    margin-bottom: 1rem;
    width: 100%;
}

.hero__form--border{
    border: 1px solid #e1e1e1 !important;
    border-radius: 0.2rem;
}

.hero__form .btn{
    transition: all .3s;
}

.hero__form .btn:hover{
    background: #0d6efd;
    letter-spacing: .1rem;
    transition: all .3s;
}


/* Sec About
------------------------------------------------------------*/
.sec__about{
    /* background: #666; */
    background: linear-gradient(to bottom right, rgb(238, 238, 238), rgb(250, 250, 250));
}


/* Sec Service
------------------------------------------------------------*/
.sec__service{}

.service__header{}

.service__text{}

.service__text p{
    padding: 2rem 0;
    margin-bottom: 0;
}

.service__list{}

.service__unity{}

.service__card{
    background: #fff;
    border: .1rem solid rgba(0,0,0,.2);
    border-radius: .2rem;
    box-shadow: var(--box-shadow);
}

.service__img{
    border-radius: .2rem;
    transition: .3s;
}

.service__img:hover{
    /* -webkit-transform: scale(1.015);
    -moz-transform: scale(1.015);
    -ms-transform: scale(1.015);
    -o-transform: scale(1.015); */
    transform: scale(1.015);
    opacity: 0.8;
    transition: .3s;
}

.service__content{
    padding: .8rem;
}

.service__title{}

.service__title h2{
    font-size: 1.2rem;
    font-family: var(--font-title);
    font-weight: 600;
}

.service__title h2 a{
    color: #333;
    text-decoration: none;
    transition: all .2s;
}

.service__title h2 a:hover{
    color: #0d6efd;
    transition: all .3s;
}

/* Sec Product
------------------------------------------------------------*/
.sec__product{
    background-color: #ebebeb;
    padding: 4rem 0;
}

.product__header{}
.product__grid{}
.product__list{
    /* width: 100%;
    margin: 0 auto;
    justify-content: center; */
}

.product__unity{
    border: 0.1rem solid #eee;
    border-radius: 0.5rem;
    box-shadow: 0 1px 1px 0 rgb(0 0 0 / 10%);
    transition: all .3s;
    margin: 0 auto;
    float: none;
}

.product__unity:hover{
    border: 0.1rem solid #b8b8b8;
    border-radius: 0.5rem;
    /* box-shadow: var(--box-shadow); */
    box-shadow: 0 7px 16px 0 rgb(0 0 0 / 20%), 0 1px 3px 0 rgb(0 0 0 / 10%);
    transition: all .2s;
}

.product__card{
    background-color: #fff;
}

.product__content{
    /* padding: 1rem !important; */
    /* display: none; */
    text-align: center;
}
.product__title{
    margin-bottom: 0;
    font-size: 1.1rem;
}

.product__title a{
    color: #333;
    text-decoration: none;
    transition: all .2s;
}

.product__title a:hover{
    color: #0d6efd;
    text-decoration: underline;
    transition: all .2s;
}

.product__info{
    padding: 0 0.5rem 0.5rem 0.5rem;
    text-align: left;
}

.product__price{
    /*color: #004eff;*/
    color: #0041a7;
    font-size: 1rem;
    font-weight: 500;
}

.product__img{
    display: flex;
    justify-content: center;
    transition: .3s;
}

.product__img:hover{
    transform: scale(1.010);
    opacity: 0.8;
    transition: .3s;
}

.product__btn{
    width: 100%;    
    /*display: grid !important;*/
    display: flex;
} 

.product__btn .btn{
    border: 1px solid #eee;
    /* padding: 0.1rem; */
    padding: 0.5rem 0;
}

.product__btn .bi{
    font-size: 1.2rem;
} 

.product__btn span{    
    font-size: .8rem;
}


/* HEADER CART
------------------------------------------------------------*/
/*.header-cart{
    display: flex;
    align-items: center;
}

.account{
    width: 40%;
}

.account .account-btn{
    background: none;
    border: 1px solid #ccc;
    width: 100%;
    height: 40px;
}

.shopping-cart{   
    border: 1px solid #ccc;
    width: 40%;
    height: 40px;
    text-align: center;
}*/


/* Carrinho de Compras no Header */
/* My account text*/

.header-cart{
    /*background-color: #c1c1c1;*/
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    height: 60px;
}

.header-cart .bi-bag-check{
    color: #333;
    transition: 0.5s;
} 

.header-cart .bi-bag-check:hover{
    color: #004eff;
    transition: 0.3s;
}

.header-cart .bi-cart3{
    color: #333;
    transition: 0.5s;
} 

.header-cart .bi-cart3:hover{
    color: #004eff;
    transition: 0.3s;
}

.header-cart .checkout-icon:hover{
    fill: red;
    background-color: #ccc;
    color: #fff;
}

.header-cart .account-text {
    font-size: 0.9rem;
    padding: 10px;
}
.header-cart .account-btn {
    background: none;
    border: none;
    font-size: 1.7rem;
    cursor: pointer;
}

.header-cart .account-btn:focus {
    outline: none;
}

.header-cart .shopping-cart {
    margin-left: 5px;
    font-size: 1.7rem;
}

.header-cart .shopping-cart .sum-prices {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

#sum-prices {
    color: #ff6a34;
    padding-left: 5px;
}

.header-cart .sum-prices h6 {
    font-size: 0.9rem;
}

.header-cart .shoppingCartButton {
    cursor: pointer;
}

.header-cart .shoppingCartButton:hover,
.account:hover * {
    /*color: #0e5e53;*/
    color: var(--menu-link1-hover);
}

/* Janela com os produtos adicionados ao carrinho */

.productsOnCart {
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none;
    overflow: hidden;
    overflow-y: scroll;
    scroll-behavior: smooth;
    overscroll-behavior: contain;
    background-color: #fbfbfb;
    width: 300px;
    height: 500px;
    color: #333;
    z-index: 999;
    position: fixed;
    top: 70px;
    right: -450px;
    opacity: 0;
    text-align: center;
    animation: fade 2s;
    /*transition: right .3s;*/
    transition: all .3s;
}

.productsOnCart::-webkit-scrollbar {   
   visibility: hidden;
   opacity: 0;
   transition: all 0.30s ease-in-out;
}

/*@keyframes fade {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: none;
    }
}*/

.productsOnCart::-webkit-scrollbar {
    width: 0;
    background: transparent;
}

.move {
    /*display: none;*/
    /*visibility: none;
    opacity: 0;
    transition: all 0.30s ease-in-out;*/
    right: 0;
    opacity: 1;    
    animation: fade 1s;
    /*transition: right .3s;*/
    transition: all 0.30s ease-in-out;
    z-index: 9999;
}

.productsOnCart ul {
    text-align: left;
    /*display: flex;*/
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0;
    overflow-y: auto;
    height: 346px;
    /*border: 1px solid #ccc;*/
}

/*Customizando o ScrollBar*/
/* width */
.productsOnCart > ::-webkit-scrollbar {
  width: 10px;
}

/* Track */
.productsOnCart > ::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey; 
  border-radius: 10px;
}

/* Handle */
.productsOnCart > ::-webkit-scrollbar-thumb {
  background: #333; 
  border-radius: 10px;
}

/* Handle on hover */
.productsOnCart > ::-webkit-scrollbar-thumb:hover {
  background: #5f5f5f; 
}

.productsOnCart .buyItem {
    border-bottom: #e3e3e3 1px solid;
    width: 98%;
    margin-top: 5px;
    padding: 10px;
    display: flex;
    transition: all 0.15s ease-in-out;
}

.productsOnCart .buyItem:hover {
    background-color: #f3f3f3;
    transition: all 0.15s ease-in-out;
}

.productsOnCart img {
    width: 25%;
    height: 100%;
    border-radius: 5px;
}

.productsOnCart .top {
    display: flex;
    background-color: #f3f3f3;
    text-align: center;
    padding: 10px 0;
    position: sticky;
    top: 0;
    width: 100%;
}

.top button {
    background: transparent;
    border: none;
    font-size: 1.5rem;
    margin-left: 10px;
    color: #c24c37;
    cursor: pointer;
}

.top button:hover {
    color: #e40505;
}

.top h3 {
    color: #333;
    font-size: 1.2rem;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    margin: 0 auto;
}

.productsOnCart > .checkout {
    font-size: 0.9rem;
    margin: 10px auto;
    border: none;
    background-color: #ccc;
    padding: 10px 20px;
    color: #fff;
    cursor: pointer;
}

.productsOnCart > .checkout:hover {   
    background-color: #57a9ff;   
}

.overlay {
    visibility: hidden;
    opacity: 0;
    transition: all 0.15s ease-in-out;
}

.move > .overlay { /* desativado com os comentarios */

    /*visibility: visible;*/
   /* opacity: 100%;*/

    overflow: hidden;
    display: inline-block;
    content: "";
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    background: rgba(0, 0, 0, 0.5);
    transition: all 0.30s ease-in-out;
}

.stopScrolling {
    height: 100vh;
    overflow: hidden;
}

.buyItem .product-name {
    display: block;
    font-size: 0.8rem;
    margin-bottom: 5px;
}

.buyItem .product-size {
    display: block;
    font-size: 0.8rem;
    margin-bottom: 5px;
}


.buyItem .product-price {
    display: block;
    font-size: 0.8rem;    
}

.buyItem button {
    /*background: transparent;
    color: #fff;*/
    cursor: pointer;
    font-weight: 900;
    font-size: 1.2rem;
    padding: 0 6px;
    border: none;
}

.buyItem button:active {
    color: #96c8cc;
}

.buyItem > div {
    padding: 0 10px;
}

.productsOnCart .empty {
   font-size: 1rem;
    color: #ccc;
}

.hidden{
    pointer-events: none;
    cursor: not-allowed;
    opacity: 0.65;
    filter: alpha(opacity=65);
    -webkit-box-shadow: none;
    box-shadow: none;
}

.productsOnCart .buyItem .btn-outline-secondary{
    color: #0d6efd !important;
    border-color: #0d6efd !important;
    background-color: none !important;
}

.productsOnCart .buyItem .btn-outline-secondary:hover{
    color: #fff !important;
    border-color: #0b5ed7 !important;
    background-color: #0a58ca !important;
}

/* Produtos Home */

.prod-box{
    margin: 0 auto; 
    float: none; 
}

.prod-card{
    border: none;
}

.prod-card .figure{}

.prod-card .prod-info{ }

.prod-card .prod-info a{
    text-decoration: none;
}

.prod-card .prod-info a .prod-title{
    margin: 5px 0 10px;    
    line-height: 22px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: capitalize;
    padding: 0;
    word-break: break-word;
    color: #111111;
    overflow: hidden;
    text-overflow: ellipsis;
}

.prod-card .prod-info a .prod-title:hover{
    color: #7F55F2;
}


.prod-card .prod-info .prod-desc p{
     font-size: 0.9rem;
}

.prod-card .prod-info .prod-price{
    /*background-color: #f9f9f9;
    color: #7F55F2 ;
    font-size: 0.9rem;
    font-weight: bold;*/
}

.prod-card .prod-info .prod-id{
    font-size: 0.8rem;
}

.prod-card .prod-action-btn{
    left: 0;
    top: 100%;
    width: 100%;
    /*background-color: ;*/    
    opacity: 0;
    visibility: hidden;
    position: absolute;
    transition: all 0.15s ease-in-out;
}

.prod-card:hover:not(.prod-static) .prod-action-btn{
    background-color: #fff;
    /*border: 1px solid #e0e0e0;
    border-radius: 5px;*/
    box-shadow: 0 0.3rem 1.525rem -0.375rem rgba(0, 0, 0, 0.1);
    opacity: 1;
    visibility: visible;
    left: 0;
    width: 100%;
    top: 85%;    
    transition: all 0.15s ease-in-out;
    
}

.border-danger {
  border-color: #dc3545 !important;
  transition: all .3s;
}


/* PRODUCT ARCHIVE */
/* Page 
------------------------------------------------------------*/
.post-type-archive-produtos .fully__page, .archive .fully__page{ background-color: #f2f2f2; }
.page__index{
    margin-bottom: 50px;
}
.prod__container{}
.prod__list{}

.prod__unity{
    background: #fff;
    padding: 0;
    box-shadow: 0 2px 4px rgba(0,0,0,.1);
    border: 0;
    border-radius: 3px;    
}

.prod__img-box{
    display: flex;
}

.prod__thumbnail{
    background-color: rgb(63, 63, 63);
    height: 240px;
    width: 100%;
}

.prod__thumbnail-inner{
    background-color: #353535;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    display: block;
    height: 240px;
    width: 100%;
    position: relative;
    transition: .3s;    
}

.prod__thumbnail-inner:hover{
    -webkit-transform: scale(1.015);
       -moz-transform: scale(1.015);
        -ms-transform: scale(1.015);
         -o-transform: scale(1.015);
            transform: scale(1.015);
    
    opacity: 0.8;
    transition: .3s;
}

.prod__category{
    background-color: #003eff;
    position: absolute;
    padding: 0 .2rem .25rem .2rem;
    z-index: 999;
}

.prod__category a{
    border: 1px solid #0a93e9;
    color: #fff;
    font-size: .8rem;
    font-weight: 400;
    padding: 0 .2rem .2rem .2rem; 
    text-decoration: none;
}

.prod__category .term__name{
    color: #fff;
    font-size: .9rem;
    font-family: "Nunito";
    padding: .2rem .2rem 0 .2rem; 
}

.prod__title{
    color: #333;
    text-decoration: none;
    transition: .3s;
}

.prod__title:hover{
    color: #003eff;
    transition: .3s;
}

.prod__title h2{
    color: #333;
}

.prod__date{ display: inline-block;}
.prod__author{ 
    display: inline-block;
}

.prod__author a{
    text-decoration: none;
    transition: all .3s;
}

.prod__author a:hover{
    text-decoration: underline;
    transition: all .3s;
}


.prod__button{
    height: 42px;
    width: 42px;
    position: absolute;
    padding: 0 12px;
    background: #fab526;
    color: #fff;
    font-weight: 900;
    font-size: 28px;
    border-radius: 7%;
    font-family: lato,arial;
    right: 20px;
    box-shadow: 1px 1px 5px rgba(0,0,0,.19);
    text-decoration: none;
    bottom: -22px;
    transition: all .3s;
}

.prod__button:hover{
    background: #003eff;
    transition: all .3s;
}

.single__container .single__bc ol .breadcrumb-item{}

.single__container .single__bc ol .breadcrumb-item::after{
   /* float: right;
    padding-right: 0.5rem;
    color: red;
    content: var(--bs-breadcrumb-divider, "/");*/
}

.single__container .single__bc ol .breadcrumb-item .term__name{
    display: inline-block;
}

.single__container .single__bc ol .breadcrumb-item .term__name::after{
    float: right;
    padding: 0 0.5rem;
    color: #333;
    content: var(--bs-breadcrumb-divider, "/");
}

.single__container .single__bc ol .breadcrumb-item .term__name:last-child{
/*    background-color: #ccc;*/
}

.single__container .single__bc ol .breadcrumb-item .term__name:last-child::after{
    float: right;
    padding:0;
    color: blue;
    content: "";
}

.product__view{
    display: flex;
    flex-direction: column;
}

.product__single-content{
    border: none;
}

.product__single-status{
    color: #b8b8b8;
    font-size: .8rem; 
    padding: 1rem 0 .5rem 0;
}

.product__single-code{
    color: #b8b8b8;
    font-size: .8rem; 
    padding: 1rem 0 .5rem 0;
}

.product__single-code small{
    color: #5b5b5b;
}

.product__single-title{
    flex: auto;
    font-size: 1.5rem;
}

.product__previous-price{
    color: #868686;
    font-weight: 100;
    margin-right: 1rem;
    text-decoration: line-through;
    font-size: .9rem;
}

.product__actual-discount{
    align-items: center;
    color: #00a650;
    display: flex;
    font-weight: 400;
    font-size: 0.9rem;
    gap: 4px;
    margin-left: 6px;
    margin-top: 1px;
}

.product__single-price{
    font-size: 1.5rem;
    font-weight: 500;
}

.product__single-price-pay{
    font-size: 1rem;
    margin-bottom: .5rem;
}

.product__single-pay span{
    color: #3483fa;
    font-size: 1rem;
}

.product__single-pay ul{
    list-style: none;
}

.product__single-pay ul li{
    font-size: .9rem;
}

.product__single-desc, .product__single-resume{
    font-size: 1rem;
}

.product__single-desc img{
    display: none;
}


.product__single-img > figure.zoom {
      background-position: 50% 50%;
      position: relative;
      width: 500px;
      overflow: hidden;
      cursor: zoom-in;
}

.product__single-img > figure > img:hover {
    opacity: 0;
}
  
.product__single-img > figure > img{
    transition: opacity .5s;
    display: block;
    width: 100%;
}

.product__single-size{
    margin-bottom: 1rem;
}

.product__single-relationship{
    margin-top: 1rem;
}

.product__single-size h5, .product__single-relationship h5{
    color: #3483fa;
    font-size: 1rem;
}

.product__single-rel{
    padding: 10px 10px 10px 0;
    border-bottom: 1px solid rgba(51, 51, 51, 0.08);
    background: #fff;
    margin: 10px 0;
}

.product__single-rel-img{
    display: table-cell;
    vertical-align: middle;
}

.product__single-rel-img img{
    max-width: 90px;
}

.product__single-rel-title{
    display: table-cell;
    vertical-align: top;
    padding-left: .5rem;
    transition: .3s all;
}

.product__single-rel-title:hover{
    color: #3483fa;
    transition: .3s all;
}

.chekout__overlap h1{
    font-family: BebasNeue-Regular;
    /* font-family: Montserrat; */
    /* font-family: "Oswald", Sans-serif; */
    text-transform: uppercase;
    font-weight: 400;
    font-size: 2.5rem;
    letter-spacing: 3px;
    position: relative;
}

.chekout__overlap nav ol .breadcrumb-item{}

.chekout__overlap nav ol .breadcrumb-item a{
    color: #fff;
    text-decoration: none;
}


.chekout__overlap .breadcrumb-item+.breadcrumb-item::before {
    float: left;
    padding-right: 0.5rem;
    color: #6c757d;
    content: var(--bs-breadcrumb-divider, "/");
}

.chekout__sidebar .wpcf7-form .wpcf7-textarea {
    line-height: 24px;
    height: 7rem;
}

.chekout__sidebar .wpcf7-form p {
    margin-bottom: 0;
}

.chekout__sidebar .cliente_produtos {
    display: none;
}


/* CHECKOUT LIST */
.chekout__list .chekout__unity img{}

.chekout__list .chekout__unity h3{
    font-size: 1.2rem;
}

.chekout__list .chekout__unity h3 a{
    color: #333;
    text-decoration: none;
    transition: .3s;
}

.chekout__list .chekout__unity h3 a:hover{
    color: #0d6efd;
    text-decoration: underline;
    transition: .3s;
}

.chekout__list .chekout__unity .text-accent{
    font-size: .9rem;
}


.chekout__list .btRemoverProduto{
    margin-top: .5rem;
    padding: 0;
    text-decoration: none;
}

.chekout__list .btRemoverProduto:hover{
    /*background: ;
    color: #fff;*/
    font-weight: 600;
}

.chekout__list .btRemoverProduto span{
    pointer-events: none;
    cursor: not-allowed;
}

.chekout__list .btRemoverProduto span:hover{

}


/* sec__category 
------------------------------------------------------------*/
.sec__category{
    background-color: #f1f1f1;
    padding: 4rem 0;
}

.category__list{
    /* justify-content: center; */
}

.category__unity{
    margin: 0 auto;
    float: none;
}

.category__card{
    background-color: #fff;
    padding: 0;
    margin: 0;
}

.category__content{
    padding: 0;
    width: 98%;
    margin: 0 auto;
}

.category_img{
    display: flex;
    justify-content: center;
    transition: .3s;
}

.category__img:hover{
    transform: scale(1.010);
    opacity: 0.8;
    transition: .3s;
}

.category__title{
    font-size: 1.1rem;
    font-weight: 600;
    padding: 0;
    text-align: center;
    margin-top: 1rem;
}

.category__title a{
    color: #333;
    text-decoration: none;
    transition: all .3s;
}

.category__title a:hover{
    color: #dc7000;
    text-decoration: none;
    transition: all .3s;
}

/* Section News
------------------------------------------------------------*/
.sec__news{
    background-color: #fff;
    padding: 4rem 0;
}

.news__list{}

.news__unity{
    background-color: transparent;
    margin: 0 auto;
    float: none;
    margin-bottom: 10px;  
    padding: 0.4rem;  
    transition: .5s;
}

.news__card{
    background: #fff;
    /* box-shadow: 0 10px 30px 0 rgba(0 0 0 / 5%); */
    box-shadow: var(--box-shadow);
    height: 100%;
    transition: .5s;
}

.news__card a{
    text-decoration: none;
}

.news__img{
    overflow: hidden;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    height: 250px;
    position: relative;
    display: block;
    transition: .5s;
}

.news__img:hover{
    -webkit-transform: scale(1.015);
    -moz-transform: scale(1.015);
    -ms-transform: scale(1.015);
    -o-transform: scale(1.015);
    transform: scale(1.015);    
    opacity: 0.8;
    transition: .3s;
}

.news__date{
    display: inline-block;
    background: rgba(0, 0, 0, 0.6);
}

.news__date .day{
    font-weight: 700;
    font-size: 1.15rem;
}

.news__date .mos, .news__date .yr {
    font-size: .8rem;
}

.news__date span{
    display: block;
    color: #fff;
    font-family: var(--font-title);
}

.news__content{
    padding: 1rem;
}

.news__title{
    font-family: var(--font-title);
    font-size: 1.1rem;
    font-weight: 600;    
    font-style: normal;    
    line-height: 20px;
    margin-bottom: .7rem;
    text-align: left;    
}

.news__title a{
    color: #333;     
    text-decoration: none;
    transition: .3s;
}

.news__title a:hover, 
.news__title a:active, 
.news__title a:focus {
    color: #004eff; 
    transition: .3s;
}

.news__info{}

.news__footer{   
    width: 100%;
    margin: 0 auto;
    padding: 2rem 0;
}

/* Sec Customer
------------------------------------------------------------*/
.sec__customer{
    background-color: #eee;
    padding: 4rem 0;
}

.customer__grid{
    margin-bottom: 4rem;
    margin-top: 3rem;
}

.customer__list{}
.customer__unity{}
.customer__img{}
.customer__img:hover{}


/* Sec Partner
------------------------------------------------------------*/
.sec__partner{
    background-color: #fff;
    padding: 4rem 0;
}

.partner__grid{
    margin-bottom: 4rem;
    margin-top: 4rem;
}

/* Sec Team
------------------------------------------------------------*/
.sec__team{
    padding: 4rem 0;
}

.team__grid{

}
.team__list{}
.team__list{}
.team__content{}
.team__img{
    display: flex;
    justify-content: center;
}

.team__name{
    font-size: 1.1rem;
    font-family: var(--font-title);
}

.team__networks{
    display: flex;
    justify-content: space-around;
    border: 1px solid #eee;
    border-top: none;
    font-size: 1.5rem;
}

.team__instagram{}

/* .team__instagram a{
    color: #fff;
    text-decoration: none;
} */


/* sec__testimony
------------------------------------------------------------*/
.sec__testimony{
    background-color: #eee;
    padding: 4rem 0;
}

.testimony__grid{
    
}

.testimony__list{

}
.testimony__unity{

}

/* sec__instagram
------------------------------------------------------------*/
.sec__instagram{
    padding: 4rem 0;
}

.instagram__link{
    color: #888;
    text-decoration: none;
    transition: all .3s;
}

.instagram__link:hover{
    color: #dc7000;
    text-decoration: underline;
    transition: all .3s;
}


/* Page
------------------------------------------------------------*/
.page__container{}
.page__content{}
/* .page__title{}
.page__title h2{} */


/* Page HEADER IMG
------------------------------------------------------------*/
.header__wrapper {
    text-align: center;
    color: #fff;
    font-size: 18px;
    float: left;
    width: 100%;
    display: inline-block;
    /* margin-bottom: 35px; */
	/*margin-top: -47px;*/
    position: relative;
}

.header__wrapper img{
	height: auto;
	max-width: 100%;
}

.header__text {
    position: absolute;
    top: 50%;
    text-align: center;
    width: 100%;
    -ms-transform: translate(0,-50%);
    -webkit-transform: translate(0,-50%);
    transform: translate(0,-50%);
    font-size: 3.5rem;
    font-weight: 600;
    /* font-family: Montserrat; */
    text-shadow: 2px 2px 4px rgba(10,13,23,0.5);
}

.header__paragraph{
    font-size: 1.2rem;
    line-height: 140%;
    color: #fff;
    margin-top: 10px;
}

.header__wrapper-title h2{
    font-family: var(--font-title);
    font-family: BebasNeue-Regular;
    /* font-family: Montserrat; */
    /* font-family: "Oswald", Sans-serif; */
    text-transform: uppercase;
    font-weight: 400;
    font-size: 2.5rem;
    letter-spacing: 3px;
    position: relative;
}

.header__wrapper-title h2:before{
    content: "";
    border: solid 4px #d37d23;
    border-right: none;
    width: 4px;
    position: absolute;
    height: calc(100% + 14px);
    left: -10px;
    top: -7px;
}


/* Page BLOG INDEX
------------------------------------------------------------*/
.blog .fully__page, .archive .fully__page{ background-color: #f2f2f2; }
.page__index{
    margin-bottom: 50px;
}
.blog__container{}
.blog__list{}

.blog__unity{
    background: #fff;
    padding: 0;
    box-shadow: 0 2px 4px rgba(0,0,0,.1);
    border: 0;
    border-radius: 3px;    
}

.blog__img-box{
    display: flex;
}

.blog__thumbnail{
    background-color: rgb(63, 63, 63);
    height: 240px;
    width: 100%;
}

.blog__thumbnail-inner{
    background-color: #353535;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    display: block;
    height: 240px;
    width: 100%;
    position: relative;
    transition: .3s;    
}

.blog__thumbnail-inner:hover{
    -webkit-transform: scale(1.015);
       -moz-transform: scale(1.015);
        -ms-transform: scale(1.015);
         -o-transform: scale(1.015);
            transform: scale(1.015);
    
    opacity: 0.8;
    transition: .3s;
}

.blog__category{
    background-color: #003eff;
    position: absolute;
    padding: 0 .2rem .25rem .2rem;
    z-index: 999;
}

.blog__category a{
    border: 1px solid #0a93e9;
    color: #fff;
    font-size: .8rem;
    font-weight: 400;
    padding: 0 .2rem .2rem .2rem; 
    text-decoration: none;
}

.blog__category .term__name{
    color: #fff;
    font-size: .9rem;
    font-family: "Nunito";
    padding: .2rem .2rem 0 .2rem; 
}

.blog__title{
    color: #333;
    text-decoration: none;
    transition: .3s;
}

.blog__title:hover{
    color: #003eff;
    transition: .3s;
}

.blog__title h2{
    color: #333;
}

.blog__date{ display: inline-block;}
.blog__author{ 
    display: inline-block;
}

.blog__author a{
    text-decoration: none;
    transition: all .3s;
}

.blog__author a:hover{
    text-decoration: underline;
    transition: all .3s;
}


.blog__button{
    height: 42px;
    width: 42px;
    position: absolute;
    padding: 0 12px;
    background: #fab526;
    color: #fff;
    font-weight: 900;
    font-size: 28px;
    border-radius: 7%;
    font-family: lato,arial;
    right: 20px;
    box-shadow: 1px 1px 5px rgba(0,0,0,.19);
    text-decoration: none;
    bottom: -22px;
    transition: all .3s;
}

.blog__button:hover{
    background: #003eff;
    transition: all .3s;
}

/* Sec Sidebar
------------------------------------------------------------*/
.sec__sidebar{
    /* background-color: #ccc; */
}

/* .sec__sidebar .widget:nth-child(2n){
    margin-bottom: 2rem;
    background-color: red;
}

.sec__sidebar .widget > h2:nth-child(2n){
    margin-bottom: .5rem;
    background-color: rgb(145, 255, 0);
} */

.sec__sidebar .widget h2{
    
    /* font-family: var(--font-title);
    font-size: 1rem;
    color: #9e9e9e; 
    text-transform: uppercase;
    font-weight: 600;*/
    letter-spacing: .5px;
    margin-bottom: .5rem;
    padding: 1rem 0 0 0.3rem;

    color: #9a621a;
    font-family: BebasNeue-Regular;
    letter-spacing: 1.2px;
    font-size: 1.2rem;
    font-weight: 400;
}

.sidebar__input{
    height: 3rem;
}

.sidebar__btn {
    background-color: #dc7000;
    border: 2px solid #c56400;
    border-radius: 0;
    font-size: 14px;
    font-weight: bold;
    height: 100%;
    padding: 0px;
    width: 54px;
}


.widget{
    /* background-color: #ccc;     */
}

.widget ul{
    list-style: none;
    padding: 0;
    display: inline-block;
    float: left;
    width: 100%;
}

.widget ul li{
    background: #fff;
    margin: 0.5em 5px;
    padding: 10px 20px;
    -webkit-box-shadow: 0 2px 4px rgba(0,0,0,.1);
    box-shadow: 0 2px 4px rgba(0,0,0,.1);
    border-radius: 3px;
    border: 0;
}

.widget ul li a{
    font-size: 1rem;
    color: #414141;
    /* text-transform: uppercase; */
    font-weight: 600;
    text-decoration: none;
    transition: .3s;
}

.widget ul li a:hover{
    font-size: 1rem;
    color: #dc7000;
    text-decoration: underline;
    transition: .3s;
}

/*Barra de range de valores*/
/*
.wpc-filters-range-inputs .ui-slider-horizontal .ui-slider-range {
    background-color: #c2923e !important;
}
*/

.wpc-filters-section {
    margin-bottom: 0 !important;    
}


/* Sec Pagination
------------------------------------------------------------*/

.pagination{
    /* background-color: #ccc; */
    width: 100%;    
    display: inline-block;
    padding: 0;
    height: auto;
    margin: 10px auto 20px auto;    
}

/* .pagination .prev{
    color: #121212;
} */

.pagination .prev.page-numbers, .pagination .next.page-numbers{
    color: #333;
    font-size: 1rem !important;
    font-weight: bold !important;
    font-family: monospace;
}

.pagination a.page-numbers{
    background: #fff;
    padding: 10px 17px;
    transition: all .4s;
    font-size: 14px;
    color: #1100ff;
    margin: 0 5px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    float: left;
    box-shadow: 0 2px 4px rgba(0,0,0,.1);
    border-radius: 3px;
    transition: .3s;
}

.pagination a.page-numbers:hover{
    background: #eaeaea;
    transition: .3s;
}

.pagination .page-numbers.current{
    padding: 10px 17px;
    transition: all .4s;
    font-weight: 600;
    font-size: 14px;
    color: #393fff;
    margin: 0 5px;
    text-decoration: none;
    display: inline-block;
    float: left;
    background: #fff;
    border-radius: 3px;
    opacity: .5;
    box-shadow: 0 2px 4px rgba(0,0,0,.1);
}

/*Pagination Archive Page*/
.pagination .nav-links{
    /* background: #ccc;     */
}

.pagination .nav-links ul{
    list-style: none;
    display: flex;
    justify-content: center;
}

.pagination h2{
    display: none;
}

/* Sec Single Page
------------------------------------------------------------*/

.single__page{
    background-color: #f3f3f9;
}

.single__container{    
    background-color: #fff;
    margin-top: 1rem;
}

.single__bc{
    /* background: #ccc; */
    border-bottom: 1px solid #c8c8ce;
}

.single__bc ol li a{
    color: #333;
    font-size: 0.9rem;
    text-decoration: none;
    transition: .5s;
}

.single__bc ol li a:hover{
    color: #003eff;
    text-decoration: underline;
}

.single__bc .breadcrumb-item.active {
    color: #c3c3c9;
}

.single__title{
    line-height: 1;
    margin: 0 0 1rem 0;
    font-family: "Montserrat", Sans-serif;
    letter-spacing: 1px;
}

.single__meta{    
    color: #939399;
    font-size: 0.9rem;   
}

.single__autor a{
    color: #939399;
    text-decoration: none;
    transition: .5s;
}

.single__autor a:hover{
    color: #003eff;
    text-decoration: underline;
}

.single__category{}

.single__category a{
    background-color: #e7e7e7;
    padding: 0.2rem 0.2rem 0.2rem 0.2rem;
    color: #29293a;
    font-size: 0.7rem;
    font-style: normal;
    font-weight: 700;
    font-family: Montserrat, sans-serif;
    letter-spacing: 0.02em;
    text-decoration: none;
    text-transform: uppercase;
    transition: .5s;  
}

.single__category a:hover{
    color: #003eff;
    transition: .2s;  
}

.single__tag{}

.single__tag a{
    background-color: #e7e7e7;
    padding: 0.2rem 0.2rem 0.2rem 0.2rem;
    color: #616165;
    font-size: 0.6rem;
    font-style: normal;
    font-weight: 700;
    font-family: Montserrat, sans-serif;
    letter-spacing: 0.02em;
    text-decoration: none;
    text-transform: uppercase;
    transition: .5s;  
}

.single__tag a:hover{
    color: #003eff;
    transition: .2s;  
}

.single__content{

}

.single__author {
    background-color: #f3f3f3;
    border: 1px solid #e9e9e9;
    border-radius: 8px;
    width: 100%;
    margin: 0 auto;
    padding: 20px;
    margin-bottom: 30px;
    margin-top: 30px;
}

.single__author .au-img-box img {
    border: 1px solid #c3c3c3;
    border-radius: 50%;
    padding: 5px;
    /* width: 200px; */
    width: 140px;
}

.single__author .au-escritor {
    margin-bottom: 0;
    color: #7d7d7d;
    /* font-family: Montserrat, sans-serif; */
    font-size: 0.8rem;
    font-weight: 600;
}

.single__author h5 {
    font-size: 1.5rem;
    /* font-family: BebasNeue-Regular; */
    font-family: Montserrat, sans-serif;
    letter-spacing: 2px;
    font-weight: 600;
    border-bottom: 1px solid #ffe9e9;
}

.single__author .au-email{
    color: #7d7d7d;
    margin-bottom: 0;
}

.single__author .au-instagram a{
    color: #7d7d7d;
    text-decoration: none;
    transition: .3s;
}

.single__author .au-instagram a:hover{
    color: #003eff;
    text-decoration: underline;
}

.single__author-posts h4{
    font-size: 1rem;
}

.single__author-posts .about-author-text{
    color: #5b5b5b;
    font-size: .9rem;
}


.single__author-posts ul{
    list-style: none;
    padding: 0;
}

.single__author-posts ul li{
    background: #fff;
    margin: 0.5em 5px;
    padding: 5px;
    -webkit-box-shadow: 0 2px 4px rgba(0,0,0,.1);
    box-shadow: 0 2px 4px rgba(0,0,0,.1);
    border-radius: 3px;
    border: 0;
    width: 100%;
    display: block;
    text-align: center;
}

.single__author-posts ul li a{
    font-size: .8rem;
    color: #414141;
    /* text-transform: uppercase; */
    font-weight: 600;
    text-decoration: none;
    transition: .3s;
}

/* Sec Page Contato
------------------------------------------------------------*/
.contact__container{}

.contact__send h2{
    color: #dc7000;
    font-family: BebasNeue-Regular;
    letter-spacing: 1.5px;
    font-size: 2.1rem;
    font-weight: 400;
}

/* PÁGINA CONTATO + FORMULÁRIOS
_______________________________________________________________________*/

.contact__send ::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  /*color: red !important;*/
  opacity: 1; /* Firefox */
}

.contact__send ::placeholder:focus { /* Chrome, Firefox, Opera, Safari 10.1+ */
  /*color: red !important;*/
  opacity: 1; /* Firefox */
}

.contact__send .wpcf7 p{
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.contact__send .wpcf7-text{
   
    width: 100%;
    line-height: 24px;
    height: 55px;
    font-size: 16px;
    box-shadow: none;
    border: 1px solid #f4f4f4;
    padding: 12px 15px;
    background: #f1f1e9;
    border-radius: 0px;
}

.contact__send .wpcf7-text:focus{ 
    border: 2px solid #f6572b;   
    background-color: #fffbea;
}

.contact__send .wpcf7-textarea{
    width: 100%;
    line-height: 24px;
    height: 155px;
    font-size: 16px;
    box-shadow: none;
    border: 1px solid #f4f4f4;
    padding: 12px 15px;
    background: #f1f1e9;
    border-radius: 0px;
}

.contact__send .wpcf7-textarea:focus{
    border: 2px solid #f6572b;   
    background-color: #fffbea;
}

.contact__send .wpcf7-file{
    border: 1px solid #ccc;
}

.contact__send .wpcf7-select{
    border: 1px solid #ccc;
    background-color: #1a1a19 !important;
    display: block;
    width: 50%;
    padding: .4rem .55rem;
    font-size: 1rem;
    line-height: 1.25;
    color: #fff;
    font-weight: bold;  
    background-image: none;
    background-clip: padding-box;   
    border-radius: .25rem;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}

.contact__send .frm-select{
    border: 2px solid #af8100;
    background-color: #1a1a19;
    display: block;
    width: 100% !important;
    padding: .4rem .55rem;
    font-size: 1rem;
    line-height: 1.25;
    color: #495057;
    
    background-image: none;
    background-clip: padding-box;   
    border-radius: .25rem;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}

.contact__send .btn-contato{
    width: 120px;
    height: 50px;
    font-size: 1.1rem;
}

.contact__send .btn-primary {
    color: #000;
    font-weight: 600;
    background-color: #f1b500;
    border-color: #e9be3e;
    width: 140px;
    height: 45px;
    letter-spacing: 1px;
    transition: all .3s;
}

.contact__send .btn-primary:hover {
    color: #fff;
    background-color: #dc7000;
    border-color: #dc7000;
    transition: all .3s;
}

/*Nossos contatos*/

.contact__info h2{
    color: #dc7000;
    font-family: BebasNeue-Regular;
    letter-spacing: 1.5px;
    font-size: 2.1rem;
    font-weight: 400;
}

.contact__info .des-author {
    background: #f7f7f7;
    padding: 1px 20px;
}

.contact__info .des-author .au-bx {
    padding: 10px 10px 10px;
    border-bottom: 1px solid rgba(51, 51, 51, 0.08);
    background: #fff;
    margin: 20px 0;
}

.contact__info .des-author .au-bx h5 {
    font-size: 16px;
    margin-bottom: 15px;
    color: #272727;
    line-height: 1.1;
}

.contact__info .des-author .au-bx .au-img-bx{
    background: #d37d23;
    padding: 1rem;
    
    vertical-align: middle;
}

.contact__info .des-author .au-bx .au-img-bx i{
    color: #fff;
    font-size: 1.2rem;
}


.contact__info .des-author .au-bx .au-img-bx img {
    width: 67px;
}
.contact__info .des-author .au-bx .au-img-bx, .author-details .au-bx .cont-bx {
    display: table-cell;
    vertical-align: middle;
}

.contact__info .des-author .au-bx .cont-bx {
    display: table-cell;
    vertical-align: top;
}

.contact__info .des-author .au-bx .cont-bx {
    padding-left: 12px;
}

.contact__info .des-author .au-bx .cont-bx h5 {
    color: #211915;
    margin: 0;
}
.contact__info .des-author .au-bx h5 {
    font-size: 16px;
    margin-bottom: 15px;
    color: #272727;
    line-height: 1.1;
}

.contact__info .des-author .au-bx .cont-bx p {
    color: #686868;
    font-size: 14px;
    margin-bottom: 0;
    line-height: 26px;
}

.contact__info .des-author .au-bx .cont-bx p i {
    color: #001781;
    margin-right: 5px;
}

.contact__info .des-author .au-bx .cont-bx p a{
    color: #333;
    text-decoration: none;
    transition: .2 all;
}

.contact__info .des-author .au-bx .cont-bx p a:hover{
    color: #dc7000;
    text-decoration: underline;
    transition: .3 all;
}

.contact__maps{}

.contact__maps .google-maps{
    width: 100%;
    height: 300px;
}

.contact__maps iframe{
    width: 100%;
    height: 300px;
    box-shadow: 0 2px 4px rgba(0,0,0,.1);
    border: 2px solid ##f7f7f7;
}

/* Sec Page Search
------------------------------------------------------------*/
.search .header__wrapper-title h2{
    color: #001781;
    font-family: BebasNeue-Regular;
    letter-spacing: 1.2px;
    font-size: 2rem;
    font-weight: 400;
    margin-top: 2rem;
}

/* Sec Page Author
------------------------------------------------------------*/
.author__container{
    background: #f7f7f7;
}

.author__img{
    border: 1px solid #c3c3c3;
    border-radius: 50%;
    padding: 5px;
    /* width: 200px; */
    width: 250px;
    margin-top: 1rem;
}

.author__name{
    font-size: 1.5rem;
    font-family: BebasNeue-Regular;
    /* font-family: Montserrat, sans-serif; */
    letter-spacing: 2px;
    font-weight: 600;
    border-bottom: 1px solid #ffe9e9;
}

.author__desc{
    color: #5b5b5b;
    font-size: .9rem;
}

.author__site{}
.author__email{}

.author__redes{
    margin-bottom: 2rem;
}

.author__redes a{
    border: 1px solid #dce4ff;
    border-radius: 2px;
    padding: .2rem .4rem;
}

.author__box{}

.author__posts{
    padding: 1rem;
}

.author__posts h3{
    font-size: 1.2rem;
    font-family: BebasNeue-Regular;
    /* font-family: Montserrat, sans-serif; */
    letter-spacing: 2px;
    font-weight: 600;
    border-bottom: 1px solid #ffe9e9;
}

.author__post{
    background: #fff;
    margin: 0.5em 5px;
    padding: 10px 20px;
    -webkit-box-shadow: 0 2px 4px rgba(0,0,0,.1);
    box-shadow: 0 2px 4px rgba(0,0,0,.1);
    border-radius: 3px;
    border: 0;
}

.author__link{
    font-size: 1rem;
    color: #414141;
    /* text-transform: uppercase; */
    font-weight: 600;
    text-decoration: none;
    transition: .3s;
}

.author__link:hover{
    color: #003eff;
    transition: .2s;
}

/* Sec Page Cliente
------------------------------------------------------------*/
.customer_unity{
    margin: 0 auto;
    float: none;
}

.customer__box{
    background: #fff;
    margin: 0.5em 5px;
    padding: 10px 20px;
    -webkit-box-shadow: 0 2px 4px rgba(0,0,0,.1);
    box-shadow: 0 2px 4px rgba(0,0,0,.1);
    border-radius: 3px;
    border: 1px solid #f0f0f0;
    text-align: center;
}

.customer__logo{}

.customer__name{
    color: #828282;
}


/* Sec Page Parceiros
------------------------------------------------------------*/
.partners_unity{
    margin: 0 auto;
    float: none;
}

.partners__box{
    background: #fff;
    margin: 0.5em 5px;
    padding: 10px 20px;
    -webkit-box-shadow: 0 2px 4px rgba(0,0,0,.1);
    box-shadow: 0 2px 4px rgba(0,0,0,.1);
    border-radius: 3px;
    border: 1px solid #f0f0f0;
    text-align: center;
}

.partners__logo{}

.partners__name{
    color: #828282;
}


/* IMÓVEIS */

.archive .wpc-filter-header .wpc-filter-title{
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 0;
    padding-left: 0.1rem;
}

.archive .wpc-checkbox-item{
    padding: 0.5rem !important;
}

.archive .wpc-filter-post_meta_num .wpc-filter-title{
    padding-bottom: .5rem !important;
    padding-left: 0.1rem;
}

.archive .wpc-filters-range-wrapper {
    display: flex;
    justify-content: space-around !important;
}

.archive .wpc-filters-range-wrapper .wpc-filters-range-column{}

.archive .wpc-filters-range-wrapper .wpc-filters-range-column input{
    border: 1px solid #ccc;        
    border-radius: 3px;
    box-shadow: 0 2px 4px rgba(0,0,0,.1);
    padding: .2rem .5rem;
}


/* PAGE FAVORITOS
------------------------------------------------------------*/
.page-template-page-favoritos .fully__page{
    background: #f5f5f5;
}

.page-template-page-favoritos .checkout__container{
    background: #fff;
}


/* ALINHAMENTO DAS IMAGENS 
------------------------------------------------------------*/
img.alignright {float:right; margin:0 0 1em 1em}
img.alignleft {float:left; margin:0 1em 1em 0}
img.aligncenter {display: block; margin-left: auto; margin-right: auto}
a img.alignright {float:right; margin:0 0 1em 1em}
a img.alignleft {float:left; margin:0 1em 1em 0}
a img.aligncenter {display: block; margin-left: auto; margin-right: auto}


/* SLIDER SINGLE PROD
------------------------------------------------------------*/
.slider-container>figure { 
    scroll-snap-align: var(--swiffy-slider-snap-align);
    position: relative;
    width: 100%;
    height: 97%;
}


/* PODCAST */
.podcast{
    height: 100%;
}

.podcast__frame{
    display: table;
}

.podcast__frame iframe{
    display: table-cell;
    vertical-align: middle;
}

.podcast__resume{
    background-color: #a46a05;
    display: table;
    border: 2px solid #a46a05;
    border-radius: 10px;
    /*height: 80%;*/
}

.podcast__resume p{
    color: #fff;
    display: table-cell;
    vertical-align: middle;

    font-family: inherit;
    font-weight: 400;
    font-size: .9rem;
}


/* FILTER - PLUGIN Search & Filter  VESÃO MOBILE
------------------------------------------------------------*/

.sec__filter{
    background: #b8b8b8;
}

.filter__grid{
    background: #fff;
}

.filter__card{}

.filter__container{}

.filter__container .searchandfilter{
    width: 100%;
}

.filter__container .searchandfilter ul{
    background-color: #f1f1f1;
    border: 1px solid #e1dfdf;
    border-radius: 4px;
    margin-top: 2rem;
    padding: 1.5rem;
    width: 100%;
}

.filter__container .searchandfilter ul li{
/*    background-color: #abc123;*/
    display: block;
    margin: 0 auto;
    text-align: center;
    width: 100%;
}

.filter__container .searchandfilter ul li h4{
    color: #676767;
    font-family: BebasNeue-Regular;
    font-size: 1.2rem;
    letter-spacing: 1px;
    margin-bottom: 0.4rem;

    margin-top: 2rem;
}

.filter__container .searchandfilter ul li input[type=text]{
    border: 1px solid #d9d9d9;
    border-radius: 4px;
    /*box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);*/
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.2);
    padding: 0.5rem;
    transition: all .3s;

    display: flex;
    width: 100%;    
}

.filter__container .searchandfilter ul li input[type=text]:hover {
    background: #f1f1f1;
    border: 1px solid #ccc;    
    transition: all .3s;
}

.filter__container .searchandfilter ul li input[type=text]:focus {
    background: #f7fdff;
    border: 1px solid #61b6ff !important;
}

.filter__container .searchandfilter ul li select{
    border: 1px solid #d9d9d9;
    border-radius: 4px;
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.2);
    height: 2.7rem;
    padding: 0.5rem;
}

.filter__container .searchandfilter ul li select .level-0{
    color: #333;
}

/*
.filter__container .searchandfilter ul li select option {
    color: #333;
    font-weight: normal;
    display: block;
    white-space-collapse: collapse;
    text-wrap: nowrap;
    min-height: 2rem;
    padding: .5rem;
}*/

.filter__container .searchandfilter ul li input[type=submit] {
    background: #0d6efd;
    border: 1px solid #0d6efd;
    border-radius: 4px;
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.2);
    color: #fff;
    height: 2.8rem;
    margin: 1.5rem 0;
    min-width: 200px;
    transition: all .3s;
}

.filter__container .searchandfilter ul li input[type=submit]:hover {
    background: #0a58ca;
    border: 1px solid #0a58ca;
    transition: all .3s;
}


.filter__container .searchandfilter ul li input[type=button] {
    background-color: #8842d5;
    border: none;
    color: white;
    padding: 18px 36px;
    text-decoration: none;
    margin: 5px 4px;
    cursor: pointer;  
}

.filter__container .searchandfilter ul li input[type=reset]{}

.filter__container .searchandfilter ul li input[type=submit]{}


/* checkbox */

.filter__container .searchandfilter ul.children {
    background-color: #f1f1f1;
    border: 1px solid #e1dfdf;
    border-radius: 4px;
    margin-top: 0rem;
    padding: 0.5rem 0.2rem 0.5rem 1rem;
    width: 100%;
}

.filter__container .searchandfilter ul > li > ul{
    margin-top: 1.5rem;
}

.filter__container .searchandfilter ul li ul > li.cat-item{
    margin-bottom: 1rem;
}

.filter__container .searchandfilter ul li .cat-item{
    text-align: left;
    padding-right: 0;
}



.filter__container .searchandfilter ul li .cat-item > ul.children{


}

.filter__container .searchandfilter ul li .cat-item > .children .cat-item{}

.filter__container .searchandfilter ul li .cat-item > .children .cat-item label{}




/* Formulário de Cadastro
------------------------------------------------------------*/
.jet-fb-form-block{
    background: #efefef;
    border: 1px solid #e6e6e6;
    border-radius: 4px;
    padding: 1rem;
}

.jet-fb-form-block .wp-block-columns{
    margin-bottom: .5rem;
}

.jet-form-builder__label{
  color: #d37d23;
  font-weight: 600;
  text-transform: uppercase;
}

.jet-form-builder__field-wrap{

}

.jet-form-builder__field{
    border: 1px solid #bababa;
    border-radius: 4px;
    padding: .5rem;
} 

.text-field{}

.jet-form-builder-file-upload__content{
    display: none !important;
}


.jet-form-builder-file-upload__fields{}

.jet-form-builder-file-upload__input{
    /*background: #ffc107;*/
    background: none;
    border: 1px solid #d37d23;
    padding: .5rem !important;
}

.jet-form-builder-file-upload__message{
    width: fit-content;
    background: #ffe9cc;
    border: 1px solid #ffa427;
    border-radius: 2px;
    margin-top: .5rem;
}

.jet-form-builder-file-upload__message small{
    color: #725500;
    padding: .5rem;
}

.field-type-submit-field{
    margin-top: -10px;
}

.jet-form-builder__submit{
    color: #000;
    background: #ffc107;
    border: 1px solid #ffc107;
    border-radius: 4px;
    transition: all .3s;
    padding: .5rem 2.5rem .5rem 2.5rem;

}

.jet-form-builder__submit:hover{
    color: #000;
    background: #ffca2c;
    border: 1px solid #ffc107;
    transition: all .3s;
}



.up-professional-layout__left_content .up-follow {
    display: none !important;   
}


/* Sec Footer
------------------------------------------------------------*/

.footer__main{
    background-color: var(--footer-bg-color);
    border-color: #e6e6e6;
    border-top: 1px solid #525252;
    padding-top: 4rem;
}

.footer__col{
    
}

.footer__col .widget h4{
    color: #0d6efd;
    font-family: var(--font-title);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.footer__col p a{
    text-decoration: none;
    color: #e6e6e6;
}

.footer__col p a:hover{
    /*color: #0d6efd;*/
    color: var(--menu-link1-hover);
}

.footer__col--color{
    color: #b8b8b8;
}

.footer__social{
    margin: 4rem 0 2rem 0;
}

.footer__social--border{
    border-top: 1px solid #222;
}

.footer__social--icone{
    padding: 0.2rem;
}

.footer__social--link{
    text-decoration: none;
    color: #888;
    font-size: 1.5rem;
    transition: all .3s;
}

.footer__social--link:hover{
    /*background: #0d6efd;*/
    background: var(--menu-link1-hover);
    color: #fff;
    transition: all .3s;
}

.footer__social--btn{
    border: 1px solid #222;
    padding: 0.5rem 0.8rem;
    transition: all .3s;    
}

.footer__social--btn:hover{
    /*border: 1px solid #3e7eff; */
    boder: 1px solid var(--menu-link1-hover);   
    transition: all .3s;    
}

.footer__base{
    text-align: center;
    padding: 0 1rem;
}

.footer__base p{
    padding: 0;
    margin: 0;
}

.footer__base--color{
    color: #b8b8b8;
}

.footer__base--size{
    font-size: .9rem;
}

.footer__ass{
    text-align: center;
    padding: 0 1rem;
}

.footer__ass--color{
    color: #4b4b4b;
}

.footer__ass--size{
    font-size: .85rem;
}


.footer__ass p{
    padding: 0;
    margin: 0;    
}

.footer__ass p a{
    text-decoration: none;    
}

.footer__ass p a:hover{
    color: #3e7eff;
}


/* Sec Footer menu
------------------------------------------------------------*/
.footer__menu{
    /* background: #ccc; */
    border-bottom: 1px solid #222;
    margin-bottom: 2.5rem;
    padding-bottom: 2.2rem;
}

.footer__menu-list{
    text-align: center;
}

.footer__menu-list ul{
    background: transparent;
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer__menu-list ul li{
    display: inline;
    margin: 0;
}

.footer__menu-list ul li a{
    color: #b7b7b7;
    font-size: 0.8em;
    padding: 0 8px;
    text-decoration: none;   
    margin-top: 1rem; 
    letter-spacing: 1.5px;
}

.footer__menu-list ul li a:hover{
    /*color: #50beff;*/
    color: var(--menu-link1-hover);
    text-decoration: underline;
}

/* Keyframes */
@keyframes hamburger_puls {
	0% {
		opacity: 1;
		transform: scale(1);
	}
	100% {
		opacity: 0;
		transform: scale(1.4);
	}
}

/* Media Query For mobile  */
/* @media only screen and (max-width: 575px) {
    .product__unity{
        background-color: #27ae60;
        width: 100%;

    }
} */

/* Media Query For Desktop */
@media only screen and (min-width: 1200px) {
   
    /*header*/

    .header__main {
        background-color: var(--header-bar-color);
        box-shadow: var(--box-shadow);
    }

    .header__menu {        
        margin: 0 auto;
        /* max-width: 100%; */
        padding: 0;
        position: relative;
    }

    .header__menu .header__logo .logo img{        
        max-width: 10rem;
        margin: 0.5rem 1rem 0.5rem 0;
    }

    /* Menu Bar */
    .header__menu .hamburger {
        display: none;
    }

    .header__menu .menu{
        /* flex: 3;
        display: flex; */
        height: auto;
        top: 0;
        position: inherit;
        /* overflow-x: hidden;
        overflow-y: hidden; */
        transform: translateX(0%);

        display: flex;   
        flex-direction: row;
    }    

    .menu__nav{
        flex: 1;
    }

    .menu__nav .menu__label {
        display: none;
    }

    .header__menu .menu__list{
        display: flex;
        flex-direction: row;   
        justify-content: center;
        align-items: center;   
        margin: -.5rem;  
    }    

    .menu__list .menu-item{
        /* width: 100%;    
        transform: translateY(15px);
        padding: 0.7rem 0.9rem; */
        position: relative;
    }

    /*select 1º level menu*/
    .menu__list > .menu-item {
        --menu-bgl1-color: transparent;
        --menu-bgl1-border: none;
        background-color: var(--menu-bgl1-color);
        border-bottom: var(--menu-bgl1-border);
        display: block;
        margin: 0.1rem 0;
        padding: .5rem;
        position: relative;
        transform: translateY(1px);
        width: auto;
    }

    .menu__list .menu-item > a{
        /* line-height: 0rem; */
        padding: 0 .2rem;
        letter-spacing: 1px;
        font-size: .95rem;
        display: flex;
        align-items: center;
        /* justify-content: space-between; */
        justify-content: center;
        transition: .5s;
    }

    .menu__list .menu-item > a:hover{
        /*color: #003eff;*/
        color: var(--menu-link1-hover);
        transition: .3s;
    }

    /* .menu__list .menu-item-has-children > .sub-menu{
        cursor: pointer;
        transform:translateX(0rem);
        transform: translateY(0rem);
        z-index: 999;
    
        position: initial;
        top: initial;
        left: initial;
        transform: initial;
       
        pointer-events: auto;
        width: 100%;
        padding: 0;
        background-color: #3183ac;
    } */

    .menu__list .menu-item.menu-item-has-children .sub-menu {     
        border-bottom: 1px solid #ccc;   
        position: absolute;
        top: 0.5rem;
        left: 0;
        width: 10rem;
        transform: translateY(10px);
        opacity: 0;
        pointer-events: none;
        transition: .5s;      
    }   

    .menu__list .menu-item.menu-item-has-children .sub-menu li:nth-child(1){ 
        /* background-color: red;
        padding-top: 0; */
        margin-top: -1rem;
        top: 0;
     }

    /* .menu__list .menu-item .sub-menu{        
        position: relative;     
    } */

    .menu__list > .menu-item > .sub-menu{        
        /* position: fixed;         */
       
    }
    
    .menu__list .menu-item-has-children a.show ~ .sub-menu {       
        /* margin-top: 2rem; */
        
    }
    
    /* Hover Menu Desktop */
    .menu__list .menu-item:hover{
        transition: .3s;
    }
    
    .menu__list .menu-item:hover > .sub-menu {
        transform: translate(0, 1.5rem);
        opacity: 1;
        visibility: inherit;
        pointer-events: auto;
    }
    
    .menu__list .menu-item.menu-item-has-children:hover > a::after {        
        transform: rotate(-90deg);        
    }
    
    .menu__list .sub-menu .menu-item-has-children > .sub-menu{        
        position: absolute;
        /* left: 2rem; */
        transform: translateX(9.8rem);
        top: 0;
        width: inherit;
    }
    
    /*Menu Level 2 */
    .menu__list .menu-item-has-children .sub-menu .menu-item {
        background-color: var(--menu-bgl2-color);
        border-bottom: var(--menu-bgl2-border);        
    }
    
    .menu__list .menu-item-has-children .sub-menu .menu-item:hover{
        background-color: var(--menu-bgl2-hover);
    }
    
    /* Menu Level 3*/
    .menu__list .sub-menu .menu-item-has-children > .sub-menu .menu-item{
        background-color: var(--menu-bgl3-color);
    }  
    
    .menu__list .sub-menu .menu-item-has-children > .sub-menu .menu-item:hover{
        background-color: var(--menu-bgl3-hover);
    }

    .log__sign{
        /* background-color: #27ae60; */
        flex: inherit;
        width: fit-content;
        padding: 0;
        justify-content: space-between;
        opacity: 1;
        transform: translateY(0);
    }


    /* Slider
    -----------------------*/
    .slider__title{
        font-size: 2.2rem;        
    }       
    
    .slider__text{
        font-size: 1.2rem;       
    }

    /* Sec hero */
    .hero__content--padding{
        padding: 0 2rem;
    }

    /* Sec Product
    -----------------------*/
    .product__btn{
        width: 96%;    
        display: inline-flex !important;
        margin-bottom: 0.5rem;
    } 
    
    .product__btn .btn{
        border: 1px solid #eee;
        padding: 0.1rem;         
    }

    /* Sec Category
    -----------------------*/
    .category__title{
        font-size: 1rem;
    }

    /* Sec Customer
    -----------------------*/
    .customer__img{
        max-width: 70% !important;
        transition: .3s;
    }
    
    .customer__img:hover{      
        opacity: 0.8;
        transition: .3s;
    }


    /* Sec Partner
    -----------------------*/
    .partner__img{  
        max-width: 70% !important;
        transition: .3s;
    }
    
    .partner__img:hover{      
        opacity: 0.8;
        transition: .3s;
    }

    /* Sec Team
    -----------------------*/
    .team__networks{ 
        font-size: 1.1rem;
    }

    /* sec__testimony
    ------------------------------------------------------------*/ 
    .testimony__grid{
        width: 80%;
        margin: 0 auto;
    }


    /**/

    .single__author {
        background-color: #f3f3f3;
        border: 1px solid #e9e9e9;
        border-radius: 8px;
        width: 70%;
        margin: 0 auto;
        padding: 20px;
        margin-bottom: 30px;
        margin-top: 30px;
    }

    .single__author-posts ul li{
        background: #fff;
        margin: 0.5em 5px;
        padding: 5px;
        -webkit-box-shadow: 0 2px 4px rgba(0,0,0,.1);
        box-shadow: 0 2px 4px rgba(0,0,0,.1);
        border-radius: 3px;
        border: 0;
        width: 30%;
        display: inline-block;
        text-align: center;
    }


    .product__view{
        display: flex;
        flex-direction: row;
    }

    .product__view .product__img{
        max-width: 250px;
    }

    .product__view .product__content{
        padding: 2rem 2rem 0 2rem !important;
    }

    .product__view .product__title{
        text-align: left;
    }

    .product__view .product__info{
        padding: 0;
    }

    .product__view .product__price{
        text-align: left !important;
        padding-left: .0 !important;
    }

    .product__view .prod-id{
        text-align: left !important;
        padding-left: .0 !important;
    }

    .home .product__btn{
        width: 90% !important;
        display: inline-flex !important;
        margin-bottom: 0.5rem;
        margin: 0 auto;        
        padding-bottom: 1rem;
        
    }

    .archive .product__btn{
        width: 50% !important;
        display: inline-flex !important;
        margin-bottom: 0.5rem;
        margin: 0 auto;
        margin-top: -1rem;
        padding-bottom: 1rem;
        
    }


    .filter__container .searchandfilter ul{
        display: flex;
        justify-content: center;
        justify-items: center;
        margin: 0 auto;        
        margin-top: 2rem;
        padding: 0.5rem 1.5rem 1.5rem 1.5rem;
        width: 90%;

    }

    .filter__container .searchandfilter ul li h4{
        text-align: left;
    }

    .filter__container .searchandfilter ul li{
        /*background-color: pink;*/
        /*border: 1px solid #f2f2f2;   */     
        display: block;
        margin: 0 .1rem;
    }

    .filter__container .searchandfilter ul li:last-child{        
        display: block;
    }
    

    .filter__container .searchandfilter ul li input[type=submit] {
        margin-top: 2.7em;
        margin-bottom: 0;
    }


    .filter__container .searchandfilter ul li input[type=text] {
    
        height: fit-content;
        /*  margin-top: 1rem;*/
        /*position: relative;
        top: 35%;*/
    }

    .filter__container .searchandfilter ul li h4 {
   
        margin-top: 1rem;
    }

    .filter__container .searchandfilter ul > li > ul {
        border: 0;
        display: block;
        margin-top: .5rem;        
    }

    .filter__container .searchandfilter ul li.cat-item {
        border: 0;
        text-align: left;
        padding-right: 0;
    }

    .filter__container .searchandfilter ul li .cat-item > ul.children {
        border: 0;
    }

    .filter__container .searchandfilter ul li ul > li.cat-item {
        margin-bottom: 0;
    }

}/* end min-width: 1200px */