/**
 * FORM CONTENT BOX
 *
 * @format
 */
#content {
  border: 1px dashed #283c3d47;
  border-radius: 4px;
  padding: 10px 20px;
  margin: auto;
  margin-top: 10px;
  margin-bottom: 10px;
  min-height: calc(100vh - 102px);
}
.dark-toast-popup {
  background-color: #444 !important;
  /* Dark background color for the popup */
}
.dark-toast-title {
  color: #fff;
  /* Light text color for the title */
}
.dark-toast-icon {
  color: #28a745;
  /* Custom color for the success icon */
}
.dark-toast-progressBar {
  background-color: #28a745;
  /* Custom color for the progress bar */
}
/* Add other custom styles as needed */
#content_form_name {
  cursor: pointer;
}
.content-hover {
  border: 1px dashed #3a87ad !important;
  color: #3a87ad;
  background: #c60a0a;
  opacity: 0.5;
}
.content-hover legend {
  color: #3a87ad;
  border-color: -moz-use-text-color -moz-use-text-color #3a87ad;
}
.content-hover .element {
  border: 1px solid #d9edf7;
}
/* RANDOM BOOTSTAP FIX BECAUSE INPUT HEIGHT IS SET AT 30px ?!?! */
input[type="text"] {
  height: auto;
}
/* COMPONENTS */
.component {
  cursor: move;
  padding: 10px;
  width: 100%;
}
/* Estilos para dos columnas */
.component.two-columns {
  width: 50%;
  float: left;
}
.component-drag {
  margin: 10px;
  padding: 10px;
  position: absolute;
  pointer-events: none;
}
.component_column {
  cursor: pointer;
  padding: 10px;
  width: 100%;
}
/* ELEMENTS */
.element {
  /* padding: 5px; */
  max-width: 800px;
  margin: auto;
  /* margin-bottom: 3px; */
}
.element:hover {
  background: #fafafa;
  /* border: 1px dashed #607890; */
  /* margin-bottom: 3px; */
  display: block;
}
.element:hover .close {
  display: block;
}
.element:hover .duplicar {
  display: block;
}
.element:hover .edit {
  display: block;
}
.element:hover .minizar {
  display: block;
}
.close,
.edit,
.minizar,
.duplicar {
  display: none;
  transform: translate(-1px, 3px);
  -radius: 3px;
  width: 25px;
  margin-right: 4px;
  text-align: center;
}
.element-placeholder {
  border: 1px dashed #3a87ad;
  color: #3a87ad;
  background: #d9edf7;
  min-height: 50px;
  opacity: 0.5;
}
.close {
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  background-color: #bc4a4a;
  padding: 1px;
  float: right;
  transition: all 0.2s ease;
}
.edit {
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  background-color: #00a558;
  float: right;
  padding: 1px;
  transition: all 0.2s ease;
  cursor: pointer;
}
.duplicar {
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
  color: #282828;
  background-color: #dea700;
  float: right;
  padding: 1px;
  transition: all 0.2s ease;
  cursor: pointer;
}
.minizar {
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  background-color: #1645d3;
  float: right;
  padding: 1px;
  transition: all 0.2s ease;
  cursor: pointer;
}
.close:active,
.edit:active,
.duplicar:active,
.minizar:active {
  animation: tools_scale 0.6s ease;
}

.max_edithtml {
  position: fixed !important;
  width: 800px !important;
  border-radius: 6px;
  border: 2px solid #1e88e5;
}

@keyframes tools_scale {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.3);
  }
  100% {
    transform: scale(1);
  }
}
.element-hover {
  border: 1px dashed #636262de; /* otro ejemplo */
}
.actionOption {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.option {
  display: flex;
  justify-content: center;
  align-items: center;
}
input.option-value.form-control {
  margin: 5px;
}
input.option-name.form-control {
  margin: 5px;
}
.block-content {
  padding: 0.25rem 1.25rem 1px;
}
.wrapper {
  padding: 10px;
}
.compontadd {
  display: none;
}
.column_compontadd {
  display: none;
}
.sortable-list {
  border-radius: 7px;
  padding: 8px 0px 8px;
  display: flex;
  flex-direction: column;
}
.delete-icon {
  display: flex;
  align-items: center;
  font-size: 27px;
  color: #e01e5a;
}
.sortable-list .item {
  list-style: none;
  margin: auto;
  display: flex;
  height: 57px;
  max-width: 278px;
  background: #fff;
  align-items: center;
  border-radius: 5px;
  margin-bottom: 8px;
  border: 1px solid #ccc;
  justify-content: space-between;
  /* background: rgb(255 255 255);
  box-shadow: rgb(0 0 0 / 0%) 0px 2px 4px, rgb(0 0 0 / 0%) 0px 7px 13px -3px,
    rgb(0 0 0 / 15%) 0px -3px 0px inset; */
}
.item .details {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.details small {
  font-size: 0.8125rem;
  color: gray;
}
.item .details img {
  height: 43px;
  width: 43px;
  pointer-events: none;
  margin-right: 12px;
  object-fit: cover;
  border-radius: 50%;
}
.item .details span {
  font-size: 1.13rem;
}
.item i {
  color: #474747;
  font-size: 1.13rem;
}
.item.dragging {
  opacity: 0.6;
}
.item.dragging :where(.details, i) {
  opacity: 0;
}
.iconoCS {
  width: 25px;
  height: 25px;
  padding: 0;
  border-radius: 50%;
  margin-right: 6px;
  margin-left: -5px;
  background-color: aquamarine;
}
.active-drop {
  border: 2px dashed #0c435f !important;
  text-align: center;
  font-size: 1.5625rem;
  margin: auto;
  background: #d9edf7;
  min-height: 100px;
  padding: 50px 20px;
  opacity: 0.5;
}
.active-drop::before {
  content: "Drag and drop your component here";
}
/*
4
*/
.form-block__image-placeholder {
  width: 100%;
  max-width: 970px;
  -webkit-box-flex: 1;
  flex-grow: 1;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  user-select: none;
  word-break: break-word;
}
.dsMnOZ {
  display: grid;
  height: calc(100vh - 102px);
  grid-auto-columns: minmax(300px, auto);
  gap: 16px;
}
.max300 {
  max-width: 390px;
}
.menu-component {
  position: fixed;
  top: 60px;
  bottom: 0;
  left: 67px;
  z-index: 955;
  max-width: 300px;
  width: 312px;
  height: 100%;
  background-color: #fff;
  overflow-x: hidden;
  overflow-y: auto;
  transform: translateX(0%) translateY(0) translateZ(0);
  -webkit-overflow-scrolling: touch;
  will-change: transform;
}
.menu-component2 {
  position: fixed;
  top: 60px;
  bottom: 0;
  right: 0;
  left: 0px;
  z-index: 955;
  height: 100%;
  background-color: #fff;
  overflow-x: hidden;
  overflow-y: auto;
  transform: translateX(0%) translateY(0) translateZ(0);
  -webkit-overflow-scrolling: touch;
  will-change: transform;
}
.compr3 {
  position: absolute;
  left: 0px;
  top: 102px;
  height: calc(100% - 102px);
  width: 100vw;
  display: grid;
  grid-template-columns: 100vw;
  grid-template-rows: 130px auto 60px;
  background-color: rgb(255, 255, 255);
}
@media (min-width: 768px) {
  .compr3 {
    top: 102px;
    height: calc(100vh - 102px);
    grid-template-columns: 72px 380px auto;
    grid-template-rows: 64px auto;
  }
}
.options_modal_label {
  text-align: center;
  margin-top: 10px;
}
.title_form {
  padding-top: 13px;
}
#loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(255, 255, 255);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}
#loading-spinner {
  border: 16px solid #f3f3f3;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  animation: spin 2s linear infinite, color-change 4s linear infinite;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.irs--square .irs-handle {
  top: 25px;
  width: 16px;
  height: 16px;
  border-radius: 22px;
  border: 3px solid #334155;
}
.irs--square .irs-bar {
  top: 31px;
  height: 4px;
  background-color: #334155;
}
#spinner-text {
  position: absolute;
  top: 66%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-weight: bold;
  font-size: 25px;
}
#spinner-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@keyframes color-change {
  0% {
    border-top-color: #34db7e;
  }
  25% {
    border-top-color: #7e34db;
  }
  50% {
    border-top-color: #db7e34;
  }
  75% {
    border-top-color: #34db7e;
  }
  100% {
    border-top-color: #34db7e;
  }
}
.selectoColi {
  border: 1px dashed #6b6b6b;
  width: 100%;
  margin: auto;
  height: 59px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  font-size: 24px;
}
.select-col-lg {
  width: 100px;
}
.selectReady {
  border: 1px dashed #77d27c;
  width: 80%;
  margin: auto;
  height: 59px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}
.activeC {
  background-color: #d7fad9;
}
.Editinput,
.Addinput {
  cursor: pointer;
}
.sortable-list2 {
  border-radius: 3px;
  display: flex;
  flex-direction: column;
  background: rgb(199 199 199 / 61%);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(10px);
  padding: 20px;
  list-style: none;
  min-width: 300px;
  height: 440px;
  overflow-y: auto;
}
.createList {
  cursor: pointer;
}
#fonts_google_edit {
  position: relative;
  height: 130px;
  width: 100%;
}
.move-icon {
  display: flex;
  align-items: center;
  font-size: 15px;
  flex-direction: row;
}
button.add-option {
  display: flex;
  margin: auto;
  margin-bottom: 5px;
  margin-top: 5px;
  width: 150px;
  justify-content: center;
}
.help-block {
  color: #6b6b6b;
  font-size: small;
  margin-left: 5px;
}
button#close_options {
  background-color: #e01e5a;
  border: 0;
}
.closecompone {
  color: #e01e5a;
  cursor: pointer;
}
.closeSettings {
  color: #e01e5a;
  cursor: pointer;
  font-size: 20px;
}
.onSubmit {
  display: flex;
  height: 72px;
  width: -webkit-fill-available;
  align-items: center;
  justify-content: center;
}
.Cont_diviion {
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  width: 100%;
  padding: 30px 15px;
}
.diviion {
  border-right: none;
  border-bottom: none;
  border-left: none;
  border-image: initial;
  width: 100%;
  border-top: 3px solid rgb(210, 214, 218);
}
.grid-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  /* Cuatro columnas por fila */
  gap: 20px;
  /* Espacio entre elementos */
}
.grid-item {
  /* Estilos del elemento en la cuadrícula */
  border: 1px solid #ccc;
  padding: 20px;
}
/* Estilos para las etiquetas optgroup */
.optgroupjson {
  font-weight: bold;
  font-size: 14px;
  color: rgba(81, 81, 81, 0.688);
}
.optjson {
  color: black;
  font-size: 14px;
}
.previewImag {
  max-width: 200px;
  display: flex;
  margin: auto;
  justify-content: center;
}
.imgpreviebg {
  background-size: cover;
  width: 300px;
}
.previewingreGradient {
  height: 100px;
  border-radius: 5px;
}
.bg-casvv {
  padding-top: 0px;
  position: sticky;
  top: 65px;
  z-index: 9;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background-color: white;
  border-bottom: 1px solid #cacaca;
  margin-left: 0;
  margin-right: 0px;
  width: 100%;
  max-width: 100% !important;
}
.block.block-rounded {
  border-radius: 0;
}
.scrollmenuedit {
  height: 100%;
}
.btnaddstep {
  max-width: 250px;
  position: relative;
  right: 20px;
  top: 2px;
}
.components-container {
  height: calc(100vh - 190px);
  overflow-y: auto;
}
div#cont-sortable-list2 {
  z-index: 1000;
  border-radius: 5px;
  background: #fbf8f8;
  box-shadow: 11px 11px 22px #bebebe, -11px -11px 22px #ffffff;
}
.btnCloseSetting {
  cursor: pointer;
  margin-top: 10px;
  margin-right: 11px;
  background-color: #e01e5a;
  border-radius: 5px;
  color: #fff;
  height: 25px;
  width: 25px;
  text-align: center;
}
a.btn_style2[href="#Submit"] {
  position: relative;
  padding: 3px 22px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  background-color: #0056b3;
  transition: all 0.2s ease;
}
a.btn_style2[href="#Submit"]:hover {
  color: #fff !important;
  background-color: #0056b3; /* Cambia el color de fondo al pasar el mouse */
}
.w-1\/2 {
  width: 50%;
}
.w-1\/3 {
  width: 33%;
}
.text-right {
  text-align: right;
}
/*------ Style 1 ------*/
.contenedor_shape {
  display: flex;
  align-items: center;
  justify-content: center;
}
.toolscc {
  display: flex;
  justify-content: space-around;
}
#ShapeColor {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 40px;
  height: 25px;
  margin-right: 8px;
  background-color: transparent;
  border: none;
  cursor: pointer;
}
#ShapeColor::-webkit-color-swatch {
  border-radius: 15px;
  border: none;
}
#ShapeColor::-moz-color-swatch {
  border-radius: 15px;
  border: none;
}
.tooltip2 {
  position: absolute;
  display: none;
  background: #000;
  color: #fff;
  padding: 5px;
  border-radius: 5px;
  font-size: 12px;
}
.tooltip2::after {
  content: "";
  position: absolute;
  border-style: solid;
}
.tooltip-shape-height::after {
  top: -30px;
  border-width: 5px 5px 0 5px;
  border-color: #000 transparent transparent transparent;
}
.tooltip-shape-width::after {
  top: -30px;
  border-width: 5px 5px 0 5px;
  border-color: #000 transparent transparent transparent;
}
.contentEdit {
  padding: 5px;
}
label.UploadExcel {
  display: flex;
  justify-content: center;
  background-color: #74debb;
  padding: 12px;
  border-radius: 5px;
  align-items: center;
}
/* Estilo para lista básica */
.ul-basic {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.ul-basic li {
  margin-bottom: 5px;
}
/* Estilo para lista horizontal */
.ul-horizontal {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
}
.ul-horizontal li {
  margin-right: 10px;
}
/* Estilo para lista con números */
/* Establecer el contador a 0 al inicio */
body {
  counter-reset: li;
}
.ol-with-numbers {
  list-style-type: decimal-leading-zero;
  padding: 0;
  margin: 0;
  padding-left: 38px;
}
.ol-with-numbers li {
  margin-bottom: 10px;
}
.drag-file-area {
  border: 2px dashed #ccc;
  border-radius: 5px;
  background-color: aliceblue;
  padding: 20px;
  text-align: center;
  height: 10vh;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.drag-file-area label {
  cursor: pointer;
}
.file-input {
  display: none;
}
.drag-file-area:hover {
  border-color: #4caf50;
}
.uploadcomponent {
  display: flex;
  justify-content: center;
}
.rating {
  display: flex;
  justify-content: space-between;
  margin-left: 10px;
  margin-bottom: 5px;
}
.text-rating {
  color: #c78a1e;
}
.text-rating-disable {
  color: #a6a6a6;
}
.star-rating {
  white-space: nowrap;
}
.star-rating-group {
  display: flex;
  align-items: center;
  gap: 13px;
}
.rating-label {
  font-weight: 600;
  width: 40px;
}
.star-off-png {
  display: none !important;
}
.star-on-png {
  display: none !important;
}
.form-group {
  position: relative;
}
small.error-message {
  font-size: 12px;
  position: absolute;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  top: 0px;
  right: 15px;
  z-index: 2;
  height: 25px;
  line-height: 1;
  background-color: #e34f4f;
  color: #fff;
  font-weight: normal;
  display: inline-block;
  padding: 6px 8px;
}
small.error-message:after {
  content: "";
  position: absolute;
  border-style: solid;
  border-width: 0 6px 6px 0;
  border-color: transparent #e34f4f;
  display: block;
  width: 0;
  z-index: 1;
  bottom: -6px;
  left: 3%;
}
.float-right {
  float: right;
  margin-top: 4px;
}
.minimized_element {
  background-color: #aba4d8 !important;
  border-radius: 7px;
  height: 30px;
  color: white;
  text-align: center;
  font-size: larger;
  margin-bottom: 10px;
  margin-top: 10px;
}
.minimized_element > .component_text {
  display: none;
}
