/*
	DEFAULT
*/

* {
	margin: 0px;
	padding: 0px;
}

html, body {
	margin: 0px;
	padding: 0px;
}

body {
	background-color: white;
	overflow: hidden;
}

/*
	BOXES
*/

.hidden {
	display: none;
}

.footer {
	background-color: rgba(255, 255, 255, 0.45);
    position: absolute;
    bottom: 0;
    height: auto;
    width: 30%;
    text-align: center;
    padding: 2px 0;
}

.footer > ul > li > a, .footer > ul > li > .a {
	color: black;
	text-decoration: none;
}

.footer > ul {
	display: flex;
    justify-content: space-around;
    list-style: none;
    width: 90%;
    margin: 0 5%;
}

.menu {
    position: absolute;
    display: block;
    background-color: rgba(255, 255, 255, 0.7);
    border: 1px solid #303030;
	color: #303030;
    border-radius: 5px;
    padding: 10px;
    margin-top: 10px;
    padding-left: 20px;
    margin-left: -15px;
}

/*
	FONT
*/

.menu > .fas {
	font-size: 36px;
	padding: 0 5px;
}

.clickable {
	cursor: pointer;
}

.footer {
	color: #303030;
}

body { font-family: "Josefin Sans"; color: black;}
h1 { font-family: "Josefin Sans"; font-size: 24px; font-style: normal; font-variant: normal; font-weight: 700; line-height: 26.4px; }
h3 { font-family: "Josefin Sans"; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 700; line-height: 15.4px; }
p { font-family: "Josefin Sans"; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; line-height: 20px; }
blockquote { font-family: "Josefin Sans"; font-size: 21px; font-style: normal; font-variant: normal; font-weight: 400; line-height: 30px; }
pre { font-family: "Josefin Sans"; font-size: 13px; font-style: normal; font-variant: normal; font-weight: 400; line-height: 18.5714px; }

/*
	360 PANOLENS VIEWER
*/

section.background {
	position: fixed;
	top: 0;
	left: 0;
	cursor: -webkit-grab;
	cursor: grab;
  }
  
  section.background.mousedown {
	cursor: -webkit-grabbing;
	cursor: grabbing;
  }
  
  section.content {
	width: 100%;
	z-index: 1;
  }

  section.background {
	  height: 100%;
	  width: 100%;
  }

  .progress{
	height: 100%;
    width: 100%;
    position: absolute;
    display: block;
    background-color: white;
	text-align: center;
  }

  .progress > img {
	position: relative;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
  }