/* Hide Radio button */
.rate > input{
  display: none;


}



.rate{
  display: inline-block;;
  border: 0;
}

.rate > label{
  float: right;
}

/* Showing the stars */
.rate > label:before{
  display: inline-block;
  font-size: 1.1rem;
  font-family: FontAwesome;
  content: "\f005";
  margin:0;
  padding:0.3rem .2rem;
  cursor: pointer;
}

/* Half star */
.rate .half:before{
  content: "\f089";
  position: absolute;
  padding-right: 0;
}

/* Click and hover */
input:checked ~ label, label:hover ~ label{
  color: #ffb503;
}

/* hover hightlight */
input:checked + label:hover, input:checked ~ label:hover,input:checked ~ label:hover ~ label,
label:hover ~ input:checked ~ label{
  color: #cc9000;
}

.rating-star i{
  color: #ffb503 !important;
}
ul.thumb{
  margin:0 auto;
  padding: 0;
  float: left;
}
ul.thumb li{
  list-style: none;
  margin: 10px;
  display: inline-block;
}
ul.thumb li img{
  display: inline-block;
  width: 80px;
  height: 80px;
  border: 1px solid grey;
}







.page-header-big {
height: 180px !important;  /* You can change height value */
background-size: cover;
background-position: center;
    }


@media (max-width: 576px) {
  .itemside {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center;
  }
  .itemside .info {
    margin-top: 10px;
  }
}



/* Hide bottom tab on desktop (bigger screens) */
.bottom-tab {
    display: none;
}

/* Show bottom tab only on screens 768px or smaller (mobile) */
@media (max-width: 768px) {
    .bottom-tab {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: white;
        border-top: 1px solid #ddd;
        display: flex;
        justify-content: space-around;
        padding: 8px 0;
        z-index: 9999;
    }

    .bottom-tab a {
        text-align: center;
        font-size: 12px;
        color: #575757;
        text-decoration: none;
    }

    .bottom-tab i {
        font-size: 22px;
        display: block;
        margin-bottom: 3px;
    }
}

