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

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

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

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

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

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

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

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

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

.letter-space-1 {
    letter-spacing: 1px;
}

.notification-icon {
    position: relative;
    margin-right: 20px;
}

.notification-icon .notification-count {
    position: absolute;
    top: 0;
    right: 0;
    padding: 0px 4px;
    border-radius: 50%;
    min-width: 17px;
    font-size: 11px;
}

.notification-icon em {
    margin-left: 0;
}

.cursor-pointer {
    cursor: pointer;
}

label.required:after {
    content: ' *';
    color:red;
}

.text-truncate-parent {
    overflow: hidden;
    white-space: wrap;
    text-overflow: ellipsis;
}

.text-truncate {
    overflow: hidden;
    display: block;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.whitespace-nowrap {
    white-space: nowrap !important;
}

.datatable-wrap {
    min-width: 100%;
    width: max-content;
}

.datatable-wrap::-webkit-scrollbar,
.table-responsive::-webkit-scrollbar {
    height: 5px;
}

.datatable-wrap::-webkit-scrollbar-track,
.table-responsive::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.datatable-wrap::-webkit-scrollbar-thumb,
.table-responsive::-webkit-scrollbar-thumb {
    background: #ccc;
}

.datatable-wrap::-webkit-scrollbar-thumb:hover,
.table-responsive::-webkit-scrollbar-thumb:hover {
    background: #999;
}

.data-item {
    padding: .5rem 1.25rem;
}

.table-scrolled {
    display: block;
    overflow-x:scroll;
    white-space:nowrap;
}

.table-preview {
    min-width: 150px;
}

.middle-text {
    vertical-align: middle;
}

.list-menu a {
    vertical-align: middle;
    display: flex;
    width: 100%;
    position: relative;
    align-items: center;
    transition: color 0.3s, background-color 0.3s;
}

.card--link {
    color: inherit;
}

.card--link .card-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card--link .card-image:before {
    content: '';
    position: absolute;
    display: block;
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    border-radius: var(--bs-card-border-radius);
    opacity: 0;
    top: 0;
    left: 0;
    transition: all .2s;
}

.card--link:hover .card-image:before {
    opacity: 1;
}

.card--link .card-image .btn {
    position: absolute;
    opacity: 0;
    transition: all .2s;
}

.card--link:hover .card-image .btn {
    opacity: 1;
}

.card--link .card-image img {
    height: 72px;
    object-fit: cover;
    border-radius: var(--bs-card-border-radius);
}

.card--link .activities {
    position: absolute;
    display: flex;
    flex-direction: column;
    opacity: 0;
    width: 100%;
    height: 0;
    background: var(--bs-gray-100);
    border-radius: var(--bs-card-border-radius);
    padding: 0 var(--bs-card-spacer-x);
    bottom: 0;
    transition: all .3s;
}

.card--link .activities * {
    opacity: 0;
    transition: all .1s;
}

.card--link:hover .activities {
    opacity: 1;
    height: 65px;
    padding: var(--bs-card-spacer-y) var(--bs-card-spacer-x);
}

.card--link:hover .activities * {
    opacity: 1;
    transition: all .5s;
}

.loader:after {
    content: '';
    display: inline-block;
    width: 30px;
    height: 30px;
    border: 5px solid #000;
    border-radius: 7.5px;
    animation: rotate 1s infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.learning-map {
    position: relative;
    display: flex;
    justify-content: space-between;
    white-space: nowrap;
    overflow-x: auto;
    padding: 50px 0;
}

.learning-map .learning-map-group {
    text-align: center;
    margin: 0 auto;
    z-index: 1;
}

.learning-map .learning-map-group:before {
    content: '';
    display: block;
    position: relative;
    width: 100%;
    border: 2px dashed #333;
    top: 25%;
    z-index: -1;
}

.learning-map.w-value .learning-map-group:before {
    top: 55%;
}

.learning-map .step-item {
    position: relative;
    width: 150px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    white-space: normal;
    padding: 0 15px;
}

.learning-map .step-item .icon {
    position: absolute;
    display: none;
    font-size: 50px;
    color: blue;
    top: 0;
}

.learning-map .step-item.active:last-child .icon {
    display: block;
}

.learning-map .step-item input[type=checkbox] {
    visibility: hidden;
    position: absolute;
    z-index: -1;
}

.learning-map .step-item .step-point {
    width: 20px;
    height: 20px;
    background: #333;
    border-radius: 50%;
}

.learning-map.w-value .step-item .step-point {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.learning-map .step-item.active .step-point {
    background: blue;
}

.learning-map .step-item span {
    font-size: 14px;
    font-weight: 700;
    color: #000;
}

.learning-map.w-value .step-item span {
    position: absolute;
    line-height: 1.2;
    top: 100%;
}