/*
 Theme Name: Hello Child
 Template: hello-elementor
 Text Domain: hello-child
*/


/* ELLIE: Elementor responsive container widths */
:root{
  --ellie-cw-desktop: 1100px;
  --ellie-cw-tablet: 600px;
  --ellie-cw-mobile: 100%;
}
/* Legacy Sections */
.elementor-section.elementor-section-boxed > .elementor-container{
  max-width: var(--ellie-cw-desktop);
}
@media (max-width: 1024px){
  .elementor-section.elementor-section-boxed > .elementor-container{
    max-width: var(--ellie-cw-tablet);
  }
}
@media (max-width: 767px){
  .elementor-section.elementor-section-boxed > .elementor-container{
    max-width: var(--ellie-cw-mobile);
  }
}
/* Flexbox Containers */
.e-con-boxed .e-con-inner{
  max-width: var(--ellie-cw-desktop);
}
@media (max-width: 1024px){
  .e-con-boxed .e-con-inner{
    max-width: var(--ellie-cw-tablet);
  }
}
@media (max-width: 767px){
  .e-con-boxed .e-con-inner{
    max-width: var(--ellie-cw-mobile);
  }
}
/* /ELLIE */
