body {
    font-size: 0.92rem;
    line-height: 1.3;
}

:root {
    --mdc-theme-primary: #00c790;
    --mdc-theme-on-primary: #00c790;
    --mdc-theme-secondary: #00c790;
}

.mdc-card {
    border-radius: 18px;
    box-shadow: none;
}

.mdc-drawer .mdc-list-item--activated, .mdc-drawer .mdc-list-item--activated .mdc-list-item__graphic {
    color: var(--mdc-theme-primary, #6200ee);
}

.drawer-frame-root {
    display: -ms-flexbox;
    display: flex;
    height: 100vh;
}

.drawer-main-content {
    overflow: auto;
    height: calc(100% - 48px);
}

.mdc-drawer {
    z-index: 1040;
}

.mdc-drawer-scrim {
    z-index: 1039;
}

.mdc-icon-button {
    padding: 0;
}

.mdc-icon-button:focus {
    outline: none;
}

.mdc-icon-button:active {
    outline: none;
}

button:focus {
    outline: none;
}

button:active {
    outline: none;
}

.collapse-child {
    margin-left: 10px;
    border-left: 2px solid rgba(0, 0, 0, 0.12);
}

.app-title {
    font-weight: 600;
    font-size: 24px;
    color: #ffffffbb;
}

.app-title span {
  color: #ffffff;
}

.loader {
    border: 3px solid #ffffff;
    border-radius: 50%;
    border-top: 3px solid #00c790;
    width: 40px;
    height: 40px;
    -webkit-animation: spinload 0.8s linear infinite;
    animation: spinload 0.8s linear infinite;
    display: inherit;
    margin: 50px auto;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

/* Safari */
@-webkit-keyframes spinload {
    0% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
    }
}

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

@-webkit-keyframes fade_transition {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@-moz-keyframes fade_transition {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@-o-keyframes fade_transition {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes fade_transition {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fade-transition {
    -webkit-animation: fade_transition 0.5s;
    -moz-animation: fade_transition 0.5s;
    -o-animation: fade_transition 0.5s;
    animation: fade_transition 0.5s;
}

/*LIVE PAGE*/

.live-page .field-lp {
    height: 30px;
    display: flex;
    padding: 0 15px;
    width: 250px;
}

.live-page .icon-search-lp {
    line-height: 29px;
    padding-left: 7px;
}

.live-page .btn-navigation-lp {
    width: 34px;
    height: 34px;
    font-size: 16px;
}

.live-page .footer-lp {
    text-align: center;
}

.live-page .footer-lp h6 {
    font-size: 0.8rem;
    color: #717171;
}

.live-page .table tbody tr {
    cursor: default;
}

.live-page .table tbody tr td {
    max-width: 15ch;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.live-page .table tbody tr:hover {
    background: rgba(0, 0, 0, 0.05);
    transition: 0.15s;
}

.live-page .select-length-lp {
    padding: 2.5px;
    outline: none;
    border-radius: 4px;
    margin-left: 10px;
}

.action-buttons-lp button {
    height: 30px;
    margin-right: 8px !important;
}

.menu-home {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.menu-home .card-menu {
    padding: 16px;
    font-size: 1rem;
    background: #ffffff;
    border-radius: 18px;
    color: #00c790;
    text-align: center;
    display: grid;
    height: 100px;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
}

.menu-home .card-menu:hover {
    background: #ffffffbd;
    color: #00a879;
    transition: 1s all;
    border: 1px solid whitesmoke;
}

.menu-home .card-menu i {
    font-size: 24px;
}
