html body.bg-full-screen-image {
    background: url('../theme/images/vuexy-login-bg.jpg') no-repeat center center;
}

/* datatable */
.mt-table-col-action {
    width: 8rem;
}
.table-col-action {
    width: 8rem;
}

/* Forms */
.label-required::after {
    content: "*";
    color: var(--danger);
    margin-left: .25rem;
}
.mt-input-file {
    padding: 0.5rem;
    border: 1px solid #D9D9D9;
    border-radius: 5px;
}
.mt-input-file.is-invalid {
    border-color: var(--red);
}

.text-dark-danger {
    color: hsl(360, 80%, 30%);
}
.text-dark-success {
    color: hsl(147, 80%, 30%);
}

/* Timeline */
.mt-timeline {
    font-size: 0.875rem;
    color: var(--primary);
}
.mt-timeline-item {
    display: flex;
    position: relative;
    margin-bottom: 1.5rem;
}
.mt-timeline-item:not(:first-child)::before {
    content: "";
    width: 3px;
    height: 150%;
    position: absolute;
    top: -100%;
    left: 14rem;
    transform: translate(-50%, 0);
    background-color: var(--primary);
}
.mt-timeline-date,
.mt-timeline-msg {
    position: relative;
    padding: 0.75rem 1rem;
    background: #DEDBFB ;
    border-radius: 5px;
}
.mt-timeline-date {
    margin-right: 4rem;
    width: 12rem;
    text-align: center;
}
.mt-timeline-date::after {
    content: "";
    position: absolute;
    right: -2rem;
    top: 50%;
    background: hsl(0, 0%, 100%);
    border: 3px solid var(--primary);
    height: 1rem;
    width: 1rem;
    border-radius: 50%;
    transform: translate(50%, -50%);
    z-index: 10;
}
.mt-timeline-item:first-child .mt-timeline-date::after {
    background: var(--primary);
    box-shadow: 1px 1px 10px var(--primary);
}
.mt-timeline-date::before,
.mt-timeline-msg::before {
    content: "";
    display: block;
    background: #DEDBFB ;
    width: 1rem;
    height: 1rem;
    position: absolute;
    top: 50%;
    transform-origin: center;
}
.mt-timeline-date::before {
    right: 0;
    transform: translate(50%,-50%) rotate(-45deg);
    
}
.mt-timeline-msg::before {
    left: 0;
    transform: translate(-50%,-50%) rotate(-45deg);
    
}
