/*
 Theme Name:   Stel Child Theme
 Theme URI:    https://alessandrolagasca.it/stel
 Description:  Child Theme per Divi
 Author:       Alessandro Lagasca
 Author URI:   https://www.alessandrolagasca.it/
 Template:     Divi
 Version:      1.0.0
*/

/*****Add any custom CSS below this line*****/

#top-menu li.current-menu-item > a {
  color: #143386!important;
}

.et_pb_menu_0_tb_header .mobile_nav .mobile_menu_bar::before, .et_pb_menu_0_tb_header .et_pb_menu__icon.et_pb_menu__cart-button{
	color: red!important;
}

.mobile_menu_bar::before, .mobile_menu_bar::after, #top-menu li.current-menu-ancestor > a, #top-menu li.current-menu-item > a {
	color: #143386!important;
}

img {
    pointer-events: none;
}



@media all and (max-width: 980px) {
/*** wrap row in a flex box ***/
.custom_row {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
-webkit-flex-wrap: wrap; /* Safari 6.1+ */
flex-wrap: wrap;
}
 
/*** custom classes that will designate the order of columns in the flex box row ***/
.first-on-mobile {
-webkit-order: 1;
order: 1;
}
 
.second-on-mobile {
-webkit-order: 2;
order: 2;
}
 
/*** add margin to last column ***/
.custom_row:last-child .et_pb_column:last-child {
margin-bottom: 30px;
}
 
}