/* CAT PROFILES */

.cat-profile-box {
    margin: 0px 5px 0px 5px;
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    align-items: center;
    max-width: 580px;
    padding-bottom: 10px;
    background-color: #FFF;
    height: 100%;
}

@media (min-width: 580px) {
    .cat-profile-box{
        width: 580px;
    }
}

.cat-image-box {
    width: 100%
}

.cat-image {
    width: 100%;
    height: 300px !important;
    object-fit: cover;
}

.cat-name {
    font-size: 1.7rem;
    font-family: "Poppins", sans-serif;
    padding-top: 5px;
    text-align: center;
}

.cat-desc {
    font-size: 1.2rem;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.cat-desc-title {
    color: #0bd7f7;
    padding-right: 10px;
}

.cat-story {
    padding: 5px 10px 0px 10px;
    text-align: center;
}

.cat-card-text {
    padding: 10px;
    text-align: center;
}

.cat-desc-separator {
    background-color: #0bd7f7;
    margin: 10px;
    border-radius: 8px;
    height: 8px;
    width: 8px;
}

.cat-arrival {
    padding-top: 5px;
    color: #999;
}

.cat-needs {
    padding-top: 5px;
    color: #0bd7f7;
    font-size: 1.2rem;
    text-align: center;
}

.cat-needs-item {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding-right: 20px;
}

.cat-adopt-me-section {
    background-color: #EFEFEF;
    padding: 40px
}

.cat-container {
    /* width: 50%; */
    margin-top: 5px;
    margin-bottom: 5px;
}

.cat-name-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-content: center;
}

.cat-name-status {
    background-color: #0bd7f7;
    color: white;
    border-radius: 10px;
    padding: 5px;
    margin-left: 10px;
    display: block;
}

@media (max-width: 1000px) {
    .cat-container {
        width: 100% !important;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .cat-adopt-me-section {
        padding: 10px 0px 10px 0px
    }
}

.container-small-padding {
    padding: 5px
}

.cats-bullet-points-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
}

.cat-gender-icon {
    font-size: 1.6rem;
}

.color-unknown {
    color: black;
}

.bg-color-unknown {
    background-color: black;
}

.color-male {
    color: #0bd7f7;
}

.bg-color-male {
    background-color: #0bd7f7;
}

.color-female {
    color: #f7672c;
}

.bg-color-female {
    background-color: #f7672c;
}





/* HELP US SECTION */
.help-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

.help-container-item {
    justify-content: center;
    border: 2px solid #0bd7f7;
    width: 280px;
    padding: 20px;
    margin: 5px;
    text-align: center;
}

.help-container-item-title {
    font-size: 1.2rem;
    font-weight: bold;
}


/* OTHERS */

.orange-button {
    display: inline-block;
    padding: 7px 20px;
    background-color: #f7672c;
    color: #ffffff;
    -webkit-transition: all .3s;
    transition: all .3s;
    border: 1px solid transparent;
    margin: 5px;
}

.orange-button:hover {
    background-color: transparent;
    border-color: #f7672c;
    color: #f7672c;
    cursor: pointer;
}