/* HTML */

html {
    box-sizing: border-box;
    font-family: 'Open Sans',sans-serif;
    font-size: 13px;
    line-height: 1.45;
    color: #2d3438;
}
*, *:before, *:after {
    box-sizing: inherit;
}

a {
    color: #0e89c5;
    text-decoration: none;
}

a:hover {
    text-decoration: underline
}

h1 {
	margin-top: 0;
	
	font-size: 1.65rem;
}

/* Layout */

.l-main {
	max-width: 1460px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 2em;
    margin-bottom: 5em;
    padding-left: 2rem;
    padding-right: 2rem;
}

.l-breadcrumbs {
	overflow: hidden;
    padding-bottom: 0.3rem;
}

.l-breadcrumbs a {
	color: #888;
}
.l-breadcrumbs a:hover {
	color: #1ba0ca;
    text-decoration: none;
}

.l-constrained-small {
    width: 100%;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* table */

.table-list {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    text-align: left;
}

b, strong, th {
    font-weight: 600;
}

.table-list th, .table-list td {
    padding: .85rem 1rem;
}

.table-list td,
.table-list th {
    border: 1px solid #e2e2e2;
}

.table-list tr:hover:not(.highlighted) td:not(.highlighted) {
        background-color: #effbff;
    border-top: 1px solid #bde5f3;
    border-bottom: 1px solid #bde5f3;
}

.table-list thead {
    background-color: #273038;
    color: #fff;
    padding: .85rem 1rem;
}

.table-list.table-list--grid td {
    width: 50%;
}

.table-order-page td:first-child {
    width: 20%;
}

tr.highlighted > td,
td.highlighted {
    background: #ffff97;
}

.table-list th {
	border: 1px solid #555;
}

.table-list__highlight-item {
    background: #f9f9f9;
}

/* Helpers */

.mt-medium {
    margin-top: 15px;
}

.mt {
    margin-top: 10px;
}

.mb-medium {
    margin-bottom: 15px;
}

.mb {
    margin-bottom: 10px;
}

.text-right {
    text-align: right;
}

.weight-bold {
    font-weight: bold;
}

.text-italic {
    font-style: italic;
}

.alert {
    padding: 15px;
    border-radius: 3px;
    border: 1px solid #000;
    background-color: grey;
    margin-bottom: 10px;
}

.alert--warning {
    background-color: #fcf8e3;
    border-color: #e0d086;
    color: #8a6d3b;
}

.alert.alert--info {
    background-color: #c9e2ea;
    border-color: #9e9eff;
}

.is-hidden {
    display: none;
}

/* Tips */

[data-tip] {
    position: relative;
}

.tip-question {
    margin-left: 5px;
}
.tip-question svg {
	color: #0e89c5;
}


.tip {
    position: absolute;
    z-index: 100000;

    border-radius: 2px;
    max-width: 320px;
    padding: 7px 10px;

    background: #273038;
    color: #fff;
}
th .tip-question .icon {
    color: #fff;
}

.tip-question + .tip-question {
    display: none;
}

/* Icons */

.icon {
    display: inline-block;
    width: 1em;
    height: 1em;
    stroke-width: 0;
    stroke: currentColor;
    fill: currentColor;
    pointer-events: none
}

.icon--info {
    color: #0f7598
}

.icon--color-content {
    color: #8c67c4
}

.icon--color-orders-customers {
    color: #6bc467
}

.icon--empty-section {
    font-size: 5rem;
    margin-bottom: 2rem
}

.icon--medium {
    font-size: 1.2rem
}

.icon--large {
    font-size: 3rem
}

.icon--size-medium {
    width: 3.5rem;
    height: 3.5rem
}

.icon--spacing-right {
    margin-right: 0.3rem
}

.icon--spacing-left {
    margin-left: 0.3rem
}

.icon--star-on {
    color: #ffcf00
}

.icon--star-off {
    color: #d8dde7
}


.page-title {
	margin-bottom: 2.5rem;
}


