﻿#ui-datepicker-div {
    z-index: 999999 !important;
}

.error-alert {
    color: red;
    position: relative;
    font-size: 12px;
    /*top: 50px;*/
    width: 100%;
    left: 0;
}


.pager {
    cursor: pointer !important;
    -webkit-user-select: none; /* Safari */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* IE10+/Edge */
    user-select: none; /* Standard */
}

.page-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.5);
    z-index: 99999999999999999;
    cursor: progress;
}

.page-overlay-title {
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 20px;
    color: white;
    user-select: none;
    transform: translate(-50%,-50%);
}

.page-overlay-text {
    position: absolute;
    top: 60%;
    left: 50%;
    font-size: 12px;
    color: white;
    user-select: none;
    transform: translate(-50%,-50%);
}


table thead tr th {
    -webkit-user-select: none; /* Safari */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* IE10+/Edge */
    user-select: none; /* Standard */
}


.sort, .dsc-sort, .asc-sort {
    cursor: pointer !important;
}

    .sort:active, .dsc-sort:active, .asc-sort:active {
        background-color: #ddd;
    }

    .sort::after {
        content: "\f0dc";
        font-family: FontAwesome;
        font-weight: normal;
        font-style: normal;
        margin: 0px 0px 0px 10px;
        text-decoration: none;
        color: #ccc;
    }


    .dsc-sort::after {
        content: "\f0dd";
        font-family: FontAwesome;
        font-weight: normal;
        font-style: normal;
        margin: 0px 0px 0px 10px;
        text-decoration: none;
    }


    .asc-sort::after {
        content: "\f0de";
        font-family: FontAwesome;
        font-weight: normal;
        font-style: normal;
        margin: 0px 0px 0px 10px;
        text-decoration: none;
    }


.page-overlay-title-animate-fast {
    -webkit-animation: tic-tac 1s ease infinite;
    animation: tic-tac 1s ease infinite;
}


.page-overlay-title-animate-slow {
    -webkit-animation: tic-tac 2s ease infinite;
    animation: tic-tac 2s ease infinite;
}



@-webkit-keyframes tic-tac {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes tic-tac {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}


.right {
    float: right;
}

.padding-left {
    padding-left: 10px !important;
}

.vs {
    position: relative;
    top: -26px;
    left: 243px;
}


.green {
    color: #FFF !important;
    background-color: #32c5d2 !important;
    border-color: #32c5d2 !important;
}

.red {
    color: #fff !important;
    background-color: #e7505a !important;
    border-color: #e7505a !important;
}

.snackbar-container {
    visibility: visible;
    width: 100%;
    left: 0px;
    text-align: center;
    display: block;
    margin: 0 auto;
    border-radius: 2px;
    padding: 16px;
    position: fixed;
    z-index: 999;
    bottom: 30px;
    font-size: 17px;
    -webkit-animation: fadein 0.5s;
    animation: fadein 0.5s;
}

.snackbar {
    width: 500px;
    min-width: 250px;
    text-align: center;
    display: block;
    margin: 0 auto;
    padding: 16px;
}

.snackbar-text {
    display: block;
    text-overflow: ellipsis;
    width: 85%;
    white-space: nowrap;
    overflow: hidden;
}

.snackbar .close {
    color: #fff !important;
    background-image: none !important;
    margin-top: 1px;
    text-indent: 0px;
    opacity: 1;
}


@media only screen and (min-width: 200px) and (max-width: 668px) {

    .vs {
        position: relative;
        top: 30px;
        left: 50%;
        font-size: 19px;
    }

    .page-header.navbar .page-logo a h3,
    .page-header.navbar .page-logo a h3 span {
        font-size: 12px;
    }

    .snackbar {
        width: 304px;
        min-width: 250px;
        text-align: center;
        display: block;
        margin: 0 auto;
        padding: 16px;
    }
}



@media only screen and (min-width: 668px) and (max-width: 990px) {

    .page-header.navbar .page-logo a h3,
    .page-header.navbar .page-logo a h3 span {
        font-size: 17px;
    }

    .vs {
        position: relative;
        top: 30px;
        left: 50%;
        font-size: 19px;
    }

    .snackbar {
        width: 400px;
        min-width: 250px;
        text-align: center;
        display: block;
        margin: 0 auto;
        padding: 16px;
    }
}



@media screen and (min-width: 1000px) {

    .vs {
        position: absolute;
        top: 33px;
        left: 300px;
    }
    
    .snackbar {
        width: 500px;
        min-width: 250px;
        text-align: center;
        display: block;
        margin: 0 auto;
        padding: 16px;
    }

    .page-header.navbar .page-logo a h3,
    .page-header.navbar .page-logo a h3 span {
        font-size: 20px;
    }
}



@-webkit-keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }

    to {
        bottom: 30px;
        opacity: 1;
    }
}

@keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }

    to {
        bottom: 30px;
        opacity: 1;
    }
}

@-webkit-keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }

    to {
        bottom: 0;
        opacity: 0;
    }
}

@keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }

    to {
        bottom: 0;
        opacity: 0;
    }
}


.gridview {
    background-color: #fff;
    padding: 2px;
    margin: 2% auto;
}


    .gridview a {
        margin: auto 1%;
        border-radius: 50%;
        background-color: #444;
        padding: 5px 10px 5px 10px;
        color: #fff;
        text-decoration: none;
        -o-box-shadow: 1px 1px 1px #111;
        -moz-box-shadow: 1px 1px 1px #111;
        -webkit-box-shadow: 1px 1px 1px #111;
        box-shadow: 1px 1px 1px #111;
    }

        .gridview a:hover {
            background-color: #1e8d12;
            color: #fff;
        }

    .gridview span {
        background-color: #ae2676;
        color: #fff;
        -o-box-shadow: 1px 1px 1px #111;
        -moz-box-shadow: 1px 1px 1px #111;
        -webkit-box-shadow: 1px 1px 1px #111;
        box-shadow: 1px 1px 1px #111;
        border-radius: 50%;
        padding: 5px 10px 5px 10px;
    }

.remove-white-space {
    white-space: nowrap !important;
}

.signature {
    height: 70px;
    /*display: block;*/
    /*text-align: right;
    margin-left: 130px;*/
}

table tbody tr td table tbody tr td {
    padding: 10px;
}

table > tbody > tr > td > table > tbody > tr > td > span {
    background-color: #444;
    color: #fff;
    padding: 10px;
}
