body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 1.2vw;
}

.green-button {
    background: #ffffff; /* Old browsers */
    background: -moz-linear-gradient(top, #ffffff 0%, #f1f1f1 50%, #e1e1e1 51%, #f6f6f6 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, #ffffff 0%,#f1f1f1 50%,#e1e1e1 51%,#f6f6f6 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #ffffff 0%,#f1f1f1 50%,#e1e1e1 51%,#f6f6f6 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#f6f6f6',GradientType=0 ); /* IE6-9 */
    cursor: pointer;
    border: 1px #e1e1e1 solid;
    padding: 0.5em;
    /*box-shadow: inset 0 0 0.15em #555555;*/
    outline: none;
}
.green-button:hover {
    background: #b7deed; /* Old browsers */
    background: -moz-linear-gradient(top, #b7deed 0%, #71ceef 50%, #21b4e2 51%, #b7deed 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, #b7deed 0%,#71ceef 50%,#21b4e2 51%,#b7deed 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #b7deed 0%,#71ceef 50%,#21b4e2 51%,#b7deed 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b7deed', endColorstr='#b7deed',GradientType=0 ); /* IE6-9 */
}

div.pin-block-window {
    display: table;
    z-index: 100;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("/styles/images/pin_image.jpg");
    background-size: cover;
    background-position: center;
}

div.pin-block-window > div {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
    background-color: rgba(0,0,0,0.5);
    position: relative;
}

div.user-icon-image {

}

div.user-icon-text {
    font-size: 6em;
    background-color: #999999;
    border: 2pt #777777 solid;
    border-radius: 3em;
    color: #FFFFFF;
    line-height: 1.5em;
    width: 1.5em;
    margin: 0 auto;
}

div.user-icon-text > p {
    margin: 0;
    padding: 0;
}

div.user-name {
    font-size: 2.5em;
    padding: 0.25em 0;
    color: #FFFFFF;
}

div.user-pin {
    height: 3em;
}

div.user-pin > input {
    width: 10em;
    padding: 0.5em;
    border: 1pt rgba(255,255,255,0.75) solid;
    background-color: rgba(255,255,255,0.25);
    color: #FFFFFF;
    outline: none;
    font-size: 1.25em;
    text-align: center;
}

div.pin-no-remember {
    color: #eeeeee;
    margin-top: 1em;
}
div.pin-no-remember a:hover {
    text-decoration: underline;
    cursor: pointer;
}
div.exit-from-pin-window {
    position: absolute;
    top: 1em;
    right: 1em;
    color: #dddddd;
    padding: 0.5em 1em;
    cursor: pointer;
    background-color: transparent;
    border: 1pt transparent solid;
    transition: background-color 0.25s;
    -o-transition: background-color 0.25s;
    -moz-transition: background-color 0.25s;
    -webkit-transition: background-color 0.25s;
}
div.exit-from-pin-window:hover {
    background-color: rgba(255,255,255,0.5);
    color: #FFFFFF;
    border-color: rgba(255,255,255,0.75);
}


/* menu box styles*/
.menu-header {
    position: fixed;
    left: 0;
    top: 0;
    width: 3em;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    z-index: 16;
}

.menu-header > div {
    width: 2.5em;
    height: 2.5em;
    border: 1px #FFFFFF solid;
    border-radius: 1.25em;
    box-sizing: border-box;
    margin: 0.5em 0.25em;
    cursor: pointer;
    background-position: center;
    background-size: 2em 2em;
    background-repeat: no-repeat;
    /*position: relative;*/
}
.menu-header > div.menu-button {
    margin-bottom: 2em;
}
.menu-header > div:hover {
    background-color: #5f3f3f;
}
.menu-header > div > a {
    display: block;
    font-size: 2em;
    color: #FFFFFF;
    text-align: center;
    margin-top: -0.15em;
}

.tt-button {
    background-image: url("/images/tt-icon.png");
}

.save-button {
    background-image: url("images/save_white_192x192.png");
}

.menu-wrapper {
    position: fixed;
    top: 0;
    right: 0;
    width: calc(100% - 3em);
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 15;
    display: none;
}

.menu {
    position: absolute;
    top: 0;
    left: 0;
    width: 25%;
    height: 100%;
    overflow-y: auto;
    background-color: rgba(0,0,0,0.7);
    display: none;
}

.menu > a {
    display: block;
    margin: 0.5em;
    padding: 0.25em;
    border-bottom: 1px #999999 dotted;
    color: #CCCCCC;
    font-size: 1.25em;
    cursor: pointer;
    text-decoration: none;
}
.menu > a:last-child {
    display: none;
}
.menu a:hover {
    background-color: #5f3f3f;
    color: #FFFFFF;
}

.account-info {
    padding-top: 1em;
    text-align: center;
    border-bottom: 1px #999999 dotted;
    margin: 0.5em;
}

.be-button {
    color: #CCCCCC;
    margin-top: -0.5em;
    padding-bottom: 1em;
}
.be-button > a {
    cursor: pointer;
    padding: 0 0.5em;
}

@media screen and (max-width: 768px) {
    body {
        font-size: 12pt;
    }
    .menu {
        width: 100%;
    }
    div.user-icon-text {
        font-size: 4em;
    }
    .menu > a:last-child {
        display: block;
    }
}