/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme/
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: 1.0.1
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
*/

/*
    Add your custom styles here
*/

/* ------------------------------- */
/* GLOBAL */
/* ------------------------------- */

ol, ul {
	margin-left: 20px;
	padding-left: 0;
}
ol > li, ul > li {
	margin-bottom: 10px;
}

ol ol li, ul ul li {
	margin-bottom: 0px;
}


/* ANIMATIONS */
@keyframes slideDown {
    from {
        transform: translate3d(0, -30px, 0);
        visibility: visible;
    }
    to {
        transform: translate3d(0, 0, 0);
    }
}
.elementor-element.slideInDown {
    animation-name: slideDown;
}
@keyframes slideLeft {
    from {
        transform: translate3d(-30px, 0, 0);
        visibility: visible;
    }
    to {
        transform: translate3d(0, 0, 0);
    }
}
.elementor-element.slideInLeft {
    animation-name: slideLeft;
}
@keyframes slideRight {
    from {
        transform: translate3d(30px, 0, 0);
        visibility: visible;
    }
    to {
        transform: translate3d(0, 0, 0);
    }
}
.elementor-element.slideInRight {
    animation-name: slideRight;
}
@keyframes slideUp {
    from {
        transform: translate3d(0, 30px, 0);
        visibility: visible;
    }
    to {
        transform: translate3d(0, 0, 0);
    }
}
.elementor-element.slideInUp {
    animation-name: slideUp;
}
@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translate3d(0, -30px, 0);
    }
    to {
        opacity: 1;
        transform: none;
    }
}
.elementor-element.fadeInDown {
    animation-name: fadeDown;
}
@keyframes fadeLeft {
    from {
        opacity: 0;
        transform: translate3d(-30px, 0, 0);
    }
    to {
        opacity: 1;
        transform: none;
    }
}
.elementor-element.fadeInLeft {
    animation-name: fadeLeft;
}
@keyframes fadeRight {
    from {
        opacity: 0;
        transform: translate3d(30px, 0, 0);
    }
    to {
        opacity: 1;
        transform: none;
    }
}
.elementor-element.fadeInRight {
    animation-name: fadeRight;
}
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translate3d(0, 30px, 0);
    }
    to {
        opacity: 1;
        transform: none;
    }
}
.elementor-element.fadeInUp {
    animation-name: fadeUp;
}


.elementor-editor-content-only .elementor-editor-element-edit,
.elementor-editor-content-only .elementor-editor-element-add,
.elementor-editor-content-only .elementor-editor-element-remove ,
.elementor-editor-content-only .elementor-add-section-inner ,
.elementor-editor-content-only .elementor-location-header ,
.elementor-editor-content-only .elementor-location-footer, .elementor-editor-content-only #elementor-panel-page-settings-controls, .elementor-editor-content-only .elementor-widget-taxonomy-filter, .elementor-editor-content-only .elementor-loop-container, .elementor-editor-content-only .elementor-document-handle  {
display: none!important;
}