#primary {
    width: 100%;
    background-color: #FFF;
}

.pet-dados {
    display: flex;
}

.pet-foto {
    flex: 6;
    padding-right: 30px;
    padding-top: 30px;
}

.pet-foto img {
    width: 100%;
}

.pet-info {
    flex: 4;
    padding: 20px 40px;
    border-radius: 20px;
    border: solid 1px #18a3a4;
    margin-top: 30px;
    background-color: #18a3a4;
    color: #FFF;
}

.pet-info h3 {
    color: #FFF;
    font-weight: bold;
}

.dados-linha {
    border-bottom: solid 1px #FFFFFF4F;
    padding: 5px 0;
    font-weight: 600;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.dados-linha:last-of-type {
    border: none;
}

.dados-valor {
    padding-right: 10px;
}

.dados-titulo {
    padding-left: 10px;
}

.titulo_pets {
    margin-top: 30px;
    font-weight: bold;
}

h4.pet-disponivel {
    text-align: center;
    margin-top: 25px;
    font-size: 22px;
    color: #FFF;
    text-decoration: underline;
    font-weight: bold;
}

.botao-adotar {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
    display: inline-block;
    font-weight: 600;
    text-align: center;
    vertical-align: middle;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: .25rem;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    text-decoration: none;
}

.botao-adotar:hover {
    color: #fff;
    background-color: #0069d9;
    border-color: #0062cc;
}

.pet-holder {
    padding: 40px;
}

/* Archive */
#listaFiltros {
    text-align: center;
    margin-bottom: 30px;
}

#listaFiltros button {
    opacity: .65;
}

#listaFiltros button.selecionado {
    background-color: #0062cc;
    border-color: #005cbf;
    opacity: 1;
}

.pet-box {
    margin-top: 30px;
    margin-right: 30px;
    height: 100%;
    overflow: hidden;
    position: relative;
    color: #FFF !important;
    font-weight: bold;
}

.pet-box h2 {
    color: #FFF;
}

.pet-box>.pet-foto {
    padding: 0;
    position: relative;
    top: 0;
    -webkit-transition: top .3s ease-in-out;
    -moz-transition: top .3s ease-in-out;
    -ms-transition: top .3s ease-in-out;
    -o-transition: top .3s ease-in-out;
    transition: top .3s ease-in-out;
}

.pet-hover {
    position: absolute;
    top: 100%;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    -webkit-transition: top .3s ease-in-out;
    -moz-transition: top .3s ease-in-out;
    -ms-transition: top .3s ease-in-out;
    -o-transition: top .3s ease-in-out;
    transition: top .3s ease-in-out;
    text-align: center;
}

.pet-hover .dashicons, .pet-display .dashicons {
    font-size: 40px;
    margin-bottom: 15px;
    width: 100%;
}

.pet-display {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	-webkit-transition: top .3s ease-in-out;
	-moz-transition: top .3s ease-in-out;
	-ms-transition: top .3s ease-in-out;
	-o-transition: top .3s ease-in-out;
	transition: top .3s ease-in-out;
	text-align: center;
}

.pet-box:hover>.pet-hover {
    top: 0;
    height: 100%;
}

.pet-box:hover>.pet-foto {
    top: -100%;
}

.pet-bc0 {
    background-color: #a3d256;
}

.pet-bc1 {
    background-color: #42b0e2;
}

.pet-bc2 {
    background-color: #f2b533;
}

.pet-bc3 {
    background-color: #f23384;
}

.filtro-pet {
    width: 25%;
}

/* Barra de progresso */
.progress {
    display: flex;
    overflow: hidden;
    font-size: .75rem;
    background-color: #f5f5f5;
    -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,.1);
    box-shadow: inset 0 1px 2px rgba(0,0,0,.1);
    height: 20px;
    width: 100px;
    border-radius: .25rem;
}

.progress-bar {
    width: 0;
    font-size: 12px;
    line-height: 20px;
    color: #fff;
    text-align: center;
    background-color: #e88783;
    -webkit-box-shadow: inset 0 -1px 0 rgba(0,0,0,.15);
    box-shadow: inset 0 -1px 0 rgba(0,0,0,.15);
    -webkit-transition: width 3s ease;
    -o-transition: width 3s ease;
    transition: width 3s ease;
    height: 100%;
}

/* Responsividade */
@media only screen and (max-width: 768px) {

    /* Tablet */
    #pet-widget a {
        width: 50%;
    }

    .filtro-pet {
        width: 50%;
    }

    .pet-dados {
        display: block;
    }

    .pet-foto {
        padding-right: 0;
    }

    .pet-info {
        border-radius: 0 0 20px 20px;
        margin-top: 0;
    }

    .pet-box {
        margin-right: 0;
        overflow: unset;
        position: unset;
    }

    .pet-hover {
        width: 100%;
        height: auto;
        display: block;
        position: unset;
        padding: 10px 5px;
    }

    #listaFiltros {
        margin: 0;
        display: flex;
        flex-flow: row wrap;
        align-content: space-between;
        align-items: stretch;
        justify-content: stretch;
    }

    #listaFiltros .button {
        flex: 1;
        margin: 5px;
    }
}

@media only screen and (max-width: 544px) {

    /* Celular */
    #pet-widget a {
        width: 100%;
    }

    .filtro-pet {
        width: 100% !important;
    }
}