﻿body { padding-top: 80px; }
.navbar-brand{padding-top:2px !important;padding-left:2px !important;}
.ui-widget-content-noconflict {color:white !important;}

#header-logo {
    background-image: url("header-logo.png");
    height: 100px;
    background-size: contain;
    background-position:left;
    background-repeat: no-repeat;
    margin-left:-16px;
}

.align-items-center{
    display:flex;
    align-items:center;
}

/*Padding helpers*/
.pb-1 {
    padding-bottom: 4px;
}

.pb-2 {
    padding-bottom: 8px;
}

.pb-3 {
    padding-bottom: 12px;
}

.pb-4 {
    padding-bottom: 16px;
}

.pb-5 {
    padding-bottom: 20px;
}

.pt-1 {
    padding-top: 4px;
}

.pt-2 {
    padding-top: 8px;
}

.pt-3 {
    padding-top: 12px;
}

.pt-4 {
    padding-top: 16px;
}

.pt-5 {
    padding-top: 20px;
}

.pa-1 {
    padding: 4px;
}

.pa-2 {
    padding: 8px;
}

.pa-3 {
    padding: 12px;
}

.pa-4 {
    padding: 16px;
}

.pa-5 {
    padding: 20px;
}


.py-1 {
    padding-top: 4px;
    padding-bottom: 4px;
}

.py-2 {
    padding-top: 8px;
    padding-bottom: 8px;
}

.py-3 {
    padding-top: 12px;
    padding-bottom: 12px;
}

.py-4 {
    padding-top: 16px;
    padding-bottom: 16px;
}

.py-5 {
    padding-top: 20px;
    padding-bottom: 20px;
}


.px-1 {
    padding-left: 4px;
    padding-right: 4px;
}

.px-2 {
    padding-left: 8px;
    padding-right: 8px;
}

.px-3 {
    padding-left: 12px;
    padding-right: 12px;
}

.px-4 {
    padding-left: 16px;
    padding-right: 16px;
}

.px-5 {
    padding-left: 20px;
    padding-right: 20px;
}

/*margin helpers*/
.mb-1 {
    margin-bottom: 4px;
}

.mb-2 {
    margin-bottom: 8px;
}

.mb-3 {
    margin-bottom: 12px;
}

.mb-4 {
    margin-bottom: 16px;
}

.mb-5 {
    margin-bottom: 20px;
}

.mt-1 {
    margin-top: 4px;
}

.mt-2 {
    margin-top: 8px;
}

.mt-3 {
    margin-top: 12px;
}

.mt-4 {
    margin-top: 16px;
}

.mt-5 {
    margin-top: 20px;
}

.ma-1 {
    margin: 4px;
}

.ma-2 {
    margin: 8px;
}

.ma-3 {
    margin: 12px;
}

.ma-4 {
    margin: 16px;
}

.ma-5 {
    margin: 20px;
}

.my-1 {
    margin-top: 4px;
    margin-bottom: 4px;
}

.my-2 {
    margin-top: 8px;
    margin-bottom: 8px;
}

.my-3 {
    margin-top: 12px;
    margin-bottom: 12px;
}

.my-4 {
    margin-top: 16px;
    margin-bottom: 16px;
}

.my-5 {
    margin-top: 20px;
    margin-bottom: 20px;
}

.mx-1 {
    margin-left: 4px;
    margin-right: 4px;
}

.mx-2 {
    margin-left: 8px;
    margin-right: 8px;
}

.mx-3 {
    margin-left: 12px;
    margin-right: 12px;
}

.mx-4 {
    margin-left: 16px;
    margin-right: 16px;
}

.mx-5 {
    margin-left: 20px;
    margin-right: 20px;
}

.d-flex {
    display: flex;
}

.flex-column {
    flex-direction: column;
}

.flex-row {
    flex-direction: row;
}

.justify-space-between {
    justify-content: space-between;
}

.justify-center {
    justify-content: center;
}

.justify-end {
    justify-content: flex-end;
}
/*
.align-center {
    text-align: center;
}*/

.text-white {
    color: white !important;
}

.text-caption {
    font-size: 14px !important;
}

.text-primary {
    color: #44ace2 !important;
}

a.text-primary:hover {
    color: #3d97c6 !important;
}

.font-weight-bold {
    font-weight: bold !important;
}

.full-width {
    width: 100% !important;
}

.no-wrap {
    white-space: nowrap;
}
/* Override btn-primary colour */
.btn-primary {
    background-color: #42ADE2;
    background-image: none;
    border-color: #2a9fd6;
    color: #fff; /* white text works fine on this blue */
}

    .btn-primary:hover,
    .btn-primary:focus,
    .btn-primary:active,
    .btn-primary.active,
    .open > .dropdown-toggle.btn-primary {
        background-color: #2a9fd6;
        background-image: none;
        border-color: #1f85b5;
        color: #fff;
    }

    .btn-primary:disabled,
    .btn-primary[disabled],
    fieldset[disabled] .btn-primary {
        background-color: #42ADE2;
        border-color: #2a9fd6;
        opacity: 0.65;
    }

/* Override btn-success colour */
.btn-success {
    background-color: #C9CF2C;
    background-image: none; /* removes Bootstrap 3's gradient */
    border-color: #a8ad22;
    color: #333; /* dark text — better contrast on this yellow-green */
}

    .btn-success:hover,
    .btn-success:focus,
    .btn-success:active,
    .btn-success.active,
    .open > .dropdown-toggle.btn-success {
        background-color: #a8ad22;
        background-image: none;
        border-color: #8a8f1c;
        color: #333;
    }

    .btn-success:disabled,
    .btn-success[disabled],
    fieldset[disabled] .btn-success {
        background-color: #C9CF2C;
        border-color: #a8ad22;
        opacity: 0.65;
    }