body,
html {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  color: #444444;
  background-color: #000000;
}
* {
  touch-action: manipulation;
}
*,
*:before,
*:after {
  box-sizing: border-box;
}
body {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  overflow: hidden;
}

h1 {
  position: absolute;
  width: 100%;
  z-index: 1;
  font-size: 1.5rem;
}

a {
  color: white;
}

a:hover{
  color: purple;
}

#videowebcam {
  height: 100%;
  width: 100%;
  position: fixed;
  display: block;
  z-index: 0;
  top: 0;
  left: 0;  
}

#scene-container {
  width: 100%;
  height: 100%;
  display: block;
  z-index: 1;
  top: 0;
  left: 0;
}

.zi3 {
	z-index: 3;
}

.logo {
  position: absolute;
  display: flex;
  top: 0;
  right: 0;
}
.logo img {
  height: auto;
  width: 180px;
  pointer-events: none;
}

.controls {
  position: absolute;
  bottom: 0;
  width: 100%;
}
.dumps {
  position: absolute;
  top: 0;
}
.dump {
  background-size: cover;
  background-position: 50%;
  background-color: #ffffff;
  border-radius: 3px;
  margin-left: auto;
  margin-bottom: 2px;
  padding: 2px;
  height: 35px;
  width: 35px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.dump:hover {
	width: 40px;
	height: 40px;
}
.dump img {
  height: auto;
  width: 100%;
  pointer-events: none;
}
#dumpcam {
  display: none;
}
.dotsdropdown {
  display: none;
  flex-direction: column;
}
.showdd {
	display: flex;
}
.social {
  background-size: cover;
  background-position: 50%;
  background-color: #ffffff;
  border-radius: 3px;
  margin-left: auto;
  margin-bottom: 2px;
  padding: 2px;
  height: 35px;
  width: 35px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.social:hover {
	width: 40px;
	height: 40px;
}
.social a {
  height: 100%;
  width: auto%;
}
.social img {
  height: auto;
  width: 100%;
  pointer-events: none;
}
.mailreq {
  position: absolute;
  height: 55px;
  width: 55px;
  right: 50px;
  bottom: 50px;
  z-index:4;
}
.mailreq img {
  height: 100%;
  width: auto;
  pointer-events: none;
}
.options {
  position: absolute;
  left: 0;
}
.option {
  background-size: cover;
  background-position: 50%;
  background-color: white;
  border-radius: 3px;
  margin-bottom: 3px;
  padding: 10px;
  height: 55px;
  width: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.option:hover {
  border-left: 5px solid white;
  width: 58px;
}
.option.--is-active {
  border-right: 3px solid red;
  width: 58px;
  cursor: default;
}
.option.--is-active:hover {
  border-left: none;
}
.option img {
  height: 100%;
  width: auto;
  pointer-events: none;
}
.info {
  padding: 0 1em;
  display: flex;
  justify-content: flex-end;
}
.info p {
  margin-top: 0;
}
.tray {
  width: 100%;
  height: 50px;
  position: relative;
  overflow-x: hidden;
}
.tray__slide {
  position: absolute;
  display: flex;
  left: 0;
/*   transform: translateX(-50%);
  animation: wheelin 1s 2s ease-in-out forwards; */
}
.tray__swatch {
  transition: 0.1s ease-in;
  height: 50px;
  min-width: 50px;
  flex: 1;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
  background-size: cover;
  background-position: center;
  cursor: pointer;
}
.tray__swatch:nth-child(5n+5) {
  margin-right: 20px;
}
.drag-notice {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2em;
  width: 10em;
  height: 10em;
  box-sizing: border-box;
  font-size: 0.9em;
  font-weight: 800;
  text-transform: uppercase;
  text-align: center;
  border-radius: 5em;
  background: white;
  position: absolute;
}
.drag-notice.start {
  animation: popout 0.25s 3s forwards;
}
@keyframes popout {
  to {
    transform: scale(0);
  }
}
@keyframes wheelin {
  to {
    transform: translateX(0);
  }
}
.slidecontainer {
  width: 100px; 
}
.slider {
  visibility: hidden;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 15px;
  background: #d3d3d3;
  outline: none;
  border-radius: 5px;
  opacity: 0.6;
  -webkit-transition: .2s; 
  transition: opacity .2s;
  cursor: pointer;
}
.slider:hover {
	opacity: 0.9;
}
.overlay {
  height: 100%;
  width: 100%;
  position: fixed;
  z-index: 5;
  top: 0;
  left: 0;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0, 0.95);
  transition: 0.5s;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.overlay::-webkit-scrollbar {
  display: none; 
  width: 0;
}

.overlay-content {
  /*position: relative;*/
  width: 100%;
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.overlay-item {
  border-radius: 5px;
  background-size: contain;
  width: 250px;
  height: 140px;
  margin: 10px;
  /*display: block;*/
  transition: 0.3s;
}

.overlay div:hover, .overlay div:focus {
  color: #f1f1f1;
}

.loadscr {
  height: 100%;
  width: 100%;
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0, 0.95);
  transition: 0.5s;
  overflow: hidden;
}

.lselement {
  width:60px;
  height:60px;
  position: absolute;
  left: 50%;
  top: 50%;
  opacity: .1;
}

#lslogo {
  width: 240px;
  height: 240px;
  transform: translate(-120px, -120px);
  background: url('../imgs/icon-stamm-white-240px.png') no-repeat center center;
  animation: pulslogo 4s infinite linear;
}

#hammer {
  background: url('../imgs/icon-sm-hammer.png') no-repeat center center;
  transform: translate(-20px, 150px);
}

#saege {
  background: url('../imgs/icon-sm-saege.png') no-repeat center center;
  transform: translate(110px, 150px);
}

#hobel {
  background: url('../imgs/icon-sm-hobel.png') no-repeat center center;
  transform: translate(-150px, 150px);
}

@keyframes pulslogo {
	0% {
		opacity: .3;
	}
	50% {
		opacity: .9;
	}
	100% {
		opacity: .3;
	}
}

/* CONTACT FORM */
input[type=text], select, textarea{
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  resize: vertical;
}

label {
  padding: 12px 12px 12px 0;
  display: inline-block;
}

input[type=submit], input[type=button] {
  background-color: #04AA6D;
  color: white;
  margin-top: 6px;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  float: right;
}

#urlrow {
	display:none;
}

.modalcont {
  display:none;
  height: 100%;
  width: 100%;
  position: fixed;
  z-index: 4;
}

.contcontainer {
  position: relative;
  border-radius: 5px;
  background-color: #f2f2f2;
  margin: 20px auto;
  max-width: 450px;
  padding: 20px;
  z-index: 20;
}

.col-25 {
  float: left;
  width: 25%;
  margin-top: 6px;
}

.col-75 {
  float: left;
  width: 75%;
  margin-top: 6px;
}

.row:after {
  content: "";
  display: table;
  clear: both;
}

/* MEDIA */

@media (max-width: 960px) {
  .options {
    top: 0;
  }
  .info {
    padding: 0 1em 1em 0;
  }
  .info__message {
    display: flex;
    align-items: flex-end;
  }
  .info__message p {
    margin: 0;
    font-size: 0.7em;
  }
  .mailreq {
    right: 0px;
  }
  
}

@media (max-width: 720px) {
  .info {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 1em 1em;
  }
  .info__message {
    margin-bottom: 1em;
  }
  .logo img {
    width: 120px;
  }
}

@media (max-width: 680px) {
  .info {
    padding: 1em 2em;
  }
  .info__message {
    display: none;
  }
  .options {
    bottom: 50px;
  }
  .option {
    margin-bottom: 1px;
    padding: 5px;
    height: 45px;
    width: 45px;
    display: flex;
  }
  .option.--is-active {
    border-right: 2px solid red;
    width: 47px;
  }
  .option img {
    height: 100%;
    width: auto;
    pointer-events: none;
  }
}

/* media contact form */
@media screen and (max-width: 600px) {
  .col-25, .col-75, input[type=submit] {
    width: 100%;
    margin-top: 0;
  }
} 

