﻿.alert-comment{
    color: #000 !important;
    background: linear-gradient(#ccebed,#9edbeb) !important;
    border-radius: 10px !important;
    padding: 7px 10px !important;
    margin-bottom: 10px;
    display: grid;
    grid-template-columns: 15% 85%;
}

#countdown{
    position: relative;
    height: 30px;
    width: 30px;
    text-align: center;
}

#countdown-number{
    color: #1ebcc5;
    display: inline-block;
    line-height: 30px;
}

#countdown svg{
    position: absolute;
    top: 0;
    right: 0;
    width: 30px;
    height: 30px;
    transform: rotateY(-180deg) rotateZ(-90deg);
}


#countdown svg circle{
    stroke-dasharray: 80px;
    stroke-dashoffset: 0px;
    stroke-linecap: round;
    stroke-width: 2px;
    stroke: #1ebcc5;
    fill: none;
}

#countdown.animate svg circle {
    animation: countdown 10s ease-in infinite forwards;
}

@keyframes countdown {
    from {
        stroke-dashoffset: 0px;
    }
    to {
        stroke-dashoffset: 80px;
    }
}