@charset "UTF-8";
.categoria-seo-origin > .img {
  width: 0 !important;
}
.categoria-seo-origin .description {
  width: 68% !important;
}

.category-panel {
  padding: 0;
}
.category-panel .adicionar-category {
  float: right;
  font-weight: bold;
}
.category-panel .category-footer {
  position: fixed;
  right: 0;
  background: #151515;
  border-top: solid 0.3px #2D2B2B;
  width: 100%;
  z-index: 0;
  bottom: 0;
  overflow: auto;
  padding: 14px 60px 12px;
  text-align: end;
}
.category-panel > ul {
  list-style-type: none;
  padding-inline-start: 0px;
  text-indent: 4px;
  transition: height 0.7s;
  padding-bottom: 20px;
}
.category-panel > ul li.categoria-pending.categoria-update .category-line {
  opacity: 0.7;
}
.category-panel > ul li.categoria-enhanced > .category-line {
  background-color: rgba(42, 255, 42, 0.1411764706);
}
.category-panel > ul li.categoria-pending .badge-pending {
  color: #FFB82A;
  font-size: 0.9em;
}
.category-panel > ul li {
  list-style-type: none;
  overflow: auto;
}
.category-panel > ul li .category-header .category-actions {
  padding-right: 0 !important;
}
.category-panel > ul li .category-header .category-title {
  padding-left: 0 !important;
}
.category-panel > ul li .category-line.drag-over {
  border-bottom-width: 6px;
}
.category-panel > ul li .category-line {
  margin: 8px 0;
  display: flex;
  padding: 16px;
  border-radius: 16px;
}
.category-panel > ul li .category-line:hover > .category-selector {
  opacity: 1;
}
.category-panel > ul li.movable .category-selector {
  cursor: pointer;
}
.category-panel > ul li .category-selector {
  display: inline-block;
  color: #e1e1e1;
  font-weight: bold;
  cursor: not-allowed;
  opacity: 0.6;
}
.category-panel > ul li .category-title {
  background-color: transparent;
  width: 50%;
  padding-left: 15px !important;
}
.category-panel > ul li .category-title .loader-spinner {
  height: auto !important;
}
.category-panel > ul li .category-title .badge-pending {
  color: #FFB82A;
  cursor: pointer;
}
.category-panel > ul li .category-title label {
  font-size: 0.9em;
  margin: 0;
}
@media screen and (max-width: 500px) {
  .category-panel > ul li .category-title {
    flex-direction: column;
    align-items: flex-start;
  }
}
.category-panel > ul li .category-actions {
  width: 50%;
  text-align: end;
  justify-content: flex-end;
}
.category-panel > ul li .category-actions * {
  cursor: pointer;
}
.category-panel > ul li .category-selector, .category-panel > ul li .category-title, .category-panel > ul li .category-actions {
  position: relative;
  margin-left: auto;
  float: left;
  align-items: center;
  display: flex;
  gap: 16px;
}
.category-panel .sub-menu {
  margin-bottom: 10px;
}
@media screen and (max-width: 500px) {
  .category-panel .sub-menu {
    display: flex;
    flex-direction: column;
  }
}

.sortable-list .sortable-list {
  padding-left: 32px;
}

.category-search input.search-category {
  padding: 16px;
  width: 100%;
  background: white;
  border: 1px solid #b1b1b1;
  margin: 10px 0;
  border-radius: 10px;
}

.category-title {
  font-size: 0.8em;
  font-weight: bold;
  background: rgba(128, 128, 128, 0.0784313725);
  border-radius: 5px;
  white-space: nowrap;
  padding: 6px;
}

.category-breadcrumb {
  text-align: left !important;
}

span.sub-category, span.father-category {
  background: beige;
  padding: 5px;
  border-radius: 5px;
  margin: 5px;
  display: inline-block;
}

.father-category {
  font-size: 1.3em;
}

.sub-category {
  font-size: 0.8em;
}

@-webkit-keyframes input-loading {
  0% {
    background-color: #ffff8e;
  }
  100% {
    background-color: #ffff8e;
  }
}
.input-loading {
  -webkit-animation: input-loading 1s infinite;
  animation: input-loading 300ms infinite;
  transition: background-color 0.3s;
}

/* Estilo da barra de progresso */
.styles-progress-bar-container {
  position: relative;
  width: 100%;
  height: 13px;
  background-color: #e0e0e0;
  overflow: hidden;
  border-radius: 100px;
}

.styles-progress-bar {
  position: absolute;
  border-radius: 100px;
  left: 0;
  height: 100%;
  width: 30%;
  background-color: #ffb82a;
  animation: loadingAnimation 1.5s infinite;
  top: 0;
}

/* Estilo da barra de progresso */
.styles-input-progress-bar-container {
  position: relative;
  width: 100%;
  height: 2px;
  background-color: #e0e0e0;
  overflow: hidden;
  border-radius: 10px;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}

.styles-input-progress-bar {
  position: absolute;
  border-radius: 100px;
  left: 0;
  height: 100%;
  width: 30%;
  background-color: #ffb82a;
  animation: loadingAnimation 1.5s infinite;
  top: 0;
}

/* Animação para a barra se mover da esquerda para direita */
@keyframes loadingAnimation {
  0% {
    left: -30%; /* Começa fora da tela */
  }
  50% {
    left: 50%; /* Vai para o meio da tela */
  }
  100% {
    left: 100%; /* Sai da tela no lado direito */
  }
}
.guess-category-modal {
  text-align: center;
}
.guess-category-modal .styles-loading-holder {
  margin: 15px 0;
}

.modal-categories {
  max-height: 200px;
  padding: 0 10px 0 0;
}

.guessed-category {
  border: 1px solid silver;
  border-radius: 100px;
  padding: 13px 35px;
  margin: 10px 0;
  cursor: pointer;
}
.guessed-category:hover {
  border-color: #ffb82a;
}
.guessed-category .id {
  font-size: 0.6em;
  vertical-align: middle;
  margin-right: 10px;
}

.guess-category-on-ask {
  cursor: pointer;
}

.category span.specs {
  background: orange;
  padding: 2px 4px;
  border-radius: 4px;
  font-size: 0.8em;
  color: white;
  font-weight: bold;
  cursor: pointer;
}

.category-line span.specs {
  background: orange;
  padding: 3px 5px;
  border-radius: 4px;
  font-size: 0.8em;
  color: white;
  font-weight: bold;
  vertical-align: middle;
  text-indent: 0;
  cursor: pointer;
}