body{
    font-size: 16px;
    /* background-color: lightgray; */
}

.logo {
    text-align: right;
    display:block;
    margin-bottom:20px;
    top: 0px;
    left: 0px;
    padding:0.8rem;
    background-color:#252525;
}

.logo img {
    width: 175px;
}

.navbar-menu {
    background-color: #bd9a62;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    transform: translateX(-150%);
    transition: 0.5s;
}

.navbar-menu.active {
    transform: translateX(0);
    transition: 0.5s;
}

.navbar-menu .menu-listing {
    padding: 0;
    margin: 0;
    /* text-align: right; */
}

.menu-listing li {
    display: inline-block;
}

.menu-listing li a {
    background-color: #fff;
    color: #262626;
    display: block;
    font-size: 1.5rem;
    height: 50px;
    line-height: 50px;
    padding: 0 20px;
    letter-spacing: 1px;
    text-decoration: none;
    transition: 0.5s;
}

.menu-listing li a:hover {
    background-color: #262626;
    color: #fff;
    transition: 0.5s;
}

.menu {
    position: fixed;
    top: 10px;
    left: 10px;
    background-color: #0F2636;
    height: 50px;
    width: 50px;
    cursor: pointer;
    transition: 0.3s;
    z-index: 9999;
}

.menu span {
    position: absolute;
    height: 3px;
    width: 25px;
    background-color: #fff;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    transition: 0.3s;
}

.menu span:before {
    content: '';
    position: absolute;
    top: -8px;
    background-color: #fff;
    height: 3px;
    width: 25px;
    transition: 0.3s;
}

.menu span:after {
    content: '';
    position: absolute;
    top: 8px;
    background-color: #fff;
    height: 3px;
    width: 25px;
    transition: 0.3s;
}

.menu.active span {
    background-color: transparent;
}

.menu.active span:before {
    transform: rotate(45deg);
    top: 0;
}

.menu.active span:after {
    transform: rotate(-45deg);
    top: 0;
}


@media only screen and (max-width:767px) {
    .navbar-menu {
        height: auto;
        z-index: 1;
    }
    .menu-listing li {
        display: block;
    }
    .navbar-menu .menu-listing {
        text-align: center;
    }
}

.divider {
    width: 100%;
    border-bottom: 1px solid gray;
    box-shadow: 0px 3px 6px gray;
    margin-bottom:10px;
}

.device-block {
    border: 1px solid lightgray;
    border-radius: 5px;
    padding: 7px;
    margin-bottom:10px;
    background-color: white;
}

.message-green {
    background-color: lightgreen;
    padding: 18px 0px;
    border-radius: 10px;
    text-align: center;
}

.helpdesk h3 {
    font-size: 2rem;
}

.footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: #252525;
    color: white;
    text-align: center;
}