/*
InfoZone CSS
*/

/*
    Basics
*/

h5 {
   text-align: center;
}

h6 {
   text-align: center;
}

/*
    Sorttable
*/

table.sortable th:not(.sorttable_sorted):not(.sorttable_sorted_reverse):not(.sorttable_nosort):after { 
    content: " \25B4\25BE" 
}

/*
    Group Logos
*/


    .group-logo-inline img {
        max-height: 2em;
        max-width: 2em;
    }
    
    .group-logo-inline a {
        border-bottom: none;
    }

    .group-logo-75 img {
        max-height: 75px;
        max-width: 75px;
    }
    
    .group-logo-75 a {
        border-bottom: none;
    }

    
/* Tabs */
.tab {
    overflow: hidden;
    margin-top: 0.5rem;
}

/* Style the buttons that are used to open the tab content */
.tab button {
    background-color: inherit;
    float: left;
    outline: none;
    cursor: pointer;
    padding: 0.8rem 0.6rem;
    transition: 0.3s;
    font-size: 1.2rem;
}

/* Change background color of buttons on hover */
.tab button:hover {
    background-color: #ddd;
}

/* Create an active/current tablink class */
.tab button.active {
    background-color: #004990;
    color: white;
    font-weight: bold;
}

/* Style the tab content */
.tabcontent {
    display: none;
    padding: 6px 12px;
    border: 1px solid #ccc;
    border-top: none;
}    

.tabcontent {
    animation: fadeEffect 1s; /* Fading effect takes 1 second */
}

/* Style the tab */
.tabsmall {
    overflow: hidden;
    padding-bottom: 0.2rem;
}


/* Style the buttons that are used to open the tab content */
.tabsmall button {
    background-color: inherit;
    border-left: none;
    border: 1px solid #d4d4d4;    
    float: left;
    padding: 0.4rem;    
    outline: none;
    cursor: pointer;
    transition: 0.3s;
    font-size: 1.1rem;
}

.tabsmall button.first {
    border-left: 1px solid #d4d4d4;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    font-weight: 600;
    color: #333;
    background-color: #ddd; 
}


/* Change background color of buttons on hover */
.tabsmall button:hover {
    background-color: #888;
}

/* Create an active/current tablink class */
.tabsmall button.active {
    background-color: #333;
    color: #fff;
    font-weight: bold;
}

/* Style the tab content */
.tabsmallcontent {
    display: none;
    padding: 6px 12px;
    border: 1px solid #ccc;
    border-top: none;
}    

.tabsmallcontent {
    animation: fadeEffect 1s; /* Fading effect takes 1 second */
}

/* Go from zero to full opacity */
@keyframes fadeEffect {
    from {opacity: 0;}
    to {opacity: 1;}
}

/* Tooltip container */
.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black; /* If you want dots under the hoverable text */
}

/* Tooltip text */
.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  top: 100%;
  left: 50%; 
  margin-left: -60px; /* Use half of the width (120/2 = 60), to center the tooltip */  
  background-color: black;
  color: #fff;
  text-align: center;
  padding: 5px 0;
  border-radius: 6px;
 
  /* Position the tooltip text - see examples below! */
  position: absolute;
  z-index: 1;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
  visibility: visible;
}

.tooltip .tooltiptext::after {
  content: " ";
  position: absolute;
  bottom: 100%;  /* At the top of the tooltip */
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent black transparent;
}

.tooltip .tooltiptext {
  opacity: 0;
  transition: opacity 1s;
}

.tooltip:hover .tooltiptext {
  opacity: 1;
}

/* Style the button that is used to open and close the collapsible content */
.collapsible {
  background-color: #eee;
  color: #444;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.collactive, .collapsible:hover {
  background-color: #ccc;
}

/* Style the collapsible content. Note: hidden by default */
.contentPop {
  padding: 0 18px;
  display: none;
  overflow: hidden;
  background-color: #f1f1f1;
}

.collapsible:after {
  content: '\02795'; /* Unicode character for "plus" sign (+) */
  font-size: 13px;
  color: white;
  float: right;
  margin-left: 5px;
}

.collactive:after {
  content: "\2796"; /* Unicode character for "minus" sign (-) */
}


.embed {
   margin-bottom: auto;
}

.embed tr {
   border-top: none;
}
.embed tr:hover {
    background-color: initial;
}

.embed td {
   border-bottom: none; 
}

@media only screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px) 
/* mobile phones! */
{
 .tooltiptext
 {
  display: none;
 }
}

/*
Div Tables
*/
.divTable{
	display: table;
	width: 100%;
    margin-bottom: 1em;        
}
.divTableRow {
	display: table-row;
    border-top: 1px solid #f1f2f3;        
}

.divTableRow:hover {
        background-color: #ddd;
}

.divTableHeading {
	background-color: #EEE;
	display: table-header-group;
}

.divTableCell, .divTableHead {
	border-bottom: 1px solid #ddd;   
	display: table-cell;
    color: #48494a;
    font-weight: 400;
    height: 28px;
    line-height: 1.4;
    padding: 1px 4px 0 4px;
    margin: 0;
    text-transform: none;     
}

.divTableHeading {
	background-color: #EEE;
	display: table-header-group;
	font-weight: bold;
}

.divTableFoot {
	background-color: #EEE;
	display: table-footer-group;
	font-weight: bold;
}
.divTableBody {
	display: table-row-group;
}

.divTableCenter {
	text-align: center
}

.divEmbedInfo {
    font-size: 0.8em;
}

.divExtraPad {
	 padding: 0.6em;
}