/*!********************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./assets/src/admin/builder/builder.scss ***!
  \********************************************************************************************************************************/
.magic-elements-builder-sections ul.magic-elements-builder-list {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 30px;
  display: flex;
  gap: 20px;
}
.magic-elements-builder-sections ul.magic-elements-builder-list li a {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
  padding: 20px 30px;
  border-radius: 10px;
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
}
.magic-elements-builder-sections ul.magic-elements-builder-list li a:hover, .magic-elements-builder-sections ul.magic-elements-builder-list li a.active {
  background-color: #f0f0f0;
}
.magic-elements-builder-sections ul.magic-elements-builder-list li a svg {
  width: 70px;
  height: 70px;
  margin-bottom: 10px;
}

.magic-elements-preview-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
}
.magic-elements-preview-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  width: 80%;
  max-width: 800px;
  max-height: 80vh;
  overflow-y: auto;
}
.magic-elements-preview-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #e0e0e0;
}
.magic-elements-preview-close-popup {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #666;
}
.magic-elements-preview-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}
.magic-elements-preview-item {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 20px;
}

.preview-item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}
.preview-item-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.preview-item-actions a {
  text-decoration: none;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 14px;
  white-space: nowrap;
}
.preview-item-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
}
.preview-item-details strong {
  color: #666;
  margin-right: 5px;
}

.preview-link {
  background: #2271b1;
  color: #fff;
}

.edit-link {
  background: #f0f0f0;
  color: #333;
}

.edit-elementor-link {
  background: #93003c;
  color: #fff;
}

.delete-link {
  background: #dc3545;
  color: #fff;
}

.magic-elements-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #e0e0e0;
}
.magic-elements-pagination .page-numbers {
  text-decoration: none;
  padding: 5px 10px;
  border-radius: 4px;
  color: #333;
  background: #f0f0f0;
  font-size: 14px;
}
.magic-elements-pagination .page-numbers.current {
  background: #2271b1;
  color: #fff;
}
.magic-elements-pagination .page-numbers.prev, .magic-elements-pagination .page-numbers.next {
  background: #f0f0f0;
  color: #333;
}

.magic-elements-form-actions {
  position: relative;
}
.magic-elements-form-actions .success-message {
  position: absolute;
  top: 0;
  left: 0;
  color: green;
}

.magic-elements-addnew-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 99999;
  overflow: auto;
}
.magic-elements-addnew-popup .magic-elements-addnew-content {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  width: 90%;
  max-width: 700px;
  margin: 100px auto;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  animation: fadeIn 0.3s;
  min-height: 400px;
  position: relative;
}
.magic-elements-addnew-popup .magic-elements-addnew-content.loading {
  display: flex;
  align-items: center;
  justify-content: center;
}
.magic-elements-addnew-popup .magic-elements-addnew-content .magic-elements-close-popup {
  position: absolute;
  left: 100%;
  top: 0;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.magic-elements-addnew-popup .magic-elements-addnew-content .magic-elements-addnew-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 10px;
}
.magic-elements-addnew-popup .magic-elements-addnew-content .magic-elements-addnew-header h2 {
  margin: 0;
  font-size: 1.5rem;
}
.magic-elements-addnew-popup .magic-elements-addnew-content form .magic-elements-form-group {
  margin-bottom: 15px;
}
.magic-elements-addnew-popup .magic-elements-addnew-content form .magic-elements-form-group label {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
}
.magic-elements-addnew-popup .magic-elements-addnew-content form .magic-elements-form-group input[type=text],
.magic-elements-addnew-popup .magic-elements-addnew-content form .magic-elements-form-group select {
  width: calc(100% - 20px);
  padding: 10px;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  font-size: 1rem;
}
.magic-elements-addnew-popup .magic-elements-addnew-content form .magic-elements-form-group input[type=text]:focus,
.magic-elements-addnew-popup .magic-elements-addnew-content form .magic-elements-form-group select:focus {
  border-color: #007acc;
  outline: none;
}
.magic-elements-addnew-popup .magic-elements-addnew-content form .magic-elements-form-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}
.magic-elements-addnew-popup .magic-elements-addnew-content form .magic-elements-form-actions .button-primary {
  background-color: #007acc;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
}
.magic-elements-addnew-popup .magic-elements-addnew-content form .magic-elements-form-actions .button-primary:hover {
  background-color: #005ea1;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.magic-elements-form-group {
  margin-top: 10px;
}
.magic-elements-form-group .button.button-secondary {
  background-color: #a50000;
  color: #fff;
  border: 0;
  border-radius: 5px;
  padding: 5px 20px;
}
.magic-elements-form-group .button.button-secondary:focus {
  outline: none;
}

.remove-condition {
  background: transparent;
  border: 0;
  color: #a50000;
  font-size: 1.2rem;
  cursor: pointer;
}
.remove-condition:focus {
  outline: none;
}

.add-new-template + button {
  background: transparent;
  border: 0;
  color: #a50000;
  font-size: 1.2rem;
  cursor: pointer;
}
.add-new-template + button:focus {
  outline: none;
}

.preview-item-actions a:not(:nth-child(2)):hover {
  color: #fff;
}

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

.d-inline-flex {
  display: inline-flex !important;
}

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

.flex-row {
  flex-direction: row !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-row-reverse {
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  flex-direction: column-reverse !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-nowrap {
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}

.justify-content-start {
  justify-content: flex-start !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.justify-content-around {
  justify-content: space-around !important;
}

.justify-content-evenly {
  justify-content: space-evenly !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.align-items-end {
  align-items: flex-end !important;
}

.align-items-center {
  align-items: center !important;
}

.align-items-baseline {
  align-items: baseline !important;
}

.align-items-stretch {
  align-items: stretch !important;
}

.align-content-start {
  align-content: flex-start !important;
}

.align-content-end {
  align-content: flex-end !important;
}

.align-content-center {
  align-content: center !important;
}

.align-content-between {
  align-content: space-between !important;
}

.align-content-around {
  align-content: space-around !important;
}

.align-content-stretch {
  align-content: stretch !important;
}

.align-self-auto {
  align-self: auto !important;
}

.align-self-start {
  align-self: flex-start !important;
}

.align-self-end {
  align-self: flex-end !important;
}

.align-self-center {
  align-self: center !important;
}

.align-self-baseline {
  align-self: baseline !important;
}

.align-self-stretch {
  align-self: stretch !important;
}

.flex-grow-0 {
  flex-grow: 0 !important;
}

.flex-grow-1 {
  flex-grow: 1 !important;
}

.flex-shrink-0 {
  flex-shrink: 0 !important;
}

.flex-shrink-1 {
  flex-shrink: 1 !important;
}

@media (min-width: 576px) {
  .d-sm-flex {
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: inline-flex !important;
  }
  .d-sm-none {
    display: none !important;
  }
}
@media (min-width: 768px) {
  .d-md-flex {
    display: flex !important;
  }
  .d-md-inline-flex {
    display: inline-flex !important;
  }
  .d-md-none {
    display: none !important;
  }
}
@media (min-width: 992px) {
  .d-lg-flex {
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: inline-flex !important;
  }
  .d-lg-none {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .d-xl-flex {
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: inline-flex !important;
  }
  .d-xl-none {
    display: none !important;
  }
}
@media (min-width: 1400px) {
  .d-xxl-flex {
    display: flex !important;
  }
  .d-xxl-inline-flex {
    display: inline-flex !important;
  }
  .d-xxl-none {
    display: none !important;
  }
}
.status-inactive {
  color: #ff0000;
}

.status-active {
  color: #00ff00;
}

/*# sourceMappingURL=builder.min.css.map*/