@import url('https://fonts.googleapis.com/css2?family=Open+Sans&display=swap');

html {
    font-family: 'Open Sans', Tahoma, sans-serif;
    font-size: 14px;
}

body {
    background-color: #f2f2f2;
    overflow-y: scroll;
}

.header {
    background: #FFF;
}

.content {
    padding-top: 40px;
    color: #777;
}

h1 {
    font-size: 2rem;
    font-weight: bold;
}

.box {
    background-color: #FFF;
    border-radius: 10px;
    padding: 25px;
    margin-top: 25px;
}

.box .head {
    border-bottom: solid 1px #EEE;
    font-weight: bold;
    padding-bottom: 5px;
}

.badge {
    font-weight: 600;
    font-size: 85%;
    padding: 4px 10px;
}

.orders .row {
    padding-top: 5px;
    padding-bottom: 5px;
}

.orders .row:hover {
    background-color: #DDD;
}

.step_circle {
    background-color: #CCC;
    border-radius: 50px;
    width: 80px;
    height: 80px;
    display: block;
    margin: 0 auto;
}

.step:not(:first-child) .step_circle::before {
    content: " ";
    background-color: #CCC;
    width: 90px;
    height: 5px;
    border-radius: 5px;
    margin-left: -100px;
    position: absolute;
    margin-top: 40px;
}

.step_circle.active {
    background-color: #1b9dd8;
}

.step:not(:first-child) .step_circle.active::before {
    background-color: #1b9dd8;
}

.step_circle.onhold {
    background-color: #d81b1b;
}

.step:not(:first-child) .step_circle.onhold::before {
    background-color: #d81b1b;
}

.step_circle.shipped {
    background-color: #1baf1b;
}

.step:not(:first-child) .step_circle.shipped::before {
    background-color: #1baf1b;
}

.step_circle img {
    margin: 15px;
}

.step_label {
    text-align: center;
    display: block;
    overflow: visible;
    margin-top: 10px;
}

.nav a {
    color: #666;
}

div[data-href] {
    cursor: pointer;
}

.bg-primary, .btn-primary, .badge-primary {
    background-color: #1b9dd8;
    border-color: #1a8bbf;
}

.btn-primary:hover {
    background-color: #1a8bbf;
    border-color: #1777a3;
}

.btn-primary:hover, .badge-primary:hover {
    background-color: #1a8bbf;
    border-color: #1777a3;
}