﻿body {
}

.container {
    width: 100%;
    padding: 20px;
}

.action-bar {
    width: 100%;
    position: fixed;
    bottom: 0; 
    right:0;
    left:0;
    padding: 7px;
    z-index: 10;
    box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 3px 1px -2px rgba(0,0,0,0.12), 0 1px 5px 0 rgba(0,0,0,0.2);
}

.action-bar .btn{
    margin: 0 7px;
}


.input-field label {
    pointer-events: none;
}

@media only screen and (max-width: 500px) {

    .container {
        padding: 20px 5px;
    }
}

/*
    Custom error-label style - takes up less space than the default error label used 
    by materialize.
*/

.input-field .error-label {
    color: #656565;
    font-size: 12px;
    position: absolute;
    bottom: -13px;
    right: 13px;
    height: 1.5em;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    max-width: 80%;
}

.error-label.invalid {
    color: #F44336;
}

/* shortens up the top padding since our forms lead off with an h6, 
    which already has considerable top margin
*/
.card .card-content {
    padding-top: 10px;
}

/*.static-label {
    line-height: 1.3;
}

.input-field label.static-label {
    position: relative;
    text-align: left;
    line-height: 1.3;
}

.input-field.col label.static-label {
    left: 0rem;
}*/

/*.collapsible {
    border: none;
    box-shadow: none;
}

    .card-content .collapsible .collapsible-body {
        padding: .0rem;
        border-bottom: none;
    }*/

    /*.collapsible li {
        overflow: auto;
    }*/

    /*.collapsible.col{
        padding:0;
        margin:0;
    }

    .collapsible .input-field{
        margin:0.2rem 0;
    }*/

/* REMOVE ARROWS FROM NUMBER INPUT */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    /* display: none; <- Crashes Chrome on hover */
    -webkit-appearance: none;
    margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}