/* Cascading Style Sheets (css)*/

:root {
    --verde-agua: rgb(4, 187, 178);
    --theme-purple-realbras: rgb(112, 26, 75);
	--soft-purple-theme: #966667;
	--color-rescom: #009d92ff;
	--background-color-rescom: #b3fff9;
    --size: 255;
	--cor-body: #dee2e6;
}

body {
    background-color: var(--cor-body)!important;
}

ul{
    list-style:none;
}

.vr {
	width: 1px;
	min-height: 1em;
	background-color: currentcolor;
	opacity: .25;
}

.main-login {
    width: 100vw;
    height: 100vh;
    display: flex !important;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    justify-content: center;
    align-items: center;
    background-image: url('../images/login-background-41004B.png');

}

.tckt-finalizados {
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.tckt-finalizados>p {
	overflow: hidden;
	font-size: 5.5rem;
	background-color: #ffa;
}

.text-verde-agua {
	color: var(--verde-agua);
}

.bg-theme-realbras {
    background-color: rgb(217, 97, 19);
    background-image: linear-gradient(to top right, rgb(217, 97, 19), rgb(254, 208, 70));
}

.bg-purple-realbras {
    background-color: var(--theme-purple-realbras);
}

.cores-novas {
    background-color: var(--verde-agua);
}

.border-main {
    border-radius: .5rem!important;
}

.shadow-default {
    box-shadow: 2px 2px 10px 3px rgb(100, 100, 100, 0.3);
}

.dashboard-scroll::-webkit-scrollbar {
    width: 5px;
	height: 5px;
}

.dashboard-scroll::-webkit-scrollbar-thumb {
    background: rgba(220, 220, 220);
    border-radius: 10px;
}

/*------------------------- CARDS -------------------------*/

.card-default {
    width: 15rem;
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-clip: border-box;
    border-radius: .5rem;
    background-color: white;
}

.card-default2 {
    width: 12rem;
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-clip: border-box;
    border-radius: .5rem;
    background-color: white;
}

.card-search {
    width: 12rem !important;
    display: flex;
    flex-direction: column;
    word-wrap: break-word;
    background-clip: border-box;
    border-radius: .5rem;
    background-color: white;
}

.card-ticket-finalizados {
    display: none;
    margin-top: -120px;
    margin-left: 90px;
    position: absolute;
    text-align: center;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    word-wrap: break-word;
    background-clip: border-box;
    border-radius: .5rem;
    backdrop-filter: blur(5px);
    font-size: .9rem;
    background-color: rgb(255, 255, 255, .9);
}

.card-ticket-finalizados svg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    fill: transparent;
    stroke-width: 15px;
    stroke: #ddd;
    margin: 0 auto;
}

.card-ticket-finalizados svg.cor {
    stroke: var(--indigo);
    stroke-dasharray: 255;
    stroke-dashoffset: 55;
    transform: rotate(-90deg);
    transform-origin: center;
    stroke-linecap: round;
}

.card-ticket-finalizados>p {
    padding: 0;
    margin: 0;
}

.card-search:hover .card-ticket-finalizados {
    display: flex;

}

.info-card-finalizados span {
    position: absolute;
	animation: info-shadow .5s linear 2s infinite alternate;
}

@keyframes info-shadow {
  from {box-shadow: 0px 0px 7px .5px #b3d7ff;}
  to {box-shadow: 0px 0px 7px .5px #007bff;}
}

/*------------------------- Gráfico de rosca -------------------------*/

.graph3 {
    text-align: center;
    width: 100px;
    height: 100px;
    line-height: 60px;
    text-transform: uppercase;
    font-family: sans-serif;
    text-decoration: none;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.graph3 svg {
    position: absolute;
    width: 100%;
    height: 100%;
    fill: transparent;
    stroke-width: 15px;
}

.graph3 svg.cor-anim {
    stroke: var(--success);
    transform: rotate(-90deg);
    stroke-linecap: round;
}

/************************** TABELA **************************/
/*------------------------- ICON FORA DO PRAZO -------------------------*/

.shw-fora-prazo {
    position: relative;
	animation: fora-prazo-shw .9s linear 2s infinite alternate;
}

@keyframes fora-prazo-shw {
  from {filter: drop-shadow(0px 0px 1px #dc3545);}
  to {filter: drop-shadow(0px 0px 4px #dc3545);}
}

/*------------------------- ICON DENTRO PRAZO -------------------------*/

.shw-dentro-prazo {
    position: relative;
	animation: dentro-prazo-shw .9s linear 2s infinite alternate;
}

@keyframes dentro-prazo-shw {
  from {filter: drop-shadow(0px 0px 1px #28a745);}
  to {filter: drop-shadow(0px 0px 4px #28a745);}
}

/************************** MODAL **************************/

.main-modal {
    width: 100vmax;
    height: 100vh;
    position: fixed;
    align-items: center;
    justify-content: center;
	flex-direction: column;
    background-color: rgb(0, 0, 0, .5);
    top: 0;
    left: 0;
    z-index: 1030;
    display: none !important;
}

.modal-ticket {
	max-width: 75%;
	min-width: 50%;
}

/*------------------------- CHAT DA MODAL TICKET-------------------------*/

/* CAMPO CHAT MODAL TICKET*/
.modal-ticket-mensagem {
	height: 350px;
	overflow: auto!important;
}

.field-mensagem{
	width: 100%!important;
	padding: .5rem!important;
	white-space: normal !important;
/* 	border-top: 1px solid #dee2e6!important; */
}

/* Todos que tiverem o atributo data-directon com valor naoautor*/
[data-direction="naoautor"] {
    display: flex;
    justify-content: end;
}

.field-mensagem[data-direction="naoautor"] > div{
    display: flex;
	flex-direction: row-reverse;
	justify-content: end;
}

/* CAIXA MENSAGEM */

/* ESQUERDO LARANJA */
.field-mensagem[data-direction="autor"] > div > .content-mensagem{
	background-color: #ffddcc;
	padding: .5rem;
	border-radius: 0 .5rem .5rem .5rem;
	display:inline-block;
    position:relative;
	margin:0 ;
}

/* ESQUERDO LARANJA*/
.field-mensagem[data-direction="autor"] > div > .content-mensagem:before {
    content:'';
    position:absolute;
    left:-10px;
    top:0;
    border-bottom: 10px solid transparent;
    border-right: 10px solid #ffddcc;
}

/* DIREITO AZUL*/
.field-mensagem[data-direction="naoautor"] > div > .content-mensagem{
	background-color: #b4fdfa;
	padding: .5rem;
	border-radius: .5rem 0 .5rem .5rem;
	display:inline-block;
    position:relative;
	margin: 0;
}

.field-mensagem[data-direction="naoautor"] > div > .content-mensagem:after{
    content:'';
    position:absolute;
    right:-10px;
    top:0;
    border-bottom: 10px solid transparent;
    border-left: 10px solid #b4fdfa;
}

/* CAMPO DETALHES MODAL TICKET */
.modal-ticket-detalhes {
	height: 75px;
	overflow: auto!important;
	background-color: #ccc;
}

/*=======================================================================================================================================================================================*/

.login-wrap {
    width: 625px;
    /* height: 60vh; */
    margin: 0 auto;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    padding: 2rem 1rem;
    box-shadow: 0px 0px 50px 5px rgba(0, 0, 0, 0.3);
}

/* --------------------------------------------------------------------------- */
.modal-ticket-message {
  max-height: 60vh;
  min-height: 40vh;
  overflow: auto !important;
  background-color: var(--gray-100);
  background-image: url("../images/background/chat/Messaging-pana (4).png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto 75%;
}

.field-message {
  display: flex;
}
.field-message > div {
  width: 75% !important;
  display: flex !important;
  align-items: center;
}
.field-message > div .chat-image {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px !important;
  height: 60px !important;
  color: var(--gray-600);
  background-color: white;
  border-radius: 50% !important;
  margin-bottom: auto;
}
.field-message > div .speech-balloon-container {
  display: flex;
  flex-direction: column;
}
.field-message > div .speech-balloon-container .chat-username {
  padding-top: 16px;
  padding-bottom: 8px;
  font-weight: 600;
  color: var(--gray-700);
}
.field-message > div .speech-balloon-container .speech-balloon {
  display: inline-block;
  padding: 0.5rem 0.8rem;
  border-radius: 0.8rem;
  position: relative;
  filter: drop-shadow(3px 3px 1px rgba(0, 0, 0, 0.1));
}
.field-message[data-direction=naoautor] {
  justify-content: end;
}
.field-message[data-direction=naoautor] > div {
  flex-direction: row-reverse;
  justify-content: end;
}
.field-message[data-direction=naoautor] > div > .chat-image {
  margin-left: 8px;
}
.field-message[data-direction=naoautor] > div .speech-balloon-container {
  justify-content: left;
  align-items: flex-end;
}
.field-message[data-direction=naoautor] > div .speech-balloon-container > .speech-balloon {
  background-color: #521634;
  color: white;
}
.field-message[data-direction=naoautor] > div .speech-balloon-container p:nth-of-type(1) {
  border-radius: 0.8rem 0 0.8rem 0.8rem;
}
.field-message[data-direction=autor] {
  justify-content: start;
}
.field-message[data-direction=autor] > div {
  flex-direction: row;
  justify-content: start;
}
.field-message[data-direction=autor] > div > .chat-image {
  margin-right: 8px;
}
.field-message[data-direction=autor] > div > .speech-balloon-container {
  justify-content: right;
  align-items: flex-start;
}
.field-message[data-direction=autor] > div > .speech-balloon-container > .speech-balloon {
  background-color: #521634;
  color: white;
}
.field-message[data-direction=autor] > div > .speech-balloon-container p:nth-of-type(1) {
  border-radius: 0 0.8rem 0.8rem 0.8rem;
}

/* --------------------------------------------------------------------------- */
.logo-login {
    width: 250px;
}

.logo-login img {
    max-width: 100%;
}

.form-login {

    width: 270px;
}

.form-title {
    /* font-family: Poppins-Bold; */
    font-size: 24px;
    color: #333333;
    line-height: 1.2;
    text-align: center;
    width: 100%;
    display: block;
    font-weight: bold;
    padding: 1rem 0 1rem 1rem;
}

.field-input {
    position: relative;
    width: 100%;
    z-index: 1;
    margin-bottom: 10px;
}

.input-login {
    font-family: arial;
    font-size: 15px;
    line-height: 1.5;
    color: #666666;
    display: block;
    width: 100%;
    background: #e6e6e6;
    height: 50px;
    border-radius: 25px;
    padding: 0 30px 0 68px;
}

.focus-input-login {
    display: block;
    position: absolute;
    border-radius: 25px;
    bottom: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    box-shadow: 0px 0px 0px 0px;
    color: rgb(112, 26, 75, 0.5);
}

.input-login:focus+.focus-input-login {
    -webkit-animation: anim-shadow 0.5s ease-in-out forwards;
    animation: anim-shadow 0.5s ease-in-out forwards;
}

@-webkit-keyframes anim-shadow {
    to {
        box-shadow: 0px 0px 50px 5px;
        opacity: 0;
    }
}

@keyframes anim-shadow {
    to {
        box-shadow: 0px 0px 50px 5px;
        opacity: 0;
    }
}

.input-login:focus+.focus-input-login+.symbol-input100 {
    color: rgb(112, 26, 75);
    padding-left: 28px;
}

/*[ Button ]*/
.field-submit-login {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding-top: 20px;
}

.form-btn {
  font-size: 20px;
  line-height: 1.5;
  color: #fff;
  text-transform: uppercase;
  width: 95%;
  height: 50px;
  border-radius: 5px;
  background: #521634;
/*   background: #5F0480; */
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 25px;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.form-btn:hover {
  background: #280b1a;
}

.field-checkbox-login {
    font-size: 0.8rem;
    padding: 0rem 1rem;
    display: flex;
    justify-content: left;
    align-items: center;
}

.field-checkbox-login label {
    margin: 0rem;
    padding-left: 0.5rem;
}

.field-checkbox-login input:checked {
    background-color: red;
}

/*============================ HOME DASHBOARD ============================*/

.btn-dash-empresas {
  width: 18%;
  height: auto;
}
.btn-dash-empresas img {
  width: 100%;
  height: auto;
}
.btn-dash-rescom {
  background-color: #b3fff9 !important;
}
.btn-dash-realbras {
  background-color: #966667 !important;
}
.btn-dash-panini {
  background-color: #ffffcc !important;
}
.btn-dash-ediouro {
  background-color: #c6f7cc !important;
}
.btn-dash-universo_dos_livros {
  background-color: white !important;
}

/************************ FILTRO TICKET *************************/
/* TAG DETAILS */
.filtro-tickets {
    position: relative;
	width: 250px;
}

.filtro-tickets[open] {
    z-index: 1;
}

.filtro-tickets summary {
	padding: 0 1rem;
    cursor: pointer;
    border-radius: 5px;
    background-color: transparent;
    list-style: none;
}

.filtro-tickets summary::-webkit-details-marker {
    display: none;
}

.filtro-tickets[open] summary:before {
    content: '';
    display: block;
    width: 100vw;
    height: 100vh;
    background: transparent;
    position: fixed;
    top: 0;
    left: 0;
}

.filtro-tickets summary:after {
    content: '';
	margin-top: .3rem;
    display: inline-block;
    float: right;
    width: .5rem;
    height: .5rem;
    border-bottom: 2px solid currentColor;
    border-left: 2px solid currentColor;
    border-bottom-left-radius: 2px;
    transform: rotate(45deg) translate(50%, 0%);
    transform-origin: center center;
    transition: transform ease-in-out 100ms
}

.filtro-tickets summary:focus {
    outline: none;
}

.filtro-tickets[open] summary:after {
    transform: rotate(-45deg) translate(0%, 0%);
}

.filtro-sublista {
	width: 100%;
	background-color: #eaf0f0;
    position: absolute;
    top: calc(100% + .5rem);
    left: 0;
    padding: .4rem 1rem;
    margin: 0;
    box-sizing: border-box;
    border-radius: 5px;
    max-height: 200px;
    overflow-y: auto;
}

.submenu{
    display: block;
    position: absolute;
    margin-left: 251px;
    margin-top: 100px;
}

.submenu input{
	width: 100%; 
}

.filtro-tickets ul li {
    margin: 0;
    padding: .5rem 0;
    border-bottom: 1px solid #ddd;
}

.filtro-tickets ul li:first-child {
    padding-top: 0;
}

.filtro-tickets ul li:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

/* FAKE SELECT */

.filtro-tickets summary.radios {
    counter-reset: radios;
}

.filtro-tickets input[type=radio] {
    counter-increment: radios;
    appearance: none;
    display: none;
}

.filtro-tickets input[type=radio]:checked {
    display: inline;
}

.filtro-tickets input[type=radio]:after {
    content: attr(title);
    display: inline;
    font-size: 1rem;
}

.filtro-tickets ul.list {
    counter-reset: labels;
}

.filtro-tickets label {
    width: 100%;
    display: block;
    cursor: pointer;
}

/* .label-submenu:after {
    content: '';
	margin-top: .3rem;
    display: inline-block;
    float: right;
    width: .5rem;
    height: .5rem;
    border-bottom: 2px solid currentColor;
    border-left: 2px solid currentColor;
    border-bottom-left-radius: 2px;
    transform: rotate(45deg) translate(50%, 0%);
    transform-origin: center center;
    transition: transform ease-in-out 100ms
}

.label-submenu:checked:after {
    transform: rotate(-45deg) translate(0%, 0%);
} */
.custom-select::after{
	padding: 1rem;
	background-color: red;
}


/**============================================================ CSS RESPONSIVO =====================================================================*/

@media screen and (min-width:1000px) {
    body>section {
        width: 85vw;
    }
	
	.modal-default {
		width: 75vmax;
		height: 75vmax;

	}
}

/**============================================================ CSS FOR TABLET =====================================================================*/

@media only screen and (max-width: 999px) and (min-width: 681px) {
    body>section {
        width: 100vw;
    }

}

/**============================================================ CSS FOR MOBILE =====================================================================*/

@media screen and (max-width:680px) {
    body>section {
        width: 100vw;
    }

}