body {
    background-color: #fff;
    padding-top: 0px;
}

.main {
    box-shadow: none;
    /* margin-top: 75px !important; */
	margin-top: 0px;
	position: relative;
	top: 75px;
}

.main_content {
	/* margin-top: 50px; */
	margin-bottom: 100px;
}

.footer {
    background-color: #000;
    padding: 20px;
    min-height: 300px;
}



.contentTitle {
    padding: 10px;
    display: flex;
    align-items: center;
}

/* The snackbar - position it at the bottom and in the middle of the screen */
.snack {
	visibility: hidden; /* Hidden by default. Visible on click */
	min-width: 300px; /* Set a default minimum width */
    max-width: 300px;
	margin-left: -150px; /* Divide value of min-width by 2 */
	background-color: #343434; /* Black background color */
	color: #fff; /* White text color */
	text-align: center; /* Centered text */
	border-radius: 8px; /* Rounded borders */
	padding: 16px; /* Padding */
	position: fixed; /* Sit on top of the screen */
	z-index: 999999; /* Add a z-index if needed */
	left: 50%; /* Center the snackbar */
	top: 80px; /* 30px from the bottom */
    font-size: 1.8rem;
    box-shadow: 0px 0px 20px #222;
  }
  
/* Show the snackbar when clicking on a button (class added with JavaScript) */
.snack.show {
	visibility: visible; /* Show the snackbar */
	/* Add animation: Take 0.5 seconds to fade in and out the snackbar.
	However, delay the fade out process for 2.5 seconds */
	-webkit-animation: fadein 0.6s, fadeout 0.6s 2.5s;
    --snack-delay: 2.5s;
    /* animation: fadein 0.6s, fadeout 0.6s 2.5s; */
    animation: fadein 0.6s, fadeout 0.6s var(--snack-delay);
}
  
/* Animations to fade the snackbar in and out */
@-webkit-keyframes fadein {
	from {top: 0; opacity: 0;}
	to {top: 80px; opacity: 1;}
}
  
@keyframes fadein {
	from {top: 0; opacity: 0;}
	to {top: 80px; opacity: 1;}
}
  
@-webkit-keyframes fadeout {
	from {top: 80px; opacity: 1;}
	to {top: 0; opacity: 0;}
}
  
@keyframes fadeout {
	from {top: 80px; opacity: 1;}
	to {top: 0; opacity: 0;}
}

#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator:after {
	/* content: "\f0d7";
	font-family: "FontAwesome"; */
	content: "\f140";
	font-family: dashicons;
	font-weight: normal;
	display: inline-block;
	margin: 0;
	vertical-align: top;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	transform: rotate(0);
	color: inherit;
	position: relative;
	background: transparent;
	height: auto;
	width: auto;
	right: auto;
	line-height: inherit;
}

/* Main Menu links */
#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-item > a.mega-menu-link {
	font-size: 1.8rem;
}

/* Submenu links */
#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link {
	font-size: 1.5rem;
}

/* "X" icon on the mobile menu */
@media only screen and (max-width: 768px) {
	#mega-menu-wrap-max_mega_menu_1 .mega-menu-toggle ~ button.mega-close:before {
		content: "\f00d";
		font-family: "FontAwesome";
	}
}
		
/* Fixes z-index issues */
#mega-menu-max_mega_menu_1, #mega-menu-wrap-max_mega_menu_1 {
	z-index: 999 !important;
	/* position: relative !important; */
}

