@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,400&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    min-height: 100%;
    width: 100%;
}

html {
    font-size: 62.5%;
}

body {
    font-size: 1.6rem;
    font-family: 'TIM Sans',Verdana,Tahoma,sans-serif !important;
    color: dimgray !important;
    background: #F1F1F1;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'TIM Sans',Verdana,Tahoma,sans-serif !important;
}

/*Selecionar com mouse*/
::-moz-selection {
  color: white;
  background: var(--blue-tim-one);
}

::selection {
  color: white;
  background: var(--blue-tim-one);
}

/********* Barra de navegação ******/
::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	border-radius: 10px;
	background-color: #F5F5F5;
}

::-webkit-scrollbar {
	width: 9px;
    height: 10px;
	background-color: #F5F5F5;
}

::-webkit-scrollbar-thumb {
	border-radius: 10px;
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
	background-color: #cccccc;
}


/* Width**/
.w2pc {
    width: 2%;
}

.w3pc {
    width: 3%;
}

.w5pc {
    width: 5%;
}

.w8pc {
    width: 8%;
}

.w10pc {
    width: 10%;
}

.w13pc {
    width: 13%;
}

.w15pc {
    width: 15%;
}

.w18pc {
    width: 18%;
}

.w20pc {
    width: 20%;
}

.w25pc {
    width: 25%;
}

.w30pc {
    width: 30%;
}

.w32pc {
    width: 32%;
}

.w33pc {
    width: 33%;
}

.w35pc {
    width: 35%;
}

.w40pc {
    width: 40%;
}

.w45pc {
    width: 45%;
}

.w50pc {
    width: 50%;
}

.w54pc {
    width: 54%;
}

.w55pc {
    width: 55%;
}

.w60pc {
    width: 60%;
}

.w65pc {
    width: 65%;
}

.w70pc {
    width: 65%;
}

.w75pc {
    width: 75%;
}

.w80pc {
    width: 80%;
}

.w85pc {
    width: 85%;
}

.w90pc {
    width: 90%;
}

.w95pc {
    width: 95%;
}

.w100pc {
    width: 100%;
}

/*Margin*/
.mt-50 {
    margin-top: 50px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-20 {
    margin-bottom: 20px;
}

.m-20 {
    margin: 20px;
}

.box-shadow{
    box-shadow: 0px 2px 2px black;
}
.hover-geral{
    cursor: pointer;
}

.hover-geral:hover{
    transform: scale(0.95);
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-left {
    text-align: left;
}

.text-justify {
    text-align: justify;
}

.text-titles {
    color: white;
}

.text-red {
    color: var(--red-tim);
}

.text-blue {
    color: var(--blue-tim-one);
}
.text-blue-four {
    color: var(--blue-tim-four);
}

.text-green {
    color: var(--green-tim-two);
}

.uppercase {
    text-transform: uppercase !important;
    letter-spacing: 0.2rem
}

.italic {
    font-style: italic;  
}

.start {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.space-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.space-evenly {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.space-around {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.grid-center {
    display: grid;
    justify-items: center;
}

.grid {
    display: grid;
}

.small {
    font-size: 12px !important;
}

.table-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.table-header > .search-field {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.search-field > * {
    font-size: 1.7rem;
}

.search-field input {
    outline: none;
    border-radius: 2.5rem;
    border: 1px solid #B2B2B2;
    padding: 0.5rem 1rem;
    transition: border 250ms linear;
}

.search-field input:focus-visible {
    border: 2px solid black;
}


.table-content {
    margin: 2rem 0;
}

.table-content > table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.table-content thead {
    background-color: #eee;
    color: var(--gray);
}

.table-content th {
    padding: 0.5rem 1rem;
    font-size: 1.5rem;
    letter-spacing: 0.1rem;
    color: black;
}

.table-content tbody > tr {
    border-bottom: 0.05rem solid #ddd !important;
}
.table-content td {
    padding: 0.5rem 1rem;
    word-wrap: break-word;
    font-size: 1.5rem;
    color: var(--gray-text);
}

.c-disabled {
    color: #ddd;
    background-color: #f1f1f1 !important;
}


.btn-disabled {
    background: #ccc !important;
    color: white !important;
    border: none !important;
    cursor: no-drop !important; 
    box-shadow: none !important;
    pointer-events: none !important;
}

.btn-pattern {
    padding: 9px 30px;
    align-items: center;
    cursor: pointer;
    letter-spacing: 0.2rem;
    font-size: 1.4rem;
    border-radius: 12px;
    font-family: 'TIM Sans',Verdana,Tahoma,sans-serif !important;
    border: none;
    color: white !important;
    text-align: center;
}

.btn-pattern:hover {
    transition: all .4s ease-in-out;
    background: var(--blue-sapura);
}

.button-tutorial-text {
    padding: 0.8rem 0;
    letter-spacing: 0.2rem;
    font-size: 1.4rem;
    font-family: 'TIM Sans',Verdana,Tahoma,sans-serif !important;
}
.button-tutorial {
    background: var(--blue-tim-two);
    color: white;
    padding: 6px 20px;
    font-size: 18px;
    transition: .5s;
    transform: scale(.9);
    border-radius: 10px 10px 0 0;
}

.button-tutorial:hover {
  opacity: 0.8;
  box-shadow: 0 0 15px var(--blue-tim-two);
}
.pulse-blue{
    animation: pulseBlue 1.5s infinite;
}
@keyframes pulseBlue{
    0%{
        background: var(--blue-tim-two);
        box-shadow: 0 0 0px var(--blue-tim-two);
    }
    50%{
        background: var(--blue-tim-two);
        box-shadow: 0 0 15px var(--blue-tim-two);
    }
    100%{
        background: var(--blue-tim-two);
        box-shadow: 0 0 0px var(--blue-tim-two);
    }
}

.pulse-red{
    animation: pulseRed 1.5s infinite;
}
@keyframes pulseRed{
    0%{
        background: var(--red-tim);
        box-shadow: 0 0 0px var(--red-tim);
    }
    50%{
        background: var(--red-tim);
        box-shadow: 0 0 15px var(--red-tim);
    }
    100%{
        background: var(--red-tim);
        box-shadow: 0 0 0px var(--red-tim);
    }
}

.bg-red {
    background: var(--red-tim);
}
.bg-red-two {
    background: var(--red-tim-two);
}
.bg-blue-one {
    background: var(--blue-tim-one);
}
.bg-blue-two {
    background: var(--blue-tim-two);
}
.bg-blue-three {
    background: var(--blue-tim-three);
}
.bg-blue-four {
    background: var(--blue-tim-four);
}
.bg-green {
    background: var(--green-tim-two);
}
.bg-gray {
    background: var(--gray-4);
}
.bg-black {
    background: black;
}

.border-black {
    background: transparent !important;
    color: black !important;
    border: 2px solid black;
    padding: 6px 20px !important;
}

.border-black:hover {
    background: black !important;
    color: white !important;
    border: 2px solid black;
}

.modal-header, .modal-title {
    font-size: 2.5rem;
    letter-spacing: 1px;
    text-transform: lowercase;
    font-weight: bold;
    padding: 1.1rem 0;
    justify-content: center !important;
    border-bottom: none !important;
}

.modal-header h5, .modal-header h3 {
    text-align: center;
}

div.modal-footer {
    border-top: none !important;
}

.modal-body p {
    font-size: 1.6rem;
}
.modal-body h2 {
    font-weight: 700;
    font-size: 2.2rem;
    letter-spacing: 0.2rem;
}

.modal-icon, .modal-message {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem 0;
    text-align: center;
}

.modal-icon.success{
    color: var(--red-tim);
}

.modal-icon.error {
    color: #aaa;
}

.modal-icon.critical {
    color: var(--error);
}

.modal-footer.center {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.table-pagination {
    display: flex;
    gap: 2rem;
    align-items: center;
    font-size: 1.2rem;
    justify-content: center;
}

.table-pagination > * {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.pagination-button {
    background-color: #f1f1f1;
    border-radius: 1rem;
    font-size: 1.2rem;
    padding: 0.5rem 1.2rem;
    border: 1px solid #ccc;
    box-shadow: -2px 1px 26px -6px rgb(178 178 178 / 60%);
}

.nav.nav-tabs {
    display: flex !important;
    justify-content: space-between !important;
    border-bottom: none !important;
}

.nav-tabs.end {
    justify-content: flex-end !important;
}


.checkmark {
  width: 200px;
  margin: 0 auto;
  padding-top: 40px;
}

.path {
  stroke-dasharray: 1000;
  stroke-dashoffset: 0;
  animation: dash 2s ease-in-out;
  -webkit-animation: dash 2s ease-in-out;
}

.spin {
  animation: spin 2s;
  -webkit-animation: spin 2s;
  transform-origin: 50% 50%;
  -webkit-transform-origin: 50% 50%;
}

/* formulários*/
/*form {
    width: 100%;
    background-color: pink;
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 0 2rem;
}*/

.form-field {
    width: 100%;
    display: flex;
    flex-direction: column;
    /*background: blue;*/
    gap: 0.7rem;
}

.form-input-group {
    display: flex;
    align-items: stretch;
    border-bottom: 2px solid var(--gray-4);
}
.form-input-group input:focus-visible {
    border-bottom: 1px solid var(--blue-sapura);
}

input[disabled] {
	background: #eee !important;
    cursor: not-allowed;
}

.input-icon {
    height: 4.5rem;
    width: 5rem;
    color: #ccc;
    line-height: 6rem;
    text-align: center;
}

.input-icon i {
    font-size: 2rem;
}

.form-input {
    width: 100%;
}

.form-input > input {
    width: 100%;
    height: 100%;
    border: none;
    font-size: 1.6rem;
    color: var(--gray);
    background: transparent;
}

::placeholder {
  color: #ccc;
}

.form-input > input:focus-visible {
    outline: none;
}

.form-input > .input-visibility {
    float: right;
    margin-right: 6px;
    margin-top: -3.3rem;
    position: relative;
    z-index: 2;
    color: #ccc;
}

.center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.end {
    display: flex;
    justify-content: end;
    align-items: center;
}



/*** Tooltip ***/
[data-tooltip] {
  position: relative;
  cursor: pointer;
}

[data-tooltip]:before {
  content: attr(data-tooltip);
  display: none;
  position: absolute;
  top: -50px;
  left: -100px;
  width: 130px;
  /* z-index: 100; */
  padding: 10px;
  font-size: 14px;
  background: rgba(33,67,129, 90%);
  color: white;
  border-radius: 5px;
  font-family: 'TIM Sans',Verdana,Tahoma,sans-serif;
}

[data-tooltip]:hover:before {
  display: inline-block;
}


.text-none {
    display: none !important;
}

.photo-user {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 0.3rem solid var(--red-tim);
    overflow: hidden;
}


@media only screen and (max-width:1000px) {
    .text-none {
        display: inline !important;
        text-align: center;
        overflow-wrap: break-word;
    }

    .arrow-right {
        padding: 5px;
        font-size: 20px;
        border-radius: 2rem;
        margin-left: 12px;
        color: var(--red-tim);
        animation: shake 10s linear infinite;
        animation-delay: 1s;
    }

    .table-layout {
        table-layout: auto;
    }

    .w15pc, .w20pc, .w25pc, .w30pc, .w35pc, 
    .w45pc, .w65pc, .w75pc, .w80pc {
        width: 100% !important;
    }

    .img-video {
        width: 300px;
    }

    #autopercepcao .column-title {
        white-space: nowrap;
        margin-bottom: -2rem;
    }

    #autopercepcao .column-value {
        white-space: nowrap;
    }

    .overflow-x {
        overflow-x: auto !important;
    }
}