body {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
}
*, :before, :after {
    box-sizing: border-box;
}
.toolbar-content {
    font-family: "Open Sans",sans-serif;
}
.shine-explore {
    padding: 15px 5px;
    background-color: #fff;
    float: left;
}
.shine-explore .buy-now {
    -ms-justify-content: space-between;
    justify-content: space-between;
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    line-height: 45px;
    border-bottom: 1px solid #ebebeb;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    z-index: 1111;
    padding: 15px 20px
}
.shine-explore .buy-now h3{
    margin: 10px 0;
    float: left;
    line-height: 26px;
}
.shine-explore .buy-now a.btn-buy{
    display: inline-block;
    padding: 0 20px;
    background: #f78a1b;
    line-height: 46px;
    text-align: center;
    font-size: 14px;
    text-decoration: none;
    border-radius: 50px;
    text-transform: uppercase;
    color: white;
    float: right;
    font-weight: bold;
    font-family: "Open Sans",sans-serif;
}
.shine-explore .buy-now a.btn-buy:hover{
    opacity: 0.8;
}
.toolbar-list {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-top: 80px;
}
.toolbar-list .item {
    width: 100%;
    padding: 10px 5px;
}
.toolbar-list .niche-thumb{
    border: 3px solid #f2f2f2;
    position: relative;
    max-height: 280px;
    overflow: hidden;
}
.niche-thumb img {
    max-width: 100%;
}
.toolbar-list .niche-thumb:before {
    background: rgba(0, 0, 0, 0.5) none repeat scroll 0 0;
    content: "";
    height: 100%;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    transition: all 0.3s ease 0s;
    visibility: hidden;
    width: 100%;
}
.toolbar-list .niche-thumb:hover .btn-link, .toolbar-list .niche-thumb:hover:before {
    opacity: 1;
    visibility: visible;
}
.toolbar-list .btn-link {
    background: #fff none repeat scroll 0 0;
    border-radius: 20px;
    display: inline-block;
    font-size: 11px;
    font-weight: bold;
    height: 30px;
    left: 50%;
    line-height: 30px;
    opacity: 0;
    padding: 0 18px;
    position: absolute;
    text-transform: uppercase;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.2s ease 0s;
    visibility: hidden;
    white-space: nowrap;
    color: #f78a1b !important;
}
.toolbar-list .btn-link:hover{
    color: #000 !important;
}
.toolbar-list .item .niche-title {
    font-size: 14px;
    font-weight: bold;
    margin-top: 5px;
    text-align: center;
}
.toolbar-list .item .niche-title a {
    color: #000;
    transition: 0.2s ease-in-out;
}
.toolbar-list .item .niche-title a:hover{
    color: #f78a1b;
}

@media (max-width: 400px) {
    .shine-explore .buy-now {
        flex-direction: column;
        text-align: center;
    }
    .toolbar-list .item{
        float: none;
        width: 100%;
    }
    .shine-explore .buy-now a.btn-buy{
        margin: 0 auto;
        line-height: 43px;
    }
}