.ddwcpo-preorders-list-search {
    text-align: right;
}
.ddwcpo-preorders-list-wrapper {
    overflow-x: auto;
}
.ddwcpo-pagination {
    margin-top:10px;
}
.ddwcpo-preorder-again .button::after {
	-webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    font-weight: 400;
    line-height: 1;
    vertical-align: -.125em;
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    line-height: inherit;
    vertical-align: baseline;
    content: "\f218";
    margin-left: .5407911001em;
}
.ddwcpo-price {
	color: #ff7d08;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 5px;
}
.ddwcpo-preorder-details {
    width: 100%;
}
.ddwcpo-availability-date b {
    background-color: #FFD12D;
    border-radius: 3px 0 0 3px;
    color: #222;
    font-weight: 600;
    font-size: 15px;
    padding: 5px 10px;
}
.ddwcpo-availability-date span {
    background-color: #2293E8;
    border-radius: 0 3px 3px 0;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    margin-left: -3px;
    padding: 5px 10px;
}

/* Counter Styling */
.flip-clock *, .flip-clock *:before, .flip-clock *:after {
    box-sizing: border-box;
}
.flip-clock__piece {
    display: inline-block;
    margin: 0 8px;
    text-align: center;
}
.flip-clock__slot {
    font-size: 14px;
}
.card {
    display: block;
    position: relative; 
    padding-bottom: 12px;
    font-size: 25px;
    line-height: 30px;
}
.card__top,
.card__bottom,
.card__back::before,
.card__back::after {
    display: block;
    height: 28px;
    color: #ccc;
    background: #1f1e1e;
    padding: 7px;
    border-radius: 8.5px 8.5px 0 0;
    backface-visibility: hidden;
    transform-style: preserve-3d;
    width: 58px;
    transform: translateZ(0);
}
.card__bottom { 
    color: #fff;
    position: absolute;
    top: 50%;
    left: 0;
    border-top: solid 1px #000;
    background: #383636;
    border-radius: 0 0 8.5px 8.5px;
    pointer-events: none;
    overflow: hidden;
}
.card__bottom::after {
    display: block;
    margin-top: -20px;
}
.card__back::before,
.card__bottom::after {
    content: attr(data-value);
}
.card__back {
    position: absolute;
    top: 0;
    height: 100%;
    left: 0%;
    pointer-events: none;
}
.card__back::before {
    position: relative;
    z-index: -1;
    overflow: hidden;
}
.flip .card__back::before {
    animation: flipTop 0.3s cubic-bezier(.37,.01,.94,.35);
    animation-fill-mode: both;
    transform-origin: center bottom;
}
.flip .card__back .card__bottom {
    transform-origin: center top;
    animation-fill-mode: both;
    animation: flipBottom 0.6s cubic-bezier(.15,.45,.28,1); // 0.3s; 
}
@keyframes flipTop {
    0% {
        transform: rotateX(0deg);
        z-index: 2;
    }
    0%, 99% {
        opacity: 0.99;
    }
    100% {
        transform: rotateX(-90deg);
        opacity: 0;
    }
}
@keyframes flipBottom {
    0%, 50% {
        z-index: -1;
        transform: rotateX(90deg);
        opacity: 0;
    }
    51% {
        opacity: 0.99;
    }
    100% {
        opacity: 0.99;
        transform: rotateX(0deg);
        z-index: 5;
    }
}
