@import url('https://fonts.googleapis.com/css?family=Roboto');
*{
    font-family: 'Roboto', sans-serif;
    margin: 0px;
    padding: 0px;
}

main{
    padding: 10px;
}

.tab {
    overflow: hidden;
    border: 1px solid #ccc;
    background-color: #f1f1f1;
    margin-top: 10px;
}


.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;
}

.tabcontent {
    -webkit-animation: fadein 1s;
    -moz-animation: fadein 1s;
    -ms-animation: fadein 1s;
    -o-animation: fadein 1s;
    animation: fadein 1s;
}

.inputWrapper {
    display:  inline-block;
}

tr a {
    color: black;
    text-decoration: none;
}

tr a:not(.tags):hover{
    text-decoration: underline;
}

div#searchWrapper {
    margin-bottom: 10px;
    background: #cccccc;
    padding:  5px;
    border-radius:  10px;
}

input#name {
    padding:  5px;
    box-sizing:  border-box;
    width: max-content;
    margin-left:  -5px;
    width: 555px;
}

#search{
    width: 200px;
    padding: 6px;
    box-sizing: border-box;
}

.suggestionWrapper {
    position: absolute;
    z-index: 100;
    margin-top:  -10px;
}

.suggestionWrapper p{
    background: #2b2b2b;
    color: white;
    padding: 6px;
    width: 200px;
    box-sizing: border-box;
    border-bottom: 2px #585858 solid;
    margin: 0px;
    left:  150px;
    position: relative;
    cursor: pointer;
}

.operators{
    background: #023bc1!important;
}

.suggestionWrapper .match{
    color: #0fde00;
}

#tableWrapper table {
    min-width: 100%;
}

td{
    word-wrap: break-word;
    max-width: 250px;
}

tr.odd{
    background: #e2e2e2!important;
}

table.dataTable th.focus, table.dataTable td.focus{
    outline: none!important;
}

span.searchLabel {
    min-width: 150px;
    display:  inline-block;
    text-align:  center;
}

#advancedSearchWrapper input, #advancedSearchWrapper select {
    margin-bottom: 10px;
    width:  200px;
    padding: 5px;
    box-sizing:  border-box;
}

div#advancedSearchWrapper {
    background: #272727;
    color:  white;
    padding:  10px;
    border-radius: 10px 10px 0px 0px;
}

p#searchHelpMessage {
    margin-bottom: 12px;
    text-align:  center;
}

td img, .thumbnail {
    max-width: 150px;
    max-height: 150px;
}

.hidden{
    display: none;
}

.dt-buttons {
    margin-top: 5px;
}

.dt-button {
    background: #00b707!important;
}

.dt-button:hover, #queryLink:hover {
    background: #3a3a3a !important;
    color: white !important;
    border: none!important;
}



#queryLink, #resetFields {
    background: #00b707;
    padding: 5px 10px;
    border-radius:  5px;
    margin-left:  5px;
    cursor: pointer;
}

#resetFields {
    background: #3a3a3a;
    color:  white;
}

#resetFields:hover{
    background: #ff8300;
}

.tags {
    background: #333;
    color:  white;
    padding:  5px;
    display:  inline-block;
    margin:  5px;
    border-radius: 8px;
    text-decoration:  none;
    text-align: center;
    cursor:  pointer;
}

.profileRow .tags{
    margin: 0px 5px 0px 0px;
}

.tags:hover {
    background: #12b300;
}

.fadein {
    -webkit-animation: fadein 1s;
    -moz-animation: fadein 1s;
    -ms-animation: fadein 1s;
    -o-animation: fadein 1s;
    animation: fadein 1s;
}

tr.selectedRow{
    background: #0083d2!important;
}

thead td {
    text-transform: capitalize;
}

input, select, textarea {
    border-radius:  5px;
    box-shadow:  none;
    border-top: 2px solid #b5b5b5;
    border-left: 2px solid #b5b5b5;
    outline: none;
}

button.dt-button.buttons-html5 {
    border-radius: 5px;
    border: none;
}

#tableWrapper .dt-buttons {
    width:  100%;
}

#warningWrapper p, #warningWrapper span {
    height:  20px;
}

#warningWrapper img {
    position:  relative;
    top: 2px;
    left: 5px;
    display:  inline-block;
    margin-right:  5px;
}

div#warningWrapper {
    background: #fb8d00;
    padding: 2px;
    margin-top:  0px;
    border-radius: 0px 0px 10px 10px;
}

#hintsWrapper{
    background: #333333;
    color: white;
    margin-top:  0px;
    padding: 6px 0px;
}

#hintsWrapper h4 {
    padding: 10px;
    font-weight: normal;
    text-align: center;
    margin-top:  -15px;
}
.hintsInner{
    padding: 10px;
}

#hintsWrapper ul{
    background: #0ba200;
    border-radius: 5px;
}

#hintsWrapper li {
    padding:  8px 10px;
}

#hintsWrapper li:not(:last-child){
    border-bottom: 2px solid #0a8800;
}

#warningWrapper span {
    position: relative;
    left:  5px;
}

.selectedTag{
    background: #545454 !important;
}

.suggestionWrapper p:hover{
    background: #545454 !important;
}

@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}


@-moz-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}


@-webkit-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}


@-ms-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}


@-o-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes lds-rolling {
    0% {
        -webkit-transform: translate(-50%, -50%) rotate(0deg);
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        -webkit-transform: translate(-50%, -50%) rotate(360deg);
        transform: translate(-50%, -50%) rotate(360deg);
    }
}
@-webkit-keyframes lds-rolling {
    0% {
        -webkit-transform: translate(-50%, -50%) rotate(0deg);
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        -webkit-transform: translate(-50%, -50%) rotate(360deg);
        transform: translate(-50%, -50%) rotate(360deg);
    }
}
.lds-rolling {
    position: relative;
}
.lds-rolling div,
.lds-rolling div:after {
    position: relative;
    top: 25px;
    left: 25px;
    width: 30px;
    height: 30px;
    border: 3px solid #62e100;
    border-top-color: transparent;
    border-radius: 50%;
}
.lds-rolling div {
    -webkit-animation: lds-rolling 2s linear infinite;
    animation: lds-rolling 2s linear infinite;
}
.lds-rolling div:after {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}
.lds-rolling {
    width: 50px !important;
    height: 50px !important;
    margin: 0px auto;
}

#fullScreenLoadingWrapper{
    position:absolute;
    width: 100%;
    text-align:  center;
    top: calc(50% - 50px);
}

#fullScreenLoadingWrapper h1, .tableLoadingWrapper h1 {
    font-size: 40px;
    margin:  2px;
}

.tableLoadingWrapper h1{
    font-size: 20px;
    font-weight: normal;
}

.tableLoadingWrapper{
    width: 100%;
    text-align:  center;
    margin: 10px 0px 10px 0px;
}

.tableLoadingWrapper .lds-rolling div, .tableLoadingWrapper .lds-rolling div:after {
    width:  15px;
    height:  15px;
    top: 15px;
    left: 15px;
}

.tableLoadingWrapper .lds-rolling {
    width: 25px!important;
    height: 25px!important;
}

.matchedSearch{
    font-weight: bold;
}

header{

}

.headerMargin{
    margin-top: 50px;
}

nav {
    overflow: hidden;
    background: #272727;
    width: 100%;
    height: 50px;
    color: white;
}

.dropdown-content a:not(:last-child) {
    border-bottom: 2px solid #272727;
}

nav a {
    float: left;
    font-size: 16px;
    line-height: 16px;
    color: white;
    text-align: center;
    padding: 17px 16px;
    text-decoration: none;
}

.dropdown {
    float: left;
    overflow: hidden;
}

.dropdown .dropbtn {
    font-size: 16px;
    line-height: 16px;
    border: none;
    outline: none;
    color: white;
    padding: 17px 16px;
    max-height:  50px;
    background-color: inherit;
    font-family: inherit;
    margin: 0;
}

nav a:hover, .dropdown:hover .dropbtn {
    background-color: #0ba200;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #4a4a4a;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a {
    float: none;
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-content a:hover {
    background-color: #0ba200;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
}


.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width:  500px;
    position:  relative;
}


.close {
    color: #565656;
    display: inline;
    position:  absolute;
    right: 5px;
    top: 0px;
    font-size: 20px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.tooltip {
    position: relative;
    display: inline-block;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 140px;
    background-color: #555;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px;
    position: absolute;
    z-index: 1;
    bottom: 150%;
    left: 50%;
    margin-left: -75px;
    opacity: 0;
    transition: opacity 0.3s;
}

.tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}

.modalRow {
    margin-bottom:  10px;
}

input#queryLinkInput {
    width: 400px;
}

#queryLinkInput, .tooltip button {
    padding: 10px;
    box-sizing:  border-box;
    font-size:  16px;
}

.tooltip button {
    max-width:  100px;
    background: #2bb500;
    border:  none;
    border-radius:  5px;
    cursor:  pointer;
}

.helpPage {
    padding-bottom: 5px;
    text-align: center;
}

.helpPage a {
    color: #0dc500;
    text-decoration:  none;
}

.helpPage a:hover {
    color: #0fe400;
    text-decoration:  underline;
}

.profileRow {
    margin: 30px 0px;
    text-align:  center;
}

.profileRow h3 {
    margin: 20px;
}

.imgHeader img {
    max-width:  70%;
    max-height: 500px;
}
.profileRow p {
    margin-bottom:  10px;
}
