/*
    // File Map
    - Global
    - Custom
    - Components
    - pagination custom for laravel
    - buttons-bar ( add new , draft..) buttons
*/
/*
|
|
| Global
|
|
*/
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  transition: padding 0.3s linear;
  overflow-x: hidden !important;
  color: var(--color);
  margin-top: 90px;
}

td {
  border: var(--border) solid 1px !important;
}

table th,
table td {
  font-weight: 400;
}
table td {
  vertical-align: middle !important;
}

.modal-open {
  padding-right: 0px !important;
}

.table-modern tr,
.table-modern th,
.table-modern td {
  white-space: nowrap;
}
.table-modern thead th {
  border-bottom: 1px solid var(--border-color) !important;
}
.table-modern tbody {
  background-color: #fff;
}
.table-modern tbody td,
.table-modern tbody th {
  border-bottom: 1px solid var(--border-color) !important;
  padding-top: 15px;
  padding-bottom: 15px;
}
.table-modern tbody tr {
  transition: background-color 0.2s linear;
}
.table-modern tbody tr:hover {
  background-color: var(--background);
}
.table-modern tbody .border-b:last-of-type {
  border-bottom: none !important;
}

button {
  outline: none;
  border: 0px;
  background-color: transparent;
}
button:disabled {
  cursor: not-allowed;
}

a {
  text-decoration: none !important;
}

hr {
  border-top: 1px solid var(--border-color);
}

/*
|
|
| Components
|
|
*/
.ltr {
  direction: ltr;
}

.pointer {
  cursor: pointer;
}

.display-none {
  display: none;
}

.error {
  color: #ff0000;
  display: block;
  border-radius: var(--border-radius);
  margin-top: 3px;
  font-size: 14px;
}

/*
|
|
| Inputs
|
|
*/
input[type=submit] {
  border: 0px;
}

input:-moz-read-only {
  background-color: var(--input-focus-background) !important;
  cursor: not-allowed;
}

input:read-only {
  background-color: var(--input-focus-background) !important;
  cursor: not-allowed;
}

input[type=file],
[type=checkbox],
input[type=color] {
  opacity: 1 !important;
  cursor: pointer !important;
  background-color: var(--input-background) !important;
}

.flashing-border input {
  animation: flash-border 0.5s ease-in-out 3;
}

@keyframes flash-border {
  0%, 100% {
    background-color: transparent;
  }
  50% {
    border: solid 2px green;
    background-color: rgba(0, 255, 64, 0.048);
  }
}/*# sourceMappingURL=global.css.map */