/* Fonts (Roboto) */
@import url("https://fonts.googleapis.com/css?family=Roboto:300,400,500,600,900");

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700;900');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* Reset */
*
{
    margin: 0;
    padding: 0;
    outline: 0;
    box-sizing: border-box;
}

html
{
    font-size: 90%;
    max-width: 100%;
    overflow-x: hidden;
}

body
{
    /* font: 400 1.2rem 'DM Sans', sans-serif; */
    /* font: 700 1.6rem 'Nunito', sans-serif; */
    -webkit-font-smoothing: antialiased;
    background: #f2f3f7;
}

button
{
    cursor: pointer;
}

a
{
    text-decoration: none;
}

ul
{
    list-style: none;
}

hr
{
    border: none;
    border-top: 1px solid #f1f1f1;
}

/* width */
::-webkit-scrollbar
{
    width: 5px;
    height: 5px;
}

/* Track */
::-webkit-scrollbar-track
{
    background: #c1c1c1; 
}

/* Handle */
::-webkit-scrollbar-thumb
{
    background: #899; 
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover
{
    background: #62acf5;
}

/* Arrows Style */
.arrow
{
    border: solid rgb(255, 255, 255);
    border-width: 0 1px 1px 0;
    display: inline-block;
    padding: 3px;
}

.right {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
  }
  
  .left {
    transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
  }
  
  .up {
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
  }
  
  .down {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
  }


/* Grid System */
.row, 
.column {
    box-sizing: border-box;
}

.row:before,
.row:after {
    content: " ";
    display: table;
}

.row:after {
    clear: both;
}

.column {
    position: relative;
    float: left;
    display: block;
}

.column + .column {
    margin-left: 1.6%;
}

.column-1 {
    width: 6.86666666667%;
}

.column-2 {
    width: 15.3333333333%;
}

.column-3 {
    width: 23.8%;
}

.column-4 {
    width: 32.2666666667%;
}

.column-5 {
    width: 40.7333333333%;
}

.column-6 {
    width: 49.2%;
}

.column-7 {
    width: 57.6666666667%;
}

.column-8 {
    width: 66.1333333333%;
}

.column-9 {
    width: 74.6%;
}

.column-10 {
    width: 83.0666666667%;
}

.column-11 {
    width: 91.5333333333%;
}

.column-12 {
    width: 100%;
    margin-left: 0;
}

@media only screen and (max-width: 550px) {
    .column-1, 
    .column-2, 
    .column-3, 
    .column-4, 
    .column-5, 
    .column-6, 
    .column-7, 
    .column-8, 
    .column-9, 
    .column-10, 
    .column-11, 
    .column-12 {
        float: none;
        width: auto;
    }
  
    .column + .column {
        margin-left: 0;
    }
}

@media only screen and (max-width: 550px) {
    .row {
        margin-bottom: 0;
    }
    .column {
        margin-bottom: 10px;
    }
    .row:last-child .column:last-child {
        margin-bottom: 0;
    }
}

/* Grid Style */
.column {
    background: #ffffff;
    border-radius: 8px;
    padding: 20px;
    min-height: 30px;
}

.row {
    margin-bottom: 20px;
}

.row:last-child {
    margin-bottom: 0;
}

/* Thema */
.container {
    width: 100vw;
    height: 100vh;
}


/* Menu */
.container .card-menu {
    width: 100%;
    height: 45px;

    background: #3699ff;
}

.container .backdrop-user,
.container .backdrop-news,
.container .backdrop-submenu,
.container .backdrop-submenu-suport,
.container .backdrop-menu-list {
    z-index: 5;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
}

.container .backdrop-user.active,
.container .backdrop-news.active,
.container .backdrop-submenu.active,
.container .backdrop-submenu-suport.active,
.container .backdrop-menu-list.active {
    display: block;
}

.container .card-menu .menu {
    width: 90%;
    margin: 0 auto;

    display:flex;
    flex-direction: row;
}

.container .card-menu .menu .logo {
    margin: 10px 17px;
}

.container .card-menu .menu .logo a {
    font-family: 'Roboto', sans-serif;
    /* font-size: 2.0rem; */
    font-weight: 400;
    color: #fff;
}

.container .card-menu .menu ul {
    display:flex;
    flex-direction: row;
}

.container .card-menu .menu ul:last-child {
    margin-left:auto;
}

.container .card-menu .menu ul li {
    margin-right: 10px;
}

.container .card-menu .menu .toggle-menu {
    position: relative;
    /* margin-top: 10px; */
    height: 45px;

    /* background: #3699ff; */
    padding: 5px 10px;
    text-align: center;

    /* Border Radius */
    -webkit-border-top-left-radius: 5px;
    -webkit-border-top-right-radius: 5px;
    -moz-border-radius-topleft: 5px;
    -moz-border-radius-topright: 5px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.container .card-menu .menu .toggle-menu a {
    font-weight: 400;
    color: #fff;
    /* font-size: 1.2rem; */
    display: block;
}

.container .card-menu .menu .toggle-menu a i {
    display: block;
    /* font-size: 20px; */
    margin-bottom: 1px;
    margin-top: 2px;
}

.container .card-menu .menu .toggle-menu:hover {
    /* border-bottom: 2px solid #1c79d6; */
    background: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    /* background: #fff; */
    /* color: #333; */
}
/* .container .card-menu .menu .toggle-menu:hover > a {
    color: #333;
} */

.container .card-menu .menu .toggle-menu.active:hover {
    border-bottom: none;
}

.container .card-menu .menu .toggle-menu.active a {
    /* font-weight: 700; */
    color: #333;
}

.container .card-menu .menu .toggle-menu.active i {
    /* font-weight: 700; */
    color: #333;
}

.container .card-menu .menu .toggle-menu.active {
    background: #fff;
}

/* Border Radius Reverse setings */
.container .card-menu .menu .toggle-menu.active:before,
.container .card-menu .menu .toggle-menu.active:after {
    content: "";
    position: absolute;

    height: 10px;
    width: 20px;

    bottom: 0;
}

.container .card-menu .menu .toggle-menu.active:after {
    right: -20px;

    border-radius: 0 0 0 10px;
    -moz-border-radius: 0 0 0 10px;
    -webkit-border-radius: 0 0 0 10px;

    -webkit-box-shadow: -10px 0 0 0 #fff;
    box-shadow: -10px 0 0 0 #fff;
}

.container .card-menu .menu .toggle-menu.active:before {
    left: -20px;

    border-radius: 0 0 10px 0;
    -moz-border-radius: 0 0 10px 0;
    -webkit-border-radius: 0 0 10px 0;

    -webkit-box-shadow: 10px 0 0 0 #fff;
    box-shadow: 10px 0 0 0 #fff;
}

.container .card-menu .menu ul:last-child li {
    margin-top: 12px;
    margin-right: 15px;
}

.container .card-menu .menu ul:last-child li:last-child {
    /* margin-left: 10px;
    width: 130px; */
    position: relative;
    display: inline-block;
    margin-right: 45px;
}

.container .card-menu .menu ul:last-child li:last-child .toggle-user-menu {
    position: absolute;
    /* float: right; */
    right: -33px;
    min-width: 213px;
    margin-top: 2px;
    padding: 3px;
    top: 38px;
    background: #fff;
    border-radius: 4px;
    border: 1px solid rgba(150, 150, 150, 0.1);
    box-shadow: 1px 1px 3px rgba(150, 150, 150, 0.2);
    z-index: 10;

    display: none;
    opacity: 0; /* Hidden by defaut*/
}

.container .card-menu .menu ul:last-child li:last-child .toggle-user-menu.active {
    opacity: 1;
    display: block;
}

.container .card-menu .menu ul:last-child li:last-child .toggle-user-menu ul {
    display: flex;
    flex-direction: column;
}

.container .card-menu .menu ul:last-child li:last-child .toggle-user-menu ul:last-child {
    border-top:1px solid rgba(150, 150, 150, 0.1);
}

.container .card-menu .menu ul:last-child li:last-child .toggle-user-menu ul li {
    font-family: Roboto;
    font-weight: 400;
    /* font-size: 1.2rem; */
    margin:0px!important;
    width: 100%;
    padding: 0px 0px 0px 5px;
}

.container .card-menu .menu ul:last-child li:last-child .toggle-user-menu ul li:hover {
    background: rgba(170, 170, 170, 0.1);
    cursor: pointer;
}

.container .card-menu .menu ul:last-child li:last-child .toggle-user-menu ul li a {
    color: #777;
    line-height: 25px;
}

.container .card-menu .menu ul:last-child li:last-child .toggle-user-menu ul li a i {
    margin-right: 5px;
    color: #c6c6c6;
    width: 15px;
}

.container .card-menu .menu ul:last-child .toggle-news-menu {
    position: relative;
    float: right;
    min-width: 370px;
    margin-top: 8px;
    padding: 10px 10px 30px 10px;

    background: #fff;
    border-radius: 4px;
    border: 1px solid rgba(150, 150, 150, 0.1);
    box-shadow: 1px 1px 3px rgba(150, 150, 150, 0.2);
    z-index: 10;

    display: none;
    opacity: 0; /* Hidden by defaut*/
}

.container .card-menu .menu ul:last-child .toggle-news-menu.active {
    opacity: 1;
    display: block;
}

.container .card-menu .menu ul:last-child .toggle-news-menu .list-news {
    width: 100%;
    padding: 5px;
    border-bottom: 1px solid rgba(150, 150, 150, 0.2);
    /* font-size: 1.4rem; */
    color: #444;
    line-height: 25px;
}

.container .card-menu .menu ul:last-child .toggle-news-menu .list-news:hover {
    background: rgba(150, 150, 150, 0.1);
}

.container .card-menu .menu ul:last-child .toggle-news-menu .news-time-send {
    /* font-size: 1.1rem; */
    color: #888;
}

.container .card-menu .menu ul:last-child .toggle-news-menu .all-news-link {
    float: right;
    color: #09f;
    position: absolute;
    right: 10px;
    bottom: -4px;

    /* font-size: 1.2rem; */
}

/* Sub Menu - List */
.container .card-sub-menu .sub-menu .toggle-sub-menu_product,
.container .card-sub-menu .sub-menu .toggle-sub-menu_suport,
.container .card-sub-menu .sub-menu .suporte_submenu_toggle {
    position: relative;
    float: right;
    min-width: 180px;
    padding: 5px 5px 5px 5px;

    background: #fff;
    border-radius: 4px;
    border: 1px solid rgba(150, 150, 150, 0.1);
    box-shadow: 1px 1px 3px rgba(150, 150, 150, 0.2);
    z-index: 10;

    display: none;
    opacity: 0; 
}

.container .card-sub-menu .sub-menu .toggle-sub-menu_product.active,
.container .card-sub-menu .sub-menu .toggle-sub-menu_suport.active,
.container .card-sub-menu .sub-menu .suporte_submenu_toggle.active {
    opacity: 1;
    display: block;
}

/* Sup Menu - drop list */
.container .card-menu .menu .toggle-sup-menu{
    position: absolute;
    top: 0;
    left: 0;
    float: right;
    height: 100%;
    min-width: 250px;
    padding: 5px 5px 5px 5px;
    background: #272727;
    /* border-radius: 4px; */
    /* border: 1px solid rgba(150, 150, 150, 0.1); */
    /* box-shadow: 1px 1px 3px rgb(150 150 150 / 20%); */
    z-index: 10;
    display: none;
    opacity: 0;
}

.container .card-menu .menu .toggle-sup-menu.active {
    opacity: 1;
    display: block;
}


.container .card-menu .menu ul:last-child li span{
    padding-right: 10px;
}

.container .card-menu .menu ul:last-child li a{
    font-weight: 400!important;
    /* line-height: 38px; */
    color: #fff;
}

.container .card-menu .menu ul li .strong-name {
    width: 35px;
    height: 35px;
    float: right;

    text-align: center;
    border-radius: 3px;
    background: rgba(240, 240, 240, 0.2);

    /* font-size: 2.0rem; */
    font-weight: 700;
    color: #fff;
}

.container .card-menu .menu ul li .strong-name:hover {
    background: rgba(240, 240, 240, 0.4);
}

/* Sub Menu */
.container .card-sub-menu {
    width: 100%;
    height: 40px;
    background: #ffffff;
    box-shadow: 1px 1px 6px rgba(150, 150, 150, 0.1);
}

.container .card-sub-menu .sub-menu {
    width: 90%;
    margin: 0 auto;
    display: none;
}

.container .card-sub-menu .sub-menu .menu-small {
    display: none;
}

.container .card-sub-menu .sub-menu .menu-small-suport {
    display: none;
}

.container .card-sub-menu .sub-menu.active {
    display: block;
    /* transition: all 0.3s linear; */
}

.itemViewPages
{
    display: none;
}

.itemViewPages.active
{
    display: block;
}

.container .card-sub-menu .sub-menu ul {
    display:flex;
    flex-direction: row;
}

.container .card-sub-menu .sub-menu ul li {
    margin-top: 5px;
    margin-right: 5px;
    /* padding: 8px 12px 8px 12px; */
    padding: 5px;
    border-radius: 3px;
    cursor: pointer;
}

.container .card-sub-menu .sub-menu ul li i
{
    color: #c6c6c6;
}

.container .card-sub-menu .sub-menu .suporte_submenu_toggle ul li {
    margin-top: 5px;
    line-height: 25px;
    padding: 0px 2px 0px 5px;
    margin-right: 0px!important;
}

.container .card-sub-menu .sub-menu ul li:hover,
.container .card-sub-menu .sub-menu ul li:hover a {
    /* color: #1c79d6; */
    background: rgb(242 243 247 / 100%);
}

.container .card-sub-menu .sub-menu ul li a {
    color: #777;
    /* font-size: 1.2rem; */
    font-weight: 600;
}

.container .card-sub-menu .sub-menu ul li.active {
    color: #1c79d6;
    background: rgb(242 243 247 / 65%);
}

.container .card-sub-menu .sub-menu ul li.active a{
    color: #1c79d6;
}

.container .card-sub-menu .sub-menu ul li.active i{
    color: #004dec;
}

.container .card-menu .menu .menu-small-sup {
    display: none;
}

.container .card-menu .menu ul:last-child li small
{
    display: block;
}


/* Main */
.container .main {
    width: 90%;
    margin: 0 auto;
    margin-top: 20px;
}

@media screen and (max-width: 2000px) {
    .suporte_submenu_toggle ul {
        display:flex !important;
        flex-direction: column!important;
    }
    
    .suporte_submenu_toggle ul:last-child {
        margin-left:auto !important;
    }
    
    .suporte_submenu_toggle ul li {
        margin-right: 10px !important;
    }
}


@media screen and (max-width: 1720px) {

    .container .card-sub-menu .sub-menu .menu-small-suport {
        display: block;
        cursor: pointer;
    } 
    
    
    .toggle-sub-menu_suport ul {
        display:flex !important;
        flex-direction: column !important;
    }
    
    .toggle-sub-menu_suport ul:last-child {
        margin-left:auto !important;
    }
    
    .toggle-sub-menu_suport ul li {
        margin-right: 10px !important;
    }

    .suporte_submenu_toggle ul {
        display:flex !important;
        flex-direction: column!important;
    }
    
    .suporte_submenu_toggle ul:last-child {
        margin-left:auto !important;
    }
    
    .suporte_submenu_toggle ul li {
        margin-right: 10px !important;
    }

    /* .container .card-sub-menu .sub-menu .open-sub-menu-list-suport {
        display: none;
    } */
}
@media screen and (max-width: 1300px) {

    .container .card-menu .menu .logo a {
        /* font-size: 1.2rem; */
        font-weight: 600;
    }

}

@media screen and (max-width: 1255px) {

    .container .card-menu .menu .logo a {
        /* font-size: 1.2rem; */
        font-weight: 600;
    }

    .container .card-menu .menu .toggle-menu a {
        /* font-size: 1.2rem; */
    }

    .container .card-sub-menu .sub-menu ul li a {
        /* font-size: 1.2rem; */
    }

    .container .card-menu .menu ul:last-child li:last-child {
        margin-left: 5px;
    }

    .container .card-menu .menu ul:last-child li {
        margin-top: 12px;
        margin-right: 15px;
    }

    .container .card-menu .menu {
        width: 90%;
    }

    .container .card-sub-menu .sub-menu {
        width: 90%;
    }

    .container .main {
        width: 90%;
    }
    
}

@media screen and (max-width: 950px) {

    .container .card-sub-menu .sub-menu .menu-small {
        display: block;
        cursor: pointer;
    }

    .container .card-sub-menu .sub-menu .open-sub-menu-list-product {
        display: none;
    }
    
    .toggle-sub-menu_product ul {
        display:flex !important;
        flex-direction: column !important;
    }
    
    .toggle-sub-menu_product ul:last-child {
        margin-left:auto !important;
    }
    
    .toggle-sub-menu_product ul li {
        margin-right: 10px !important;
    }


    .container .card-sub-menu .sub-menu .open-sub-menu-list-suport {
        display: none;
    }
    .container .card-sub-menu .sub-menu .info_sub_menu_submenu {
        display: block!important;
    }
}

@media screen and (max-width: 980px) {
    
    .container .card-menu .menu .menu-sup-home {
        display: none;
    }

    .container .card-menu .menu .menu-small-sup {
        margin: 20px 20px;
        cursor: pointer;
        display: block;
    }

    .container .card-menu .menu .menu-small-sup i {
        color:rgb(255, 255, 255);
    }

    .toggle-sup-menu ul {
        display:flex !important;
        flex-direction: column !important;
        margin-left:15px !important;
    }
    
    .toggle-sup-menu ul:last-child {
        margin-left:15px !important;
    }
    
    .toggle-sup-menu ul li {
        margin-right: 10px !important;
        border-bottom: 1px solid #333;
        padding: 5px;
    }

    .toggle-sup-menu ul li:hover {
        background-color: #383737;
        border-bottom: 1px solid #09f;
    }

    .container .card-menu .menu ul:last-child li:last-child {
        margin-left: 0px;
        width: auto!important;
    }

    .container .card-sub-menu .sub-menu .info_sub_menu_submenu {
        display: block!important;
    }

    /* .container .card-menu .menu ul:last-child li a {
        line-height: 35px;
    } */

    .container .card-menu .menu .logo a {
        /* font-size: 2.0rem !important; */
    }

    .container .card-menu .menu .logo {
        margin: 20px 0px;
    }
}

@media screen and (max-width: 530px) {
    
    .container .card-menu .menu ul:last-child li span
    {
        display: none;
    }

    .container .card-menu .menu ul:last-child li small
    {
        display: none;
    }

    .container .card-menu .menu .logo a {
        /* font-size: 1.5rem !important; */
    }
}

@media screen and ( max-width: 500px ){

    li.page-item {

        display: none;
    }

    .page-item:first-child,
    .page-item:nth-child( 2 ),
    .page-item:nth-last-child( 2 ),
    .page-item:last-child,
    .page-item.active,
    .page-item.disabled {

        display: block;
    }
}

.container .card-sub-menu .sub-menu .info_sub_menu_submenu
{
    display: none;
}

.container .main .card-title {
    margin-bottom: 10px;
    color: #1c79d6;
    font-weight: 500;
    /* font-size: 1.5rem; */
    font-family: 'Poppins', sans-serif;
}

/* News */
.news-cards {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    grid-gap: 10px;
    grid-template-areas:
        "a a b c"
        "a a d e";
}

.new-card:nth-child(1) { grid-area: a; }
.new-card:nth-child(2) { grid-area: b; }
.new-card:nth-child(3) { grid-area: c; }
.new-card:nth-child(4) { grid-area: d; }
.new-card:nth-child(5) { grid-area: e; }

.new-card {
    border-radius: 8px;
    background: #3699ff;
    overflow: hidden;
}

.new-card .img-container {
    transition: transform .1s ease;
    width: 100%;
    height: 100%;
}

.new-card .img-container:hover {
    transform: scale(1.1);
}

.new-card .img-container img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    transform: translate(0,0);
    transition: opacity .25s ease-in-out;
}


/* Progress Bar */
.progress-bar {
    position: relative;
    margin: 4px;
    margin-right: 25px;
    float: left;
    text-align: center;
}

.progress-bar .text-progress {
    /* font-size: 3.4rem; */
    position: absolute;
    top: 35px;
    left: 54px;
}

.progress-bar .barOverflow { 
    position: relative;
    overflow: hidden; 
    width: 150px; height: 70px; 
    margin-bottom: -14px;
}
.progress-bar .bar {
    position: absolute;
    top: 0; left: 0;
    width: 150px; height: 150px; 
    border-radius: 50%;
    box-sizing: border-box;
    border: 15px solid #f2f3f7;       
    border-bottom-color: #5bc980; 
    border-right-color: #5bc980;
    transform: rotate(45deg);
}

.progress-bar > .left {
    position: absolute;
    background: white;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    left: 0;
    bottom: -20px;
    overflow: hidden;
}

.progress-bar > .right {
    position: absolute;
    background: #f2f3f7;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    right: 0;
    bottom: -20px;
    overflow: hidden;
}
  
.progress-bar .back {
    width: 15px;
    height: 15px;
    background: #f2f3f7;
    position: absolute;
}

/* performanece-info */
.performanece-info span {
    font-weight: 700;
    /* font-size: 2.2rem; */
}

.performanece-info .performance-ref {
    font-weight: 700;
    /* font-size: 1.2rem; */
    color: rgba(0, 0, 0, 0.4);
    position: absolute;
    right: 10px;
    bottom: 5px;
}

.thumb-img-performance {
    position: absolute;
    top: 5px;
    right: 5px;
    opacity: 0.5;
    height: 130px;
}

.thumb-img-performance img {
    width: 90px;
}

.performance-indices {
    margin-top: 10px;
    margin-bottom: 10px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(60px, auto));
    grid-template-rows: auto 1fr auto;
    grid-gap: 5px;
}

.performance-indices .p-item-i {
    width: auto;
    padding: 5px;

    text-align: center;
    border-radius: 3px;
    background: #f3f6f9;

    /* font-size: 1.8rem; */
    font-weight: 700;
    color: #b3b4bf;
}

.performance-indices .p-item-i b{
    display: block;
    color: #555;
}

/* cupons */
.cupons {
    margin-top: 5px;
    margin-bottom: 20px;
}

.cupons i {
    position: absolute;
    left: -5;
    bottom: -5px;
    color: #8BC34A;
    /* font-size: 3.6rem; */
    opacity: 0.2;
}

.cupons .cupom-cod {
    margin-top: 15px;
    /* font-size: 1.8rem; */
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
}

.cupons .cupom-cod a{
    border:1px solid #5bc980;
    padding: 5px;
    border-radius: 4px;
    /* font-size: 1.8rem; */
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    color: #449848;
}

/* Update List */
.update-list {
    width: 100%;
}

.update-list ul li {
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #fff;
}

.update-list ul li:hover {
    border: 1px solid #eaeaea;
    box-shadow: 1px 1px 4px rgba(150, 150, 150, 0.1);
    border-bottom: 1px solid #7ebeff;
}

.update-list ul li span {
    float: left;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    text-align: center;
    line-height: 45px;
    /* font-size: 2.5rem; */
    color: #b7b7c5;
    background: #f2f3f7;
    margin-right: 20px;
}

.update-list ul li a {
    font-weight: 700;
    color: #333;
    /* font-size: 1.4rem; */
}

.update-list ul li a small {
    color: #505050;
    font-weight: 400;
    /* font-size: 1.3rem; */
}

.update-list ul li .date-update {
    background: #f2f3f7;
    padding: 5px;
    border-radius: 4px;
    float: right;
    /* font-size: 1.1rem; */
    color: #555;
}

.update-list ul li .date-update i {
    color: #a1a1a1;
}

.thumb-cube {
    position:absolute;
    right: 10px;
    top: -10px;

    /* font-size: 10.1rem; */
    opacity: 0.1;
    transform: rotate(15deg);
}

.thumb-cloudsmith {
    position:absolute;
    right: 30px;
    top: -10px;

    /* font-size: 10.1rem; */
    opacity: 0.1;
    transform: rotate(-95deg);
}

/* News Prods */
.update-list-prod {
    width: 100%;
}

.update-list-prod ul li {
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #fff;
}

.update-list-prod ul li:hover {
    border: 1px solid #eaeaea;
    box-shadow: 1px 1px 4px rgba(150, 150, 150, 0.1);
    border-bottom: 1px solid #7ebeff;
}

.update-list-prod ul li span {
    float: left;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    line-height: 45px;
    /* font-size: 2.5rem; */
    color: #b7b7c5;
    /* background: #f2f3f7; */
    margin-right: 20px;
}

.update-list-prod ul li span img{
    /* width: 100%; */
    height: 100%;
}

.update-list-prod li a {
    font-weight: 700;
    color: #333;
    /* font-size: 1.4rem; */
}

.update-list-prod ul li a small {
    color: #505050;
    font-weight: 400;
    /* font-size: 1.3rem; */
}

.update-list-prod ul li .date-update {
    background: #f2f3f7;
    padding: 5px;
    border-radius: 4px;
    float: right;
    /* font-size: 1.1rem; */
    color: #555;
}

.update-list-prod ul li .date-update i {
    color: #a1a1a1;
}


/* List Prods */
.list-prod {
    width: 100%;
}

.list-prod ul li {
    height: 100px;
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #fff;
}

.list-prod ul li:hover {
    border: 1px solid #eaeaea;
    box-shadow: 1px 1px 4px rgba(150, 150, 150, 0.1);
    border-bottom: 1px solid #7ebeff;
}

.list-prod ul li span {
    float: left;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    text-align: center;
    line-height: 45px;
    /* font-size: 2.5rem; */
    color: #b7b7c5;
    /* background: #f2f3f7; */
    margin-right: 20px;
}

.list-prod ul li span img{
    width: 100%;
}

.list-prod li a {
    font-weight: 700;
    color: #333;
    /* font-size: 1.4rem; */
}

.list-prod ul li a small {
    color: #505050;
    font-weight: 400;
    /* font-size: 1.3rem; */
}

.list-prod ul li .date-update {
    background: #f2f3f7;
    padding: 5px;
    border-radius: 4px;
    float: right;
    /* font-size: 1.1rem; */
    color: #555;
}

.list-prod ul li .date-update i {
    color: #a1a1a1;
}

.not-prod {
    /* font-size: 1.4rem; */
    color: #f64e60;
}

/* User Prodfile */
.user-thumb {
    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;
}

.user-thumb img {
    width: 100px;
    height: 100px;
    border-radius: 4px;
}

.user-thumb h4 {
    margin-top: 10px;

    /* font-size: 2.0rem; */
    color: #717785;
}

.user-thumb small {
    margin-top: 5px;

    font-family: 'Roboto', sans-serif;
    /* font-size: 1.4rem; */
    font-weight: 400;
    color: #b1b1b1;
}

.user-inputs,.user-inputs-end {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    
    border-radius: 6px;
    background: rgba(150, 150, 150, 0.1);
    color: #b1b1b1;
    font-family: 'Roboto', sans-serif;
    /* font-size: 1.4rem; */
    font-weight: 400;
}

.user-inputs-end-edit {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    display: none;
    
    border-radius: 6px;
    background: rgba(150, 150, 150, 0.1);
    color: #b1b1b1;
    font-family: 'Roboto', sans-serif;
    /* font-size: 1.4rem; */
    font-weight: 400;
}

.user-inputs.disable-itens {
    display: none;
}
.user-inputs-end.disable-itens {
    display: none;
}
.user-inputs-end-edit.disable-itens {
    display: block;
}

.user-inputs,.user-inputs-end,.user-inputs-end-edit,.user-inputs-end-edit h4 {
    font-family: 'Nunito', sans-serif;
    /* font-size: 1.6rem; */
    color: #717785; 
}

.btn-info-perfil {
    display: none;
}
    
.btn-info-perfil.view-itens {
    display: block;
}

.inputs-user-info {
    display: none;
}

.input-new-pass {
    display: none;
}

.input-new-pass.active {
    display: block;
}

.inputs-user-info.active {
    display: block;
}

.inputs-list {
    width: 100%;
    /* padding: 10px; */
    margin-bottom: 20px;
    
    border-radius: 6px;
    /* background: rgba(150, 150, 150, 0.1); */
    color: #999898;
    font-family: 'Roboto', sans-serif;
    /* font-size: 1.2rem; */
    font-weight: 400;
}

.inputs-list input {
    width: 100%;
    max-width: 400px;
    display: block;
    margin-top: 5px;
    padding: 5px;
    border-radius: 4px;
    border: 1px solid #c1c1c1;

    font-family: 'Roboto', sans-serif;
    /* font-size: 1.4rem; */
    color: #717785;
}

.user-inputs-end-edit input {
    width: 100%;
    max-width: 400px;
    display: block;
    margin-top: 5px;
    padding: 5px;
    border-radius: 4px;
    border: 1px solid #c1c1c1;

    font-family: 'Nunito', sans-serif;
    /* font-size: 1.6rem; */
    color: #717785;
}


.inputs-list select {
    width: 100%;
    max-width: 400px;
    display: block;
    margin-top: 5px;
    padding: 5px;
    border-radius: 4px;
    border: 1px solid #c1c1c1;

    font-family: 'Roboto', sans-serif;
    /* font-size: 1.3rem; */
    color: #717785;
}

select {
    width: 100%;
    max-width: 400px;
    display: block;
    margin-top: 5px;
    padding: 2px;
    border-radius: 4px;
    border: 1px solid #c1c1c1;

    font-family: 'Roboto', sans-serif;
    /* font-size: 1.2rem; */
    color: #717785;
}


.toggle-options {
    position: absolute;
    top: 15px;
    right: 20px;
    display: flex;
}

.ticket-content.disable {
    display: none;
}

.toggle-options a {
    padding: 6px;
    border-radius: 4px;
    border:1px solid rgba(150, 150, 150, 0.2);
    background: rgb(243, 246, 249 / 50%);
    margin-left: 10px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    /* font-size: 1.4rem; */
    color: #717785; 
}

.toggle-options a:hover {
    background: rgb(243, 246, 249);
}

.card-title.disable-itens {
    display: none;
}

.admin-thumb-info {
    position: absolute;
    top: 5px;
    right: 10px;

    /* font-size: 4.2rem; */
    color: #1c79d6;
}


/* Banners list Style */
.banners-list {
    width: 100%;
}

.banners-list ul li {
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #f1f1f1;
}

.banners-list ul li:hover {
    border: 1px solid #eaeaea;
    box-shadow: 1px 1px 4px rgba(150, 150, 150, 0.1);
    border-bottom: 1px solid #7ebeff;
}

.banners-list ul li span {
    /* float: left; */
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    line-height: 45px;
    /* font-size: 2.5rem; */
    color: #b7b7c5;
    /* background: #f2f3f7; */
    margin-right: 20px;
}

.banners-list ul li span img{
    width: 700px;
    /* height: 300px; */
}

.banners-list li a {
    font-weight: 700;
    color: #333;
    /* font-size: 1.4rem; */
}

.banners-list ul li a small {
    display: block;
    color: #505050;
    font-weight: 400;
    /* font-size: 1.0rem; */
}

.banners-list ul li .date-update {
    background: #f2f3f7;
    padding: 5px;
    border-radius: 4px;
    float: right;
    /* font-size: 1.1rem; */
    color: #555;
    margin-left: 5px;
}

.banners-list ul li .date-update i {
    color: #a1a1a1;
}

.pagination {
    position: relative;
    right: 0;
    top: -7px;
    margin-top: 15px;
    /* margin-bottom: .5rem; */

    display: flex;
    padding-left: 0;
    list-style: none;
    border-radius: .25rem;

    -ms-flex-pack: end!important;
    justify-content: flex-end!important;
}

.page-item:first-child .page-link {
    margin-left: 0;
    border-top-left-radius: .25rem;
    border-bottom-left-radius: .25rem;
}

.page-item.active .page-link {
    z-index: 3;
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
}

.page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    cursor: auto;
    background-color: #fff;
    border-color: #dee2e6;
}

.page-item:last-child .page-link {
    border-top-right-radius: .25rem;
    border-bottom-right-radius: .25rem;
}

.page-link {
    position: relative;
    display: block;
    padding: 3px 9px;
    /* font-size: 1.4rem; */
    margin-left: -1px;
    line-height: 1.25;
    color: #007bff;
    background-color: #fff;
    border: 1px solid #dee2e6;
}

.input-search {
    width: 300px;
    float:right;
    padding: 7px;
    padding-left: 33px;
    border: 1px solid #eaeaea;
    border-radius: 5px;
    margin-top: 15px;
    box-shadow: 1px 1px 1px #e1e1e1;
    border: 1px solid #d1d1d1;
}

.input-search-prod {
   padding: 7px;
   border: 1px solid #eaeaea;
   border-radius: 5px;
}

.input-search-prod:hover {
    border: 1px solid #1c79d6;
}

.btn-search {
    background: none;
    border: none;
    color: #a1a1a1;
    position: relative;
    right: 30px;
}

.btn-search-input {
    background: none;
    border: none;
    /* color: #a1a1a1; */
    float: right;
    margin-top: 20px;
    margin-right: -27px;
    /* font-size: 18px; */
    opacity: 0.5;
}

.product-info-thumb {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.product-info-thumb img {
    width: 60%;
    /* height: 150px; */
    border-radius: 10%;
}

.list-prod-info {
    width: 100%;
    display: none;
}

.list-prod-info.active {
    display: block;
}

.list-prod-info ul li {
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #eaeaea;
}

.list-prod-info ul li:hover {
    box-shadow: 1px 1px 4px rgba(150, 150, 150, 0.1);
    border-bottom: 1px solid #7ebeff;
}

.list-prod-info ul li span {
    float: left;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    text-align: center;
    line-height: 45px;
    /* font-size: 2.5rem; */
    color: #b7b7c5;
    /* background: #f2f3f7; */
    margin-right: 20px;
}

.list-prod-info ul li span img{
    width: 100%;
}

.list-prod-info li {
    font-weight: 700;
    color: #333;
    /* font-size: 1.4rem; */
}

.list-prod-info ul li small {
    color: #505050;
    font-weight: 400;
    /* font-size: 1.3rem; */
}

.list-prod-info ul li .date-update {
    background: #f2f3f7;
    padding: 5px;
    border-radius: 4px;
    float: right;
    /* font-size: 1.1rem; */
    color: #555;
    margin-left: 10px;
}

.list-prod-info ul li .date-update.dow {
    background: #449848!important;
}

.list-prod-info ul li .date-update.see {
    background: #3699ff!important;
}

.list-prod-info ul li .date-update.delete {
    background: #f64e60!important;
    padding-left: 10px;
    padding-right: 10px;
}

.list-prod-info ul li .date-update.dow i,
.list-prod-info ul li .date-update.dow a,
.list-prod-info ul li .date-update.see i,
.list-prod-info ul li .date-update.see a,
.list-prod-info ul li .date-update.delete i,
.list-prod-info ul li .date-update.delete a {
    color: #fff;
}

.list-prod-info ul li .date-update i {
    color: #a1a1a1;
}

.list-prod-info ul li .date-update a {
    color: #4e4e4e;
}

.card-title-prod{
    margin-bottom: 10px;
}


/* Table */
table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
    border: none;
    border: 1px solid #ddd;
}

table thead tr {
    background: #1c79d6!important;
    color: #fff;
    font-weight: 500;
}

table thead tr th {
    font-weight: 500;
    height: 25px;
}

th, td {
    padding: 2px;
    text-transform: uppercase;
    font: 400 11px 'Roboto', sans-serif;
}

tr:nth-child(even){background-color: #f2f2f2!important;}
table tbody tr:hover {background-color: #ddd!important;}

/* table tbody tr,
table tbody tr,td {
    border: 1px solid #d0d0d0;
} */

tr:nth-child(even) {
    background-color: #f2f2f2;
}

.filter-tables
{
    display: flex;
}

/* .filter-tables a
{
    padding: 6px;
    border-radius: 4px;
    border: 1px solid rgba(150, 150, 150, 0.2);
    margin-left: 10px;
    color: #717785;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    /* font-size: 1.3rem; */
} */

.table-options {
    padding: 5px;
    background: #f2f3f7;
    display: flex;
    justify-content: space-between;
}

.table-btn-action a {
    margin-right: 10px;
    color: #888;
}

.table-btn-action a:hover {
    color: #1c79d6;
}

.switch {
    position: relative;
    display: inline-block;
    width: 40px;
    top: -2px;
    left: 5px;
}
  
.switch input { 
    opacity: 0;
    width: 0;
    height: 0;
}
  
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}
  
.slider:before {
    position: absolute;
    content: "";
    height: 15px;
    width: 15px;
    left: 2px;
    bottom: 2px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}
  
input:checked + .slider {
    background-color: #2196F3;
}

input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
    -webkit-transform: translateX(16px);
    -ms-transform: translateX(16px);
    transform: translateX(16px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
    width: 35px;
    height: 18.5px;
}

.slider.round:before {
    border-radius: 50%;
}

.btn-save{
    width: 100%;
    max-width: 410px;
    background: #3699ff!important;
    color: #fff;
    border-radius: 4px;
    border:1px solid #06f;
    padding: 5px;
    font-family: 'Roboto', sans-serif;
    cursor: pointer;
}

.btn-save.green{
    background: #28a745!important;
    border:1px solid #1d8b37!important;
}

.btn-save.red{
    background: #f64e60!important;
    border:1px solid #d63b4b!important;
}


.badges-blue{
    background: #3699ff;
    padding: .25em .4em;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 3.25rem;
    text-transform: none;
}

.badges-orange{
    background: #f19066;
    padding: .25em .4em;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 3.25rem;
    text-transform: none;
}

.badges-green {
    background: #28a745;
    padding: .25em .4em;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 3.25rem;
    text-transform: none;
}

.badges-red {
    background: #f64e60;
    padding: .25em .4em;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 3.25rem;
    text-transform: none;
}

.badges-gray {
    background: #888;
    padding: .25em .4em;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 3.25rem;
    text-transform: none;
}

.badges-ticket-open {
    padding: 7.5px;
    border-radius: 4px;
    border: 1px solid #28a745;
    background: #fff;
    margin-left: 10px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    /* font-size: 1.2rem; */
    color: #28a745;
}
.badges-ticket-none
{
    padding: 7.5px;
    border-radius: 4px;
    /* border: 1px solid #3699ff; */
    /* background: #fff; */
    /* margin-left: 10px; */
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    /* font-size: 1.2rem; */
    color: #3699ff;
}
.badges-ticket-none:hover
{
    transition: all 0.3s linear;
    /* text-decoration: underline; */
    background: #fff;
}

.badges-ticket-progress {
    padding: 7.5px;
    border-radius: 4px;
    border: 1px solid #3699ff;
    background: #fff;
    margin-left: 10px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    /* font-size: 1.2rem; */
    color: #3699ff;
}

.badges-ticket-closed {
    padding: 7.5px;
    border-radius: 4px;
    border: 1px solid #888;
    background: #fff;
    margin-left: 10px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    /* font-size: 1.2rem; */
    color: #888;
}

.toggle-user-exchange {
    display: none;
}

.toggle-user-exchange.active {
    display: block;
}

.responsible-user {
    display: block;
}

.responsible-user.active {
    display: none;
}


.ticket-thumb {
    /* display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center; */
    /* font-size: 1.4rem; */
    font-weight: normal;
}

.ticket-thumb h4 {
    margin-top: 10px;
    margin-bottom: 5px;

    /* font-size: 2.0rem; */
    color: #717785;
}

.ticket-thumb small {
    margin-top: 5px;

    font-family: 'Roboto', sans-serif;
    /* font-size: 1.4rem; */
    font-weight: normal;
    color: #828282;
}

.inputs-list-ticket {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    
    border-radius: 6px;
    background: rgba(150, 150, 150, 0.1);
    color: #8a8a8a;
    font-family: 'Roboto', sans-serif;
    /* font-size: 1.4rem; */
    font-weight: 400;
}

.inputs-list-ticket small {
    color: #303030;
}


/* =-=-=-=-=-=-=-=-=-= Style of Text msg - Tickets =-=-=-=-=-=-=-=-=-= */
.tickets-card-info {
    display: inline-block;
    clear: both;
    width: 100%;
    height: auto;
    /* font-size: 1.4rem; */
}

.tickets-card-info .tickets-msg-info {
    /* font-size: 1.2rem; */
    color: #435f7a;
    font-weight: 600;
    text-transform: uppercase;
}

.tickets-card-info .tickets-msg-info small {
    /* font-size: 1.1rem; */
    font-weight: 600;
    color: #a3a3a3;
}

.tickets-card-info .tickets-msg-info i {
    color: #637586;
    /* font-size: 10px; */
}

.tickets-card-info:hover > .tickets-footer-info {
    opacity: 1!important;
    transition: all 0.3s linear !important;
}

/* Ajustando a imagem dentro da box de mensagem */
.tickets-card-info .MsoNormal img {
    max-width: 100%!important;
}

.tickets-card-info p img {
    max-width: 100%!important;
}

/* Configurando de acordo com o tipo */
.tickets-card-info.send {
    margin-top: 35px;
    width: auto;
    max-width: 90%;
    float: right;
    background: #ffffff;
    color: #435f7a;
    padding: 10px;
    border-radius: 3px;
    font-weight: normal;
}

.tickets-card-info.blue {
    margin-top: 35px;
    width: auto;
    max-width: 90%;
    float: left;
    background: #435f7a;
    color: #fff;
    padding: 10px;
    border-radius: 3px;
    font-weight: normal;
}

.tickets-card-info.system {
    margin-top: 35px;
    width: auto;
    max-width: 90%;
    float: left;
    background: #c74949;
    color: #fff;
    padding: 10px;
    border-radius: 3px;
    font-weight: normal;
}

.tickets-card-info.user {
    margin-top: 35px;
    width: auto;
    max-width: 90%;
    float: left;
    background: #46b06a;
    color: #fff;
    padding: 10px;
    border-radius: 3px;
    font-weight: normal;
}

/* .tickets-card-info.send p {
    display: inline-block;
}

.tickets-card-info.blue p {
    display: inline-block;
}

.tickets-card-info.system p {
    display: inline-block;
} */

.tickets-card-info.send .tickets-msg-info {
    margin-top: -26px;
    margin-right: -10px;
    float: right;
}

.tickets-card-info.blue .tickets-msg-info {
    margin-top: -26px;
    margin-left: -10px;
    float: left;
}

.tickets-card-info.system .tickets-msg-info {
    margin-top: -26px;
    margin-left: -10px;
    float: left;
}

.tickets-card-info.user .tickets-msg-info {
    margin-top: -26px;
    margin-left: -10px;
    float: left;
}

.tickets-card-info.send .tickets-footer-info {
    /* float: right; */
    /* font-size: 1.0rem; */
    color: #b1b1b1;
    margin-bottom: -10px;
    opacity: 0;
    transition: all 0.2s linear !important;
}

.tickets-card-info.blue .tickets-footer-info {
    /* float: left; */
    /* font-size: 1.0rem; */
    color: #7898b8;
    margin-bottom: -10px;
    opacity: 0;
    transition: all 0.2s linear !important;
}

.tickets-card-info.system .tickets-footer-info {
    /* float: left; */
    /* font-size: 1.0rem; */
    color: #ee7d7d;
    margin-bottom: -10px;
    opacity: 0;
    transition: all 0.2s linear !important;
}

.tickets-card-info.user .tickets-footer-info {
    /* float: right; */
    /* font-size: 1.0rem; */
    color: #b1b1b1;
    margin-bottom: -10px;
    opacity: 0;
    transition: all 0.2s linear !important;
}
/* =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= */


.ticket-msg {
    width: 80%;
    padding: 10px;

    font-family: 'Roboto', sans-serif;
    /* font-size: 1.4rem; */
    font-weight: 400;

    border-radius: 3px;
    /* overflow-x: auto; */
}

.ticket-msg.send {
    margin-top: 15px;
    float: right;

    background: #d4edda91;
    border: 1xp solid #c3e6cb;
    color: #155724;
    box-shadow: 2px 2px 1px 1px rgb(21 87 36 / 50%);
    border: 1px solid rgb(21 87 36 / 10%);
}

.ticket-msg.received {
    margin-top: 15px;
    float: left;
    
    background: #e2e3e550;
    border: 1xp solid #e2e3e5;
    color: #383d41;
}

.ticket-msg.comand {
    margin-top: 15px;
    float: left;
    
    background: #f7ecc5;
    color: #574015;
    box-shadow: 2px 2px 1px 1px rgb(87 64 21 / 50%);
    border: 1px solid rgb(87 64 21 / 10%);
}

.ticket-msg.comandGov {
    margin-top: 15px;
    float: left;
    
    background: #00598542;
    color: #1b485e;
    box-shadow: 2px 2px 1px 1px rgb(27 72 94 / 50%);
    border: 1px solid rgb(27 72 94 / 10%);
}

.ticket-msg.user {
    margin-top: 15px;
    float: left;
    
    background: #c5e3f7;
    color: #00448b;
    box-shadow: 2px 2px 1px 1px rgb(0 68 139 / 50%);
    border: 1px solid rgb(0 68 13 / 10%);
}

.ticket-msg.system {
    margin-top: 15px;
    float: left;
    
    background: #ff00001f;
    border: 1px solid rgb(139 0 0 / 10%);
    border-left: 5px solid;
    color: #8b0000;
    box-shadow: 2px 2px 1px 1px rgb(139 0 0 / 50%);
    
}

.ticket-msg .date {
    float: right;
    /* font-size: 1.0rem; */
    font-style: italic;
}

.ticket-msg .user {
    /* font-size: 1.2rem; */
    margin-bottom: 15px;
    font-weight: 500;
    /* color: rgba(0, 0, 0, 0.6); */
}

.new-ticket {
    background: #4caf5029;
}

.new-ticket a {
    color: #28a745!important;
}



/**
 * Alerts Style
 */
 .ModalAlert {
    display: none;/* Hidden by Defaut */
    position:absolute;
    right:20px;
    top:20px;
    width:230px;
    height: auto;
    z-index: 1;
    /*box-shadow: 1px 1px 10px #333;*/
}
.ModalAlertProtocol {
    display: none;/* Hidden by Defaut */
    position:absolute;
    right:20px;
    bottom:20px;
    width:340px;
    height: auto;
    z-index: 1;
    /*box-shadow: 1px 1px 10px #333;*/
}
.ModalAlerTitleError {
    width:100%;
    padding:8px;
    background:#f64e60;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    color:#fff;
    font-family: Arial;
    /* font-size:14px; */
}

.ModalAlerTitleSuccess {
    width:100%;
    padding:8px;
    background:#48b16b;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    color:#fff;
    font-family: Arial;
    /* font-size:14px; */
}

.ModalAlerTitleProtocol {
    width:100%;
    padding:8px;
    background: #282e2a;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    color:#fff;
    font-family: Arial;
    /* font-size:14px; */
}

.modalClose{
    /* display:inline; */
    float:right;
    margin-right: 8px;
}

.modalClose a{
    color:#fff;
}

.ModalAlerBodyError {
    width:100%;
    padding:8px;
    background:#fc717f;
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
    color:#fff;
    font-family: Arial;
    /* font-size:14px; */
    /*text-align: justify;*/
}

.ModalAlerBodySuccess {
    width:100%;
    padding:8px;
    background:#5bc980;
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
    color:#fff;
    font-family: Arial;
    /* font-size:14px; */
    /*text-align: justify;*/
}

.ModalAlerBodyProtocol {
    width:100%;
    padding:8px;
    background:#414242;
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
    color:#fff;
    font-family: Arial;
    /* font-size:1.4rem; */
    font-weight: normal;
    /*text-align: justify;*/
}

.scaleTime{
    display:none;
    width:0px;
    background:#fff;
    height: 10px!important;
    margin-bottom:-6px;
    border-top-left-radius:3px;
    border-top-right-radius:3px;
}

.scaleTimeBlue{
    display:none;
    width:0px;
    background:#09f;
    height: 10px!important;
    margin-bottom:-6px;
    border-top-left-radius:3px;
    border-top-right-radius:3px;
}

.icon-minimize.disable {
    display: none;
}

.page_edit {
    display: none;
}

.page_edit.active {
    display: block;
}

.page_prod {
    display: none;
}

.page_prod.active {
    display: block;
}

.page_view {
    display: block;
}

.page_view.active {
    display: none;
}

.post-info {
    padding-top: 10px;
    /* font-size: 1.4rem; */
    font-weight: 400;
}

.card-info-pages {
    padding: 10px;
}

.card-info-pages a {
    color: #444;
}

.card-info-pages.admin {
    margin-top: 10px;
    border-radius: 4px;
    border: 1px solid rgba(60, 60, 60, 0.1);
}

#toggle-list-type-ticket {
    display: block;
}

#toggle-list-type-ticket.active {
    display: none;
}

#toggle-form-type-ticket {
    display: none;
}

#toggle-form-type-ticket.active {
    display: block;
}

#toggle-form-type-ticket_solicit {
    display: none;
}

#toggle-form-type-ticket_solicit.active {
    display: block;
}

.toggle-list-type-ticket {
    display: block;
}

.toggle-list-type-ticket.active {
    display: none;
}

.custom-file-input.active {
    display: none;
}

.form-control-sm.active {
    display: none;
}

.prod-list ul li {
    float: left;

    border: 1px solid #f1f1f1;
    border-radius: 5px;
    padding: 10px;
    margin-right: 20px;
    margin-bottom: 20px;

    width: 300px;

    text-align: center;
    /* font-size: 1.4rem; */
}

.prod-list ul li:hover {
    border:1px solid #09f
}

.prod-list ul li a {
    color: #333;
}

.prod-list ul li h4 {
    color: #336cce;
}

.prod-list ul li .date-update {
    color: #666;
    font-weight: 400;
    /* font-size: 1.2rem; */
    margin-top: 5px;
}

.prod-list ul li img {
    /* width: 100%; */
    height: 160px;
}

.treinamentoLink {
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
}



.banners-list-crt ul li {
    float: left;

    border: 1px solid #f1f1f1;
    border-radius: 5px;
    padding: 10px;
    margin-right: 20px;
    margin-bottom: 20px;

    width: 300px;

    text-align: center;
    /* font-size: 1.4rem; */
    cursor: pointer;
}

.banners-list-crt ul li:hover {
    border:1px solid #09f
}

.banners-list-crt ul li a {
    color: #333;
}

.banners-list-crt ul li h4 {
    color: #336cce;
}

.banners-list-crt ul li .date-update {
    color: #666;
    font-weight: bold;
    /* font-size: 1.2rem; */
    margin-top: 5px;
}

.banners-list-crt ul li img {
    width: 100%;
}

.banners-list-crt .remove {
    float: right;
    margin-bottom: 10px;
}

.banners-list-crt .edit {
    float: right;
    margin-bottom: 10px;
    margin-right: 10px;
}

.user-thumb-imgs li {
    float: left;
    list-style: none;
    padding: 5px;
    border: 1px solid #f1f1f1;
    border-radius: 5px;
    text-align: center;
    margin-left: 10px;
}

.user-thumb-imgs li a {
    /* border: 1px solid #f1f1f1; */
    border-radius: 5px;
    padding: 5px;

}

#per_page{
    width: 50px;
    /* height: 30px; */
    padding: 1px;
    /* font-size: 1.1rem; */
    margin-bottom: 5px;
    display: inline;
}


/* Botão Drop */
.dropbtn {
    background-color: #1c79d6;
    color: white;
    padding: 0.25em 0.4em;
    border: 0px solid #1a69b7;
    cursor: pointer;
    border-radius: 0.25rem;
    white-space: nowrap;
    font: 400 1.2rem 'Nunito', sans-serif;
  }
  
  .dropbtn:hover, .dropbtn:focus {
    background-color: #1a69b7;
  }
  
  .dropdown {
    /* float: right; */
    position: relative;
    display: inline-block;
  }
  
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    width: auto;
    min-width: 100px;
    overflow: auto;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    border: 1px solid #e1e1e1;
    right: 0;
    z-index: 101;
    white-space: nowrap;
    text-transform: none;
  }
  
  .dropdown-content a {
    color: black;
    padding: 5px 8px;
    text-decoration: none;
    display: block;
    text-align: left;
  }

  
  .dropdown a:hover {background-color: #f1f1f1;}
  
  .show {display: block;}




  /* setup tooltips */
.tooltip {
    position: relative;
    /* z-index: 105; */
}
.tooltip:before,
.tooltip:after {
    display: block;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    z-index: 105;
}
.tooltip:after {
      border-right: 6px solid transparent;
      border-bottom: 6px solid rgba(0,0,0,.75); 
    border-left: 6px solid transparent;
    content: '';
    height: 0;
      top: 20px;
      left: 20px;
    width: 0;
    z-index: 105;
}
.tooltip:before {
    background: rgba(0,0,0,.75);
    max-width: 500px;
    min-width: 150px;
    border-radius: 2px;
    color: #fff;
    content: attr(data-title);
    font: 400 1.2rem 'Poppins', sans-serif;
    padding: 6px 10px;
      top: 26px;
    white-space: nowrap;
    z-index: 105;
}
  
  /* the animations */
  /* fade */
.tooltip.fade:after,
.tooltip.fade:before {
    transform: translate3d(0,-10px,0);
    transition: all .15s ease-in-out;
}
  .tooltip.fade:hover:after,
  .tooltip.fade:hover:before {
    opacity: 1;
    transform: translate3d(0,0,0);
}
  
  /* expand */
.tooltip.expand:before {
    transform: scale3d(.2,.2,1);
    transition: all .2s ease-in-out;
}
.tooltip.expand:after {
    transform: translate3d(0,6px,0);
    transition: all .1s ease-in-out;
}
.tooltip.expand:hover:before,
.tooltip.expand:hover:after {
    opacity: 1;
    transform: scale3d(1,1,1);
}
.tooltip.expand:hover:after {
    transition: all .2s .1s ease-in-out;
}
  
  /* swing */
.tooltip.swing:before,
.tooltip.swing:after {
    transform: translate3d(0,30px,0) rotate3d(0,0,1,60deg);
    transform-origin: 0 0;
    transition: transform .15s ease-in-out, opacity .2s;
}
.tooltip.swing:after {
    transform: translate3d(0,60px,0);
    transition: transform .15s ease-in-out, opacity .2s;
}
.tooltip.swing:hover:before,
.tooltip.swing:hover:after {
    opacity: 1;
    transform: translate3d(0,0,0) rotate3d(1,1,1,0deg);
}
  


/* Modal */
.btn-close {
    color: #aaaaaa;
    /* font-size: 20px; */
    text-decoration: none;
    padding:0px;
    position: absolute;
    right: 8px;
    top: 2px;
}

.btn-close:hover {
    color: #919191;
}

.modale:before {
    content: "";
    display: none;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
}

.opened:before {
    display: block;
}

.opened .modal-dialog {
    /* -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0); */
    top: 10%;
}

.modal-dialog {
    background: #fefefe;
    border: #333333 solid 0px;
    border-radius: 5px;
    
    text-align:left;
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    /* top: -100%; */
    z-index: 11;
    
    box-shadow:0 5px 10px rgba(0,0,0,0.3);
    /* -webkit-transform: translate(0, -500%);
    -ms-transform: translate(0, -500%);
    transform: translate(0, -500%); */
    /* -webkit-transition: -webkit-transform 0.3s ease-out;
    -moz-transition: -moz-transform 0.3s ease-out;
    -o-transition: -o-transform 0.3s ease-out; */
    transition: transform 0.3s ease-out;
}

.modal-dialog.lg{
    /* max-width: 1000px; */
    width: 90%;
    /* margin-left: -500px; */
}

.modal-dialog.md{
    max-width: 600px;
    width: 90%;
    margin-left: -300px;
}

.modal-body {
    /* padding: 10px; */
    font-family: Roboto;
    /* font-size: 12px; */
    font-weight: 400;
}

.modal-header,
.modal-footer {
padding: 6px 6px;
}
.modal-header {
    border-bottom: #eeeeee solid 1px;
}

.modal-header h2{
    color: #1c79d6;
    font-weight: 500;
    /* font-size: 1.4rem; */
    font-family: 'Poppins', sans-serif;
}


/* Comunication column */
.row-comunication {
    display: flex;
    justify-content: space-between;
}

.comunication-column {
    display: inline-block;
    width: 50%;
    min-width: 30px;
    /* background-color: red; */
    /* border: 1px solid #09f; */
}

/* .comunication-column:first-child {
    border-right: 2px solid #cecece;
} */

.view-comunication h5 {
    text-align: center;
    /* font-size: 14px; */
    font-family: 'Roboto';
    font-weight: 500;
    color: #272727;
    margin: 10px;
}

.view-comunication p img 
{
    width: -webkit-fill-available;
}

.list-comunication h5 {
    text-align: center;
    /* font-size: 14px; */
    font-family: 'Roboto';
    font-weight: 400;
    color: #c1c1c1;
    margin: 10px;
}

/* LIST */

.dropdown-check-list {
    display: inline-block;
    width: 100%;
  }
  
  .dropdown-check-list .anchor {
    position: relative;
    cursor: pointer;
    display: inline-block;
    padding: 5px 50px 5px 10px;
    border: 1px solid #eaeaea;
    width: 100%;
  }
  
  .dropdown-check-list .anchor:after {
    position: absolute;
    content: "";
    border-left: 2px solid #333;
    border-top: 2px solid #333;
    padding: 2px;
    right: 10px;
    top: 25%;
    -moz-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
  }
  
  .dropdown-check-list .anchor:active:after {
    right: 8px;
    top: 21%;
  }
  
  .dropdown-check-list ul.items {
    padding: 2px;
    display: none;
    margin: 0;
    border: 1px solid #eaeaea;
    border-top: none;
    position: absolute;
    top: 26px;
    left: 0;
    width: 100%;
    background: #fff;
  }
  
  .dropdown-check-list ul.items li {
    list-style: none;
  }
  
  .dropdown-check-list.visible .anchor {
    color: #0094ff;
  }
  
  .dropdown-check-list.visible .items {
    display: block;
    z-index: 1;
  }


.inputs-list-form {
    /* width: 500px; */
    padding: 10px;
    /* text-align: center; */
    background: rgba(150, 150, 150, 0.1);
    border-radius: 6px;
    margin-bottom: 20px;
}

.inputs-list-form .center-input-file {
    text-align: center;
    width: 100%;
    max-width: 400px;
}

.inputs-list-form div {
    text-align: left;
    color: #8c8e93;
    font-family: 'Roboto', sans-serif;
    /* font-size: 1.2rem; */
    font-weight: 400;
}

.inputs-list-form div span {
    color: #4CAF50
}

.inputs-list-form div#r div:first-of-type {
    margin-top: 5px
}

.inputs-list-form div#r div:last-of-type span {
    color: #d19a66
}

.inputs-list-form input[type="file"] {
    display: none
}

.inputs-list-form label {
    display: block;
    color: #999898;
    font-family: 'Roboto', sans-serif;
    /* font-size: 1.2rem; */
    font-weight: 400;
    margin-bottom: 4px;
}

.inputs-list-form .upload-link-btn {
    width: 100%;
    max-width: 400px;
    background-color: #4CAF50;
    border: 1px solid #4CAF50;
    padding: 5px;
    color: #fff;
    cursor: pointer;
    transition: all .3s ease-in-out;
    border-radius: 3px;
    display: block;
}
  
.inputs-list-form button:hover {
    background-color: #66BB6A
}
  
.inputs-list-form button:active {
    background-color: #388E3C
}

.inputs-list-form input {
    width: 100%;
    max-width: 400px;
    display: block;
    margin-top: 5px;
    padding: 5px;
    border-radius: 4px;
    border: 1px solid #c1c1c1;
    font-family: 'Roboto', sans-serif;
    /* font-size: 1.4rem; */
    color: #717785;
}

.loader-small {
    border: 2px solid #e1e1e1;
      border-top: 2px solid #4CAF50;
    /*border-bottom: 4px solid blue; */
    border-radius: 50%;
    
    width: 16px;
    height: 16px;
    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: spin 2s linear infinite;
  }
  
  /* Safari */
  @-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }


.note-modal-body {
    position: relative;
    padding: 20px 30px;
    overflow: auto;
    /* overflow-y: hidden; */
    max-height: 330px!important;
}

.flex-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-content: center;
    gap: 10px;
}

.flex-item {
    width: 100%;
}

.bg-gray-100
{
    background: #f3f4f6;
}

.p {
    padding: 1px;
}

.p-2 {
    padding: 2px;
}


/* Chatbot Effects */
@keyframes pulse {
    0%,
    100% {
      animation-timing-function: ease-in;
    }
    50% {
      transform: scale(1.33);
    }
}


/* Chatbot icon */
.chatbotIcon
{
    position: fixed;
    right: 35px;
    bottom: 35px;
    z-index: 1;
    display: flex;

    /* width: 45px;
    height: 45px; */
    /* background-color: red; */
}

.chatbotIcon img
{
    /* max-height:100%;
    max-width:100%; */


    width: 45px;
    height: 45px;

    -webkit-filter: drop-shadow(2px 2px 2px rgb(100, 100, 100));
    filter: drop-shadow(2px 2px 2px rgb(100, 100, 100));
    cursor: pointer;
    animation: pulse 2s infinite;
}

.chatbotIcon img:hover
{
    transform: scale(1.33);
}

.message-box-info {
    opacity: 0;
    display: none;
    padding: 6px 10px;
    border-radius: 6px 0 6px 0;
    position: relative;
    background: rgb(255, 255, 255);
    border: 1px solid rgba(150, 150, 150, .3);
    box-shadow: 2px 2px 6px rgba(180, 180, 180, .7);
    color: rgb(43, 43, 43);
    /* font-size: 12px; */
    margin-right: 16px;
    margin-top: 8px;
    height: 30px;
}

.message-box-info:after {
    content: "";
    position: absolute;
    border: 10px solid transparent;
    border-top: 10px solid rgba(100, 100, 100, .3);
    border-right: none;
    bottom: 6px;
    right: -2px;
    transform: rotate(45deg);
  }

/* Chatbot Chat */
.bot-header
{
    display: flex;
    background-color: rgba(17, 24, 39);
    padding: 10px 10px 8px 10px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    color: #fff;
}
.bot-header img
{
    width: 35px;
    height: 35px;
}

.bot-header p
{
    margin-left: 8px;
}

.bot-header p span
{
    display: block;
    margin-top: -3px;
    /* font-size: 12px; */
    font-weight: normal;
    color: rgb(102, 223, 89);
}

.bot-header .chatClossed
{
    position: absolute;
    right: 10px;
    top: 2px;
    /* font-size: 26px; */
}

.bot-header .chatClossed:hover
{
    cursor: pointer;
    color: red;
}

.bot-header .chatMinimize
{
    position: absolute;
    right: 33px;
    top: -5px;
    /* font-size: 26px; */
    font-weight: bold;
    font-family: 'Roboto';
}

.bot-header .chatMinimize:hover
{
    cursor: pointer;
    color: red;
}

.bot{
    opacity: 0;
    display: none;
    position: fixed;
    right: 20px;
    bottom: 20px;
    /* width: 330px;
    height: 430px; */
    width: 0px;
    height: 0px;
    z-index: 1;

    border-radius: 10px;
    box-shadow: 3px 3px 15px 2px rgba(50, 50, 50, .2);
    /* border: 1px solid #dedede; */
    /* background: #e7e7f1; */
    background: rgba(234, 238, 243, 1);;
}

.bot-inputArea{
    position: absolute;
    bottom: 0px;
    width: 100%;
    padding: 10px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background-color: rgba(17, 24, 39);
    display: flex;
    justify-content: space-between;
}

#userInput {
    height: 35px;
    width: 80%;
    background-color: white;
    border-radius: 6px;
    padding: 1rem;
    /* font-size: 1.2rem; */
    border: none;
    outline: none;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
  }

  #send {
    height: 35px;
    padding: .5rem;
    /* font-size: 1.2rem; */
    text-align: center;
    width: 15%;
    color: white;
    background: #3B82F6;
    cursor: pointer;
    border: none;
    border-radius: 6px;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
  }

  #send:hover {
    background: #3773d2;
  }

  .bot-body 
  {
    padding: 10px;
    font-family: 'Lato';
    font-weight: 400;
    /* font-size: 14px; */
  }

  .bot-message {
    padding: 15px;
    max-width: 83%;
    background-color: #fff;
    border-radius: 2px 10px 10px 10px;
    margin-bottom: 10px;
    /* border: 1px solid rgba(25, 25, 25, 0.1); */
    /* box-shadow: 2px 2px 8px rgba(50, 50, 50, .1); */
  }

  .bot-options 
  {
    max-width: 83%;
    padding: 8px;
    margin-bottom: 5px;
    background-color: #fff;
    color: #06f;
    border: 1px solid #09f;
    border-radius: 2px 10px 10px 10px;
    transition: all 0.2s linear;
    cursor: pointer;
  }

  .bot-options:hover
  {
    background-color: #09f;
    color: #fff;
  }

  .bot-userSection
  {
    padding: 15px;
    max-width: 83%;
    background-color: #2186c9;
    color: #fff;
    border-radius: 10px 2px 10px 10px;
    margin-bottom: 10px;
    float: right;
    display: inline;
  }

  .bot-userSection:after {
     content: "";
    position: relative;
    border: 10px solid transparent;
    border-top: 10px solid red;
    border-right: none;
    bottom: 5px;
    right: -20px;
    transform: rotate(0deg);
  }