﻿
#snackbar {
    visibility: hidden;
    min-width: 500px;
    margin-left: -5px;
    color: #fff;
    text-align: center;
    border-radius: 2px;
    padding: 16px;
    position: fixed;
    z-index: 99999999999;
    left: 32%;
    bottom: 0px;
    font-size: 17px;
    max-width: 700px;
}

    #snackbar.show {
        visibility: visible;
        -webkit-animation: fadein 0.5s;
        animation: fadein 0.5s;
    }

@-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;
    }
}


.follow-Up-Height {
    height: 260px;
    overflow: auto;
}

#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: 99;
    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;
    }
}



/* Popup container - can be anything you want */
.popup {
    position: relative;
    display: inline-block;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    /* The actual popup */
    .popup .popuptext {
        visibility: hidden;
        width: 160px;
        background-color: #555;
        color: #fff;
        text-align: center;
        border-radius: 6px;
        padding: 8px 0;
        position: absolute;
        z-index: 1;
        bottom: 125%;
        left: 50%;
        margin-left: -80px;
    }

        /* Popup arrow */
        .popup .popuptext::after {
            content: "";
            position: absolute;
            top: 100%;
            left: 50%;
            margin-left: -5px;
            border-width: 5px;
            border-style: solid;
            border-color: #555 transparent transparent transparent;
        }

    /* Toggle this class - hide and show the popup */
    .popup .show {
        visibility: visible;
        -webkit-animation: fadeIn 1s;
        animation: fadeIn 1s;
    }

/* Add animation (fade in the popup) */
@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}



@media only screen and (min-width: 200px) and (max-width: 668px) {
    .follow-Up-Height {
        max-height: 500px;
        overflow: auto;
    }
}



@media only screen and (min-width: 668px) and (max-width: 990px) {
    .follow-Up-Height {
        max-height: 500px;
        overflow: auto;
    }
}


.rowspan {
    vertical-align: middle;
    text-align: center;
    font-weight: bold;
    font-size: 20px;
}

td.deleted {
    border: 0 !important;
}

p.bold {
    vertical-align: middle;
    text-align: left !important;
    font-weight: bold;
    font-size: 15px;
}


.app-title {
    display: inline-block;
    color: #fff;
    font-weight: 800;
    text-align: center;
    width: 75%;
}
/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    .app-title {
        width: 100%;
        font-size: 14px;
    }

    .quick-contacts {
        text-align: center;
        display: block;
        float: none !important;
        font-size: 12px;
    }

    #snackbar {
        width: 100%;
        left: 0%;
        max-width: 100%;
        min-width: 100%;
        margin: 0;
    }
}


.page-overlay-absolute {
    position: absolute !important;
}


.white-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    z-index: 99;
    cursor: progress;
}

.white-overlay-title {
    position: absolute;
    top: 40%;
    left: 50%;
    color: #000;
    user-select: none;
    transform: translate(-50%,-50%);
}

.white-overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 20px;
    color: #000;
    user-select: none;
    transform: translate(-50%,-50%);
}



.white-loader {
    border: 5px solid #f3f3f3;
    -webkit-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite;
    border-top: 5px solid #555;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    position: absolute;
    top: 39%;
    left: 57%;
}


@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}


/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
    .app-title {
        width: 100%;
        font-size: 15px;
    }

    .quick-contacts {
        text-align: center;
        display: block;
        float: none !important;
        font-size: 12px;
    }
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
    .app-title {
        width: 60%;
        font-size: 15px;
    }
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
    .app-title {
        width: 60%;
        font-size: 17px;
    }
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
    .app-title {
        width: 60%;
        font-size: 17px;
    }
}


/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    .white-overlay-text {
        top: 50%;
        left: 39%;
    }

    .white-overlay-title {
        top: 40%;
        left: 29%;
    }

    .white-loader {
        top: 39%;
        left: 55%;
    }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
    .white-loader {
        top: 39%;
        left: 64%;
    }
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
    .white-loader {
        top: 39%;
        left: 57%;
    }
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {

    .white-loader {
        top: 39%;
        left: 57%;
    }
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
    .white-loader {
        top: 39%;
        left: 57%;
    }
}
