body{
	margin: 0;
	background: #1B1C20;
}
button::-moz-focus-inner {
	border: 0;
	outline: 0;
}
#contentCamera{
	display: none;
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	background: #1B1C20;
	z-index: 7;
}
video{
	display: none;
}
#canvasFilterCamera{
	position: absolute;
	left: 0px;
	top: 0px;
}
#overlayPhotos{
	display: none;
	position: absolute;
	left: 0px;
	top: 0px;
	height: 100%;
	overflow: hidden;
	width: 100%;
	background: #1B1C20;
}
#contentFinalPhotos{
	position: absolute;
	left: 0px;
	top: 0px;
	height: 0px;
	display: inline-block;
	overflow: hidden;
	width: 0px;
	background: transparent;
}
#takePhoto{
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -30px;
	margin-left: -30px;
	width: 60px;
	height: 60px;
	background: #E7E7E7;
	border-radius: 50%;
	border: 2px solid #1B1C20;
	opacity: 1;
	box-shadow: 0px 0px 0px 4px rgba(255, 255, 255, 0.4);
}
#takePhoto:active{
	opacity: 0.5;
	box-shadow: 0px 0px 0px 4px #E53B45;
}
#contControlsCamera{
	position: absolute;
	bottom: 0px;
	left: 0px;
	height: 80px;
	width: 100%;
	background: #1B1C20;
	background: rgba(27, 28, 32, 0.88);
}
#showFilters{
	position: absolute;
	top: 50%;
	margin-top: -24px;
	left: 20px;
	width: 30px;
	height: 30px;
	background: transparent;
	border: none;
	border-radius: 0px;
	opacity: 0.85;
}
#randomFilters{
	position: absolute;
	top: 50%;
	margin-top: -24px;
	right: 20px;
	width: 30px;
	height: 30px;
	background: transparent;
	border: none;
	border-radius: 0px;
	opacity: 0.85;
}
#showFilters p, #randomFilters p{
	clear: both;
	font-size: 10px;
	font-weight: lighter;
	color: #717171;
}
#barSettings{
	position: absolute;
	left: 0px;
	bottom: 80px;
	width: 100%;
	height: 40px;
	background: #1B1C20;
}
#barTimer, #barFrame{
	position: absolute;
	display: none;
	opacity: 0;
	left: 0px;
	bottom: 0px;
	width: 100%;
	height: 90px;
	background: #1B1C20;
	color: gray;
	font-family: Arial;
}
#barFilters{
	display: none;
	opacity: 0;
	position: absolute;
	overflow-x: auto;
	overflow-y: hidden;
	left: 0px;
	top: -65px;
	width: 100%;
	height: 65px;
	background: #1B1C20;
	background: rgba(27, 28, 32, 0.6);
	z-index: 7;
}
#contFilters{
	display: inline;
	background: transparent;
	padding: 0px;
	position: absolute;
	top: 0px;
	left: 0px;
	height: 100%;
	width: 640px;
}
.fbar{
	background: transparent;
	border: 1px transparent;
	margin-top: 6px;
	width: 53px;
	border-radius: 0px;
}
#showLayouts, #setVignette, #showFrame, #showTimer{
	position: relative;
	width: 25%;
	height: 40px;
	border: none;
	margin: 0;
	border-radius: 0px;
	top: 0px;
	margin-left: 0px;
	margin-right: 0px;
	float: left;
	background: #1B1C20;
}
#showLayouts:active, #setVignette:active, #showFrame:active, #showTimer:active{
	opacity: 0.85;
}
#showLayouts img, #setVignette img, #showFrame img, #showTimer img{
	opacity: 1;
}
#contentLayouts{
	display: none;
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	overflow-y: auto; 
	background: rgba(27, 28, 32, 0.95);
	z-index: 2;
}
#barLayouts{
	position: relative;
	left: 0px;
	top: 8px;
	width: 100%;
	height: 48px;
	background: transparent;
}
#barLayouts img{
	padding: 5px;
	opacity: 0.5;
	margin-right: 6px;
	margin-left: 13px;
}
#layouts3_4 ul, #layoutsLarge ul{
	padding-left: 0px;
	margin: 0px;
}
.selectLayout, .selectLayoutLarge{
	position: relative;
	list-style: none;
	background: transparent;
	margin: 18px;
	display: inline-block;
	opacity: 0.9;
}
.selectLayout:active, .selectLayoutLarge:active{
	opacity: 0.6;
}
#loading{
	display: none;
    width: 60px;
    height: 60px;
    margin: 0 auto;
    overflow: hidden;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -30px;
    margin-top: -30px;
    z-index: 8;
}
.double-bounce1, .double-bounce2 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #E53B45;
  opacity: 1;
  position: absolute;
  top: 0;
  left: 0;
  -moz-animation: bounce 1.5s infinite ease-in-out;
  -webkit-animation: bounce 1.5s infinite ease-in-out;
  animation: bounce 1.5s infinite ease-in-out;
}

.double-bounce2 {
  -moz-animation-delay: -1.0s;
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}

@-webkit-keyframes bounce {
  0%, 100% { -webkit-transform: scale(0.0) }
  50% { -webkit-transform: scale(1.0) }
}
@-moz-keyframes bounce {
  0%, 100% { -moz-transform: scale(0.0) }
  50% { -moz-transform: scale(1.0) }
}

@keyframes bounce {
  0%, 100% { 
    transform: scale(0.0);
    -webkit-transform: scale(0.0);
  } 50% { 
    transform: scale(1.0);
    -webkit-transform: scale(1.0);
  }
}
#spinner {
  display: none;
  width: 280px;
  height: 280px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -140px;
  margin-left: -140px;
  background-color: #E53B45;
  border-radius: 100%;
  z-index: 8;
  pointer-events: none;
}
.spinner {
  -moz-animation: scaleout 1.5s infinite ease-in-out;
  -webkit-animation: scaleout 1.5s infinite ease-in-out;
  animation: scaleout 1.5s infinite ease-in-out;
  animation-iteration-count: 1;
}


@-moz-keyframes scaleout {
  0% { -moz-transform: scale(0.0) }
  100% {
    -moz-transform: scale(1.0);
    opacity: 0;
  }
}
@-webkit-keyframes scaleout {
  0% { -webkit-transform: scale(0.0) }
  100% {
    -webkit-transform: scale(1.0);
    opacity: 0;
  }
}

@keyframes scaleout {
  0% { 
    transform: scale(0.0);
    -webkit-transform: scale(0.0);
  } 100% {
    transform: scale(1.0);
    -webkit-transform: scale(1.0);
    opacity: 0;

  }
}
#numberTimer{
	position: absolute;
	right: 7px;
	top: 57px;
	background: transparent;
	color: #E53B45;
	font-size: 13px;
	border: none;
}
#numberTime{
	position: absolute;
	right: 7px;
	top: 17px;
	background: transparent;
	color: #E53B45;
	font-size: 13px;
	border: none;
}
#tagT, #tagA{
	position: absolute;
	left: 2px;
	top: 16px;
	background: transparent;
	border: none;
}
#tagI, #tagC{
	position: absolute;
	left: 2px;
	top: 56px;
	background: transparent;
	border: none;
}
#contentWidth{
	position: absolute;
	width: 230px;
	top: 8px;
	left: 78px;
	height: 35px;
}
#contentColor{
	position: absolute;
	width: 230px;
	top: 48px;
	left: 78px;
	height: 35px;
}
.width{
	position: relative;
	width: 33.3%;
	height: 35px;
	border: none;
	margin: 0;
	border-radius: 0px;
	top: 0px;
	margin-left: 0px;
	margin-right: 0px;
	float: left;
	background: transparent;
}
#none{
	border-top-left-radius: 0px;
	border: 1px solid #E53B45;
	border-bottom-left-radius: 0px;
	background: #E53B45;
}
#black{
	border-top-left-radius: 0px;
	border: 1px solid #E53B45;
	border-right: 0px transparent;
	border-bottom-left-radius: 0px;
}
#light{
	border: 1px solid #E53B45;
	border-left: 0px transparent;
	border-right: 0px transparent;
}
#bold, #white{
	border-top-right-radius: 0px;
	border: 1px solid #E53B45;
	border-bottom-right-radius: 0px;
}
#black{
	background: #E53B45;
}
.color{
	position: relative;
	width: 50%;
	height: 35px;
	border: none;
	margin: 0;
	border-radius: 0px;
	top: 0px;
	margin-left: 0px;
	margin-right: 0px;
	float: left;
	background: transparent;
}
#none:active, #light:active, #bold:active, #white:active, #black:active{
	opacity: 0.85;
}
#timer {
    /*removes default webkit styles*/
    -webkit-appearance: none;
    -moz-appearance: none;
    position: absolute;
    /*fix for FF unable to apply focus style bug */
    border: 1px transparent;
    /*required for proper track sizing in FF*/
    width: 200px;
    top: 18px;
    left: 78px;
    background: transparent;
}
#interval {
    /*removes default webkit styles*/
    -webkit-appearance: none;
    -moz-appearance: none;
    position: absolute;
    /*fix for FF unable to apply focus style bug */
    border: 1px transparent;
    /*required for proper track sizing in FF*/
    width: 200px;
    top: 58px;
    left: 78px;
    background: transparent;
}
#timer::-moz-range-track, #interval::-moz-range-track {
    width: 200px;
    height: 1px;
    background: #979797;
    border: none;
    border-radius: 5px;
}
#timer::-moz-range-thumb, #interval::-moz-range-thumb {
    border: none;
    height: 13px;
    width: 13px;
    border-radius: 50%;
    background: #D52731;
    border: 7px solid #E53B45;
}
#timer:active::-moz-range-thumb, #interval:active::-moz-range-thumb {
    opacity: 0.7;
}

/*hide the outline behind the border*/
#timer:-moz-focusring, #interval:-moz-focusring{
    outline: 1px solid white;
    outline-offset: -1px;
}
#barShared{
	opacity: 0;
	display: none;
	position: absolute;
	left: 0px;
	top: -40px;
	width: 100%;
	height: 40px;
	background: #E53B45;
	z-index: 1;
}
#shared, #save, #removePhotoCamera{
	position: relative;
	width: 33.3%;
	height: 40px;
	border: none;
	margin: 0;
	border-radius: 0px;
	top: 0px;
	margin-left: 0px;
	margin-right: 0px;
	float: left;
}
#shared:active, #save:active, #removePhotoCamera:active{
	opacity: 0.8;
}
#shared img, #save img, #removePhotoCamera img{
	opacity: 0.87;
}
#info{
	display: none;
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	background: transparent;
	z-index: 8;
	pointer-events: none;
}
#info img{
	position: absolute;
	left: 50%;
	top: 50%;
	margin-top: -95px;
	margin-left: -95px;
	opacity: 0.75;
}
#nameFilter{
	position: absolute;
	left: 0px;
	top: 50%;
	height: 100px;
	width: 100%;
	margin-top: -50px;
	font-size: 64px;
	font-weight: lighter;
	font-family: Arial;
	color: #E53B45;
	text-align: center;
	pointer-events: none;
}
#setSeconds{
	position: absolute;
	left: 0px;
	top: 50%;
	height: 240px;
	width: 100%;
	margin-top: -120px;
	font-size: 180px;
	font-family: Arial;
	font-weight: lighter;
	color: rgba(255, 255, 255, 0.7);
	text-align: center;
	pointer-events: none;
}
#vibrateTouch{
	position: absolute;
	right: 10px;
	top: 10px;
	opacity: 0.9;
	z-index: 1;
	background: rgba(0, 0, 0, 0.15);
	border-radius: 50%;
	padding: 9px;
}
#vibrateTouch:active{
	background: rgba(255, 255, 255, 0.25);
}
#overlayShutter{
	display: none;
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.6);
	z-index: 8;
}
.nameFilters{
	position: absolute;
	bottom: 1px;
	width: 50px;
	height: 11px;
	font-family: Arial;
	font-size: 10px;
	color: #545454;
	background: rgba(0, 0, 0, 0.7);
}
#nameOrig{
	left: 2px;
}
#nameLK{
	left: 59px;
}
#nameBra{
	left: 116px;
}
#nameNash{
	left: 173px;
}
#nameXP{
	left: 230px;
}
#name1977{
	left: 287px;
}
#nameHefe{
	left: 344px;
}
#nameGot{
	left: 401px;
}
#nameVin{
	left: 458px;
}
#nameSe{
	left: 515px;
}
#nameGray{
	left: 572px;
}
#warning{
	display: none;
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	background: #D52731;
	z-index: 8;
}
#warning div{
	position: absolute;
	top: 50%;
	left: 0px;
	margin-top: -200px;
	width: 100%;
	height: 400px;
	background: #E53B45;
}
#warning div span{
	position: absolute;
	top: 15px;
	text-align: center;
	height: auto;
	font-size: 19px;
	color: rgb(248, 248, 248);
	width: 90%;
	left: 50%;
	margin-left: -45%;
	font-style: italic;
}
#close{
	position: absolute;
	opacity: 0.9;
	bottom: 10px;
	right: 10px;
}