﻿
html, body {
    margin: 0 auto;
    font-family: Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;
    height: 100%;
}

.content {
    display: flex;
    flex-direction: column;
    position: relative;
    align-items: center;
    min-height: 100%;
    overflow: hidden;
}

.content__background-image {
    z-index: -1;
    opacity: 0.1;
    width: 50%;
    height: 100%;
    position: absolute;
}

.content__background-image--left {
    left: -25%;
}

.content__background-image--right {
    right: -25%;
}

.content__image {
    width: 16rem;
    padding-top: 15vh;
}

.content__text {
    margin-top: 2rem;
    align-items: center;
    display: flex;
    flex-direction: column;
}

    .content__text h3 {
        margin-bottom: 0;
    }

.content__links-list {
    padding: 0;
}

.content__links-list li {
    list-style-type: none;
    display: inline-block;
    margin: 0 1rem;
}

    .content__links-list li a {
        color: #337ab7;
    }

.link:hover {
    cursor: pointer;
    background-color: darkseagreen !important;
}

.SelectedRow {
    background-color: lightgreen !important;
}

.FirstInNode {
    border-top-color: darkseagreen !important;
    border-top-width: 2px;
}

.MainTable {
    min-width: 100%;
    background-color: #fff;
    border: 1px solid #d6d6d6;
    border-collapse: collapse;
}

/* Modal */

/* Center the loader */
/**/
#loader {
    position: fixed;
    left: 50%;
    top: 50%;
    z-index: 10;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #3498db;
    width: 120px;
    height: 120px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

.modalXXX {
    position: fixed; /* Stay in place */
    z-index: 10; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Add animation to "page content" */
.animate-bottom {
    position: relative;
    -webkit-animation-name: animatebottom;
    -webkit-animation-duration: 1s;
    animation-name: animatebottom;
    animation-duration: 1s
}

@-webkit-keyframes animatebottom {
    from {
        bottom: -100px;
        opacity: 0
    }

    to {
        bottom: 0px;
        opacity: 1
    }
}

@keyframes animatebottom {
    from {
        bottom: -100px;
        opacity: 0
    }

    to {
        bottom: 0;
        opacity: 1
    }
}

/* End Modal*/