html {
    height: 100%;
}

body {
    height: 100%;
    font-family: "Open Sans",Helvetica,Arial,sans-serif;
}

* {
    box-sizing: border-box;
}

#bg-image {
    background-size: cover;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
}

#container {
    margin: 0;
    padding: 4vh 4vw;
}

.app-category {
    color: white;
    margin-bottom: 2vh;
    padding: 0.8%;
}

.footer-app {
    position: absolute;
    bottom: 4vh;
    right: 4vh;
}

.app {
    margin: 1vh 0 0;
    padding: 1%;
    display: inline-block;
    text-align: center;
}

.icon {
    height: 5vh;
    width: 5vh;
    margin-bottom: 1vh;
}

.footer-icon {
    height: 4vh;
}

.app-name {
    margin: 0;
    font-size: 1.5vh;
    font-weight: bold;
    color: white;
}

a:hover,
a:visited,
a:link,
a:active {
    text-decoration: none;
}

.clear {
    clear: both;
}

#logo {
    height: 3vh;
    position: absolute;
    bottom: 4vh;
    left: 4vh;
}

.app-category-title {
    font-size: 2vh;
    border-bottom: 1px solid #909090;
    color: white;
}

.divider {
    border-bottom: 1px solid #909090;
    width: 33%;
    margin: 4% auto 4%;
}

#search {
    position: absolute;
    bottom: 4vh;
    left: 50%;
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
}

#google-input-search {
    width: 22vw;
    height: 3.5vh;
    padding: 0 1vw;
    font-size: 1.6vh;
    border: 1px solid #909090;
    border-radius: 30px;
    font-family: FontAwesome,"Open Sans",Helvetica,Arial,sans-serif;
}

#google-input-search:focus {
    outline: none;
}

#submit-search {
    display: none;
}

#apps-container {
    margin: 0;
    width: 95%;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

#launcher-title {
    color: white;
    font-size: 3.5vh;
    position: absolute;
    left: 4vh;
    top: 4vh;
}

#spinner-container {
    text-align: center;
}

@keyframes spinner {
    to {
        transform: rotate(360deg);
    }
}

.spinner {
    display: inline-block;
    width: 4rem;
    height: 4rem;
    vertical-align: text-bottom;
    border: .35em solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    -webkit-animation: spinner .75s linear infinite;
    animation: spinner .75s linear infinite;
    color: white;
}

@media all and (max-width: 768px) {
    #apps-container {
        text-align: center;
    }

    .app-category-title {
        width: 40%;
        margin: auto;
    }

    #nethesis-launcher {
        left: 50%;
        -ms-transform: translate(-50%, 0);
        transform: translate(-50%, 0);
    }
}

@media all and (min-width: 1024px) {
    #apps-container {
        width: 60%;
    }
}

@media all and (min-width: 1280px) {
    .app {
        width: 16.5%;
        margin: 2vh 0 0;
    }

    .divider {
        margin: 0 auto 1%;
    }

    .icon {
        height: 8.5vh;
        width: 8.5vh;
    }

    .footer-icon {
        height: 7vh;
    }

    #logo {
        height: 5vh;
    }
}
