.product-detail-layout-wrapper {
    grid-template-rows: auto auto auto
}

.flashSale-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    border: 1px solid var(--price);
    border-radius: 24px;
    overflow: hidden;
}

.flashSale-countdown {
    padding: 7px 16px;
}

.flashsale-item {
    height: 36px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    border-radius: 24px 0 0 24px;
}

.flashsale-item > * {
    margin: 0 4px
}

.count-product .count-produc-number {
    opacity: 0;
    transition: opacity 300ms ease-in-out;
}
.count-time {
    height: 22px;
    width: 110px;
    border-radius: 4px;
    background: linear-gradient(45deg, rgba(209,209,209,0.35), rgba(11,11,11,0.1), rgba(209,209,209,0.1), rgba(209,209,209,0.15));
	background-size: 400% 400%;
    animation: gradient 3000ms ease infinite;
    user-select: none;
    pointer-events: none;
}

.js-count-down.count-time {
    color: rgba(255, 255, 255, 0);
    transition: color 300ms ease-in-out;
}

.count-produc-bar {
    width: 90px;
    height: 8px;
    background: #ffd1c2;
    border-radius: 16px;
    margin-left: 6px;
    position: relative;
}

.count-produc-bar span {
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 16px;
    height: 100%;
    width: 20%;
    display: block;
    background: linear-gradient(90deg,#ff8763,#ff330c);
}

@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

.best-sale-icon.flashsale-color {
    transform: skewX(-10deg) translateX(-16px);
    border-radius: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 6px 16px 6px 30px;
    font-size: 16px;
    height: 100%;
}

.best-sale-icon.flashsale-color img {
    pointer-events: none;
    transform: skewX(10deg);
}

.flashSale-time {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 6px 0;
    margin-left: 0;
    transform: translateX(-6px);
    font-size: 13px;
}

.flashSale-time > strong {
    color: var(--price);
    margin-left: 4px;
}
