*::-webkit-scrollbar {
  width: 0.25rem;
  height: 0.25rem;
  cursor: pointer;
}

*::-webkit-scrollbar-track {
  background: #f1f1f1;
  position: fixed;
  right: 0;
}

*::-webkit-scrollbar-thumb {
  background: var(--theme-color);
  border-radius: 10px;
}

*::-webkit-scrollbar-thumb:hover {
  background: var(--theme-color);
}

.form-group {
  margin-bottom: 2rem;
}

.copy {
  cursor: pointer;
}

.row .col-12:last-child > .form-group,
.row .col-12:last-child > [data-container] .card {
  margin-bottom: 0 !important;
}

.font-light {
  font-weight: 300 !important;
}
.font-regular {
  font-weight: 400 !important;
}
.font-medium {
  font-weight: 500 !important;
}
.font-semibold {
  font-weight: 600 !important;
}
.font-bold {
  font-weight: 700 !important;
}
.font-black {
  font-weight: 800 !important;
}
.font-italic {
  font-style: italic;
}
.nowrap {
  white-space: nowrap;
}

.pointer {
  cursor: pointer;
}

.link:hover {
  color: var(--theme-color);
  cursor: pointer;
}

.avatar.background {
  background: #e3ebf6;
  background-size: cover;
  background-position: center;
}

.select-icon-box {
  position: absolute;
  top: 66px;
  background: white;
  padding: 16px;
  left: 0;
  right: 0;
  z-index: -1;
  box-shadow: 0px 5px 20px #3b4b630a;
  border-radius: 4px;
  border: 1px solid #d2ddec;
  border-top: 0;
  height: 0;
  opacity: 0;
  overflow-y: scroll;
}

.select-icon-box.active {
  height: 260px;
  opacity: 1;
  z-index: 50;
}

.select-icon-box span {
  float: left;
  height: 34px;
  width: 45px;
  padding: 5px;
  border-radius: 4px;
  text-align: center;
  transition: all 0.4s ease;
}

.select-icon-box span:hover {
  cursor: pointer;
  background: #f3f5f8;
}

.header {
  margin-bottom: 1.5rem;
}

.header-title + .form {
  display: none;
}

.header-title.d-none + .form {
  display: block;
}

.header-title + .form input,
.header-title + .form input:focus {
  width: auto;
  border: 0;
  color: #394361;
  font-weight: 600;
  line-height: 1.1;
  background: transparent;
  font-family: vat(--theme-title), sans-serif;
}

/*
.form-input-color{
	padding: 0;
	opacity: 0;
	z-index: -1;
	position: absolute;
	height: 0 !important;
}

.form-input-color + small{
	display: none;
}
*/
.box-color .dropdown-toggle {
  width: 43px;
  width: 2rem;
  height: 2rem;
  line-height: calc(2rem - 2px);
  border-radius: 50% !important;
  padding: 0;
  background-color: #fff;
  display: inline-block;
  vertical-align: top;
}
.box-color .dropdown-toggle:after {
  margin: auto;
  left: 50%;
  transform: translateX(-50%);
}
.box-color .dropdown-menu {
  padding: 1rem;
  min-width: 15rem;
  transform: none !important;
}
.box-color {
  display: block;
  position: relative;
  line-height: 1;
  padding: 0.5rem 0;
  /*
	white-space: nowrap;
	overflow-x: auto;
	overflow-y: hidden;
	*/
}

.box-color::-webkit-scrollbar {
  width: 0.25rem;
  height: 0.25rem;
  cursor: pointer;
}

.box-color::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.box-color::-webkit-scrollbar-thumb {
  background: #becada;
  border-radius: 10px;
}

.box-color::-webkit-scrollbar-thumb:hover {
  background: #becada;
}

.box-color > span {
  cursor: pointer;
  display: inline-block;
  width: 2rem;
  height: 2rem;
  margin: 0.25rem;
  position: relative;
  border-radius: 2rem;
  background: currentColor;
}

.box-color > span:after {
  content: "";
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 2rem;
  position: absolute;
  border: 2px solid #fff;
  transition: 0.25s;
}

.box-color > span.active:after {
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
}

.form-group label {
  color: #6e84a3;
  font-size: 0.8rem;
  margin-bottom: 0.2rem;
  position: absolute;
  background: #fff;
  margin-top: -8px;
  margin-left: 8px;
  padding: 0 4px;
  line-height: 1.2;
  z-index: 10;
  top: 0;
  border-radius: 4px;
}

.strong {
  font-weight: bold;
}

#confirm.modal {
  z-index: 1052;
}

#feedback {
  top: 4rem;
  left: 50%;
  opacity: 0;
  z-index: -1;
  color: #fff;
  font-weight: 700;
  position: fixed;
  border-radius: 6px;
  padding: 15px 30px;
  transition: all 0.2s ease;
  transform: translate(-50%, 0);
}

#feedback.visible {
  z-index: 10000;
  opacity: 1;
  top: 3rem;
}
#feedback.load {
  background: #6e84a3;
}
#feedback.erro {
  background: #d9534f;
}
#feedback.check {
  background: #02b875;
}

#blog-editor {
  position: relative;
  display: grid;
  gap: 1.5rem;
}

#blog-editor h3 {
  font-weight: bold;
  font-size: 1.5rem;
}

.editor-block {
  font-size: 16px;
  position: relative;
  min-height: 3rem;
}

.medium-editor-element {
  height: 100%;
  padding-top: 0.25rem;
}

.medium-editor-element p {
  margin: 0;
}

.editor-block:hover .handle {
  opacity: 1;
}

.editable_content,
.editable_blocks {
  width: 0;
  height: 0;
  opacity: 0;
}

#mensagens tr {
  cursor: pointer;
}
#mensagens tr .item-novo span {
  color: #dcdfe4;
}
#mensagens tr.new {
  font-weight: bold;
}
#mensagens tr.new .item-novo span {
  color: #00d97e;
}

.box-options {
  top: 0;
  z-index: 100;
  right: 0;
  height: 30px;
  text-align: right;
  position: absolute;
}

@media only screen and (max-width: 480px) {
  .box-options {
    top: 2px;
    right: -24px;
  }
}

.box-options .btn {
  width: 30px;
  height: 30px;
  margin: 0 2px;
  padding: 0;
  font-size: 13px;
  text-align: center;
  border-radius: 5rem !important;
  opacity: 0;
  position: relative;
  transition: all 0.2s ease;
}

.box-options .btn i {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}

.editor-block.col-md-6 .fa-columns {
  display: none;
}

.editor-block:not(.col-md-6) .fa-rectangle-wide {
  display: none;
}

.box-options .btn.editor-btn-plus {
  opacity: 1;
  color: #fff;
  position: relative;
  background: #383838;
  border-radius: 16px 16px 16px 6px !important;

  -webkit-transition: -webkit-transform 250ms;
  transition: transform 250ms;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.box-options.active {
  z-index: 10;
}

.box-options.active .btn.editor-btn-plus {
  -webkit-transition: -webkit-transform 0;
  transition: transform 0;
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
}

.box-options.active .btn {
  opacity: 1;
}

.p-image {
  width: 100%;
}

.editor-block .handle:hover {
  color: #ffffff;
  background: #4581ec;
}

.editor-block figure {
  margin: 0;
}

.editor-block b,
.editor-block strong {
  font-weight: bolder;
}

.editor-block img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  border-radius: 6px;
  background: #f8f9fa;
}

.editor-block.gallery-box {
  width: auto;
  margin-right: -8px;
  margin-left: -8px;
  display: block;
}

.editor-block.gallery-box .box-options {
  right: -16px;
}

.editor-block .midia-list {
  display: inline-block;
  width: calc(33.3333333% - 16px);
  position: relative;
  margin: 0 8px 16px;
}

.editor-block .midia-list .box-content {
  display: block;
  width: 100%;
  padding-top: 65%;
  position: relative;
  overflow: hidden;
}

.editor-block .midia-list img {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  position: absolute;
}

.editor-block object {
  width: 100%;
  display: block;
  background: #f8f9fa;
  border-radius: 6px;
  text-align: center;
  height: 200px;
}

.editor-block.youtube-box iframe {
  width: 100%;
  max-width: 320px;
  height: 100%;
  display: inline-block;
  background: #000;
}

.editor-block.youtube-box input {
  width: 100%;
  border: 0;
}

.editor-block.youtube-box input::-webkit-input-placeholder {
  color: #939dab;
  font-style: italic;
}
.editor-block.youtube-box input::-moz-placeholder {
  color: #939dab;
  font-style: italic;
}
.editor-block.youtube-box input:-ms-input-placeholder {
  color: #939dab;
  font-style: italic;
}
.editor-block.youtube-box input:-moz-placeholder {
  color: #939dab;
  font-style: italic;
}

.editor-block div:focus,
.editor-block input:focus {
  outline: none;
}

.card-menu {
  margin: 8px;
}
.card-menu a {
  color: #00000057;
}
.card-menu a:hover {
  color: #000;
}
.card-menu a.active {
  color: #383838;
}

.display-none-target {
  display: none;
}
.display-none-enabled .display-none-target {
  display: block;
}
.display-none-enabled .display-block-target {
  display: none;
}

.subitem {
  margin-top: -1px;
  background-color: #fff;
  border-top: 1px solid #e3ebf6;
  border-bottom: 1px solid #e3ebf6;
}

.card-body .subitem:last-child {
  border-bottom: 0;
}

.handle-move {
  color: #95a6bd;
  cursor: pointer;
}

@media only screen and (max-width: 480px) {
  .card-body {
    padding: 1rem;
  }
}

ul.nav-sortable {
  margin: 0;
  padding: 0;
  list-style: none;
}

ul.nav-sortable li {
  width: 100%;
  display: block;
}

ul.nav-sortable li a {
  cursor: move;
  display: block;
  padding: 8px 16px;
  color: #1a2b3f;
  font-weight: 600;
  border-bottom: 1px solid #e9ecef;
}

ul.nav-sortable li i {
  margin: 8px 8px 0 0;
  font-size: 11px;
  opacity: 0.3;
  float: left;
}

ul.nav-sortable li ul {
  min-height: 8px;
  list-style: none;
}

.ui-sortable-placeholder {
  width: 100%;
  padding: 8px;
  background: #e9ecef;
  margin: 8px 0;
}

.gallery-box .ui-sortable-placeholder.midia-list {
  background: red;
}

.gallery-box .ui-sortable-placeholder.midia-list:after {
  content: "";
  display: block;
  width: 100%;
  padding-top: calc(65% - 8px);
}
/* Paginate */
ul.custom-ul,
ul.custom-ul li {
  margin: 0;
  padding: 0;
  list-style: none;
}
ul.pagination {
  display: flex;
  gap: 0.25rem;
  justify-content: end;
  padding-left: 0;
  list-style: none;
  border-radius: 0.375rem;
}

ul.pagination li {
  text-align: center;
  display: inline-block;
}

ul.pagination .page {
  position: relative;
  padding: 1rem;
  height: 32px;
  width: 32px;
  display: block;
  font-size: 12px;
  line-height: 32px;
  color: #6d83a2;
  border: 1px solid #e3ebf6;
  border-radius: 50px;
}

ul.pagination .page:hover {
  z-index: 2;
  text-decoration: none;
  color: #12263f;
  border-color: #e3ebf6;
  background-color: #f9fbfd;
}

ul.pagination .page:focus {
  z-index: 2;
  outline: 0;
  box-shadow: 0 0 0 0.15rem rgba(44, 123, 229, 0.25);
}

ul.pagination .page:not(:disabled):not(.disabled) {
  cursor: pointer;
}

ul.pagination li.active.page {
  z-index: 1;
  color: #fff;
  border-color: var(--theme-color);
  background-color: var(--theme-color);
}

ul.pagination li.disabled.page {
  cursor: auto;
  pointer-events: none;
  color: #95aac9;
  width: auto;
  border-color: #e3ebf6;
  background-color: #fff;
}

ul.pagination li.disabled.page:first-child,
ul.pagination li.disabled.page:last-child {
  border: 0;
}

.bd-left {
  border-left: 1px solid #e3ebf6;
}

.list-group-item i {
  width: 20px;
}

/* data-dodisplay */
.dodisplay:not(.show) {
  display: none;
}

.progress-top {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 0.25rem;
  border-radius: 0;
  background: #f6f7f9;
}
.progress-top .progress-bar {
  border-radius: 0;
}
.form-wizard-step {
  min-height: 100vh;
  max-height: 100vh;
  display: flex;
  overflow-x: hidden;
  overflow-y: auto;
  transition: 0.4s 0.15s ease-in-out;
}
.form-wizard-step.disabled {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transform: translateX(-25%);
  opacity: 0;
  visibility: hidden;
  transition: 0.4s ease-in-out;
}
.form-wizard-step:not(.disabled) ~ .form-wizard-step.disabled {
  transform: translateX(25%);
}
.form-wizard-step.disabled::-webkit-scrollbar {
  width: 0;
  height: 0;
  background: none;
  -webkit-appearance: none;
  appearance: none;
  transition: 0s;
}

.form-control.is-invalid ~ .btn-midia {
  border-color: #e63757;
}

.force-wrap {
  white-space: normal;
}

.td-ellipsis {
  display: block;
  max-width: 290px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.modal-open {
  overflow: hidden !important;
}

.modal-open .modal {
  padding-right: 0 !important;
}

.modal-backdrop,
.modal-backdrop.show {
  display: none !important;
}

.sidebar-modal.modal .modal-dialog-aside {
  min-width: 350px;
  height: 100%;
  margin: 0;
  transform: translate(0);
  transition: transform 0.4s;
}

.sidebar-modal.modal .modal-dialog-aside .modal-content {
  border: 0;
  height: inherit;
  border-radius: 0;
}

.sidebar-modal.modal .modal-dialog-aside .modal-content .modal-body {
  overflow-y: auto;
}

.sidebar-modal.modal.fixed-left,
.sidebar-modal.modal.fixed-right {
  z-index: 1050;
  padding: 0 !important;
}

.sidebar-modal.modal.fixed-left .modal-dialog-aside {
  margin-right: auto;
  transform: translateX(-100%);
}

.sidebar-modal.modal.fixed-right .modal-dialog-aside {
  margin-left: auto;
  transform: translateX(100%);
}

.sidebar-modal.modal.show .modal-dialog-aside {
  transform: translateX(0);
}
/*
.header-tabs .nav-item:first-child:last-child{
	display: none;
}
*/
.sidebar .subitem .row {
  margin: 0 !important;
}

.sidebar .item-sort {
  max-width: 100%;
  flex-basis: 0;
  flex-grow: 1;
  padding: 0 !important;
  order: 1;
}
.sidebar .item-title {
  margin-top: 0.85rem;
  order: 3;
  width: 100%;
  flex: 0 0 100%;
}
.sidebar .item-date {
  order: 4;
  width: 100%;
  flex: 0 0 100%;
}
.sidebar .item-options {
  padding: 0 !important;
  order: 2;
}
.sidebar .item-add {
  max-width: 100%;
  flex-basis: 0;
  flex-grow: 1;
  padding-right: 1rem !important;
}

.sidebar .item-add .btn {
  width: 100%;
}

.sidebar .item-header {
  max-width: 100%;
  flex-basis: 0;
  flex: 0 0 100%;
  padding: 0.85rem 0;
}
