body {
    margin: auto;
    padding: 0;
    height: 100vh;
}

.required {
    color: red;
}

/*Fix IE 11 Bug with flex boxes*/
.nav-justified .nav-item {
    flex-basis: auto;
}

/*Remove mdtapp.css styling for tab-content*/
.tab-content {
    border: none;
}

.jqx-grid-transparent {
    background-color: transparent;
}

.jqx-grid-transparent .jqx-grid-content {
    background-color: transparent;
}

.jqx-grid-transparent .jqx-grid-cell {
    background: rgba(255, 255, 255, 0.5);
}

.jqx-grid-transparent .jqx-grid-cell-alt {
    background: rgba(207, 207, 207, 0.5);
}

#portlet-row {
    margin-bottom: .5em;
    flex-direction: row;
    /*border: solid 1px black;*/
}

.card {
    /*width: 248px;*/
}

.card-header {
    cursor: move;
}

#main .nav {
    max-width: 25%;
}
#main .nav-tabs {
    border-bottom: none;
    border-right: 1px solid #ddd;
    display: flex;
    flex-flow: column nowrap;
    margin-top: .25rem;
}

#main .nav-tabs .nav-link {
    transition: border-color .125s ease-in;
    white-space: nowrap;
}

#main .nav-tabs .nav-link:hover {
    background-color: #ddd;
    border-color: transparent;
    border-bottom-left-radius: .25rem;
    border-top-right-radius: 0;
}

#main .nav-tabs .nav-link.active {
    border-bottom-color: #ddd;
    border-right-color: #fff;
    border-bottom-left-radius: .25rem;
    border-top-right-radius: 0;
    margin-right: -1px;
}

#main .nav-tabs .nav-link.active:hover {
    background-color: #fff;
    border-color: #0275d8 #fff #0275d8 #0275d8;
}

#main .tab-content {
    width: 75%;
    padding-left: 10px;
}

.grid-btn {
    margin: 5px 3px 5px 3px;
    padding: 1px 5px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px;
    background-image: linear-gradient(to bottom, #f2f2f2 0,#e0e0e0 100%);
    border-color: #ccc;
}

.jqx-listitem-state-selected-bootstrap a {
    color: white;
}

#footer {
    margin: 0 auto;
    width: 90%;
}

/** SPINNER CREATION **/
@keyframes spin {
    to {
        -webkit-transform: rotate(360deg);
    }
}

@-webkit-keyframes spin {
    to {
        -webkit-transform: rotate(360deg);
    }
}

.loader {
    position: relative;
    text-align: center;
    margin: 15px auto 35px auto;
    z-index: 9999;
    display: block;
    width: 80px;
    height: 80px;
    border: 10px solid rgba(0, 0, 0, .3);
    border-radius: 50%;
    border-top-color: #000;
    animation: spin 1s ease-in-out infinite;
    -webkit-animation: spin 1s ease-in-out infinite;
}

/** MODAL STYLING **/

.modal-content {
    border-radius: 0px;
    box-shadow: 0 0 20px 8px rgba(0, 0, 0, 0.7);
}

.modal-backdrop.show {
    opacity: 0.75;
}

.loader-txt p {
    font-size: 13px;
    color: #666;
}
.loader-txt p small {
    font-size: 11.5px;
    color: #999;
}

.jqx-grid-cell-selected-bootstrap a {
    color: white;
}

.nav-container {
    position:relative;
}

.nav-container .btn {
    position:absolute;
    right:1rem;
    top:50%;
    transform:translateY(-50%);
}

select.form-select{
    transition: none;
}
