* {
    max-height: 999999px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box
}

@font-face {
    font-family: 'FontAwesome';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/fa-solid-900.eot');
    src: url('../../fonts/fa-solid-900.eot?#iefix') format('embedded-opentype'),
    url('../../fonts/fa-solid-900.woff2') format('woff2'),
    url('../../fonts/fa-solid-900.woff') format('woff'),
    url('../../fonts/fa-solid-900.ttf') format('truetype'),
    url('../../fonts/fa-solid-900.svg#fontawesome') format('svg')
}

@font-face {
    font-family: 'Bebas Neue';
    font-style: normal;
    font-weight: 400;
    src: url('../../fonts/BebasNeue-Regular.ttf') format('truetype')
}

@keyframes fadeout {
    from { opacity: 1; }
    to   { opacity: 0; }
}

/* Firefox < 16 */
@-moz-keyframes fadeout {
    from { opacity: 1; }
    to   { opacity: 0; }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadeout {
    from { opacity: 1; }
    to   { opacity: 0; }
}

/* Internet Explorer */
@-ms-keyframes fadeout {
    from { opacity: 1; }
    to   { opacity: 0; }
}

/* Opera < 12.1 */
@-o-keyframes fadeout {
    from { opacity: 1; }
    to   { opacity: 0; }
}

@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Firefox < 16 */
@-moz-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Internet Explorer */
@-ms-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Opera < 12.1 */
@-o-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(100,14,14, 1);
  }
  70% {
      -webkit-box-shadow: 0 0 0 100px rgba(100,14,14, 0);
  }
  100% {
      -webkit-box-shadow: 0 0 0 0 rgba(100,14,14, 0);
  }
}
@keyframes pulse {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(100,14,14, 1);
    box-shadow: 0 0 0 0 rgba(100,14,14, 1);
  }
  70% {
      -moz-box-shadow: 0 0 0 100px rgba(100,14,14, 0);
      box-shadow: 0 0 0 100px rgba(100,14,14, 0);
  }
  100% {
      -moz-box-shadow: 0 0 0 0 rgba(100,14,14, 0);
      box-shadow: 0 0 0 0 rgba(100,14,14, 0);
  }
}

body {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 20px;
    font-weight: 300;
    text-rendering: auto;
    color: #eee;
    padding: 10px;
    margin: 0;
    line-height: 1.5em;
    cursor: default;
    background: #191919;
    overflow-x: hidden;
    overflow-y: hidden;
}

body::-webkit-scrollbar {
    width: 13px
}

body::-webkit-scrollbar-track {
    background-color: #020202
}

body::-webkit-scrollbar-thumb {
    background-color: #ff4242;
    cursor: pointer
}

body::-webkit-scrollbar-thumb:hover {
    background-color: #ff4242;
    cursor: pointer;
    box-shadow: 0 -10px 40px #ff4242, 0 10px 40px #ff4242
}

h1 {
    width: 100%;
    text-align: center;
    line-height: 1.3em;
    font-family: 'Bebas Neue';
    font-weight: 400;
    letter-spacing: 1.2px;
    font-size: 40px;
    line-height: 1.1em;
    margin: 0.5em 0 0.5em 0;
    text-shadow: 1px 1px 0px black;
}

a {
    text-decoration: none;
    color: #4d92fe;
}

h2 {
    width: 100%;
    text-align: center;
    font-family: 'Open Sans';
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4em;
    margin: 0 auto 1.5em auto;
    text-shadow: 1px 1px 0px black;
}

.OnlyDesktop {
    display: none !important
}

.Hidden {
    display:none !important
}

.Center {
    text-align: center;
}

#Navigation {
    position: fixed;
    top: 0px;
    left: 0px;
    float: left;
    z-index: 99999;
    height: 42px;
    width: 100%;
    background-color: #111111;
    outline: solid 1px black;
    box-shadow: 0 2px 20px black;
}

#HeaderLogo {
    width: 49px;
    float: left;
    margin: 0;
    padding-left: 49px;
    height: 42px;
    background-color: #222222;
    background-image: url(../../icons/MakayHeaderLogo.webp);
    background-size: 189px 42px;
    background-position: left center;
    background-repeat: no-repeat;
    cursor: pointer;
    outline: solid 1px black;
    transition: 0.3s;
    image-rendering: crisp-edges;
}

#HeaderLogo:hover {
    background-color: #ff4242;
    box-shadow: 0 0 30px #FF4242, inset 0 0 10px #ffcccc
}

#HeaderLogo img {
    height: 42px;
    border-left: solid 1px black;
    background-color: #222222;
    image-rendering: crisp-edges;
}

#Navigation .HeaderButton {
    display: none;
    float: right;
    border: none;
    cursor: pointer;
    font-family: 'Roboto';
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #aaa;
    background-color: #222;
    outline: solid 1px black;
    padding: 0 .7em;
    height: 28px;
    line-height: 28px;
    margin: 7px 7px 0 0
}

button, input, select {
    display: inline-block;
    border: none;
    cursor: pointer;
    font-family: 'Roboto';
    font-size: 20px;
    font-weight: 700;
    height: 48px;
    line-height: 48px;
    padding: 0 10px;
    color: white;
    border-radius: 0;
    background-color: rgba(0,0,0,0.8);
    -webkit-box-shadow: 0 3px 15px black;
    -moz-box-shadow: 0 3px 15px black;
    box-shadow: 0 3px 15px black;
    outline: solid 1px black;
    margin: 0;
    letter-spacing: 0.5px;
    transition: 0.3s;
    -moz-appearance: none;
    -ms-appearance: none;
    -webkit-appearance: none;
    appearance: none
    
}

#passwordLength {
    width: calc((100% - 20px) / 3);
    margin: 0 10px 0 0;
    font-size: 16px;
    background-color: #4d92fe;
    color: white;
    text-align: center;
}

#passwordField {
    width: 100%;
    background-color: white;
    color: #333333;
    text-align: center;
    cursor: text;
}

#generateButton {
    width: calc((100% - 20px) / 3);
    margin: 0 10px 0 0;
    font-size: 16px;
    background-color: forestgreen;
    color: white;
    text-align: center;
}

#copyButton {
    width: calc((100% - 20px) / 3);
    margin: 0;
    font-size: 16px;
    background-color: orange;
    color: white;
    text-align: center;
}

.ClearBoth1em {
    width: 100%;
    clear: both;
    height: 1em;
}

#Navigation .HeaderButton:hover {
    color: #EFEFEF;
    -webkit-box-shadow: inset 0 0 20px rgba(255,255,255,0.3);
    -moz-box-shadow: inset 0 0 20px rgba(255,255,255,0.3);
    box-shadow: inset 0 0 20px rgba(255,255,255,0.3)
}

#StepIntro {
    display: table;
    position: relative;
    float: left;
    width: 100%;
    height: 100vh;
    padding: 62px 0 0 0;
    border-bottom: solid 1px black;
}

#StepIntro > .Content {
    display: table-cell;
    vertical-align: top;
    width: 100%;
    float: left;
    text-align: center;
    line-height: 1em;
    padding: 0;
}

#StepIntro .Content p {
    font-size: 0.8em;
    font-weight: 300;
    text-align: left;
}

#StepIntro .Content p a {
    font-weight: 400;
    color: #4d92fe;
    text-decoration: none;
}

input:focus,
select:focus,
textarea:focus,
button:focus {
    outline: solid 1px black;
    border: 0;
}


#copyRight {
    position: fixed;
    bottom: 15px;
    left: 15px;
    font-size: 0.8em;
    font-weight: 600;
    letter-spacing: 1px;
    color: white;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.8);
}

#copyRight a {
    color: white;
    text-decoration: none;
}