/*Site width code*/
.wrap {
	max-width: 100%;
}

@media screen and (min-width: 48em) {
	.wrap {
		max-width: 100%;
	}
}

/*Pages other than front page*/
.page.page-one-column:not(.twentyseventeen-front-page) #primary {
	max-width: 70%;
}

/*img{max-width: 70%;}*/
/*Student pages*/
.single-post:not(.has-sidebar) #primary, .page.page-one-column:not(.twentyseventeen-front-page) #primary, .archive.page-one-column:not(.has-sidebar) .page-header, .archive.page-one-column:not(.has-sidebar) #primary {
/*margin-left: auto;
    margin-right: 100px;
    max-width: 740px;*/
	/*max-width: 70%;*/
/*.img{
		width:700px;
	}*/
}

/*Front page*/
@media screen and (min-width: 30em) {
	.page-one-column .panel-content .wrap {
		max-width: 70%;
	}
}

/*Reducing space between header and text in page*/
header.entry-header {
	padding: 0 !important;
	margin: 0 !important;
}

div#content.site-content {
	padding-top: 1em !important;
}

.videoWrapper {
	position: relative;
	padding-bottom: 56.25%;
/* 16:9 */
	height: 0;
}

.videoWrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/*remove padding so image layout lines up with video*/
.wp-block-jetpack-layout-grid-editor, .wp-block-jetpack-layout-grid {
	padding-left: 0;
	padding-right: 0;
	box-sizing: border-box;
}
/*
/* Adjust image width on Witch Way Comic page  / 35472510-hc(BM) ...Individual page only

.page-id-1273 .wp-block-image .aligncenter {
    margin: 0;
}

.page-id-1273 .wp-block-image figure,
.page-id-1273 .wp-block-image figure img {
    width: 100%
}



.wp-block-image figure,
.wp-block-image figure img {
    width: 80%;
	  /*align-content: center;*/
	  
}



/* End Adjust image width on Witch Way Comic page / xxxx-hc/zen (BM) 
*/
/* Adjust image width on Witch Way Comic page  / 35472510-hc(BM) image size on all pages */ 

 .wp-block-image .aligncenter {
    margin: 0;
	  
}

/* End Adjust image width on Witch Way Comic page / 35472510-hc(BM) */


/*soundcloud block..setting soundcloud block to full width */
figure.is-provider-soundcloud.wp-block-embed-soundcloud iframe {
width: 100%;
}


/*This code sets auto play for the video*/

document.addEventListener("DOMContentLoaded", function() {
    var video = document.querySelector('video');
    if (video) {
        video.muted = true;
        video.play();
    }
});