<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

.modal.hs {
    position: absolute;
    z-index: 10000;
    top: 0;
    left: 0;
    visibility: hidden;
    width: 100%;
    height: 100%;
}

.modal.hs.active {
    visibility: visible;
}

.modal.hs .modal-overlay {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: hsla(0, 0%, 0%, 0.5);
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s linear 0.3s, opacity 0.3s;
}

.modal.active .modal-overlay {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}

.modal.hs .modal-wrapper {
    position: fixed;
    z-index: 9999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 36.25rem;
    padding: 0.625rem;
}

.modal.hs .modal-wrapper .row{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3.75rem;
    background-color: #fff;
    box-shadow: 0 0 1.5em hsla(0, 0%, 0%, 0.35);
    border-radius: 1.5625rem;
    padding: 2.8125rem;
    position: relative;
  }

  .modal.hs .modal-wrapper .modal-close{
    display: inline-block;
    position: absolute;
    top: 0.9375rem;
    right: 0.9375rem;
  }

  .modal.hs .modal-wrapper .modal-close img{
    width: 2.8125rem;
  }

  .modal.hs .modal-wrapper .modal-container{
      display: flex;
      flex-direction: column;
      gap: 1.875rem;
  }

  @media screen and (max-width: 600px) {
    .modal.hs .modal-wrapper .modal-close img{
        width: 1.8rem;
    }
  }</pre></body></html>