:root{
    --branco: #ffffff;
    --gelo: #f1f1f1;
    --verde: #1e74cf;
    --preto: #2a2a2a;
}

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

body{
    font-family: 'Bebas Neue', sans-serif;
}

.toolbar{
    height: 80px;
}

.tab-link{
    display: flex;
    justify-content: center;
    flex-flow: column wrap;
}

.toolbar-inner{
    background: var(--branco);
    border-top: 1px solid var(--gelo);
}

.toolbar-inner .link{    
    flex:1;
    height: 80px;  
    line-height: 25px; 
	font-weight:bold;
    color: var(--verde);    
}

.toolbar-inner .link:not(.active){
    color: var(--preto);
	font-weight: normal;
}

.toolbar-inner > .link i{
    font-size: 28px;
}

.top-nav{
    width: 100%;
    height: 60px;
    background: var(--branco);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.title-logo{
    font-weight: 600;
    margin-left: 5%;
}

.title-logo span{
    color: var(--verde);
}

.btn-cart{
    width: 40px;
    height: 40px;
    background: var(--branco);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 5%;
    border-radius: 50%;
    border: 1px solid var(--gelo);
    font-size: 24px;
    color: var(--preto);
}

.btn-cart::before{
    content: attr(data-count);
    background: var(--verde);
    width: 17px;
    height: 17px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--branco);
    position: absolute;
    top: 5px;
    right: 0px;
    margin-right: 5%;
}

.btn-cart[data-count="0"]::before{
    display: none;
}

a{
    color: var(--verde);
    font-weight: 600;
    text-decoration: none;
}

form{
    padding-top: 10px;
    padding-bottom: 20px;
    background: var(--branco);
    position: relative;
}

#search{
    width: 90%;
    height: 45px;
    margin: auto;
    padding: 10px 20px;
    border-radius: 10px;
    background: var(--gelo);
}

::placeholder{
    color: #b3afaf;
}

.icone-busca{
    position: absolute;
    top: 0px;
    right: 5%;
    font-size: 27px;
    padding: 13px;
}

.page-content{
    background: var(--branco);
}

.swiper {
    width: 100%;
    height: 100%;
  }

  .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .img-fluid{
    max-width: 100%;
  }

.block{
    margin-left: 3%;
    margin-right: 3%;
}

.filter-btn{
    width: 100%;
    height: 35px;
    background: none;
    border: 2px solid var(--preto);
    border-radius: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.filter-btn.active{
    background: var(--verde);
    color: var(--branco);
    border: none;
}

.row{
    flex-wrap: wrap;
    flex-direction: row;
}

.item{
    color: var(--preto);
}

.item-card{
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    height: 240px;
    flex: 45%;
    margin-right: 10px;
    margin-bottom: 25px;
}

.img-container{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 180px;
    border-radius: 10px;
    background: var(--gelo);
}

.img-container img{
    max-width: 120px;
    object-fit: cover;
}

.name-rating{
    display: flex;
    justify-content: center;
    padding-top: 10px;
}

.color-grey{
    color: gray;
}

.mdi-star{
    color: orange;
}

.bold{
    font-weight: 800;
}

.price{
    font-size: 20px;
}

.gelo{
    background: var(--gelo)!important;
}

@media (min-width: 992px){
    .item-card{
        flex: 30%;
    }
    .input>input{
        width: 50%;
    }
}

@media (min-width: 1200px){
    .item-card{
        flex: 20%;
    }
    .input>input{
        width: 40%;
    }
}

/*Perfil*/
label{
    color: var(--verde);
    font-weight: 800;
}
.input{
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
    height: 95%;
}

.input>input{
    border: none;
    text-align: center;
    width: 80%;
    height: 40px;
    margin: auto;
    padding: 10px 10px;
    border-radius: 10px;
    background: var(--gelo);
}

.submit{
    width: 30%!important;
    color: #ffffff;
    cursor: pointer;
    font-weight: 900;
}
.submit{
    background-color: var(--verde)!important;
    color: #ffffff !important;
}
#Edit>input{
    color: var(--verde);
}

.hiden{
    display: none;
}

.nonTouch{
    pointer-events: none;
}