﻿html {
    overflow-y: scroll;

}

html, body {
    background-color: #202020;
    margin: 0 !important;
    padding: 0 !important;
    width: 100%;
    height: 100%;
    min-width: 320px;
    font-family: 'Open Sans', sans-serif;
    /*font-family: 'Open Sans', 'Helvetica Neue', Arial, sans-serif;*/
    /*font-family: 'Merriweather', 'Helvetica Neue', Arial, sans-serif;*/
}

/*.wrapperUser input[type="text"] {
    position: relative;
}

/* This is for the placeholder */
/*.wrapperUser:before {
    font-family: 'FontAwesome';
    font-size: 20px;
    color: white;
    position: relative;
    left: 20px;
    content: "\f007";
}*/

/*.wrapperPassword input[type="password"] {
    position: relative;
}*/

/* This is for the placeholder */
/*.wrapperPassword:before {
    font-family: 'FontAwesome';
    font-size: 20px;
    color: white;
    position: relative;
    left: 20px;
    content: "\f084";
}



.emmortalise-centre-vertically {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}*/

.emmortalise-shadow {
    /* Outer shadow */
    /*-webkit-box-shadow: 4px 3px 5px -1px rgba(0,0,0,0.75);
            -moz-box-shadow: 4px 3px 5px -1px rgba(0,0,0,0.75);
            box-shadow: 4px 3px 5px -1px rgba(0,0,0,0.75);*/
    /* Inner shadow */
    /*-webkit-box-shadow: inset 4px 3px 5px -1px rgba(0,0,0,0.75);
            -moz-box-shadow: inset 4px 3px 5px -1px rgba(0,0,0,0.75);
            box-shadow: inset 4px 3px 5px -1px rgba(0,0,0,0.75);*/
    /*Both inner and outer shadow*/
    -webkit-box-shadow: 4px 3px 5px -1px rgba(0,0,0,0.75), inset 4px 3px 5px -1px rgba(0,0,0,0.75);
    -moz-box-shadow: 4px 3px 5px -1px rgba(0,0,0,0.75), inset 4px 3px 5px -1px rgba(0,0,0,0.75);
    box-shadow: 4px 3px 5px -1px rgba(0,0,0,0.75), inset 4px 3px 5px -1px rgba(0,0,0,0.75);
}

.emmortalise-container {
    display: inline-block;
    cursor: pointer;
}

.emmortalise-bar1, .emmortalise-bar2, .emmortalise-bar3 {
    width: 35px;
    height: 5px;
    background-color: lightgray; /*Menu button colour#333;*/
    margin: 6px 0;
    transition: 0.4s;
}

/* Rotate first bar */
.emmortalise-change .emmortalise-bar1 {
    -webkit-transform: rotate(-45deg) translate(-9px, 6px);
    transform: rotate(-45deg) translate(-9px, 6px);
}

/* Fade out the second bar */
.emmortalise-change .emmortalise-bar2 {
    opacity: 0;
}

/* Rotate last bar */
.emmortalise-change .emmortalise-bar3 {
    -webkit-transform: rotate(45deg) translate(-8px, -8px);
    transform: rotate(45deg) translate(-8px, -8px);
}

/* Menu highlight colour */
.emmortalise-highlight {
    /*background-color: rgba(61, 61, 61, 0.8);*/
    color: whitesmoke !important;
    text-decoration: none !important;
}

.emmortalise-highlight:hover {
    /*background-color: rgba(61, 61, 61, 0.8);*/
    color: gray !important;
    text-decoration: none !important;
}

.emmortalise-highlight-text {
    color: whitesmoke !important;
    text-decoration: none !important;
    cursor: pointer;
}

.emmortalise-highlight-text:hover {
    color: gray !important;
    text-decoration: none !important;
}

/* Outer shadow */
.emmortalise-image-shadow {
    /*-webkit-box-shadow: inset 0px 1px 20px 15px rgba(250,250,250,1);
            -moz-box-shadow: inset 0px 1px 20px 15px rgba(250,250,250,1);
            box-shadow: inset 0px 1px 20px 15px rgba(250,250,250,1);*/
    -webkit-box-shadow: inset 0px 1px 20px 15px rgba(0,0,0,1);
    -moz-box-shadow: inset 0px 1px 20px 15px rgba(0,0,0,1);
    box-shadow: inset 0px 1px 20px 15px rgba(0,0,0,1);
}

.emmortalise-outer-shadow {
    -webkit-box-shadow: 4px 3px 5px -1px rgba(0,0,0,0.75);
    -moz-box-shadow: 4px 3px 5px -1px rgba(0,0,0,0.75);
    box-shadow: 4px 3px 5px -1px rgba(0,0,0,0.75);
}


/* Top bar login input */
.emmortalise-input-topbar {
    background-color: #6b6b6b;
    border: none;
    padding: 3px 5px 3px 15px;
    border-radius: 5px;
    font-family: monospace;
    color: white;
    font-family: 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
}

.emmortalise-input-topbar::-webkit-input-placeholder { /* WebKit, Blink, Edge */
    color: lightgray;
}

.emmortalise-input-topbar:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
    color: lightgray;
    opacity: 1;
}

.emmortalise-input-topbar::-moz-placeholder { /* Mozilla Firefox 19+ */
    color: lightgray;
    opacity: 1;
}

.emmortalise-input-topbar:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: lightgray;
}

.emmortalise-input-topbar::-ms-input-placeholder { /* Microsoft Edge */
    color: lightgray;
}

.emmortalise-input-topbar::placeholder { /* Most modern browsers support this now. */
    color: lightgray;
}