/*
    // File Map
    - Global
    - Custom
    - Components
    - pagination custom for laravel
    - buttons-bar ( add new , draft..) buttons
*/
.cursor-pointer {
  cursor: pointer;
}

.display-none {
  display: none;
}

/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #eee;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #858585;
  border-radius: 0px;
  border: 3px solid #eee;
}

.fixed-whatsapp {
  position: fixed;
  bottom: 10px;
  left: 10px;
  z-index: 99;
}
.fixed-whatsapp img {
  width: 64px;
}

.fixed-links {
  position: fixed;
  bottom: 20px;
  right: 15px;
  z-index: 99;
}
.fixed-links a {
  overflow: hidden !important;
  padding: 10px 20px;
  background-color: var(--second-color);
  border-radius: var(--border-radius);
  box-shadow: 0px 0px 15px var(--second-color);
  color: #fff;
  font-size: 15px;
}
.fixed-links a svg {
  fill: #fff;
  width: 18px;
}
.fixed-links .loader {
  width: 20px;
  display: inline-block;
  position: relative;
}
.fixed-links .loader::after,
.fixed-links .loader::before {
  content: "";
  box-sizing: border-box;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  left: -2px;
  top: -23.5px;
  animation: animloader 1.5s linear infinite;
  opacity: 0;
}
.fixed-links .loader::after {
  animation-delay: 0.75s;
}
@keyframes animloader {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}

/*
|
|
| 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);
}

td {
  border: var(--border) solid 1px !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
|
|
*/
.error {
  color: #ff0000;
  display: block;
  border-radius: var(--border-radius);
  margin-top: 3px;
  font-size: 14px;
}

#links-bar {
  margin-top: 15px;
  margin-bottom: 15px;
}
#links-bar a {
  font-size: 13px;
  color: var(--main-color);
  font-weight: 300;
}
#links-bar .links-bar-item-slash {
  margin: 0px 3px;
}
#links-bar a:first-child {
  font-size: 22px !important;
  color: var(--color);
  margin-bottom: 0px;
  font-weight: 500;
}

.btn-add-new {
  padding: 3px 10px;
  margin-top: 15px;
  font-size: 14px;
}

.active-link {
  color: var(--main-color);
}

.submit-spinner {
  border: 0.2em solid var(--btn-main-color);
  border-right-color: transparent;
}

/*
|
|
| 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;
}

/*
|
|
| pagination custom for laravel
|
|
*/
.pagination li a {
  background-color: var(--card-background);
  padding: 9px 15px;
  border-radius: var(--border-radius);
  color: var(--card-color);
  transition: all 0.1s linear;
}
.pagination li a:hover {
  background-color: var(--btn-main-background);
  color: var(--btn-main-color);
}
.pagination .pages {
  margin: 0px 8px;
}

/*
|
|
| buttons-bar ( add new , draft..) buttons
|
|
*/
#publish-buttons-bar {
  position: fixed;
  width: 100%;
  bottom: 0px;
  right: 0px;
  left: 0px;
  background-color: var(--card-background);
  z-index: 9;
  padding: 12px 15px;
  box-shadow: var(--card-shadow);
  text-align: right;
}

.table thead th {
  border-bottom: 1px solid var(--border-color) !important;
  border-top: none;
}

th,
td {
  white-space: nowrap;
}

.text-wrap {
  white-space: normal !important;
}

.editor .table-bordered td {
  border: solid 1px #eee !important;
}
.editor li {
  list-style-position: inside !important;
}
.editor li p {
  display: inline-block !important;
}
.editor blockquote {
  background: #f9f9f9 !important;
  border-right: 5px solid #414141 !important;
  padding: 5px 15px;
}
.editor p,
.editor ol {
  margin-bottom: 0px !important;
}
.editor pre {
  display: block;
  font-size: 90%;
  color: #e7e7e7;
  background-color: #1e1e1e;
  padding: 10px;
  border-radius: 3px;
  direction: ltr !important;
  text-align: left !important;
  margin: 0.8em 0px;
}/*# sourceMappingURL=global.css.map */