﻿.warning-box {
    margin-top: 24px;
    margin-bottom: 24px;
    margin-left: 10px;
    margin-right: 10px;
    padding: 16px 32px;
    border: 1px solid #ccc !important;
    color: #000 !important;
    background-color: #ffffcc !important;
}

.tx-margin-20 {
    margin: 20px!important;
}

.tx-color-warning {
    color: #ffc107 !important;
}
.tx-text-danger {
    color: #dc3545 !important;
}
.tx-text-dark {
    color: #343a40 !important;
}
.tx-text-muted {
    color: #6c757d !important;
}
.tx-text-primary {
    color: #007bff !important;
}
.tx-font-weight-bold {
    font-weight: 700 !important;
}
.tx-font-weight-normal {
    font-weight: 400 !important;
}

.tx-blink_this {
    animation: blinker 1s linear infinite;
}

@keyframes blinker {
    50% {
        opacity: 0;
    }
}