.m-toast {
    display: inline-table;
}

.m-toast.fixed {
    position: fixed;
}
.m-toast.z-9999 {
    z-index: 9998;
}
.m-toast.right-0 {
    right: 0px;
}
.m-toast.bottom-0 {
    top: 75px;
}

.m-toast .duration-200 {
    transition-duration: 200ms;
}

.m-toast .m-4 {
    margin: 1rem;
}

.m-toast .flex {
    display: flex;
}

.m-toast .justify-between {
    justify-content: space-between;
}

.m-toast .rounded-lg {
    border-radius: 0.5rem;
}

.m-toast .p-4 {
    padding: 1rem !important;
}

.m-toast .transition {
    transition-property: color, background-color, border-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-text-decoration-color, -webkit-backdrop-filter;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-text-decoration-color, -webkit-backdrop-filter;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.m-toast .sm-w-96 {
    min-width: 22rem;
    max-width: 28rem;
}

.m-toast .justify-center {
    justify-content: center;
}

.m-toast .items-center {
    align-items: center;
}

.m-toast .w-full {
    width: 100%;
}

.m-toast .mr-2 {
    margin-right: 0.5rem;
}

.m-toast .ml-4 {
    margin-left: 1rem;
}
.m-toast .font-semibold {
    font-weight: 600;
}

.m-toast .text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
}

.m-toast h1, .m-toast p {
    margin: 0 !important;
}

#alertBox .title {
    display:flex;
    padding:.55rem 1rem .425rem !important;
}

/*info*/
.bg-sky-100 {
    background-color: #def1f7;
    color: #1c657d;
}

#alertBox .bg-sky-100 .title {
    border-bottom: 1.5px solid #1c657d;
}

/*success*/
.bg-emerald-100 {
    background-color: #d6f0e0;
    color: #0d6831;
}

#alertBox .bg-emerald-100 .title {
    border-bottom: 1.5px solid #7ab792;
}

/*error*/
.bg-rose-100 {
    background-color: #f9e1e5;
    color: #af233a;
}

#alertBox .bg-rose-100 .title {
    border-bottom: 1.5px solid #af233a;
}

/*warning*/
.bg-orange-100 {
    background-color: #fbf0da;
    color: #73510d;
}

#alertBox .bg-orange-100 .title {
    border-bottom: 1.5px solid #73510d;
}


