:root{
    --main-text-color: #EA722F;
    --main-bg-color: #B8CFDD;
    --secondary-bg-color: #005087;
    --secondary-text-color: #077B9B;
    --terciary-text-color: white;
}

.cards {
    display: flex;
    max-width: 1500px;
    flex-wrap: wrap;
    justify-content: space-around;
    row-gap: 20px;
    column-gap: 20px;
    margin-bottom: 30px;
    padding: 0 10px;
}

.cards--no-wrap {
    display: flex;
    width: 1170px;
    flex-wrap: nowrap;
    justify-content: flex-start;
    column-gap: 20px;
    margin: 30px auto;
    padding: 0 10px;
}

.card {
    background: #fff;
    height: 490px;
    border-radius: 10px;
    text-align: center;
    font-family: 'Roboto Condensed', sans-serif;
    display: inline-block;
    width: 270px;
    position: relative;
    font-size: 14px;
    color: #fff;
}

.card:hover {
    transform: scale(1.02);
}

.card__top {
    height: 290px;
    position: relative;
}

.card__wishlist-button {    
    width: 20px;
    height: 20px;
    top: 10px;
    left: 10px;
    background: url('../../image/micro_favorito.fw.png') no-repeat top left;
    position: absolute;
    z-index: 3;
}

.card__strip {
    position: absolute;
    top: -6px;
    right: -5px;
    width: 93px;
    height: 103px;
    z-index: 3;
}

.card__shadow {
    position: absolute;
    top: 0;
    display: block;
    width: 270px;
    height: 290px;
    background: url('../../image/sombraq.fw.png') no-repeat bottom left;
}

.card__image {
    width: 270px;
    height: 290px;
    border-radius: 10px 10px 0 0;
}
    
.card__date, .card__duration {
    position: absolute;
    bottom: 10px;
    display: block;
    font-weight: 700;
}

.card__date {
    left: 15px;
}

.card__duration {
    right: 15px;
}

.card__bottom {
    padding: 10px;
    height: 200px;
}

.card__name {
    margin: 0px;
    line-height: 0.9;
    letter-spacing: -1px;
    height: 80px;
}

.card__link {
    color: inherit;
    width: 100%;
    height: 100%;
}

.card__from {
    display: block;  
    color: #8D8E91;
    font-size: 12px;
    margin-bottom: 1px;
}

.card__special {
    text-decoration: line-through;
}

.card__price {
    color: var(--secondary-text-color);
    font-size: 21px;
    font-weight: 600;
}

.card__counter {
    color: #8D8E91;
    font-size: 12px;
    margin: 5px;
}

.card__button {
    font-size: 16px;
    color: white;
    padding: 5px 20px;
    background-color: var(--main-text-color);
    border-radius: 5px;
}

.card__button:hover {
    color: inherit;
    background-color: var(--secondary-text-color);
}