/*main page styles*/
.abstract-head{
    background-color: #ffffff;
    padding-top: 5%;
    height:100%;
    color: grey;
    font-weight: 600;
    font-family: sans-serif;
    top:1%;
}
.btns{
  padding-top:2%;
  padding-right:2% ;
}
.image {
    border-radius: 50%;
}
.head-container{
    background-color: #778899;    
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    padding-top: 1%;
    padding-bottom: 1%;
    opacity: 0.6;
}
.title-line img {
    padding-top: 0.01%;
}
.card1{
    height:95%;
    padding: 5%;
    background:transparent; 
    background-image:  linear-gradient(rgba(46, 179, 214, 0.30), 
    rgba(67, 204, 152, 0.40)),url('../images/Web/banner.jpg'); 
    background-size: cover;    
    width: 100%;
    transition: .5s ease;  
    min-height: 40vh;
    margin-bottom: 50px;      
}

.overlay {    
    font-size: 20px;
    text-align: center;
    opacity:0.9;
}
.footer-copyright{
    margin-bottom:0;  
    font-size: 10px;
    color: #fff;
    background-color: #006ba1;
}
.footer-copyright a{
  font-size: 10px;
  color: #fff;
}

#container-text {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color: #fff;
    z-index:1;
}
.container-fluid{
  font-size: 12px;
  padding-top: 50px;
  background-color: #007cba;
  color: #fff;
}
.container-fluid p{
  margin-left: 50px;
}



.wrapper {
  margin-top: 5vh;
}

.dataTables_filter {
  float: right;
}

.table-hover > tbody > tr:hover {
    background-color: lighten(cyan, 40%);
}
/*important if we want to add ellipsis
to cells with content longer than width*/
.table {
  @media only screen and (min-width: 768px) {
    table-layout: fixed;
    //this declaration overwrites 
    //the default plugin style
    max-width: 100% !important;
  }
}

thead {
  background: #ddd;
}

.table td:nth-child(2) {
  overflow: hidden;
  /*white-space: nowrap;*/
  text-overflow: ellipsis;
}

.highlight {
  background: lighten(yellow,30%);
}

@media only screen and (max-width: 767px) {
  
  /* Force table to not be like tables anymore */
  table,
  thead,
  tbody,
  th,
  td,
  tr {
    display: block;
  }
  /* Hide table headers (but not display: none;, for accessibility) */
  thead tr,
  tfoot tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }
  td {
    /* Behave  like a "row" */
    border: none;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 50% !important;
  }
  td:before {
    /* Now like a table header */
    position: absolute;
    /* Top/left values mimic padding */
    top: 6px;
    left: 6px;
    width: 45%;
    padding-right: 10px;
    white-space: nowrap;
  }
  
  .table td:nth-child(1) {
      background: #ccc;
      height: 100%;
      top: 0;
      left: 0;
      font-weight: bold;
  }
  /*
	Label the data
	*/
  td:nth-of-type(1):before {
    content: "Abstract ID";
  }
  td:nth-of-type(2):before {
    content: "Title";
  }
  td:nth-of-type(3):before {
    content: "Presentation";
  }
  .dataTables_length {
    display: none;
  }
}

