/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/*
    Created on : 07-Apr-2020, 2:23:13 pm
    Author     : Vishal
*/

#snackbar {
    visibility: hidden;
    min-width: 250px;
    text-align: center;
    border-radius: 2px;
    padding: 16px;
    position: fixed;
    z-index: 10000;
    right: 4%;
    top: 6.7%;
    font-size: 17px;
    border-radius: .25rem;
    box-shadow: 0 0 1px rgba(0, 0, 0, .125), 0 1px 3px rgba(0, 0, 0, .2);
}

#snackbar.show {
    visibility: visible;
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

@-webkit-keyframes fadein {
    from {top: 0; opacity: 0;}
    to {top: 6.7%; opacity: 1;}
}

@keyframes fadein {
    from {top: 0; opacity: 0;}
    to {top: 6.7%; opacity: 1;}
}

@-webkit-keyframes fadeout {
    from {top: 6.7%; opacity: 1;}
    to {top: 0; opacity: 0;}
}

@keyframes fadeout {
    from {top: 6.7%; opacity: 1;}
    to {top: 0; opacity: 0;}
}

#snackbar.success{
    color: white;
    background-color: green;
}

#snackbar.fail{
    color: white;
    background-color: red;
}

.red{
    color: red;
}

.button{
    width: 100%;
    background: linear-gradient(to right, #01339E, #003074);
    color: #f3f3f5;
    border: none;
    padding: .375rem .75rem;
    font-size: 1rem;
    text-transform: uppercase;
    transition: all ease 0.2s;
    border-radius: .25rem;
    text-transform: none;
}
.button:hover{
    background: linear-gradient(to right, #003074, #01339E);
}

.nav-link.image{
    padding: 0;
    display: flex;
    flex-direction: row;
}
.nav-link.image img{
    width: 36px;
    height: 36px;
}
.nav-link.image span{
    display: flex !important;
    flex-direction: column;
    padding-left: .5rem;
    justify-content: center;
}

.fa, .fas, .far{
    text-align: center;
    cursor: pointer;
}

.primary{
    color: #01339E;
}

.success{
    color: green;
}
.fail{
    color: #263d81;
}

/* width
::-webkit-scrollbar {
    width: 0px;
    height: 2px;
}*/

/* Track
::-webkit-scrollbar-track {
    background: #f1f1f1;
}*/

/* Handle
::-webkit-scrollbar-thumb {
    background: #888;
}*/

/* Handle on hover
::-webkit-scrollbar-thumb:hover {
    background: #555;
}*/

/*loader*/
.lds-roller {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}
.lds-roller div {
    animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    transform-origin: 40px 40px;
}
.lds-roller div:after {
    content: " ";
    display: block;
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #fff;
    margin: -4px 0 0 -4px;
}
.lds-roller div:nth-child(1) {
    animation-delay: -0.036s;
}
.lds-roller div:nth-child(1):after {
    top: 63px;
    left: 63px;
}
.lds-roller div:nth-child(2) {
    animation-delay: -0.072s;
}
.lds-roller div:nth-child(2):after {
    top: 68px;
    left: 56px;
}
.lds-roller div:nth-child(3) {
    animation-delay: -0.108s;
}
.lds-roller div:nth-child(3):after {
    top: 71px;
    left: 48px;
}
.lds-roller div:nth-child(4) {
    animation-delay: -0.144s;
}
.lds-roller div:nth-child(4):after {
    top: 72px;
    left: 40px;
}
.lds-roller div:nth-child(5) {
    animation-delay: -0.18s;
}
.lds-roller div:nth-child(5):after {
    top: 71px;
    left: 32px;
}
.lds-roller div:nth-child(6) {
    animation-delay: -0.216s;
}
.lds-roller div:nth-child(6):after {
    top: 68px;
    left: 24px;
}
.lds-roller div:nth-child(7) {
    animation-delay: -0.252s;
}
.lds-roller div:nth-child(7):after {
    top: 63px;
    left: 17px;
}
.lds-roller div:nth-child(8) {
    animation-delay: -0.288s;
}
.lds-roller div:nth-child(8):after {
    top: 56px;
    left: 12px;
}
@keyframes lds-roller {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.tbl{
    width: 100%
}
.td{
    width: 30%
}
.tdwrap{
    max-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.no-click {
    pointer-events: none;
    cursor: none;
}

/*loader*/