﻿* {
    /* resets the spacing between the card-head and card-body */
    margin: 0;
    padding: 0;
    outline: none;
}


.card {
    border-radius: 30px;
    border: 2px solid #dabcea;
    box-shadow: 11px 11px 1px rgba(0, 0, 0, 0.3);
    transition: 0.3s;
}

    .card:hover {
        box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
    }

    .card img {
        object-fit: cover;
        /*height: 200px;*/
    }

.card-head {
    position: relative;
    /*height: 310px;*/
    background: #dabcea;
    /* Old browsers 
    background: -moz-linear-gradient(-45deg, #43cea2, #185a9d);
     FF3.6-15 
    background: -webkit-linear-gradient(-45deg, #43cea2, #185a9d);
     Chrome10-25,Safari5.1-6 
    background: linear-gradient(135deg, #43cea2, #185a9d);
     W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ 
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#43cea2', endColorstr='#185a9d', GradientType=1);
     IE6-9 fallback on horizontal gradient */
    border-radius: 25px 25px 0 0;
}

.animal-img {
    /*img is 150px because it would be to big for the card visually*/
    width: 200px;
    height: auto; /* Mantiene la proporción de la imagen */
    border-radius: 50%;
    box-shadow: 4px 4px 3px rgba(0, 0, 0, 0.2);
    margin-bottom: 5px;
    object-fit: cover;
}

.animal-grid {
    width: 128px;
    height: auto; /* Mantiene la proporción de la imagen */
}

.animal-detail {
    padding: 15px;
    font-size: 11px;
    color: #fff;
    text-align: center;
}

    .animal-detail h2 {
        font-size: 18px;
        font-weight: 500;
        letter-spacing: 2px;
        padding-top: 10px;
        padding-bottom: 10px;
        text-transform: uppercase;
        background-color: #c390dc;
        border-radius: 25px 25px 25px 25px;
        margin: 20px 20px 20px 20px;
    }

    .animal-detail p {
        font-size: 12px;
        font-weight: 200;
        letter-spacing: 2px;
        font-style: italic;
        background-color: #c390dc;
        border-radius: 25px 25px 25px 25px;
        margin: 20px 20px 20px 20px;
        padding-top: 10px;
        padding-bottom: 10px;
    }

.card-body {
    /*height: 210px;*/
    background: #fff;
    border-radius: 0 0 25px 25px;
    border: 1px solid white;
}

.animal-title h1 {
    padding: 20px 20px 5px 20px;
    display: block;
    font-size: 17px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.badge {
    position: relative;
    font-size: 10px;
    font-weight: 300;
    color: #fff;
    background: #43cea2;
    padding: 2px 5px;
    border-radius: 4px;
    top: -2px;
    margin-left: 5px;
}

.animal-caption {
    display: block;
    padding: 0 20px;
    font-size: 10px;
    font-weight: 400;
    font-style: italic;
}

.animal-info h4 {
    font-size: 12px;
    padding: 0 21px;
    margin-top: 15px;
    padding-bottom: 10px;
    text-transform: uppercase;
}

ul {
    list-style: none;
    font-size: 12px;
    padding: 0 30px;
}

.labels {
    font-weight: 700;
    text-transform: uppercase;
    color: #404040;
}

.animal-discription h4 {
    font-size: 12px;
    padding: 0 21px;
    margin-top: 20px;
    padding-bottom: 10px;
    text-transform: uppercase;
}

.animal-discription p {
    font-size: 12px;
    padding: 0 28px;
}

table {
    border: none;
    border-collapse:unset;
}

    table tr {
        border: none;
    }

@media screen and (max-width: 600px) {
    table {
        border: none;
    }

        table thead {
            border: none;
        }

        table tr {
            border-bottom: none;
        }

        table td {
            border-bottom: none;
        }

        table td:last-child {
            border-bottom: none;
        }
}