/*<meta conditions="General.ImportOnly" />*/

/* Styles for Scripts should be kept here as it'll allow for more changes without worrying about the main styles. */
/* Please document the scripts in here as well so that it's clear what the styling effects. */

:root	/* This lets us use variables to style easily across the project. It takes the format of var(--example) to replace anything we use a lot eg "var(--grellow)" can be used instead of #D7DF23) */
{
	/* Colours */
	--grellow: #D7DF23;
	--housePurple: #582D87;
	--contrastPurple: #C7B7D5;
	--houseBlue: #09A9E0;
	--linkBlue: #076685;
	--bgGrey: #f6f6f6;
}

/* // BACK TO TOP STYLING // */

#backToTop
{
	display: none;
	height: 55px;
	width: 55px;
	border: none;
	border-radius: 90px;
	position: fixed;
	bottom: 80px;
	right: 150px;
	z-index: 99;
	background-repeat: no-repeat;
	background-size: contain;
	background-image: url(../Images/General/TopBtn.png);
	box-shadow: 0px 1px 4px 0px #cccccc;
	cursor: pointer;
}

#backToTop:hover
{
	box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
}

button#backToTop:active
{
	box-shadow: none;
}

/* // END OF BACK TO TOP STYLING // */
/* // BACK TO TOP STYLING // */

#feedbackForm
{
	font-size: 0.8rem;
	height: 45px;
	width: 100px;
	padding: 5px;
	border: 1px solid #582D87;
	border-radius: 3px;
	position: fixed;
	bottom: 85px;
	right: 32px;
	z-index: 99;
	box-shadow: 0px 1px 4px 0px #cccccc;
	cursor: pointer;
	color: #582D87;
	background-color: #ffffff;
	text-transform: uppercase;
}

#feedbackForm:hover
{
	box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
}

button#feedbackForm:active
{
	box-shadow: none;
}

/* // END OF BACK TO TOP STYLING // */
/* // DROP DOWN STYLING // */

select
{
	font-size: 1rem;
	padding: 5px 30px 5px 5px;
	margin: 5px 0px;
	border: 1px solid #076685;
	border-radius: 10px;
	appearance: none;
	background-image: url(../Images/General/navigation-down-web.png);
	background-position: right 10px center;
	background-size: 10px;
	background-repeat: no-repeat;
}

select:hover
{
	cursor: pointer;
}

option
{
	font-size: 14px;
}

ul.tree
{
	margin-left: 5px;
}

.hidden1
{
	display: none;
}

/* // END OF DROP DOWN STYLING // */

