/* Define the custom table with general styling. */
table.customTable {
  width: 100%;
  background-color: #FFFFFF00;
  border-collapse: separate;
  border-width: 0px;
  color: #000000;
  vertical-align:top;
}

/* Customize custom table rows. */
table.customTable td, table.customTable th, table.customTable tr {
  background-color: #FFFFFF00;
  border-width: 0px;
  vertical-align:top;
}

table.customTable td {
    padding: 0px 32px 16px 0px;
}

/* Remove underline from href tags inside custom table. */
table.customTable a {
  text-decoration:none;
}

/* Allow underline only for hovering in href tags inside custom table. */
table.customTable a:hover {
  text-decoration:underline;
}

/* Remove striped background color for rows in custom table. */
table.customTable tr:nth-child(even) {
  background-color: #FFFFFF00;
}

/* Define custom ids used to configure elements with text. */
#customTableTitle {
  margin-bottom: 4px;
}
#customTableDescription {
  margin-top: 0px;
}

/* Define custom id used to highlight text blocks. */
#highlighted {
  background-color: #F8F8F8;
  color: #D9712B;
  padding: 4px;
}

/* Define a button class as base for elements with rounded corners. */
.button {
  background-color: #5a39ff; /* Adswizz blue */
  border: none;
  color: #FFFFFF; /* White */
  padding: 16px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
}
.button:hover {
  background-color:#7256ff; /* Light blue */
  transition: 0.3s;
}
/* Define a button attribute based on button class with rounded corners. */
.button-rounded-corners {border-radius: 12px;}

/* Define a custom class for <li> elements with <a> tags defined in the _sidebar. */
.linkListItem {}

/* Define custom id used to center text in table rows. */
#centeredRow {
  text-align:center;
  vertical-align:middle
}

/* Implement style for overlay support (hover) over an image (container). */
.container {
  position: relative;
  width: 100%;
  max-width: 250px;
  float: left;
  margin-left: 0px;
  margin-right: 16px;
  margin-top: 8px;
  margin-bottom: 8px;
}

.image {
  display: block;
  width: 100%;
  height: auto;
}

.overlay {
  position: absolute; 
  bottom: 0; 
  background: rgba(1, 1, 1, 0.4); /* black see-through */
  width: 100%;
  transition: .35s ease;
  opacity:0;
  color: white;
  font-size: 16px;
  padding: 16px;
  text-align: center;
}

.container:hover .overlay {
  opacity: 1;
}

/* Define custom logo container. */
.logo {
    display: block;
    width:100%;
    height:auto;
    padding:10%;
}
.logoIcon {
    display: inline-block;
    width:13%;
    height:auto;
}
.logoText {
    display: inline-block;
    padding-right: 5px;
}

