/*
O css abaixo foi montado para aplicar layout para o seguinte trecho html para o box de feirinha
    
    <div class="col-md-4 col-xs-12">
        <div class="box-feirinha">
            <a href="/feirinha/url-feira-1">
                <img class="img-fluid" src="images/feirinhas/feira1.png" alt="Nome da feira" onerror="this.src=\'images/img_default_fair.png\'">

                <div class="box-feirinha-botoes">
                    <span class="botao-avaliacao"><i class="la la-star"></i> 4.5</i></span>
                    <span class="botao-categoria"><i class="la la-bookmark"></i> Artesanato</span></span>
                </div>
                <div class="box-feirinha-body">
                    <h2>Feira do Largo da Ordem</h2>
                    <p>Curitiba - PR</p>
                    <p><i class="las la-user"></i> 1.234 expositores</p>
                </div>

            </a>
        </div>
    </div>     
*/


/* BOX FEIRINHA */

.box-feirinha {
    float: left;
    width: 100%;
    border-radius: 32px;
    border: 1px solid #fff;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(239, 239, 239, .25);
}

.box-feirinha a,
.box-feirinha a:hover {
    text-decoration: none
}

.box-feirinha+.box-feirinha {
    margin-left: 16px
}

.box-feirinha img {
    box-shadow: 4px 4px 10px 0 rgba(0, 0, 0, .2);
    border-radius: 32px;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    max-height: 190px;
    min-height: 190px;
    height: 100%;
    margin-bottom: 10px
}

.favorite {
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 30px;
    background-color: #FFF;
}

.box-feirinha-body {
    margin: 14px;
    min-height: 130px;
}

.box-feirinha-body p.info-expositores {
    position: absolute;
    bottom: 0;
}

.box-feirinha-botoes {
    margin: 14px;
    height: 63px;
    padding-top: 5px;
    white-space: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
}

.botao-avaliacao,
.botao-feira,
.botao-categoria {
    font-family: Poppins;
    font-style: normal;
    font-weight: 500;
    font-size: 13px;
    line-height: 18px;
}

.botao-avaliacao {
    padding: 8px;
    width: auto;
    height: 32px;
    background-color: #FFEBA6;
    border-radius: 39px;
    color: #FFC700;
}

.botao-feira {
    padding: 8px;
    margin-left: 5px;
    width: auto;
    height: 32px;
    background-color: #FDEFFF;
    border-radius: 39px;
    color: #BB7CC3;
}

.botao-categoria {
    padding: 8px;
    margin-left: 5px;
    width: auto;
    height: 32px;
    background-color: #EFF1FF;
    border-radius: 39px;
    color: #8393FF;
}

.box-feirinha h2 {
    font-family: Poppins;
    font-style: normal;
    font-weight: bold;
    font-size: 22px;
    line-height: 28px;
    color: #14142B;
}

.box-feirinha p {
    font-family: Poppins;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 28px;
    color: #4E4B66;
}