
#layoutMain {
    position: relative;
}

#layoutMain:before {
    content: "";
    background-image: url(/images/image1.jpg);
    background-size: 100% auto;
    background-size: cover;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
}

#layoutContent {
    min-height: 300px;
    z-index: -10;
}

.landing {
    min-height: 400px;
}



#content {
    position: absolute;
    top: 50%;
    margin-top: -200px;
    padding-top: 55px;
    padding-bottom: 30px;
    width: 100%;
}

h2 {
    margin-top: 10px;
}

.landing .code-container {
    background-color: rgba(106, 126, 149, .5);
    color: #fff;
    text-align: center;
    padding: 15px;
    min-width: 300px;
    border-radius: 2px;
}

.landing .code {
    margin: 0 auto 15px;
}

.landing .code input {
    font-family: "Lucida Console", Monaco, monospace;
    font-weight: 700;
    font-size: 40px;
    height: 60px;
    line-height: 60px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

.landing .code input::-ms-clear {
    display: none;
    width: 0;
    height: 0;
}

.landing .code input:focus {

}

.landing .code-container .explanation {
    text-align: left;
    font-weight: 400;
}

/* js styles */
.landing .navbar.offscreen {
    margin-top: -50px;
    height: 50px;
}

.landing .navbar.offscreen .main-menu {
    height: 0;
    overflow: hidden;
}

.landing .navbar.offscreen .extended-menu {
    top: 50px;
}

.landing .navbar.onscreen {
    margin-top: 0;
}

.landing .navbar.onscreen .extended-menu {
    top: 0;
}

.landing .navbar {
    -webkit-transition: margin-top .75s;
    transition: margin-top .75s;
}

.landing .navbar .main-menu {
    -webkit-transition: height .75s;
    transition: height .75s;
}

.landing .navbar .extended-menu {
    -webkit-transition: top .75s;
    transition: top .75s;
}

.landing .navbar.dive .extended-menu {
    -webkit-animation: dive .75s; /* Safari 4+ */
    -moz-animation: dive .75s; /* Fx 5+ */
    -o-animation: dive .75s; /* Opera 12+ */
    animation: dive .75s; /* IE 10+, Fx 29+ */
}

@-webkit-keyframes dive {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-moz-keyframes dive {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-o-keyframes dive {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes dive {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.navbar .extended-menu {
    position: relative;
}

#divMenu {
    position:fixed;
    top:0;width:100%;
    height:51px;
    background-color:rgba(106, 126, 149, .5);
    z-index:2
}

.fa-phone-square {
    vertical-align: middle;
}

@media (max-width: 1150px) and (min-width: 901px) {
    #user-name a {
        max-width: 200px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}










