label {
    font-size: 0.9em;
    margin-left: 20px;
}

h3 {
    font-size: 2em;
    text-align: center;
}

input {
    border-radius: 4px;
    border: 1px solid #c2c2c2;
    box-sizing: border-box;
    margin-top: 20px;
    height: 30px;
    width: 500px;
    font-size: 0.9em;
    text-indent: 5px;
}

#content {
    height: 700px;
}

div.search-container {
    text-align: center;
}

div.app_content {
    margin-top: 50px;
}

div.search_result {
    word-break: break-word;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    line-height: 16px; /* fallback */
/*    max-height: 32px; /* fallback */
/*    -webkit-line-clamp: 10000; /* number of lines to show */
    -webkit-box-orient: vertical;
}

i#btn-search {
    background: #ffffff;
    color: #3399CC;
    border: none;
    height: 30px;
    width: 40px;
    margin-left: 5px;
    margin-top: 20px;
    padding-top: 9px;
    border-radius: 4px;
    font-size: 1em;
}

/* 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;
    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;
  }

input:focus {outline:0;}
button:focus {outline:0;}