﻿.listeConfigs {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.containerConfigs {
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
    height: 100%;
    justify-content: center;
    position: relative;
    gap: 15px;
}

.show_shadow {
    height: 480px;
}

    .show_shadow::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 60px;
        background: linear-gradient(to bottom, rgb(255 255 255 / 0%), rgb(0 0 0));
        pointer-events: none;
        z-index: 1;
    }

.btnSeeMore {
    display: flex;
    width: 100px;
    padding: 10px;
    color: var(--blanc);
    border: solid 1px var(--blanc);
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

    .btnSeeMore:hover {
        color: #000000;
        background: #c91d1d;
        border: solid 1px #c91d1d;
    }

.grb_event-pc__wrapper {
    row-gap: 25px;
}

.grb_event-pc__title {
    width: 100%;
    color: #202020;
    font-size: 26px;
    font-weight: var(--medium);
}

.grb_event-pc__text {
    max-width: 930px;
    color: #202020;
    font-weight: var(--regular);
    line-height: 1.5;
}

.grb_event-pc__all-products {
    color: #DE2E22;
    text-align: center;
    font-size: var(--size_h4);
    font-weight: var(--semibold);
    padding: 15px 20px;
    border: 2px solid #DE2E22;
    border-radius: 50px;
}

.grb_event-pc__list {
    column-gap: 35px;
    width: 100%;
}

.grb_event-pc__item {
    width: 100%;
    max-width: 415px;
    height: 320px;
    border-radius: 20px;
    border: solid 1px #c91d1d;
    background-image: url(https://www.grosbill.com/images_produits/grosbill/images-landing/amd/fullamd/2922918-red-chevron-bg.jpg);
    background-position: -190px -30px;
    background-repeat: no-repeat;
    background-size: cover;
}

    .grb_event-pc__item:hover .grb_event-pc__cta path {
        animation-name: movedArrow;
        animation-duration: 1s;
        animation-iteration-count: infinite;
        animation-timing-function: linear;
    }

.grb_event-pc__left {
    row-gap: 30px;
    height: 100%;
    padding: 15px;
}

.grb_event-pc__image {
    width: 180px;
    height: 200px;
    object-fit: contain;
}

    .grb_event-pc__image img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

.grb_event-pc__cta {
    width: 100%;
    max-width: 145px;
    color: #DE2E22;
    background-color: var(--blanc);
    border-radius: 10px;
    padding: 10px;
    font-size: var(--size_h4);
    font-weight: var(--semibold);
}

.grb_event-pc__content {
    max-width: 215px;
    height: 100%;
    background-color: var(--blanc);
    border-radius: 20px;
    padding: 10px;
    justify-content: space-between;
}

.grb_event-pc__tag {
    width: fit-content;
    padding: 5px;
    color: #DE2E22;
    text-align: center;
    font-size: var(--size_h5);
    font-weight: var(--semibold);
    background-color: #FFE5E5;
    border-radius: 5px;
}

.grb_event-pc__type {
    margin-bottom: -5px;
    color: #4D4D4D;
    font-weight: var(--semibold);
}

.grb_event-pc__name {
    font-size: 22px;
    font-weight: var(--semibold);
    text-transform: uppercase;
}

.grb_event-pc__feature {
    height: 100%;
    max-height: 128px;
    font-weight: var(--medium);
    overflow-y: hidden;
    justify-content: space-evenly;
}

.grb_event-pc__price-container {
    row-gap: 5px;
    column-gap: 10px;
}

.grb_event-pc__discount {
    padding: 5px;
    color: var(--blanc);
    border-radius: 5px;
    background-color: #E53029;
}

.grb_event-pc__old-price {
    position: relative;
    color: #3C3C3C;
    font-size: 20px;
    font-weight: var(--semibold);
}

    .grb_event-pc__old-price::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 0;
        width: 100%;
        height: 1px;
        background-color: #3C3C3C;
        transform: translateY(-50%);
    }

.grb_event-pc__current-price {
    padding: 5px;
    color: #E53029;
    font-size: 24px;
    font-weight: var(--semibold);
    border: 2px solid #E53029;
    border-radius: 10px;
}

/* animation cta */
.grb_event-pc__blob-btn {
    z-index: 1;
    position: relative;
    text-align: center;
    transition: color 0.5s;
    cursor: pointer;
    overflow: hidden;
}

    .grb_event-pc__blob-btn svg {
        position: absolute;
    }

    .grb_event-pc__blob-btn:before {
        content: "";
        z-index: 1;
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
    }

    .grb_event-pc__blob-btn:after {
        content: "";
        z-index: -2;
        position: absolute;
        left: 3px;
        top: 3px;
        width: 100%;
        height: 100%;
        transition: all 0.3s 0.2s;
    }

    .grb_event-pc__blob-btn:hover {
        color: #fff;
    }

        .grb_event-pc__blob-btn:hover:after {
            transition: all 0.3s;
            left: 0;
            top: 0;
            border-radius: 30px;
        }

.grb_event-pc__blob-btn__inner {
    z-index: -1;
    overflow: hidden;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.grb_event-pc__blob-btn__blobs {
    position: relative;
    display: block;
    height: 100%;
    filter: url('#goo');
}

.grb_event-pc__blob-btn__blob {
    position: absolute;
    top: 2px;
    width: 25%;
    height: 100%;
    background: #DE2E22;
    border-radius: 100%;
    transform: translate3d(0, 150%, 0) scale(1.7);
    transition: transform 0.45s;
}

    .grb_event-pc__blob-btn__blob:nth-child(1) {
        left: 0%;
        transition-delay: 0s;
    }

    .grb_event-pc__blob-btn__blob:nth-child(2) {
        left: 30%;
        transition-delay: 0.08s;
    }

    .grb_event-pc__blob-btn__blob:nth-child(3) {
        left: 60%;
        transition-delay: 0.16s;
    }

    .grb_event-pc__blob-btn__blob:nth-child(4) {
        left: 90%;
        transition-delay: 0.24s;
    }

.grb_event-pc__blob-btn:hover .grb_event-pc__blob-btn__blob {
    transform: translateZ(0) scale(1.7);
}

@media screen and (max-width: 1140px) {
    .grb_event-pc__blob-btn {
        order: 1;
        margin: 0 auto;
    }
}

@media screen and (max-width: 1024px) {
    .grb_event-pc__list {
        row-gap: 10px;
    }

    .grb_event-pc__item {
        max-width: 370px;
        height: 300px;
    }

    .grb_event-pc__left {
        padding: 10px;
    }

    .grb_event-pc__image {
        width: 162px;
        height: 162px;
    }

    .grb_event-pc__content {
        padding: 15px;
    }

    .grb_event-pc__type {
        font-size: 13px;
    }

    .grb_event-pc__name {
        font-size: 16px;
    }

    .grb_event-pc__feature {
        row-gap: 5px;
        font-size: 14px;
        max-height: 110px;
    }

    .grb_event-pc__cta {
        font-size: 16px;
    }

    .grb_event-pc__price-container {
        column-gap: 5px;
    }
}

@keyframes movedArrow {
    0% {
        opacity: 1;
        transform: translateX(0px);
    }

    25% {
        opacity: 0;
        transform: translateX(10px);
    }

    26% {
        opacity: 0;
        transform: translateX(-10px);
    }

    55% {
        opacity: 1;
        transform: translateX(0px);
    }
}