/**
  Additional styling for formating wordpress 
  standard elements
  **/
/**
  WordPress Default Classes
  **/
.alignnone {
    margin: 0 0 20px;
}

.alignleft {
  float: left;
  margin-right: 20px;
  margin-bottom: 20px;
}
.alignright {
  float: right;
  margin-left:20px;
  margin-bottom: 20px;
}

div.aligncenter,
.aligncenter {
  margin: 0 auto 20px;
  float: none;
  margin-bottom: 20px;
}

.wp-caption {
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	max-width: 100%;
}

.wp-caption-text {
  background: #F6F6F6;
  font-style: italic;
  padding: 10px;
  text-align: left;
}

.gallery-caption {
	border: none;
}

.bypostauthor {
	border-width: 2px;
}

.sticky {
	border-width: 2px;
}

.assistive-text,
.screen-reader-text {
  display: none;
}

/**
  Gallery
  **/
.gallery {
	margin-bottom: 30px !important;
}
.gallery .gallery-item a {
	display: block;
}

.gallery .gallery-icon {
	padding: 6px;
	margin: 2px;
	border-width: 2px;
	border-style: solid;
	border-radius: 3px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
}

.gallery .gallery-item img {
  border: none !important;
  max-width: 100%;
}

/**
  Make wp default media player responsive
  **/
.mejs-container {
  width: 100% !important;
  height: auto !important;
  padding-top: 57%;
}
.mejs-overlay, .mejs-poster {
  width: 100% !important;
  height: 100% !important;
}
.mejs-mediaelement video {
  position: absolute;
  top: 0; 
  left: 0; 
  right: 0; 
  bottom: 0;
  width: 100% !important;
  height: 100% !important;
}