 .countdown-number{
     background-color: blue !important;
 }
 
.countdown-column{
    width: 60px !important;
}


.info-callout{
    position:relative;
    min-height: 48px;
    background-color: #ADE5FF;
    padding: 12px 12px 12px 80px;
    border: 1px solid #1287EB;
    border-radius: 4px;
}

.info-callout::before{
    position: absolute;
    top:0px;
    left:12px;
    font-family: "FontAwesome";
    font-size: 48px;
    color: #0070BD;
    content: "\f05a";    
}

.caution-callout{
    position:relative;
    min-height: 48px;
    background-color: #FFEBBA;
    padding: 12px 12px 12px 80px;
    border: 1px solid #996B00;
    border-radius: 4px;
}

.caution-callout::before{
    position: absolute;
    top:0px;
    left:12px;
    font-family: "FontAwesome";
    font-size: 48px;
    color: #996B00;
    content: "\f071";    
}

.warning-callout{
    position:relative;
    min-height: 48px;
    background-color: #FFCFCF;
    padding: 12px 12px 12px 80px;
    border: 1px solid #BA0505;
    border-radius: 4px;   
}

.warning-callout::before{
    position: absolute;
    top:0px;
    left:12px;
    font-family: "FontAwesome";
    font-size: 48px;
    color: #BA0505;
    content: "\f071";    
}

#tttbutton {
    display: inline-block;
    background-color: #368024;
    /* background-color: transparent; */
    /* color: darkgreen; */
    width: 50px;
    height: 50px;
    text-align: center;
    border-radius: 10%;
    position: fixed;
    bottom: 30px;
    right: 30px;
    transition: background-color .9s, opacity .9s, visibility .9s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}
#tttbutton::after {
    content: "\f062";
    font-family: FontAwesome;
    font-weight: normal;
    font-style: normal;
    font-size: 2.25em;
    line-height: 50px;
    transition: all 0.9s ease;
    color: #fff;
}
#tttbutton:hover {
    cursor: pointer;
    background-color: rgb(16, 61, 208);
    /* color: darkcyan; */
}
#tttbutton:active {
    background-color: rgb(5, 207, 99);
    /* color: lightgreen; */
}
#tttbutton.show {
    opacity: 1;
    visibility: visible;
}
