/*common-css*/

html,
body {
    margin: 0;
    padding: 0;
    background-color: #fff;
}

img {
    max-width: 100%;
    width: 100%;
    display: block
}

.d-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.justify-content-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
}

.align-items-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.verticle-horizontal-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.flex-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
}

.align-self-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
}

.justify-content-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

::before,
::after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.clear {
    clear: both
}

a {
    cursor: pointer;
    display: block;
}

.mm-items-promo-block{
    max-width: 1180px;
    width: 100%;
    margin: 0 auto; 
    position: relative;
}

.mm-items-promo-block::after {
    content: "";
    clear: both;
    display: table;
}
.mm-items-promo-row{
    margin: 0 -5px 0 -5px; 
}
.promo-listing-outer-block{
    float: left
}
.mm-individual-promo-items-blk{
    width: 25%;
    padding:0 5px;
    float: left; 
}
.mm-individual-promo-items-blk-inner{
    background-color:#f6f6f6;
    padding: 10px;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px; 
}
.mm-items-listing-block{
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}
.mm-items-image-block{
    min-width: 60px;
    max-width: 60px;
    height: 60px;
    background-color: #fff;
    overflow: hidden;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius:5px; 
    overflow: hidden;  
}
.mm-items-image-block-inner{
    width: 100%;
    position: relative;
    padding-bottom: 100%;
    -webkit-animation:  placeHolderShimmer 2s linear infinite forwards;
    animation:  placeHolderShimmer 2s linear infinite forwards;
    background-color: #f6f7f8;
    background: linear-gradient(to right, #eeeeee 8%, #bbbbbb 18%, #eeeeee 33%);
    background-size: 200px 60px;
}
@keyframes placeHolderShimmer {
    0% {
        background-position: -200px 0
    }
    100% {
        background-position: 200px 0
    }
}
@-webkit-keyframes placeHolderShimmer {
    0% {
        background-position: -200px 0
    }
    100% {
        background-position: 200px 0
    }
}
.mm-items-image-block-inner img{
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    color: #F7F7F7;
}
.mm-items-description-block{
    padding-left: 10px;
}
.mm-items-title{
    font-size: 14px;
    line-height: 15px;
    font-weight: 500;
    color: #E40011;;
    text-align: left;
    font-family: 'Roboto', sans-serif;
    text-transform: uppercase;
    margin-bottom: 5px;
}
.mm-items-description{
    font-family: PanchariUni;
    font-size: 19px;
    line-height: normal;
    font-weight: 500;
    color: #333;
    -webkit-line-clamp: 2;
    max-height: 55px;
    overflow: hidden;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    width: 100%;
}

/*common-css*/
@media only screen and (max-width: 1000px) {

    .mm-individual-promo-items-blk{
        width:50%;
        margin-bottom: 10px;     
    }
    .mm-individual-promo-items-blk:nth-child(3), .mm-individual-promo-items-blk:nth-child(4) {
        margin-bottom: 0;  
    }
}
@media only screen and (max-width: 768px) {
    .mm-individual-promo-items-blk{
        width:100%;
        margin-bottom: 10px;     
    }
    .mm-individual-promo-items-blk:nth-child(3) {
        margin-bottom: 10px;  
    }
    .mm-individual-promo-items-blk:nth-child(4) {
        margin-bottom:0;  
    }
}