.page-thankyou {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-bottom: 40px;
}

/*Section Intro Page*/
.intro-section {
    padding: 12px 0;
    min-height: 210px;
    position: relative;
    
}
.page-thxSeccess .intro-section {
    background: url(/Content/travel/images/bg/light-rays.png) no-repeat top center/480px,linear-gradient(90deg, #C2EDEE 0%, #E7F7C9 100%);
}
.page-thxExpire .intro-section {
    background: linear-gradient(90deg, #C2EDEE 0%, #E7F7C9 100%);
}
.intro-content-wrapper {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 16px;
}
.intro-goody {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    flex-wrap: wrap;
    position: relative;
}
.intro-card {
    max-width: 312px;
    width: 100%;
    margin: 0 auto;
    padding: 16px;
    border-radius: 12px;
    border: 1px solid var(--background-bg-teal-highlight);
    background: #FFF;
    box-shadow: 0px 1px 8px 0px rgba(0, 195, 119, 0.25);
}
.intro-lottie-confetti {
    position: absolute;
    top: -56px;
    left: 50%;
    transform: translateX(-50%);
}
/*Section ProductShelf*/
.productShelf-section {
    padding-top: 8px;
}
.productShelf-container {
    max-width: 384px;
    width: 100%;
    margin: 0 auto;
}

.product-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.box-titleProductShelf {
    display: flex;
    align-items: center;
    gap: 8px;
}

.box-productShelf {
    display: flex;
    flex-wrap: wrap;
    row-gap: 24px;
}

.item-productShelf {
    width: 33.33%;
    position: relative;
}

.wrap-content-product {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.wrap-img-product {
    width: 80px;
    height: 80px;
    max-width: 100%;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 1px #EBEBEB;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.15s ease-in-out;
}

.img-product {
    width: 50px;
}

.name-product {
    font-size: 14px;
}

.link-productShelf {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

    .link-productShelf:hover + .wrap-content-product > .wrap-img-product {
        background-color: #e1f4ee;
    }

@media (min-width: 576px) {
    .product-wrapper {
        padding-top: 8px;
    }

    .img-product {
        width: 60px;
    }
}
