.span-latest {
    color: #fff;
    border: 1px solid red;
    border-radius: 3px;
    padding: 0 4px;
    background-color: red;
    font-size: 11px;
    font-weight: bold;
    animation: blink 1s linear infinite;
}

@keyframes blink {
    0% {
    opacity: 0;
    }
    50% {
    opacity: .5;
    }
    100% {
    opacity: 1;
    }
}

.table {
    margin-bottom: 0.5rem !important;
    font-family: Arial, Helvetica, sans-serif;
}

.table-bordered td {
    border-color: #333;
}

.table td {
    padding: 0;
    font-size: 16px;
}

.table td.title {
    color: #fff;
    background-color: #000;
    font-weight: 700;
    font-size: 16px;
    vertical-align: middle;
    padding: 0.25rem 0;
}

.table td.text-bold {
    font-weight: 700;
}

.bg-light-grey {
    background-color: #ededed;
}

.spinner-grow-xs
{
    width: 0.75rem !important;
    height: 0.75rem !important;
}

.form-group label {
    font-weight: 500;
}

.summernote-description img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: auto;
    height: auto;
    max-width: 100%;
}

.fs-18px {
    font-size: 18px !important;
}

.fs-24px {
    font-size: 24px !important;
}

.fs-28px {
    font-size: 28px !important;
}

@media (min-width: 576px) {
    .position-sm-static {
      position: static !important;
    }
    .position-sm-relative {
      position: relative !important;
    }
    .position-sm-absolute {
      position: absolute !important;
    }
    .position-sm-fixed {
      position: fixed !important;
    }
    .position-sm-sticky {
      position: sticky !important;
    }
}
  
@media (min-width: 768px) {
    .position-md-static {
        position: static !important;
    }
    .position-md-relative {
        position: relative !important;
    }
    .position-md-absolute {
        position: absolute !important;
    }
    .position-md-fixed {
        position: fixed !important;
    }
    .position-md-sticky {
        position: sticky !important;
    }
}

@media (min-width: 992px) {
    .position-lg-static {
        position: static !important;
    }
    .position-lg-relative {
        position: relative !important;
    }
    .position-lg-absolute {
        position: absolute !important;
    }
    .position-lg-fixed {
        position: fixed !important;
    }
    .position-lg-sticky {
        position: sticky !important;
    }
}

@media (min-width: 1200px) {
    .position-xl-static {
        position: static !important;
    }
    .position-xl-relative {
        position: relative !important;
    }
    .position-xl-absolute {
        position: absolute !important;
    }
    .position-xl-fixed {
        position: fixed !important;
    }
    .position-xl-sticky {
        position: sticky !important;
    }
}

/*** START checkbox design 16 ***/
.checkbox-wrapper-16 *,
.checkbox-wrapper-16 *:after,
.checkbox-wrapper-16 *:before {
    box-sizing: border-box;
}

.checkbox-wrapper-16 .checkbox-input {
    clip: rect(0 0 0 0);
    -webkit-clip-path: inset(100%);
            clip-path: inset(100%);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}
.checkbox-wrapper-16 .checkbox-input:checked + .checkbox-tile {
    border-color: var(--b-primary-color);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    color: var(--b-primary-color);
}
.checkbox-wrapper-16 .checkbox-input:checked + .checkbox-tile:before {
    transform: scale(1);
    opacity: 1;
    background-color: var(--b-primary-color);
    border-color: var(--b-primary-color);
}
.checkbox-wrapper-16 .checkbox-input:checked + .checkbox-tile .checkbox-icon,
.checkbox-wrapper-16 .checkbox-input:checked + .checkbox-tile .checkbox-label {
    color: var(--b-primary-color);
}
.checkbox-wrapper-16 .checkbox-input:focus + .checkbox-tile {
    border-color: var(--b-primary-color);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1), 0 0 0 4px #b5c9fc;
}
.checkbox-wrapper-16 .checkbox-input:focus + .checkbox-tile:before {
    transform: scale(1);
    opacity: 1;
}

.checkbox-wrapper-16 .checkbox-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 7rem;
    min-height: 7rem;
    border-radius: 0.5rem;
    border: 2px solid #b5bfd9;
    background-color: #fff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    transition: 0.15s ease;
    cursor: pointer;
    position: relative;
}
.checkbox-wrapper-16 .checkbox-tile:before {
    content: "";
    position: absolute;
    display: block;
    width: 1.25rem;
    height: 1.25rem;
    border: 2px solid #b5bfd9;
    background-color: #fff;
    border-radius: 50%;
    top: 0.25rem;
    left: 0.25rem;
    opacity: 0;
    transform: scale(0);
    transition: 0.25s ease;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='192' height='192' fill='%23FFFFFF' viewBox='0 0 256 256'%3E%3Crect width='256' height='256' fill='none'%3E%3C/rect%3E%3Cpolyline points='216 72.005 104 184 48 128.005' fill='none' stroke='%23FFFFFF' stroke-linecap='round' stroke-linejoin='round' stroke-width='32'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: 12px;
    background-repeat: no-repeat;
    background-position: 50% 50%;
}
.checkbox-wrapper-16 .checkbox-tile:hover {
    border-color: var(--b-primary-color);
}
.checkbox-wrapper-16 .checkbox-tile:hover:before {
    transform: scale(1);
    opacity: 1;
}

.checkbox-wrapper-16 .checkbox-icon {
    transition: 0.375s ease;
    color: #494949;
}
.checkbox-wrapper-16 .checkbox-icon svg {
    width: 3rem;
    height: 3rem;
}

.checkbox-wrapper-16 .checkbox-label {
    color: #707070;
    transition: 0.375s ease;
    text-align: center;
}

.checkbox-wrapper-16 .checkbox-input + .checkbox-tile .checkbox-icon.icon-check {
    display: none;
}
.checkbox-wrapper-16 .checkbox-input + .checkbox-tile .checkbox-icon.icon-uncheck {
    display: block;
}
.checkbox-wrapper-16 .checkbox-input:checked + .checkbox-tile .checkbox-icon.icon-check {
    display: block;
}
.checkbox-wrapper-16 .checkbox-input:checked + .checkbox-tile .checkbox-icon.icon-uncheck {
    display: none;
}
/*** END checkbox design 16 ***/