body {
  overflow-x: hidden;
  font-family: 'Inter', sans-serif;
  color: rgb(24, 24, 20);
  -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
}

input:focus,
textarea:focus,
select:focus{
  outline: none;
  box-shadow: none !important;
}

.d-grid {
  display: grid !important;
}

/* Sidebar */
#sidebar-wrapper {
  height: 100vh;
  margin-left: -6rem;
  position: sticky;
  top: 0;
  display: grid;
  border-right: 1px solid #e4e4e4;
  grid-template-rows: auto 1fr auto;
  -webkit-transition: margin .25s ease-out;
  -moz-transition: margin .25s ease-out;
  -o-transition: margin .25s ease-out;
  transition: margin .25s ease-out;
}

#sidebar-wrapper .sidebar-heading {
  width: 100%;
  padding: 1.2rem 2.2rem;
}

#sidebar-wrapper .list-group {
  width: 6rem;
  padding: 0 1.2rem;
}

#sidebar-wrapper .list-group .list-group-item svg {
  display: block;
  width: 100%;
  height: 100%;
  opacity: .3;
}

#sidebar-wrapper .list-group .list-group-item:hover svg,
#sidebar-wrapper .list-group .list-group-item .active svg {
  opacity: 1;
}

#sidebar-wrapper .list-group-item.active,
#sidebar-wrapper .list-group-item:active,
#sidebar-wrapper .list-group-item:focus,
#sidebar-wrapper .list-group-item:hover {
  background-color: transparent;
}

#sidebar-wrapper .list-group-item div div {
  width: 100%;
  padding: 1rem;
  color: #000;
}

#sidebar-wrapper .list-group-item+.list-group-item.active {
  margin-top: 0;
}

#sidebar-wrapper a:hover div div {
  background-color: rgb(0 0 0 / 8%);
}

#sidebar-wrapper a.active div div.active {
  background-color: #fdca4d;
}

#page-content-wrapper {
  min-width: 100vw;
}

#wrapper.toggled #sidebar-wrapper {
  margin-left: 0;
}

@media (min-width: 768px) {
  #sidebar-wrapper {
    margin-left: 0;
  }

  #page-content-wrapper {
    min-width: 0;
    width: 100%;
  }

  #wrapper.toggled #sidebar-wrapper {
    margin-left: -3.5rem;
  }
}

/* Nav Pills */
.nav-pills .nav-link {
  font-size: 1.3rem;
  font-weight: 300;
  border: 0;
}

.nav-pills .nav-link:hover {
  color: #000;
}

.nav-pills .nav-link.active {
  background: none;
  color: #000;
  font-weight: bold;
}

/* Requests */
.requests .request {
  grid-template-columns: .2fr 4.6fr 3.5fr 3.5fr .2fr;
}

.requests .request-designer {
  grid-template-columns: 4fr 3fr 2fr 1.4fr 1.4fr .2fr;
}

.requests .list-group-item span:not(.text-right),
.requests .list-group-item small {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  padding-right: 1rem;
}

.d-grid .badge {
  width: fit-content;
}

.request-list-item {
    border: 1px solid rgba(0, 0, 0, 0.12);
}

.request-list-item:hover {
    border: 1px solid rgba(0, 0, 0, .36);
}

.request-list-item-active {
    background-color: rgba(0, 0, 0, 0.04);
}

.request-list-item-active:hover {
    background-color: rgba(0, 0, 0, 0.08);
}

.request-list-item-header {
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
    background-color: rgba(0, 0, 0, 0.08);
}

.request-list-item-handle {
    left: -10px;
}

.request-list-item.ui-sortable-helper .request-list-item-handle {
    left: -26px;
}

.request-list-item-arrow {
    opacity: .2;
}

.request-list-item:hover .request-list-item-arrow {
    opacity: 1;
}

.request-chat .card-header {
    font-size: 1.5rem;
    line-height: 2.5rem;
    font-weight: 600;
    box-shadow: 0 0px 20px rgb(0 0 0 / 10%);
    z-index: 2;
}

/* Invoices */
.invoices .invoice {
  grid-template-columns: 4fr 5fr 3fr;
}

/* Alerts */
.alert.fade {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  opacity: 0;
}

.alert.fade.show {
  opacity: 1;
}

/* Dropdown Menu */
.dropdown-item svg {
  width: 1rem;
}

/* Badge */
.badge-transparent-dark {
  background-color: rgba(0, 0, 0, 0.3);
  color: #ffffff;
}

/* File Preview */
.preview-item {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 10px 10px 0;
}

.preview-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 0 5px rgb(0 0 0 / 20%);
}

/* .preview-delete {
  position: absolute;
  top: 0;
  right: 0;
  width: 20px;
  height: 20px;
  background-color: rgba(255, 255, 255, 0.8);
  border: none;
  border-radius: 50%;
  font-weight: bold;
  cursor: pointer;
}

.preview-delete:hover {
  background-color: rgba(255, 255, 255, 1);
} */

/* File Types */
.file {
  width: 160px;
}

.file .file-preview {
  width: 100%;
  max-width: 160px;
  height: 180px;
  box-shadow: 0 9px 20px rgba(0, 0, 0, 0.05);
}

.file-preview .badge {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.file-name {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.file-psd {
  background-color: rgba(139, 195, 252, 0.29);
  box-shadow: 0 9px 20px rgba(221, 238, 254, 0.55);
}
.file-psd .badge {
  background-color: #8BC3FC;
  color: #000000;
}

.file-zip {
  background-color: rgba(255, 219, 111, 0.3);
  box-shadow: 0 9px 20px rgba(255, 248, 226, 0.3);
}
.file-zip .badge {
  background-color: #ffdb6f;
  color: #000000;
}

.file-pdf {
  background-color: rgba(255, 39, 29, 0.2);
  box-shadow: 0 9px 20px rgba(255, 212, 210, 0.57);
}
.file-pdf .badge {
  background-color: #ff271d;
  color: #ffffff;
}

.file-ai,
.file-eps,
.file-svg {
  background-color: rgba(251, 187, 77, 0.3);
  box-shadow: 0 9px 20px rgba(251, 188, 79, 0.16);
}
.file-ai .badge,
.file-eps .badge {
  background-color: #FBBB4D;
  color: #000000;
}

.file-indd {
  background-color: rgba(231, 73, 160, 0.2);
  box-shadow: 0 9px 20px rgba(250, 219, 236, 0.68);
}
.file-indd .badge {
  background-color: #E749A0;
  color: #000000;
}

.file-docx {
  background-color: rgba(1, 75, 180, 0.2);
  box-shadow: 0 9px 20px rgba(1, 75, 180, 0.15);
}
.file-docx .badge {
  background-color: #014bb4;
  color: #ffffff;
}

.file-xlsx {
  background-color: rgba(29, 111, 66, 0.2);
  box-shadow: 0 9px 20px rgba(29, 111, 66, 0.14);
}
.file-xlsx .badge {
  background-color: #1D6F42;
  color: #ffffff;
}

.file-pptx {
  background-color: rgba(208, 68, 35, 0.25);
  box-shadow: 0 9px 20px rgba(208, 68, 35, 0.16);
}
.file-pptx .badge {
  background-color: #d04423;
  color: #ffffff;
}

/* Bootstrap File Input */
.file-preview {
  border: 0;
  padding: 0;
}

.file-drop-zone {
  margin: 0;
  padding: 0;
  border: 2px dashed #ced4da;
}

.file-footer-caption,
.krajee-default .file-footer-caption {
  margin-bottom: 0;
}

.file-upload-indicator,
.file-actions {
  display: none;
}

.krajee-default.file-preview-frame {
  border: 0;
  border-radius: 10px;
}

.krajee-default.file-preview-frame:not(.file-preview-error):hover {
  border: 0;
}

.krajee-default.file-preview-frame .kv-file-content {
  width: 160px;
  height: 120px;
}

.krajee-default.file-preview-frame .file-thumbnail-footer {
  height: auto;
}

/* Sortable */
.handle {
  visibility: hidden;
}

.handle:hover {
  cursor: move;
}

.sortable .request:hover .handle,
.sortable .request.shadow .handle {
  visibility: visible;
}

.handle svg {
  transform: scale(1.5);
  opacity: .4;
}

/* Translucent background */
.bg-glass-light {
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(4px);
}

/* Summernote */
.note-modal .modal-header {
  display: block;
}

.note-modal input[type="checkbox"] {
  margin-right: .25rem
}

.request-chat .note-editor {
    flex: 1 1 auto;
}

/* Notifications */
.notification .media-body p {
  display: none;
}

.notification .media-body p:first-of-type {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1; /* number of lines to show */
}

.red-dot {
  width: 20px;
  height: 20px;
  background-color: rgb(255, 59, 48);
  position: absolute;
  right: -10px;
  top: -10px;
  border-radius: 50%;
  color: #fff;
  font-size: .8rem;
}

/* Organization */
.org-team {
  grid-template-columns: 1fr 4fr 6fr 1fr;
}

/* Bootstrap Icons */
/* .bi {
display: block;
position: relative;
width: 100%;
height: 100%;
} */

.bi-chevron-left::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-image: url('data:image/svg+xml,<svg viewBox="0 0 16 16" class="bi bi-chevron-left" fill="currentColor" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" d="M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z"/></svg>');
}

.bi-chevron-compact-up::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-image: url('data:image/svg+xml,<svg viewBox="0 0 16 16" class="bi bi-chevron-compact-up" fill="currentColor" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" d="M7.776 5.553a.5.5 0 0 1 .448 0l6 3a.5.5 0 1 1-.448.894L8 6.56 2.224 9.447a.5.5 0 1 1-.448-.894l6-3z"/></svg>');
}

/* .bi-chevron-right::after {
content: "";
display: block;
width: 100%;
height: 100%;
background-repeat: no-repeat;
background-size: 100% 100%;
background-image: url('data:image/svg+xml,<svg viewBox="0 0 16 16" class="bi bi-chevron-right" fill="currentColor" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" d="M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z"/></svg>');
} */

.bi-chevron-compact-down::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-image: url('data:image/svg+xml,<svg viewBox="0 0 16 16" class="bi bi-chevron-compact-down" fill="currentColor" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" d="M1.553 6.776a.5.5 0 0 1 .67-.223L8 9.44l5.776-2.888a.5.5 0 1 1 .448.894l-6 3a.5.5 0 0 1-.448 0l-6-3a.5.5 0 0 1-.223-.67z"/></svg>');
}

.border-dashed {
  border: 2px dashed rgb(0 0 0 / 8%);
}

/* Bootstrap Opacity */
.opacity-0 {
  opacity:0!important;
  transition: opacity .15s ease-in-out!important;
  -moz-transition: opacity .15s ease-in-out!important;
  -webkit-transition: opacity .15s ease-in-out!important;
}
.opacity-1 {
  opacity:0.2!important;
  transition: opacity .15s ease-in-out!important;
  -moz-transition: opacity .15s ease-in-out!important;
  -webkit-transition: opacity .15s ease-in-out!important;
}
.opacity-2 {
  opacity:0.4!important;
  transition: opacity .15s ease-in-out!important;
  -moz-transition: opacity .15s ease-in-out!important;
  -webkit-transition: opacity .15s ease-in-out!important;
}
.opacity-3 {
  opacity:0.6!important;
  transition: opacity .15s ease-in-out!important;
  -moz-transition: opacity .15s ease-in-out!important;
  -webkit-transition: opacity .15s ease-in-out!important;
}
.opacity-4 {
  opacity:.8!important;
  transition: opacity .15s ease-in-out!important;
  -moz-transition: opacity .15s ease-in-out!important;
  -webkit-transition: opacity .15s ease-in-out!important;
}
.opacity-5 {
  opacity:1!important;
  transition: opacity .15s ease-in-out!important;
  -moz-transition: opacity .15s ease-in-out!important;
  -webkit-transition: opacity .15s ease-in-out!important;
}
.opacity-h:hover {
  opacity:1!important; 
}

/* Loading */

.loader {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.spinner {
  -webkit-animation: rotator 1.4s linear infinite;
  animation: rotator 1.4s linear infinite;
}

@-webkit-keyframes rotator {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
  }
}

@keyframes rotator {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
  }
}
.path {
  stroke-dasharray: 187;
  stroke-dashoffset: 0;
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  -webkit-animation: dash 1.4s ease-in-out infinite, colors 5.6s ease-in-out infinite;
  animation: dash 1.4s ease-in-out infinite, colors 5.6s ease-in-out infinite;
}

@-webkit-keyframes colors {
  0% {
    stroke: #ef8989;
  }
  25% {
    stroke: #efbe89;
  }
  50% {
    stroke: #efd389;
  }
  75% {
    stroke: #81dbe3;
  }
  100% {
    stroke: #8995ef;
  }
}

@keyframes colors {
  0% {
    stroke: #ef8989;
  }
  25% {
    stroke: #efbe89;
  }
  50% {
    stroke: #efd389;
  }
  75% {
    stroke: #81dbe3;
  }
  100% {
    stroke: #8995ef;
  }
}
@-webkit-keyframes dash {
  0% {
    stroke-dashoffset: 187;
  }
  50% {
    stroke-dashoffset: 46.75;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
  }
  100% {
    stroke-dashoffset: 187;
    -webkit-transform: rotate(450deg);
    transform: rotate(450deg);
  }
}
@keyframes dash {
  0% {
    stroke-dashoffset: 187;
  }
  50% {
    stroke-dashoffset: 46.75;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
  }
  100% {
    stroke-dashoffset: 187;
    -webkit-transform: rotate(450deg);
    transform: rotate(450deg);
  }
}

/* Dyseno Bootstrap */
a {
  color: #000;
}

a:hover {
  text-decoration: none;
  color: #000;
}

p a {
  padding-bottom: .2rem;
  border-bottom: 2px solid #fdca4d;
}

.modal-header,
.modal-footer {
  border: 0;
}

.bg-primary {
  background-color: #fdca4d !important;
}

.badge-primary {
  color: #000;
  background-color: #fdca4d;
}

.btn:focus,
.btn:active,
.btn-primary:not(:disabled):not(.disabled):active:focus {
  outline: none;
  box-shadow: none;
}

.btn {
  padding: .75rem 1.75rem;
  font-weight: 500;
  border: 2px solid transparent;
}

.btn-primary {
  color: #000;
  background-color: #fdca4d;
  border-color: #fdca4d;
  box-shadow: 0 4px 20px rgb(253 202 77 / 50%);
}
.btn-primary:hover,
.btn-outline-primary:hover,
.btn-primary:focus,
.btn-outline-primary:focus,
.btn-primary:active,
.btn-outline-primary:active,
.btn-primary:not(:disabled):not(.disabled):active,
.btn-outline-primary:not(:disabled):not(.disabled):active {
  color: #000;
  background-color: #f3c24c;
  border-color: #f3c24c;
}

.btn-outline-primary {
  color: #000000;
  border-color: #fdca4d;
}

.btn-outline-danger {
  color: #dc3545;
  border-color: #dc3545;
}

.btn-link,
.btn-link:hover {
  color: #000000;
  text-decoration: none;
}

.form-control {
  padding: 0.75rem 1.75rem;
  color: #000;
  /* background-color: #f7f7f7; */
  border: 2px solid #f7f7f7;
  height: auto;
}

.form-control:focus {
  background-color: transparent;
  border: 2px solid #fdca4d;
}

.input-group button:hover,
.input-group button:active,
.input-group button:active:focus {
  color: #000 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}

.btn-outline-secondary.disabled, 
.btn-outline-secondary:disabled,
.input-group button:disabled:hover,
.input-group button:disabled:active,
.input-group button:disabled:active:focus {
  color: rgb(0 0 0 / 50%) !important;
}

.alert {
  position: fixed;
  bottom: 15px;
  left: 15px;
  z-index: 9999;
  padding: 1.25rem 3.25rem 1.25rem 1.25rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border-radius: 4px;
  border: 0;
  color: #000;
}

.alert .close {
  top: 6px;
}

.alert-success {
  border-left: 4px solid #3fb864;
}

.alert-primary {
  background-color: #fdca4d;
}

.alert-warning {
  border-left: 4px solid #fd9a18;
}

.alert-danger {
  border-left: 4px solid #fd4d4d;
}

.rounded {
  border-radius: 1rem!important;
}

.shadow {
  box-shadow: 0 5px 30px rgba(0, 0, 0, .1)!important;
}

.shadow-lg {
  box-shadow: 0 1rem 5rem rgb(0 0 0 / 9%) !important;
}
