.elementor-110 .elementor-element.elementor-element-c5be716{--display:flex;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-110 .elementor-element.elementor-element-2d562f7a{font-family:"MuseoModerno", Sans-serif;font-weight:400;}/* Start custom CSS for text-editor, class: .elementor-element-2d562f7a */.flex-container {
  display: flex; /* Enables Flexbox layout */
  flex-direction: row; /* Arranges items horizontally (default, but good for clarity) */

  width: 100%; /* Makes the container take up the full width */
}

.column {
  flex: 1; /* Allows columns to grow and shrink to fill available space equally */
  padding: 5px; /* Adds spacing inside each column */
  box-sizing: border-box; /* Includes padding in the element's total width/height */
  display: flex; /* Enables Flexbox for content within each column */
  flex-direction: column; /* Stacks content vertically within each column */
}

.left-column {
  background-color: #f0f0f0;
}

.right-column {
  background-color: #d0d0d0;
}

textarea {
  width: 100%;
  height: 100%;
  resize: none; /* Prevents manual resizing of the textarea */
  border: 1px solid #ccc;
  padding: 5px;
  font-family: monospace;
}

iframe {
  width: 0%;
  height: 0%;
  border: none;
}/* End custom CSS */