body {
	   font-family: 'Montserrat';
	   color:#333;
}
h3{ font-size:20px; color:#4A89DC; }
@media only screen and (max-width: 800px) {
    /* Force table to not be like tables anymore */
    #no-more-tables table, 
    #no-more-tables thead, 
    #no-more-tables tbody, 
    #no-more-tables th, 
    #no-more-tables td, 
    #no-more-tables tr { 
        display: block; 
    }
 
    /* Hide table headers (but not display: none;, for accessibility) */
    #no-more-tables thead tr { 
        position: absolute;
        top: -9999px;
        left: -9999px;
    }
 
    #no-more-tables tr { border: 1px solid #ccc; }
 
    #no-more-tables td { 
        /* Behave  like a "row" */
        border: none;
        border-bottom: 1px solid #eee; 
        position: relative;
        padding-left: 50%; 
        white-space: normal;
        text-align:left;
    }
 
    #no-more-tables 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;
        text-align:left;
        font-weight: bold;
    }
    #no-more-tables td:before { content: attr(data-title); }
}
@media (min-width: 1200px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl{
    min-width: 1500px;
  }
}
.table-bordered > thead > tr > th, .table-bordered > tbody > tr > th, .table-bordered > tfoot > tr > th, .table-bordered > thead > tr > td, .table-bordered > tbody > tr > td, .table-bordered > tfoot > tr > td{
    border-right:0px;
    border-left:0px;
    padding: 5px 10px;
    font-size: 14px;
    line-height: 1.8;
}
.table-bordered > thead > tr > th, .table-bordered > thead > tr > td{
	color:#4a89dc;
}
.blue_text{ color: #4a89dc; }
.mtop-20{ margin-top:30px; }
.mbot-30{ margin-bottom:30px; }
.not-matched{ background: #FAA0A0;color: white; }
.btn-primary {
  color: #fff;
  background-color: #4a89dc;
  border-color: #4a89dc;
}
.text-center{ text-align:center; }
#loading {
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    position: fixed;
    display: block;
    opacity: 0.7;
    background-color: #f0f0f0;
    z-index: 999999;
    text-align: center;
 }
#loading-image {
    position: absolute;
    top: 40%;
    left: 45%;
    z-index: 1000;
    border: 5px;
 }
 .linked_span{
    font-size: 11px; 
    color: red;
    font-weight: bold;
    margin-top: 11px;
    float: left;
    font-style: italic;
 }