/**
*
* Bootstrap Overrides
* ==============
*
*
*
**/

:root {
    --primary: #467187;
}

/*==========================================
=               Base Styles                =
==========================================*/
a:hover {
    color: inherit;
    text-decoration: inherit;
}

ol, ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.border-2 {
    border-width: 2px !important;
}

/*-----  End of Base Styles  ------*/



/*==========================================
=              Header Styles               =
==========================================*/
h1 {
    font-size: 2rem;
}

h2 {
    font-size: 1.5rem;
}

h3 {
    font-size: 1.17rem;
}

h4, h5, h6 {
    font-size: 1rem;
}

/*-----  End of Header Styles  ------*/



/*==========================================
=            Offcanvas Collapse            =
==========================================*/

.offcanvas-collapse {
    position: fixed;
    top: 0;
    bottom: 0;
    width: 100%;
    right: -100%;
    overflow-y: auto;
    background-color: #fff;
    transition: right .5s ease-in-out;
    z-index: 1041;
}

    .offcanvas-collapse.open {
        right: 0;
    }

.offcanvas-collapse--left {
    right: unset;
    left: -100%;
    transition: left .5s ease-in-out;
}

    .offcanvas-collapse--left.open {
        right: unset;
        left: 0;
    }

@media (min-width: 768px) {

    .offcanvas-collapse {
        max-width: 25rem;
        border-left: 1px solid #dee2e6 !important;
    }
}


/*-----  End of Offcanvas Collapse  ------*/



/*==========================================
=             Font Size Styles             =
==========================================*/
.extra-small-font {
    font-size: .8rem;
}

.small-font {
    font-size: .9rem;
}

.large-font {
    font-size: 1.2rem;
}

.extra-large-font {
    font-size: 1.4rem;
}

/*-----  End of Font Size Styles  ------*/


/*==========================================
=                  Forms                   =
==========================================*/

/*
.form-control {
    height: auto;
    line-height: initial;
}
    */
/*-----  End of Forms  ------*/



.mw-30 {
    max-width: 30rem;
}

.mw-40 {
    max-width: 40rem;
}

.mw-50 {
    max-width: 50rem;
}

.mw-70 {
    max-width: 70rem;
}


/*Text transform styles*/
.text-decoration-underline {
    text-decoration: underline !important;
}

.text-decoration-linethrough {
    text-decoration: line-through !important;
}



/*------------------------------------
- COLOR primary override
------------------------------------*/
.alert-primary {
    color: #1c2d36;
    background-color: #bcd1dc;
    border-color: #afc8d5;
}

    .alert-primary hr {
        border-top-color: #9ebdcc;
    }

    .alert-primary .alert-link {
        color: #0a1114;
    }

.badge-primary {
    color: #fff;
    background-color: #467187;
}

    .badge-primary[href]:hover, .badge-primary[href]:focus {
        color: #fff;
        background-color: #345465;
    }

.bg-primary {
    background-color: #467187 !important;
}

a.bg-primary:hover, a.bg-primary:focus,
button.bg-primary:hover,
button.bg-primary:focus {
    background-color: #345465 !important;
}

.border-primary {
    border-color: #467187 !important;
}

.btn-primary {
    color: #fff;
    background-color: #467187;
    border-color: #467187;
}

    .btn-primary:hover {
        color: #fff;
        background-color: #395d6f;
        border-color: #345465;
    }

    .btn-primary:focus, .btn-primary.focus {
        box-shadow: 0 0 0 0.2rem rgba(70, 113, 135, 0.5);
    }

    .btn-primary.disabled, .btn-primary:disabled {
        color: #fff;
        background-color: #467187;
        border-color: #467187;
    }

    .btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active, .show > .btn-primary.dropdown-toggle {
        color: #fff;
        background-color: #345465;
        border-color: #2f4c5b;
    }

        .btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus, .show > .btn-primary.dropdown-toggle:focus {
            box-shadow: 0 0 0 0.2rem rgba(70, 113, 135, 0.5);
        }

.btn-outline-primary {
    color: #467187;
    background-color: transparent;
    border-color: #467187;
}

    .btn-outline-primary:hover {
        color: #fff;
        background-color: #467187;
        border-color: #467187;
    }

    .btn-outline-primary:focus, .btn-outline-primary.focus {
        box-shadow: 0 0 0 0.2rem rgba(70, 113, 135, 0.5);
    }

    .btn-outline-primary.disabled, .btn-outline-primary:disabled {
        color: #467187;
        background-color: transparent;
    }

    .btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active, .show > .btn-outline-primary.dropdown-toggle {
        color: #fff;
        background-color: #467187;
        border-color: #467187;
    }

        .btn-outline-primary:not(:disabled):not(.disabled):active:focus, .btn-outline-primary:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-primary.dropdown-toggle:focus {
            box-shadow: 0 0 0 0.2rem rgba(70, 113, 135, 0.5);
        }

.list-group-item-primary {
    color: #1c2d36;
    background-color: #afc8d5;
}

    .list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus {
        color: #1c2d36;
        background-color: #9ebdcc;
    }

    .list-group-item-primary.list-group-item-action.active {
        color: #fff;
        background-color: #1c2d36;
        border-color: #1c2d36;
    }

.table-primary,
.table-primary > th,
.table-primary > td {
    background-color: #afc8d5;
}

.table-hover .table-primary:hover {
    background-color: #9ebdcc;
}

    .table-hover .table-primary:hover > td,
    .table-hover .table-primary:hover > th {
        background-color: #9ebdcc;
    }

.text-primary {
    color: #467187 !important;
}

a.text-primary:hover, a.text-primary:focus {
    color: #345465 !important;
}

.cursor-pointer {
    cursor: pointer;
}