﻿@import url('https://fonts.googleapis.com/css2?family=Silkscreen&display=swap');

body {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.9em;
}
div:empty {
  display:none;
}

/* Rounded border */
hr.rounded {
  border-top: 8px solid #bbb;
  border-radius: 5px;
  width:99%;  
  margin: 0px;
  
}
input[type=text] {
  padding:5px;
  margin:5px 0; 
  text-transform: uppercase;
}
select {  
  padding:5px;
  border-radius:5px;
  margin:5px;
}
button {  
  padding:5px;
  border-radius:5px;
}

.button {
  background-color: #e7e7e7; /* Green */
  border: 1px solid black;
  color: black;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 13px;
  margin: 4px 2px;
  cursor: pointer;
  padding: 9px 18px;
  border-radius: 4px;
}

.buttongreen {
  background-color: white; 
  color: black; 
  border: 3px solid #04AA6D;
  width: 10em;
  padding: 6px 18px;
}

input[type=submit] {
  padding:8px;
  margin:5px 0; // add top and bottom margin
}

input#btnUpload {
    background-color: green;
    color: yellow;
    border-radius: 4px;
}

/* top navigation bar */

.topnav {
  overflow: hidden;
  background-color: #333;
/* added 30 April 2023 */
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    z-index: 999;
}

.topnav a {
  float: right;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 15px;
}

.topnav a:hover {
  background-color: #ddd;
  color: black;
}

.topnav a.active {
  background-color: #4CAF50;
  color: white;
}

.info{
    color: gray;
    font-size:9px;
}

.hoverinfo {
    color: black ;
    font-size: 11px;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    background-color: black;
    z-index: 99;
    opacity: 0.8;
    filter: alpha(opacity=80);
    -moz-opacity: 0.8;
    min-height: 100%;
    width: 100%;
}

    .loading
    {
        font-family: Arial;
        font-size: 10pt;
        border: 5px solid #4CAF50;
        border-radius: 25px;
        width: 200px;
        height: 150px;
        display: none;
        top: 20%;
        position: fixed;
        background-color: White;
        z-index: 999;
    }

    .txtlog{
        min-height: 200px;
    }

table.minimalistBlack {
  border: 0px solid #000000;
 /* width: 40%;*/
  text-align: left;
  border-collapse: collapse;
}
table.minimalistBlack td, table.minimalistBlack th {
  border: 0px solid #000000;
  padding: 5px 4px;
}
table.minimalistBlack tbody td {
  font-size: 13px;
}
table.minimalistBlack thead {
  }
table.minimalistBlack thead th {
  font-size: 12px;
  font-weight: normal;
  color: #000000;
  text-align: left;
}
table.minimalistBlack tfoot td {
  font-size: 14px;
}
   
table.minimalistBlack tr:empty,  table.minimalistBlack td:empty {
    visibility: hidden;
    height: 0;
    display: none;
}

/* top feature table */

#featuretable {
    width: 60%;
}

table.customTable {    
    min-width: 360px;
    background-color: #FFFFFF;
    border-collapse: collapse;
    border-width: 0px;
    border-color: #040508;
    border-style: solid;
    color: #000000;
    font-size: 0.8em;
    table-layout: fixed;
    max-width: 800px;
}

    table.customTable td, table.customTable th {
        border-width: 0px;
        border-color: #040508;
        border-style: solid;
        padding: 1px;
        text-align: left;
    }

    table.customTable thead {
       /* background-color: #C9C9C9;*/
    }

/* Column widths are based on these cells */
.row-feature {
    width: 100px;
}

.row-map {
    width: 40px;
}

.row-convert {
    width: 40px;
}

.row-images {
    width: 40px;
}

.row-words {
    width: 50px;
}

.row-tap {
    width: 80px;
}

.row-dsf {
    width: 80px;
}

.checkmark {
    display: inline-block;
    transform: rotate(45deg);
    align-content:center;
    height: 18px;
    width: 8px;
    margin-left: 18%;
    border-bottom: 4px solid #78b13f;
    border-right: 4px solid #78b13f;
}

.smallwidth {
   width: 60px;
}

.smallerwidth {
    width: 30px;
}


/* css for processgraphics.aspx, so elements will render nicely on smaller screen devices */

.flex-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding-top: 5px; /* this */
    padding-bottom: 5px; /* this */
}

 .flex-container > div {
                
        margin: 10px;
        vertical-align: middle; 
        
 }

h1 {
    font-family: 'Silkscreen', fantasy;
    max-width: 100%;
    font-size: calc(17px + 1vw);
    /* Added 30 April 2023 */
    margin-top: 40px;
    padding: 5px;
}

/* style for the tooltips in the table */

.tooltip {
    position: relative;
    border-bottom: 1px dotted blue;
}

    .tooltip span {
        visibility: hidden;
        width: 10em;
        background-color: blue;
        color: #fff;
        text-align: center;
        border-radius: 6px;
        padding: 5px 0;
        position: absolute;
        z-index: 9;
        top: -1em;
        left: 100%;
        margin-left: 1em;
        opacity: 0;
        transition: opacity 2s;
    }

        .tooltip span::after {
            content: "";
            position: absolute;
            top: 1.5em;
            right: 100%;
            margin-top: -5px;
            border-width: 5px;
            border-style: solid;
            border-color: transparent blue transparent transparent;
        }

    .tooltip input {
        display: none;
    }

        .tooltip input:checked + span {
            visibility: visible;
            opacity: 1;
        }

.mapimage {
    min-width: 360px;
    height: auto;
    max-width: 100%;
}

/* css for font table */
#fontholder {
    overflow-x: auto;
    max-width: 800px;
}


#featuretable {
    width: 60%;
}

.border-highlight{
  border: 4px dashed red;  
  padding:0.03em 0.25em;
}

/* style for the zoom-in map box */

figure.zoom {
  /*background-position: 50% 50%; */
  position: relative;
  /*width: 50%; */
  overflow: hidden;
  cursor: zoom-in;
}
figure.zoom img:hover {
  opacity: 0;
}
figure.zoom img {
  transition: opacity 0.5s;
  display: block;
  width: 100%;
}

