/* START: Table Styling */
.lc_table {
    border: 1px solid #ccc;
    border-collapse: collapse;
    margin: 0;
    padding: 0;
    width: 100%;
    table-layout: auto;
}

.lc_table caption {
    font-size: 1.5em;
    margin: .5em 0 .75em;
}

.lc_table tr {
    background-color: #f8f8f8;
    border: 1px solid #ddd;
    padding: .35em;
}

.lc_table th,
.lc_table td {
    padding: .625em;
    text-align: left;
    max-width: 300px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.lc_table th {
    font-size: .85em;
    letter-spacing: .1em;
    text-transform: uppercase;
}

@media screen and (max-width: 600px) {
    .lc_table {
        border: 0;
    }

    .lc_table caption {
        font-size: 1.3em;
    }

    .lc_table th,
    .lc_table td {
        max-width: 100%;
        overflow: visible;
        text-overflow:unset;
        white-space: normal;
    }

    .lc_table thead {
        border: none;
        clip: rect(0 0 0 0);
        height: 1px;
        margin: -1px;
        overflow: hidden;
        padding: 0;
        position: absolute;
        width: 1px;
    }

    .lc_table tr {
        border-bottom: 3px solid #ddd;
        display: block;
        margin-bottom: .625em;
    }

    .lc_table td {
        border-bottom: 1px solid #ddd;
        display: block;
        font-size: .8em;
        text-align: right;
    }

    .lc_table td::before {
        /*
      * aria-label has no advantage, it won't be read inside a table
      content: attr(aria-label);
      */
        content: attr(data-label);
        float: left;
        font-weight: bold;
        text-transform: uppercase;
    }

    .lc_table td:last-child {
        border-bottom: 0;
    }
}

/* END: Table Styling */

.lc-admin-header {
    margin: 0px;
}

.inline-row {
    width: 100%;
    display: flex;
    margin: 10px 0px;
}

.inline-row.space-between {
    justify-content: space-between;
}

.btn-link {
    display: inline-block;
    text-align: center;
    width: 2rem;
    margin: 0px 2px;
}

.btn-sml {
    width: 2rem;
    text-align: center;
}

.ipt-sml {
    width: 3rem;
    text-align: center;
}

.ipt-med {
    width: 4rem;
}

.row {
    display: flex;
    flex-direction: row;
}

/* Style the tab */
.tab {
    overflow: hidden;
    /* border: 1px solid #ccc; */
}

/* Style the buttons that are used to open the tab content */
.tab button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
}

/* Change background color of buttons on hover */
.tab button:hover {
    background-color: #ddd;
}

/* Create an active/current tablink class */
.tab button.active {
    background-color: #ccc;
}



/* Style the tab content */
.tabcontent {
    display: none;
    padding: 6px 12px;
}

.tabcontent.active {
    display: block;
}


.notification-toast {
    position: absolute;
    top: 25px;
    right: 30px;
    border-radius: 12px;
    background: #fff;
    padding: 20px 35px 20px 25px;
    box-shadow: 0 6px 20px -5px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transform: translateX(calc(100% + 30px));
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.35);
}

.notification-toast.disable {
    display: none;
}

.notification-toast.active {
    display: flex;
    transform: translateX(0%);
}

.notification-toast .notification-toast-content {
    display: flex;
    align-items: center;
}

.notification-toast-content .notification-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 35px;
    min-width: 35px;
    background-color: #4070f4;
    color: #fff;
    font-size: 20px;
    border-radius: 50%;
}

.notification-toast-content .message {
    display: flex;
    flex-direction: column;
    margin: 0 20px;
}

.message .text {
    font-size: 16px;
    font-weight: 400;
    color: #666666;
}

.message .text.notification-tag {
    font-weight: 600;
    color: #333;
}

.notification-toast .close {
    position: absolute;
    top: 10px;
    right: 15px;
    padding: 5px;
    cursor: pointer;
    opacity: 0.7;
}

.notification-toast .close:hover {
    opacity: 1;
}

.notification-toast .notification-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 100%;
    animation: notification-progress 5s linear forwards;
}

.notification-toast .notification-progress:before {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    height: 100%;
    width: 100%;
    background-color: #4070f4;
}

.notification-toast .notification-progress.lc-warning:before,
.notification-icon.fa-warning {
    background-color: #ffcc00;
}

.notification-toast .notification-progress.lc-success:before,
.notification-icon.fa-check {
    background-color: #339900;
}

.notification-toast .notification-progress.lc-error:before,
.notification-icon.fa-exclamation-triangle {
    background-color: #cc3300;
}