﻿input[type=time]::-webkit-datetime-edit-ampm-field {
    display: none;
}

input[type=time]::-webkit-clear-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    -o-appearance: none;
    -ms-appearance: none;
    appearance: none;
    margin: -10px;
}
/*DashLight CSS adjustments*/
/*fix for scroll back appearing on right side of main window*/
@media (min-width: 576px) {
    .nk-content {
        padding: 30px 22px;
    }
}

/*Grid item select*/
.ui-select .nk-tb-item.selected-item, div .selected-item {
    background-color: #efecff !important;
    cursor: default;
    color: #816bff !important;
}

.ui-select .nk-tb-item.found-item, div .found-item {
    background-color: #efffee !important;
    cursor: default;
    color: #816bff !important;
}

/* note: 100% is baseline so 85% is slightly darker, 
   20% would be significantly darker */
.mute div, .mute, .mute em {
    color: #cfd7e5 !important;
}

.ff-fast {

    -webkit-animation: fadein 0.2s; /* Safari, Chrome and Opera > 12.1 */
    -moz-animation: fadein 0.2s; /* Firefox < 16 */
    -ms-animation: fadein 0.2s; /* Internet Explorer */
    -o-animation: fadein 0.2s; /* Opera < 12.1 */
    animation: fadein 0.2s;
}
.ff-slow {
    -webkit-animation: fadein 0.5s; /* Safari, Chrome and Opera > 12.1 */
    -moz-animation: fadein 0.5s; /* Firefox < 16 */
    -ms-animation: fadein 0.5s; /* Internet Explorer */
    -o-animation: fadein 0.5s; /* Opera < 12.1 */
    animation: fadein 0.5s;
}

@keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Firefox < 16 */
@-moz-keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Internet Explorer */
@-ms-keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/*expand description*/
textarea.txt-description {
    width: 100% !important;
    min-width: 100% !important;
    padding: 6px;
    transition: all 0.5s ease;
    resize: none;
    min-height: 100%;
    overflow: hidden;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

    textarea.txt-description:focus {
        height: 15em;
        width:400px;
        left: 5px;
        top: 18px;
        right: 5px;
        bottom: 5px;
        z-index: 100;
        position: absolute;
        resize: block !important;
    }

    .pointer
    {
        cursor:pointer !important;
    }

[v-cloak] {
    display: none;
}

.taskspinner {
    display: inline-block;
}

.hide
{
    display:none!important;
}
.is-monday {
    border-top: 1px solid springgreen !important;
}