@font-face {
  font-family: 'Dosis Bold';
  font-display: auto;
  src: url(https://fonts.googleapis.com/css2?family=Dosis:wght@700&display=swap);
}

@font-face {
  font-family: 'Din Alt Bold';
  font-display: auto;
  src: url(/assets/fonts/din-alt-bold.otf);
  font-weight: 700;
}

@font-face {
  font-family: 'Din Alt Regular';
  font-display: auto;
  src: url(/assets/fonts/din-regular-alt.ttf);
}

html {
  /* Setting this to `default` prevents the cursors from
     changing when hovering blocks of text or whitespace,
     which is less distracting */
	 cursor: default;
}

h1 {
	font-family: 'Dosis Bold	', sans-serif;
	color: #723A82;
}

h2, h3, h4, h5, h6 {
	font-family: 'Din Alt Bold', sans-serif;
}


body {
	background: #fff;
	color: #414141;
	font-family: 'Din Alt Regular', sans-serif;
}

.footer {
	background-color: #F1AC2D;
}

/* unvisited link */
a:link {
    color: #3E69A1;
}

/* visited link */
a:visited {
    color: #3E69A1;
}

/* mouse over link */
a:hover {
    color: #723A82;
}

/* selected link */
a:active {
    color: #3E69A1;
}


.spacer {
	width: 100%;
	min-height: 0.8em;
	height: 0.8em;
}
.breadcrumb {
  background-color: transparent;
}

.carousel-caption {
	bottom: 10%;
}

.bg-purple {
	background-color: #723A82;
}

.bg-green {
	background-color: #3BAD68;
}

.bg-yellow {
    background-color: #f1ac2d;
}

.bg-orange {
	background-color: #e4683a;
}

img.svgdrop {
    -webkit-filter: drop-shadow(1px 1px 1px gray); /* Safari */
    filter: drop-shadow(1px 1px 1px gray);
}

/* Intros */

.intro1 {
	font-size: 30px;
	line-height: 42px;
	font-weight: 800;
	color: #414141;
	text-align: right;
}
.intro2 {
	margin-top: 20px;
	margin-bottom: 10px;
	font-size: 16px;
}

.intro-right {
	font-size: 16px;
	font-weight: 500;
}



h3.caption {
	font-size: 50px;
	font-weight: 700;
}


p.caption {
	font-size: 2em;
	font-weight: 500;
}

/* purple boxes */

.purplebox {
	background-color: #723A82;
	color: #fff;
	padding: 10px;
	margin: 5px;
}

.purple-icon {
	margin-left: auto;
	margin-right: auto;
	
}

h3.purplebox {
	font-weight: 700;
	text-align: center;
}

i.purple-symbol {
	text-shadow: 1px 1px 0px #111;
}

/* Volunteering page */

.opp-contact {
	margin-top: 5px;
	margin-bottom: 5px;
	padding: 5px;
	border-top: 5px solid #883c8c;
	border-bottom: 5px solid #883c8c;
}


/* Venue selection */

input[type="radio"][id="wheels"]:checked + label {
  background:#6666ff;
}
input[type="radio"][id="wheels"]:checked ~ .pedal {
  background: aqua;
}
input[type="radio"][id="pedal"]:checked + label {
  background:#6666ff;
}
input[type="radio"][id="pedal"]:checked ~ .wheels {
  display:none;
}
.lightbox {
	/** Default lightbox to hidden */
	display: none;

	/** Position and style */
	position: fixed;
	z-index: 999;
	width: 100%;
	height: 100%;
	text-align: center;
	top: 0;
	left: 0;
	background: rgba(0,0,0,0.8);
}

.lightbox img {
	/** Pad the lightbox image */
	max-width: 90%;
	max-height: 80%;
	margin-top: 2%;
}

.lightbox:target {
	/** Remove default browser outline */
	outline: none;

	/** Unhide lightbox **/
	display: block;
}


/* Buttons */

.btn-outline-success {
	border-color: #3BAD68;
}


.btn-outline-success:hover {
	background-color: #3BAD68;
	border-color: #3BAD68;
}

/* coloured circles */

span.purple-dot {
height: 20px;
width: 20px;
background-color: #723A82;
border-radius: 50%;
display: inline-block;
}
span.green-dot {
height: 20px;
width: 20px;
background-color: #73ab60;
border-radius: 50%;
display: inline-block;
}
span.blue-dot {
height: 20px;
width: 20px;
background-color: #00aeb4;
border-radius: 50%;
display: inline-block;
}