body,h1,h2,h3,h4,h5,h6 {font-family: "Lato", sans-serif;}
body, html {
    margin: 0;
    height: 100%;
    color: #777;
    line-height: 1.8;
    overflow:hidden;

    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Non-prefixed version, currently
                          supported by Chrome and Opera */
}

canvas, img {
    image-rendering: optimizeSpeed;
    image-rendering: -moz-crisp-edges;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: optimize-contrast;
    image-rendering: pixelated;
    -ms-interpolation-mode: nearest-neighbor;
}

h6
{
  padding: 0px;
}

a
{
   transition:
    opacity .25s;

  -webkit-transition: 
    opacity .25s;

  -moz-transition: 
    opacity .25s;

  -o-transition: 
    opacity .25s;
}

/* Stuff for only tablets and phones */
@media only screen and (max-device-width: 1024px) {
    
}

.empty
{
  width: 0px;
  height: 0px;
}

.hidden
{
  display: none;
}

.textbox 
{
	font-family: "Lato", sans-serif;
	font-size: 120%;
	text-align: center;
	width: 90%;
  color: black;
  line-height: 1.8;
  opacity: 0.0;

  transition:
    opacity .25s;

  -webkit-transition: 
    opacity .25s;

  -moz-transition: 
    opacity .25s;

  -o-transition: 
    opacity .25s;

  font-weight: 900;
}

::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    font-weight: 300;
    text-transform:none;
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
    font-weight: 300;
    text-transform:none;
}

::-ms-input-placeholder { /* Microsoft Edge */
    font-weight: 300;
    text-transform:none;
}

.textbox-half1
{
  width: calc(45% - 2px);
  margin-right: 2px;
}

.textbox-half2
{
  width: calc(45% - 2px);
  margin-left: 2px;
}

.dropdown-name {
  width: 90%;
  height: 1.8em;
  border: 0.5px solid #DDD !important;
  border-radius: 0px;
  font-weight: 900;
  opacity: 0.0;

  transition:
    opacity .25s;

  -webkit-transition: 
    opacity .25s;

  -moz-transition: 
    opacity .25s;

  -o-transition: 
    opacity .25s;
}

.dropdown-placeholder {
  color: #777;
  font-weight: 300;
}

.stripe 
{
	width: 50vmax;
	position: fixed;
  top: 50%;
  left: 50%;
  transform-origin: left;
  transform: translate(0px, -50%);

  animation: infinite-spinning 100s infinite linear;
  -webkit-animation: infinite-spinning 100s infinite linear;
}

.load-spinner
{
  transform-origin: center;
  width: 100px;
  margin-top: 50px;
  margin-bottom: 50px;
  /*margin: 25%;*/

  animation: loader-spinning 1s infinite linear;
  -webkit-animation: loader-spinning 1s infinite linear;
}

.load-gear
{
  width: 100px;
  height: 100px;
  position: absolute;
}

.load-gear1
{
  top: calc( 50% - 30px + 30px);
  left: calc( 50% - 50px + 30px );

  animation: loader-spinning 1s infinite linear;
  -webkit-animation: loader-spinning 1s infinite linear;

  animation-delay: -0.0625s;
  -webkit-animation-delay: -0.0625s;
}

.load-gear2
{
  top: calc( 50% - 30px - 30px );
  left: calc( 50% - 50px - 30px );

  animation: loader-spinning 1s infinite;
  -webkit-animation: loader-spinning 1s infinite;

  animation-timing-function: linear;
  -webkit-animation-timing-function: linear;

  animation-direction: reverse;
  -webkit-animation-direction: reverse;
}

.back-gear
{
  z-index: -50;
  width: 20vmin;
  height: 20vmin;
  top: calc( 50% - 10vmin );
  left: calc( 50% - 10vmin );
  position: absolute;

  animation: loader-spinning 1s infinite linear;
  -webkit-animation: loader-spinning 1s infinite linear;

  transition:
    top .5s,
    left .5s;

  -webkit-transition: 
    top .5s,
    left .5s;

  -moz-transition: 
    top .5s,
    left .5s;

  -o-transition: 
    top .5s,
    left .5s;
}

.gear-space
{
  height: 190px;
}

.centerbox
{
  transform-origin: center;
  width: 100%;
  padding: 50px 0px;
}

.snark
{
  font-size: 130%;
}

.button 
{
  font-family: "Lato", sans-serif;

  outline: none;
  border: none;
  color: white;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  border-radius: 4px;
  cursor: pointer;
  box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);

  margin: 10px 10px 0px 0px;

  transition:
    background-color 0.25s,
    box-shadow 0.15s;

  -webkit-transition: 
    background-color 0.25s,
    box-shadow 0.15s;

  -moz-transition: 
    background-color 0.25s,
    box-shadow 0.15s;

  -o-transition: 
    background-color 0.25s,
    box-shadow 0.15s;
}

.button:active 
{
  box-shadow: 0 8px 16px 0 rgba(0,0,0,0), 0 6px 20px 0 rgba(0,0,0,0);
}

.question-header
{
  font-family: "Lato", sans-serif;
  font-weight: 900;
  font-size: 19px;
  line-height: 1.4;
}

.question-text
{
  font-family: "Lato", sans-serif;
  font-size: 18px;
  line-height: 1.5;
  color: #00000000;
  margin-top: 5px;
  margin-bottom: 10px;
  margin-left: 5px;
  margin-right: 5px;

  transition: 
    color 1s 0.5s;

  -webkit-transition: 
    color 1s 0.5s; 

  -moz-transition: 
    color 1s 0.5s;

  -o-transition: 
    color 1s 0.5s;
}

.question-text-opacity
{
  color: #444444;
  opacity: 0;

  transition: 
    opacity 1s 0.5s;

  -webkit-transition: 
    opacity 1s 0.5s; 

  -moz-transition: 
    opacity 1s 0.5s;

  -o-transition: 
    opacity 1s 0.5s;
}

.question-header-link {
  text-decoration: underline;
  cursor: pointer;
}

.question-header-link:active {
  color: grey;
}

.results-header
{
  font-family: "Lato", sans-serif;
  font-weight: 900;
  line-height: 1.4;

  color: black;
  transition: 
    opacity 1s 0.5s;

  -webkit-transition: 
    opacity 1s 0.5s; 

  -moz-transition: 
    opacity 1s 0.5s;

  -o-transition: 
    opacity 1s 0.5s;

  opacity: 0;
}

.results-header-topline
{
  font-size: 20px;
}

.results-header-midline
{
  font-size: 30px;
}

.results-final
{
  font-size: 40px;
  text-shadow: 2px 2px #FF0000;
}

.results-img
{
  width: 200px;
  height: 200px;
  opacity: 0;

  transition: 
    opacity 1s 0.5s;

  -webkit-transition: 
    opacity 1s 0.5s; 

  -moz-transition: 
    opacity 1s 0.5s;

  -o-transition: 
    opacity 1s 0.5s;
}

.start-button 
{
  background-color: #e1726b;
  font-size: 140%;

  width: 75vw;
  max-width: 350px;
  padding: 20px 0px;
}

body.hasHover .start-button:hover 
{
  background-color: #db5148;
}

.start-button:active 
{
  background-color: #db5148;
}

.start-button-small
{
  font-size: 75%;
  width: 33vw;
  max-width: 150px;
  padding: 5px 0px;
}

.confirm-button 
{
  font-size: 100%;
  padding: 15px 10px;
  min-width: 100px;

  background-color: #5ae09a;
  position: fixed;
  top: 90vh;
  left: 50%;
  max-width: 200px;
  transform: translate(-50%, 0%);
  opacity: 0.0;

  transition:
    background-color 0.25s,
    box-shadow 0.15s,
    top .25s,
    opacity .25s;

  -webkit-transition: 
    background-color 0.25s,
    box-shadow 0.15s,
    top .25s,
    opacity .25s;

  -moz-transition: 
    background-color 0.25s,
    box-shadow 0.15s,
    top .25s,
    opacity .25s;

  -o-transition: 
    background-color 0.25s,
    box-shadow 0.15s,
    top .25s,
    opacity .25s;
}

body.hasHover .confirm-button:hover 
{
  background-color: #35b56f;
}

.confirm-button:active 
{
  background-color: #35b56f;
}

.confirm-button-left
{
  transform: translate(-115%, 0%);
}

.confirm-button-right
{
  transform: translate( 15%, 0%);
}

.character-holder
{
  max-width: 412px;
  max-height: 412px;
  width: 40vh;
  height: 40vh;
  position: fixed;
  bottom: 50%;
  left: 50%;
  transform: translate(-50%, 30% );

  transition: 
    transform .75s,
    bottom .75s;
}

@media screen and ( max-height: 740px ) 
{
    .character-holder 
    {
      bottom: 55%;
    }
}
/*
@media screen and ( min-aspect-ratio: 9/5 ) and ( max-width: 1500px ) 
{
    .character-holder 
    {
      bottom: 50%;
    }
}*/

.character-piece
{
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
}

.character-piece-img
{
  width: 100%;
  height: 100%;

  image-rendering: optimizeSpeed;
  image-rendering: -moz-crisp-edges;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: optimize-contrast;
  image-rendering: pixelated;
  -ms-interpolation-mode: nearest-neighbor;
}

.title-image
{
	width: 90%;
  max-width: 60vh;
  position: fixed;
  top: 4vh;
  left: 50%;
	transform: translate(-50%, 0% );

  image-rendering: optimizeSpeed;
  image-rendering: -moz-crisp-edges;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: optimize-contrast;
  image-rendering: pixelated;
  -ms-interpolation-mode: nearest-neighbor;

  transition: 
    transform 1s,
    top 1s;

  -webkit-transition: 
    transform 1s,
    top 1s;

  -moz-transition: 
    transform 1s,
    top 1s;

  -o-transition: 
    transform 1s,
    top 1s;
}

.title-share
{
  max-width: 20vh;

  image-rendering: optimizeSpeed;
  image-rendering: -moz-crisp-edges;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: optimize-contrast;
  image-rendering: pixelated;
  -ms-interpolation-mode: nearest-neighbor;
}

.button-container 
{
	padding: 0;
	text-align: center;
	position: fixed;
	height: 40%;
	width: 75vw;
	max-width: 800px;
	top: 73%;
  left: 50%;
  transform: translate(-50%, -100px);

-webkit-transition: top 500ms cubic-bezier(0.460, 0, 0.540, 1); 
-webkit-transition: top 500ms cubic-bezier(0.460, -0.585, 0.540, 1.600); 
   -moz-transition: top 500ms cubic-bezier(0.460, -0.585, 0.540, 1.600); 
     -o-transition: top 500ms cubic-bezier(0.460, -0.585, 0.540, 1.600); 
        transition: top 500ms cubic-bezier(0.460, -0.585, 0.540, 1.600);  
}

.question-page-container
{
	width: 85vw;
	max-width: 400px;
	position: fixed;
	top: 170%;
	left: 50%;
  transform: translate(-50%, -50%);

-webkit-transition: transform 500ms cubic-bezier(0.460, 0, 0.540, 1); 
-webkit-transition: transform 500ms cubic-bezier(0.460, -0.585, 0.540, 1.600); 
   -moz-transition: transform 500ms cubic-bezier(0.460, -0.585, 0.540, 1.600); 
     -o-transition: transform 500ms cubic-bezier(0.460, -0.585, 0.540, 1.600); 
        transition: transform 500ms cubic-bezier(0.460, -0.585, 0.540, 1.600); 

-webkit-transition-timing-function: cubic-bezier(0.460, 0, 0.540, 1); 
-webkit-transition-timing-function: cubic-bezier(0.460, -0.585, 0.540, 1.600); 
   -moz-transition-timing-function: cubic-bezier(0.460, -0.585, 0.540, 1.600); 
     -o-transition-timing-function: cubic-bezier(0.460, -0.585, 0.540, 1.600); 
        transition-timing-function: cubic-bezier(0.460, -0.585, 0.540, 1.600); 

  transition: 
    top .33s,
    left .33s,
    transform 0.45s;

  -webkit-transition: 
    top .33s,
    left .33s,
    transform 0.45s;

  -moz-transition: 
    top .33s,
    left .33s,
    transform 0.45s;

  -o-transition: 
    top .33s,
    left .33s,
    transform 0.45s;
}

.question-page
{
  width: calc( 100% - 20px );
  height: calc( 100% - 20px );
  transform: scale( 0.7, 1.3 );

  font-size: 90%;
  font-family: "Lato", sans-serif;
  color: black;
  background-color: white;

  padding: 10px;
  border: none;
  text-decoration: none;
  display: inline-block;
  border-radius: 4px;
  box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
}

.question-page-animate
{
   -webkit-transition: all 500ms cubic-bezier(0.460, 0, 0.540, 1); 
-webkit-transition: all 500ms cubic-bezier(0.460, -0.585, 0.540, 1.600); 
   -moz-transition: all 500ms cubic-bezier(0.460, -0.585, 0.540, 1.600); 
     -o-transition: all 500ms cubic-bezier(0.460, -0.585, 0.540, 1.600); 
        transition: all 500ms cubic-bezier(0.460, -0.585, 0.540, 1.600); 

-webkit-transition-timing-function: cubic-bezier(0.460, 0, 0.540, 1); 
-webkit-transition-timing-function: cubic-bezier(0.460, -0.585, 0.540, 1.600); 
   -moz-transition-timing-function: cubic-bezier(0.460, -0.585, 0.540, 1.600); 
     -o-transition-timing-function: cubic-bezier(0.460, -0.585, 0.540, 1.600); 
        transition-timing-function: cubic-bezier(0.460, -0.585, 0.540, 1.600); 

  transition: 
    transform 0.45s;

  -webkit-transition: 
    transform 0.45s;

  -moz-transition: 
    transform 0.45s;

  -o-transition: 
    transform 0.45s;
}

.disclaimer-page
{
  z-index: 100;
  width: 90%;
  max-width: 500px;
  position: fixed;
  top: 170%;
  left: 50%;
  transform: translate( -50%, -50% );

  font-size: 90%;
  font-family: "Lato", sans-serif;
  color: black;
  background-color: white;

  padding: 20px;
  border: none;
  text-decoration: none;
  display: inline-block;
  border-radius: 4px;
  box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);

  transition: 
    transform .25s,
    top .25s,
    left .25s;

  -webkit-transition: 
    transform .25s,
    top .25s,
    left .25s;

  -moz-transition: 
    transform .25s,
    top .25s,
    left .25s;

  -o-transition: 
    transform .25s,
    top .25s,
    left .25s;
}

.disclaimer-header
{
  font-family: "Lato", sans-serif;
  font-weight: 900;
  font-size: 19px;
  line-height: 1.4;
}

.disclaimer-text
{
  font-family: "Lato", sans-serif;
  font-size: 18px;
  line-height: 1.5;
  color: #444444;
  margin-top: 5px;
  margin-bottom: 15px;
}

.disclaimer-text-small
{
  font-family: "Lato", sans-serif;
  font-size: 14px;
  text-align: justify;
  line-height: 1.5;
  color: #444444;
  margin-top: 5px;
  margin-bottom: 15px;
}

.disclaimer-bg
{
  z-index: 99;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0px;
  left: 0px;

  background-color: #00000000;

  transition: 
    background-color .5s;

  -webkit-transition: 
    background-color .5s;

  -moz-transition: 
    background-color .5s;

  -o-transition: 
    background-color .5s;
}

.center-subpage
{
 	text-align: center;
	font-size: 120%;
  position: relative;
}

.state-map
{
	left: 50%;
	width: 40vmin
  max-width: 100%;
	text-align: center;
	margin: 10px;
}

.dropdown {
  appearance: menulist-button;
  -webkit-appearance: menulist-button;
  font-family: "Lato", sans-serif;
  text-align: center;
  font-size: 20px;
  max-width: 100%;
  border: 1px solid #5ae09a;
  border-radius: 0px;
  text-align-last: center;
  outline-style: none;
}

.dropdown-address {
  border: 1px solid #DDD;

  font-size: 120%;
  font-weight: 600;

  /*width: 90%;*/
  color: black;
  line-height: 1.8;
  height: 2em;
  opacity: 0.0;

  transition:
    opacity .25s;

  -webkit-transition: 
    opacity .25s;

  -moz-transition: 
    opacity .25s;

  -o-transition: 
    opacity .25s;
}

.scroll-page
{
  height: 100%;
  width: 100%;
  max-height: 230px;
  overflow-y: scroll;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}

.hidden-scrollbar::-webkit-scrollbar
{
   display: none;
}

@media screen and ( max-height: 475px ) 
{
  .scroll-page
  {
    max-height: 220px;
  }
}

@media screen and ( max-height: 475px ) 
{
  .scroll-page-short
  {
    max-height: 130px;
  }
}

.option-page
{
  padding: 10px 0px 0px 0px;
  width: 100%;
  height: 100%;
}

.option-box 
{
  position: relative;

  width: 100%;
  min-height: 50px;
  border-top: 0.25px solid #5ae09a; 
  background-color: #dcfff3;
  cursor: pointer;

  opacity: 0.0;

  transition: 
    background-color .25s,
    opacity 0.75s;

  -webkit-transition: 
    background-color .25s,
    opacity 0.75s;

  -moz-transition: 
    background-color .25s,
    opacity 0.75s;

  -o-transition: 
    background-color .25s,
    opacity 0.75s;
}

body.hasHover .option-box:hover
{
  background-color: white; 
}

.option-box-select
{
  background-color: #5ae09a;
}

body.hasHover .option-box-select:hover
{
  background-color: #5ae09a;
}

.option-dot
{
  border: 1px solid #5ae09a;
  border-radius: 50%;

  height: 20px;
  width: 20px;

  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
}

.option-check
{
  height: 20px;
  width: 20px;

  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);

  opacity: 0;
}

.option-text
{
  width: calc(100% - 60px);
  height: 100%;
  padding-left: 50px;
  padding-top: 11px;
  padding-bottom: 11px;

  font-family: "Lato", sans-serif;
  font-weight: 900;
  font-size: 19px;
  line-height: 1.4;
}

.customize-page-container
{
  width: 95vw;
  max-width: 315px;
}

.customize-page
{
  width: 100%;
  padding: 0px;
  border-radius: 0px;
  background-color: rgb(224,255,237);
}

.part-page
{
  padding: 10px 0px 0px 2px;
  width: 100%;
  height: 100%;
}

.tab-container
{
    display:table;
    width:100%;
    table-layout: fixed;
}

.part-tab 
{
  position: relative;
  height: 40px;
  /*background-color: #e1f6ae;*/
  cursor: pointer;

  display: table-cell;

  transition: 
    background-color .25s,
    opacity 0.75s;

  -webkit-transition: 
    background-color .25s,
    opacity 0.75s;

  -moz-transition: 
    background-color .25s,
    opacity 0.75s;

  -o-transition: 
    background-color .25s,
    opacity 0.75s;
}

body.hasHover .part-tab:hover
{
  background-color: white; 
}

.part-tab-faded
{
  background-color: #03ae7821;
}

.part-tab-icon
{
  max-width: 40px;
  max-height: 40px;
  width: 70%;
  height: 70%;

  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate( -50%, -50% );
}

.scroll-table
{
  margin-bottom: 15px;
  width: 100%;
  display:table;
  table-layout: fixed;
}

.part-box-container
{
  padding-bottom: 25%;
  position: relative;
}

.part-box 
{
  position: absolute;

  width: calc( 100% - 10px );
  height: calc( 100% - 10px );
  margin: 5px;

  border-radius: 10px;

  cursor: pointer;

  overflow: hidden;

  opacity: 1.0;

  transition: 
    background-color .25s,
    opacity 0.75s;

  -webkit-transition: 
    background-color .25s,
    opacity 0.75s;

  -moz-transition: 
    background-color .25s,
    opacity 0.75s;

  -o-transition: 
    background-color .25s,
    opacity 0.75s;
}

.part-empty
{

}

.part-category-header
{
  background-color: white;
  font-size: 110%;
  text-align: center;
  pointer-events: none;
}

body.hasHover .part-box:hover
{
  background-color: white; 
}

.part-box-select
{
  /*border: solid 1px #000; */
  background-color: #b0ffd0;
}

body.hasHover .part-box-select:hover
{
  /*border: solid 1px #000; */
  background-color: #b0ffd0;
}

.part-image-container
{
  position:absolute;
  width: 100%;
  height: 100%;
}

.part-image
{
  /*These are changed dynamically*/
  width: 20%;
  bottom: 25px;
  left: 30%;
  /*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/

  position: absolute;
  text-align: center;
  display: flex;
  align-items: center;

  -ms-interpolation-mode: nearest-neighbor;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: -moz-crisp-edges;
  image-rendering: -o-pixelated;
  image-rendering: pixelated;

  pointer-events: none;
}

.part-text
{
  width: calc(100% - 60px);
  height: 100%;
  padding-left: 50px;
  padding-top: 11px;
  padding-bottom: 11px;

  font-family: "Lato", sans-serif;
  font-weight: 900;
  font-size: 19px;
  line-height: 1.4;
}

.part-gradient
{
  width: 100%;
  height: 40px;
  position: absolute;

  pointer-events: none;

    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+0,ffffff+100&0+0,1+93 */
  background: -moz-linear-gradient(top, rgba(224,255,237,0) 0%, rgba(224,255,237,1) 93%, rgba(224,255,237,1) 100%); /* FF3.6-15 */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(224,255,237,0)), color-stop(93%,rgba(224,255,237,1)), color-stop(100%,rgba(224,255,237,1))); /* Chrome4-9,Safari4-5 */
  background: -webkit-linear-gradient(top, rgba(224,255,237,0) 0%,rgba(224,255,237,1) 93%,rgba(224,255,237,1) 100%); /* Chrome10-25,Safari5.1-6 */
  background: -o-linear-gradient(top, rgba(224,255,237,0) 0%,rgba(224,255,237,1) 93%,rgba(224,255,237,1) 100%); /* Opera 11.10-11.50 */
  background: -ms-linear-gradient(top, rgba(224,255,237,0) 0%,rgba(224,255,237,1) 93%,rgba(224,255,237,1) 100%); /* IE10 preview */
  background: linear-gradient(to bottom, rgba(224,255,237,0) 0%,rgba(224,255,237,1) 93%,rgba(224,255,237,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=0 ); /* IE6-9 */
}

.scroll-max
{
  height: 230px;
}

.scroll-max-with-colorbar
{
  height: 200px;
}

.scroll-max-share
{
  height: 40vh;
  max-height: 400px;
}

@media screen and ( max-height: 475px ) 
{
  .scroll-max
  {
    height: 160px;
  }

  .scroll-max-with-colorbar
  {
    height: 130px;
  }
}


.color-bar
{
  position: relative;
  width: 100%;
  height: 30px;
  text-align: center;
}

.color-container
{
  height: 26px;
  width: 26px;
  margin-top: 0px;
  margin-left: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  display: none;
  border: solid 2px #e0ffed;
  border-radius: 4px;
  cursor: pointer;
}

body.hasHover .color-dot:hover
{
  height: 28px;
  width: 28px;
  border: solid 1px #AAA; 
  margin-top: 0px;
  margin-left: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
}

.color-dot:active
{
  height: 24px !important;
  width: 24px !important;
  border: solid 3px #AAA !important;
  margin-top: 0px;
  margin-left: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
}

.color-selected
{
  height: 26px;
  width: 26px;
  border: solid 2px #000;
  margin-top: 0px;
  margin-left: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  /*box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);*/
}

.color-arrow
{
  border: none !important;
  opacity: 0;
  display: inline-block;
  cursor: default;
  margin-bottom: 2px;
}

.color-arrow-visible
{
  opacity: 1;
  cursor: pointer;
}

body.hasHover .color-arrow:hover
{
  height: 22px;
  width: 22px;
  margin: 4px 2px;
}

.color-arrow:active
{
  height: 18px;
  width: 18px;
  margin: 6px;
}

.color-visible
{
  display: inline-block;
  cursor: pointer;
}

.share-page-container
{
  width: 45vh;
  max-width: 512px;
  top: 200%; 
}

.share-page
{
  border-radius: 0px;
}

.share-image
{
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
}

.share-button
{
  margin: 0px;
  margin-bottom: 20px;

  position: relative;
  width: 75%;
  height: 50px;

  background-color: #75b1e0;
  border-radius: 20px;
  box-shadow: 0 8px 5px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
}

.share-button-middle
{
  margin-right: 30px;
  margin-left: 30px;
}

@media screen and ( max-width: 340px ) 
{
    .share-button-middle
    {
      margin-right: 15px;
      margin-left: 15px;
    }
}

body.hasHover .share-button:hover 
{
  background-color: #466a86;
}

.share-button:active
{
  background-color: #466a86;
}

.share-button-wide
{
  margin: 0px;
  margin-bottom: 10px;

  position: relative;
  width: calc( 45vh - 95px );
  max-width: calc( 512px - 95px );

  background-color: #5ae09a;
  border-radius: 20px;
  box-shadow: 0 8px 5px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);

  padding: 20px;
  line-height: 1;

  font-size: 120%;
}

body.hasHover .share-button-wide:hover 
{
  background-color: #35b56f;
}

.share-button-wide:active
{
  background-color: #35b56f;
}

.share-button-remind
{
  background-color: #db73af;
}

body.hasHover .share-button-remind:hover 
{
  background-color: #ad6e97;
}

.share-button-remind:active
{
  background-color: #ad6e97;
}

.share-button-mainsite
{
  background-color: #6160c5;
}

body.hasHover .share-button-mainsite:hover 
{
  background-color: #393974;
}

.share-button-mainsite:active
{
  background-color: #393974;
}

.share-icon
{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate( -50%, -50% );
}

.facebook-icon
{
  height: 60%;
}

.twitter-icon
{
  height: 100%;
}

.download-icon
{
  height: 70%;
}

.share-spinner
{
  position: fixed;
  top: 50%;
  left: 50%;
  
  animation: share-spinning 1s infinite linear;
  -webkit-animation: share-spinning 1s infinite linear;

  margin: 0px;
}

.share-loading-text
{
  font-family: "Lato", sans-serif;
  text-align: center;
  font-size: 120%;
  position: relative;
  color: #62d1a9;
  font-weight: 900;
  padding: 20px;
}

.share-image-container
{
  width: 100%;
  padding-bottom: calc( 100% - 45px );
  background-color: #f7f7f7;
}

/*.color-arrow-left, .color-arrow-right
{
  bottom: 2.5px;
  height: 20px;
  width: 20px;
  position: fixed;
}

.color-arrow-left
{
  left: 2%;
}

.color-arrow-right
{
  right: 2%;
}*/



.disclaimer-link-holder
{
  margin: 10px 0px 0px 0px;
  font-size: 10px;
  padding: 0px;

  background-color: white;
  position: fixed;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 0%);

  text-align: center;

  border-radius: 4px;
  cursor: pointer;
  box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);

  transition: 
    opacity 0.5s;

  -webkit-transition: 
    opacity 0.5s;

  -moz-transition: 
    opacity 0.5s;

  -o-transition: 
    opacity 0.5s;
}

.disclaimer-link {
  text-decoration: underline;
  color: grey; 
  font-size: 10px;
  cursor: pointer;
  margin: -2px 6px 0px 6px;
}

.disclaimer-link:active {
  color: black;
}

.faded-text {
  color: grey;
}

.id-textbox {
  text-transform:uppercase;
}

.id-scrollbox {
  width: 100%;
  max-height: 195px;
  overflow-y: scroll;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}

@media screen and ( max-height: 475px ) 
{
  .id-scrollbox {
    max-height: 150px;
  }
}

.id-subtext {
  padding-bottom: 10px;
  padding-left: 5%;
  width: 90%;
  color: grey;
  font-size: 75%;
  text-align: justify;
  opacity: 0.0;

  transition:
    opacity .25s;

  -webkit-transition: 
    opacity .25s;

  -moz-transition: 
    opacity .25s;

  -o-transition: 
    opacity .25s;
}

.dropdown-date {
  margin: 2px;
  font-size: 110%;
  width: 150px;
  height: 2.0em;
  border-radius: 0px;
  border: solid 0.5px #AAA;
  font-weight: 900;
  opacity: 0.0;

  transition:
    opacity .25s;

  -webkit-transition: 
    opacity .25s;

  -moz-transition: 
    opacity .25s;

  -o-transition: 
    opacity .25s;
}

.dropdown-date-mobile
{
  margin: 1px;
  margin-bottom: 10px;
  font-size: 100%;
  width: 130px;
}

.dropdown-day {
  margin: 1px;
  width: 55px;
  font-size: 100%;
}

.dropdown-year {
  margin: 1px;
  width: 75px;
  font-size: 100%;
}

.textbox-day {
  width: 40px;
  margin: 2px;
  font-size: 110%;
}

.textbox-year
{
  width: 60px;
  margin: 2px;
  font-size: 110%; 
}

.button-final
{
  font-family: "Lato", sans-serif;
  font-weight: 900;
  color: white;

  outline: none;
  border: none;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  border-radius: 200px;
  cursor: pointer;

  width: 150px;
  height: 150px;
  line-height: 150px;

  position: fixed;
  display: block;
  left: 50%;
  transform: translate( -50%, 100px );

  bottom: -25%;
  opacity: 0;
  
  background-color: #e1726b;
  font-size: 150%;

  box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);

  margin: 10px 10px 0px 0px;

  transition:
    bottom 0.5s,
    opacity 0.15s,
    background-color 0.25s,
    box-shadow 0.15s;

  -webkit-transition: 
    bottom 0.5s,
    opacity 0.15s,
    background-color 0.25s,
    box-shadow 0.15s;

  -moz-transition: 
    bottom 0.5s,
    opacity 0.15s,
    background-color 0.25s,
    box-shadow 0.15s;

  -o-transition: 
    bottom 0.5s,
    opacity 0.15s,
    background-color 0.25s,
    box-shadow 0.15s;
}

body.hasHover .button-final:hover 
{
  background-color: #db5148;
  /*box-shadow: 0 8px 16px 0 rgba(0,0,0,0), 0 6px 20px 0 rgba(0,0,0,0);*/
}

.button-final:active 
{
  background-color: #db5148;
  box-shadow: 0 8px 16px 0 rgba(0,0,0,0), 0 6px 20px 0 rgba(0,0,0,0);
}

.pdf-icon
{
  width: 90px;
  margin: 10px;
}

/* ANIMATIONS */
.anim-shift-character 
{
  transform: translate( -50%, -30% );
}

@media screen and ( max-height: 475px ) 
{
  .anim-shift-character 
  {
    transform: translate( -50%, -28% );
  }
}

.anim-shift-character-customize
{
  transform: translate( -50%, 5px );
}

@media screen and ( max-height: 600px ) 
{
  .anim-shift-character-customize
  {
    transform: translate( -50%, -5% );
  }
}


.anim-shift-character-postcustomize
{
  transform: translate( -50%, 0px );
}

.anim-shift-character-center
{
  /*transform: translate( -50%, 0px );*/
}

.anim-offscreen-up 
{
  top: -70%;
}

.anim-onscreen-disclaimer 
{
  top: 44%;
}

.anim-offscreen-down
{
  top: 170%;
}

.anim-offscreen-down-far
{
  top: 200%;
}

.anim-onscreen-page-center 
{
  top: 55%;
}

.anim-onscreen-page-highish 
{
  top: 45%;
}

.anim-onscreen-page-highishish
{
  top: 42%;
}

@media screen and ( min-height: 670px )
{
    .anim-onscreen-page-highishish
    {
      top: 55%;
    }
}

.anim-onscreen-page-low
{
  top: 65%;
}

.anim-onscreen-page-high
{
  top: 0px;
  transform: translate( -50%, 0% );
}

@media screen and ( min-height: 1024px ) and ( max-height: 1099px ) 
{
    .anim-onscreen-page-high
    {
      top: 5%;
    }
}

@media screen and ( min-height: 1100px ) 
{
    .anim-onscreen-page-high
    {
      top: 10%;
    }
}

.anim-offscreen-down-bottom
{
  bottom: -70%;
}

.anim-page-unstretch
{
  transform: scale( 1, 1 );
}

.anim-page-stretch
{
  transform: scale( 0.5, 1.5 );
}

.anim-fade-in-bg 
{
  background-color: #001122AA; 
}

.anim-fade-out-bg 
{
  background-color: #00000000; 
}

.anim-hide-confirm
{
  top: 75vh;
  opacity: 0.0;
}

.anim-show-confirm
{
  top: 100%;
  opacity: 1.0;
}

@media screen and ( max-height: 475px ) 
{
  .anim-show-confirm
  {
    top: 98%;
  }
}

.anim-show-confirm-low
{
  top: 60px;
  opacity: 1.0;
}

.anim-show-button-final
{
  bottom: 25%;
  opacity: 1.0;
}

.anim-hide-button-final
{
  bottom: -25%;
  opacity: 0.0;
}

.anim-show-text
{
  color: #444444;
}

.anim-show
{
  opacity: 1.0;
}

.anim-hide
{
  opacity: 0.0;
}

@keyframes infinite-spinning {
  from {
    transform: translate(0px, -50%) rotate(0deg);
  }
  to {
    transform: translate(0px, -50%) rotate(360deg);
  }
}

@keyframes loader-spinning {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes share-spinning {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}