body {
    font-family: 'Dm Sans', sans-serif;
}

.dt-header__toolbar {
    padding-left: 0px !important;
    padding-right: 0px !important;
}

.dt-sidebar__container {
    padding-top: 2rem !important;
}

.dt-side-nav__header {
    padding: 10px 0 5px 20px !important;
}

.dt-page__header {
    margin-bottom: 1rem !important;
}

.dt-brand__logo-img {
    margin-bottom: 1.5rem !important;
}

.dt-side-nav__header:not(:first-child):before {
    margin-bottom: 10px !important;
}

.dt-side-nav__header:before {
    margin-bottom: 10px !important;
}

.dt-side-nav__link {
    padding: 10px 20px !important;
    margin: 2px 10px !important;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

    .dt-side-nav__link:hover {
        background-color: rgba(255, 255, 255, 0.05);
    }

.dt-side-nav__text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
}

.ativo-documento .documento {
    background: #AAC0FF;
    color: #0d4464 !important;
}

    .ativo-documento .documento h3 {
        color: #000000 !important;
    }

.truncate-text {
    white-space: nowrap; /*keep text on one line */
    overflow: hidden; /*prevent text from being shown outside the border */
    text-overflow: ellipsis; /*cut off text with an ellipsis*/
    display: -webkit-box;
    -webkit-line-clamp: 5; /* number of lines to show */
    -webkit-box-orient: vertical;
}

.excluir-arquivo {
    position: absolute;
    right: 0;
    top: 0;
    width: 24px;
    height: 24px;
    z-index: 3;
    text-indent: -9999px;
    background: url(images/icone-apagar.png) no-repeat 0 0;
    display: inline-block;
    display: none;
    transition: all 0.4s;
}

.arquivo:hover .excluir-arquivo {
    display: inline-block;
    opacity: 0.7;
    transition: all 0.4s;
}

    .arquivo:hover .excluir-arquivo:hover {
        opacity: 1;
    }

/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 *  Owl Carousel - Core
 */
.owl-carousel {
    display: none;
    width: 100%;
    -webkit-tap-highlight-color: transparent;
    /* position relative and z-index fix webkit rendering fonts issue */
    position: relative;
    z-index: 1;
}

.centraliza-tabela {
    text-align: center;
}

.owl-carousel .owl-stage {
    position: relative;
    -ms-touch-action: pan-Y;
    touch-action: manipulation;
    -moz-backface-visibility: hidden;
    /* fix firefox animation glitch */
}

    .owl-carousel .owl-stage:after {
        content: ".";
        display: block;
        clear: both;
        visibility: hidden;
        line-height: 0;
        height: 0;
    }

.owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    /* fix for flashing background */
    -webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
    position: relative;
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}

    .owl-carousel .owl-item img {
        display: block;
        width: 100%;
    }

.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
    display: none;
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
    cursor: pointer;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
.owl-carousel button.owl-dot {
    background: none;
    color: inherit;
    border: none;
    padding: 0 !important;
    font: inherit;
}

.owl-carousel.owl-loaded {
    display: block;
}

.owl-carousel.owl-loading {
    opacity: 0;
    display: block;
}

.owl-carousel.owl-hidden {
    opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
    visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.owl-carousel.owl-grab {
    cursor: move;
    cursor: grab;
}

.owl-carousel.owl-rtl {
    direction: rtl;
}

    .owl-carousel.owl-rtl .owl-item {
        float: right;
    }

/* No Js */
.no-js .owl-carousel {
    display: block;
}

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
    animation-duration: 1000ms;
    animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
    z-index: 0;
}

.owl-carousel .owl-animated-out {
    z-index: 1;
}

.owl-carousel .fadeOut {
    animation-name: fadeOut;
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
    transition: height 500ms ease-in-out;
}

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item {
    /**
      This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
      calculation of the height of the owl-item that breaks page layouts
     */
}

    .owl-carousel .owl-item .owl-lazy {
        opacity: 0;
        transition: opacity 400ms ease;
    }

        .owl-carousel .owl-item .owl-lazy[src^=""], .owl-carousel .owl-item .owl-lazy:not([src]) {
            max-height: 0;
        }

    .owl-carousel .owl-item img.owl-lazy {
        transform-style: preserve-3d;
    }

/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
    position: relative;
    height: 100%;
    background: #000;
}

.owl-carousel .owl-video-play-icon {
    position: absolute;
    height: 80px;
    width: 80px;
    left: 50%;
    top: 50%;
    margin-left: -40px;
    margin-top: -40px;
    background: url("owl.video.play.png") no-repeat;
    cursor: pointer;
    z-index: 1;
    -webkit-backface-visibility: hidden;
    transition: transform 100ms ease;
}

    .owl-carousel .owl-video-play-icon:hover {
        -ms-transform: scale(1.3, 1.3);
        transform: scale(1.3, 1.3);
    }

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
    display: none;
}

.owl-carousel .owl-video-tn {
    opacity: 0;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    transition: opacity 400ms ease;
}

.owl-carousel .owl-video-frame {
    position: relative;
    z-index: 1;
    height: 100%;
    width: 100%;
}

.lista-chat {
    background: #F7F9FF;
    border-radius: 10px;
    margin-bottom: 10px;
    padding: 13px 18px;
    transition: all 0.3s;
}

    .lista-chat:hover {
        background: #D4E0FF;
    }

    .lista-chat .f-12 {
        font-size: 13px;
        line-height: 110%;
        display: block;
        font-family: 'Dm Sans', sans-serif;
        font-weight: 400;
    }

    .lista-chat:hover span {
        color: black;
    }

.dt-chat__item .dt-chat__message:last-child:after {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" style="enable-background:new 0 0 14.9 17.3;"><path fill="%23f1f1f1" d="M9.2,0c0,6.2-3.6,11.7-8.4,15c-0.4,0.3-0.2,0.9,0.3,0.9h8.1"></path><path fill="%23ddd" d="M9.2,16.4H1.1c-0.4,0-0.8-0.3-1-0.7c-0.1-0.4,0-0.9,0.4-1.1C5.3,11.3,8.2,5.8,8.2,0h1c0,6.2-3,11.9-8.1,15.4   l8.1,0V16.4z"></path></svg>') no-repeat;
}

.dt-chat__item.reply .dt-chat__message:last-child:after {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" style="enable-background:new 0 0 14.9 17.3;"><path fill="%23f2d886" d="M9.2,0c0,6.2-3.6,11.7-8.4,15c-0.4,0.3-0.2,0.9,0.3,0.9h8.1"></path><path fill="%23ddd" d="M9.2,16.4H1.1c-0.4,0-0.8-0.3-1-0.7c-0.1-0.4,0-0.9,0.4-1.1C5.3,11.3,8.2,5.8,8.2,0h1c0,6.2-3,11.9-8.1,15.4   l8.1,0V16.4z"></path></svg>') no-repeat
}
/*venobox*/
.vbox-overlay *, .vbox-overlay :after, .vbox-overlay :before {
    -webkit-backface-visibility: hidden;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

.vbox-overlay * {
    -webkit-backface-visibility: visible;
    backface-visibility: visible
}

.vbox-overlay {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: 999999
}

.vbox-title {
    width: 100%;
    height: 40px;
    float: left;
    text-align: center;
    line-height: 28px;
    font-size: 12px;
    padding: 6px 50px;
    overflow: hidden;
    position: fixed;
    display: none;
    left: 0;
    z-index: 89
}

.vbox-close {
    cursor: pointer;
    position: fixed;
    top: -1px;
    right: 0;
    width: 50px;
    height: 40px;
    padding: 6px;
    display: block;
    background-position: 10px center;
    overflow: hidden;
    font-size: 24px;
    line-height: 1;
    text-align: center;
    z-index: 99
}

.vbox-left {
    cursor: pointer;
    position: fixed;
    left: 0;
    height: 40px;
    overflow: hidden;
    line-height: 28px;
    font-size: 12px;
    z-index: 99;
    display: flex;
    align-items: center
}

.vbox-num {
    display: inline-block;
    margin: 6px 0 6px 15px
}

.vbox-share {
    line-height: 28px;
    font-size: 12px;
    overflow: hidden;
    position: fixed;
    left: 0;
    z-index: 98;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-align: center
}

    .vbox-share svg {
        max-height: 28px;
        width: 28px;
        z-index: 10;
        margin-left: 12px;
        margin-top: 6px;
        margin-bottom: 6px;
        vertical-align: middle
    }

.vbox-next, .vbox-prev {
    position: fixed;
    top: 50%;
    margin-top: -15px;
    overflow: hidden;
    cursor: pointer;
    display: block;
    width: 45px;
    height: 45px;
    z-index: 99
}

    .vbox-next span, .vbox-prev span {
        position: relative;
        width: 20px;
        height: 20px;
        border: 2px solid transparent;
        border-top-color: #b6b6b6;
        border-right-color: #b6b6b6;
        text-indent: -100px;
        position: absolute;
        top: 8px;
        display: block
    }

.vbox-prev {
    left: 15px
}

.vbox-next {
    right: 15px
}

.vbox-prev span {
    left: 10px;
    -ms-transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg)
}

.vbox-next span {
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    right: 10px
}

.vbox-inline {
    width: 420px;
    height: 315px;
    height: 70vh;
    padding: 10px;
    background: #fff;
    margin: 0 auto;
    overflow: auto;
    text-align: left
}

.venoframe {
    max-width: 100%;
    width: 100%;
    border: none;
    width: 100%;
    height: 260px;
    height: 70vh
}

    .venoframe.vbvid {
        height: 260px
    }

@media (min-width:768px) {
    .vbox-inline, .venoframe {
        width: 90%;
        height: 360px;
        height: 70vh
    }

        .venoframe.vbvid {
            width: 640px;
            height: 360px
        }
}

@media (min-width:992px) {
    .vbox-inline, .venoframe {
        max-width: 1200px;
        width: 80%;
        height: 540px;
        height: 70vh
    }

        .venoframe.vbvid {
            width: 960px;
            height: 540px
        }
}

.vbox-open {
    overflow: hidden
}

.vbox-container {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    overflow-x: hidden;
    overflow-y: scroll;
    overflow-scrolling: touch;
    -webkit-overflow-scrolling: touch;
    z-index: 20;
    max-height: 100%
}

.vbox-content {
    text-align: center;
    float: left;
    width: 100%;
    position: relative;
    overflow: hidden;
    padding: 20px 4%
}

.vbox-container img {
    max-width: 100%;
    height: auto
}

.vbox-figlio {
    box-shadow: 0 0 12px rgba(0,0,0,.19),0 6px 6px rgba(0,0,0,.23);
    max-width: 100%;
    text-align: initial
}

img.vbox-figlio {
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none
}

.vbox-content.swipe-left {
    margin-left: -200px !important
}

.vbox-content.swipe-right {
    margin-left: 200px !important
}

.vbox-animated {
    webkit-transition: margin .3s ease-out;
    transition: margin .3s ease-out
}

.sk-double-bounce, .sk-rotating-plane {
    width: 40px;
    height: 40px;
    margin: 40px auto
}

.sk-rotating-plane {
    background-color: #333;
    -webkit-animation: sk-rotatePlane 1.2s infinite ease-in-out;
    animation: sk-rotatePlane 1.2s infinite ease-in-out
}

@-webkit-keyframes sk-rotatePlane {
    0% {
        -webkit-transform: perspective(120px) rotateX(0) rotateY(0);
        transform: perspective(120px) rotateX(0) rotateY(0)
    }

    50% {
        -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0);
        transform: perspective(120px) rotateX(-180.1deg) rotateY(0)
    }

    100% {
        -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
        transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg)
    }
}

@keyframes sk-rotatePlane {
    0% {
        -webkit-transform: perspective(120px) rotateX(0) rotateY(0);
        transform: perspective(120px) rotateX(0) rotateY(0)
    }

    50% {
        -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0);
        transform: perspective(120px) rotateX(-180.1deg) rotateY(0)
    }

    100% {
        -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
        transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg)
    }
}

.sk-double-bounce {
    position: relative
}

    .sk-double-bounce .sk-child {
        width: 100%;
        height: 100%;
        border-radius: 50%;
        background-color: #333;
        opacity: .6;
        position: absolute;
        top: 0;
        left: 0;
        -webkit-animation: sk-doubleBounce 2s infinite ease-in-out;
        animation: sk-doubleBounce 2s infinite ease-in-out
    }

.sk-chasing-dots .sk-child, .sk-spinner-pulse, .sk-three-bounce .sk-child {
    background-color: #333;
    border-radius: 100%
}

.sk-double-bounce .sk-double-bounce2 {
    -webkit-animation-delay: -1s;
    animation-delay: -1s
}

@-webkit-keyframes sk-doubleBounce {
    0%,100% {
        -webkit-transform: scale(0);
        transform: scale(0)
    }

    50% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@keyframes sk-doubleBounce {
    0%,100% {
        -webkit-transform: scale(0);
        transform: scale(0)
    }

    50% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

.sk-wave {
    margin: 40px auto;
    width: 50px;
    height: 40px;
    text-align: center;
    font-size: 10px
}

    .sk-wave .sk-rect {
        background-color: #333;
        height: 100%;
        width: 6px;
        display: inline-block;
        -webkit-animation: sk-waveStretchDelay 1.2s infinite ease-in-out;
        animation: sk-waveStretchDelay 1.2s infinite ease-in-out
    }

    .sk-wave .sk-rect1 {
        -webkit-animation-delay: -1.2s;
        animation-delay: -1.2s
    }

    .sk-wave .sk-rect2 {
        -webkit-animation-delay: -1.1s;
        animation-delay: -1.1s
    }

    .sk-wave .sk-rect3 {
        -webkit-animation-delay: -1s;
        animation-delay: -1s
    }

    .sk-wave .sk-rect4 {
        -webkit-animation-delay: -.9s;
        animation-delay: -.9s
    }

    .sk-wave .sk-rect5 {
        -webkit-animation-delay: -.8s;
        animation-delay: -.8s
    }

@-webkit-keyframes sk-waveStretchDelay {
    0%,100%,40% {
        -webkit-transform: scaleY(.4);
        transform: scaleY(.4)
    }

    20% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1)
    }
}

@keyframes sk-waveStretchDelay {
    0%,100%,40% {
        -webkit-transform: scaleY(.4);
        transform: scaleY(.4)
    }

    20% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1)
    }
}

.sk-wandering-cubes {
    margin: 40px auto;
    width: 40px;
    height: 40px;
    position: relative
}

    .sk-wandering-cubes .sk-cube {
        background-color: #333;
        width: 10px;
        height: 10px;
        position: absolute;
        top: 0;
        left: 0;
        -webkit-animation: sk-wanderingCube 1.8s ease-in-out -1.8s infinite both;
        animation: sk-wanderingCube 1.8s ease-in-out -1.8s infinite both
    }

.sk-chasing-dots, .sk-spinner-pulse {
    width: 40px;
    height: 40px;
    margin: 40px auto
}

.sk-wandering-cubes .sk-cube2 {
    -webkit-animation-delay: -.9s;
    animation-delay: -.9s
}

@-webkit-keyframes sk-wanderingCube {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }

    25% {
        -webkit-transform: translateX(30px) rotate(-90deg) scale(.5);
        transform: translateX(30px) rotate(-90deg) scale(.5)
    }

    50% {
        -webkit-transform: translateX(30px) translateY(30px) rotate(-179deg);
        transform: translateX(30px) translateY(30px) rotate(-179deg)
    }

    50.1% {
        -webkit-transform: translateX(30px) translateY(30px) rotate(-180deg);
        transform: translateX(30px) translateY(30px) rotate(-180deg)
    }

    75% {
        -webkit-transform: translateX(0) translateY(30px) rotate(-270deg) scale(.5);
        transform: translateX(0) translateY(30px) rotate(-270deg) scale(.5)
    }

    100% {
        -webkit-transform: rotate(-360deg);
        transform: rotate(-360deg)
    }
}

@keyframes sk-wanderingCube {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }

    25% {
        -webkit-transform: translateX(30px) rotate(-90deg) scale(.5);
        transform: translateX(30px) rotate(-90deg) scale(.5)
    }

    50% {
        -webkit-transform: translateX(30px) translateY(30px) rotate(-179deg);
        transform: translateX(30px) translateY(30px) rotate(-179deg)
    }

    50.1% {
        -webkit-transform: translateX(30px) translateY(30px) rotate(-180deg);
        transform: translateX(30px) translateY(30px) rotate(-180deg)
    }

    75% {
        -webkit-transform: translateX(0) translateY(30px) rotate(-270deg) scale(.5);
        transform: translateX(0) translateY(30px) rotate(-270deg) scale(.5)
    }

    100% {
        -webkit-transform: rotate(-360deg);
        transform: rotate(-360deg)
    }
}

.sk-spinner-pulse {
    -webkit-animation: sk-pulseScaleOut 1s infinite ease-in-out;
    animation: sk-pulseScaleOut 1s infinite ease-in-out
}

@-webkit-keyframes sk-pulseScaleOut {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0)
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0
    }
}

@keyframes sk-pulseScaleOut {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0)
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0
    }
}

.sk-chasing-dots {
    position: relative;
    text-align: center;
    -webkit-animation: sk-chasingDotsRotate 2s infinite linear;
    animation: sk-chasingDotsRotate 2s infinite linear
}

    .sk-chasing-dots .sk-child {
        width: 60%;
        height: 60%;
        display: inline-block;
        position: absolute;
        top: 0;
        -webkit-animation: sk-chasingDotsBounce 2s infinite ease-in-out;
        animation: sk-chasingDotsBounce 2s infinite ease-in-out
    }

    .sk-chasing-dots .sk-dot2 {
        top: auto;
        bottom: 0;
        -webkit-animation-delay: -1s;
        animation-delay: -1s
    }

@-webkit-keyframes sk-chasingDotsRotate {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@keyframes sk-chasingDotsRotate {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@-webkit-keyframes sk-chasingDotsBounce {
    0%,100% {
        -webkit-transform: scale(0);
        transform: scale(0)
    }

    50% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@keyframes sk-chasingDotsBounce {
    0%,100% {
        -webkit-transform: scale(0);
        transform: scale(0)
    }

    50% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

.sk-three-bounce {
    margin: 40px auto;
    width: 80px;
    text-align: center
}

    .sk-three-bounce .sk-child {
        width: 20px;
        height: 20px;
        display: inline-block;
        -webkit-animation: sk-three-bounce 1.4s ease-in-out 0s infinite both;
        animation: sk-three-bounce 1.4s ease-in-out 0s infinite both
    }

.sk-circle .sk-child:before, .sk-fading-circle .sk-circle:before {
    display: block;
    border-radius: 100%;
    content: '';
    background-color: #333
}

.sk-three-bounce .sk-bounce1 {
    -webkit-animation-delay: -.32s;
    animation-delay: -.32s
}

.sk-three-bounce .sk-bounce2 {
    -webkit-animation-delay: -.16s;
    animation-delay: -.16s
}

@-webkit-keyframes sk-three-bounce {
    0%,100%,80% {
        -webkit-transform: scale(0);
        transform: scale(0)
    }

    40% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@keyframes sk-three-bounce {
    0%,100%,80% {
        -webkit-transform: scale(0);
        transform: scale(0)
    }

    40% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

.sk-circle {
    margin: 40px auto;
    width: 40px;
    height: 40px;
    position: relative
}

    .sk-circle .sk-child {
        width: 100%;
        height: 100%;
        position: absolute;
        left: 0;
        top: 0
    }

        .sk-circle .sk-child:before {
            margin: 0 auto;
            width: 15%;
            height: 15%;
            -webkit-animation: sk-circleBounceDelay 1.2s infinite ease-in-out both;
            animation: sk-circleBounceDelay 1.2s infinite ease-in-out both
        }

    .sk-circle .sk-circle2 {
        -webkit-transform: rotate(30deg);
        -ms-transform: rotate(30deg);
        transform: rotate(30deg)
    }

    .sk-circle .sk-circle3 {
        -webkit-transform: rotate(60deg);
        -ms-transform: rotate(60deg);
        transform: rotate(60deg)
    }

    .sk-circle .sk-circle4 {
        -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        transform: rotate(90deg)
    }

    .sk-circle .sk-circle5 {
        -webkit-transform: rotate(120deg);
        -ms-transform: rotate(120deg);
        transform: rotate(120deg)
    }

    .sk-circle .sk-circle6 {
        -webkit-transform: rotate(150deg);
        -ms-transform: rotate(150deg);
        transform: rotate(150deg)
    }

    .sk-circle .sk-circle7 {
        -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        transform: rotate(180deg)
    }

    .sk-circle .sk-circle8 {
        -webkit-transform: rotate(210deg);
        -ms-transform: rotate(210deg);
        transform: rotate(210deg)
    }

    .sk-circle .sk-circle9 {
        -webkit-transform: rotate(240deg);
        -ms-transform: rotate(240deg);
        transform: rotate(240deg)
    }

    .sk-circle .sk-circle10 {
        -webkit-transform: rotate(270deg);
        -ms-transform: rotate(270deg);
        transform: rotate(270deg)
    }

    .sk-circle .sk-circle11 {
        -webkit-transform: rotate(300deg);
        -ms-transform: rotate(300deg);
        transform: rotate(300deg)
    }

    .sk-circle .sk-circle12 {
        -webkit-transform: rotate(330deg);
        -ms-transform: rotate(330deg);
        transform: rotate(330deg)
    }

    .sk-circle .sk-circle2:before {
        -webkit-animation-delay: -1.1s;
        animation-delay: -1.1s
    }

    .sk-circle .sk-circle3:before {
        -webkit-animation-delay: -1s;
        animation-delay: -1s
    }

    .sk-circle .sk-circle4:before {
        -webkit-animation-delay: -.9s;
        animation-delay: -.9s
    }

    .sk-circle .sk-circle5:before {
        -webkit-animation-delay: -.8s;
        animation-delay: -.8s
    }

    .sk-circle .sk-circle6:before {
        -webkit-animation-delay: -.7s;
        animation-delay: -.7s
    }

    .sk-circle .sk-circle7:before {
        -webkit-animation-delay: -.6s;
        animation-delay: -.6s
    }

    .sk-circle .sk-circle8:before {
        -webkit-animation-delay: -.5s;
        animation-delay: -.5s
    }

    .sk-circle .sk-circle9:before {
        -webkit-animation-delay: -.4s;
        animation-delay: -.4s
    }

    .sk-circle .sk-circle10:before {
        -webkit-animation-delay: -.3s;
        animation-delay: -.3s
    }

    .sk-circle .sk-circle11:before {
        -webkit-animation-delay: -.2s;
        animation-delay: -.2s
    }

    .sk-circle .sk-circle12:before {
        -webkit-animation-delay: -.1s;
        animation-delay: -.1s
    }

@-webkit-keyframes sk-circleBounceDelay {
    0%,100%,80% {
        -webkit-transform: scale(0);
        transform: scale(0)
    }

    40% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@keyframes sk-circleBounceDelay {
    0%,100%,80% {
        -webkit-transform: scale(0);
        transform: scale(0)
    }

    40% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

.sk-cube-grid {
    width: 40px;
    height: 40px;
    margin: 40px auto
}

    .sk-cube-grid .sk-cube {
        width: 33.33%;
        height: 33.33%;
        background-color: #333;
        float: left;
        -webkit-animation: sk-cubeGridScaleDelay 1.3s infinite ease-in-out;
        animation: sk-cubeGridScaleDelay 1.3s infinite ease-in-out
    }

    .sk-cube-grid .sk-cube1 {
        -webkit-animation-delay: .2s;
        animation-delay: .2s
    }

    .sk-cube-grid .sk-cube2 {
        -webkit-animation-delay: .3s;
        animation-delay: .3s
    }

    .sk-cube-grid .sk-cube3 {
        -webkit-animation-delay: .4s;
        animation-delay: .4s
    }

    .sk-cube-grid .sk-cube4 {
        -webkit-animation-delay: .1s;
        animation-delay: .1s
    }

    .sk-cube-grid .sk-cube5 {
        -webkit-animation-delay: .2s;
        animation-delay: .2s
    }

    .sk-cube-grid .sk-cube6 {
        -webkit-animation-delay: .3s;
        animation-delay: .3s
    }

    .sk-cube-grid .sk-cube7 {
        -webkit-animation-delay: 0s;
        animation-delay: 0s
    }

    .sk-cube-grid .sk-cube8 {
        -webkit-animation-delay: .1s;
        animation-delay: .1s
    }

    .sk-cube-grid .sk-cube9 {
        -webkit-animation-delay: .2s;
        animation-delay: .2s
    }

@-webkit-keyframes sk-cubeGridScaleDelay {
    0%,100%,70% {
        -webkit-transform: scale3D(1,1,1);
        transform: scale3D(1,1,1)
    }

    35% {
        -webkit-transform: scale3D(0,0,1);
        transform: scale3D(0,0,1)
    }
}

@keyframes sk-cubeGridScaleDelay {
    0%,100%,70% {
        -webkit-transform: scale3D(1,1,1);
        transform: scale3D(1,1,1)
    }

    35% {
        -webkit-transform: scale3D(0,0,1);
        transform: scale3D(0,0,1)
    }
}

.sk-fading-circle {
    margin: 40px auto;
    width: 40px;
    height: 40px;
    position: relative
}

    .sk-fading-circle .sk-circle {
        width: 100%;
        height: 100%;
        position: absolute;
        left: 0;
        top: 0
    }

        .sk-fading-circle .sk-circle:before {
            margin: 0 auto;
            width: 15%;
            height: 15%;
            -webkit-animation: sk-circleFadeDelay 1.2s infinite ease-in-out both;
            animation: sk-circleFadeDelay 1.2s infinite ease-in-out both
        }

    .sk-fading-circle .sk-circle2 {
        -webkit-transform: rotate(30deg);
        -ms-transform: rotate(30deg);
        transform: rotate(30deg)
    }

    .sk-fading-circle .sk-circle3 {
        -webkit-transform: rotate(60deg);
        -ms-transform: rotate(60deg);
        transform: rotate(60deg)
    }

    .sk-fading-circle .sk-circle4 {
        -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        transform: rotate(90deg)
    }

    .sk-fading-circle .sk-circle5 {
        -webkit-transform: rotate(120deg);
        -ms-transform: rotate(120deg);
        transform: rotate(120deg)
    }

    .sk-fading-circle .sk-circle6 {
        -webkit-transform: rotate(150deg);
        -ms-transform: rotate(150deg);
        transform: rotate(150deg)
    }

    .sk-fading-circle .sk-circle7 {
        -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        transform: rotate(180deg)
    }

    .sk-fading-circle .sk-circle8 {
        -webkit-transform: rotate(210deg);
        -ms-transform: rotate(210deg);
        transform: rotate(210deg)
    }

    .sk-fading-circle .sk-circle9 {
        -webkit-transform: rotate(240deg);
        -ms-transform: rotate(240deg);
        transform: rotate(240deg)
    }

    .sk-fading-circle .sk-circle10 {
        -webkit-transform: rotate(270deg);
        -ms-transform: rotate(270deg);
        transform: rotate(270deg)
    }

    .sk-fading-circle .sk-circle11 {
        -webkit-transform: rotate(300deg);
        -ms-transform: rotate(300deg);
        transform: rotate(300deg)
    }

    .sk-fading-circle .sk-circle12 {
        -webkit-transform: rotate(330deg);
        -ms-transform: rotate(330deg);
        transform: rotate(330deg)
    }

    .sk-fading-circle .sk-circle2:before {
        -webkit-animation-delay: -1.1s;
        animation-delay: -1.1s
    }

    .sk-fading-circle .sk-circle3:before {
        -webkit-animation-delay: -1s;
        animation-delay: -1s
    }

    .sk-fading-circle .sk-circle4:before {
        -webkit-animation-delay: -.9s;
        animation-delay: -.9s
    }

    .sk-fading-circle .sk-circle5:before {
        -webkit-animation-delay: -.8s;
        animation-delay: -.8s
    }

    .sk-fading-circle .sk-circle6:before {
        -webkit-animation-delay: -.7s;
        animation-delay: -.7s
    }

    .sk-fading-circle .sk-circle7:before {
        -webkit-animation-delay: -.6s;
        animation-delay: -.6s
    }

    .sk-fading-circle .sk-circle8:before {
        -webkit-animation-delay: -.5s;
        animation-delay: -.5s
    }

    .sk-fading-circle .sk-circle9:before {
        -webkit-animation-delay: -.4s;
        animation-delay: -.4s
    }

    .sk-fading-circle .sk-circle10:before {
        -webkit-animation-delay: -.3s;
        animation-delay: -.3s
    }

    .sk-fading-circle .sk-circle11:before {
        -webkit-animation-delay: -.2s;
        animation-delay: -.2s
    }

    .sk-fading-circle .sk-circle12:before {
        -webkit-animation-delay: -.1s;
        animation-delay: -.1s
    }

@-webkit-keyframes sk-circleFadeDelay {
    0%,100%,39% {
        opacity: 0
    }

    40% {
        opacity: 1
    }
}

@keyframes sk-circleFadeDelay {
    0%,100%,39% {
        opacity: 0
    }

    40% {
        opacity: 1
    }
}

.sk-folding-cube {
    margin: 40px auto;
    width: 40px;
    height: 40px;
    position: relative;
    -webkit-transform: rotateZ(45deg);
    transform: rotateZ(45deg)
}

    .sk-folding-cube .sk-cube {
        float: left;
        width: 50%;
        height: 50%;
        position: relative;
        -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
        transform: scale(1.1)
    }

        .sk-folding-cube .sk-cube:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: #333;
            -webkit-animation: sk-foldCubeAngle 2.4s infinite linear both;
            animation: sk-foldCubeAngle 2.4s infinite linear both;
            -webkit-transform-origin: 100% 100%;
            -ms-transform-origin: 100% 100%;
            transform-origin: 100% 100%
        }

    .sk-folding-cube .sk-cube2 {
        -webkit-transform: scale(1.1) rotateZ(90deg);
        transform: scale(1.1) rotateZ(90deg)
    }

    .sk-folding-cube .sk-cube3 {
        -webkit-transform: scale(1.1) rotateZ(180deg);
        transform: scale(1.1) rotateZ(180deg)
    }

    .sk-folding-cube .sk-cube4 {
        -webkit-transform: scale(1.1) rotateZ(270deg);
        transform: scale(1.1) rotateZ(270deg)
    }

    .sk-folding-cube .sk-cube2:before {
        -webkit-animation-delay: .3s;
        animation-delay: .3s
    }

    .sk-folding-cube .sk-cube3:before {
        -webkit-animation-delay: .6s;
        animation-delay: .6s
    }

    .sk-folding-cube .sk-cube4:before {
        -webkit-animation-delay: .9s;
        animation-delay: .9s
    }

@-webkit-keyframes sk-foldCubeAngle {
    0%,10% {
        -webkit-transform: perspective(140px) rotateX(-180deg);
        transform: perspective(140px) rotateX(-180deg);
        opacity: 0
    }

    25%,75% {
        -webkit-transform: perspective(140px) rotateX(0);
        transform: perspective(140px) rotateX(0);
        opacity: 1
    }

    100%,90% {
        -webkit-transform: perspective(140px) rotateY(180deg);
        transform: perspective(140px) rotateY(180deg);
        opacity: 0
    }
}

@keyframes sk-foldCubeAngle {
    0%,10% {
        -webkit-transform: perspective(140px) rotateX(-180deg);
        transform: perspective(140px) rotateX(-180deg);
        opacity: 0
    }

    25%,75% {
        -webkit-transform: perspective(140px) rotateX(0);
        transform: perspective(140px) rotateX(0);
        opacity: 1
    }

    100%,90% {
        -webkit-transform: perspective(140px) rotateY(180deg);
        transform: perspective(140px) rotateY(180deg);
        opacity: 0
    }
}

.carrossel-midia .container-midia,
.carrossel-busca .container-midia {
    position: relative;
    display: inline-block;
    min-height: 65px;
}

    .carrossel-midia .container-midia img {
        padding: 10px;
    }

.carrossel-midia .owl-dots,
.carrossel-busca .owl-dots {
    height: 0;
}

.carrossel-midia .owl-nav button.owl-prev,
.carrossel-busca .owl-nav button.owl-prev {
    position: absolute;
    left: 20px;
    top: 50%;
    background: url(images/seta-midia-esquerda.png) no-repeat;
    width: 20px;
    height: 28px;
    overflow: hidden;
    text-indent: -9999px;
    margin-top: -14px;
}

.carrossel-midia .owl-nav button.owl-next,
.carrossel-busca .owl-nav button.owl-next {
    position: absolute;
    right: 20px;
    top: 50%;
    background: url(images/seta-midia-direita.png) no-repeat;
    width: 20px;
    height: 28px;
    overflow: hidden;
    text-indent: -9999px;
    margin-top: -14px;
}

.carrossel-busca .owl-nav button.owl-next {
    right: -6px;
    margin-top: -45px;
}

.carrossel-busca .owl-nav button.owl-prev {
    left: -8px;
    margin-top: -45px;
}

.carrossel-busca a {
    display: block;
}

.ver-conteudo {
    display: inline-flex;
    height: 40px;
    background-color: #2A62FE;
    border-radius: 5px;
    padding: 0 20px;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: Dm Sans;
    font-size: 15px;
    font-weight: 400;
    margin-top: 10px;
    transition: all 0.3s;
}

a:hover .ver-conteudo {
    color: #2A62FE;
    background-color: #e9e9e9;
}

.carrossel-busca .row {
    background-color: #f6f6f6;
    border-radius: 20px;
    height: 100%;
}

.carrossel-busca .owl-item {
    background-color: #f6f6f6;
    border-radius: 20px;
}

.efeito-overlay {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    position: absolute;
    background: rgba(241,216,133,0.8);
    transition: all 0.3s;
}

.carrossel-midia,
.carrossel-busca {
    background: #e6e6e6;
    border-radius: 20px;
    padding: 20px 90px;
    margin-top: 60px;
}

.carrossel-busca {
    background: white;
    border-radius: 0;
    padding: 0;
    margin-top: 30px;
}

.carrossel-midia .col-6 {
    align-items: center;
    /*justify-content: center;*/
    display: flex;
}

.carrossel-busca .col-6 {
    align-items: center;
    justify-content: center;
    display: flex;
}

.carrossel-busca .row {
    display: flex;
    flex-wrap: wrap;
    margin-right: 0;
    margin-left: 0;
    padding: 30px 20px;
}


.carrossel-busca .col-6 {
    padding: 0;
}

.carrossel-busca .row .col-6:first-child {
    padding: 0;
}

.carrossel-busca .row .col-6:last-child {
    padding: 0;
    padding-left: 10px;
}

.carrossel-midia .row .col-6:first-child,
.carrossel-busca .row .col-6:first-child {
    padding-right: 0;
}

.efeito-overlay.video {
    background: rgba(241,216,133,0.8) url(images/icone-video.png) no-repeat center center;
}

.carrossel-midia a:hover .efeito-overlay.video,
.carrossel-busca a:hover .efeito-overlay.video {
    background: rgba(241,216,133,0.2) url(images/icone-video.png) no-repeat center center;
}



.efeito-overlay.documento {
    background: rgba(241,216,133,0.8) url(images/icone-documento.png) no-repeat center center;
}

.carrossel-midia a:hover .efeito-overlay.documento,
.carrossel-busca a:hover .efeito-overlay.documento {
    background: rgba(241,216,133,0.2) url(images/icone-documento.png) no-repeat center center;
}

.carrossel-midia h3,
.carrossel-busca h3 {
    font-size: 16px;
    color: #2A62FE;
    font-weight: 500;
    margin: 0;
}

.carrossel-busca h3 {
    color: #2A62FE;
    font-family: 'Dm Sans', sans-serif;
    font-size: 15px;
    font-weight: 400;
}

.carrossel-busca .conteudo-destaque h3 {
    color: #2A62FE;
    font-family: 'Dm Sans', sans-serif;
    font-size: 19px;
    font-weight: 400;
}

.carrossel-busca .conteudo-destaque-noticia h3 {
    color: #2A62FE;
    font-family: 'Dm Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
}

.carrossel-busca p {
    color: #323232;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 0;
    line-height: 110%;
    margin-top: 5px;
}

.carrossel-busca .conteudo-destaque-noticia p {
    margin-top: 5px;
}

.carrossel-busca .col-12 p {
    margin-top: 15px;
}

.dt-login--container {
    background: url(assets/images/bg-login.jpg) no-repeat center center;
    background-size: cover;
}

.dt-login__bg-section {
    background-image: none !important;
}


.dt-main .dt-sidebar {
    background-color: #eeeeee;
    transition: all .2s ease;
}


.dt-main .dt-side-nav__sub-menu .dt-side-nav__link {
    color: #212121;
    padding-left: 50px;
}

.dt-login__logo .dt-brand__logo-img {
    width: 175px !important;
}

/* .dt-brand__logo-img {
    width: 342px !important;
} */

.dt-brand__logo-img {
    width: 250px !important;
}


.conteudo-destaque-noticia p, .conteudo-destaque-noticia span {
    all: revert !important;
    display: block !important;
}

span {
    white-space: initial !important;
}

.scroll-horizontal {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    width: 100%;
    transition: all 0.3s;
    min-height: 307px;
}

.cartao {
    margin-right: 20px;
    align-items: stretch;
}

.canvas-documento {
    max-height: 70vh;
    overflow-y: scroll;
    padding: 25px;
    position: relative;
    border: 1px solid #eee;
    border-radius: 5px;
}

    .canvas-documento::-webkit-scrollbar {
        width: 15px;
    }

.atualizar-documento {
    position: absolute;
    right: 30px;
    background: #496bb1;
    color: white;
    border-radius: 5px;
    padding: 8px 10px;
    top: 10px;
    transition: all 0.3s;
    z-index: 1;
    line-height: 100%;
    text-transform: uppercase;
}

    .atualizar-documento:hover {
        background: #d75614;
        color: white;
    }


.container-scroll {
    max-height: 70vh;
    overflow-y: scroll;
}

.conteudo-scroll {
    border-radius: 8px;
    background: #fbfbfb;
    border: 1px solid #e8e8e8;
    padding: 20px 35px;
    margin-right: 20px;
}

    .conteudo-scroll label,
    .conteudo-scroll span {
        display: block;
        width: 100%;
    }

    .conteudo-scroll input[type=text] {
        display: block;
        width: 100%;
    }

.container-scroll::-webkit-scrollbar {
    width: 15px;
}

.container-scroll::-webkit-scrollbar-track {
    box-shadow: none;
    border-radius: 7.5px;
    box-shadow: inset 0 0 2px grey;
    overflow: visible;
    width: 10px;
    background: #e6e6e6;
    border-left: 2.5px solid white;
    border-right: 2.5px solid white;
}

.container-scroll::-webkit-scrollbar-thumb {
    border-radius: 7.5px;
    background: #2A62FE;
    width: 15px;
}

    .container-scroll::-webkit-scrollbar-thumb:hover {
        background: #2A62FE;
    }




.editor-processo .container-sidebar {
    max-height: 70vh;
    overflow-y: scroll;
}

.editor-processo .sidebar {
    border-radius: 8px;
    background: #fbfbfb;
    border: 1px solid #e8e8e8;
    padding: 20px 35px;
    margin-right: 20px;
}

    .editor-processo .sidebar label,
    .editor-processo .sidebar span {
        display: block;
        width: 100%;
    }

    .editor-processo .sidebar input[type=text] {
        display: block;
        width: 100%;
    }

.container-sidebar::-webkit-scrollbar {
    width: 15px;
}

.container-sidebar::-webkit-scrollbar-track {
    box-shadow: none;
    border-radius: 7.5px;
    box-shadow: inset 0 0 2px grey;
    overflow: visible;
    width: 10px;
    background: #e6e6e6;
    border-left: 2.5px solid white;
    border-right: 2.5px solid white;
}

.container-sidebar::-webkit-scrollbar-thumb {
    border-radius: 7.5px;
    background: #2A62FE;
    width: 15px;
}

    .container-sidebar::-webkit-scrollbar-thumb:hover {
        background: #2A62FE;
    }

.editor-processo .sidebar input[type=text] {
    height: 50px;
    width: 100%;
    background: white;
    border: 1px solid #e3e3e3;
    border-radius: 5px;
    font-size: 14px;
    padding: 0 10px;
    color: #212121;
    margin-bottom: 10px;
}

.editor-processo .sidebar label,
.editor-processo .sidebar span {
    font-size: 16px;
    font-weight: 500;
    color: #212121;
    margin-bottom: 2px;
    margin-left: 10px;
}

.editor-processo .sidebar textarea {
    height: 120px;
    resize: none;
    width: 100%;
    background: white;
    border: 1px solid #e3e3e3;
    border-radius: 5px;
    font-size: 14px;
    color: #212121;
    padding: 10px;
    margin-bottom: 10px;
}

.canvas-documento::-webkit-scrollbar-track {
    box-shadow: none;
    border-radius: 5px;
    box-shadow: inset 0 0 2px grey;
    overflow: visible;
    width: 10px;
    background: #e6e6e6;
    border-left: 2.5px solid white;
    border-right: 2.5px solid white;
}

.canvas-documento::-webkit-scrollbar-thumb {
    border-radius: 7.5px;
    background: #2A62FE;
    width: 15px;
    transition: all 0.3s;
}

    .canvas-documento::-webkit-scrollbar-thumb:hover {
        background: #2A62FE;
    }
/* .scroll-horizontal::-webkit-scrollbar {
        width: 5px;
    }

.scroll-horizontal::-webkit-scrollbar-track {
        box-shadow: inset 0 0 2px grey; 
        border-radius: 10px;
    }
.scroll-horizontal::-webkit-scrollbar-thumb {
        background: rgb(7, 7, 7); 
        border-radius: 10px;
    }
.scroll-horizontal::-webkit-scrollbar-thumb:hover {
        background: #009eb3; 
    } */
.cartao {
    flex: 0 0 25%;
    transition: all 0.3s;
}

    .cartao.fechado {
        float: left;
        flex: 0 0 25%;
    }

    .cartao.aberto {
        flex: 0 0 50%;
        float: left;
    }

#conteudo_pnlRenderDocumento span {
    white-space: pre-wrap !important;
}

.dt-sidebar--fixed .dt-brand + .dt-header__toolbar {
    margin-left: calc(350px);
}

.dt-brand {
    width: 420px !important;
}

.dt-sidebar--fixed .dt-brand + .dt-header__toolbar {
    margin-left: calc(450px) !important;
}

.container-processos .media img {
    max-width: 45px;
    margin-right: 10px;
}

.container-processos .dt-card {
    margin-bottom: 0;
    border-radius: 10px;
    height: 100%;
    display: flex;
}

.container-processos .media {
    display: flex;
    align-items: flex-end;
    font-size: 19px;
}

.container-processos p {
    margin: 0 0 20px;
}

.dt-side-nav .dt-side-nav__item.selected > a {
    background-color: rgba(255, 255, 255, 0.15) !important;
    color: #0A3FA5 !important;
    border-radius: 8px;
    margin: 2px 10px !important;
    padding: 10px 20px !important;
}

    .dt-side-nav .dt-side-nav__item.selected > a.dt-side-nav__link span,
    .dt-side-nav .dt-side-nav__item.selected > a.dt-side-nav__link i {
        color: #0A3FA5 !important;
        opacity: 1;
    }

.dt-side-nav > .dt-side-nav__item.selected > a, .dt-side-nav > .dt-side-nav__item.open > a {
    background: #193B98;
    color: white !important;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}

.bg-gradient-purple, .bg-gradient-purple--after:after {
    background-image: none !important;
    background-repeat: repeat-x;
    background: #193B98 !important;
}

.canvas-documento a {
    color: #193B98;
    text-decoration: none;
    color: #005689;
    padding: 0 0px;
    border-radius: 0px;
    border-bottom-style: dashed;
    border-bottom-width: 1px;
}

    .canvas-documento a.aspNetDisabled {
        color: #757575;
        padding: 0;
        border-bottom-width: 0;
    }

.canvas-documento p {
    font-size: 16px !important;
    line-height: 150% !important;
}

.interrogacao {
    position: absolute;
    right: -30px;
    top: calc(50% - 5px);
    background: #2A62FE;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    padding: 0;
    line-height: 10px;
    cursor: pointer;
}

.interrogacao-fixa {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background: #193B98;
    color: white;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    padding: 0;
    line-height: 25px;
    cursor: pointer;
    z-index: 9999;
}

.botao-ver-todos {
    width: 150px;
    height: 35px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 500;
    background: #193B98;
    padding: 0;
    text-transform: uppercase;
    border-radius: 5px;
    transition: all 0.3s;
}

    .botao-ver-todos:hover {
        background: #2A62FE;
        color: white;
    }

.dropdown-menu p {
    font-size: 16px;
    line-height: 140%;
}

.titulo-tipo-processo {
    color: #193B98;
    font-size: 22px;
    margin: 7px 20px 30px 0px;
    font-weight: 500;
    text-transform: uppercase;
    float: left;
}

.container-processo h2 {
    font-size: 18px;
    color: #193B98;
    padding: 25px;
    margin: 0;
    text-transform: uppercase;
}

.dt-card, .dt-module {
    position: relative;
    box-shadow: none;
    margin-bottom: 3.2rem;
    background-color: #fff;
    border-radius: .4rem;
    border: 1px solid #e3e3e3;
}

.btn-interrogacao {
    font-size: 11px;
    color: white;
    background: #2A62FE;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 17px;
    height: 17px;
    border-radius: 15px;
    position: absolute;
    right: -25px;
    top: 30px;
    line-height: 80%;
    cursor: pointer;
    transition: all 0.3s;
}

    .btn-interrogacao:hover {
        color: white;
        background: #193B98;
    }

.popover-body p {
    font-size: 13px;
}

.dt-side-nav__text {
    text-transform: none;
}

.dt-entry__header {
    display: block;
}

.popover {
    max-width: 480px;
}

.seletor-processos {
    margin-left: 25px;
}

label.azul-claro {
    color: #2A62FE;
    font-weight: 500;
    font-size: 17px;
    margin-bottom: 5px;
}

.flex-centro {
    display: flex;
    align-items: center;
}

.btn.botao-padrao {
    width: 190px;
    height: 40px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 500;
    background: #2A62FE;
    padding: 0;
    text-transform: uppercase;
}

    .btn.botao-padrao.alinha-direita {
        float: right;
        background: #7FA1FE;
    }

h1.titulo-azul {
    font-size: 17px;
    font-weight: 500;
    color: #2A62FE;
    line-height: 120%;
    margin-bottom: 5px;
}

    h1.titulo-azul.alinha-direita {
        text-align: right;
        margin-bottom: 0;
        float: right;
        margin-right: 20px;
    }

.seletor-processos a {
    display: inline-block;
    padding: 10px 20px 10px 15px;
    background: #193B98;
    color: white;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 500;
    position: relative;
    text-transform: uppercase;
    margin-left: -11px;
    transition: all 0.3s;
}

    .seletor-processos a:hover {
        background: #2A62FE !important;
    }

    .seletor-processos a:after {
        content: " ";
        background: url(images/seta-processo.png) no-repeat;
        width: 13px;
        height: 16px;
        position: absolute;
        right: 0;
        right: -2px;
        top: 12px;
        z-index: 1;
    }

    .seletor-processos a:last-child:after {
        display: none;
    }

    .seletor-processos a:nth-child(2) {
        background: #3c57be;
    }

    .seletor-processos a:nth-child(3) {
        background: #3c70be;
    }

    .seletor-processos a:nth-child(4) {
        background: #2A62FE;
    }

.identificador-processo {
    margin: 30px 15px 30px;
}

    .identificador-processo .icon {
        width: 20px;
    }

    .identificador-processo .icon-chevrolet-left:before {
        content: "\31";
        font-weight: bold !important;
        font-size: 26px;
    }

    .identificador-processo a {
        background: #2A62FE;
        text-transform: uppercase;
        font-size: 18px;
        font-weight: 500;
        color: white !important;
        border-radius: 5px;
        padding: 7px 30px 5px 20px;
        cursor: pointer;
        transition: all 0.3s;
        display: inline-block;
        margin-right: 10px;
    }

        .identificador-processo a:hover {
            background: #d75614;
        }

    .identificador-processo span {
        text-transform: uppercase;
        font-size: 20px;
        font-weight: 500;
        color: #193B98;
    }

.fluxo-processo .dt-card {
    border-radius: 10px;
}

.fluxo-processo .conteudo-processo {
    padding: 20px 30px 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.topo-card {
    background: #193B98;
    height: 42px;
    width: 100%;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.lista-processos {
    background: #f4f4f4;
    border-radius: 20px;
    padding: 20px;
}

.categoria-processo {
    color: #555555;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 5px;
}

.titulo-processo {
    font-weight: 600;
    font-size: 14px;
    color: #000000;
    text-transform: none;
    margin-bottom: 8px;
    line-height: 120%;
}

.conteudo-processo {
    padding: 20px;
    height: calc(100% - 42px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

    .conteudo-processo p {
        font-size: 14px;
        color: #7a7a7a;
        line-height: 140%;
        line-height: 130%;
        font-weight: 500;
    }

    .conteudo-processo .botao-processo {
        background: transparent;
        width: 100%;
        color: #2A62FE;
        text-transform: uppercase;
        font-size: 14px;
        font-weight: 500;
        height: 40px;
        border-radius: 5px;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid #2A62FE;
        transition: all 0.3s;
    }

.container-concluidos .conteudo-processo .botao-processo {
    background: #EAEFFF;
    width: 100%;
    color: #7FA1FE;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    height: 40px;
    border-radius: 5px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #CCD9FF;
    transition: all 0.3s;
}

.conteudo-processo .botao-processo:hover {
    color: white;
    background: #2A62FE;
}

.cartao.aberto .conteudo-processo .botao-processo {
    width: 50%;
    float: left;
}

.cartao.aberto .resumo-processo {
    display: none;
}

.cartao.fechado .texto-processo {
    display: none;
}

.controles-processo {
    width: 50%;
    float: left;
}

    .controles-processo .processo-botao {
        display: inline-block;
        margin-left: 20px;
    }

.botoes-fa {
    color: #2A62FE;
}

.cartao.fechado .controles-processo {
    display: none;
}

.card-processo {
    width: 100%;
}

.cartao.aberto .controles-processo {
    display: inline-flex;
    float: left;
    height: 40px;
    align-items: center;
    justify-content: flex-end;
}

.card-processo .mb-3 {
    margin-bottom: 0 !important;
}

#conteudo_btnFiltrar {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 24px;
}

.caixa-selecao {
    transition: all 0.3s;
    position: relative;
}

.dt-card a.ativo .caixa-selecao {
    background: #2A62FE;
    color: #2A62FE;
    border-radius: 9px;
}

.dt-card a.ativo h2 {
    color: white;
}

.caixa-selecao:hover {
    background: #f1d885;
    color: #2A62FE;
    border-radius: 9px;
}

.container-processo .caixa-selecao:hover h2 {
    color: #1c3869;
}

.caixa-selecao h2 {
    transition: all 0.3s;
}

.caixa-selecao:hover h2 {
    color: white;
}

.caixa-selecao.caixa-ativa span {
    color: white;
}

.caixa-selecao.caixa-ativa {
    background: #005689;
}

.caixa-selecao a {
    color: white;
}

.icone-tabela {
    font-size: 28px;
    margin-right: 5px;
    color: #7ca3dd;
}

.icone-lixeira {
    font-size: 23px;
    margin-right: 0px;
    color: #f44336;
}

.icone-adicionar {
    font-size: 23px;
    margin-right: 0px;
    color: white;
}

.obrigatorio {
    visibility: visible;
    color: #f44336;
    font-size: 11px;
    margin-left: 18px;
    margin-top: 4px;
    position: relative;
    clear: both;
}

.tabela-com-icone th:last-child {
    text-align: center;
}


/*label {
    display: inline-block;
    margin-bottom: .5rem;
    margin-left: 5px;
}*/

/* label {
display: inline-block;
margin-bottom: 15px;
margin-left: 15px;
font-size: 18px;
} */

label {
    display: inline-block;
    margin-bottom: 2px;
    margin-left: 10px;
    font-size: 18px;
}

.tabela-word {
    border-collapse: collapse;
    border: none;
    margin-left: 0;
    margin-bottom: 5px;
    margin-top: 5px;
}

    .tabela-word thead tr:first-child td {
        vertical-align: top;
        width: 118.6pt;
        border-top: solid windowtext 1.0pt;
        padding-top: 0;
        border-right: solid windowtext 1.0pt;
        padding-right: 5.4pt;
        border-bottom: solid windowtext 1.0pt;
        padding-bottom: 0;
        border-left: solid windowtext 1.0pt;
        padding-left: 5.4pt;
        background: #BFBFBF;
    }

    .tabela-word tbody td {
        vertical-align: top;
        width: 118.6pt;
        border-top: solid windowtext 1.0pt;
        padding-top: 0;
        border-right: solid windowtext 1.0pt;
        padding-right: 5.4pt;
        border-bottom: solid windowtext 1.0pt;
        padding-bottom: 0;
        border-left: solid windowtext 1.0pt;
        padding-left: 5.4pt;
    }
/******************* MODAL  *******************************/
.modalBackground {
    background-color: #03213b;
    filter: alpha(opacity=70);
    opacity: 0.7;
}

.modal-content {
    padding-right: 10px;
}

.modal-body {
    max-height: calc(100vh - 230px);
    overflow-y: scroll;
    overflow-x: auto;
    position: relative;
    flex: 1 1 auto;
    margin: 18px 4px;
    padding: 0 20px;
}

    .modal-body::-webkit-scrollbar {
        width: 15px;
        padding: 10px;
    }

    .modal-body::-webkit-scrollbar-track {
        box-shadow: none;
        border-radius: 7.5px;
        box-shadow: inset 0 0 2px grey;
        overflow: visible;
        width: 10px;
        background: #e6e6e6;
        border-left: 4px solid white;
        border-right: 4px solid white;
    }

    .modal-body::-webkit-scrollbar-thumb {
        border-radius: 7.5px;
        background: #2A62FE;
        width: 15px;
    }

        .modal-body::-webkit-scrollbar-thumb:hover {
            background: #2A62FE;
        }

.modalInside {
    z-index: 1;
    min-width: 40%;
    max-height: 95%;
    overflow: auto;
    background-color: white;
}

.imagem-pessoa {
    height: 140px;
    width: 150px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    margin-bottom: 0;
    position: absolute;
    right: 36px;
    top: 36px;
}

.imagem-pessoa-small {
    height: 150px;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    margin-bottom: 15px;
}

.table td {
    font-size: 16px;
}

h1 .subtitulo {
    color: #193B98;
    font-size: 18px;
}

.modalInside .p-0 {
    padding: 0rem 3.2rem 2.8rem !important;
}

.form-inline input[type=submit] {
    margin-right: 10px;
}

.modalInside .form-inline input[type=submit] {
    display: block;
    width: 100%;
    margin-top: 30px;
    margin-right: 0;
}

.modalInside td {
    font-size: 18px;
}

.custom-control {
    padding-left: 0;
}

#conteudo_fpImagem {
    margin-bottom: 30px;
}

.dt-card__body {
    padding: 2.5rem 2.5rem;
    display: block;
}

.dt-card__header {
    margin-bottom: 3rem;
    padding: 2.5rem 2.5rem 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

h3.titulo-popup {
    font-size: 24px !important;
}

.alertas {
    position: fixed;
    width: calc(100vw - 80px);
    left: 40px;
    z-index: 99999;
    top: 92px;
}

.container-voltar {
    color: #193B98;
    height: 20px;
    display: inline-flex;
    align-items: center;
    /* margin-bottom: 20px;
    margin-left: -10px;*/
    border-radius: 3px;
    transition: all 0.3s;
    font-size: 12px;
    padding: 13px 10px 13px 0px;
}

    .container-voltar:hover {
        background: #193B98;
        color: white;
    }

    .container-voltar i {
        font-size: 2.6rem;
        width: 23px;
        text-align: left;
    }

.form-inline-com-margem-bottom {
    margin-bottom: 30px;
}

.modalInside .form-inline {
    display: flex;
    flex-flow: nowrap;
    align-items: center;
}

    .modalInside .form-inline input[type=submit] {
        display: block;
        width: 100%;
        margin-top: 10px;
        margin-right: 5px;
    }


.fluxo-processo .dt-icon-alert {
    position: initial;
}

.fluxo-processo a p {
    color: #757575;
}

.fluxo-processo .ativo .btn-outline-primary {
    color: #757575;
    background-color: transparent;
    border-color: transparent;
    text-align: right;
    display: block;
}

.fluxo-processo .ativo .dt-card {
    position: relative;
    box-shadow: 0 0 5px 0 rgba(0,155,0,1);
    margin-bottom: 3.2rem;
    background-color: #fff;
    border-radius: .4rem;
}




.fluxo-processo .dt-card,
.fluxo-processo .dt-card a p,
.fluxo-processo .dt-card .btn-outline-primary,
.fluxo-processo .dt-card a .h2,
.fluxo-processo .dt-card .text-light-gray,
.card-processo .topo-card {
    transition: all 0.3s;
}



    /* .card-processo:hover .topo-card {
    background: #d75614 !important;
} */
    .fluxo-processo .dt-card:hover p {
        color: #d75614 !important;
    }

    .fluxo-processo .dt-card:hover .h2 {
        color: #d75614 !important;
    }

    .fluxo-processo .dt-card:hover .categoria-processo {
        color: #d75614 !important;
    }

    .fluxo-processo .dt-card:hover .btn-outline-primary {
        color: #d75614 !important;
        background-color: transparent;
        border-color: #d75614;
    }

    /*.card-processo:hover .conteudo-processo .botao-processo {
    background:  #d82f15 !important;
}*/

    .fluxo-processo .dt-card:hover {
        position: relative;
        box-shadow: 0;
        background: #f1d885;
    }
/*.modal-dialog {
	max-width: initial !important;
}
*/

.dt-brand__tool {
    float: right;
    color: white;
    top: 5px;
    position: absolute;
    left: 5px;
    transition: all 0.3s;
}

    .dt-brand__tool.active {
        transform: rotate(180deg);
    }

.icone-cancelar {
    color: #f44336;
}

.dt-login__bg-section:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background-color: #193B98;
}

.dt-main .dt-sidebar {
    background-color: #193B98;
    transition: all .2s ease;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}

.dt-login__content .form-group {
    margin: 0;
}

.dt-login__content-footer {
    position: absolute;
    bottom: 0;
    width: 100%;
}

.dt-login__content-inner {
    padding: 4rem 3.2rem 6.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.btn-primary {
    color: #fff;
    background-color: #2A62FE;
    border-color: #2A62FE;
}

.entrar-sistema {
    width: 100%;
    font-size: 18px;
    margin: 0;
    padding: 0;
    height: 45px;
    font-weight: 500;
}

.dt-sidebar--fixed .dt-sidebar {
    height: 100vh;
    z-index: 9999;
}

.dt-side-nav__text.active .dt-side-nav__text {
    color: white;
}

.dt-sidebar--folded:not(.dt-sidebar--expended) .search-box {
    display: none !important;
}

.dt-sidebar--folded:not(.dt-sidebar--expended) .dt-side-nav__header:before {
    content: "";
    display: none !important;
}

.dt-brand__logo-img {
    width: 100% !important;
    margin-bottom: 30px;
}

.dt-login--container {
    flex-direction: column;
}


.login-adm .dt-login__bg-section:before {
    background-color: #2A62FE;
}

.login-adm .btn-primary {
    background-color: #2A62FE;
    border: 1px solid #2A62FE;
}

.login-adm .dt-login__content-footer a {
    color: #2A62FE;
}

.dt-header {
    position: relative !important;
    z-index: 99;
    /* height: 120px; */
    background-color: #fff;
    box-shadow: none;
    transition: all .2s ease;
    width: 100%;
    height: 90px;
}

    .dt-header .dt-header__container {
        display: flex;
        height: 100%;
        margin: 0 40px;
        border-bottom: 3px solid #e8e8e8;
    }

    .dt-header h1 {
        font-family: 'Dm Sans', sans-serif;
        font-size: 32px;
        color: #193B98;
        font-weight: 400;
        height: auto;
        line-height: 100%;
        margin: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 10px;
    }

    .dt-header .subtitulo {
        color: #2A62FE;
        font-size: 21px;
        line-height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .dt-header .subtitulo:before {
            content: " | ";
            font-size: 40px;
            color: #193B98;
            display: inline-block;
            position: relative;
            margin: 0 10px 0;
        }

.dt-header__toolbar {
    width: 100%;
}

.dt-side-nav__link {
    color: #ffffff;
}

.dt-side-nav__text {
    text-transform: none;
    color: #ffffff;
    font-weight: 400;
}

.dt-side-nav .dt-side-nav__item.selected > a {
    background-color: rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
    border-radius: 8px;
    margin: 2px 10px !important;
    padding: 10px 20px !important;
}



.dt-side-nav__link {
    padding: 10px 20px !important;
    margin: 2px 10px !important;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

    .dt-side-nav__link:hover {
        background-color: rgba(255, 255, 255, 0.05);
    }

.dt-side-nav__text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
}

.dt-side-nav__header:before {
    content: "";
    display: block;
    height: 1px;
    width: 100%;
    background-color: #2A62FE;
    margin-bottom: 20px;
}

.fa-input {
    font-family: "gaxondrift" !important;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
    background: white;
    box-shadow: none;
    border: none;
    padding: 0 10px;
    color: #aaa;
    font-size: 18px;
}

.dt-side-nav__item.selected a::after {
    display: inline-block;
    width: 10px;
    height: 10px;
    position: absolute;
    content: " ";
    right: 5px;
    border-radius: 10px;
}

.dt-side-nav__header:not(:first-child) {
    padding-top: 10px;
}

    .dt-side-nav__header:not(:first-child):before {
        background-color: #2A62FE;
    }

.search-box {
    position: relative;
    max-width: 400px;
    width: 100%;
    padding: 10px 0 15px 20px;
}

    .search-box input[type=search] {
        padding-left: 20px;
        font-weight: 300;
    }

.dt-nav__link {
    color: #000000;
}

.form-control {
    display: block;
    width: 100%;
    /* height: 32px; */
    padding: 0 15px;
    /* font-size: 1.4rem; */
    font-weight: 400;
    /* line-height: 1.4; */
    color: #757575;
    background-color: #fff;
    background-clip: padding-box;
    /* border: none; */
    /* border-radius: .4rem; */
    /* box-shadow: inset 0 1px 1px rgba(0,0,0,.075); */
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    /* border-radius: 15px; */

    border: 1px solid #e3e3e3;
    box-shadow: none;
    border-radius: 5px;
    height: 50px;
    font-size: 18px;
}

textarea.form-control {
    padding: 10px;
}

.dt-header__toolbar .dt-nav:not(:last-child) {
    margin-right: 20px;
}

.dt-nav-wrapper i {
    font-size: 21px;
}

.container-processos {
    width: 100%;
    margin-left: 0px;
}

.form-control:disabled, .form-control[readonly] {
    background-color: #f7f7f7;
    opacity: 1;
}

.lista-processos {
    width: calc(100% - 60px);
    position: relative;
    padding: 20px 30px;
    margin: 0 30px 40px;
    min-height: 347px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.botao-criar {
    background: #274395;
    border-color: #274395;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 500;
    color: white !important;
    border-radius: 5px;
    padding: 7px 30px 5px 30px;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-block;
    margin-right: 10px;
    float: right;
}

    .botao-criar:hover {
        background: #2A62FE;
        border-color: #2A62FE;
        color: #274395;
    }

.andamento-ver-menos {
    display: none;
}

.topo-card span {
    color: white;
    font-size: 12px;
    text-transform: uppercase;
}

.topo-card.topo-chat span {
    color: white;
    font-size: 12px;
    text-transform: uppercase;
    font-size: 18px;
    padding: 0px 15px;
    font-weight: 400;
    letter-spacing: 1px;
}

.botao-andamento-processo {
    cursor: pointer;
}

.lista-processos .botao-scroll {
    position: absolute;
    top: 0;
    right: 0;
    margin-right: -30px;
    width: 50px;
    cursor: pointer;
    opacity: 1;
    transition: all 0.3s;
    background: url(images/botao-scroll.png) no-repeat;
    background: #193B98;
    height: 100%;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 45px;
    box-shadow: -3px 0px 6px 1px rgba(0,0,0,0.3);
}

    .lista-processos .botao-scroll.desativado {
        background: url(images/botao-scroll.png) no-repeat;
        background: #ddd;
        box-shadow: none !important;
    }

    .lista-processos .botao-scroll:hover {
        background: #2A62FE;
    }

.lista-processos .botao-scroll-voltar {
    position: absolute;
    top: 0;
    left: 0;
    cursor: pointer;
    opacity: 1;
    transition: all 0.3s;
    background: url(images/botao-scroll.png) no-repeat;
    background: #193B98;
    height: 100%;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 45px;
    box-shadow: 3px 0px 6px 1px rgba(0,0,0,0.3);
    margin-left: -30px;
}

    .lista-processos .botao-scroll-voltar.desativado {
        background: url(images/botao-scroll.png) no-repeat;
        background: #ddd;
        box-shadow: none !important;
    }

    .lista-processos .botao-scroll-voltar:hover {
        background: #2A62FE;
    }

    .lista-processos .botao-scroll-voltar.desativado:hover,
    .lista-processos .botao-scroll.desativado:hover {
        cursor: default;
        background: #ddd;
    }

.topo-processo {
    font-size: 14px;
    text-transform: uppercase;
    color: #0000000;
    font-weight: 500;
}

.topo-card span.mais-menos {
    font-weight: bold;
    font-size: 14px;
}

.andamento-ver-mais:before {
    position: absolute;
    content: "+";
    font-weight: bold;
    font-size: 18px;
    margin-left: -14px;
    margin-top: -4px;
}

.andamento-ver-menos:before {
    position: absolute;
    content: "-";
    font-weight: bold;
    font-size: 18px;
    margin-left: -14px;
    margin-top: -5px;
}

.andamento-ver-mais,
.andamento-ver-menos {
    padding: 5px 5px 5px 18px;
    border-radius: 5px;
    transition: all 0.3s;
}

    .andamento-ver-mais:hover,
    .andamento-ver-menos:hover {
        background: #f1d885;
        color: #1c3869
    }

.menu-topo-editor {
    width: calc(100% - 20px);
    position: relative;
    margin-left: 10px;
    margin-bottom: 30px;
    display: block;
    clear: both;
    height: 40px;
}

    .menu-topo-editor a {
        background: #193B98;
        color: white;
        font-size: 15px;
        text-transform: uppercase;
        border-radius: 5px;
        margin-left: 5px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0 30px;
        height: 40px;
        font-weight: 500;
        transition: all 0.3s;
    }

        .menu-topo-editor a.botao-assinar {
            background: #da2f15;
            color: white;
            float: right;
        }

        .menu-topo-editor a.botao-associar {
            background: #d75614;
        }

        .menu-topo-editor a.botao-reprovar {
            background: #da2f15;
        }

        .menu-topo-editor a.botao-arquivar {
            background: #efac0a;
        }

    .menu-topo-editor img {
        display: inline-block;
        margin-left: 5px;
    }

    .menu-topo-editor a:hover {
        background: #2A62FE;
    }

.menu-esquerda {
    float: left;
}

.menu-direita {
    float: right;
    text-align: right;
}


.info-processo textarea.form-control {
    height: auto;
    resize: none;
    height: 80px;
    padding: 10px;
}

.ui-autocomplete {
    z-index: 99999 !important;
}

#chatCPL .dt-card, .dt-module {
    position: relative;
    box-shadow: none;
    margin-bottom: 3.2rem;
    background-color: trasparent;
    border-radius: auto;
    border: none;
    margin: 0;
}

#chatCPL .conteudo-processo {
    margin-right: 10px;
    align-items: stretch;
    min-height: calc(100vh - 295px);
    max-height: calc(100vh - 295px);
    overflow: hidden;
    border: none;
    border-radius: 10px;
    overflow-y: scroll;
    margin: 20px 10px 20px 20px;
    padding: 0 10px 0 0;
    justify-content: flex-start;
}

#chatCPL .dt-content {
    padding: 20px 20px;
}

#chatCPL .dt-module__header {
    padding: 0;
}

#chatCPL .card-processo {
    width: 100%;
    border: 1px solid #e9e9e9;
    border-radius: 10px;
}

.dt-content {
    padding: 30px 40px;
}

.titulo-chat {
    color: #193B98;
    font-size: 24px;
    font-weight: 500;
    line-height: 130%;
}

#chatCPL .cartao .dt-avatar-name {
    display: block;
    line-height: 1;
    color: #000000 !important;
    font-size: 16px;
    font-weight: 500;
}

#chatCPL .tela-chat .dt-avatar-name {
    display: block;
    line-height: 1;
    color: #000000 !important;
    font-size: 22px;
    font-weight: 500;
}

/* .lista-chat .dt-avatar-name {
       font-weight: bold;
       letter-spacing: 0px;
       font-size: 14px;
       } */


#chatCPL .conteudo-processo::-webkit-scrollbar {
    width: 15px;
}

#chatCPL .conteudo-processo::-webkit-scrollbar-track {
    box-shadow: none;
    border-radius: 7.5px;
    box-shadow: inset 0 0 2px grey;
    overflow: visible;
    width: 10px;
    background: #e6e6e6;
    border-left: 2.5px solid white;
    border-right: 2.5px solid white;
}

#chatCPL .conteudo-processo::-webkit-scrollbar-thumb {
    border-radius: 7.5px;
    background: #2A62FE;
    width: 15px;
}

    #chatCPL .conteudo-processo::-webkit-scrollbar-thumb:hover {
        background: #2A62FE;
    }




#chatCPL .conteudo-chat {
    margin-right: 10px;
    align-items: stretch;
    min-height: calc(100vh - 390px);
    max-height: calc(100vh - 390px);
    overflow: hidden;
    border: none;
    border-radius: 10px;
    overflow-y: scroll;
    margin: 20px 10px 20px 20px;
    padding: 0 10px 0 0;
    transform: rotate(180deg);
    direction: rtl;
}

    #chatCPL .conteudo-chat::-webkit-scrollbar {
        width: 15px;
    }

    #chatCPL .conteudo-chat::-webkit-scrollbar-track {
        box-shadow: none;
        border-radius: 7.5px;
        box-shadow: inset 0 0 2px grey;
        overflow: visible;
        width: 10px;
        background: #e6e6e6;
        border-left: 2.5px solid white;
        border-right: 2.5px solid white;
    }

    #chatCPL .conteudo-chat::-webkit-scrollbar-thumb {
        border-radius: 7.5px;
        background: #2A62FE;
        width: 15px;
    }

        #chatCPL .conteudo-chat::-webkit-scrollbar-thumb:hover {
            background: #2A62FE;
        }

.hora-chat {
    color: black;
    padding: 0 10px;
    font-size: 13px;
}

.reply-chat {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: inline-flex;
    margin-bottom: 3px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #5581FE;
    -webkit-appearance: initial;
    color: white;
    transition: all 0.3s
}

#reply-box {
    z-index: 2;
    align-items: center;
    background: rgba(245,245,245,0.95);
    border: 1px solid #e9e9e9;
    border-bottom: 0;
    border-radius: 0;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    margin: 0;
    padding: 10px 15px;
    position: absolute;
    margin-top: 0;
    width: calc(100%);
    bottom: 69px;
    line-height: 120%;
}

    #reply-box .close {
        float: right;
        font-size: 2.1rem;
        font-weight: 700;
        line-height: 1;
        color: #000;
        text-shadow: 0 1px 0 #fff;
        opacity: .5;
        font-size: 31px;
        line-height: 1;
    }


.envia-chat {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    margin-right: 14px;
    overflow: hidden;
    border-radius: 40px !important;
    background: white;
    -webkit-appearance: initial;
    -moz-appearence: initial;
    background: #1ABC9C;
    color: white;
    transition: all 0.3s
}

    .envia-chat:hover {
        background: #76D7C4;
    }

.dt-chat__item.reply .dt-chat__message {
    background-color: #D1F2EB;
    border-color: #D1F2EB;
    color: #000000;
    font-size: 16px;
    line-height: 130%;
}

.dt-chat__item .dt-chat__message {
    background-color: #fff;
    border-color: #ddd;
    color: #757575;
}

.dt-chat__item .dt-chat__message {
    background-color: #f1f1f1;
    border-color: #ddd;
    color: #212121;
    font-size: 16px;
    line-height: 130%;
}

.dt-chat__conversation {
    transform: rotate(180deg);
    direction: ltr;
    padding-right: 20px;
}


#chatCPL .tela-chat {
    border: 1px solid #e9e9e9;
    border-radius: 10px;
}

#chatCPL .topo-tela-chat {
    height: 65px;
    min-height: 65px;
    padding: 0 15px;
}

#chatCPL .dt-chat__item .dt-chat__message {
    max-width: 100%;
}

.envia-chat {
    margin-top: 15px;
}

.add-comment-box {
    position: relative;
    padding: 0;
    border-top: 1px solid #ddd;
    height: 70px;
}

    .add-comment-box textarea {
        height: 52px;
        resize: none;
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
        font-size: 17px;
        padding: 5px 15px;
    }

.titulo-resultado {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

#descubra-na-pratica .titulo-resultado h3 {
    color: #2A62FE;
    font-family: 'Dm Sans', sans-serif;
    font-size: 26px;
    font-weight: 400;
    line-height: 15px;
    margin-bottom: 5px;
    margin-left: 15px;
}

.erroChat {
    /* visibility: hidden; */
    position: absolute;
    padding: 5px 10px;
    color: red;
}

.avatar-busca {
    width: 80px;
    height: 80px;
    border-radius: 40px;
    background-position: center;
    border: 1px solid #ccc;
    float: left;
}

.lista-chat-modal {
    display: flex;
    align-content: center;
    justify-content: flex-start;
}

    .lista-chat-modal .dt-avatar {
        margin-right: 10px;
    }

.desc-chat-modal h3 {
    font-size: 19px;
    margin: 0;
    font-weight: 400;
    color: #005689;
}

.desc-chat-modal p {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 90%;
}

.modal-title {
    margin-bottom: 0;
    line-height: 1.4;
    color: #005689;
    font-size: 20px;
    font-weight: 400;
    padding: 0 10px;
}

.tela-chat .dropdown-toggle {
    font-size: 25px;
}

.dropdown-menu.show {
    /* margin-right: -90px; */
    /*padding: 20px;*/
    min-width: 360px;
    /* margin-left: -40px; */
    right: 0px !important;
    left: auto !important;
    transform: translate3d(0, 0, 0px) !important;
    margin-top: 50px;
}

.dropdown-chat .f-12 {
    display: block;
    font-size: 14px;
    font-weight: 500;
    border-top: 1px solid #e9e9e9;
    padding: 5px;
}

.dropdown-chat h3.dt-avatar-info {
    font-size: 19px;
    font-weight: 400;
    margin-bottom: 5px;
}

.container-busca {
    margin-bottom: 10px;
}

    .container-busca label {
        display: inline-block;
        margin-bottom: 0;
        margin-left: 19px;
        margin-right: 20px;
        line-height: 100%;
        color: #193B98;
        font-family: 'Dm Sans', sans-serif;
        font-size: 13px;
        font-weight: 400;
    }

    .container-busca .icon-lg {
        font-size: 20px;
    }

    .container-busca .form-check-input {
        position: absolute;
        margin-top: 27px;
        margin-left: 2px;
    }

#descubra-na-pratica .topo-card a {
    color: white;
    display: inline-block;
    margin: 0;
    transition: all 0.3s;
}

    #descubra-na-pratica .topo-card a:hover {
        color: #2A62FE;
    }

.topo-card i {
    font-size: 18px;
    margin-left: 10px;
}

.container-busca input[type=text] {
    width: 375px;
    height: 40px;
    background-color: #f6f6f6;
    box-shadow: none;
    border: none;
    border-radius: 15px;
    box-shadow: none;
    color: #bababa;
    font-family: 'Dm Sans', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 16px;
    padding: 0 15px;
    margin-right: 20px;
}

.container-busca input[type=date] {
    width: 200px;
    height: 40px;
    background-color: #f6f6f6;
    box-shadow: none;
    border: none;
    border-radius: 15px;
    box-shadow: none;
    color: #bababa;
    font-family: 'Dm Sans', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 16px;
    padding: 0 15px;
    margin-right: 20px;
}

.container-busca select {
    height: 40px;
    background-color: #f6f6f6;
    box-shadow: none;
    border: none;
    border-radius: 15px;
    box-shadow: none;
    color: #bababa;
    font-family: 'Dm Sans', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 16px;
    padding: 0 15px;
    margin-right: 20px;
}

.carrossel-busca.owl-carousel .owl-stage {
    display: flex;
    margin-bottom: 60px;
}

.carrossel-busca a {
    display: flex;
    flex: 1 0 auto;
    height: 100%;
}

.carrossel-busca .row {
    position: relative;
    overflow: hidden;
    /* margin-bottom: 80px; */ /*This is optional*/
    display: flex;
    /* flex-direction: column; */
    align-items: stretch;
}

.resultado-busca .container-midia img {
    display: inline-block;
    width: 100%;
}

#descubra-na-pratica .col-4 {
    margin-bottom: 30px;
}

#descubra-na-pratica .conteudo-destaque-noticia {
    /*height: 235px;*/
    overflow: hidden;
    /*overflow-y: scroll;*/
    padding-right: 15px;
}

#descubra-na-pratica .container-busca a {
    display: inline-block;
    margin-bottom: 10px;
    /* background: #ccc; */
    /* padding: 10px; */
}

#descubra-na-pratica #resultado-com-scroll .conteudo-destaque-noticia::-webkit-scrollbar {
    width: 15px;
}

#descubra-na-pratica #resultado-com-scroll .conteudo-destaque-noticia::-webkit-scrollbar-track {
    box-shadow: none;
    border-radius: 7.5px;
    box-shadow: inset 0 0 2px grey;
    overflow: visible;
    width: 10px;
    background: #e6e6e6;
    border-left: 2.5px solid white;
    border-right: 2.5px solid white;
}

#descubra-na-pratica #resultado-com-scroll .conteudo-destaque-noticia::-webkit-scrollbar-thumb {
    border-radius: 7.5px;
    background: #2A62FE;
    width: 15px;
}

    #descubra-na-pratica #resultado-com-scroll .conteudo-destaque-noticia::-webkit-scrollbar-thumb:hover {
        background: #2A62FE;
    }

#descubra-na-pratica .conteudo-processo .conteudo-destaque-noticia {
    height: 142px;
    overflow: hidden;
    overflow-y: scroll;
    background: #f1f1f1;
    padding: 15px;
    border-radius: 15px;
    margin-bottom: 6px;
    margin-right: 8px;
}

#descubra-na-pratica .resultado-busca a {
    background-color: #f6f6f6;
    border-radius: 20px;
    height: 100%;
    display: block;
    flex-wrap: wrap;
    margin-right: 0;
    margin-left: 0;
    padding: 20px 20px;
    position: relative;
    overflow: hidden;
    /* margin-bottom: 80px; */
    display: flex;
    /* flex-direction: column; */
    align-items: stretch;
    margin-bottom: 0px;
}

#descubra-na-pratica .card-processo {
    width: 100%;
    border: 1px solid #e9e9e9;
    border-radius: 0 0 10px 10px;
}

#descubra-na-pratica .conteudo-processo {
    margin-right: 10px;
    align-items: stretch;
    min-height: calc(100vh - 295px);
    max-height: calc(100vh - 295px);
    overflow: hidden;
    border: none;
    /*border-radius: 10px;*/
    overflow-y: scroll;
    margin: 20px 10px 20px 20px;
    padding: 0 10px 0 0;
    justify-content: flex-start;
}

    #descubra-na-pratica .conteudo-processo::-webkit-scrollbar {
        width: 15px;
    }

    #descubra-na-pratica .conteudo-processo::-webkit-scrollbar-track {
        box-shadow: none;
        border-radius: 7.5px;
        box-shadow: inset 0 0 2px grey;
        overflow: visible;
        width: 10px;
        background: #e6e6e6;
        border-left: 2.5px solid white;
        border-right: 2.5px solid white;
    }

    #descubra-na-pratica .conteudo-processo::-webkit-scrollbar-thumb {
        border-radius: 7.5px;
        background: #CCD9FF;
        width: 15px;
    }

        #descubra-na-pratica .conteudo-processo::-webkit-scrollbar-thumb:hover {
            background: #AAC0FF;
        }

    #descubra-na-pratica .conteudo-processo img {
        display: inline-block;
        width: 100%;
    }

    #descubra-na-pratica .conteudo-processo .row .col-6:last-child {
        padding-left: 0;
    }

#descubra-na-pratica a {
    display: block;
    margin-bottom: 10px;
}

#descubra-na-pratica .container-midia {
    position: relative;
}

#descubra-na-pratica h3 {
    color: #000000;
    font-family: 'Dm Sans', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 15px;
    margin-bottom: 5px;
}

#descubra-na-pratica p {
    color: #323232;
    font-size: 14px;
    font-weight: 400;
}

#descubra-na-pratica .topo-card {
    padding: 0px 15px;
}

    #descubra-na-pratica .topo-card .andamento-processo {
        color: white;
        font-family: 'Dm Sans', sans-serif;
        font-size: 16px;
        font-weight: 400;
        text-transform: none;
    }

#descubra-na-pratica .col-3 {
    flex: 0 0 25%;
    max-width: 100%;
    padding-right: 0;
}

    #descubra-na-pratica .col-3 img {
        display: block;
        margin-bottom: 20px;
    }

#descubra-na-pratica .carrossel-busca .row {
    transition: all 0.3s;
}

    #descubra-na-pratica .carrossel-busca .row:hover {
        background: #d9d9d9;
    }

.data-hora {
    color: #9a9a9a;
    font-family: 'Dm Sans', sans-serif;
    font-size: 12px;
    font-weight: 400;
    display: block;
    margin-bottom: 5px;
}

#botao-buscar {
    height: 51px;
    width: 51px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #f6f6f6;
    box-shadow: none;
    border: none;
    border-radius: 15px;
}


#gerenciador-arquivos .col-4 {
    margin-bottom: 30px;
}

#gerenciador-arquivos .conteudo-destaque-noticia {
    height: 235px;
    overflow: hidden;
    overflow-y: scroll;
    padding-right: 15px;
}

#gerenciador-arquivos .container-busca a {
    display: inline-block;
    margin-bottom: 10px;
    /* background: #ccc; */
    /* padding: 10px; */
}

#gerenciador-arquivos #resultado-com-scroll .conteudo-destaque-noticia::-webkit-scrollbar {
    width: 15px;
}

#gerenciador-arquivos #resultado-com-scroll .conteudo-destaque-noticia::-webkit-scrollbar-track {
    box-shadow: none;
    border-radius: 7.5px;
    box-shadow: inset 0 0 2px grey;
    overflow: visible;
    width: 10px;
    background: #e6e6e6;
    border-left: 2.5px solid white;
    border-right: 2.5px solid white;
}

#gerenciador-arquivos #resultado-com-scroll .conteudo-destaque-noticia::-webkit-scrollbar-thumb {
    border-radius: 7.5px;
    background: #2A62FE;
    width: 15px;
}

    #gerenciador-arquivos #resultado-com-scroll .conteudo-destaque-noticia::-webkit-scrollbar-thumb:hover {
        background: #2A62FE;
    }

#gerenciador-arquivos .conteudo-processo .conteudo-destaque-noticia {
    height: 142px;
    overflow: hidden;
    overflow-y: scroll;
    background: #f1f1f1;
    padding: 10px;
    margin-bottom: 6px;
    margin-right: 8px;
}

#gerenciador-arquivos .resultado-busca a {
    background-color: #f6f6f6;
    border-radius: 20px;
    height: 100%;
    display: block;
    flex-wrap: wrap;
    margin-right: 0;
    margin-left: 0;
    padding: 30px 20px;
    position: relative;
    overflow: hidden;
    /* margin-bottom: 80px; */
    display: flex;
    /* flex-direction: column; */
    align-items: stretch;
}

#gerenciador-arquivos .card-processo {
    width: 100%;
    border: 1px solid #e9e9e9;
    border-radius: 0 0 10px 10px;
}

.container-documentos {
    padding: 0 15px;
}

.container-seletores-documento {
    margin: 0;
    padding: 0;
}

.menu-botoes-inferior {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.container-seletores-documento .menu-topo-editor {
    width: 100%;
    position: relative;
    margin-left: 0;
    margin-bottom: 10px;
    display: block;
    clear: both;
    height: 40px;
}

.datadocumento {
    display: flex;
    background: #F7F9FF;
    padding: 9px;
    border-radius: 10px;
    min-height: auto;
    align-items: center;
}

    .datadocumento .fas {
        margin-right: 8px;
        font-size: 22px;
    }

.documento {
    display: flex;
    background: #F7F9FF;
    padding: 9px;
    border-radius: 10px;
    min-height: auto;
    align-items: center;
}

    .documento .fas {
        margin-right: 8px;
        font-size: 22px;
    }

    .documento:hover {
        background: #D4E0FF; /* Nova cor ao passar o mouse */
        transition: background 0.3s ease; /* Efeito suave de transi��o */
    }

.informacoes-documento {
    padding: 0 5px;
}

.documento h3 {
    margin: 0 !important;
}

#gerenciador-arquivos .conteudo-processo {
    margin-right: 10px;
    align-items: stretch;
    min-height: calc(100vh - 295px);
    max-height: calc(100vh - 295px);
    overflow: hidden;
    border: none;
    overflow-y: scroll;
    margin: 20px 10px 20px 20px;
    padding: 0 10px 0 0;
    justify-content: flex-start;
}

    #gerenciador-arquivos .conteudo-processo::-webkit-scrollbar {
        width: 15px;
    }

    #gerenciador-arquivos .conteudo-processo::-webkit-scrollbar-track {
        box-shadow: none;
        border-radius: 7.5px;
        box-shadow: inset 0 0 2px grey;
        overflow: visible;
        width: 10px;
        background: #e6e6e6;
        border-left: 2.5px solid white;
        border-right: 2.5px solid white;
    }

    #gerenciador-arquivos .conteudo-processo::-webkit-scrollbar-thumb {
        border-radius: 7.5px;
        background: #CCD9FF;
        width: 15px;
    }

        #gerenciador-arquivos .conteudo-processo::-webkit-scrollbar-thumb:hover {
            background: #7FA1FE;
        }

    #gerenciador-arquivos .conteudo-processo img {
        display: inline-block;
        width: 100%;
    }

    #gerenciador-arquivos .conteudo-processo .row .col-6:last-child {
        padding-left: 0;
    }

#gerenciador-arquivos a {
    display: block;
    margin-bottom: 10px;
}

#gerenciador-arquivos .menu-botoes-inferior a {
    display: inline-flex !important;
    margin-bottom: 10px;
    padding: 15px;
}


#gerenciador-arquivos .form-group {
    margin-left: 15px;
}

#gerenciador-arquivos .container-midia {
    position: relative;
}

#gerenciador-arquivos h3 {
    color: #000000;
    font-family: 'Dm Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 120%;
    margin-bottom: 5px;
}

#gerenciador-arquivos p {
    color: #323232;
    font-size: 14px;
    font-weight: 400;
}

#gerenciador-arquivos .topo-card {
    padding: 0px 15px;
}

    #gerenciador-arquivos .topo-card .andamento-processo {
        color: white;
        font-family: 'Dm Sans', sans-serif;
        font-size: 16px;
        font-weight: 400;
        text-transform: none;
    }

#gerenciador-arquivos .col-3 {
    flex: 0 0 25%;
    max-width: 100%;
    padding-right: 0;
}

    #gerenciador-arquivos .col-3 img {
        display: block;
        margin-bottom: 20px;
    }

.titulo-anexados {
    color: #2A62FE;
    font-size: 21px;
    font-weight: 500;
    line-height: 32px;
    display: flex;
    margin-top: 20px;
}

#conteudo-de-apoio .carrossel-midia {
    background: #e6e6e6;
    border-radius: 20px;
    padding: 20px 90px;
    margin-top: 10px;
    margin-bottom: 50px;
}

#conteudo-de-apoio h3 {
    margin-left: 15px;
    margin-top: 20px;
}

.resposta-chat {
    background: #fafafa;
    padding: 7px 10px 5px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    display: inline-block;
    margin: 0 10px;
    border: 1px solid #ccc;
    border-bottom: 0;
    font-size: 12px;
}





/*#container-faq .card-header {
    background: #f0f0f0 url(img/setinha-menu.png) no-repeat 98% center;
    font-size: 13px;
    text-align: left;
    padding: 10px 10px !important;
    transition: all 0.4s;
    margin-top: 10px;
    position: relative;
    line-height: 24px !important;
    height: 44px;
}

    #container-faq .card-header:hover {
        background: #ddd url(img/setinha-menu.png) no-repeat 98% center;
    }

#container-faq .accordion-navigation.active .card-header {
    background: #ddd url(img/seta-cima.png) no-repeat 98% center;
}*/

.modal-body label {
    display: inline-block !important;
}

.modal-body .form-group {
    display: block;
}

.modal-body h3 {
    font-size: 21px;
    margin: 10px 0 10px;
}

.dt-sidebar .dt-side-nav__item.selected .dt-side-nav__link {
    background-color: rgba(255, 255, 255, 0.80) !important;
    color: #0A3FA5 !important;
    border-radius: 8px !important;
    margin: 2px 10px !important;
    padding: 10px 20px !important;
}

.dt-sidebar .dt-side-nav__item.selected .dt-side-nav__link span,
.dt-sidebar .dt-side-nav__item.selected .dt-side-nav__link i {
    color: #0A3FA5 !important;
    opacity: 1 !important;
}

/* Remove any other styles that might interfere */
.dt-side-nav__item.selected a::after {
    display: none !important;
}

.dt-side-nav > .dt-side-nav__item.selected > a,
.dt-side-nav > .dt-side-nav__item.open > a {
    background-color: rgba(255, 255, 255, 0.15) !important;
    color: #0A3FA5 !important;
}

.dt-side-nav__item .dt-side-nav__link:hover i {
    color: #ffffff !important;
}

.dt-side-nav__item .dt-side-nav__link:hover {
    color: #ffffff !important;
}

.dt-side-nav__link:hover {
    color: #ffffff !important;
}

.dt-side-nav__link:hover i {
    color: #ffffff !important;
}

.dt-side-nav__text {
    color: #ffffff !important;
}

/* Classe personalizada para destacar a subetapa atual */
.subetapa-atual {
    background-color: rgba(42, 98, 254, 0.1) !important;
    border-left: 4px solid #2A62FE !important;
}

.subetapa-atual:hover {
    background-color: rgba(42, 98, 254, 0.15) !important;
}

