#HeaderWrapper {
    width: 100%;
    background-color: white;
    transform: translateZ(0);
    transition:all 0.5s;
    position: fixed;
    z-index: 99998;
}


.sticky {
    position: fixed !important;
    top: 0;
    width: 100%;
    z-index: 99999999999 !important;
    box-shadow:0 2px 6px rgba(0,0,0,0.2);  
    animation:slide-down 0.5s;
}

@keyframes slide-down {
    0% {
        opacity: 0;
        transform: translateY(-100%);
    } 
    100% {
        opacity: 0.9;
        transform: translateY(0);
    } 
}

#Header {
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    height: 100px;
}

#GirlPowerImg {
    position: absolute;
    right: 0px;
    top: 130px;
    z-index: 98;
}

#GirlPowerImg img {
    width: 100px;
}

/*********TOP BANNER*********/

#TopBannerWrap {
    text-align: center;
    border-bottom: 2px solid #b6b6b6;
    color: #9a9a9b;
    font-size: 18px;
    padding: 5px 0px;
}

@keyframes marquee {
    0% {
        margin-left: 100%;
        transform: translateX(0%);
    }

    100% {
        margin-left: 0;
        transform: translateX(-100%);
    }
}

.section {
    overflow: hidden;
    background-color: #676767;
}

.marquee {
    animation: marquee 30s linear infinite;
    display: inline-block;
    white-space: nowrap;
}

.text-styling {
    background-color: #676767;
    height: 35px;
    line-height: 35px;
    color: #fff;
    margin: 0px;
}

/**************LOGO**************/
#HeaderLogoWrapper {
    display: inline-block;
    padding-top: 12px;
    padding-left: 20px;
}

.HeaderLogo {
    border: none;
}

#AdminLink {
    position: absolute;
    top: 1px;
}

/***********TOP NAVIGATION***********/

#TopNavigationWrapper {
    float: right;
    position: relative;
    width: 360px;
    top: 17px;
    margin-right: 10px;
    text-align: right;
    z-index: 999999999999;
}

#TopNavigationWrapper > li > a,
#TopNavigationWrapper > li > a:active,
#TopNavigationWrapper > li > a:hover,
#TopNavigationWrapper > li > a:visited {
    display: block;
    color: #436092;
}

#TopNavigationWrapper > li > a:hover {
    text-decoration: none;
}
    

.TopNavigation {
    padding: 0px;
    position: relative;
    float: right;
    color: #535353;
    font-size: 14px;
}

.TopNavigation ul {
    padding: 0px;
    margin: 0px;
}

.TopNavigation li {
    display: inline-block;
    margin-right: 10px;
    border-right: 1px solid #000;
    padding-right: 10px;
    box-shadow: 0 0 1px transparent;
}

.TopNavigation li:nth-last-child(1) {
    border-right: 0px;
    padding: 0px;
    margin: 0px;
}

.TopNavigation > li:hover,
.TopNavigation li:hover > a {
    text-decoration: none !important;
    color: #436092;
    font-weight: bold;
}

#HeaderShoppingCart {
    border-right: 0px;
    padding-right: 0px;
    margin-right: 0px;
}

#HeaderMyAccount {
    z-index: 99999999;
    cursor: pointer;
}

    #HeaderMyAccount::before {
        content: "";
        width: 0;
        height: 0;
        border-left: 20px solid transparent;
        border-right: 20px solid transparent;
        border-bottom: 15px solid #013983;
        position: absolute;
        top: -10px;
        right: 40px;
        margin: auto;
    }

#HeaderLoginStatus {
    position: relative;
}



/***************************
      SIGN IN DROPDOWN
 ***************************/

#HeaderLogin {
    display: none;
    z-index: 9999999999;
    position: absolute;
    top: 70px;
    right: 0px;
    left: 0px;
    margin: 0 auto;
    font-family: arial, sans-serif;
    font-weight: bold;
    font-size: 13px;
    box-sizing: border-box;
    text-align: left;
    min-height: 200px;
    padding-top: 20px;
    transform: translateZ(0);
    backface-visibility: hidden;
    transition-duration: 0.3s;
    transition-property: transform;
    transition-timing-function: ease-out;
    width: 100%;
    max-width: 400px;
    background-color: #ffffff;
    border: 2px solid #216b97;
    padding: 10px;
    box-shadow: 0px 0px 3px -1px #062a40;
}

#SignInBG {
    position: fixed;
    width: 100%;
    background-color: black;
    z-index: 999999;
    height: 99999px;
    opacity: .6;
    left: 0px;
    top: 0px;
    filter: alpha(opacity=50) !important;
}

#CloseSignIn {
    position: absolute;
    right: 10px;
    top: 10px;
    font-size: 18px;
    cursor: pointer;
    color: #000;
}

#HeaderLogin input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 30px #fff inset;
    background-color: transparent;
}

#LoginFormWrapper {
    margin-bottom: 0px;
}

#HeaderLoginContent #ErrorWrapper {
    display: none;
}

.HeaderRequired,
.Logonerror {
    color: red;
}

#LoginFormContent {
    text-align: center;
}

img.LoginIcon {
    width: 25px;
    vertical-align: middle;
}

.LoginInput {
    width: 100%;
    margin-bottom: 10px;
    text-align: left;
}

    .LoginInput svg {
        font-size: 22px;
        color: #2b5597;
    }

.LoginInput input {
    border: 1px solid #fff;
    border-bottom: 1px solid #000;
    line-height: 50px;
    box-sizing: border-box;
    padding-left: 5px;
    width: 90%;
    transition: all 0.3s ease-in;
    background-color: #fff;
    font-size: 16px;
}

#HeaderLoginSubmit {
    width: 100px;
    padding: 0px 10px;
    margin-top: 20px;
}

#HeaderRegister {
    padding-right: 0px;
    margin-right: 0px;
}

#LoginLinks {
    overflow: hidden;
    margin-top: 10px;
    text-align: center;
}

#LoginLinks a {
    color: #204186;
}

#LoginFormContent span {
    font-size: 16px;
    margin-left: 0px;
}

#LoginSeperator {
    margin-top: 40px;
    margin-bottom: 10px;
}

#LoginSeperator hr {
    border: .5px solid #aaa;
}

#LoginSeperator span {
    padding: 0px 10px;
    background-color: #fff;
    color: #aaa;
    position: relative;
    bottom: 17px;
}

#LoginRegister {
    margin-bottom: 10px;
}

#LoginRegister div {
    margin-bottom: 5px;
    font-size: 20px;
    font-family: 'Roboto Condensed', sans-serif;
}

#LoginRegister a {
    color: #204186;
    font-size: 14px;
}


/***********ACCOUNT DROP DOWN***********/

#HeaderAccountDropdown {
    display: none;
    position: absolute;
    top: 15px;
    right: 72px;
    font-size: 13px;
    height: 332px;
    width: 205px;
    text-align: right;
    padding-top: 25px;
}

#HeaderAccountDropdown::before {
    content: "";
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 12px solid #436092;
    position: absolute;
    top: 13px;
    left: 110px;
    right: 0px;
    margin: auto;
}

#HeaderAccountDropdown ul {
    margin: 0px;
    padding: 5px;
    background-color: #436092;
    width: 195px;
    text-align: left;
    float: right;
}

#HeaderAccountDropdown ul > li {
    list-style-type: none;
    border-bottom: 1px solid #ffffff;
    margin: 0px;
    width: 100%;
    border-right: 0px !important;
    padding-right: 0px;
}

#HeaderAccountDropdown ul > li:last-of-type {
    border-bottom: none;
}

#HeaderAccountDropdown a, 
#HeaderAccountDropdown a:active, 
#HeaderAccountDropdown a:visited {
    color: #fff;
    display: block;
    padding-left: 10px;
    line-height: 30px;
    height: 30px;
}

#HeaderAccountDropdown li:hover {
    background-color: #5c82c3;
}

#HeaderAccountDropdown li a:hover {
    color: white !important;
    text-decoration: none;
    height: 30px;
    line-height: 30px;
}

/*******************************
   SEACH BOX/MOBILE NAVIGATION
********************************/

#MobileNavigation, #MobileMenu {
    display: none;
}

#MainSearchWrapper {
    position: absolute;
    right: 10px;
    top: 60px;
    width: 455px;
    z-index: 99;
}

#SearchForm {
    display: inline-block;
    z-index: 10;
    padding: 0px !important;
    margin-right: 11px;
}

#SearchTextInput {
    padding: 5px 15px;
    font-size: 13px;
    border: 1px solid #91a3a5;
    width: 248px;
    height: 30px;
    vertical-align: top;
    font-style: italic;
    box-sizing: border-box;
}

#SearchButtonWrapper {
    display: inline-block;
    position: relative;
    height: 30px;
    width: 55px;
    right: 0px;
    text-align: right;
    cursor: pointer;
}

#SearchButton {
    height: 30px;
    font-weight: normal;
}



/**************************
        Quick Order Pad
***************************/



#QuickPad {
    display: inline-block;
    width: 113px;
    right: 3px;
    text-align: center;
    background-color: #436092;
    box-shadow: 0px 0px 1px #093661;
    border: 2px solid #072948;
    transition: .3s ease-in background-color;
    color: white;
    padding: 5px 8px;
    height: 16px;
    font-size: 14px;
    font-weight: normal;
    cursor: pointer;
    line-height: 17px;
    vertical-align: top;
}

    #QuickPad:hover {
        background-color: #5c82c3;
        box-shadow: 0px 0px 4px #093661;
    }


#QuickOrderPadForm {
    z-index: 99999;
    position: absolute;
    background-color: #f8f8f8;
    color: #333;
    top: 31px;
    right: 0px;
    width: 188px;
    box-shadow: 0px 1px 1px #093661;
}

#QuickPadWrapper {
    position: relative;
    height: 34px;
}

#QuickPadWrapper:hover {
    cursor: pointer;
}

#QuickPadWrapper:hover #QuickPadTitle {
    display: block;
}

#QuickPadWrapper:hover #QuickPadTitleArrow {
    display: block;
}

#QuickPadTitle {
    display: none;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.75);
    background-color: #fff;
    padding: 5px;
    text-align: center;
    color: #000;
    position: absolute;
    top: 40px;
    left: -41px;
    right: 0px;
    z-index: 99999;
    width: 115px;
    line-height: 15px;
}

#QOPClose {
    position: absolute;
    top: -7px;
    right: 11px;
    z-index: 999999;
    vertical-align: middle;
    cursor: pointer;
}

.QOPTitle h2 {
    text-align: left;
    margin-top: 0px;
    margin-left: 10px;
    margin-bottom: 10px;
    color: white;
    font-size: 20px;
    font-weight: normal;
    margin: 0px;
}

#QuickPad i.fa.fa-times {
    margin-top: 0px;
}

#DropDownQuickPadArrow {
    display: none;
    position: absolute;
    top: -39px;
    right: 40px;
    z-index: 999999;
    vertical-align: middle;
}

#QuickOrderPadForm {
    display: none;
}

#DropDownContainer {
    position: relative;
}

#QuickPadArrow {
    position: absolute;
    top: -35px;
    right: 20px;
}

.QuickPadTitle {
    font-size: 20px;
    padding: 10px 0px;
}

#QuickOrderPadForm .ItemNumberTitle {
    display: inline-block;
    width: 107px;
    margin-right: 5px;
    color: #484747;
    font-weight: normal;
    text-align: left;
}

#QuickOrderPadForm .QtyTitle {
    width: 35px;
    display: inline-block;
    color: #484747;
    font-weight: normal;
    text-align: center;
}

#QuickOrderPadForm .QuickPadQuantity {
    width: 35px;
    border: 1px solid #000000;
    height: 35px;
    box-sizing: border-box;
}

#QuickOrderPadForm .InputWrapper {
    padding: 10px 0px 0px 0px;
}

#QuickOrderPadForm .InputWrapper p  {
    width: 25px;
    display: inline-block;
    margin: 0px;
}

.InputWrapper.ExpandedInput {
    display: none;
}

#QuickOrderPadForm .B2bMinOrderUnitDiv {
    font-weight: bold;
    font-size: 12px;
    margin-top: 5px;
    color: red;
}

#QuickOrderPadForm #ExpandWrapper {
    float: right;
    margin-top: 10px;
}

.ExpandButton {
    padding: 4px 10px 4px 0px;
    width: 60px;
    height: 22px;
    text-align: center;
    display: inline-block;
    cursor: pointer;
    text-decoration: underline;
}


.ExpandButton a {
    text-decoration: none !important;
    color: white;
}

#QuickOrderPadForm #SubmitWrapper {
    text-align: left;
    padding-bottom: 10px;
}

#QuickOrderPadForm .Submitt {
    vertical-align: middle;
    display: inline-block;
    position: relative;
    right: 30px;
    bottom: 1px;
}

.clicked {
    background-color: #de4040;
}

#QuickOrderPadForm #QOPResultsTable {
    position:absolute;
    top:60px;
    line-height: 15px;
    font-weight: normal;
    z-index:999999;
    height: 300px;
    overflow-y: scroll;
    display: block;
    background-color:#FFF;
    border-collapse:collapse;
    width: 95%;
    box-shadow: 0px 3px 10px 1px rgba(82,81,82,1);
}

.QOPResults {
    z-index: 999999;
}

#QOPResults {
    position:absolute;
    top:20px;
    z-index:999999;
}

.InputWrapper {
    position: relative;
}

#QOPResultsTable img {
    max-height:60px;
    max-width:60px;
}
		
.QOPItem {
  	width: 100%;
}
		
.QOPItemWrap {
    height: auto !important;
    padding-top: 10px;
    position: relative;
    padding: 10px;
    font-size: 10px;
    border-bottom: 1px solid #ccc;
    font-family: Arial;
    text-align: center;
}

.QOPItemWrap:hover {
    background: #cecccc;
    cursor: pointer;
}

.HeaderWrap {
    z-index: 99999;
    width: 95%;
    position: absolute;
    top: 33px;
}

.QOPResultsItem {
    font-size: 12px;
}

.QOPResultsFrecno {
    font-style: italic;
    font-size: 11px;
    color: #D72845;
}	
		
.headerCell {
    display: inline-block;
    width: 100%;
    text-align: center;
    background: #d03035;
    color: white;
}

.headerCellTxt {
    padding: 5px;

}
	
.SideQOPQuantityText {
    width: 107px;
    padding-left: 5px;
    padding-right: 5px;
    text-align: left;
    background: url(/customer/tabonu/images/spacer.gif) #fff;
    background-repeat: no-repeat;
    background-position: right 7px center;
    border: 1px solid #000000;
    height: 35px;
    margin-right: 8px;
    box-sizing: border-box;
}

p.QOPSSTxt {
    width: 95% !important;
    padding: 5px;
    text-align: center;
    padding-top: 20px;
}

img.redX {
    cursor: pointer;
    display: none;
}

.XWrap {
    display: inline-block;
    vertical-align: top;
    margin-left: 5px;
    width: 20px;
}

#QuickOrderPadForm .InputSection {
    width: 100%;
    padding-top: 10px;
    text-align: center;
}


#QuickOrderPadForm #ButtonQOPAddToCart {
    margin-left: 10px;
    margin-top: 10px;
    box-shadow: 0px 0px 1px #4f5152;
}

        
#QuickPad a:hover {
    text-decoration: none !important;
}

.InputWrapper {
    position: relative;
}

#QuickOrderPadForm .ErrorPopup {
    bottom: -52px;
    width: 245px;
    box-sizing: border-box;
    left: -50px;
    top: auto;
    background: #ffffff;
    border: 1px solid #7f7f7f;
    padding: 3px 5px;
    color: red;
    height: auto;
    font-size: 12px;
    position: absolute;
    z-index: 9999;
    line-height: 20px !important;
    min-height: 68px;
}

#QuickOrderPadForm .ErrorPopup:after, #QuickOrderPadForm .ErrorPopup:before {
    top: -29%  !important;
    left: 183px;
    border: solid transparent  !important;
    content: " "  !important;
    height: 0  !important;
    width: 0  !important;
    position: absolute;
    pointer-events: none  !important;
}

#QuickOrderPadForm .ErrorPopup:before {
    border-color: rgba(127, 127, 127, 0)  !important;
    border-top-color: #7f7f7f !important;
    border-width: 9px !important;
    margin-left: 9px !important;
    transform: rotate(180deg)  !important;
}

#QuickOrderPadForm  .ErrorPopup:after {
    border-color: rgba(255, 255, 255, 0) !important;
    border-top-color: #ffffff !important;
    border-width: 10px !important;
    margin-left: 8px !important;
    transform: rotate(180deg) !important;
}

/***************************
     END QUICK ORDER PAD
 ***************************/


/*******************************
         SUB NAVIGATION
********************************/

#MainNavigationWrapper {
    position: relative;
    border-bottom: 2px solid #b6b6b6;
}

#MainNavigation {
    margin: 0 auto;
    max-width: 1300px;
    list-style: none;
    padding: 0px;
    text-align:  center;
}

#MainNavigation > li {
    display: inline-block;
    margin: 0px;
    width: 12.5%;
    vertical-align: top;
    text-align: center;
    position: relative;
    font-size: 14px;
    box-sizing: border-box;
    background-position: center right;
    background-repeat: no-repeat;
    height: 30px;
}

#MainNavigation > li span {
    border-right: 1px solid #000;
    padding: 0px 5px;
    display: block;
    line-height: 15px;
    margin-top: 8px;
}

#MainNavigation > li:nth-last-child(1) span {
    border-right: none;
}

#MainNavigation > li:hover,
#MainNavigation > li:hover > a {
    font-weight: bold;
    color: #436092;
}

#MainNavigation > li:hover > a {
    text-decoration: none;
}

#MainNavigation > li > a:hover {
    text-decoration: none;
}

#MainNavigation > li > a {
    text-transform: capitalize;
    color: #000000;
    display: block;
    text-decoration: none;
}

#MainNavigation li:hover .HeaderDropDown {
    display: block;
}

.HeaderDropDown {
    position: absolute;
    width: 210px;
    z-index: 999999999999;
    display: none;
    top: 30px;
    padding-top: 2px;
}

.HeaderDropDown ul {
    margin: 0px;
    padding: 0px;
    text-align: left;
}

.HeaderDropDown > ul > li {
    border-bottom: 1px solid #ffffff;
    background-color: #757575;
    line-height: 20px;
    display: block;
    font-weight: normal;
    font-size: 12px;
}

.HeaderDropDown > ul > li:hover,
.HeaderDropDown > ul > li a:hover {
    font-weight: normal;
    background-color: #436092;
    text-decoration: none;
}

.HeaderDropDown > ul > li a {
    color : #fff;
    display: block;
    padding-left: 10px;
    padding: 7px 5px 7px 15px;
}

/************************
    PRODUCTS DROPDOWN
*************************/


#HeaderProducts {
    display: none;
    position: relative;
    text-align:left;
    color:#000;
    font-size: 12px;
    list-style: none;
    margin: 0px;
    padding: 0px;
    width: 210px;
    z-index: 5555;
    position: absolute;
    top: 30px;
    left: 0px;
    padding-top: 2px;
}

#ProductsLink:hover #HeaderProducts {
    display: block;
}

#HeaderProducts li {
    border-bottom: 1px solid #ffffff;
    background-color: #757575;
    line-height: 20px;
    display: block;
    font-weight: normal;
    font-size: 12px;
}

#HeaderProducts > li > a {
    color: #fff;
    display: block;
    padding: 7px 5px 7px 15px;
}

#HeaderProducts li:hover,
#HeaderProducts li a:hover {
    font-weight: normal;
    background-color: #436092;
    text-decoration: none;
    color: white;
}

#HeaderProducts > li:last-child > a {
    border-bottom: none;
}

#HeaderProducts li:hover .ProductsSub1 {
    display: block;
}

.ProductsSub1 {
    display: none;
    position: absolute;
    z-index: 999999;
    top: 2px;
    left: 210px;
    background-color: white;
    width: 486px;
    list-style: none;
    margin: 0px;
    text-align: left;
    padding: 0px;
    height: 543px;
    border-right: 1px solid #CCC;
    border-bottom: 1px solid #CCC;
}

.ProductsSub1 li {
    display: inline-block;
    width: 200px;
    padding: 5px;
    border-right: 1px dotted #CCC;
    border-bottom: 1px dotted #CCC;
    height: 281px;
    vertical-align: top;
    position: relative;
    color: #000;
}

li.Promo2x {
    width: 350px;
    border-right: none;
    border-bottom: none;
}

li.Promo3x {
    width: 525px;
    border-right: none;
    border-bottom: none;
}

li.Promo4x {
    width: 805px;
    border-right: none;
    border-bottom: none;
}

.ProductsSub1 li:nth-child(4n) {
    border-right: none;
}

.ProductsSub1 a {
    display: block;
    padding: 10px 10px;
    line-height: 10px !important;
}

.ProductsSub1 a:hover {
    text-decoration: underline;
}

#SubHeader > li > a:hover {
	text-decoration: none !important;
}

#SubHeader > li:hover > a {
	text-decoration: none !important;
}

.Sub1Title {
	display: block;
	line-height: 15px;
}

.Sub1Title > a {
    text-align: center;
    margin-top: 10px;
    padding-bottom: 5px;
}

ul#HeaderProducts > li > a:hover {
    /* background: #f4f4f6; */
    /* color: #436092; */
    /* font-weight: bold; */
}

.ProductsSub1 > li > a:hover {
  text-decoration: underline !important;
}

a.viewAll {
    position: absolute;
    bottom: 0px;
    font-weight: normal;
    font-style: italic;
    color: #A60000;
    font-size: 10px;
}



#ProductSubCategoriesWrap li {
    display: inline-block;
    width: 200px;
    padding: 5px;
    border-right: 1px dotted #CCC;
    border-bottom: 1px dotted #CCC;
    height: 281px;
    vertical-align: top;
    position: relative;
    color: #000;
}

.ProductSubCategories a {
    display: block;
    padding: 10px 30px;
    line-height: 10px !important;
}

.ProductSubCategories a:hover {
    text-decoration: underline;
}


ul#HeaderNavigation > li > a:hover {
    background: #fff;
    font-weight: bold;
}

.ProductsSub1 > li > a:hover {
    text-decoration: underline !important;
}

.ProductsSub1Wrap {
    display: inline-block;
    width: 41%;
    height: 100%;
    /* margin-top: 15px; */
    border-right: 1px solid #D6D6D5;
    /* margin-bottom: 15px; */
}

.ProductsSub2Wrap {
    width: 55%;
    /* height: 95%; */
    margin-top: 15px;
    margin-bottom: 15px;
    display: inline-block;
    vertical-align: top;
    margin: 0 auto;
    /* margin-left: 20px; */
}

.HPromoWrap {
    text-decoration: none !important;
}

    .HPromoWrap h2 {
        color: #436092;
        line-height: 20px;
        text-align: center;
        text-decoration: none !important;
    }

    .HPromoWrap p {
        line-height: 20px;
    }

    .HPromoWrap img {
        display: block;
        text-align: center;
        margin: 0 auto;
    }

.Promo2x .MainButton {
    width: 60%;
    margin: 0 auto;
}

    .Promo2x .MainButton:hover  {
        text-decoration: none;
    }

.ViewAllCats {
    text-align: center;
    padding: 15px 10px;
    background-color: #757575;
}

    .ViewAllCats a {
        color: #000000;
        font-weight: bold;
        background: white;
        padding: 5px;
        border: 1px solid black;
    }

        .ViewAllCats a:hover {
            TEXT-DECORATION: none;
        }






/************************
        MINI CART
*************************/

#DivProcessingMessage {
    font-size: 15px;
    font-weight: bold;
    color: #333333;
    background-color: #fff;
    width: 275px;
    border-radius: 0px;
    top: 35px !important;
    left: auto !important;
    right: 15px !important;
}

#DivProcessingMessage::before {
    content: "";
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 15px solid #828282;
    margin: auto;
    position: absolute;
    top: -15px;
    right: 15px;
}

#ProcessingMessageDots {
	height: 10px;
	display: inline-block;
	width: 35px;
    text-align: left;
}

#MiniCart {
    display: block;
    line-height: 22px;
    width: 300px;
    text-align: center;
    font-size: 11px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    -o-border-radius: 10px;
    height: auto;
    border-radius: 0px;
    padding-top: 15px;
    top: 31px !important;
    right: 5px !important;
    left: auto !important;
}

#MiniShoppingCartView_MainTable {
    width: 100%;
    padding: 5px 5px 5px 5px;
    box-sizing: border-box;
    background-color: #fff;
    border: 2px solid #828282;
    position: relative;
    text-align: center;
    max-height: 420px;
}


#MiniShoppingCartView_MainTable::before {
    content: "";
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 15px solid #828282;
    margin: auto;
    position: absolute;
    top: -15px;
    right: 15px;
}


#MiniShoppingCartView_TitleRow {
    margin-bottom: 10px;
}

#MiniShoppingCartView_Title {
    color: #FFFFFF;
    font-weight: bold;
    padding-left: 5px;
    background-color: #25324c;
    text-align: center;
    font-size: 14px;
    line-height: 30px;
    box-sizing: border-box;
}

#MiniShoppingCartView_close,
#MiniMessage  br,
#MiniShoppingCartView_HeaderRow br {
    display: none;
}

#MiniShoppingCartView_DetailRow {
    max-height: 300px;
    overflow-y: scroll;
}

#MiniShoppingCartView_DetailRow::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	background-color: #F5F5F5;
}

#MiniShoppingCartView_DetailRow::-webkit-scrollbar {
	width: 10px;
	background-color: #F5F5F5;
}

#MiniShoppingCartView_DetailRow::-webkit-scrollbar-thumb {
	background-color: #919194;
	border: 2px solid #919194;
}

#MiniCartItemsWrap {
    padding-right: 5px;
}

#MiniShoppingCartView_SubTotal {
    font-weight: bold;
    font-size: 15px;
    margin-top: 5px;
}

.MiniCartProduct {
    padding: 15px 0px;
    border-top: 1px solid #ccc;
    background: white;
    margin-bottom: 10px;
    display:  block;
    width: 100%;
    color: #000;
    box-sizing: border-box;
    overflow:  hidden;
    box-shadow: inset 0px 0px 8px -1px black;
}

.MiniCartProductImage {
	margin-left: 10px;
	float: left;
    margin-right: 10px;
}

.MiniCartProductImage img {
    max-width: 80px;
    max-height: 80px;
}

.MiniCartProductDetails {
	line-height: 15px;
	float: none !important;
}

.MiniCartProductItemDesc {
    text-align: left;
    padding-left: 10px;
}

#MiniShoppingCartView_ItemDescription,
#MiniShoppingCartView_ItemAvailability {
    font-size: 12px;
    color: #333333;
    text-align: left;
}

#MiniShoppingCartView_ItemQuantity {
    font-size: 11px;
    color: #333333;
    font-weight: bold;
    text-align: Center;
}

#MiniShoppingCartView_ItemAvailability
.ShoppingCart_Availability {
    color: #090;
}

#MiniShoppingCartView_ItemPrice {
    font-size: 12px;
    color: #090;
    font-weight: bold;
}

.MiniCartProductItemCode {
	padding: 10px 0px 0px 10px;
    text-align: left;
}

#MiniShoppingCartView_ItemCode a {
    background-image: none;
    border: 0 none;
    color: #03031B;
    font-size: 11px;
    font-weight: bold;
    margin: 0;
    padding: 0;
    display: inline-block;
}

.MiniCartProductQty {
    text-align: left;
    padding: 0px 10px;
    float: left;
    clear: left;
}

.MiniCartProductPrice {
	float: right;
	margin-right: 10px;
}

#MiniShoppingCartView_ViewCart {
    color: #000;
    border-top: 1px solid #000;
}

#MiniShoppingCartView_ViewCart #MiniShoppingCartView_EditCartLink {
    color: #fff;
    margin-top: 5px;
    width: 100%;
}


/*** IE STYLES ***/
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    #txtHeaderEmail, #txtPassword {
        padding-top: 5px;
        padding-bottom: 5px;
        line-height: 10px;
    }
}
