﻿
/* FOCUS HIGHLIGHTING */
/* ------------------------------------------------------------------------ */

input:focus,
select:focus,
textarea:focus,
button:focus,
.form-control:focus,
.form-check-input:focus,
.btn:focus {
    outline: none !important;
    box-shadow: none !important;
}

:focus-visible, .bootstrap-select .dropdown-toggle:focus {
    outline: none !important;
}

.form-select {
    cursor: pointer !important;
}



/* PRIMARY COLOUR */
/* ------------------------------------------------------------------------ */

.btn-primary {
    background-color: #051f42;
    border-color: #051f42;
}

.btn-outline-primary {
    border-color: #051f42;
    color: #051f42;
}

.btn-info {
    border-color: rgb(54, 169, 225, 1.0);
    background-color: rgb(54, 169, 225, 1.0);
    color: #ffffff;
}

    .btn-info:hover {
        border-color: rgb(54, 169, 225, 0.8);
        background-color: rgb(54, 169, 225, 0.8);
        color: #ffffff;
    }


/* TABLES */
/* ------------------------------------------------------------------------ */

:root {
    --bs-table-bg: transparent !important;
    --bs-table-accent-bg: transparent !important;
    --bs-table-striped-bg: transparent !important;
    --bs-table-hover-bg: transparent !important;
}

.table,
.table > :not(caption) > * > * {
    background-color: transparent !important;
    padding: 0px;
}

/* GENERAL */
/* ------------------------------------------------------------------------ */

.w-33 {
    width: 33.3333% !important;
}
