/* Maintainer: Claudio Almeida */

html {
    height: 100%;
}

body {
    background-color: #384048;
    background-attachment: fixed;
    background-image: url('../images/background.png');
    background-position: bottom right;
    background-repeat: no-repeat;
    background-size: contain;
    font-size: .85rem;
    height: 100%;
    min-width: 320px;
    overflow-x: hidden;
}
body.use {
    background-image: none;
}
body.use .tabs {
    display: block;
}
body.use .main .footer {
    display: none;
}

a {
    transition: color .2s ease-in-out;
}

.icon, .fa, .fal, .far, .fas, .fad {
    text-align: center;
    width: 1.25em;
}

.loading {
    height: 2.3rem;
    margin: 0 auto;
    text-align: center;
}
.loading > div {
    -webkit-animation: loading-keyframes 1.2s infinite ease-in-out;
    animation: loading-keyframes 1.2s infinite ease-in-out;
    background-color: #1b538d;
    display: inline-block;
    height: 100%;
    margin: 0 2px;
    width: 5px;
}
.loading.small {
    height: 1.75rem;
}
.loading.small > div {
    width: 3px;
}
.loading > div:nth-child(2) {
    -webkit-animation-delay: -1.1s;
    animation-delay: -1.1s;
}
.loading > div:nth-child(3) {
    -webkit-animation-delay: -1.0s;
    animation-delay: -1.0s;
}
.loading > div:nth-child(4) {
    -webkit-animation-delay: -0.9s;
    animation-delay: -0.9s;
}
.loading > div:nth-child(5) {
    -webkit-animation-delay: -0.8s;
    animation-delay: -0.8s;
}
@-webkit-keyframes loading-keyframes {
    0%, 40%, 100% {
        -webkit-transform: scaleY(0.4)
    }
    20% {
        -webkit-transform: scaleY(1.0)
    }
}
@keyframes loading-keyframes {
    0%, 40%, 100% {
        -webkit-transform: scaleY(0.4);
        transform: scaleY(0.4);
    }  20% {
        -webkit-transform: scaleY(1.0);
        transform: scaleY(1.0);
    }
}

body > .box {
    height: auto;
    min-height: 100vh;
    position: relative;
}
body > .box .wrapper {
    margin: 0 auto;
    width: 450px;
    padding: 1rem;
    position: relative;
}
body > .box .top {
    background: linear-gradient(150deg, #1b538d 0,  #03aae1 100%);
    background-color: #0e3a69;
    border-radius: .5rem .5rem 0 0;
    color: #FFF;
    margin-bottom: 0;
    padding: .75rem;
    position: relative;
    text-align: center;
}
body > .box .top::before {
    border-color: #15497e transparent transparent transparent;
    border-style: solid;
    border-width: .5rem .5rem 0 .5rem;
    bottom: -.5rem;
    content: '';
    height: 0;
    left: 50%;
    margin-left: -.5rem;
    position: absolute;
    width: 0;
}
body > .box .top i {
    font-size: 1rem;
}
body > .box .top span {
    display: block;
    font-family: Arial;
    letter-spacing: 2px;
    margin-top: .25rem;
}
body > .box .content {
    background-color: #FFF;
    border-radius: 0 0 .5rem .5rem;
    padding: 1.25rem;
}

body > .navbar {
    background: linear-gradient(195deg, #1a2229 0, #2d353c 100%);
    background-color: #2d353c;
    border-bottom: 1px solid #12181d;
    min-height: 50px;
    min-width: 320px;
    padding: 0 .5rem;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1008;
}
body > .navbar > img {
    border-radius: .5rem;
    height: 35px;
    width: 35px;
}
body > .navbar > button {
    margin-left: .5rem;
}
body > .navbar > .loading {
    display: none;
    position: absolute;
    right: 0.5rem;
}
body > .navbar > .loading > div {
    background-color: #fff;
}
body.busy > .navbar > .loading {
    display: block;
}
body.double > .navbar > .loading > div {
    background-color: #c82333;
}
@media (min-width: 768px) {
    body > .navbar {
        display: none;
    }
}

body > .tools-left {
    align-items: center;
    background: #1a2229;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: fixed;
    text-align: center;
    width: 50px;
    z-index: 1008;
}
body > .tools-right {
    align-items: center;
    background: #1a2229;
    display: flex;
    flex-direction: column;
    height: 100%;
    text-align: center;
    width: 50px;
    z-index: 1008;
    position: fixed;
    top: 0px;
    right: 0px;
}
body > .tools-left > img {
    border-radius: .5rem;
    margin-bottom: 3px;
    margin-top: 11px;
    height: 36px;
    width: 36px;
}
body.busy > .tools-left > img {
    visibility: hidden;
}
body > .tools-left > .loading {
    display: none;
    position: absolute;
    top: 10px;
}
body > .tools-left > .loading > div {
    background-color: #fff;
}
body.busy > .tools-left > .loading {
    display: block;
}
body.double > .tools-left > .loading > div {
    background-color: #c82333;
}
body > .tools-left > .disabled {
    opacity: .5;
}
body > :is(.tools-left, .tools-right) > .wrapper {
    width: 100%;
}
body > :is(.tools-left, .tools-right) > .wrapper > a {
    border-radius: 0 50px 50px 0;
    cursor: default;
    margin-right: 5px;
    padding-left: 5px;
}
body.side-left > :is(.tools-left, .tools-right) > .wrapper > a {
    cursor: pointer;
}
body > :is(.tools-left, .tools-right) > .wrapper > .popover {
    pointer-events: none;
}
body > :is(.tools-left, .tools-right) > .wrapper > .popover > .popover-body {
    white-space: nowrap;
}
body > :is(.tools-left, .tools-right) a {
    color: #b9b9b9;
    display: block;
    font-size: 1rem;
    margin-top: .5rem;
    position: relative;
}
body:is(.side-left) > :is(.tools-left) a.active::after,
body:is(.side-left-hover) > :is(.tools-left) a.active::after {
    border-color: transparent #2d353c transparent transparent;
    border-style: solid;
    border-width: 8px 8px 8px 0;
    top: 4px;
    content: '';
    right: -5px;
    position: absolute;
}
body:is(.side-right) > :is(.tools-right) a.active::after,
body:is(.side-right-hover) > :is(.tools-right) a.active::after {
    border-color: transparent transparent transparent #2d353c;
    border-style: solid;
    border-width: 8px 8px 8px 8px;
    top: 4px;
    content: '';
    left: 0px;
    position: absolute;
}
body:is(.side-left) > :is(.tools-left) a.active,
body:is(.side-left-hover) > :is(.tools-left) a.active,
body > :is(.tools-left) > a:hover {
    color: #fff;
}
body:is(.side-right) > :is(.tools-right) a.active,
body:is(.side-right-hover) > :is(.tools-right) a.active,
body > :is(.tools-right) > a:hover {
    color: #fff;
}
body > .tools-left .notice::before {
    background-color: #dc3545;
    border-radius: 50%;
    content: '';
    height: 6px;
    left: 7px;
    position: absolute;
    top: 9px;
    width: 6px;
}
body > .tools-right .notice::before {
    background-color: #54b1ef;
    border-radius: 50%;
    content: '';
    height: 6px;
    right: 0px;
    position: absolute;
    top: 9px;
    width: 6px;
}
body > .tools-left .play::before {
    border-style: solid;
    border-width: 4px 0 4px 6px;
    border-color: transparent transparent transparent #28a745;
    content: '';
    left: 7px;
    position: absolute;
    top: 8px;
}
@media (max-width: 767.98px) {
    body > .tools-left {
        top: 50px;
        margin-left: -50px;
        transition-duration: 0.15s, 0.15s;
        transition-property: margin-left, margin-right;
    }
    body > .tools-right {
        top: 50px;
        margin-right: -50px;
        transition-duration: 0.15s, 0.15s;
        transition-property: margin-left, margin-right;
    }
    body.side-left > .tools-left {
        margin-left: 0;
    }
    body.side-right > .tools-right {
        margin-right: 0;
    }
    body > .tools-left > img,
    body.busy > .tools-left > .loading,
    body > .tools-left > a[data-click="side-left"],
    body > .tools-left > a[data-click="close"],
    body > .tools-left > a[data-click="lock"] {
        display: none;
    }

    body > .tools-right a[data-click="side-right"]{
        display: none;
    }
}

body > .side-left {
    background: #2d353c;
    color: #ffffffc4;
    height: 100%;
    margin-left: -310px;
    order: -1;
    overflow: hidden;
    padding-left: 50px;
    position: fixed;
    transition-duration: 0.35s, 0.35s;
    transition-property: margin-left, margin-right;
    width: 310px;
    z-index: 1007;
}
body.side-left > .side-left,
body.side-left-hover > .side-left {
    margin-left: 0;
}
body > .side-right {
    background: #2d353c;
    color: #ffffffc4;
    height: 100%;
    margin-right: -310px;
    order: -1;
    overflow: hidden;
    padding-right: 50px;
    position: fixed;
    transition-duration: 0.35s, 0.35s;
    transition-property: margin-left, margin-right;
    right: 0px;
    top: 0px;
    width: 310px;
    z-index: 1007;
}
body.side-right > .side-right,
body.side-right-hover > .side-right {
    margin-right: 0;
}
body > .side-left > .wrapper {
    height: 100%;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    overflow-x: hidden;
    overflow-y: scroll;
    position: relative;
    width: 280px;
    /* padding-right: 5px; */
}
body.side-left-hover > .side-left {
    box-shadow: 0 0 2px #1a2229;
}
body > .side-left > .wrapper > .top {
    background: #2d353c;
    margin: 0;
    padding: .5rem;
    position: fixed;
    width: 260px;
    z-index: 3;
}
body > .side-right > .wrapper {
    padding-top: 10px;
    height: 100%;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    overflow-x: hidden;
    overflow-y: scroll;
    position: relative;
    width: 300px;
    /* padding-right: 5px; */
}
body > .side-left > .wrapper > .top.scroll {
    box-shadow: -10px 0 10px #11161b;
}
body > .side-left > .wrapper > .top > .user {
    background: #242c32;
    border-radius: .35rem;
    user-select: none;
}
body > .side-left > .wrapper > .top > .user:hover {
    background: #1a2229;
    cursor: pointer;
}
body > .side-left > .wrapper > .top > .user > .image {
    position: relative;
}
body > .side-left > .wrapper > .top > .user > .image img {
    border-radius: .25rem;
    height: 36px;
    margin: .2rem .4rem .2rem .2rem;
    width: 36px;
}
body > .side-left > .wrapper > .top > .user > .image::before {
    background: #242c32;
    border-radius: 50%;
    bottom: 0;
    content: '';
    height: 14px;
    position: absolute;
    right: 4px;
    width: 14px;
}
body > .side-left > .wrapper > .top > .user:hover > .image::before {
    background: #1a2229;
}
body > .side-left > .wrapper > .top > .user > .image::after {
    bottom: 3px;
    content: '';
    height: 8px;
    position: absolute;
    right: 7px;
    width: 8px;
    z-index: 1;
}
body > .side-left > .wrapper > .top > .user > .image.d::after {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%2328a745' d='M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8z'/%3E%3C/svg%3E");
}
body > .side-left > .wrapper > .top > .user > .image.a::after {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%23ffc107' d='M283.211 512c78.962 0 151.079-35.925 198.857-94.792 7.068-8.708-.639-21.43-11.562-19.35-124.203 23.654-238.262-71.576-238.262-196.954 0-72.222 38.662-138.635 101.498-174.394 9.686-5.512 7.25-20.197-3.756-22.23A258.156 258.156 0 0 0 283.211 0c-141.309 0-256 114.511-256 256 0 141.309 114.511 256 256 256z'/%3E%3C/svg%3E");
}
body > .side-left > .wrapper > .top > .user > .image.o::after {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%23dc3545' d='M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zM124 296c-6.6 0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h264c6.6 0 12 5.4 12 12v56c0 6.6-5.4 12-12 12H124z'/%3E%3C/svg%3E");
}
body > .side-left > .wrapper > .top > .user > .image.i::after {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%236c757d' d='M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8z'/%3E%3C/svg%3E");
}
body > .side-left > .wrapper > .top > .user > .text > p {
    margin-bottom: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 155px;
}
body > .side-left > .wrapper > .top > .user > .text > small {
    color: #889097;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 155px;
}
body > .side-left > .wrapper > .top > .user > i {
    font-size: .9rem;
    position: absolute;
    right: 18px;
    top: 22px;
}
body > .side-left > .wrapper > .top > .user > .dropdown-menu > .dropdown-item > i {
    margin: .31rem .4rem 0 0;
}
body > .side-left > .wrapper > .top > .title {
    color: #889097;
    display: inline-block;
    font-size: .7rem;
    font-variant: all-small-caps;
    letter-spacing: 1px;
    margin-top: .75rem;
    /* text-align: center; */
    user-select: none;
    /* width: 100%; */
}
body > .side-left > .wrapper > .services {
    font-size: .8rem;
    margin-top: 5.5rem;
    padding: 0 .5rem .5rem .5rem;
    width: 260px;
}
body > .side-right > .wrapper > .services {
    font-size: .8rem;
    padding: 0 .5rem .5rem .5rem;
    width: 260px;
}
.services .menu > .items {
    font-size: 0.8rem;
}
.services .menu > .items .nav {
    display: block;
}
.services .menu > .items .nav > li {
    padding-bottom: 2px;
    position: relative;
}
.services .menu > .items .nav > li > a {
    color: #a8acb1;
    display: block;
    padding: 6px 12px;
    position: relative;
}
.services .menu > .items .nav > li > a:hover > span {
    filter: brightness(1.3);
    font-weight: bold;
}
.services .menu > .items .nav li > a i {
    font-size: 14px;
    margin-right: 8px;
}
.services .menu > .items .nav li > a .add {
    color: #FFC107AA;
}
/* .services .menu > .items .nav li > a .add {
    color: #2f84da;
    font-size: 0.65rem;
    padding: 2px 0;
    position: absolute;
    right: 0px;
    top: 4px;
    z-index: 1;
}
.services .menu > .items .nav li > a .add:hover {
    color: #206fbe;
}
.services .menu > .items .nav > li > a .add {
    top: 7px;
} */
.services .menu > .items .nav > li.expand > a:not(.custom-tree),
.services .menu > .items .nav > li > a:not(.custom-tree):hover {
    background: #272e35;
    border-radius: .35rem;
}
.services .menu > .items .nav > li.expand > a,
.services .menu > .items .nav > li > a:hover {
    /* filter: brightness(1.3); */
    font-weight: bold;
}
/* .services .menu > .items .nav li > a .caret {
    float: right;
    margin-top: 4px;
    position: absolute;
    right: 5px;
} */
.services .menu > .items .nav li > a .caret:before {
    display: block;
    opacity: 0.5;
    transition: all .2s linear;
}
.services .menu > .items .nav li.expanding > a .caret:before,
.services .menu > .items .nav li.expand > a .caret:before {
    opacity: 1.0;
    transform: rotate(90deg);
}
.services .menu > .items .nav li.closing > a .caret:before,
.services .menu > .items .nav li.closed > a .caret:before {
    transform: rotate(0deg);
}
.services .menu > .items .nav > li > .sub {
    padding: 6px 0 10px 32px !important;
}
.services .menu > .items .sub {
    display: none;
    list-style-type: none;
    margin: 0;
    position: relative;
}
.services .menu > .items .sub > li {
    position: relative;
}
.services .menu > .items .sub > li:before {
    bottom: -1px;
    content: '';
    left: -12px;
    position: absolute;
    top: 0;
    width: 2px;
}
.services .menu > .items .sub > li:first-child:last-child:before {
    height: 13px;
}
.services .menu > .items .sub > li:last-child:before {
    bottom: auto;
    height: 13px;
}
.services .menu > .items .sub > li:before,
.services .menu > .items .sub > li > a:after,
.services .menu > .items .sub > li.has-sub > a:before {
    background: #20282f;
}
.services .menu > .items .sub > li > a {
    display: block;
    padding: 3px 12px 3px 0;
}
.services .menu > .items .sub > li > a:not(.custom-tree) {
    color: #889097;
}
.services .menu > .items .sub > li > a.custom-tree {
    color: #555;
}
.services .menu > .items .sub > li > a:hover > span {
    filter: brightness(1.3);
    font-weight: bold;
}
.services .menu > .items .sub > li > a:after {
    content: '';
    height: 2px;
    left: -11px;
    position: absolute;
    top: 11px;
    width: 7px;
}
.services .menu > .items .sub .sub {
    padding: 0 0 0 19px;
}
@media (max-width: 767.98px) {
    body.side-left {
        overflow: hidden;
        position: fixed;
        width: 100%;
    }
    body > .side-left > .wrapper {
        top: 50px;
    }
    body > .side-right > .wrapper {
        margin-top: 50px;
    }
    body > .side-left > .wrapper > .services {
        margin-bottom: 50px;
    }
    body.side-left > .side-left {
        box-shadow: 0 0 2px #1a2229;
    }
}
@media (max-width: 767.98px) {
    .services .menu > .items .sub > li:before,
    .services .menu > .items .sub > li > a:after,
    .services .menu > .items .sub > li.has-sub > a:before {
        background: #1f272d;
    }
}

body > .tabs {
    background: #2d353c;
    display: none;
    height: 35px;
    overflow: hidden;
    padding-left: 50px;
    padding-right: 50px;
    position: fixed;
    transition-duration: 0.35s, 0.35s;
    transition-property: padding-left, padding-right;
    width: 100%;
    z-index: 1006;
}
body > .tabs .left,
body > .tabs .right {
    background: #2d353c;
    border-radius: 0 0 12px 0;
    box-shadow: 0 0 2px #2d353c;
    color: #dddddd;
    display: none;
    cursor: pointer;
    height: 35px;
    padding-top: 6px;
    position: absolute;
    text-align: center;
    top: 0;
    width: 35px;
    z-index: 2;
}
body > .tabs .right {
    border-radius: 0 0 0 12px;
    right: 0;
}
body > .tabs .left:hover,
body > .tabs .right:hover {
    color: #fff;
}
body > .tabs ul {
    list-style: none;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 10px 30px 10px;
    white-space: nowrap;
}
body > .tabs ul li {
    display: inline-block;
    margin-right: 0.25rem;
    position: relative;
}
body > .tabs ul li:last-child {
    margin-right: 0;
}
body > .tabs ul li a {
    background: #242c32;
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
    color: #b3b5b9;
    display: block;
    margin-top: 5px;
    padding: 5px 12px;
}
body > .tabs ul li a:hover {
    color: #fff;
}
body > .tabs ul li a:before,
body > .tabs ul li a:after {
    background: #242c32;
    bottom: 0;
    content: "";
    height: 8px;
    position: absolute;
    width: 8px;
    z-index: -1;
}
body > .tabs ul li a:before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-152 64 8 8'%3E%3Cpath d='M-152,72h8v-8C-144.5,68.2-147.8,71.5-152,72z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-152 64 8 8'%3E%3Cpath d='M-152,72h8v-8C-144.5,68.2-147.8,71.5-152,72z'/%3E%3C/svg%3E");
    left: -8px;
}
body > .tabs ul li a:after {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-152 64 8 8'%3E%3Cpath d='M-152,64v8h8C-148.2,71.5-151.5,68.2-152,64z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-152 64 8 8'%3E%3Cpath d='M-152,64v8h8C-148.2,71.5-151.5,68.2-152,64z'/%3E%3C/svg%3E");
    right: -8px;
}
body > .tabs ul li.active a {
    background: var(--color);
    color: #333;
}
body > .tabs ul li.active:not(.mobile) a:hover > i:before {
    content: "\f057";
}
body > .tabs ul li.active:not(.mobile) a:hover > i:hover {
    color: #ce2738;
}
body > .tabs ul li.active a:before,
body > .tabs ul li.active a:after {
    background: var(--color);
    z-index: 1;
}
@media (max-width: 767.98px) {
    body > .tabs {
        padding-left: 0;
        top: 50px;
    }
}
@media (min-width: 768px) {
    body.side-left > .tabs {
        padding-left: 310px;
    }
    body.side-right > .tabs {
        padding-right: 310px;
    }
}

body > .main {
    height: 100%;
    padding-left: 50px;
    padding-right: 50px;
    padding-top: 35px;
    transition-duration: 0.35s, 0.35s;
    transition-property: padding-left, padding-right;
}
body > .main .restore {
    color: #fff;
    display: inline-block;
    font-size: .7rem;
    margin: .75rem;
}
body > .main > .footer {
    bottom: 0;
    margin: 1rem;
    position: absolute;
    right: 0;
    text-align: right;
}
body > .main > .footer > .wrap {
    color: #dee2e6;
    font-size: .8rem;
    margin-top: .5rem;
}
@media (max-width: 767.98px) {
    body > .main {
        padding-left: 0;
        padding-right: 0;
        padding-top: 85px;
    }
}
@media (min-width: 768px) {
    body.side-left > .main {
        padding-left: 310px;
    }
    body.side-left > .tabs:after {
        background: #2d353c;
        content: "";
        height: 3px;
        -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-152 64 4 4'%3E%3Cpath d='M-148,64h-4v4C-151.8,65.9-150.1,64.2-148,64z'/%3E%3C/svg%3E");
        mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-152 64 4 4'%3E%3Cpath d='M-148,64h-4v4C-151.8,65.9-150.1,64.2-148,64z'/%3E%3C/svg%3E");
        position: fixed;
        top: 35px;
        width: 3px;
        z-index: 2;
    }
    body.side-right > .main {
        padding-right: 310px;
    }
    body > .main > .footer {
        margin-right: 70px;
    }
    body:is(.side-right) > .main > .footer {
        margin-right: 320px;
    }
}

.interface {
    background: var(--color);
    min-height: 100%;
    padding: 1rem;
}
.interface.interface-fill {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
}
.interface.interface-fill > .content {
    height: 100%;
    max-height: 100%;
    overflow: hidden;
}
.interface:before {
    background: var(--color);
    box-shadow: 0 0 2px var(--color);
    content: '';
    display: block;
    height: 3px;
    margin-bottom: 1rem;
    margin-left: -1rem;
    margin-top: -1rem;
    position: sticky;
    top: 35px;
    width: calc(100% + 2rem);
    z-index: 3;
}
.interface .header {
    margin-bottom: 1rem;
}
.interface .header .wrap {
    background: linear-gradient(150deg, #1b538d 0, #03aae1 100%);
    background-color: #0e3a69;
    color: #fff;
    border-radius: .5rem;
    padding: .75rem 1rem 0 1rem;
}
.interface .header.has-toolbar .wrap {
    border-radius: .5rem .5rem 0 0;
}
.interface .header.has-toolbar .toolbar {
    display: block;
}
.interface .header .wrap .text {
    margin-bottom: .75rem;
    z-index: 1;
}
.interface .header .wrap .text > h5 {
    margin-bottom: .25rem;
    margin-top: .25rem;
}
.interface .header .wrap .text > p {
    margin-bottom: .25rem;
}
.interface .header .wrap .text > span {
    font-size: 0.9rem;
    opacity: 0.8;
}
.interface .header .wrap .summary {
    font-size: 0.725rem;
    margin-bottom: .75rem;
}
.interface .header .wrap > i {
    cursor: pointer;
    font-size: 1.5rem;
    margin: 0 0 10px 10px;
}
.interface .header .wrap > i:hover {
    color: #ce2738;
}
.interface .header .toolbar {
    background: #fff;
    border-radius: 0 0 .5rem .5rem;
    display: none;
    padding: .5rem 1rem;
}
.interface .header .toolbar > div .btn-light {
    border-color: transparent;
}
@media (max-width: 767.98px) {
    .interface:before {
        top: 85px;
    }
}
@media (max-width: 991.98px) {
    .interface .header .wrap .summary {
        display: none !important;
    }
}

.preview .modal-dialog {
    height: 100%;
    margin: 0;
}
.preview.fade .modal-dialog {
    transform: translateX(-100%)
}
.preview.show .modal-dialog {
    transform: translateX(0);
}
.preview .modal-content {
    border-radius: 0;
    border-width: 0;
    height: inherit;
}
.preview .modal-header {
    border-radius: 0;
    display: block;
    padding: .75rem 1rem;
}
.preview .modal-header .modal-title > small {
    font-size: 0.7rem;
    opacity: 0.6;
}
.preview .modal-header .buttons > a {
    font-size: 1.45rem;
    color: #555;
    margin-left: .15rem;
}
.preview .modal-header .buttons > a[data-click="back"]:hover {
    color: #222;
}
.preview .modal-header .buttons > a[data-click="close"]:hover {
    color: #ce2738;
}
.preview .modal-header .toolbar {
    margin-top: .25rem;
}
.preview .modal-header .toolbar > div > * {
    margin: .25rem .25rem .25rem 0;
}
.preview .modal-header .toolbar > div .btn-light {
    background-color: #efefef;
    border-color: transparent;
}
.preview .modal-header .toolbar > div .btn-light:hover {
    background-color: #e0e0e0;
}
.preview .modal-body {
    height: inherit;
    overflow-y: auto;
}
.preview .modal-footer {
    display: block;
    padding: .75rem 1rem;
}
.preview .modal-footer > * {
    margin: .25rem .5rem .25rem 0;
}

.marker {
    border-radius: .25rem;
    display: inline-block;
    font-size: .65rem;
    margin: .1rem;
    padding: .25em .5em;
}

.fs-1 {
    font-size: 1rem !important;
}

.bw-2 {
    border-width: 2px !important;
}

.btn-rounded-circle {
    border-radius: 50% !important;
    padding-right: 0;
    padding-left: 0;
    width: calc(1em * 1.5 + .75rem + 4px);
}
.btn-rounded-circle.btn-lg {
    width: calc(1em * 1.5 + 1rem + 4px);
}
.btn-rounded-circle.btn-sm {
    width: calc(1em * 1.75 + .25rem + 4px);
}

.table-tools {
    margin-bottom: .5rem;
}
.table-tools .btn-rounded-circle {
    border-color: #f1f1f1;
    border-width: 2px;
    margin: 0 1.5px 4px;
}
.table-tools .input-rounded-circle {
    width: 260px;
}
.table-tools .input-rounded-circle .form-control {
    border-top-left-radius: 50rem;
    border-bottom-left-radius: 50rem;
}
.table-tools .input-rounded-circle .input-group-append {
    margin-left: 0;
}
.table-tools .input-rounded-circle .input-group-append .btn:last-child {
    border-top-right-radius: 50rem;
    border-bottom-right-radius: 50rem;
}

.tabs-wrap > .nav-tabs {
    border-bottom: 0;
    margin-left: -0.125rem;
    margin-right: -0.125rem;
}
.tabs-wrap > .nav-tabs > .nav-item > .nav-link {
    margin: 0 0.125rem;
}
.tabs-wrap > .nav-tabs > .nav-item > .nav-link.active {
    border-bottom: 0;
    bottom: -2px;
    position: relative;
}
.tabs-wrap > .nav-tabs > .nav-item > .nav-link:not(.active) {
    background-color: #fff;
    border-color: rgba(0, 0, 0, .125);
    border-bottom: 0;
    color: #666;
    margin-top: 4px;
    opacity: 0.75;
    padding-bottom: 5px !important;
}
.tabs-wrap > .nav-tabs > .nav-item > .nav-link:not(.active):hover {
    color: #343a40;
}
.tabs-wrap > .tab-content {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .125);
    border-bottom-left-radius: .5rem;
    border-bottom-right-radius: .5rem;
    padding: 1rem;
}

.tabs-light > .nav-tabs {
    border-bottom-width: 2px;
}
.tabs-light > .nav-tabs > .nav-item {
    margin-bottom: -2px;
}
.tabs-light > .nav-tabs > .nav-item > .nav-link {
    background-color: transparent;
    border: 0;
    border-bottom: 2px solid rgba(255, 255, 255, 0);
    margin: 0 0.5rem 0 0;
    padding: 0.5rem 0.2rem;
}
.tabs-light > .nav-tabs.justify-content-center > .nav-item > .nav-link {
    margin: 0 0.35rem;
}
.tabs-light > .nav-tabs.justify-content-end > .nav-item > .nav-link {
    margin: 0 0 0 0.5rem;
}
.tabs-light > .nav-tabs > .nav-item > .nav-link:not(.active) {
    color: #7b848c;
}
.tabs-light > .nav-tabs > .nav-item > .nav-link.active {
    border-color: #387ec6;
    color: #387ec6;
}
.tabs-light > .nav-tabs > .nav-item > .nav-link:not(.active):hover {
    color: #343a40;
}

.table-wrap:not(.jab-table-responsive) {
    border: 1px solid #dee1e6;
    border-radius: 4px;
    overflow: auto;
}
.table-wrap:not(.jab-table-responsive) thead th {
    background-color: #f7f7f7;
    position: sticky;
    top: 0;
    z-index: 1;
}
.table-wrap:not(.jab-table-responsive) thead tr:first-child th,
.table-wrap:not(.jab-table-responsive) tbody tr:first-child td {
    border-top: 0;
}
.table-wrap:not(.jab-table-responsive) thead th.jab-table-header-sort:hover {
    background-color: #f0f0f0;
}
.table-wrap tbody tr {
    background-color: #fff;
}

.table-padded:not(.jab-table-responsive) .table {
    border-collapse: separate;
    border-spacing: 0 .25rem;
}
.table-padded:not(.jab-table-responsive) thead tr,
.table-padded:not(.jab-table-responsive) tbody tr {
    border-radius: .5rem;
}
.table-padded:not(.jab-table-responsive) thead th {
    background-color: #eaedf1;
    color: #454e58;
    font-size: 0.8rem;
    font-weight: 600;
}
.table-padded:not(.jab-table-responsive) thead th,
.table-padded:not(.jab-table-responsive) tbody td {
    padding: .7rem;
    border-bottom: 1px solid #e2e7ec;
    border-top: 1px solid #e2e7ec;
}
.table-padded:not(.jab-table-responsive) thead th:first-child,
.table-padded:not(.jab-table-responsive) tbody td:first-child {
    border-bottom-left-radius: .5rem;
    border-left: 1px solid #e2e7ec;
    border-top-left-radius: .5rem;
}
.table-padded:not(.jab-table-responsive) thead th:last-child,
.table-padded:not(.jab-table-responsive) tbody td:last-child {
    border-bottom-right-radius: .5rem;
    border-right: 1px solid #e2e7ec;
    border-top-right-radius: .5rem;
}
.table-padded:not(.jab-table-responsive) thead th.jab-table-header-sort:hover {
    background-color: #e2e7ec;
}
.table-padded tbody tr {
    background-color: #fff;
}

.fieldset-wrap {
    border: 1px solid #ced4da;
    border-radius: .5rem;
    margin-bottom: 1rem;
    padding: .5rem 1rem 0 1rem;
}
.fieldset-wrap + .fieldset-wrap {
    margin-top: -.25rem;
}
.fieldset-wrap legend {
    font-size: 14px;
    margin: -.25rem 0 0 -.25rem;
    padding: 0 .25rem;
    width: auto;
}

.fieldset-divider > legend {
    background-color: #ecf0f5;
    border-radius: 4px;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: .75rem;
    padding: 4px 8px;
    position: relative;
    width: auto;
    z-index: 1;
}
.fieldset-divider:before {
    background-color: #ecf0f5;
    content: '';
    display: block;
    height: 2px;
    position: relative;
    top: -27px;
    width: 100%;
}

.avatars .avatar {
    display: inline-block;
}
.avatars .avatar + .avatar {
    margin-left: -1rem;
}
.avatars .avatar-xs + .avatar-xs {
    margin-left: -0.6rem;
}
.avatars .avatar-sm + .avatar-sm {
    margin-left: -0.8rem;
}
.avatars .avatar-lg + .avatar-lg {
    margin-left: -1.2rem;
}
.avatars .avatar-xl + .avatar-xl {
    margin-left: -1.3rem;
}
.avatars.avatars-reverse {
    display: inline-flex;
    flex-direction: row-reverse;
}
.avatars.avatars-reverse .avatar + .avatar {
    margin-left: 0;
    margin-right: -1rem;
}
.avatars.avatars-reverse .avatar-xs + .avatar-xs {
    margin-left: 0;
    margin-right: -0.6rem;
}
.avatars.avatars-reverse .avatar-sm + .avatar-sm {
    margin-left: 0;
    margin-right: -0.8rem;
}
.avatars.avatars-reverse .avatar-lg + .avatar-lg {
    margin-left: 0;
    margin-right: -1.2rem;
}
.avatars.avatars-reverse .avatar-xl + .avatar-xl {
    margin-left: 0;
    margin-right: -1.3rem;
}
.avatars.avatars-hover .avatar:hover {
    position: relative;
    z-index: 1;
}
.avatar {
    background: #e5e5e5;
    display: inline-block;
    line-height: 0;
    overflow: hidden;
    position: relative;
}
.avatar.avatar-border {
    border: 2px solid #f8f9fa;
}
.avatar.avatar-online {
    border: 2px solid #28a745;
}
.avatar.avatar-offline {
    border: 2px solid #dc3545;
}
.avatar,
.avatar img {
    border-radius: 50%;
    height: 3rem;
    min-height: 3rem;
    min-width: 3rem;
    width: 3rem;
}
.avatar.avatar-border img,
.avatar.avatar-online img,
.avatar.avatar-offline img {
    border: 2px solid transparent;
    margin: -2px;
}
.avatar i,
.avatar span {
    align-items: center;
    display: flex;
    font-size: 1rem;
    height: 100%;
    cursor: default;
    justify-content: center;
    width: 100%;
}
.avatar.avatar-xs,
.avatar.avatar-xs img {
    height: 1.5rem;
    min-height: 1.5rem;
    min-width: 1.5rem;
    width: 1.5rem;
}
.avatar.avatar-xs i,
.avatar.avatar-xs span {
    font-size: 0.5rem;
}
.avatar.avatar-sm,
.avatar.avatar-sm img {
    height: 2rem;
    min-height: 2rem;
    min-width: 2rem;
    width: 2rem;
}
.avatar.avatar-sm i,
.avatar.avatar-sm span {
    font-size: 0.75rem;
}
.avatar.avatar-lg,
.avatar.avatar-lg img {
    height: 4rem;
    min-height: 4rem;
    min-width: 4rem;
    width: 4rem;
}
.avatar.avatar-lg i,
.avatar.avatar-lg span {
    font-size: 1.5rem;
}
.avatar.avatar-xl,
.avatar.avatar-xl img {
    height: 5rem;
    min-height: 5rem;
    min-width: 5rem;
    width: 5rem;
}
.avatar.avatar-xl i,
.avatar.avatar-xl span {
    font-size: 2rem;
}

.notice.card {
    background-color: #384048;
    border: 0;
    margin-bottom: .5rem;
    overflow: hidden;
}
.notice.card > .card-header {
    padding: .5rem .75rem;
}
.notice.card > .card-body {
    padding: .5rem .75rem;
}
.notice.card > .card-body .btn {
    font-size: .7rem;
}

.rep > span {
    color: #fff;
}
.rep > ul {
    list-style-type: none;
    margin-top: 1rem;
    padding-left: 2.25rem;
    position: relative;
}
.rep > ul:before {
    background: #20282f;
    content: '';
    display: inline-block;
    height: calc(100% - 20px);
    left: 18px;
    position: absolute;
    top: 8px;
    width: 2px;
    z-index: -1;
}
.rep > ul > li {
    margin-bottom: .5rem;
    position: relative;
}
.rep > ul > li > a,
.rep > ul > li.total {
    font-family: sans-serif;
}
.rep > ul > li > a {
    color: #999;
}
.rep > ul > li > a:hover {
    color: #bbb;
}
.rep > ul > li i {
    font-size: .9rem;
}
.rep > ul > li:not(.total) > i {
    left: -26px;
    position: absolute;
    top: 3px;
}
.rep > ul > li.total {
    background-color: #20282f;
    border-radius: .25rem;
    display: inline-block;
    margin-bottom: 0;
    margin-left: -.35rem;
    padding: .15rem .35rem;
}
.rep > ul > li.total:before {
    background: #20282f;
    content: '';
    display: inline-block;
    height: 2px;
    left: -12px;
    position: absolute;
    top: 10px;
    width: 12px;
    z-index: -1;
}

.timeline-log {
    list-style: none;
    padding-left: 1rem;
}
.timeline-log li {
    font-size: 80%;
    padding: .25rem 0 .25rem .5rem;
    position: relative;
}
.timeline-log li:before {
    background: #D8D8D8;
    border-radius: 50%;
    content: '';
    height: 12px;
    left: -15px;
    position: absolute;
    top: 45%;
    transform: translateY(-40%);
    width: 12px;
    z-index: 1;
}
.timeline-log li:not(:last-child):after {
    background: #f1f1f1;
    content: '';
    height: 100%;
    left: -10px;
    position: absolute;
    top: 50%;
    width: 2px;
}

@media print {
    body > .navbar,
    body > .tools-left,
    body > .side,
    body > .tabs {
        display: none !important;
    }
    body > .main {
        padding-left: 0 !important;
        padding-top: 0 !important;
    }
    .interface .header {
        padding: 0 !important;
    }
    .interface .header .text {
        color: #000 !important;
    }
    .interface .header .text > span {
        opacity: 1 !important;
    }
    .interface .header .text > .buttons {
        display: none !important;
    }
    .interface .header > i {
        display: none !important;
    }
    .preview .modal-dialog {
        max-width: 100% !important;
    }
    .preview .modal-header,
    .preview .modal-body {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    .preview .modal-header button {
        display: none !important;
    }
}

@media (min-width: 768px) {

    .jab-toast-top-right,
    .jab-toast-bottom-right {
        right: 50px;
    }

    body:is(.side-right, .side-right-hover) > :is(.jab-toast-top-right, .jab-toast-bottom-right) {
        right: 310px;
    }

}

.wd-btn-rd {
    border-radius: 3px;
}

.highlight {
    background-color: yellow;
    border-radius: 5px;
}

.salas .salas-item {
    border: 2px solid transparent;
    border-radius: 8px;
    cursor: pointer;
}
.salas .salas-item:hover {
    border-color: rgba(100,100,100,.5);
}
.salas .salas-item:active {
    opacity: .8;
    border-color: rgba(200,200,200,.5);
}

.salas .typing {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-family: sans-serif;
    gap: 3px;
    cursor: pointer;
    padding: 4px;
}

.salas .typing-dot {
    height: 5px;
    width: 5px;
    background-color: rgba(255,255,255,.6);
    border-radius: 50%;
    opacity: 0.2;
    animation: blink 1.5s infinite;
}

.salas .typing-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.salas .typing-dot:nth-child(3) {
    animation-delay: 0.4s;
}
.salas-acoes {
    min-height: auto !important;
}
.salas-acoes i {
    width: 20px;
}

@keyframes blink {
    0%, 80%, 100% {
        opacity: 0.2;
    }
    40% {
        opacity: 1;
    }
}