@charset "utf-8";
/*------------------------------------------------------------------------- FONTS 
*/
@font-face {
    font-family: 'avenir';
    src: url('font/avenir-light.woff2') format('woff');
    font-weight: 200;
    font-style: normal;
}
@font-face {
    font-family: 'avenir';
    src: url('font/avenir-light.woff2') format('woff');
    font-weight: 200;
    font-style: italic;
}
@font-face {
    font-family: 'avenir';
    src: url('font/avenir.woff2') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'avenir';
    src: url('font/avenir-italic.woff2') format('woff');
    font-weight: normal;
    font-style: italic;
}
@font-face {
    font-family: 'avenir';
    src: url('font/avenir-bold.woff2') format('woff');
    font-weight: bold;
    font-style: normal;
}
@font-face {
    font-family: 'avenir';
    src: url('font/avenir-bold-italic.woff2') format('woff');
    font-weight: bold;
    font-style: italic;
}
@font-face {
    font-family: 'avenir';
    src: url('font/avenir-black.woff2') format('woff');
    font-weight: 900;
    font-style: normal;
}
@font-face {
    font-family: 'avenir';
    src: url('font/avenir-black-italic.woff2') format('woff');
    font-weight: 900;
    font-style: italic;
}

/*------------------------------------------------------------------------- RESET 
*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
	outline: 0;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
:focus {
	outline: 0;
}
*,
*::before,
*::after {
	box-sizing: border-box;
}
.xdebug-error, .xe-warning {
	font-size: 16px;
	color: #000;
}

/*------------------------------------------------------------------------- CORE COLOURS
*/
:root {
	--sdsRed: #900114;
	--sdsDarkRed: #48000a;
	--sdsYellow: #ffff00;
	--sdsLightGrey: #ccc;
	--sdsDarkBlueGrey: #282c37;
	
	--filterRed: invert(9%) sepia(77%) saturate(7073%) hue-rotate(348deg) brightness(72%) contrast(103%);
	--filterYellow: invert(71%) sepia(98%) saturate(419%) hue-rotate(7deg) brightness(111%) contrast(113%);
	--filterGrey: invert(88%) sepia(0%) saturate(0%) hue-rotate(202deg) brightness(92%) contrast(97%);
	--filterBlueGrey: invert(15%) sepia(12%) saturate(870%) hue-rotate(186deg) brightness(99%) contrast(94%);
}

/*------------------------------------------------------------------------- CORE STYLES
*/
body {
	font-family: 'avenir', sans-serif;
	text-align: left;
	background: #fff;
	margin: 0;
	color: #000;
	overflow-x: hidden;
	display: flex;
	flex-flow: column nowrap;
	min-height: 100vh;
	font-size: 16px;
}
main {
	width: 100%;
	height: 100%;
	position: relative;
	margin: 0 auto;
	flex: 1;
	padding-bottom: 160px;
    animation: fadeInAnimation ease 1s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;		
}
h1 {
	font-size: 56px;
	font-weight: 900;
}
h2 {
	font-size: 36px;
	font-weight: 900;
	letter-spacing: -2px;
}
h3 {
	font-size: 30px;
	font-weight: 200;
	text-transform: uppercase;
}
h4 {
	font-size: 24px;
	font-weight: 200;
	text-transform: uppercase;
}
h5 {
	font-size: 20px;
	font-style: italic;
	line-height: 1.3em;
}
h6 {
	font-size: 20px;
	font-weight: 900;
}
strong, b {
	font-weight: bold;
}
em {
	font-style: italic;
}
a {
	text-decoration: none;
}
sup {
	vertical-align: super;
	font-size: 70%;
}
p {
	line-height: 1.4em;
	font-size: 16px;
	margin: 0 0 20px;
	position: relative;
}
main ul {
	margin: 10px 0 20px 15px;
	list-style: disc;
}
main ul li {
	margin: 0 0 10px;
	line-height: 1.5em;
	font-size: 15px;
}
main ol {
	margin: 10px 0 20px 15px;
	list-style: decimal;
}
main ol li {
	padding: 0 0 0 15px;
	margin: 0 0 10px;
	line-height: 1.3em;
	font-size: 15px;	
}
main ul li::marker,
main ol li::marker {
	font-weight: 900;
	color: var(--sdsRed);
}	
main .check-list {
	list-style-type: none;
	margin: 30px 0;
}
main .check-list li {
	display: flex;
	flex-flow: row nowrap;
	font-weight: bold;
	gap: 10px;
}
main .check-list li::before {
	content: '';
	display: block;
	width: 20px;
	height: 20px;
	background: url(../images/icons/checkbox.svg) center center / 100% no-repeat;
	filter: var(--filterRed);
	flex: 0 0 20px;
}
.text-link {
	color: var(--sdsRed);
	transition: all 0.25s ease;
	position: relative;
	white-space: nowrap;
	font-weight: bold;
}
.text-link::after {
	background-color: var(--sdsRed);
	width: 0%;
	position: absolute;
	bottom: -2px;
	left: 0;
	right: 0;
	margin: 0 auto;
	content: '';
	display: block;
	transition: 0.2s linear;
	height: 1px;
	opacity: 0;
}
.text-link:hover::after {
	width: 100%;
	opacity: 0.5;
}


@media (max-width: 767px) {
	h1 {
		font-size: 40px;
	}
	h2 {
		font-size: 32px;
	}
}
/*------------------------------------------------------------------------- SECTION: Standard Text Block
*/
section.standard-text {
	padding: 40px 0;
}
section.standard-text h1 {
	font-size: 32px;
	margin-bottom: 30px;
}
section.standard-text h2 {
	font-size: 28px;
	letter-spacing: 0;
	margin-bottom: 30px;
}
section.standard-text h4 {
	font-weight: bold;
	font-size: 15px;
	letter-spacing: 3px;
	margin-bottom: 10px;
}
section.standard-text h5 {
	color: var(--sdsRed);
	margin-bottom: 10px;
}
section.standard-text .container > p:first-of-type {
	font-weight: bold;
}
section.standard-text a {
	color: var(--sdsRed);
	transition: all 0.25s ease;
	position: relative;
	white-space: nowrap;
	font-weight: bold;
}
section.standard-text a::after {
	background-color: var(--sdsRed);
	width: 0%;
	position: absolute;
	bottom: -2px;
	left: 0;
	right: 0;
	margin: 0 auto;
	content: '';
	display: block;
	transition: 0.2s linear;
	height: 1px;
	opacity: 0;
}
section.standard-text a:hover::after {
	width: 100%;
	opacity: 0.5;
}

/*------------------------------------------------------------------------- PAGE HEADER  
*/
.page-header {
	position: relative;
	text-align: center;
	padding: 40px 0 60px;
	clip-path: polygon(100% 0, 100% calc(100% - 150px), 50% 100%, 0 calc(100% - 150px), 0 0);
	background: var(--sdsDarkBlueGrey) url(../images/empty-school-hallway.jpg) center center no-repeat;
	background-size: cover;	
	margin: 0;
	color: #fff;
	transition: all 0.25s ease;
}
.page-header::before {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(40,44,55, 0.75);
}
.page-header .logo {
	max-width: 300px;
	margin: 40px auto;
}

@media (max-width: 640px) {
	.page-header {
		clip-path: polygon(100% 0, 100% calc(100% - 80px), 50% 100%, 0 calc(100% - 80px), 0 0);
	}	
}

/*------------------------------------------------------------------------- DEFAULT LAYOUT BEHAVIOUR
*/
section {
	position: relative;
	width: 100%;
	background: transparent;
}
.container {
	width: 100%;
	max-width: 1440px;
	padding: 0 40px;
	margin: 0 auto;
	position: relative;	
}
.row {
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
	align-items: stretch;
	position: relative;
	width: 100%;
	padding: 0;
}
.column {
	flex: 1;
	padding: 0;
}

@media (max-width: 767px) {
	.row {
		flex-direction: column;
	}
	.column {
		width: 100%;
	}
}

/*------------------------------------------------------------------------- ANGLED DIVIDERS
*/
.divider-up-arrow::before {
	content: '';
	display: block;
	width: 100%;
	height: 150px;
	border-left: 50vw solid transparent;
	border-right: 50vw solid transparent;
	border-bottom: 150px solid #000;
	position: absolute;
	bottom: 100%;
}
.divider-down-arrow::after {
	content: '';
	display: block;
	width: 100%;
	height: 150px;
	border-left: 50vw solid transparent;
	border-right: 50vw solid transparent;
	border-top: 150px solid #000;
	position: absolute;
	top: 100%;
}

@media (max-width: 640px) {
	.divider-up-arrow::before {
		height: 80px;
		border-bottom-width: 80px;
		border-bottom-style: solid;
	}
	.divider-down-arrow::after {
		height: 80px;
		border-top-width: 80px;
		border-top-style: solid;			
	}
}

/*------------------------------------------------------------------------- LOGO
*/
.logo {
	display: block;
	font-size: 0;
	background: url(../images/sds-sercuredocumentstorage-logo.svg) center center / 100% no-repeat;
	aspect-ratio: 4.27;
	width: 100%;
}

/*------------------------------------------------------------------------- BUTTONS
*/
button,
.button {
	display: flex;
	flex-flow: row nowrap;
	gap: 10px;
	align-items: center;
	background-color: var(--sdsRed);
	text-align: left;
	color: #fff;
	font-size: 16px;
	font-family: 'avenir';
	text-transform: uppercase;
	letter-spacing: 1px;
	width: 100%;
	height: 60px;
	transition: all 0.25s ease;
	position: relative;
	border: 0;
	padding: 0 10px;
}
button:hover,
.button:hover {
	cursor: pointer;
	background-color: var(--sdsDarkBlueGrey);
	color: var(--sdsLightGrey);	
}

/*------------------------------------------------------------------------- PHOTO CONTAINER
*/
.image-wrapper {

}
.image-wrapper img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;	
}
.image-caption {
	font-style: italic;
	font-size: 15px;
	display: block;
	margin: 20px 0 0;
	color: var(--sdsRed);
	border-left: 5px solid var(--sdsRed);
	padding: 20px 0 20px 30px;
	line-height: 1.3em;
}

/*------------------------------------------------------------------------- ICONS
*/
.icon {
    display: inline-block;
}
.icon::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    aspect-ratio: 1;
    background: center center / 100% no-repeat;
    transition: inherit;
}

/* SVG path animated on hover */
.animated-icon path {
    stroke-dasharray: 0; 
    stroke-dashoffset: 0;
    transition: none;
}
/* Animate on hover ONLY */
.animated-icon:hover path {
    transition: stroke-dashoffset 1s ease, stroke 1s ease;
}
.animated-icon svg {
	stroke: #fff; 
	stroke-width: 2; 
	fill: none;	
}
.animated-icon:hover svg {
	stroke: var(--sdsYellow);
}
.icon-abc::before {
	background-image: url(../images/icons/abc.svg);
}
.icon-administrator::before {
	background-image: url(../images/icons/administrator.svg);
}
.icon-admissions::before {
	background-image: url(../images/icons/admissions.svg);
}
.icon-agreement::before {
	background-image: url(../images/icons/agreement.svg);
}
.icon-audit::before {
	background-image: url(../images/icons/audit.svg);
}
.icon-book::before {
	background-image: url(../images/icons/book.svg);
}
.icon-bursar::before {
	background-image: url(../images/icons/bursar.svg);
}
.icon-collection::before {
	background-image: url(../images/icons/collection.svg);
}
.icon-contact::before {
	background-image: url(../images/icons/contact.svg);
}
.icon-contract::before {
	background-image: url(../images/icons/contract.svg);
}
.icon-cpoms::before {
	background-image: url(../images/icons/cpoms.svg);
}
.icon-director::before {
	background-image: url(../images/icons/director.svg);
}
.icon-family::before {
	background-image: url(../images/icons/family.svg);
}
.icon-financial::before {
	background-image: url(../images/icons/financial.svg);
}
.icon-first-aid::before {
	background-image: url(../images/icons/first-aid.svg);
}
.icon-governor::before {
	background-image: url(../images/icons/governor.svg);
}
.icon-health-and-safety::before {
	background-image: url(../images/icons/health-and-safety.svg);
}
.icon-insurance::before {
	background-image: url(../images/icons/insurance.svg);
}
.icon-liquidator::before {
	background-image: url(../images/icons/liquidator.svg);
}
.icon-lock::before {
	background-image: url(../images/icons/lock.svg);
}
.icon-maintenance::before {
	background-image: url(../images/icons/maintenance.svg);
}
.icon-mis-socs::before {
	background-image: url(../images/icons/mis-socs.svg);
}
.icon-papers::before {
	background-image: url(../images/icons/papers.svg);
}
.icon-personnel::before {
	background-image: url(../images/icons/personnel.svg);
}
.icon-pupil::before {
	background-image: url(../images/icons/pupil.svg);
}
.icon-quality::before {
	background-image: url(../images/icons/quality.svg);
}
.icon-roof::before {
	background-image: url(../images/icons/roof.svg);
}
.icon-safeguarding::before {
	background-image: url(../images/icons/safeguarding.svg);
}
.icon-scanner::before {
	background-image: url(../images/icons/scanner.svg);
}
.icon-school::before {
	background-image: url(../images/icons/school.svg);
}
.icon-sen::before {
	background-image: url(../images/icons/sen.svg);
}
.icon-shredder::before {
	background-image: url(../images/icons/shredder.svg);
}
.icon-storage::before {
	background-image: url(../images/icons/storage.svg);
}
.icon-telephone::before {
	background-image: url(../images/icons/telephone.svg);
}
.icon-trustee::before {
	background-image: url(../images/icons/trustee.svg);
}

/*------------------------------------------------------------------------- NAV BAR
*/
nav {
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 99;
	height: 60px;
}
nav.fixed {
	background-color: rgba(40,44,55,0.9);	
}
nav .container {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	height: 100%;
}
nav a {
	color: #fff;
}
.menu-button {
	font-weight: 900;
	font-size: 18px;
	transition: all 0.25s ease;
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	gap: 5px;
}
.menu-button:hover {
	color: var(--sdsYellow);
}
.menu-button svg {
	stroke: #fff; 
	stroke-width: 2; 
	fill: none;	
}
.menu-button:hover svg {
	stroke: var(--sdsYellow);
}
.contact-links {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	margin: 0 0 0 auto;
	gap: 10px;
}
.contact-links a {
	font-weight: 900;
	font-size: 18px;
	color: #fff;
	transition: all 0.25s ease;
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	gap: 5px;
}
.contact-links a:hover {
	color: var(--sdsYellow);
}

@media (max-width: 540px)
{
	.contact-links span {
		display: none;
	}
	.contact-links {
		gap: 20px;
	}
	.contact-links a svg {
		transform: scale(120%);
	}
}

/*------------------------------------------------------------------------- MAIN MENU
*/
#menuBlock {
	content: '';
	display: block;
	position: fixed;
	left: 0;
	top: 0;
	width: 100vw;
	height: 100vh;
	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);	
	transition: opacity 0.25s ease;
	opacity: 0;
	pointer-events: none;
	background-color: rgba(0,0,0,0.25);	
	z-index: 1;
}
body:has(.main-menu.open) #menuBlock {
	opacity: 1;
	pointer-events: auto;
}
.main-menu {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	max-width: 320px;
	background-color: var(--sdsDarkBlueGrey);
	z-index: 99;
	padding: 40px 0;
    transform: translateX(-320px);
	transition: transform ease 0.25s;
}
.main-menu::after {
	content: '';
	display: block;
	position: absolute;
	left: 100%;
	top: 0;
	width: 1px;
	height: 100%;
	background: linear-gradient(0deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.5) 50%, rgba(255,255,255,0) 100%);
}
.main-menu.open {
	transform: translateX(0);	
}
.main-menu .logo {
	max-width: 200px;
	margin: -20px 20px 40px;
}
.main-menu li {
	display: block;	
}
.main-menu li a {
	position: relative;
	display: block;
	width: 100%;
	height: 40px;
	color: #fff;
	line-height: 40px;
	padding: 0 20px;
	transition: all 0.25s ease;
}
.main-menu li a:hover {
	background-color: var(--sdsRed);
	color: var(--sdsLightGrey);
}
.main-menu li.has-menu > a::after {
	content: '';
	display: block;
	width: 12px;
	height: 12px;
	background: url(../images/icons/arrow-down.svg) center center / 100% no-repeat;
	filter: invert(1);
	position: absolute;
	right: 20px;
	top: 0;
	bottom: 0;
	margin: auto 0;
	transition: inherit;
}
.main-menu li.has-menu:has(.sub-menu.open) > a::after {
	transform: scaleY(-1);
}
.main-menu .sub-menu {
	overflow: hidden;
	max-height: 0;
	transition: all 0.25s ease;
}
.main-menu .sub-menu.open {
	max-height: 400px;
	margin: 5px 5px 10px;
}
.main-menu .sub-menu a {
	font-size: 14px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}
.main-menu .close-menu {
	display: block;
	width: 20px;
	height: 20px;
	font-size: 0;
	margin: 20px 0;
}
.main-menu .close-menu:hover {
	background: transparent;
}
.main-menu .close-menu:hover svg {
	stroke: var(--sdsLightGrey);
}

/*------------------------------------------------------------------------- SEARCH POP-OUT
*/
#search-box {
	position: absolute;
	top: -60px;
	background: var(--sdsDarkBlueGrey);
	width: 100%;
	height: 60px;
	left: 0;
	transition: all 0.25s ease;
	overflow: hidden;
	z-index: 11;
	padding: 10px 20px 10px 20px;
}
#search-box.active {
	top: 0;
}
#search-box form {
	padding: 0;
}
#search-box fieldset {
	width: 100%;
	height: 100%;
	position: relative;
	display: flex;
	align-items: center;
	display: flex;
	padding: 0;
	gap: 20px;
}
#search_text::placeholder {
	color: #999;
	font-size: 15px;
	font-family: 'avenir';
	font-weight: bold;
}
#search-box button {
	background: none;
	border: 0;
	width: 20px;
	height: 20px;
	padding: 0;
	margin: 0;
}
#search-box button span {
	display: none;
}
#search-box button:hover {
	cursor: pointer;
}
#close-search-button {
	display: block;
	width: 20px;
	height: 20px;
	font-size: 0;
}
#search-box .animated-icon:hover svg {
	stroke: var(--sdsLightGrey);
}

/*------------------------------------------------------------------------- FORM ELEMENTS
*/
form {
	width: 100%;
	padding: 0;
	position: relative;
	margin: 0 auto;
}
fieldset {
	padding: 0 0 10px;
	max-width: 480px;
	margin: 0 auto;	
	position: relative;
}
input,
textarea {
	background: #f9f9f9;
	width: 100%;
	height: 40px;
	padding: 5px 10px;
	font-family: 'avenir';
	transition: 0.2s linear;
	color: #999;
	font-size: 16px;
	border: 1px solid #999;
}
textarea {
	height: 180px;
	padding: 15px 10px;
	resize: none;
	overflow: hidden;
}
input:hover,
textarea:hover {
	border-color: var(--sdsRed);
	color: #555;
}
input:focus,
textarea:focus {
	background-color: #fff;
	color: #000;
	border-color: var(--sdsRed);
}
textarea::placeholder,
input::placeholder {
	font-family: 'avenir';	
	color: #999;
	font-style: italic;
	font-size: 14px;
}    
textarea:focus::placeholder,
input:focus::placeholder {
	color: #777;
}
label {
	display: none;
}
label[for="confirm"] {
	display: inline-block;
	padding-left: 10px;
	font-size: 15px;
	font-family: 'avenir';
	color: #000;
	line-height: 1.1em;
	margin: 10px 0;
}
fieldset.checkbox {
	display: flex;
}
input[type="checkbox"] {
	padding: 0;
	width: 16px;
	height: 16px;
	display: inline-block;
	vertical-align: top;	
	margin: 10px 0;
}
fieldset.recaptcha {
	padding: 0 0 10px;
}
div.g-recaptcha {
	transform: scale(0.9);
	margin-left: -20px;
}

/*--------------------------------------------- Change Autocomplete styles in Chrome
*/
input:-webkit-autofill,
textarea:-webkit-autofill {
	-webkit-text-fill-color: #999;
	-webkit-box-shadow: 0 0 0px 1000px #f9f9f9 inset;
	border: 1px solid #999;
}
input:-webkit-autofill:hover, 
textarea:-webkit-autofill:hover {
	-webkit-text-fill-color: #555;
	-webkit-box-shadow: 0 0 0px 1000px #fff inset;
	border: 1px solid var(--sdsRed);	
}
input:-webkit-autofill:focus,
textarea:-webkit-autofill:focus {
	border: 1px solid var(--sdsRed);
	-webkit-text-fill-color: #000;
	-webkit-box-shadow: 0 0 0px 1000px #fff inset;
}

/*------------------------------------------------------------------------- FOOTER
*/
footer {
	position: relative;
	text-align: center;
	color: #fff;
	background: #000;
}
footer .container {
	padding: 0 20px 10px;
	margin-top: -100px;
}
.footer-links {
	list-style-type: none;
	margin: 10px auto;
	display: flex;
	flex-flow: row wrap;
	align-items: center;
}
.footer-links li {
	position: relative;
	display: block;
	font-size: 15px;
	text-transform: uppercase;
}
.footer-links li::after {
	content: '';
	background: url(../images/sds-bullet.svg) center center / 100% no-repeat;
	display: inline-block;
	width: 10px;
	height: 10px;
	margin: 0px 20px;
	text-align: center;
}
.footer-links li:last-of-type::after {
	display: none;
}
footer a {
	color: #fff;
	position: relative;
	font-size: 14px;
	transition: all 0.2s linear;
}
footer a:hover {
	color: var(--sdsLightGrey);
}
footer a::after {
	background-color: var(--sdsLightGrey);
	width: 0%;
	position: absolute;
	bottom: -2px;
	left: 0;
	right: 0;
	margin: 0 auto;
	content: '';
	display: block;
	transition: 0.2s linear;
	height: 1px;
	opacity: 0;
}
footer a:hover::after {
	width: 100%;
	opacity: 0.35;
}
footer .since-1994 {
	min-height: 150px;
	padding: 120px 0 0;
	background: url(../images/30-years.svg) center top / 100% auto no-repeat;
	max-width: 200px;
	font-size: 8px;
	line-height: 1em;
	text-transform: uppercase;
	color: #fff;
	text-align: center;
	margin: 0 auto;
	font-weight: 900;
}
footer p {
	font-size: 14px;
	margin: 0 0 10px;
	text-align: center;
	width: 100%;
}

@media (max-width: 600px)
{
	.footer-links {
		flex-flow: column nowrap;
	}
	.footer-links li::after {
		display: none;
	}
}

/*------------------------------------------------------------------------- BACK TO TOP BUTTON 
*/
#top {
	position: fixed;
	bottom: -60px;
	right: 0;
	width: 30px;
	height: 30px;
	z-index: 99;
	opacity: 0;
	font-size: 0;
	transition: all 0.25s ease;
	background-color: var(--sdsRed);
}
#top::before {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	background: url(../images/icons/arrow-up.svg) center center / 40% no-repeat;
	filter: invert(1);
}
#top.show {
	opacity: 0.6;
	bottom: 40px;
}
#top:hover {
	opacity: 1;
}

/*------------------------------------------------------------------------- CSS ANIMATIONS
*/
@keyframes fadeInAnimation {
    0%   {  opacity: 0;  }
    100% {  opacity: 1;  }
}

@keyframes hvr-pop {
  50% {
    transform: scale(1.1);
  }
}
.hvr-pop {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
}
.hvr-pop:hover, .hvr-pop:focus, .hvr-pop:active {
  animation-name: hvr-pop;
  animation-duration: 0.5s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: 1;
}

/*------------------------------------------------------------------------- GENERIC ALERT BOX
*/
.alert {
	background-color: var(--sdsRed);
	color: #fff;
    padding: 20px;
	position: relative;
	margin: 0 auto 45px;
	width: 100%;
	max-width: 480px;
}
.alert h4 {
	font-size: 24px !important;
    font-weight: 200 !important;
    text-transform: uppercase;	
	margin-bottom: 20px !important;
}
.alert ul {
	list-style-type: none;
	margin: 10px 0;
}
.alert ul li {
	padding-left: 40px;
	position: relative;
}
.alert ul li::before {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 20px;
	height: 20px;
	background: url(../images/icons/error.svg) center center / 100% no-repeat;
	filter: invert(1);
}
.alert a {
	color: #fff !important;
}
.alert a:hover {
	color: var(-sdsLightGrey) !important;
}