:root {
    --primary: #26336a;
    --secondary: #5586bc;
    --tertiary: #f0f2f9;
    --quaternary: #3c88c0;
}


html {
    font-size: 16px;
    display: table;
    margin: auto;
    position: relative;
    min-height: 100%;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

body {
    display: flex;
    max-width: 500px;
    display: table-cell;
    margin-bottom: 60px;
    font-size: 1.05rem;
}

input, .form-control, #trailerLabel {
    font-size: 1.25rem;
    padding: 4px 8px;
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

.searchfield {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.deleteicon {
    position: absolute;
    display: block;
    right: 5px;
    font: 20px monospace;
    text-align: center;
    line-height: 1em;
    cursor: pointer;
}

#loadingCover {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    visibility: hidden;
}

.primary-color {
    color: var(--primary);
}

.secondary-color {
    color: var(--secondary);
}

.tertiary-color {
    color: var(--tertiary);
}

.primary-bg-color {
    background-color: var(--primary);
}

.secondary-bg-color {
    background-color: var(--secondary);
}

.tertiary-bg-color {
    background-color: var(--tertiary);
}

.primary-border {
    border-style: solid;
    border-color: var(--primary);
}