/* ========================================
   BUILDER STYLES - 5min.website
   Main SCSS File

   Compile with:
   sass assets/css/builder.scss assets/css/builder.css

   Watch mode:
   sass --watch assets/css/builder.scss:assets/css/builder.css
   ======================================== */
/* ========================================
   VARIABLES
   ======================================== */
/* ========================================
   BASE STYLES
   ======================================== */
.builder-mode {
  padding-top: 60px;
  direction: ltr !important;
}
.builder-mode input,
.builder-mode textarea,
.builder-mode [contenteditable] {
  direction: ltr !important;
  unicode-bidi: normal !important;
  text-align: left !important;
  writing-mode: horizontal-tb !important;
}

.image-container {
  position: relative;
  cursor: pointer;
  overflow: hidden;
}
.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: 0.3s ease;
}
.image-container:hover img {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.image-overlay .material-symbols-outlined {
  font-size: 48px;
  color: white;
  margin-bottom: 0.5rem;
  font-variation-settings: "FILL" 0, "wght" 300, "GRAD" 0, "opsz" 48;
}
.image-overlay p {
  color: white;
  font-size: 0.875rem;
  font-weight: 500;
  margin: 0;
}

.image-container:hover .image-overlay {
  opacity: 1;
}

.builder-content {
  padding-bottom: 20px;
}

/* ========================================
   BUILDER TOOLBAR
   ======================================== */
.builder-toolbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--border, #e5e7eb);
  background: color-mix(in oklab, var(--card, #ffffff) 70%, transparent);
  z-index: 1000;
  padding: 0.75rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 60px;
}
.builder-toolbar .toolbar-left,
.builder-toolbar .toolbar-center,
.builder-toolbar .toolbar-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.builder-toolbar .toolbar-left h1 {
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0;
  color: var(--text, #151515);
}
.builder-toolbar .toolbar-center {
  gap: 0.5rem;
  margin-left: auto;
  margin-right: auto;
}
.builder-toolbar .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: 0.2s ease;
  cursor: pointer;
  border: none;
}
.builder-toolbar .btn .material-symbols-outlined {
  font-size: 20px;
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 20;
}
.builder-toolbar .btn.btn-ghost {
  background: transparent;
  color: #5b7cfa;
}
.builder-toolbar .btn.btn-ghost:hover {
  background: rgba(91, 124, 250, 0.08);
}
.builder-toolbar .btn.btn-secondary {
  background: #f3f4f6;
  color: #111827;
  border: 1px solid #d1d5db;
}
.builder-toolbar .btn.btn-secondary:hover {
  background: #e5e7eb;
  border-color: #9ca3af;
}
.builder-toolbar .btn.btn-primary {
  background: linear-gradient(135deg, #5b7cfa 0%, #4c63d2 100%);
  color: white;
}
.builder-toolbar .btn.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(91, 124, 250, 0.3);
}
.builder-toolbar .btn.btn-accent {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  border: none;
}
.builder-toolbar .btn.btn-accent:hover {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

/* ========================================
   SESSION INFO TOOLTIP
   ======================================== */
.session-info-container {
  position: relative;
}
.session-info-container .session-info-btn {
  opacity: 0.7;
  color: #5b7cfa;
}
.session-info-container .session-info-btn:hover {
  opacity: 1;
}
.session-info-container .session-info-tooltip {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: linear-gradient(135deg, color-mix(in oklab, var(--card, #ffffff) 98%, #5b7cfa), var(--card, #ffffff));
  border: 1px solid color-mix(in oklab, var(--border, #e5e7eb) 70%, #5b7cfa);
  border-radius: 12px;
  padding: 1.25rem;
  min-width: 320px;
  max-width: 380px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.08);
  z-index: 10001;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  pointer-events: auto;
}
.session-info-container .session-info-tooltip::after {
  content: "";
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  height: 8px;
  background: transparent;
}
.session-info-container .session-info-tooltip::before {
  content: "";
  position: absolute;
  top: -6px;
  right: 20px;
  width: 12px;
  height: 12px;
  background: inherit;
  border-left: 1px solid color-mix(in oklab, var(--border, #e5e7eb) 70%, #5b7cfa);
  border-top: 1px solid color-mix(in oklab, var(--border, #e5e7eb) 70%, #5b7cfa);
  transform: rotate(45deg);
  z-index: 1;
}
.session-info-container .session-info-tooltip p {
  margin: 0 0 0.75rem 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #5b7cfa;
}
.session-info-container .session-info-tooltip p:last-of-type {
  margin-bottom: 0;
}
.session-info-container .session-info-tooltip p strong {
  font-weight: 600;
  color: #5b7cfa;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.9375rem;
  margin-bottom: 0.25rem;
}
.session-info-container .session-info-tooltip a {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  margin-top: 1rem;
  padding: 0.625rem 1rem;
  background: linear-gradient(135deg, #5b7cfa 0%, #4c63d2 100%);
  color: white;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 6px;
  transition: 0.2s ease;
  box-shadow: 0 2px 8px rgba(91, 124, 250, 0.2);
}
.session-info-container .session-info-tooltip a:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(91, 124, 250, 0.3);
  text-decoration: none;
}
.session-info-container .session-info-tooltip a:active {
  transform: translateY(0);
}
.session-info-container:hover .session-info-tooltip .session-info-tooltip, .session-info-container:hover .session-info-tooltip,
.session-info-container .session-info-tooltip:hover .session-info-tooltip {
  display: block;
  animation: tooltipSlideIn 0.25s ease-out;
}
.session-info-container:hover .session-info-tooltip {
  display: block;
}
.session-info-container .session-info-tooltip:hover {
  display: block !important;
}

@keyframes tooltipSlideIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ========================================
   BOTTOM ACTION BAR - LIQUID GLASS BUTTONS
   ======================================== */
.bottom-action-bar {
  position: fixed;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  display: flex;
  gap: 0;
}

.btn-commander {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 2rem;
  background: rgba(91, 124, 250, 0.5);
  backdrop-filter: saturate(8%) blur(2px);
  -webkit-backdrop-filter: saturate(8%) blur(2px);
  border: 1px solid rgba(91, 124, 250, 0.3);
  font-size: 0.95rem;
  font-weight: 600;
  color: white;
  cursor: pointer;
  transition: 0.3s ease;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.btn-commander .material-symbols-outlined {
  font-size: 22px;
  font-variation-settings: "FILL" 0, "wght" 500, "GRAD" 0, "opsz" 22;
}
.btn-commander.btn-commander-free {
  border-radius: 12px 0 0 12px;
  border-right: none;
  background: rgba(91, 124, 250, 0.2);
}
.btn-commander.btn-commander-free:hover {
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}
.btn-commander.btn-commander-domain {
  border-radius: 0 12px 12px 0;
}
.btn-commander:hover {
  background: rgba(91, 124, 250, 0.5);
  backdrop-filter: saturate(180%) blur(30px);
  -webkit-backdrop-filter: saturate(180%) blur(30px);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(91, 124, 250, 0.5);
  z-index: 1;
}

/* ========================================
   INTERACTIVE BUTTONS
   ======================================== */
.image-delete-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(239, 68, 68, 0.95);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.2s ease;
  z-index: 10;
  backdrop-filter: blur(4px);
}
.image-delete-btn .material-symbols-outlined {
  font-size: 18px;
  color: white;
}
.image-delete-btn:hover {
  background: #dc2626;
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
}

.image-container:hover .image-delete-btn {
  display: flex;
}

.contact-link-wrapper,
.field-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.field-clear-btn {
  opacity: 0;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(239, 68, 68, 0.95);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.2s ease;
  margin-left: 0.5rem;
}
.field-clear-btn .material-symbols-outlined {
  font-size: 16px;
  color: white;
}
.field-clear-btn:hover {
  background: #dc2626;
  transform: scale(1.1);
}

.contact-link-wrapper:hover .field-clear-btn,
.field-wrapper:hover .field-clear-btn {
  opacity: 1;
}

/* ========================================
   EDITABLE ELEMENTS
   ======================================== */
.editable {
  cursor: text;
  transition: 0.2s ease;
  border-radius: 4px;
  padding: 2px 4px;
  margin: -2px -4px;
}
.editable:hover {
  background: rgba(91, 124, 250, 0.08);
  outline: 1px dashed rgba(91, 124, 250, 0.3);
}
.editable:focus {
  outline: 2px solid #5b7cfa;
  background: rgba(91, 124, 250, 0.05);
}
.editable:focus-visible {
  outline: 2px solid #5b7cfa;
  outline-offset: 2px;
  background: rgba(91, 124, 250, 0.1);
  box-shadow: 0 0 0 4px rgba(91, 124, 250, 0.15);
}

/* ========================================
   MODALS
   ======================================== */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.2s ease;
}
.modal.active {
  display: flex;
}

.modal-content {
  background-color: rgba(0, 0, 0, 0.3333333333);
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  overflow: auto;
  animation: slideUp 0.3s ease;
}
.modal-content.modal-wide {
  max-width: 1200px;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid var(--border, #e5e7eb);
}
.modal-header h3 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
}

.modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text, #151515);
  opacity: 0.6;
  transition: 0.2s ease;
}
.modal-close:hover {
  opacity: 1;
}

.modal-body {
  padding: 1.5rem;
}

.modal-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: flex-end;
  padding-top: 1rem;
}

/* ========================================
   IMAGE UPLOAD MODAL
   ======================================== */
.upload-zone {
  border: 2px dashed #e5e7eb;
  border-radius: 8px;
  padding: 3rem 2rem;
  text-align: center;
  background: #f3f4f6;
  cursor: pointer;
  transition: 0.3s ease;
}
.upload-zone:hover {
  border-color: #5b7cfa;
  background: #eff1f5;
}
.upload-zone.dragover {
  border-color: #5b7cfa;
  background: #e8eaf2;
}
.upload-zone .material-symbols-outlined {
  font-size: 48px;
  color: #5b7cfa;
  margin-bottom: 1rem;
}
.upload-zone h4 {
  margin: 0 0 0.5rem 0;
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
}
.upload-zone p {
  margin: 0.5rem 0;
  color: #374151;
  font-size: 0.875rem;
}

.image-preview {
  display: none;
  text-align: center;
}
.image-preview img {
  max-width: 100%;
  max-height: 300px;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.focus-selector {
  display: none;
  margin-top: 1.5rem;
}
.focus-selector h4 {
  margin: 0 0 1rem 0;
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.focus-selector h4 .material-symbols-outlined {
  font-size: 20px;
  color: #5b7cfa;
}
.focus-selector p {
  margin: 0 0 1rem 0;
  font-size: 0.875rem;
  color: #374151;
}
.focus-selector small {
  color: #6b7280;
}

.focus-preview-container {
  position: relative;
  max-width: 100%;
  max-height: 400px;
  border-radius: 8px;
  overflow: hidden;
  cursor: crosshair;
  border: 2px solid var(--border, #e5e7eb);
}
.focus-preview-container img {
  max-width: 100%;
  max-height: 400px;
  display: block;
}

#focus-point {
  position: absolute;
  width: 30px;
  height: 30px;
  border: 3px solid #5b7cfa;
  border-radius: 50%;
  background: rgba(91, 124, 250, 0.2);
  transform: translate(-50%, -50%);
  pointer-events: none;
  box-shadow: 0 0 0 2px white;
}
#focus-point::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  background: #5b7cfa;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

#focus-cursor {
  position: absolute;
  background: rgba(91, 124, 250, 0.3);
  border: 2px solid #5b7cfa;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 0.7;
}

.focus-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
  justify-content: center;
}

.rights-confirmation {
  margin-top: 1.5rem;
  padding: 1rem;
  background: color-mix(in oklab, var(--surface, #f3f4f6) 50%, transparent);
  border-radius: 8px;
  border: 1px solid var(--border, #e5e7eb);
}
.rights-confirmation label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #111827;
}
.rights-confirmation label input[type=checkbox] {
  margin-top: 0.25rem;
  cursor: pointer;
}
.rights-confirmation h4 {
  color: #111827;
  font-weight: 600;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.rights-confirmation h4 .material-symbols-outlined {
  color: #5b7cfa;
}
.rights-confirmation p {
  color: #374151;
  margin-bottom: 0.5rem;
}
.rights-confirmation ul {
  color: #374151;
  margin: 0.5rem 0;
  padding-left: 1.5rem;
}
.rights-confirmation ul li {
  margin: 0.25rem 0;
}

.theme-recommendation {
  background: color-mix(in oklab, #5b7cfa 10%, transparent);
  border: 1px solid color-mix(in oklab, #5b7cfa 30%, transparent);
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1.5rem;
}
.theme-recommendation h4 {
  margin: 0 0 0.75rem 0;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #5b7cfa;
}
.theme-recommendation .rec-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.5rem;
  font-size: 0.875rem;
}
.theme-recommendation .rec-grid strong {
  color: #111827;
  font-weight: 600;
}
.theme-recommendation .rec-grid span {
  color: #374151;
}

/* ========================================
   IMAGE RECOMMENDATION BANNER
   ======================================== */
.image-recommendation {
  background: color-mix(in oklab, #5b7cfa 10%, transparent);
  border: 1px solid color-mix(in oklab, #5b7cfa 30%, transparent);
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.image-recommendation .material-symbols-outlined {
  font-size: 24px;
  color: #5b7cfa;
  flex-shrink: 0;
}
.image-recommendation .recommendation-content {
  flex: 1;
}
.image-recommendation .recommendation-content strong {
  color: #111827;
  font-weight: 600;
  display: block;
  margin-bottom: 0.25rem;
}
.image-recommendation .recommendation-content span {
  color: #374151;
}
.image-recommendation .recommendation-content small {
  color: #6b7280;
  font-size: 0.8125rem;
}

.rights-section {
  margin-top: 1.5rem;
}

/* ========================================
   THEME SELECTOR MODAL
   ======================================== */
.theme-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  padding: 1rem 0;
}

.theme-option {
  border: 2px solid var(--border, #e5e7eb);
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: 0.3s ease;
}
.theme-option:hover {
  border-color: #5b7cfa;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(91, 124, 250, 0.2);
}
.theme-option.active {
  border-color: #5b7cfa;
  box-shadow: 0 4px 16px rgba(91, 124, 250, 0.3);
}

.theme-preview {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  overflow: hidden;
}

.theme-info {
  padding: 1rem;
  background: var(--surface, #f3f4f6);
}
.theme-info h4 {
  margin: 0 0 0.5rem 0;
  font-size: 1rem;
  font-weight: 600;
}
.theme-info p {
  margin: 0 0 0.75rem 0;
  font-size: 0.875rem;
  color: rgba(var(--text, #151515), 0.7);
}

.theme-category {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  background: rgba(91, 124, 250, 0.1);
  color: #5b7cfa;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.theme-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.theme-tag {
  padding: 0.25rem 0.5rem;
  background: rgba(var(--text, #151515), 0.1);
  border-radius: 4px;
  font-size: 0.75rem;
}

/* ========================================
   THEME PREVIEW LAYOUTS
   ======================================== */
.theme-preview-header {
  height: 8px;
  border-radius: 4px;
}

.theme-preview-text {
  height: 6px;
  border-radius: 3px;
}

.theme-preview-button {
  height: 32px;
  width: 100px;
  border-radius: 6px;
}

.theme-preview-image {
  width: 100%;
  height: 100%;
}

.theme-preview-split {
  display: grid;
  grid-template-columns: 45% 55%;
  width: 100%;
  height: 100%;
  border-radius: 6px;
  overflow: hidden;
}

.theme-preview-content-split {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  justify-content: center;
}

.theme-preview-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.5rem;
  width: 100%;
  height: 100%;
}

.theme-preview-image-placeholder {
  width: 80px;
  height: 80px;
  border-radius: 50%;
}

.theme-preview-overlay {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem;
  width: 50%;
  height: 40%;
  margin: auto;
}

.theme-preview-swiss {
  width: 100%;
  height: 100%;
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  overflow: hidden;
  padding: 0.5rem;
}
.theme-preview-swiss .swiss-image {
  width: 28%;
  height: 80%;
  border-radius: 4px;
}
.theme-preview-swiss .swiss-content {
  width: 42%;
  background: white;
  border-radius: 4px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.theme-preview-epure {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  width: 100%;
  height: 100%;
}
.theme-preview-epure .epure-image {
  width: 60%;
  height: 45%;
  border-radius: 4px;
  margin: 0 auto;
}
.theme-preview-epure .epure-content {
  padding: 0 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
}

/* ========================================
   MESSAGES & NOTIFICATIONS
   ======================================== */
.message-container {
  position: fixed;
  top: 80px;
  right: 20px;
  z-index: 10001;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.message {
  padding: 1rem 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  animation: slideInRight 0.3s ease;
  min-width: 300px;
}
.message.success {
  background: rgba(16, 185, 129, 0.95);
  color: white;
}
.message.error {
  background: rgba(239, 68, 68, 0.95);
  color: white;
}
.message.info {
  background: rgba(91, 124, 250, 0.95);
  color: white;
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

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