/*progressbar*/
.steps-progress {
	margin-bottom: 30px;
	overflow: hidden;
	/*CSS counters to number the steps*/
	counter-reset: step;
    text-align: center;
}
.steps-progress li {
    list-style-type: none;
    color: #272727;
    text-transform: uppercase;
    font-size: 10px;
    width: 33.33%;
    float: left;
    position: relative;
    text-align: left;
}
.steps-progress li:before {
    content: counter(step);
    counter-increment: step;
    width: 30px;
    line-height: 30px;
    display: block;
    font-size: 20px;
    color: #333;
    background: white;
    border-radius: 3px;
    margin: 0 auto 5px 0px;
    text-align: center;
}
/*progressbar connectors*/
.steps-progress li:after {
    content: '';
    width: 100%;
    height: 2px;
    background: white;
    position: absolute;
    left: -100%;
    top: 15px;
    z-index: -1; /*put it behind the numbers*/
}
.steps-progress li:first-child:after {
	/*connector not needed before the first step*/
	content: none;
}
/*marking active/completed steps green*/
/*The number of the step and the connector before it = green*/
.steps-progress li.active:before,  .steps-progress li.active:after{
	background: #FFDC3F;
    color: #272727;
}

.totals td {
    text-align: right;
}

td.amount, th.amount {
    text-align: right;
    width:15%;
    padding-right:8%;
}

.taxable-total {
    font-size: 11px;
}

.modal .net_total {
    border-top: 1px solid #999;
}

.modal .grand-total {
    border: 1px solid #999;
}

.grand-total {
    font-size: 16px;
    font-weight: bold;
}

.grand-total .small {
    font-size: 10px;
}

#side-section .grand-total {
    font-size: 20px;
}

@media (max-width: 800px) {
    .order #side-section {
        display: none;
    }
}
