.top-banner{
    margin:10px 40px;
    cursor: pointer;
}

.flex-center{
    display: flex;
    justify-content: center;
    align-items: center;
}


.home-container{
    /* display: flex;
    justify-content: center; */
    padding: 0 50px;
    overflow-x: hidden;
    /* gap:20px; */
}

.home-container .main-content{
    width: 100%;
    display: flex;
    gap:20px;
    overflow-x:hidden;
    justify-content: center;
}

.home-container .main-content .actual-content{
    /* width: 70vw */
    display: block;
    margin-left: 20px;
    flex-direction: column;
}

.main-content  #sidebar{
    min-width: 20%;
}

.main-content .actual-content,
.main-content .grid-view-content{
    width: 80%;
}

.actual-content .new-offers #myCarousel{
	z-index: -1;
}

.row-fluid .thumbnails{
    display: flex;
    gap:10px;
    overflow-x: scroll;
}

.row-fluid .thumbnails li{
    min-width: 32%;
}

.row-fluid .thumbnails li .thumbnail{
    width: 100%;
}
.row-fluid .thumbnails li .thumbnail img{
    max-width: 60%;
}

.row-fluid .thumbnails::-webkit-scrollbar {
    height: 4px;
}

.row-fluid .thumbnails::-webkit-scrollbar-thumb {
    border-radius: 25px;
    background-color: darkgrey;
    /* outline: 1px solid slategrey; */
  }

.our_client{
    padding: 20px;
}
.our_client .clients-logos{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
}

.list-row{
    display: flex;
    gap:30px;
    width: 70%;
}

.list-row .list-row-parent{
    /* max-width: ; */
    display: block;
    margin-left: 20px;
    flex-direction: column;
}

.list-row-parent .item-row{
    display: flex;
}

.three-col{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.three-col .thumbnails{
    width: 100%;
    display: grid;
    gap:8px;
    grid-template-columns: repeat(3, 1fr);
}

.four-col-main{
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100%;
}
.four-col-main .thumbnails{
    margin: 0;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.four-col-main .thumbnails .thumbnail-row{
    margin: 20px 0;
    /* display: flex; */
    /* flex-direction: column; */
    /* align-items: center; */
}

.four-col-main .thumbnails .thumbnail-row .row-content{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 10px;
}

.four-col-main .thumbnails .thumbnail-row .row-content .span3{
    min-width: 20px;
}

.four-col-main .thumbnails .row-title{
    margin:0 20px;
    font-weight: bolder;
    font-size: 17px;
}

.footer{
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
	background-color: #222;
	color: #eee;
	padding: 28px 8px 18px;
	margin-top: 18px;
}

.footer a {
	color: #bbb;
	font-size: 12px;
}

.copyright {
	padding: 10px;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    text-align: center;
	/* clear: both;
	border-top: 1px solid #CCC;
	font-size: 13px;
	background: #f2f2f2;
	box-shadow: 0 0 3px #B1AFAF; */
}

.pull-right{

}

#myCarousel .carousel-inner{
    display: flex;
    justify-content: center;
}

.lower-search{

}

.cart-row{
    transition: .8s cubic-bezier(0.4, 0, 1, 1);
}

.cart-row .cart-prod-img{
    max-width: 108px;
}

.add-to-cart {
    cursor: pointer;
	margin: 0;
	color: #fff;
    font-weight: bold;
    padding: 7px 12px;
	text-align: center;
	border-radius: 2px;
	background: #097dea;
	display: inline-block;
	border: 0;
}

.notification{
    position: fixed;
    display: flex;
    align-items: center;
    bottom: 20px;
    right: 200px;
    min-width: 200px;
    max-width: 60%;
    font-weight: bold;
    height: 30px;
    background-color: white;
    box-shadow: 1px 3px 10px -5px rgba(0,0,0,.5);
    border-radius: 5px;
    overflow: hidden;
    transform: translateX(413px);
    transition: .5s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.notification span{
    padding: 10px;
    background-color: #06f806;
    color: #ffff;
}

.notification .success{
    background-color: #06f806;
}
.notification .warning{
    background-color: #097dea;
}
.notification .danger{
    background-color: #f80606;
}

.notification .text{
    padding: 0 10px;
}
@media only screen and (min-width: 1115px) {
    .row-fluid .thumbnails li{
        min-width: 27%;
    }
}