*
{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
}

input,
button
{
  margin: 0;
	border: 0;
	padding: 0;
	display: inline-block;
	vertical-align: middle;
	white-space: normal;
	background: none;

  font-weight: inherit;
  font-size: inherit;
  font-family: inherit;
  color: inherit;
}

input
{
  width: 100%;
  padding: 5px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

select
{
  margin: 0;
	padding: 0;
	display: inline-block;
	vertical-align: middle;
	white-space: normal;
	background: none;

  font-weight: inherit;
  font-size: inherit;
  font-family: inherit;
  color: inherit;

  width: 100%;
  padding: 5px 0;
  border: 1px solid rgba(0, 0, 0, 0.15);
}

*:focus
{
  outline: none;
}

*::-moz-focus-inner
{
  border: 0;
}

button
{
  text-align: center;
  cursor: pointer;
}

html
{
  font-family: "Open Sans", sans-serif;
  font-size: 62.5%;
  font-weight: 400;
  width: 100%; height: 100%;
}

body
{
  width: 100%; height: 100%;
  position: fixed;
  background-color: #EEE;
  font-size: 1.2rem;
}

/* GENERAL */

h2
{
  text-transform: uppercase;
  font-size: 1.5rem;
  font-weight: 700;
}

h3
{
  text-transform: uppercase;
  font-size: 1.2rem;
  font-weight: 600;
}

h4
{
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 300;
}

.rel
{
  position: relative;
}

.cvr
{
  width: 100%; height: 100%;
}

.clear
{
  clear: both;
}

.tbl
{
  display: table;
}

.cll
{
  display: table-cell;
  vertical-align: middle;
}

.spr
{
  font-size: 0.75em;
  vertical-align: super;
}

.print_only
{
  display: none;
}

/* SPECIFICS */

#app
{
  position: absolute;
  width: 100%; height: 100%;
  top: 0; left: 0;
}

#app .fixer
{
  padding-right: 0;
}

#viewer
{
  position: relative;
  width: 100%; height: 100%;
  top: 0; left: 0;
}

#viewer .markers
{
  -webkit-transition: opacity 0.15s ease-in-out;
  -moz-transition: opacity 0.15s ease-in-out;
  -ms-transition: opacity 0.15s ease-in-out;
  -o-transition: opacity 0.15s ease-in-out;
  transition: opacity 0.15s ease-in-out;

  position: absolute;
  width: 100%; height: 100%;
  left: 0; top: 0;

  opacity: 1;
}

#viewer .markers.hide
{
  opacity: 0;
}

#viewer .marker
{
  position: absolute;
  width: 30px; height: 30px;
  margin-left: -15px;
  margin-top: -15px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 100%;
  border: 1px solid rgba(255, 255, 255, 0.75);
  cursor: pointer;
}

#interface
{
  position: absolute;
  width: 100%; height: 100%;
  top: 0; left: 0;
  pointer-events: none;
}

#interface .layer
{
  -webkit-transition: opacity 0.25s ease-out;
  -moz-transition: opacity 0.25s ease-out;
  -ms-transition: opacity 0.25s ease-out;
  -o-transition: opacity 0.25s ease-out;
  transition: opacity 0.25s ease-out;

  position: absolute;
  width: 100%; height: 100%;
  top: 0; left: 0;

  opacity: 0;
}

#interface .layer.active
{
  opacity: 1;
}

#loader,
#worker
{
  display: table;
}

#loader .center,
#worker .center
{
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}

#loader .notice,
#worker .notice
{
  display: inline-block;
  padding: 10px 20px;
  color: #FFF;
  text-transform: uppercase;
}

@media (min-width: 770px)
{
  #app .fixer
  {
    padding-right: 0;
  }
}
