/* * {
   border: 1px solid red !important;
}*/

html {
  height: 100%;


}

body {
  background-color:#e6e6e6 !important;
  margin: 0 0 0 0;
  height: 100%;
  font-family: sans-serif;
  color: #000000;
  font-size: 16px;
  line-height: normal;

}

.wrapper {
  min-height: 100%;
  text-align: center;
}

.banner {
  background-image: linear-gradient(50deg,#517eea,#08349b);
  width: 100%;
  height: 80px;
  margin-bottom: 10px;
  text-align: left;
}

.banner-title {
  font-family: Avantgarde, TeX Gyre Adventor, URW Gothic L, sans-serif;
  font-variant: small-caps;
  letter-spacing: 10px;
  color: #ffffff;
  font-weight: bold;
  font-size: 3em;
  text-shadow: 3px 3px 4px #000000;
  margin-left: 20px;
  height: 80px;
  line-height: 80px;
  vertical-align: middle;
}

.banner-title:focus {
  outline: none;
}

.page-content {
  padding: 10px 10px 10px 10px;
  height: 100%;
  background-color: #ffffff;
  box-shadow: 1px 2px 4px rgba(0, 0, 0, .5);
  text-align: left;
  position: relative;
}

.page-container {
  min-height: 50%;
  margin-left: 10%;
  margin-right: 10%;
  margin-top: 5%;
  margin-bottom: 5%;
  max-width: 1500px;
  display: inline-block;
  width: 80%;
}

.section {
  overflow: visible;
  padding: 30px 0 0 10px;
  display: flex;
  display: -webkit-box;
  display: -moz-box;   
  display: -ms-flexbox;  
  display: -webkit-flex;


}

.title-col {
  padding-left:45px;
  padding-right: 30px;
  width: 20%;
  max-width: 295px;
  display: inline-block;
  vertical-align: bottom;
}


.middle-col {
  width: 40%; 
  display: flex;
  display: -webkit-box;
  display: -moz-box;   
  display: -ms-flexbox;  
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction:column;
  -ms-flex-direction:column;
  padding-left: 10px;
  vertical-align: top;
  padding-bottom: 10px;
}

.right-col {
  position: relative;
  text-align: center;
  vertical-align: top;
  flex-direction: column;
  -webkit-flex-direction:column;
  -ms-flex-direction:column;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  flex: 1;
  -webkit-flex:1;
  -ms-flex:1;
}

.step-number {
  border-radius: 50%;
  border: 4px solid #ffffff;
  width: 78px;
  height: 78px;
  background-color: #2e5ac4;
  text-align: center;
  margin-top: -20px;
  margin-left: -49px;
  position: absolute;
  color: #ffffff;
  font-family: 'Impact', sans-serif;
  font-weight: bold;
  font-size: 30px;
  line-height: 70px;
}

hr {
  width: 92%;
  margin-top: 8px;
  margin-bottom: 8px;
  margin-right: 0;
  text-align: right;
  border-color: #000000;
  /*box-shadow: 0 0 0.1em rgba(0,0,0,0.2);*/
  border-style: inset;
}

.footer {
  background-image: linear-gradient(50deg,#517eea,#08349b);
  width: 100%;
  height: 80px;
}

.submit-btn {
  position: relative;
  display: block;
  text-align: center;
  min-width: 250px;
  margin: 10px;
}

.submit-btn button{
  display: block;
  margin: 0 auto;
  padding: 0;
  min-width: 250px;
  height: 70px;
  border: 2px solid #2e5ac4;
  border-radius: 40px;
  background: transparent;
  color: #2e5ac4;
  letter-spacing: 1px;
  font-size: 20px;
  font-family: 'Montserrat', sans-serif;
  transition: 0.3s;
  font-weight:bold;
}

.off.submit-btn button {
  border-color: #b5b5b5;
  color:#b5b5b5;
}
.on.submit-btn button {
  -webkit-filter: none();
  filter: none();
}
.on.submit-btn button:hover{
  background-color: #2e5ac4;
  color: #ffffff;
}

.submit-btn svg.checkmark path,
.submit-btn svg.cross path {
  stroke: #fff;
  stroke-linecap: round;
  stroke-width: 4;
  -webkit-transition: opacity 0.1s;
  transition: opacity 0.1s;
}

.submit-btn svg path {
  opacity: 0;
  fill: none;
}


.submit-btn svg {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  pointer-events: none;
}

.loading.submit-btn span {
  -webkit-transition: opacity 0.15s;
  transition: opacity 0.15s;
}

.success.submit-btn button {
  border-color: #2e5ac4;
  background-color: #2e5ac4;
}

.success.submit-btn button:hover{
  background-color: #2e5ac4;
}

.error.submit-btn button {
  border-color: #FB797E;
  background-color: #FB797E;
}

.error.submit-btn button:hover{
  background-color: #FB797E;
}

.success.submit-btn svg.checkmark path,
.error.submit-btn svg.cross path {
  opacity: 1;
  -webkit-transition: stroke-dashoffset 0.5s;
  transition: stroke-dashoffset 0.5s;
}

.loading.submit-btn span,
.success.submit-btn span,
.error.submit-btn span {
  opacity: 0; /* keep it hidden in all states */
}


/*Progress loader */
.loader {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  margin: -75px 0 0 -75px;
  border: 16px solid #f3f3f3;
  border-radius: 50%;
  border-top: 16px solid #2e5ac4;
  width: 120px;
  height: 120px;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}

.loading_space {
  position: absolute;
  left: 50%;
  top: 50%;
}

.progress-loader {
    position: absolute;   
    height: 160px;
    width: 160px;
    cursor: pointer;
    top: 50%;
    left: 50%;
    margin: -80px 0 0 -80px;
}

.progress-circle {
  transform: rotate(-90deg);
  margin-top: -40px;
}

.progress-circle-back {
  fill: none; 
  stroke: #f3f3f3;
  stroke-width:16px;
}

.progress-circle-prog {
  fill: none; 
  stroke: #2e5ac4;
  stroke-width: 16px;  
  stroke-dasharray: 0 999;    
  stroke-dashoffset: 0px;
    transition: stroke-dasharray 0.7s linear 0s;
}

.progress-text {
  width: 100%;
  position: absolute;
  top: 50px;
  left:10px;
  text-align: center;
  font-size: 2em;
  font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif !important; 
}

.gene-line:hover {
  background-color: #e4e1e1;
  cursor: pointer;
}

.gene-line {
  margin: 0;
}

.results-column {
  width:33%;
  padding: 0 10px 0 0;
  float: left;
}

.analysis-column {
  width: 66%;
  padding: 0 10px 0 0;
  float:right; 
}

@-webkit-keyframes fadeOut {
  0% {opacity: 1;}
  100% {opacity: 0;}
}
         
@keyframes fadeOut {
  0% {opacity: 1;}
  100% {opacity: 0;}
}

h1 {
  margin:0;
  font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif; 
  font-weight: normal;
  color:#3A4A4D;
  font-size: 2em;
  line-height: 36px;
}

h2 {
  margin:0;
  font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif; 
  font-weight: normal;
  color:#3A4A4D;
  font-size: 1.5em;
  line-height: 36px;
}


footer {
   clear:both;
   /*margin-top: 80px;*/
   left:0;
   bottom: 0;
   width:100%;
   height:80px;   /* Height of the footer */
   background-color: #808080;
   text-align: center;
   vertical-align: middle;
   color: white;
   font-family: "Arial", sans-serif; 
}

/*Interpro*/
div.bars {
  position: relative;
  background-color: #efefef;
  border: 1px solid #d8d8d8;
}
ul.signatures {
  margin: 0;
}
li.signature {
  list-style: none;
}
div.dom-line {
  height: 20px;
  position: relative;
}
div.bar {
  position: absolute;
  height: 8px;
  top: 25%;
  background-color: #399fc7;
  border: 1px solid grey;
  -webkit-border-radius: 4px;
  -webkit-box-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}
div.bar:hover {
  -webkit-box-shadow: 0 0 0.5em rgba(0,0,0,0.5);
}
div.scale {
  position: relative;
  height: 18px;
}
span.scale-bar {
  position: absolute;
  border-left: 1px solid lightgrey;
  height: 4px;
}
span.scale-number {
  position: absolute;
  padding-top: 5px;
}
span.grade {
  position: absolute;
  border-left: 1px dashed lightgrey;
  height: 100%;
}
div.legend {
  margin-top: 1em;
}
span.legend-label {
  margin-right: 1em;
}
div.legend-elem {
  display: inline-block;
  margin-right: 1em;
}
div.legend-square {
  display: inline-block;
  height: 10px;
  width: 10px;
  border: 1px solid #d8d8d8;
}

/* Modal box automatic species selection */
.modal .index{
  border-radius: 0;
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
  max-width: 1000px;
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
}

/* The Close Button */
.close {
    color: #aaaaaa;
    position: relative;
    font-size: 28px;
    font-weight: bold;
    float: none;
    opacity: 1;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.species {
  margin-top: 20px;
}

.blur-btn {
  position: relative;
  display: block;
  margin: 0 auto;
  text-align: center;
  padding: 0px 30px ;
  height: 35px;
  border-radius: 40px;
  border : none;
  font-size: 16px;
  font-family: sans-serif;
  font-weight: bold;
}

.default-blur { 
  background-color: #b5b5b5;
  border: 2px solid #b5b5b5;
  color: #ffffff ; 
}

.default-blur:hover{
  background-color: #2e5ac4;
  border: 2px solid #2e5ac4;
  color: #ffffff;
  cursor: pointer;
}

button:focus {
  outline: none;
}

.input-container, .form-control {
  width: 216px;
  height: 36px;
  position: relative;
  display: inline-block;
  border: 2px solid #b5b5b5 !important;
  margin-bottom: 5px;
  border-radius: 0;
}

.input-container:hover, .form-control:hover {
  border-color: #2e5ac4 !important;
}

.form-control:focus {
  box-shadow: none;
  border-color: #2e5ac4 !important;
}

.input-container > i {
  color: #b5b5b5; 
  position: absolute;
  padding-top: 7px;
  padding-left: 10px;
  padding-bottom: 11px;
}

input[type=text] {
  width: 100%;
  height: 100%;
  border: none;
  background-color: transparent;
  font-size: 15px;
  font-weight: bold;
  font-family: sans-serif;
  color: #999999;
  padding: 10px 25px 10px 35px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box; 
}

.ui-widget.ui-widget-content {
  border: 2px solid #2e5ac4;
}

.ui-menu-item {
  font-family: sans-serif;
  font-weight: normal;
  color: #999999;
  width: 195px;
}

#ui-id-1 {
  overflow-x: visible;
  overflow-y: auto;
  max-height: 400px;
  width: 216px;
}

::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #b5b5b5;
  opacity: 1;
    font-weight: normal;
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #b5b5b5;
  font-weight: normal;
}

::-ms-input-placeholder { /* Microsoft Edge */
  color: #b5b5b5;
  font-weight: normal;
}

.add-fields {
  color: #b5b5b5; 
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  background-color: transparent;
  border:none;
  cursor: pointer;
}


.add-fields > i {
  color: #b5b5b5; 
  font-size: 17px;
}

.remove-fields {
  color: #b5b5b5; 
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  background-color: transparent;
  border:none;
  cursor: pointer;
}

.remove-fields > i {
  color: #b5b5b5; 
  font-size: 17px;
}

button::-moz-focus-inner {
  border: 0;
}

button:focus {
  outline: none;
}

/*Styling Selectbox*/
.dropdown {
  width: 220px;
  height: 40px;
  display: flex;
  display: -webkit-box;
  display: -moz-box;   
  display: -ms-flexbox;  
  display: -webkit-flex;
  background-color: #b5b5b5;
  border-radius: 0;
  transition: all .5s ease;
  position: relative;
  font-size: 17px;
  font-weight: bold;
  font-family: sans-serif;
  color: #ffffff;
  text-align: left

}

.dropdown .select {
    cursor: pointer;
    display: block;
    padding: 10px;
    padding-left: 20px;
    min-height: 20px;
}

.dropdown:hover {
  background-color: #2e5ac4
}

.dropdown:active {
    background-color: #2e5ac4
}

.dropdown:focus {
  outline: none;
}

.dropdown.active:hover,
.dropdown.active {
    border-radius: 0;
    background-color: #2e5ac4;
}

.dropdown.disabled:hover,
.dropdown.disabled:focus,
.dropdown.disabled .select {
  background-color: #b5b5b5;
  cursor: default;
}
.dropdown .dropdown-menu {
    position: absolute;
    background-color: #b5b5b5;
    width: 100%;
    left: 0;
    margin-top: 4px;
    border-radius: 0;
    overflow: hidden;
    display: none;
    /* max-height: 216px; */
    overflow-y: auto;
    z-index: 9
}
.dropdown .dropdown-menu li {
  min-height: 15px;
  padding: 10px;
  transition: all .2s ease-in-out;
  cursor: pointer
} 
.dropdown .dropdown-menu {
    padding: 0;
    list-style: none;
    overflow: visible;
}
.dropdown .dropdown-menu li:hover {
    background-color: #2e5ac4
}
.dropdown .dropdown-menu li:active {
    background-color: #2e5ac4
}

.dropdown .dropdown-tier2 {
  position: absolute;
  left: 220px;
  width: 220px;
  list-style: none;
  display: none;
  background-color: #b5b5b5;
  padding:0;
  margin-top: -10px;
}

.dropdown .dropdown-tier2 li {
  min-height: 15px;
  transition: all .2s ease-in-out;
  cursor: pointer;
}

.dropdown .dropdown-menu li:hover > ul {
  display: inline;
}

.select-arrow {
  position: absolute;
  right: 15px;
  top: 15px;
  border: solid #ffffff;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 3px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}

.select-arrow:hover {
  cursor: pointer;
}

.step1-menu {
  display: flex;
  display: -webkit-box;
  display: -moz-box;   
  display: -ms-flexbox;  
  display: -webkit-flex;
  flex: 1;
  -webkit-flex:1;
  -ms-flex:1;
  justify-content: space-around;
  width: 100%;
}

.panel-blur {
  border-radius: 0;
  border:2px solid #2e5ac4;
}

.panel-blur .panel-heading {
  color: #ffffff;
  background-color: #2e5ac4;
  border-radius: 0;
}

.panel-blur .panel-title {
  font-size: 18px;
}

.blue button:hover, .red button:hover,
.orange button:hover, .green button:hover,
.teal button:hover, .yellow button:hover,
.purple button:hover {
  border: 2px solid #ffffff;
  background-color: transparent;
}

.red {
  border-color: #ad3737;
}

.red .panel-heading {
  background-color: #ad3737;
}

.orange {
  border-color: #e9b00d
}

.orange .panel-heading {
  background-color: #e9b00d
}

.green {
  border-color: #19ce8e;
}

.green .panel-heading {
  background-color: #19ce8e;
}

.yellow {
  border-color: #ecd529;
}

.yellow .panel-heading {
  background-color: #ecd529;
}

.purple {
  border-color: #7742b9;
}

.purple .panel-heading {
  background-color: #7742b9;
}

.grey {
  border-color: #e4e1e1;
}

.grey .panel-heading {
  background-color: #e4e1e1;
  color: #595656;
}

.grey button:hover {
  background-color: #7d7d7d;
  border-color: #7d7d7d;
}

.teal {
  border-color: #2cceb7;
}

.teal .panel-heading {
  background-color: #2cceb7;
}

.pink {
  border-color: #f6b6ff;
}

.pink .panel-heading {
  background-color: #f6b6ff;
}

input[type="checkbox"].toggle{
  font-size: 30px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
        -ms-appearance: none;
  width: 2.5em;
  height: 1em;
  background: #b5b5b5;
  border-radius: 3em;
  -moz-border-radius:3em;
  -webkit-border-radius:3em;
  position: relative;
  cursor: pointer;
  outline: none;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  }

  input[type="checkbox"].toggle::-ms-check{
  display: none;
  }
  
  input[type="checkbox"].toggle:checked{
   background-image: linear-gradient(to left, #00A0C7, #2E5ACA);
  }

  input[name="algt-full"].toggle:checked{
   background: #9c7608;
  }

  input[name="algt-full"].toggle{
   background: #9c7608;
  }

  .selected {
    font-weight: bold
  }
  
/*  input[type="checkbox"].toggle:after{
    display: block;
  position: absolute;
  content: "";
  width: 1em;
  height: 1em;
  border-radius: 50%;
    -moz-border-radius:50%;
  -webkit-border-radius:50%;
  background: #fff;
  -webkit-box-shadow: 0 0 .25em rgba(0,0,0,.3);
          box-shadow: 0 0 .25em rgba(0,0,0,.3);
  -webkit-transform: scale(.7);
          transform: scale(.7);
      -ms-transform: scale(.7);
  left: 0;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  }*/

  .radio-btn {
  font-size: 30px;
  display: block;
  position: relative;
  content: "";
  width: 1em;
  height: 1em;
  border-radius: 50%;
    -moz-border-radius:50%;
  -webkit-border-radius:50%;
  background: #fff;
  -webkit-box-shadow: 0 0 .25em rgba(0,0,0,.3);
          box-shadow: 0 0 .25em rgba(0,0,0,.3);
  -webkit-transform: scale(.7);
          transform: scale(.7);
      -ms-transform: scale(.7);
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  margin-top: -1em;
  cursor: pointer;
  pointer-events: none;
  }
  
  .activated {
      margin-left:1.5em;
  }

/*  input[type="checkbox"].toggle:checked:after{
  left: calc(100% - 1em);
  }*/

  .target-line {
    background-color: #86d8cf;
  }

  .species-line {
    background-color: #718be4;
  }

  .borderless > tbody > tr > td{
    border:none;
    padding: 2px;
  }

  .borderless {
    font-size: 12px;
  }

  tr:hover  td.rowspan{
    background-color: white;
  }

  tbody > tr> td.rowspan {
    vertical-align: middle;
    text-align: center;
    font-weight: bold;
    font-size: 20px;
  }

  .box {
    border:1px solid black;
    width: 20px;
    height: 14px;
    display: inline-block;
    margin-left: 2px;
    margin-right: 2px; 
  }

  .vis-button {
    padding-top: 2px;
    background-color: #e4e1e1;
    background-image: none !important;
    color : #595656 !important;
    text-align: center;
  }

  .vis-button:hover {
    background-color: #2e5ac4;
    box-shadow: none !important;
    color : #ffffff !important;
  }

  .vis-button:focus {
    background-color: #595656;
  }

  .vis-button::after {
    font-family: 'FontAwesome';
    font-size: 24px;
  }

  .vis-up::after {
     content: "\f062";
  }

  .vis-down, .vis-down::after {
    content: "\f063";
    padding-top: 4px;
  }

  .vis-right, .vis-right::after {
    content: "\f061";
    padding-left: 1px;
  }

  .vis-left::after {
    content: "\f060";
  }

  .vis-zoomIn, .vis-zoomIn::after {
    content: "\f067";
    padding-top: 3px;
    padding-left: 1px;
  }

  .vis-zoomOut, .vis-zoomOut::after {
    content: "\f068";
    padding-top: 4px;
    padding-left: 1px;
  }

  .vis-zoomExtends::after {
    content: "\f066";
  }

  .grey .btn-image:hover {
    -webkit-filter: drop-shadow(3px 3px 2px #7c7b7b);
    filter: drop-shadow(3px 3px 2px #7c7b7b);
  }

  .grey .btn-image:active {
    -webkit-filter: drop-shadow(1px 1px 2px #222);
    filter: drop-shadow(1px 1px 2px #222);
  }

  .btn-image:hover {
    -webkit-filter: drop-shadow(3px 3px 2px #303030);
    filter: drop-shadow(3px 3px 2px #303030);
  }

  .btn-image:active {
    -webkit-filter: drop-shadow(1px 1px 2px #191919);
    filter: drop-shadow(1px 1px 2px #191919);
  }

  .btn-image {
    margin: 0 5px;
    cursor: pointer;
  }

/* Available species tables */
   /* Style the tab */
.tab {
  overflow: hidden;
  border-color: #e4e1e1;
  background-color: #e4e1e1;
  color: #595656;
  font-size: 18px;
}

/* Style the buttons that are used to open the tab content */
.tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: #2e5ac4;
  color: #ffffff;
}

/* Create an active/current tablink class */
.tab button.active {
  background-color: #2e5ac4;
  color: #ffffff;
}

/* Style the tab content */
.tabcontent {
  display: none;
  padding: 6px 12px;
  border: 2px solid #e4e1e1;
  border-top: none;
} 

/* Style species table */
.bootstrap-table .fixed-table-container {
  border: none;
}
.bootstrap-table .fixed-table-container td, .bootstrap-table .fixed-table-container th {
  border-left: none;
}

.bootstrap-table .table > thead > tr > th {
  border-width: 2px !important;
}

.bootstrap-table .table {
  border: none;
  padding:5px;
  margin-bottom: 10px !important;
}

ul.pagination > li > a{
  border-color: #e4e1e1;
  background-color: #e4e1e1;
  color: #595656;
  font-weight: bold ;
}

ul.pagination > li > a:hover {
  border-color: #e4e1e1;
  background-color: #b5b5b5;
  color: #595656;
}


ul.pagination > .active > a, ul.pagination > .active > a:hover {
  background-color: #2e5ac4;
  color: #ffffff;
}

ul.pagination > .disabled > a {
  border: none ;
}

ul.pagination > li:first-child > a, ul.pagination > li:last-child > a {
  border-radius: 0;
}

.fixed-table-pagination .pagination a {
  margin : 2px;
}

.fixed-table-pagination .btn {
  border-radius: 0;
}

.fixed-table-pagination .dropdown-menu {
  border-radius: 0;
}

ul.dropdown-menu > li > a {
  font-weight: bold;
}

ul.dropdown-menu > .active > a, ul.dropdown-menu > .active > a:hover {
  background-color: #2e5ac4;
}

ul.dropdown-menu > li > a:hover {
  background-color: #e4e1e1;
}

.btn-image.disabled {
  cursor: not-allowed !important;
  -webkit-filter:brightness(150%);
  filter:brightness(150%);
}

.btn-image.disabled:hover {
    -webkit-filter: drop-shadow(0px 0px 0px transparent) brightness(150%);
    filter: drop-shadow(0px 0px 0px transparent) brightness(150%);
}

.info > i {
  font-size: 12px;
  position: absolute;
  text-align: center;
  height: 15px;
  width: 15px;

}

.front-page-info {
  position: absolute;
  right: -25px;
}

.front-page-info > i {
  color:#b5b5b5;
}

.front-page-info > i:hover {
  color:#2e5ac4;
}

.popover-content {
  max-height: 500px;
  overflow-y: auto;
}

.popover-title {
  font-weight: bold;
  text-align: center;
  font-size: 15px;
  background-color: #b5b5b5;
  color: white;
  border-radius: 0px;
  font-family: sans-serif;
  border-color: #b5b5b5;
  border-width: 2px;
}

.popover {
  border-radius: 0px;
  padding: 0px;
  border-color: #b5b5b5;
  color: #757575;
}