/* Container */
body.responsive .container {
	max-width: 1350px;
}

*{
	margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@media screen and (max-width: 800px) { 
.show-on-pc-only {
/* When the media width is 800 or less hide the display */
	display: none;
}
}

@media screen and (min-width: 801px) { 
.show-on-mobile-only {
/* When the media width is 801 or greater hide the display */
	display: none;
}
}

/* Styling added to make all hyperlinks bold */
#content a {
    font-weight: bold !important;
}

/* Styling added to sub menus to centre the text in the drop down menu */
.sub-menu {
		text-align: center;
}

.churchsuitecalendar {
	border:3px solid #017550;
}

.churchsuiteevents {
	border:3px solid #017550;
}

/* Styling added to confirmation message */ 
div.wpforms-confirmation-container-full {
    background: #EFFFEF !important;
		border-radius: 15px !important;
		border-width: 3px !important;
		border-color: #017550 !important;
		margin: auto !important;
		margin-left: 25% !important;
		margin-right: 25% !important;
}