/* CSS Document */

@media print {
  .no-print {
    display: none !important;
  }
}
@media screen
{
    .noPrint{}
    .noScreen{display:none;}
}

#warning-message { 
	display: none; 
}
@media only screen and (orientation:portrait){
	.container, .container-md, .container-fluid{ 
		display:none; 
	}
	#warning-message { 
		display:block;
		width: 100%;
		height:100%;
		background-color: black;
		color:white;
	}
}
@media only screen and (orientation:landscape){
    #warning-message { display:none; }
}

body,
html {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, "sans-serif";
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

#container {
  height: 100%;
  width: 100%;
}

#logo-left{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 3;
  padding: 0.5em;
}
#logo-right{
  display: block;
  position: absolute;
  top: 0;
  right: 0em;
  z-index: 3;
  padding: 0.5em;
	text-align: right;
	
}

#product-svg {
  position: relative;
  z-index: 2;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: 50%;
  /*mix-blend-mode: multiply;*/
}
#video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 0;
  background-color: #B913C3;
}
#background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 1;
}
#shadows-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 2;
}
.sector {
  display: flex;
  position: fixed;
  bottom: 5em;
  right: 2em;
  z-index: 3;
	background-color: aliceblue;
	padding: 0.5em;
}
.colors {
  display: absolute;
  position: fixed;
  bottom: 0em;
  z-index: 3;
  background-color: aliceblue;
  padding: 0.5em;
}

.color {
  height: 36px;
  width: 36px;
  margin-left: 0.3em;
  border-radius: 18px;
  box-shadow: 0px 4px 10px rgba(0,0,0,0.3);
  border: 2px solid #aaa;
  cursor: pointer;
  font-size: 1.5em;
}

.textos {
  display: block;
  position: fixed;
  bottom: 1em;
  right: 1em;
  z-index: 3;
  background-color: white;
  padding: 0.5em;
  height: auto;
  font-size: 12px;
}
a, a:visited, a:active, a:hover, a:link{
 text-decoration: none;
 color: #FFFFFF;
}