/* 
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
*/

/* Add your custom styles here */

.elementor-widget-text-editor .elementor-widget-container p:last-child{
	margin-bottom: 0;
}

#breadcrumbs > span > span:first-child:before{
	content:url("https://sasori.onlinemedia.rs/wp-content/uploads/2025/01/home.svg");
	display: inline-block;
	vertical-align: middle;
	margin-right: 6px;
}

/* ANIMATION CLASSES */
.animate {
  animation-duration: 0.7s;
  animation-delay: 0s;
  animation-name: animate-fade;
  animation-timing-function: cubic-bezier(0.25, 1, 0.35, 1);
  animation-fill-mode: backwards;
}
.delay-2 {
    animation-delay: 0.1s;
}
.delay-3 {
	animation-delay: 0.3s;
}
.delay-4 {
	animation-delay: 0.5s;
}
.delay-5 {
	animation-delay: 0.7s;
}
/* Slide In */
.animate.slide { 
	animation-name: animate-slide; 
}
.animated-element{
        opacity: 0;
}
.animated-element.animate{
	opacity: 1;
}
@keyframes animate-slide {
    0% {
        opacity: 0;
        transform: translate3d(0, 5vh, 0);
    }
    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}