/* Version 1.2.6 */

.vertical-align {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

@media all and ( max-width: 980px ) {
    .reverse-columns-mobile{
        display: flex;
        flex-direction: column-reverse;
    }
} 

@media all and ( min-width: 981px ) {
	.ss-hide-on-desktop{
		display: none!important;
	}
}

@media all and ( max-width: 980px ) {
	.ss-hide-on-mobile{
		display: none!important;
	}
}

/*rotate the Divi Menu icon on click*/
.mobile_menu_bar:before {
	transition: all .4s ease;
	transform: rotate(0deg);
	display: block;
}

/*rotate the Divi Menu icon on click*/
.mobile_nav.opened .mobile_menu_bar::before {
	transition: all .4s ease;
	transform: rotate(90deg);
	display: block;
	content: "\4d"!important;
}

/* Macht das Hamburger Menü Icon grösser */
.mobile_menu_bar:before {
    font-size: 38px;
}