/*Cart preview container*/
.wp-cart-preview-container {
    /*position: absolute; *//*rcw*/
    z-index: 1001;
    right: 43px; /*rcw*/
    top: -60px;	/*rcw*/
	float: right;/*rcw*/
    position: relative;/*rcw*/
	cursor: pointer; /*rcw*/
}

/*Cart preview button*/
.wp-cart-preview-container .wp-cart-preview-btn {
    background-color: transparent;
    border-width: 0;
    position: absolute;
    padding: 3px 8px 15px 0;
    outline: none;
    overflow: visible;
    color: #fff;
}

/*Highlight cart preview button on hover*/
.wp-cart-preview-container .wp-cart-preview-btn:hover {
    color: #f1f1f1;
}

/*Cart items count badge on cart preview button*/
.wp-cart-preview-container .wp-cart-preview-btn .wp-badge-cart {
    position: absolute;
    right: 13px;
    top: -1px;
    width: 16px;
    height: 16px;
    border-radius: 8px;
    text-align: center;
    line-height: 16px;
    /*background: #da4f3a;*/
    font-size: 14px;
    color: #FEDB00;
	font-weight:bold;
	font-family: 'Myriad Pro', Helvetica, Arial, sans-serif;
}

/*Cart preview popover*/
.wp-cart-preview-container .wp-cart-preview-popover {
    display: none;
    border: 1px solid #2e445b;
    border-radius: 3px;	
    position: absolute;
    right: -22px;  /*rcw*/
    top: 23px;
    margin-top: 8px;
    text-align: center;
    background-color: #fff;
    font-size: 14px;
    color: #2e445a;
    font-weight: normal;
    cursor: default;
}

/*Show direction arrow on cart preview popover*/
.wp-cart-preview-container .wp-cart-preview-popover:after {
    bottom: 100%;
    right: 3px; 
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    border: 7px solid rgba(46, 68, 91, 0);
    border-bottom-color: #2e445b;
    margin-left: -7px;
}

/*Cart preview title*/
.wp-cart-preview-container .wp-cart-preview-popover .wp-cart-preview-title {
    text-align: center;
   /* background-color: #827717;*/
    background-color: #0035AD;
    color: #fff;
    line-height: 28px;
    font-size: 16px;
    border-bottom: 1px solid #2e445b;
    text-transform: uppercase;
    position: relative;
}

/*Cart preview popover close btn*/
.wp-cart-preview-container .wp-cart-preview-popover-close-btn {
    position: absolute;
    right: 11px;
    top: 6px;
    cursor: pointer;
}
