.BtnLink a {
    font-family: "Gotham SSm medium A", "Gotham SSm medium B", "Gotham Medium", Helvetica, Arial, sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    color: white;
    text-decoration: none;
    position: relative;
    padding-top: 16px;
    padding-right: 30px;
    padding-bottom: 16px;
    padding-left: 30px;
    display: table;
    line-height: 14px;
    min-width: 110px;
    text-align: center;
    background-color: black;
}

.recommendations {
    display: none;
}

#SpecialOffers-Template-Aspot-Type-B {
    text-align: center;
    padding: 12px;
    margin-bottom: 60px;
    background-color: #FFF;
    font-size: 0px;
    display: block;
    position: relative;
    padding-top: 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    display: none;
}

body {
    color: #404040;
    font: 100 1em/150%;
    font-family: 'ClarinsRegular';
}

p {
    font-size: 14px;
    line-height: 1em;
    font-family: gotham ssm medium a, gotham ssm medium b, Gotham, Helvetica, Arial, sans-serif;
    text-transform: uppercase;
}


.wrapper {
    max-width: 1200px;
    margin: auto;
}

h1,
h2,
h3,
h4 {
    font-weight: 900;
    color: #333;
    margin: 1.5em 0 0.5em;
}

h1 {
    font-size: 2em;
}

h2 {
    font-size: 1.8em;
}

h3 {
    font-size: 1.5em;
}

h4 {
    font-size: 1.3em;
}

strong {
    font-weight: 600;
}

hr {
    border: none;
    height: 1px;
    background-color: rgba(51, 153, 204, 0.2);
}

.img-placeholder {
    background-image: url("http://placehold.it/200x100/CC99CC/ffffff&text=Feature");
    background-size: cover;
    min-height: 100px;
    min-width: 100px;
}

/*Basic Grid Styles*/
.Grid {
    display: flex;
    flex-flow: row;
    flex-wrap: wrap;
}

.u-textCenter {
    text-align: center;
}

.Grid-cell {
    flex: 1;
}


/* With gutters*/
.Grid--gutters {
    margin-left: -1em;
}

.Grid--gutters .Grid-cell {
    padding-left: 10em;
}

.Grid--gutters .Grid--nested .Grid-cell:first-of-type .Demo {
    margin-right: 1em;
}

/* Justify per row*/
.Grid--right {
    justify-content: flex-end;
}

.Grid--center {
    justify-content: center;
}

/* Alignment per row */
.Grid--top {
    align-items: flex-start;
}

.Grid--bottom {
    align-items: flex-end;
}

.Grid--center {
    align-items: center;
}

/* Alignment per cell */
.Grid-cell--top {
    align-self: flex-start;
}

.Grid-cell--bottom {
    align-self: flex-end;
}

.Grid-cell--center {
    align-self: center;
}

.navigation {
    list-style: none;
    /*background: deepskyblue;*/
    background: rgba(102, 51, 255, 0.1);
    margin: 0 0 1em;
    border: 1px solid #33cccc;
    border-radius: 3px;
    display: flex;
    -webkit-flex-flow: row wrap;
    justify-content: flex-end;
}

.navigation a {
    text-decoration: none;
    display: block;
    padding: 1em;
    color: #333;
}

.navigation a:hover {
    background: rgba(64, 0, 255, 0.1);
    border-radius: 3px;
}

.navigation:hover {
    background: rgba(102, 51, 255, 0.25);
}

@media all and (max-width: 800px) {
    .navigation {
        justify-content: space-around;
    }
}

@media all and (max-width: 600px) {
    .navigation {
        -webkit-flex-flow: column wrap;
        flex-flow: column wrap;
        padding: 0;
    }

    .navigation a {
        text-align: center;
        padding: 10px;
        border-top: 1px solid rgba(255, 255, 255, 0.3);
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .navigation li:last-of-type a {
        border-bottom: none;
    }
}

/*===========================================*/
/* Base classes for all media - Mobile first */
.Grid--cols-2>.Grid-cell {
    flex: 0 0 100%;
}

.Grid--cols-3>.Grid-cell {
    flex: 0 0 100%;
}

.Grid--cols-4>.Grid-cell {
    flex: 0 0 100%;
}

.Grid--cols-6>.Grid-cell {
    flex: 0 0 calc(50% - 1em);
}

.Grid--cols-12>.Grid-cell {
    flex: 0 0 calc(33.3333% - 1em);
}

.Grid--holly-grail .aside,
.Grid--holly-grail .main {
    flex: 1 100%;
}

/* One of -- columns*/
.Grid--1of2>.Grid-cell,
.Grid--1of4>.Grid-cell:first-of-type,
.Grid--1of3>.Grid-cell:first-of-type {
    flex: 0 0 100%;
}

.Grid--1of6>.Grid-cell:first-of-type {
    flex: 0 0 50%;
}

.Grid--fit>.Grid-cell {
    flex: 1;
}

.Grid--full>.Grid-cell {
    flex: 0 0 100%;
}

/* Tablet (medium) screens */
@media (min-width: 30em) {
    .Grid--cols-4>.Grid-cell {
        flex: 0 0 calc(50% - 1em);
    }

    .Grid--cols-6>.Grid-cell {
        flex: 0 0 calc(33.3333% - 1em);
    }

    .Grid--cols-12>.Grid-cell {
        flex: 0 0 calc(16.6666% - 1em);
    }

    .Grid--holly-grail .aside {
        flex: 1 calc(25% - 1em);
    }

    .Grid--1of2>.Grid-cell {
        flex: 0 0 50%;
    }

    .Grid--1of6>.Grid-cell:first-of-type {
        flex: 0 0 30%;
    }

    .Grid--1of4>.Grid-cell:first-of-type {
        flex: 0 0 50%;
    }

    .Grid--1of3>.Grid-cell:first-of-type {
        flex: 0 0 100%;
    }
}

/* Large screens */
@media (min-width: 48em) {

    .Grid--cols-2>.Grid-cell,
    .Grid--cols-3>.Grid-cell,
    .Grid--cols-4>.Grid-cell,
    .Grid--cols-6>.Grid-cell,
    .Grid--cols-12>.Grid-cell {
        flex: 1;
    }

    .Grid--holly-grail .main {
        flex: 2;
    }

    .Grid--holly-grail .aside {
        flex: 1;
    }

    .Grid--holly-grail .aside-1 {
        order: 1;
    }

    .Grid--holly-grail .main {
        order: 2;
    }

    .Grid--holly-grail .aside-2 {
        order: 3;
    }

    .Grid--1of2>.Grid-cell {
        flex: 0 0 50%;
    }

    .Grid--1of6>.Grid-cell:first-of-type {
        flex: 0 0 16.6666%;
    }

    .Grid--1of4>.Grid-cell:first-of-type {
        flex: 0 0 25%;
    }

    .Grid--1of3>.Grid-cell:first-of-type {
        flex: 0 0 30%;
    }

    .Grid--gutters.Grid--nested .Grid-cell:first-of-type .Demo {
        margin-right: 0;
    }
}

.content-1of4::before {
    content: "1/4";
}

.content-1of6::before {
    content: "1/6";
}

.content-1of12::before {
    content: "1/12";
}

/*Special offer custom CSS*/
.specialoffertitlemh {
    text-transform: capitalize;
    color: #be0f34;
    font-weight: 500;
    text-align: center;
    font-size: 35px;
    font-family: 'ClarinsRegular';
    font-style: italic;
}

.product-tile .product-quickshop {
    font-family: "Gotham SSm medium A", "Gotham SSm medium B", Helvetica, Arial, sans-serif;
    font-size: 10px;
    letter-spacing: 1px;
    border: 2px solid #000000;
    background-color: #000;
    margin-left: -85%;
}

.quickviewText {
    color: #fff;
}

.prodheaderimg {
    margin-left: -65%;
    width: 45%;
}

.prodfirstheaderimg {
    margin-left: 0%;
}

.prodfooterimg {
    margin-left: 0%;
}

.firstchild {
    min-height: 770px;
}

.secondchild {
    min-height: 670px;
}

.thirdchild {
    min-height: 670px;
}

.specialoffertitlespanmh {
    text-transform: uppercase;
    color: #000000;
    font-weight: 400;
    font-style: normal;
    font-size: 22px;
}

.mhtitle {
    color: #be0f34;
    text-align: left;
    font-size: 18px;
}

.mhsubtitle {
    text-align: left;
    font-size: 16px;
}

.mhmention {
    text-align: left;
    font-size: 11px;
}

.mhproddesc {
    text-align: left;
    font-size: 14px;
}

/*best seller*/
.specialoffertitlebs {
    text-transform: uppercase;
    color: #be0f34;
    font-weight: 300;
    text-align: center;
    font-size: 35px;
}

.specialoffertitlespanbs {
    text-transform: uppercase;
    color: #be0f34;
    font-weight: 500;
}

.bstitle {
    color: #be0f34;
    text-align: left;
    font-size: 18px;
}

.bssubtitle {
    text-align: left;
    font-size: 16px;
}

.bsmention {
    text-align: left;
    font-size: 11px;
}

.bsproddesc {
    text-align: left;
    font-size: 14px;
    min-height: 50px;
}

/*best seller*/
.specialoffertitlecm {
    text-transform: capitalize;
    color: #2e4591;
    font-weight: 500;
    text-align: center;
    font-size: 35px;
    font-family: 'ClarinsRegular';
    font-style: italic;
}

.specialoffertitlespancm {
    text-transform: uppercase;
    color: #000;
    font-weight: 400;
    font-style: normal;
    font-size: 22px;
}

.cmtitle {
    color: #2e4591;
    text-align: left;
    font-size: 18px;
}

.cmsubtitle {
    text-align: left;
    font-size: 16px;
}

.cmmention {
    text-align: left;
    font-size: 11px;
}

.cmproddesc {
    text-align: left;
    font-size: 14px;
    min-height: 50px;
}

.prodimg {
    margin-left: -35%;
}

.prodheaderimgv2 {
    margin-left: -65%;
    width: 45%;
}

#CTAprodDesc {
    margin-left: -50%;
    text-align: left;
    font-size: 16px;
    margin-top: 5%;
    font-weight: 600;
}

#CTAprodDesc2 {
    margin-left: -50%;
    text-align: left;
    font-size: 16px;
    margin-top: 5%;
    font-weight: 600;
}

#CTAprodtextalign {
    margin-left: -21%;
    min-height: 60px;
}

/*Responsiveness*/
@media only screen and (min-device-width : 834px) and (max-device-width : 1112px) and (orientation : portrait) and (-webkit-min-device-pixel-ratio: 2) {
    .prodfirstheaderimg {
        margin-left: 0%;
        width: 100%;
    }

    .prodfooterimg {
        margin-left: 0%;
        width: 100%;
    }

    .prodheaderimg {
    margin-left: -45%;
    width: 70%;
}

    .prodheaderimgv2 {
    margin-left: -50%;
    width: 70%;
}

    .prodimg {
        margin-left: -35%;
        width: 85%;
    }

    .firstchild {
        min-height: 670px;
    }

    .secondchild {
        min-height: 540px;
    }

    .Grid--gutters {
        margin-left: -6em;
    }

    #CTAprodtextalign {
        margin-left: -32%;
        min-height: 60px;
    }

    .BtnLink a {
        font-family: "Gotham SSm medium A", "Gotham SSm medium B", "Gotham Medium", Helvetica, Arial, sans-serif;
        font-size: 11px;
        text-transform: uppercase;
        color: white;
        text-decoration: none;
        position: relative;
        padding-top: 16px;
        padding-right: 30px;
        padding-bottom: 16px;
        padding-left: 30px;
        display: table;
        line-height: 14px;
        min-width: 75px;
        text-align: center;
        background-color: black;
    }

    #CTAprodDesc {
        margin-left: -105%;
        text-align: left;
        font-size: 13px;
        margin-top: 20%;
        font-weight: 600;
    }

    #CTAprodDesc2 {
        margin-left: -105%;
        text-align: left;
        font-size: 13px;
        margin-top: 20%;
        font-weight: 600;
    }
}

@media only screen and (min-device-width : 834px) and (max-device-width : 1112px) and (orientation : landscape) and (-webkit-min-device-pixel-ratio: 2) {
    .prodfirstheaderimg {
        margin-left: 0%;
        width: 100%;
    }

    .prodimg {
        margin-left: -35%;
        width: 80%;
    }

    .prodheaderimg {
        margin-left: -68%;
    }

    .prodheaderimgv2 {
    margin-left: -65%;
}

    .prodfooterimg {
        margin-left: 0%;
        width: 100%;
    }

    .firstchild {
        min-height: 670px;
    }

    .secondchild {
        min-height: 570px;
    }

    .thirdchild {
        min-height: 570px;
    }

    #CTAprodtextalign {
        margin-left: -24%;
        min-height: 60px;
    }

    #CTAprodDesc {
        margin-left: -60%;
        text-align: left;
        font-size: 14px;
        margin-top: 5%;
        font-weight: 600;
    }

    #CTAprodDesc2 {
        margin-left: -60%;
        text-align: left;
        font-size: 14px;
        margin-top: 5%;
        font-weight: 600;
    }

    .mhmention {
        text-align: left;
        font-size: 11px;
        width: 70%;
        line-height: 13px;
    }

    .bsmention {
        text-align: left;
        font-size: 11px;
        width: 65%;
        line-height: 13px;
    }
}

@media only screen and (min-device-width : 375px) and (max-device-width : 667px) and (-webkit-min-device-pixel-ratio: 2) {
    .Grid--gutters .Grid-cell {
        padding-left: 15em;
    }

    .prodfirstheaderimg {
        margin-left: 0%;
        width: 100%;
    }

    .prodfooterimg {
        margin-left: 0%;
        width: 100%;
    }

    .prodimg {
        margin-left: -50%;
        width: 65%;
    }

    .Grid--gutters {
        margin-left: -8em;
    }
    .specialoffertitlespancm {
    text-transform: uppercase;
    color: #000;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
}

    .prodheaderimg {
        margin-left: -51%;
        width: 65%;
    }


    .prodheaderimgv2 {
            margin-left: -50%;
            width: 55%;
            margin-top: -10%;
    }

    .mhproddesc {
        text-align: center;
        font-size: 14px;
        width: 50%;
    }

    .mhsubtitle {
        text-align: center;
        font-size: 13px;
        margin-left: -50%;
    }

    .mhmention {
        text-align: center;
        font-size: 11px;
        width: 49%;
    }

    .BtnLink a {
        font-family: "Gotham SSm medium A", "Gotham SSm medium B", "Gotham Medium", Helvetica, Arial, sans-serif;
        font-size: 11px;
        text-transform: uppercase;
        color: white;
        text-decoration: none;
        position: relative;
        padding-top: 16px;
        padding-right: 30px;
        padding-bottom: 16px;
        padding-left: 30px;
        display: table;
        line-height: 14px;
        min-width: 110px;
        text-align: center;
        background-color: black;
        margin-left: 6%;
    }

    .firstchild {
        min-height: 1190px;
    }

    .secondchild {
        min-height: 925px;
    }

    #CTAprodtextalign {
        margin-left: -36%;
        min-height: 60px;
        margin-bottom: 20px;
    }

    #CTAprodDesc {
        margin-left: -48%;
        text-align: center;
        font-size: 16px;
        margin-top: 5%;
        font-weight: 600;
    }

    #CTAprodDesc2 {
        margin-left: -48%;
        text-align: center;
        font-size: 16px;
        margin-top: 5%;
        font-weight: 600;
        padding-bottom: 70px;
    }

    .mhtitle {
        color: #be0f34;
        text-align: center;
        font-size: 18px;
        margin-left: -50%;
    }

    .bstitle {
        color: #be0f34;
        text-align: center;
        font-size: 18px;
        margin-left: -50%;
    }

    .bssubtitle {
        text-align: center !important;
        font-size: 13px;
        margin-left: -50%;
    }

    .bsproddesc {
        text-align: center !important;
        font-size: 14px;
        min-height: 50px;
        margin-left: -50%;
    }

    .bsmention {
        text-align: center !important;
        font-size: 11px;
        width: 65%;
        margin-left: -10%;
    }

    .cmtitle {
        color: #2e4591;
        text-align: center !important;
        font-size: 18px;
        margin-left: -50%;
    }

    .cmsubtitle {
        text-align: center !important;
        font-size: 13px;
        margin-left: -50%;
    }

    .cmproddesc {
        text-align: center !important;
        font-size: 14px;
        min-height: 50px;
        margin-left: -50%;
    }
    .specialoffertitlespanmh {
    text-transform: uppercase;
    color: #000000;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
}
}

.bssubtitle {
    text-align: left;
    font-size: 13px;
}

.bsmention {
    text-align: left;
    font-size: 11px;
    width: 65%;
}

.cmsubtitle {
    text-align: left;
    font-size: 13px;
}

.product-tile .product-quickshop {
    font-family: "Gotham SSm medium A", "Gotham SSm medium B", Helvetica, Arial, sans-serif;
    font-size: 16px;
    letter-spacing: 1px;
    border: 2px solid #000000;
    background-color: #000;
    margin-left: auto;
    padding: 5px;
    display: block;
}

.product-tile {
    margin-left: 0px;
    margin-right: 20px;
    color: #000;
    position: relative;
    text-align: center;
    padding: 0px;
}

.product-tile {
    border: 1px solid #ffffff;
    padding: 5px 0px;
}


.prodheaderimg {
    margin-left: -65%;
    width: 470px;
    height: 361px;
}

/* ------------------------- */
/* .prodimg {
    margin-left: -11%;
}
.cmproddesc {
    text-align: center;
    font-size: 14px;
    min-height: 50px;
} */
.bsmention {
    text-align: left;
    font-size: 11px;
    width: 65%;
    margin-left: 101px;
}

.BtnLink1 a {
    font-family: "Gotham SSm medium A", "Gotham SSm medium B", "Gotham Medium", Helvetica, Arial, sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    color: white;
    text-decoration: none;
    position: relative;
    padding-top: 16px;
    padding-right: 30px;
    padding-bottom: 16px;
    padding-left: 30px;
    display: table;
    line-height: 14px;
    min-width: 115px;
    text-align: center;
    background-color: black;
   margin-left: 129px;;
    margin-top: -30px;
    margin-bottom: 45px;
    
}
.bd-is-mobile{
    display:none;
  }
@media screen AND (max-width: 761px) {
    .bd-is-mobile{
        display:block;
      }
    
    .is-desktop {
        display: none;
      }
    

    .BtnLink1 a {
        
        margin-left: 31px;
        margin-top: -23px;
    }
    /* .bsmention {
        text-align:center;   
        font-size: 10px;
        width: 60%;
        margin-left: -75px;
    } */
  
}
.mhproddesc {
    
    font-size: 12px;
  
}


.specialoffertitlespancm1 {
    text-transform: uppercase;
    font-weight: 400;
    font-style: normal;
    font-size: 22px;
    color: #2e4591;
}

.cmproddesc {
    font-size: 14px;
    min-height: 50px;
    text-align: center;
    margin-left: -140px;
}

/* .bsmention {
    text-align:center;   
    font-size: 10px;
    width: 60%;
    margin-left: 11px;
} */

@media only screen
and (min-device-width : 375px)
and (max-device-width : 667px)
and (-webkit-min-device-pixel-ratio: 2) {
    
        .mhmention {
            text-align: center;
            font-size: 11px;
            width: 54%;
            margin-left: -18px;
        }
   

    .cmproddesc {
        font-size: 14px;
        min-height: 50px;
        text-align: center;
        margin-left: -241px;
    }

    .mhsubtitle {
        margin-left: 26px;
        max-width: 175px;
        
    }
    .bsmention {
        margin-top: -115%;
        padding-left: 7px;
    }
    .Grid--gutters .Grid-cell {
        padding-left: 159px;
    }

    .mhproddesc1 {
    padding-left: 18px;

    }
 }

 @media only screen
and (min-device-width : 834px)
and (max-device-width : 1112px)
and (orientation : portrait)
and (-webkit-min-device-pixel-ratio: 2) {
    .Grid--cols-2>.Grid-cell {
        margin-left: 16px;
        align-items: center;
    }

    #CTAprodDesc {
        margin-left: -110%;
        text-align: left;
        font-size: 13px;
        margin-top: 20%;
        font-weight: 600;
        max-width: 400%;
    }

    #CTAprodDesc2 {
        margin-left: -110%;
        text-align: left;
        font-size: 13px;
        margin-top: 20%;
        font-weight: 600;
        max-width: 400%;
    }

    .bsmention {
        padding-left: 15px;
    }
 }

 @media only screen
and (min-device-width : 834px)
and (max-device-width : 1112px)
and (orientation : landscape)
and (-webkit-min-device-pixel-ratio: 2){
    .Grid--gutters .Grid-cell {
        padding-left: 12em;
    }
   
    .bsmention {
        text-align: left;
        font-size: 11px;
        width: 65%;
        padding-left: 44px;
    }

    .mhproddesc1 {
        padding-left: 24px;
    }
    
    #CTAprodDesc {
        margin-left: -83%;
        text-align: left;
        font-size: 14px;
        margin-top: 5%;
        max-width: 354%;
        font-weight: 600;
    }

    #CTAprodDesc2 {
        margin-left: -83%;
        text-align: left;
        font-size: 14px;
        margin-top: 5%;
        max-width: 354%;
        font-weight: 600;
    }

    .cmproddesc {
        margin-left: -153px;
}
  
}
@media only screen 
    and (device-width : 414px) 
    and (device-height : 896px) 
    and (-webkit-device-pixel-ratio : 2) {
        .bsmention {
            padding-left: 16px;
            width: 291px;
        }
        .Grid--gutters .Grid-cell {
            padding-left: 16em;
        }


        .mhsubtitle {
        text-align: center!important;
        }
     }

    .mhproddesc1 {
        text-align: left;
        font-size: 12px;
        width:75%;
        margin-left: 6px;
    }
    
    .bsmention {
        text-align: left;
        font-size: 11px;
        width: 65%;
        margin-left: 116px;
    }

@media screen and (max-width: 761px){
    .mhsubtitle {
    text-align: center;
    }

    .mhproddesc1 {
    margin-left: -15px;
    }
}

/*DTW EDITS*/
.mhsubtitle {
    text-align: left;
}

@media screen and (max-width: 761px){
    .mhsubtitle {
    text-align: center!important;
    }
}

.mhsubtitle{
    line-height: 1.5em;
}
.bssubtitle{
    line-height: 1.5em;   
}
.bsprodmention{
    text-align: left;
    margin: 10px 0;
    padding: 0;
}

.Grid-cell.custom-2021 {
    text-align: center;
    margin: 0 auto;
    width: 100%;
    display: block;
    flex: unset;
    margin: 0;
    padding: 0;
}
.Grid-cell.custom-2021 .bssubtitle {
    text-align: center;
}
.Grid-cell.custom-2021 .bstitle {
    text-align: center;
}
.Grid-cell.custom-2021 .prodimg{
    margin-left: 0;
}
.Grid-cell.custom-2021 .bsproddesc {
    text-align: center;
    min-height: 0;
}
.Grid-cell.custom-2021 .BtnLink a{
    margin: 0 auto;
}

/*DTW Responsive Edits*/
@media only screen
and (min-device-width : 834px)
and (max-device-width : 1112px)
and (orientation : portrait)
and (-webkit-min-device-pixel-ratio: 2) { 
    .Grid-cell.custom-2021 .prodimg {
        width: 28%;
    }
    .Grid--gutters.Grid--cols-2.u-textCenter.custom-2021-center {
        margin-left: 0;
    }
    .bsprodmention{
        padding: 0 80px 0 0;
    }
    .thirdchild{
        min-height: 600px;
    }
}

@media only screen
and (min-device-width : 834px)
and (max-device-width : 1112px)
and (orientation : landscape)
and (-webkit-min-device-pixel-ratio: 2) { 
    .Grid--gutters.Grid--cols-2.u-textCenter.custom-2021-center {
        margin-left: 0;
    }
    .Grid-cell.custom-2021 .prodimg {
        width: 28%;
    }
}

@media screen and (max-width: 761px){
    .Grid--gutters.Grid--cols-2.u-textCenter.custom-2021-center {
        margin-left: 0 !important;
    }
    .Grid-cell.custom-2021 .bssubtitle {
        margin-left: 0 !important;
    }
    .Grid-cell.custom-2021 .bstitle {
        margin-left: 0 !important;
    }
    .Grid-cell.custom-2021 .prodimg{
        margin-left: 0 !important;
    }
    .Grid-cell.custom-2021 .bsproddesc {
        margin-left: 0 !important;
    }
    .bsprodmention {
        text-align: center;
        margin: 10px 0 10px -234px;
        padding: 0 226px;
    }
}