﻿
.loadingContainer {
    position: fixed;
    position: fixed;
    z-index: 5000;
    top: 45%;
    left: 48%;
    background-color: white;
    width: 120px;
    height: 60px;
    border: solid 1px black;
    border-radius: 6px;
    text-align: center;
    vertical-align: bottom;
}

.loader {
    border: 3px solid #f3f3f3;
    border-radius: 50%;
    border-top: 3px solid black;
    width: 20px;
    height: 20px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
    margin-left: 37%;
    margin-top: 10px;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


td > .nowrap {
    white-space: nowrap !important;
}



div.stickybottom {
    position: -webkit-sticky;
    position: sticky;
    bottom: 0px;
    background-color: #bababaf0;
    padding: 10px;
    z-index: 100000 !important;
}


.stickytop {
    position: -webkit-sticky;
    position: fixed !important;
    top: 0px;
    z-index: 100000000000;
    /*width: 100%*/
}


.ui-datepicker {
    z-index: 1000000000 !important;
}


.icon-onboarding {
    background-image: url('imgs/onboarding.png');
    background-size: cover;
    display: inline-block;
    height: 15px;
    width: 15px;
}



.tab {
    overflow: hidden;
    border: 1px solid #ccc;
    background-color: #f1f1f1;
}

.tab button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
}

.tab button:hover {
    background-color: #ddd;
}

.tab button.active {
    background-color: #ccc;
}

.tabcontent {
    display: none;
    padding: 6px 12px;
    border: 1px solid #ccc;
    border-top: none;
}
