:root {
    --font-regular: 'Geist-Regular';
    --font-medium: 'Geist-Medium';
    --font-bold: 'Geist-Bold';
}

.main-title-sec {
    float: left;
    width: 100%;
    padding: 25px 0 35px;
}

.main-title-sec h2 {
    float: left;
    width: 100%;
    color: #333333;
    font-size: 64px;
    line-height: 75px;
    font-family: var(--font-bold);
    letter-spacing: -0.18px;
    text-align: center;
}

.temporada-main {
    float: left;
    width: 100%;
    padding-bottom: 90px
}

.temporada-lst {
    float: left;
    width: 100%
}

.temporada-lst .container {
    float: left;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    column-gap: 2%;
    row-gap: 50px;
}

.temporada-lst .container .mix {
    flex: 0 1 32%;
    display: none;
}

.mixitup-main {
    float: left;
    width: 100%;
    height: 100%;
    transition: all .5s ease;
}

.mixitup-main .mixitup-img {
    float: left;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.mixitup-main .mixitup-img img {
    float: left;
    width: 100%;
    transition: all .5s ease;
}

.temporada-lst .mixitup-main:hover .mixitup-cnt h3 {
    color: #EB8B2D;
}

.temporada-lst .mixitup-main:hover .mixitup-img img {
    transform: scale(1.05);
}

.mixitup-main .mixitup-img span.wishlist-ico {
    background: rgba(0, 0, 0, .3) url("../images/wishlist/ico-heart.svg") no-repeat center center;
    background-size: 45%;
    width: 42px;
    height: 42px;
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
    transition: all .5s ease;
}

.mixitup-main:hover .mixitup-img span.wishlist-ico {
    background: #EB8B2D url("../images/wishlist/ico-heart.svg") no-repeat center center;
    background-size: 45%;
}

.temporada-lst .mixitup-main .mixitup-img img {
    float: left;
    width: 100%;
    transition: all .5s ease;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.temporada-lst .mixitup-main .mixitup-cnt {
    width: 100%;
    float: left;
    padding: 20px 20px 30px 20px;
    background: #fff;
}

.temporada-lst .mixitup-main .mixitup-cnt h5 {
    width: auto;
    float: left;
    color: #828282;
    font-family: var(--font-bold);
    font-size: 11px;
    letter-spacing: 0.2px;
    border-radius: 30px;
    padding: 0px 20px;
    border: 1px solid #6A6A6A;
    height: 29px;
    line-height: 27px;
    letter-spacing: 0.2px;
    text-align: left;
    margin-bottom: 18px;
    margin-right: 5px;
}

.temporada-lst .mixitup-main .mixitup-cnt h3 {
    width: 100%;
    float: left;
    font-family: var(--font-bold);
    font-size: 25px;
    line-height: 30px;
    color: #333333;
    margin-bottom: 18px;
    text-align: left;
    transition: all .5s ease;
    -moz-transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
}

.temporada-lst .mixitup-main .mixitup-cnt p {
    width: 100%;
    float: left;
    font-family: var(--font-regular);
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 20px;
    text-align: left;
}

.temporada-lst .mixitup-main .mixitup-cnt h6 {
    width: 100%;
    float: left;
    text-align: left;
    font-family: var(--font-bold);
    font-size: 14px;
    line-height: 25px;
    letter-spacing: 0.08px;
    color: #333333;
}

.temporada-lst .mixitup-main .mixitup-cnt h6 span {
    color: #565656;
    font-family: var(--font-medium);
    display: block;
}

.mixitup-main:hover {
    box-shadow: 0px 6px 42px rgba(0, 0, 0, 0.1);
}

.temporada-lst .container .mix.show {
    display: block;
}

/* WISHLIST */
.wishlist-ico {
    transition: all 1s ease;
    -moz-transition: all 1s ease;
    -webkit-transition: all 1s ease;
    -o-transition: all 1s ease;
}

.wishlist-ico:hover {
    cursor: pointer;
}

.wishlist-ico.wishlist-ico-white {
    background: url("../images/wishlist/ico-heart-white.svg") no-repeat center center;
    background-size: 21px;
    width: 42px;
    height: 42px;
    display: inline-block;
}

.wishlist-ico-black {
    background: url("../images/wishlist/ico-heart-black.svg") no-repeat center center;
    background-size: 21px;
    width: 42px;
    height: 42px;
    display: inline-block;
}

.wishlist-ico-black:hover {
    background-image: url("../images/wishlist/ico-heart-blk.svg");
    cursor: pointer;
}

.wishlist-ico-blk {
    background: url("../images/wishlist/ico-heart-blk.svg") no-repeat center center;
    background-size: 21px;
    width: 42px;
    height: 42px;
    display: inline-block;
}

.wishlist-ico-blk:hover {
    background-image: url("../images/wishlist/ico-heart-black.svg");
    cursor: pointer;
    opacity: 1 !important;
}

.wishlist-ico.active {
    background-image: url("../images/wishlist/ico-heart-red.svg") !important;
    /* background-color: #e60000 !important; */
}