 /* ======================================================================

    BAMIS Dashboard · Base Stylesheet
    09-01-2021

    (c) BAMIS Dev Team 2021
    > hvarde

    --------------------------------------------------

    TOC:
    # imports
    # normalize
    # basic/base setup styles
        ## media
        ## typography resets 
        ## links
        ## inputs
    # grid
        ## medium size devices
        ## tablets
        ## mobile devices
        ## small mobile devices
    # block grids
        ## medium size devices
        ## tablets
        ## mobile devices
        ## small mobile devices
    # MISC

====================================================================== */


/* ===================================================================
 * # imports 
 *
 * ------------------------------------------------------------------- */
 @import url("root.css");
 @import url("../typefaces/typefaces.css");
 @import url("../icons/mdi/css/materialdesignicons.min.css");


/* ===================================================================
 * # normalize
 * normalize.css v5.0.0 | MIT License | 
 * github.com/necolas/normalize.css
 *
 * ------------------------------------------------------------------- */

html {
font-family: sans-serif;
    line-height: 1.15;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
}

article,
aside,
footer,
header,
nav,
section {
    display: block;
}

h1 {
    font-size: 2em;
    margin: 0.67em 0;
}

figcaption,
figure,
main {
    display: block;
}

figure {
    margin: 1em 40px;
}

hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible;
}

pre {
    font-family: monospace, monospace;
    font-size: 1em;
}

a {
    background-color: transparent;
    -webkit-text-decoration-skip: objects;
}

a:active,
a:hover {
    outline-width: 0;
}

abbr[title] {
    border-bottom: none;
    text-decoration: underline;
    text-decoration: underline dotted;
}

b,
strong {
    font-weight: inherit;
}

b,
strong {
    font-weight: bolder;
}

code,
kbd,
samp {
    font-family: monospace, monospace;
    font-size: 1em;
}

dfn {
    font-style: italic;
}

mark {
    background-color: #ff0;
    color: #000;
}

small {
    font-size: 80%;
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

audio,
video {
    display: inline-block;
}

audio:not([controls]) {
    display: none;
    height: 0;
}

img {
    border-style: none;
}

svg:not(:root) {
    overflow: hidden;
}

button,
input,
optgroup,
select,
textarea {
    font-family: sans-serif;
    font-size: 100%;
    line-height: 1.15;
    margin: 0;
}

button,
input {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

select[readonly]
{
    pointer-events: none;
    background-color: var(--color-light);
}

button,
html [type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    border-style: none;
    padding: 0;
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
    outline: 1px dotted ButtonText;
}

fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em;
}

legend {
    box-sizing: border-box;
    color: inherit;
    display: table;
    max-width: 100%;
    padding: 0;
    white-space: normal;
}

progress {
    display: inline-block;
    vertical-align: baseline;
}

textarea {
    overflow: auto;
    resize: none;
}

[type="checkbox"],
[type="radio"] {
    box-sizing: border-box;
    padding: 0;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

[type="search"] {
    -webkit-appearance: textfield;
    outline-offset: -2px;
}

[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit;
}

details,
menu {
    display: block;
}

summary {
    display: list-item;
}

canvas {
    display: inline-block;
}

template {
    display: none;
}

/* ===================================================================
 * # basic/base setup styles
 *
 * ------------------------------------------------------------------- */
html {
    font-size: 62.5%;
    box-sizing: border-box;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

body {
    font-weight: normal;
    line-height: 1;
    word-wrap: break-word;
    text-rendering: optimizeLegibility;
    -webkit-overflow-scrolling: touch;
    -webkit-text-size-adjust: none;
}

body,
input,
button {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
}

button {
    text-decoration: none;
    line-height: inherit;
}

/* ------------------------------------------------------------------- 
 * ## media
 * ------------------------------------------------------------------- */
img,
video {
    max-width: 100%;
    height: auto;
}


/* ------------------------------------------------------------------- 
 * ## typography resets 
 * ------------------------------------------------------------------- */
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
p,
blockquote,
th,
td {
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    -webkit-font-smoothing: auto;
    -webkit-font-smoothing: antialiased;
    -webkit-font-variant-ligatures: common-ligatures;
    -moz-font-variant-ligatures: common-ligatures;
    font-variant-ligatures: common-ligatures;
    text-rendering: optimizeLegibility;
}

em,
i {
    font-style: italic;
    line-height: inherit;
}

strong,
b {
    font-weight: bold;
    line-height: inherit;
}

small {
    font-size: 60%;
    line-height: inherit;
}

ol,
ul {
    list-style: none;
}

li {
    display: block;
}


/* ------------------------------------------------------------------- 
 * ## links 
 * ------------------------------------------------------------------- */
a {
    text-decoration: none;
    line-height: inherit;
}

a img {
    border: none;
}


/* ------------------------------------------------------------------- 
 * ## inputs 
 * ------------------------------------------------------------------- */
fieldset {
    margin: 0;
    padding: 0;
}

input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
}


/* ===================================================================
 * # grid
 *
 * ------------------------------------------------------------------- */
.row {
    width: 94%;
    max-width: 2000px;
    margin: 0 auto;
}

.row:after {
    content: "";
    display: table;
    clear: both;
}

.row .row {
    width: auto;
    max-width: none;
    margin-left: -15px;
    margin-right: -15px;
}


/* column blocks
 * -------------------------------------- */
[class*="col-"] {
    float: left;
    padding: 0 20px;
}

[class*="col-"]+[class*="col-"].end {
    float: right;
}


/* column width classes 
 * -------------------------------------- */
.col-01,
.col-one {
    width: 8.33333%;
}

.col-02,
.col-two,
.col-1-6 {
    width: 16.66667%;
}

.col-02-4,
.col-two-four,
.col-1-5 {
    width: 20%;
}

.col-03,
.col-three,
.col-1-4 {
    width: 25%;
}

.col-04,
.col-four,
.col-1-3 {
    width: 33.33333%;
}

.col-05,
.col-five {
    width: 41.66667%;
}

.col-06,
.col-six,
.col-1-2 {
    width: 50%;
}

.col-07,
.col-seven {
    width: 58.33333%;
}

.col-08,
.col-eight,
.col-2-3 {
    width: 66.66667%;
}

.col-09,
.col-nine,
.col-3-4 {
    width: 75%;
}

.col-10,
.col-ten,
.col-5-6 {
    width: 83.33333%;
}

.col-11,
.col-eleven {
    width: 91.66667%;
}

.col-12,
.col-twelve,
.col-full {
    width: 100%;
}


/* ------------------------------------------------------------------- 
* ## medium size devices
* ------------------------------------------------------------------- */
@media only screen and (max-width: 1200px) {
    .row .row {
        margin-left: -10px;
        margin-right: -10px;
    }

    [class*="col-"] {
        padding: 0 15px;
    }

    .md-01,
    .md-one {
        width: 8.33333%;
    }

    .md-02,
    .md-two,
    .md-1-6 {
        width: 16.66667%;
    }

    .md-02-4,
    .md-two-four,
    .md-1-5 {
        width: 20%;
    }

    .md-03,
    .md-three,
    .md-1-4 {
        width: 25%;
    }

    .md-04,
    .md-four,
    .md-1-3 {
        width: 33.33333%;
    }

    .md-05,
    .md-five {
        width: 41.66667%;
    }

    .md-06,
    .md-six,
    .md-1-2 {
        width: 50%;
    }

    .md-07,
    .md-seven {
        width: 58.33333%;
    }

    .md-08,
    .md-eight,
    .md-2-3 {
        width: 66.66667%;
    }

    .md-09,
    .md-nine,
    .md-3-4 {
        width: 75%;
    }

    .md-10,
    .md-ten,
    .md-5-6 {
        width: 83.33333%;
    }

    .md-11,
    .md-eleven {
        width: 91.66667%;
    }

    .md-12,
    .md-twelve,
    .md-full {
        width: 100%;
    }

    .hide-on-md {
        display: none;
    }
}


/* ------------------------------------------------------------------- 
* ## tablets
* ------------------------------------------------------------------- */
@media only screen and (max-width: 800px) {
    .row {
        width: 90%;
    }

    .row .row {
        margin-left: 0;
        margin-right: 0;
    }

    .tab-02-4,
    .tab-two-four,
    .tab-1-5 {
        width: 20%;
    }

    .tab-03,
    .tab-three,
    .tab-1-4 {
        width: 25%;
    }

    .tab-04,
    .tab-four,
    .tab-1-3 {
        width: 33.33333%;
    }

    .tab-06,
    .tab-six,
    .tab-1-2 {
        width: 50%;
    }

    .tab-08,
    .tab-eight,
    .tab-2-3 {
        width: 66.66667%;
    }

    .tab-09,
    .tab-nine,
    .tab-3-4 {
        width: 75%;
    }

    .tab-12,
    .tab-twelve,
    .tab-full {
        width: 100%;
    }

    .hide-on-tablet {
        display: none;
    }
}


/* ------------------------------------------------------------------- 
* ## mobile devices
* ------------------------------------------------------------------- */
@media only screen and (max-width: 600px) {
    .row {
        width: auto;
        padding-left: 10px;
        padding-right: 10px;
    }

    .row .row {
        margin-left: -10px;
        margin-right: -10px;
    }

    [class*="col-"] {
        padding: 0 10px;
    }

    .mob-02-4,
    .mob-two-four,
    .mob-1-5 {
        width: 20%;
    }

    .mob-03,
    .mob-three,
    .mob-1-4 {
        width: 25%;
    }

    .mob-04,
    .mob-four,
    .mob-1-3 {
        width: 33.33333%;
    }

    .mob-06,
    .mob-six,
    .mob-1-2 {
        width: 50%;
    }

    .mob-08,
    .mob-eight,
    .mob-2-3 {
        width: 66.66667%;
    }

    .mob-09,
    .mob-nine,
    .mob-3-4 {
        width: 75%;
    }

    .mob-12,
    .mob-twelve,
    .mob-full {
        width: 100%;
    }

    .hide-on-mobile {
        display: none;
    }
}


/* ------------------------------------------------------------------- 
* ## small mobile devices
* ------------------------------------------------------------------- */

/* stack columns on small mobile devices
* ------------------------------------------------------------------- */

@media only screen and (max-width: 400px) {
    .row {
        width: auto;
        padding-left: 10px;
        padding-right: 10px;
    }

    .row .row {
        margin-left: 0;
        margin-right: 0;
    }

    [class*="col-"] {
        /* width: 100% !important;
        float: none !important;
        clear: both !important; */
        margin-left: 0;
        margin-right: 0;
        padding: 0;
    }

    /* [class*="col-"]+[class*="col-"].end {
        float: none;
    } */

    .sm-02-4,
    .sm-two-four,
    .sm-1-5 {
        width: 20%;
    }

    .sm-03,
    .sm-three,
    .sm-1-4 {
        width: 25%;
    }

    .sm-04,
    .sm-four,
    .sm-1-3 {
        width: 33.33333%;
    }

    .sm-06,
    .sm-six,
    .sm-1-2 {
        width: 50%;
    }

    .sm-08,
    .sm-eight,
    .sm-2-3 {
        width: 66.66667%;
    }

    .sm-09,
    .sm-nine,
    .sm-3-4 {
        width: 75%;
    }

    .sm-12,
    .sm-twelve,
    .sm-full {
        width: 100%;
    }

    .hide-on-small {
        display: none;
    }
}

/* ------------------------------------------------------------------- 
* ## small mobile devices
* ------------------------------------------------------------------- */

/* stack columns on extra small mobile devices
* ------------------------------------------------------------------- */

@media only screen and (max-width: 300px) {
    .row .row {
        margin-left: 0;
        margin-right: 0;
    }

    [class*="col-"] {
        width: 100% !important;
        float: none !important;
        clear: both !important;
        margin-left: 0;
        margin-right: 0;
        padding: 0;
    }

    [class*="col-"]+[class*="col-"].end {
        float: none;
    }

    .hide-on-xs {
        display: none;
    }
}


/* ===================================================================
* # block grids
* ------------------------------------------------------------------- */

/*   Equally-sized columns define at row level
* ------------------------------------------------------------------- */
[class*="block-"]:after {
    content: "";
    display: table;
    clear: both;
}

.block-1-6 .col-block {
    width: 16.66667%;
}

.block-1-5 .col-block {
    width: 20%;
}

.block-1-4 .col-block {
    width: 25%;
}

.block-1-3 .col-block {
    width: 33.33333%;
}

.block-1-2 .col-block {
    width: 50%;
}

.block-1-1 .col-block,
.block-full .col-block {
    width: 100%;
}


/**
* Clearing for block grid columns. Allow columns with 
* different heights to align properly.
*/

.block-1-6 .col-block:nth-child(6n+1),
.block-1-5 .col-block:nth-child(5n+1),
.block-1-4 .col-block:nth-child(4n+1),
.block-1-3 .col-block:nth-child(3n+1),
.block-1-2 .col-block:nth-child(2n+1) {
    clear: both;
}


/* ------------------------------------------------------------------- 
* ## medium size devices
* ------------------------------------------------------------------- */
@media only screen and (max-width: 1200px) {
    .block-m-1-6 .col-block {
        width: 16.66667%;
    }

    .block-m-1-5 .col-block {
        width: 20%;
    }

    .block-m-1-4 .col-block {
        width: 25%;
    }

    .block-m-1-3 .col-block {
        width: 33.33333%;
    }

    .block-m-1-2 .col-block {
        width: 50%;
    }

    .block-m-full .col-block {
        width: 100%;
        clear: both;
    }

    [class*="block-m-"] .col-block:nth-child(n) {
        clear: none;
    }

    .block-m-1-6 .col-block:nth-child(6n+1),
    .block-m-1-5 .col-block:nth-child(5n+1),
    .block-m-1-4 .col-block:nth-child(4n+1),
    .block-m-1-3 .col-block:nth-child(3n+1),
    .block-m-1-2 .col-block:nth-child(2n+1) {
        clear: both;
    }
}


/* ------------------------------------------------------------------- 
* ## tablets
* ------------------------------------------------------------------- */
@media only screen and (max-width: 800px) {
    .block-tab-1-6 .col-block {
        width: 16.66667%;
    }

    .block-tab-1-5 .col-block {
        width: 20%;
    }

    .block-tab-1-4 .col-block {
        width: 25%;
    }

    .block-tab-1-3 .col-block {
        width: 33.33333%;
    }

    .block-tab-1-2 .col-block {
        width: 50%;
    }

    .block-tab-full .col-block {
        width: 100%;
        clear: both;
    }

    [class*="block-tab-"] .col-block:nth-child(n) {
        clear: none;
    }

    .block-tab-1-6 .col-block:nth-child(6n+1),
    .block-tab-1-6 .col-block:nth-child(5n+1),
    .block-tab-1-4 .col-block:nth-child(4n+1),
    .block-tab-1-3 .col-block:nth-child(3n+1),
    .block-tab-1-2 .col-block:nth-child(2n+1) {
        clear: both;
    }
}


/* ------------------------------------------------------------------- 
* ## mobile devices
* ------------------------------------------------------------------- */
@media only screen and (max-width: 600px) {
    .block-mob-1-6 .col-block {
        width: 16.66667%;
    }

    .block-mob-1-5 .col-block {
        width: 20%;
    }

    .block-mob-1-4 .col-block {
        width: 25%;
    }

    .block-mob-1-3 .col-block {
        width: 33.33333%;
    }

    .block-mob-1-2 .col-block {
        width: 50%;
    }

    .block-mob-full .col-block {
        width: 100%;
        clear: both;
    }

    [class*="block-mob-"] .col-block:nth-child(n) {
        clear: none;
    }

    .block-mob-1-6 .col-block:nth-child(6n+1),
    .block-mob-1-5 .col-block:nth-child(5n+1),
    .block-mob-1-4 .col-block:nth-child(4n+1),
    .block-mob-1-3 .col-block:nth-child(3n+1),
    .block-mob-1-2 .col-block:nth-child(2n+1) {
        clear: both;
    }
}


/* ------------------------------------------------------------------- 
* ## small mobile devices
* ------------------------------------------------------------------- */

/* stack columns on small mobile devices
* ------------------------------------------------------------------- */

@media only screen and (max-width: 400px) {
    .stack .col-block {
        width: 100% !important;
        float: none !important;
        clear: both !important;
        margin-left: 0;
        margin-right: 0;
    }
}


/* ===================================================================
* # MISC
*
* ------------------------------------------------------------------- */
.wide {
    max-width: 1400px;
}

.bit-wide {
    max-width: 1200px;
}

.bit-narrow {
    max-width: 1120px;
}

.narrow {
    max-width: 1000px;
}

.narrower {
    max-width: 800px;
}

.narrowest {
    max-width: 600px;
}

.group:after {
    content: "";
    display: table;
    clear: both;
}

[hidden],
.hidden,
[hide],
.hide {
    display: none !important;
}

.is-hidden {
    display: none;
}

.is-visible {
    visibility: visible;
}

.is-invisible {
    visibility: hidden;
}

.overflow-hidden {
    overflow: hidden;
}

.antialiased {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.no-gutters {
    margin: 0;
    padding: 0;
}

.no-margin {
    margin: 0;
}

.no-padding {
    padding: 0;
}

.m-2 {
    margin: 2rem;
}
.ml-2 {
    margin-left: 2rem;
}

.p-2 {
    padding: 2rem;
}

.remove-bottom {
    margin-bottom: 0;
}

.add-top {
    margin-top: 6rem !important;
}

.half-top {
    margin-top: 3rem !important;
}

.add-bottom {
    margin-bottom: 6rem !important;
}

.half-bottom {
    margin-bottom: 3rem !important;
}

.no-border {
    border: none;
}

.full-width {
    width: 100%;
}

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

.text-left,
.left-align {
    text-align: left;
}

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

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

.pull-left {
    float: left;
}

.pull-right {
    float: right;
}

.align-center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.center,
.center-align {
    text-align: center;
}

.thin-text {
    font-weight: 100;
}

.extralight-text {
    font-weight: 200;
}

.light-text {
    font-weight: 300;
}

.reg-text {
    font-weight: 400;
}

.medium-text {
    font-weight: 500;
}

.semibold-text {
    font-weight: 600;
}

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

.extrabold-text {
    font-weight: 800;
}

.black-text {
    font-weight: 900;
}

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

.caps-text {
    text-transform: capitalize;
}

.lower-text {
    text-transform: lowercase;
}

.upper-text {
    text-transform: uppercase;
}

.center-block {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.truncate {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.valign-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.clearfix {
    clear: both;
}

.divider {
    height: 1px;
    overflow: hidden;
    background-color: #e0e0e0;
}

.pointer {
    cursor: pointer;
}

.no-radius {
    border-radius: 0;
}

.circle {
    border-radius: 50%;
}

.rounded {
    border-radius: 50px !important;
}

.rounded-50 {
    border-radius: 50px;
}

.rounded-40 {
    border-radius: 40px;
}

.rounded-30 {
    border-radius: 30px;
}

.rounded-20 {
    border-radius: 20px;
}

.rounded-10 {
    border-radius: 10px;
}

.rounded-5 {
    border-radius: 5px;
}

.image-size-16 {
    width: 16px;
}

.image-size-20 {
    width: 20px;
}

.image-size-32 {
    width: 32px;
}

.image-size-64 {
    width: 64px;
}

.image-size-96 {
    width: 96px;
}

.image-size-128 {
    width: 128px;
}

.image-size-256 {
    width: 256px;
}

.image-size-512 {
    width: 512px;
}

.image-size-100 {
    width: 100px;
}

.image-size-200 {
    width: 200px;
}

.image-size-300 {
    width: 300px;
}

.image-size-400 {
    width: 400px;
}

.image-size-500 {
    width: 500px;
}

/*# sourceMappingURL=base.css.map */