.btnUpdate{
	background: rgb(255,255,0);
	color: black;
}

.btnApply{
	width:78px !important;
	background: rgb(255,151,1);
	color: black;
}

.btnProceedShp{
	background: rgb(0,201,255);
	color: black;
}

.btnBack{
	background: rgb(23,23,23);
	color: white;
}

.btnContinueShp{
	background: rgb(248,222,104);
	color: black;
}

.btnCheckout{
	background: rgb(0,255,255);
	color: black;
}

.btnBackToCart{
	background: rgb(23,23,23);
	color: white;
}

.btnProceedPay, .btnProceedPay:active, .btnProceedPay:hover, .btnProceedPay:focus{
	background: rgb(0,201,255);
	color: white;
}

.btnClear, .btnClear:active, .btnClear:hover, .btnClear:focus{
    color: white;
	background-color: rgb(255, 0, 255);
}

.btnCancel{
	background-color: rgb(255, 51, 51);
	color:black;
}

.btnSave{
    color:black;
	background-color: rgb(0, 225, 0);
}

.btnReset{
        color:black;
	background-color: rgb(255, 153, 153);
}

.btnResetPos{
	position: absolute;
	top: 837px; 
	left: 127px;
}

.btnProceedOR{
	background: rgb(0,255,255);
	color: black;
}

.btnPlaceAnOrder{
	background: rgb(202,204,0);
	color: black;
}

.btnVerify{
	background: rgb(95, 252,0);
	color: black;
}

.cartHeader th{
	background: rgb(212, 255, 255);
}

.cartLink{
    color:blue;
}

.cartLink:hover{
    color:gold;
}

.cartBorder th, .cartBorder td {
	border:2px solid rgb(212, 255, 255) !important;
}

.chkHeader{
        background: rgb(212, 230,232);
}

.chkBrdCurrent{
	float:left;
	background:rgb(0, 196, 0);
	height: 35px;
	font-weight: bold;
	padding: 0px 10px;
}

.checkout-small-header {
    padding: 6px 12px;
    color: black;
    background: rgb(212, 230, 232);
    display: block;
    letter-spacing: 0.05em;
}

.checkout-loader {
    display: inline-block;
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #3498db;
    width: 100px;
    height: 100px;
    -webkit-animation: spin 1s linear infinite; /* Safari */
    animation: spin 1s linear infinite;
}

/* Safari */
@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.chk-breadcrumb {
	/*centering*/
	display: inline-block;
	box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.35);
	overflow: hidden;
	border-radius: 5px;
	/*Lets add the numbers for each link using CSS counters. flag is the name of the counter. to be defined using counter-reset in the parent element of the links*/
	counter-reset: flag; 
}

.chk-breadcrumb a {
	text-decoration: none;
	outline: none;
	display: block;
	float: left;
	font-size: 12px;
	font-weight: bold;
	line-height: 36px;
	color: black;
	/*need more margin on the left of links to accomodate the numbers*/
	padding: 5px 20px 5px 60px;
	background: white;
	position: relative;
}

/*since the first link does not have a triangle before it we can reduce the left padding to make it look consistent with other links*/
.chk-breadcrumb a:first-child {
	/*padding-left: 46px;*/
	border-radius: 5px 0 0 5px; /*to match with the parent's radius*/
}

.chk-breadcrumb a:first-child:before {
	/*left: 14px;*/
}

.chk-breadcrumb a:last-child {
	border-radius: 0 5px 5px 0; /*this was to prevent glitches on hover*/
	padding-right: 20px;
}

/*hover/active styles*/

.chk-breadcrumb a.active {
	background: #4682b4;
	font-size: 14px;
	color: white;
}

.chk-breadcrumb a.active:after {
	background: #4682b4;
}

/*adding the arrows for the breadcrumbs using rotated pseudo elements*/
.chk-breadcrumb a:after {
	content: '';
	position: absolute;
	top: 0; 
	right: -22px; /*half of square's length*/
	/*same dimension as the line-height of .breadcrumb a */
	width: 46px; 
	height: 46px;
	/*as you see the rotated square takes a larger height. which makes it tough to position it properly. So we are going to scale it down so that the diagonals become equal to the line-height of the link. We scale it to 70.7% because if square's: 
	length = 1; diagonal = (1^2 + 1^2)^0.5 = 1.414 (pythagoras theorem)
	if diagonal required = 1; length = 1/1.414 = 0.707*/
	transform: scale(0.707) rotate(45deg);
	/*we need to prevent the arrows from getting buried under the next link*/
	z-index: 1;
	
	/*background same as links but the gradient will be rotated to compensate with the transform applied*/
	background: white;
	
	/*stylish arrow design using box shadow*/
	box-shadow: 
		2px -2px 0 2px rgba(0, 0, 0, 0.4), 
		3px -3px 0 2px rgba(255, 255, 255, 0.1);
	/*
		5px - for rounded arrows and 
		50px - to prevent hover glitches on the border created using shadows*/
	border-radius: 0 5px 0 50px;
}

/*we dont need an arrow after the last link*/
.chk-breadcrumb a:last-child:after {
	content: none;
}

/*we will use the :before element to show numbers*/
.chk-breadcrumb a:before {
	content: counter(flag);
	counter-increment: flag;
	/*some styles now*/
	border-radius: 100%;
	width: 20px;
	height: 20px;
	line-height: 20px;
	margin: 13px 0;
	position: absolute;
	top: 0;
	left: 30px;
	color: black;
	background: #e8e8e8;
	font-weight: bold;
    text-align: center;
}