/**
 * On wedding gallery single post; in lightbox: Pinterest "Pin it" button is
 * positioned wrong by default styling. This code changes its CSS from
 * "position:absolute" to "position:fixed".
 */

@media screen and (min-width:801px) {
    span[class^="PIN"] {
        position: fixed !important;
        top: 2rem !important;
    }
}
@media screen and (max-width:800px) {
	span[class^="PIN"] {
        position: fixed !important;
	    top: 1rem !important;
	    left: 1rem !important;
	}
}