::-webkit-scrollbar {
  width: 7px;
  height: 8px;
}
::-webkit-scrollbar-corner {
  background-color: var(--scroll-bar-track);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb {
  background-color: var(--scroll-bar-thumb);
  border-radius: 10px;
}
::-webkit-scrollbar-track {
  background-color: var(--scroll-bar-track);
  border-radius: 10px;
}
body {
  font-family: "Roboto", sans-serif;
}
.test-alert {
  position: fixed;
  left: -48px;
  bottom: 28px;
  padding: 7px 52px;
  background: #c44c23;
  color: #fff;
  transform: rotate(45deg);
  opacity: 0.5;
  z-index: 10;
}
.unselectable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.tab-main {
  position: relative;
}
.hidden {
  overflow: hidden;
  touch-action: none;
  height: -webkit-fill-available;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-y: none;
  -ms-touch-action: none;
  box-sizing: border-box;
  pointer-events: none;
  position: relative;
}
hr {
  border-top: 1px solid #5a5a5a !important;
}
.version-fixed {
  position: fixed;
  bottom: 10px;
  right: 10px;
}
.px-input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid #747474 !important;
  background: #525252;
  color: #e1e1e1;
  display: block;
  width: 100%;
  padding: 5px 8px;
  border-radius: 4px;
  transition: all ease 0.1s;
  outline: unset !important;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.px-input > input:focus {
  border: 1px solid #a9a9a9;
}
::-webkit-calendar-picker-indicator {
  filter: invert(1);
}
#div-load {
  top: 0;
  position: fixed;
  height: 100%;
  width: 100%;
  z-index: 10;
}
#load-item {
  position: fixed;
  transform: translateY(-50%);
  width: 100%;
  top: 30%;
}
#load-item img {
  position: relative;
  display: block;
  margin: auto;
  max-width: 570px;
  width: 80%;
}
#load-item div {
  margin: 20px auto;
}
.div-center {
  margin: 0px 16.66666%;
  padding-bottom: 82px;
  min-height: 100vh;
}
.div-top {
  position: -webkit-sticky;
  position: sticky;
  z-index: 10;
  top: 0;
}
@media (max-width: 1000px) {
  .div-center {
    margin: 0px;
  }
}
@keyframes fadein {
  from {
    opacity: 0;
    transform: translateY(-125%);
  }
  to {
    opacity: 1;
  }
}
@-moz-keyframes fadein {
  from {
    opacity: 0;
    transform: translateY(-125%);
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fadein {
  from {
    opacity: 0;
    transform: translateY(-125%);
  }
  to {
    opacity: 1;
  }
}
@-ms-keyframes fadein {
  from {
    opacity: 0;
    transform: translateY(-125%);
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeout {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    top: 0px;
    transform: translateY(-125%);
  }
}
@-moz-keyframes fadeout {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    top: 0px;
    transform: translateY(-125%);
  }
}
@-webkit-keyframes fadeout {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    top: 0px;
    transform: translateY(-125%);
  }
}
@-ms-keyframes fadeout {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    top: 0px;
    transform: translateY(-125%);
  }
}
.alert-msg.w3-red {
  border: 2px solid #ff7b71;
}
.alert-msg.w3-green {
  border: 2px solid #a3dca5;
}
.alert-msg {
  font-weight: bold;
  position: fixed;
  right: 10px;
  margin: 16px 0px;
  padding: 2px 16px 2px 38px;
  border-radius: 8px;
  max-width: calc(100% - 20px);
  pointer-events: auto;
  z-index: 105;
  -webkit-animation: fadein 0.5s, fadeout 0.5s 4.5s;
  -moz-animation: fadein 0.5s, fadeout 0.5s 4.5s;
  -ms-animation: fadein 0.5s, fadeout 0.5s 4.5s;
  -o-animation: fadein 0.5s, fadeout 0.5s 4.5s;
  animation: fadein 0.5s, fadeout 0.5s 4.5s;
  -webkit-transition: top 0.3s ease;
  -moz-transition: top 0.3s ease;
  -o-transition: top 0.3s ease;
  transition: top 0.3s ease;
}
.alert-msg i {
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
}
.alert-msg > p {
  margin: 10px 0px;
}
.version-label {
  color: #979797;
  position: absolute;
  font-size: 12px;
  bottom: 10px;
  right: 10px;
}
.style-error {
  background-color: #dd0d32;
  color: #fff;
}
.style-btn-error:hover {
  background-color: #b50b29 !important;
  color: #fff !important;
}

.style-warning {
  background-color: #ecb800;
  color: #fff;
}
.style-btn-warning:hover {
  background-color: #d1a302 !important;
  color: #fff !important;
}

.style-info {
  background-color: #e75e03;
  color: #fff;
}
.style-btn-info:hover {
  background-color: #c75001 !important;
  color: #fff !important;
}

.style-success {
  background-color: #01974e;
  color: #fff;
}
.style-btn-sucess:hover {
  background-color: #028344 !important;
  color: #fff !important;
}

.hover_button_cancel:hover {
  color: #fff !important;
  background-color: #959595 !important;
}
.ErrorIconMain {
  font-size: 100px;
  padding-top: 20px;
  color: #dd0d32;
}
.InfoIconMain {
  font-size: 100px;
  padding-top: 20px;
  color: #e75e03;
}
.WarningIconMain {
  font-size: 100px;
  padding-top: 20px;
  color: #ecb800;
}
.SuccessIconMain {
  font-size: 100px;
  padding-top: 20px;
  color: #01974e;
}
.DialogHeader {
  padding-top: 20px;
}
.DialogDimension {
  width: 450px;
  height: auto;
  min-height: 450px;
  border-radius: 10px;
}
.DialogContent {
  padding: 20px;
  font-family: Arial, Helvetica, sans-serif;
  z-index: 100;
}
.DialogFooter {
  /* padding-top: 20px; */
}
.DividerSucess {
  width: 100%;
  height: 3px;
}
.DividerWarning {
  width: 100%;
  height: 3px;
}
.DividerInfo {
  width: 100%;
  height: 3px;
}
.DividerError {
  width: 100%;
  height: 3px;
}
@media (max-width: 346px) {
  .DialogFooter {
    padding-top: 0 !important;
  }
  .DialogContent {
    padding: 0 !important;
  }
  .DialogHeader {
    padding-top: 0 !important;
  }
}
.w3-switch {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 20px;
}
.w3-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.w3-slider {
  position: absolute;
  cursor: pointer;
  top: 4px;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.w3-slider:before {
  position: absolute;
  content: "";
  height: 13px;
  width: 13px;
  left: 2px;
  bottom: 2px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
input:checked + .w3-slider {
  background-color: #2196f3;
}
input:focus + .w3-slider {
  box-shadow: 0 0 1px #2196f3;
}
input:checked + .w3-slider:before {
  -webkit-transform: translateX(13px);
  -ms-transform: translateX(13px);
  transform: translateX(13px);
}
.w3-slider.w3-round {
  border-radius: 34px;
}
.w3-slider.w3-round:before {
  border-radius: 50%;
}
.header-title-modal {
  font-size: 24px;
}

@media (max-width: 425px) {
  .header-title-modal {
    font-size: 16px;
  }
}

.modal__default--height {
  max-height: 520px;
  overflow-y: auto;
}

/* Stepper */
.stepper-wrapper {
  display: flex;
  justify-content: space-between;
}

.stepper-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

.stepper-item .step-counter {
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  margin-bottom: 6px;
}

.step-counter {
  background-color: var(--inputbg) !important;
  border-color: var(--inputbg) !important;
}
.step-counter:hover {
  border-color: var(--primary) !important;
}

.stepper-item.line::after {
  position: absolute;
  content: "";
  border-bottom: 1px solid var(--inputbg);
  width: 100%;
  top: 15px;
  left: 50%;
  z-index: 3;
}

.step-name.stepper-active {
  font-weight: bold !important;
}

.step-counter.stepper-active {
  background-color: var(--primary) !important;
  border-color: var(--primary) !important;
}

.stepper-scroll {
  overflow-x: auto;
}

.stepper-scroll::-webkit-scrollbar {
  height: 0px;
}

/* TABLE */

.table-height {
  max-height: 65vh !important;
  overflow-x: auto;
  border-radius: 5px;
}
@media (max-width: 993px) {
  .table-height {
    max-height: 49vh !important;
  }
  .div-btn-search {
    margin-bottom: 10px !important;
    margin-top: 0px !important;
  }
}

.table-height.resumo {
  max-height: 480px !important;
}
.table-height.no-radius {
  border-radius: 0px 0px 5px 5px !important;
}

@media (min-width: 800px) {
  .width-fixed {
    width: 300px;
  }
}

.table__height {
  border-radius: 5px;
  overflow: hidden;
}

.table__height--small {
  max-height: 70vh;
  overflow-x: auto;
  border-radius: 5px;
}

.table__tr--height {
  height: 43px;
}
.table__tr--height-medium {
  height: 43px;
}
.table__td--height {
  min-height: 26.5px;
}

.table__height--medium {
  max-height: 70vh;
  overflow-x: auto;
  border-radius: 5px;
}

@media (max-width: 801px) {
  .table__tr--height {
    height: 130px;
  }
  .table__tr--height-medium {
    height: 100px;
  }
  .table__td--height {
    min-height: 16.5px;
  }
}
@media (max-width: 993px) {
  .table__height--small {
    max-height: 20vh !important;
  }
  .table__height--medium {
    max-height: 30vh !important;
  }
}

.gabin-table {
  width: 100%;
  border-collapse: collapse;
}
.table__font--plus {
  font-size: 25px !important;
}

@media only screen and (max-width: 430px) {
  .table__font--plus:not(.not-break-table) {
    font-size: 20px !important;
  }
  .gabin-table:not(.not-break-table) {
    font-size: 11px;
  }
  .gabin-table:not(.not-break-table) > td {
    text-align: end;
  }
}

/* @media only screen and (min-width: 799px) { */
.gabin-table table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100% !important;
  display: table;
  border-radius: 5px !important;
}

.gabin-table table {
  border-bottom: 1px solid var(--border-table);
  border-radius: 10px;
}

.gabin-table td,
.gabin-table th {
  padding: 5px 5px;
  display: table-cell;
  text-align: left;
  vertical-align: bottom;
}

.gabin-table td:not(:last-child),
.gabin-table th:not(:last-child) {
  border-right: 1px solid var(--border-table);
}
.gabin-table tr:not(:last-child) {
  border-bottom: 1px solid var(--border-table);
}

.gabin-table th:first-child,
.gabin-table td:first-child {
  padding-left: 16px;
}
.gabin-table tr:nth-child(even) {
  background-color: var(--table-odd);
}

/* } */

@media only screen and (max-width: 800px) {
  .gabin-table:not(.not-break-table) table,
  .gabin-table:not(.not-break-table) thead,
  .gabin-table:not(.not-break-table) tbody,
  .gabin-table:not(.not-break-table) th,
  .gabin-table:not(.not-break-table) td,
  .gabin-table:not(.not-break-table) tr {
    display: block;
  }

  .gabin-table:not(.not-break-table) thead {
    display: none;
  }

  .gabin-table:not(.not-break-table) tr {
    /* border-bottom: 1px solid var(--border-table); */
    /* padding: 10px 0; */
  }

  .gabin-table:not(.not-break-table) td {
    border: none;
    position: relative;
    white-space: normal;
    text-align: end;
    word-break: break-word;
    padding: 5px !important;
    padding-left: 38% !important;
  }

  .gabin-table:not(.not-break-table) td:before {
    position: absolute;
    top: 0;
    left: 6px;
    width: 80%;
    padding-right: 10px;
    white-space: nowrap;
    text-align: left;
    font-weight: bold;
  }

  .gabin-table:not(.not-break-table) td:before {
    content: attr(data-title);
  }

  .gabin-table:not(.not-break-table) {
    width: 100%;
  }
  .gabin-table:not(.not-break-table) td:nth-child(odd) {
    background-color: var(--table-odd);
  }

  .table-height::-webkit-scrollbar:not(.not-break-table) {
    display: none;
  }
  .table-height:not(.not-break-table) {
    overflow-x: hidden;
  }

  .table-height.resumo:not(.not-break-table) {
    max-height: 480px !important;
  }
}

.contentEditable-table {
  outline: none;
}

.theme-table {
  background-color: var(--theme-table) !important;
}
.w3-ul li {
  border-bottom: 1px solid var(--color-inp) !important;
}
.w3-btn.table {
  padding: 5px 10px !important;
}
.shadow-table {
  box-shadow: 0px 7px 7px 2px rgb(0 0 0 / 40%);
}

.input-dropdown {
  border: 1px solid var(--border-inp-drop) !important;
  background-color: var(--inp-drop-bg) !important;
}

@media (max-width: 600px) {
  .card-modal {
    margin: 0 !important;
    width: 100% !important;
  }
  .remove-padding-small {
    padding-left: 0;
    padding-right: 0;
  }
}

.table__text-overflow {
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
}

.accordion__div {
}
.item-accordion {
  padding: 9px 16px;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #5a5a5a;
  background-color: #4c4c4c;
  align-items: center;
  cursor: pointer;
  font-size: 17px;
}
.content-accordion {
  border-bottom: 1px solid #5a5a5a;
  transition: height 0.4s ease-in-out;
  overflow: hidden;
}

.content-accordion.closed {
  border-bottom: unset;
  height: 0px !important;
  overflow: hidden;
}

.backgroundDropdownHover {
  background-color: var(--background__dropdown__menu);
}
.backgroundDropdownHover:hover {
  background-color: var(--background__dropdown__menu--hover);
}

.table__td-profile-permission--btn-width {
  min-width: 200px;
}
@media (max-width: 400px) {
  .table__td-profile-permission--btn-width {
    min-width: 250px;
  }
}

.theme-table__rw-mass-change {
  background-color: var(--theme-table__rw-mass-change) !important;
}
