/* This file contains general CSS valid for all transcriptiones pages. */

/* Tooltip container */
.tr-tooltip {
  position: relative;
  display: inline-block;
}

/* Tooltip text */
.tr-tooltip .tr-tooltiptext {
    visibility: hidden;
    width: 200px;
    background-color: #fff;
    color: #1D809F;
    text-align: center;
    padding: 5px 0;
    margin-top: 9px;
    border-radius: 3px;
    border: 1px solid #1D809F;

  /* Position the tooltip text - see examples below! */
  position: absolute;
  z-index: 1;

  top: 100%;
  left: 50%;
  margin-left: -100px; /* Use half of the width (120/2 = 60), to center the tooltip */
}

/* Show the tooltip text when you mouse over the tooltip container */
.tr-tooltip:hover .tr-tooltiptext {
  visibility: visible;
}

.move-left {
    width: auto;
    box-shadow: none;
  }

/****************************************/
/* General Styling, Fonts, etc. */
body,
html {
  width: 100%;
  height: 100%;
}

body {
  font-family: "Source Sans Pro", Helvetica, sans-serif !important;
}

/****************************************/
/* Colors */
.bg-primary {
  background-color: #1D809F !important;
}

.text-primary {
  color: #1D809F !important;
}

/****************************************/
/* Top Navigation Menu
.navbar {
  height: 70px;
  right: 0;
  top: 0;
  background-color: #1D809F !important;
  position: absolute;
  z-index: 990;
}

.navbar-nav li.navbar-nav-item a,
.navbar-nav li.navbar-brand a {
    text-decoration: none;
    color: #fff;
}

.navbar-nav li a:hover {
    text-decoration: none;
    color: #1D809F;
    background: rgba(255, 255, 255, 0.2);
}
*/

/*
.nav-link {
 color: #fff !important;
}
*/

/*
.text-navbar {
  color: #fff;
}
*/

/* Links */
a {
  color: #1D809F;
}

a:hover, a:focus, a:active {
  color: #155d74;
}


a.strong_link {
    color: #1D809F;
    font-weight: 700;
}

a.strong_link:hover {
    text-decoration: underline;
}

/* Buttons */
.btn {
  box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.1);
  font-weight: 700;
  -webkit-appearance: none;
}

.btn-primary {
    background-color: #1D809F !important;
    border-color: #1D809F !important;
    color: #fff !important;
}

.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
  background-color: #155d74 !important;
  border-color: #155d74 !important;
}

.bg-primary {
  background-color: #1D809F !important;
}


.text-primary {
  color: #1D809F !important;
}

/* General Styling, Fonts, etc. */
body {
    background-image: url("../images/background_tile.jpg");
    background-repeat: repeat;
}

pre {
    background: #cccccc;
    padding: 5px;
}

/* Custom Fontawesome Class */
.fa-trans {
    color: #1D809F;
    background-color: white;
}

.fa-trans:hover {
    background-color: #e6e6f2;
}