.ct-list {
    width: 100%;
}

.ct-item {
    width: 100%;
    color: black;
    font-size: 1rem;
    padding: .5rem 1rem .5rem 0.5rem;
    background: white;
    margin-top: .5rem;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.16);
    border-radius: .6rem;
    position: relative;
    min-height: 3.25rem;
}

.ct-tips {
    position: absolute;
    bottom: 0;
    right: 0;
    background: #B51902;
    border-top-left-radius: .6rem;
    border-bottom-right-radius: .6rem;
    font-size: .8rem;
    padding: .2rem .5rem;
}
.ct-gst{
    background-color: #452F04!important;
}
.ct-pay{
    background-color: #0D077A!important;
    color: black!important;
}
.ct-price {
    padding: .1rem .5rem;
    border-radius: .3rem;
    background: linear-gradient(90deg,
            #333, #ff0, #ff0, #333);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: gradientFlash 4s linear infinite;
}
@keyframes gradientFlash {
  0% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.ct-ani {
    color: white;
    animation: blink 3s linear infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}
.item-clock{
    width: 3rem;
    height: 3rem;
    position: absolute;
    top: .5rem;
    left: 14rem;
}