body{
    background-color: #efefef;
}

/**
    Header && Naigation bar
**/
section.header{
    margin-bottom: 30px;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #3b5998;
}

li {
    float: left;
}

li a {
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

li a:hover:not(.active) {
    background-color: #111;
}

h1 {
    color: #3b5998;
    font-family: sans-serif;
}

.active {
    background-color: #3b5998;
}

/***
    Cards
***/
.card {
    display: table-cell;
    /* Add shadows to create the "card" effect */
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    transition: 0.3s;
    height: 220px;
    width: 180px;
    margin: 10px;
    float: left;
    background-color: #fff;
    text-align: center;
}

.card img{
    margin: 0px auto;
    width: 100px;
    height: 100px;
}

.card .imgDiv{
    display: inline;
    float : left;
}

/* On mouse-over, add a deeper shadow */
.card:hover {
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
    cursor: pointer;
}

/* Add some padding inside the card container */
.card-body {
    padding: 2px 2px;
}

input[type=search] {
    width: 100%;
    box-sizing: border-box;
    border: 2px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    background-color: white;
    background-image: url('../assets/fbSearchIcon.png');
    background-position: 10px 10px;
    background-repeat: no-repeat;
    padding: 12px 20px 12px 40px;
    -webkit-transition: width 0.4s ease-in-out;
    transition: width 0.4s ease-in-out;
}

input[type=search]:focus {
    width: 100%;
}
/**
    Tabs
**/
/* Style the tab */
div.tab {
    overflow: hidden;
    border: 1px solid #ccc;
    background-color: #f1f1f1;
}

/* Style the links inside the tab */
div.tab a {
    float: left;
    display: block;
    color: black;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    transition: 0.3s;
    font-size: 17px;
}

/* Change background color of links on hover */
div.tab a:hover {
    background-color: #ddd;
}

/* Create an active/current tablink class */
div.tab a:focus, div.tab a.active {
    background-color: #ccc;
    border-bottom: 3px solid #3b5998;
}

/* Style the tab content */
.tabcontent {
    padding: 6px 12px;
    border-top: none;
    display: table;
    width: 100%;
}

/***
    Tooltips
***/

/* Tooltip text */
.card .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 */
.card:hover .tooltiptext {
    visibility: visible;
}

/**
    Miscellaneuous 
**/

.container { 
    width: 1100px; 
    margin: 0px auto; 
}

.loader{
    display: none;
}

.zero-star {

}

.full-star {
    color : orange;
}
