.aks_prop_card {
    display: flex;
    flex-direction: column;
    min-height: 450px;
    background-color: #fff;
    flex-grow: 1;
    box-shadow: 0 0 7.28px .72px rgba(130, 130, 130, .28);
    min-width: 330px;
    max-width: 330px;
    width: 330px;
    margin: 0 25px
}

.aks_prop_card__image {
    height: 200px;
    width: 100%;
    position: relative;
    overflow: hidden;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat
}

.aks_prop_card__image__background {
    position: absolute;
    transition: all 300ms ease;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat
}

.aks_prop_card__image .icons {
    position: absolute;
    top: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px;
    font-size: 1.2rem
}

.aks_prop_card__image .icons i {
    color: #fff
}

.aks_prop_card__image .card_icon {
    background-color: rgba(0, 0, 0, .75);
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px;
    border-radius: 5px
}

.aks_prop_card__image .card_icon span {
    color: #fff
}

.aks_prop_card__image .virtual_tour {
    margin-left: auto;
    display: none
}

.aks_prop_card:hover .aks_prop_card__image__background {
    transform: scale(1.1)
}

.aks_prop_card__code span:first-child {
    font-weight: 500
}

.aks_prop_card__code span:last-child {
    color: #797979
}

.aks_prop_card__meta {
    display: flex;
    gap: 20px
}

.aks_prop_card__meta__item>span {
    display: inline-block;
    margin-bottom: 10px
}

.aks_prop_card__meta__item__icon {
    display: flex;
    align-items: center;
    gap: 10px
}

.aks_prop_card__meta__item i {
    color: #15616d;
    font-size: 1.2rem
}

.aks_prop_card__desc {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 10px;
    flex-grow: 1
}

.aks_prop_card__desc h3 {
    margin-top: 0
}

.aks_prop_card__desc h3 a {
    text-decoration: none;
    color: #000
}

.aks_prop_card__desc h3 a:hover {
    color: #15616d
}

.aks_prop_card__image__pills {
    position: absolute;
    color: #fff;
    bottom: 10px;
    right: 10px;
    display: flex;
    gap: 10px
}

.aks_prop_card__image__pills div {
    background-color: #15616d;
    padding: .3em;
    border-radius: 5px;
    font-size: 12px
}

.aks_prop_card__image__cva {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    justify-content: flex-end
}

.aks_prop_card__image__blackfacil {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    width: 100px;
    justify-content: flex-end
}

.aks_prop_card__image__blackfacil img {
    width: 100%;
}

.aks_prop_card__desc__tag {
    border: 1px solid;
    background-color: #15616d;
    align-self: flex-start;
    padding: .3em;
    border-radius: 5px;
    color: #fff;
    font-size: 16px;
    font-weight: 500
}

.aks_prop_card__bottom {
    margin-top: auto;
    display: flex
}

.aks_prop_card__bottom__price__text {
    font-size: 1.2rem;
    font-weight: 600;
    color: #00b54d
}

.aks_prop_card__bottom__buttons {
    margin-left: auto;
    font-size: 1.3rem;
    display: flex;
    gap: 10px;
    align-self: flex-end
}

.aks_prop_card__bottom__buttons i {
    cursor: pointer
}

.aks_prop_card__bottom__buttons .fa-heart:hover {
    color: red
}

.aks_prop_card--loading:hover .aks_prop_card__image__background {
    transform: unset
}

.aks_prop_card--loading h3 {
    height: 20px;
    background: linear-gradient(110deg, #ececec 8%, #f5f5f5 18%, #ececec 33%);
    border-radius: 5px;
    background-size: 200% 100%;
    animation: 1.5s shine linear infinite
}

.aks_prop_card--loading .aks_prop_card__image__background {
    background: linear-gradient(110deg, #ececec 8%, #f5f5f5 18%, #ececec 33%);
    background-size: 200% 100%;
    animation: 1.5s shine linear infinite
}

.aks_prop_card--loading .aks_prop_card__code {
    height: 20px;
    background: linear-gradient(110deg, #ececec 8%, #f5f5f5 18%, #ececec 33%);
    border-radius: 5px;
    background-size: 200% 100%;
    animation: 1.5s shine linear infinite
}

.aks_prop_card--loading .aks_prop_card__meta {
    height: 52px;
    background: linear-gradient(110deg, #ececec 8%, #f5f5f5 18%, #ececec 33%);
    border-radius: 5px;
    background-size: 200% 100%;
    animation: 1.5s shine linear infinite
}

.aks_prop_card--loading .aks_prop_card__bottom {
    height: 52px;
    background: linear-gradient(110deg, #ececec 8%, #f5f5f5 18%, #ececec 33%);
    border-radius: 5px;
    background-size: 200% 100%;
    animation: 1.5s shine linear infinite
}

.aks_prop_card--loading .aks_prop_card__desc__tag {
    height: 30px;
    width: 100px;
    background: linear-gradient(110deg, #ececec 8%, #f5f5f5 18%, #ececec 33%);
    border-radius: 5px;
    background-size: 200% 100%;
    animation: 1.5s shine linear infinite
}

@keyframes shine {
    to {
        background-position-x: -200%
    }
}