/*
Theme Name: TPD Custom Theme
Author: Tim Powers
Author URI: http://www.timpowersdesign.co.uk/
Description: A custom theme for Gutenberg sites
Version: 1.0.0
Version Date: 09.12.2020

This theme was created by TPD as a starter for themes created for clients.

Elements in this theme are from the Gutenberg Starter Theme https://github.com/WordPress/gutenberg-theme/ which itself is based on Underscores http://underscores.me/, (C) 2012-2016 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal http://necolas.github.io/normalize.css/

Elements in this theme are from Bootstrap 4.5.3 https://getbootstrap.com/
*/

/*

These are not the styles you are looking for. 

*/

.screen-reader-text {
    clip: rect(1px,1px,1px,1px);
    height: 1px;
    overflow: hidden;
    position: absolute!important;
    width: 1px;
    word-wrap: normal!important;
}

#fader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 99999999;
	pointer-events: none;
	background: #262835;
	animation-duration: 300ms;
	animation-timing-function: ease-in-out;
}

#fader:before {
	content: 'fade'	
}

@keyframes fade-out {
	from { opacity: 1 }
	to { opacity: 0 }
}

@keyframes fade-in {
	from { opacity: 0 }
	to { opacity: 1 }
}

#fader.fade-out {
	opacity: 0;
	animation-name: fade-out;
}

#fader.fade-in {
	opacity: 1;
	animation-name: fade-in;
}
