/***************************************
/* Company: Quadrimind Sistemas Ltda.
/* File: style.css
/* Authot: Guilherme Etz
/* Date: 2015 - 09 - 03
/* Description: index.html -> main page style
***************************************/


/* === Global settings START === */

html,
body {
    margin: 0;
    /*    background-color: transparent;*/
/*    background: rgba(0, 0, 0, 0.1);*/
    height: 100%;
    width: 100%;
    position: fixed;
    overflow: hidden;
}

p {
    margin: 0px;
    padding: 0px;
}

/* Disable ugly boxes around images in IE10 */

a img {
    border: 0px;
    background-color: blue;
}

::-moz-selection {
    background-color: #6ab344;
    color: #fff;
}

::selection {
    background-color: #6ab344;
    color: #fff;
}

.qm-search-box .mdl-textfield__input {
    color: rgba(0, 0, 0, 0.87);
}

.qm-header .mdl-menu__container {
    z-index: 50;
    margin: 0 !important;
}

.mdl-textfield--expandable {
    width: auto;
}

.mdl-layout {
    overflow: hidden;
}

.unselectable {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.translate {
    display: none;
}


/* === Global settings END === */


/* === Content START === */

.qm-content {
    position: relative;
    width: 100%;
    height: 100%;
    top: 0;
    /*transform: translate(0px,-256px);*/
    /*background: green;*/
    /*top: 50%;*/
    /* margin-top: -260px; */
}

.qm-title {
    width: 100%;
    height: 60px;
    padding-top: 20px;
    vertical-align: baseline;
    text-align: center;
/*    font-family: 'Arial Rounded MT Bold', 'Helvetica Rounded', Arial, sans-serif;*/
    z-index: 2;
    font-size: 40px;
    color: #FFFFFF;
}

.qm-main-apps-section {
    top: 50%;
    position: relative;
/*    background: rgba(0, 0, 0, 0.5);*/
    width: 100%;
    overflow: hidden;
    /*
    margin-top: 10px;    
    height: 320px;
    padding-top: 200px;
    padding-bottom: 10px;
    */
}

#icons-list {
    text-align: center;
    width: 100%;
    overflow-x: scroll;
    /* antes era auto mudou para dar o efeito momentum scroling */
    -webkit-overflow-scrolling: touch;
    /* não tinha, adicionou para dar o efeito momentum scroling */
    /* ANIMATION*/
    -webkit-animation-name: slideIn;
    -webkit-animation-duration: 2s;
    -webkit-animation-delay: 0.0s;
    -webkit-animation-fill-mode: forwards;
    animation-name: slideIn;
    animation-duration: 2s;
    animation-delay: 0.0s;
    animation-fill-mode: forwards;
    display: -webkit-box;
    display: -moz-box;
    display: box;
    -webkit-box-wrap: mowrap;
    -moz-box-wrap: mowrap;
    box-wrap: mowrap;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-orient: horizontal;
    -moz-box-orient: horizontal;
    box-orient: horizontal;
}

.qmAnimation {
    /* ANIMATION*/
    -webkit-animation-name: slideIn;
    -webkit-animation-duration: 2s;
    -webkit-animation-delay: 0.0s;
    -webkit-animation-fill-mode: forwards;
    animation-name: slideIn;
    animation-duration: 2s;
    animation-delay: 0.0s;
    animation-fill-mode: forwards;
}


/* Animation START */

@-webkit-keyframes slideIn {
    0% {
        margin-left: 300px;
    }
    100% {
        margin-left: 0px;
    }
}

@keyframes slideIn {
    0% {
        margin-left: 300px;
    }
    100% {
        margin-left: 0px;
    }
}


/* Animation END */

.qm-icons {
    cursor: pointer;
    text-align: center;
    /* width: 160px; */
    margin: 60px;
    color: #FFFFFF;
}

#space {
    cursor: pointer;
    text-align: center;
    width: 40px;
    margin: 0px;
    color: #FFFFFF;
}

.qm-icons .qm-icons-image {
    width: 100%;
    z-index: 1;
}

.qm-icons .qm-icons-image {
    width: 100%;
    z-index: 1;
}

.qm-icons .qm-icons-title {
    display: block;
    z-index: 2;
}

.qm-icons .qm-icons-action {
    /*display: none;*/
/*    font-family: 'Arial Rounded', 'Helvetica Rounded', Arial, sans-serif;*/
    font-style: italic;
    z-index: 2;
    font-size: 18px;
/*    padding-top: 2px;*/
    padding-bottom: 0px;
}

.qm-icons.qm-localized-app {
    display: none;
}

.qm-close {
    margin-top: 40px;
    align-content: center;
    text-align: center;
}

.qm-button-image {
    height: 100px;
}

.qm-link {
    text-decoration: none;
    color: #FF9933 !important;
}

.qm-link:hover {
    color: #808080 !important;
}

.qm-link .material-icons {
    position: relative;
    top: 6px;
}

.qm-alt-link {
    text-decoration: none;
    color: #FF9933 !important;
    font-size: 16px;
}

.qm-alt-link:hover {
    color: #FFFFFF !important;
}

.qm-alt-link .material-icons {
    position: relative;
    top: 6px;
}

.qm-menu-link {
    text-decoration: none;
    color: #000000 !important;
}