﻿/* Property/Value Structure
------------------------------------------------------------------------------------------------------------*/

/* 
    <> Display & Positioning
        -> display 
        -> position
        -> top, left, right, bottom 
    <> Margin & Padding
        -> margin 
        -> padding
        -> width
        -> height
    <> Float & Clear
        -> float
        -> clear
    <> Font Styling
        -> font
        -> font-size
        -> font-style
        -> font-weight
        -> font-variant
        -> line-height
        -> text-decoration
        -> color
    <> Backgrounds & Broders
        -> background
        -> background-color
        -> background-image
        -> background-repeat
        -> background-position
        -> border
    <> Additionals
        -> overflow
        -> visibility
        -> z-index
        -> "rest"
*/

/* Common - Global
------------------------------------------------------------------------------------------------------------*/

/* Imports
--------------------------------------------------------------*/

@import url("https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700");

@import url("https://fonts.googleapis.com/css?family=Roboto:400,300,500,700");

/* Defaults
--------------------------------------------------------------*/

body, form {
    cursor: default;
}

:active, :hover, :focus {
    outline: 0;
}

a {
    color: #337AB7;
    text-decoration: none;
    background-color: transparent;
}

a:active,
a:hover {
    outline: 0;
}

/*table { border-collapse: separate; }*/

table, td, th {
    vertical-align: middle;
}

/* Misc / Helpers
--------------------------------------------------------------*/

/**
 * Misc / Helpers sections:
 * - Display & Visibility
 * - Position
 * - Margin / Padding
 * - Width / Height
 * - Backgrounds
 * - Borders
 * - Font / Text
 * - Rotate
 * - Vertical Align
 * - Bootstrap Row Gutter
 * - Font Awesome
 * - Material Design Icons
 * - Misc
 */

/* Display & Visibility
--------------------------------------------------------------*/

.block {
    display: block;
}

.inline-block {
    display: inline-block;
}

.display-none {
    display: none;
}

.flex {
    display: flex;
}

.inline-flex {
    display: inline-flex;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.fixed {
    position: fixed;
}

.float-none {
    float: none !important;
}

.clear-both {
    clear: both;
}

.overflow-auto {
    overflow: auto !important;
}

.overflow-y-scroll {
    overflow-y: scroll;
}

.overflow-y-auto {
    overflow-y: auto;
}

.overflow-x-hidden {
    overflow-x: hidden;
}

.overflow-y-hidden {
    overflow-y: hidden;
}

.overflow-hidden {
    overflow: hidden !important;
}

.overflow-visible {
    overflow: visible !important;
}

.invisible {
    visibility: hidden;
}

.z-10 {
    z-index: 10;
}

.z-12 {
    z-index: 12;
}

.z-15 {
    z-index: 15;
}

.z-30 {
    z-index: 30;
}

/* Position
--------------------------------------------------------------*/

.top-0 {
    top: 0 !important
}

.top-1 {
    top: 1px !important
}

.top-2 {
    top: 2px !important
}

.top-5 {
    top: 5px !important
}

.top-10 {
    top: 10px !important
}

.top-15 {
    top: 15px !important
}

.top-20 {
    top: 20px !important
}

.top-1\/2 {
    top: 50%;
}

.top-100\% {
    top: 100%;
}

.left-0 {
    left: 0 !important
}

.left-5 {
    left: 5px !important
}

.left-10 {
    left: 10px !important
}

.left-15 {
    left: 15px !important
}

.left-20 {
    left: 20px !important
}

.right-0 {
    right: 0 !important
}

.right-5 {
    right: 5px !important
}

.right-10 {
    right: 10px !important
}

.right-15 {
    right: 15px !important
}

.right-20 {
    right: 20px !important
}

.bottom-0 {
    bottom: 0 !important
}

.bottom-5 {
    bottom: 5px !important
}

.bottom-10 {
    bottom: 10px !important
}

.bottom-15 {
    bottom: 15px !important
}

.bottom-20 {
    bottom: 20px !important
}

.-translate-y-1\/2 {
    transform: translateY(-50%);
}
/* Flex Alignment
--------------------------------------------------------------*/
.flex-col {
    flex-direction: column;
}

.flex-basis-full {
    flex-basis: 100% !important;
}

.flex-basis-1\/2 {
    flex-basis: 50% !important;
}

.flex-1 {
    flex: 1 1 0%;
}

.flex-grow-0 {
    flex-grow: 0;
}

.flex-grow {
    flex-grow: 1;
}

.flex-grow-2 {
    flex-grow: 2;
}

.flex-shrink-none {
    flex-shrink: 0;
}

.flex-shrink {
    flex-shrink: 1;
}

.flex-shrink-2 {
    flex-shrink: 2;
}

.flex-shrink-3 {
    flex-shrink: 3;
}

.flex-start {
    justify-content: flex-start;
}

.flex-end {
    justify-content: flex-end;
}

.flex-center {
    justify-content: center;
}

.flex-safe-center {
    justify-content: safe center;
}

.flex-space-between {
    justify-content: space-between;
}

.flex-space-evenly {
    justify-content: space-evenly;
}

.flex-space-around {
    justify-content: space-around;
}

.flex-wrap {
    flex-wrap: wrap
}

.align-center {
    align-items: center;
}

.align-end {
    align-items: flex-end;
}

.align-start {
    align-items: flex-start;
}

.flex-self-align-center {
    align-self: center;
}

.gap-5 {
    column-gap: 5px;
}

.gap-7 {
    column-gap: 7px;
}

.gap-10 {
    column-gap: 10px;
}

.gap-15 {
    column-gap: 15px;
}

.gap-20 {
    column-gap: 20px;
}

.gap-30 {
    column-gap: 30px;
}

.row-gap-5 {
    row-gap: 5px;
}

.row-gap-10 {
    row-gap: 10px;
}

.row-gap-15 {
    row-gap: 15px;
}

.row-gap-20 {
    row-gap: 20px;
}

.row-gap-30 {
    row-gap: 30px;
}

/* Margin / Padding 
--------------------------------------------------------------*/

.auto-margin {
    margin: auto !important;
}

.auto-margin-left {
    margin-left: auto !important;
}

.no-margin {
    margin: 0 !important;
}

.margin-5 {
    margin: 5px !important;
}

.margin-10 {
    margin: 10px !important;
}

.margin-15 {
    margin: 15px !important;
}

.margin-20 {
    margin: 20px !important;
}

.margin-25 {
    margin: 25px !important;
}

.margin-30 {
    margin: 30px !important;
}

.top-margin-0 {
    margin-top: 0 !important;
}

.top-margin-1 {
    margin-top: 1px !important;
}

.top-margin-2 {
    margin-top: 2px !important;
}

.top-margin-3 {
    margin-top: 3px !important;
}

.top-margin-4 {
    margin-top: 4px !important;
}

.top-margin-5 {
    margin-top: 5px !important;
}

.top-margin-10 {
    margin-top: 10px !important;
}

.top-margin-15 {
    margin-top: 15px !important;
}

.top-margin-20 {
    margin-top: 20px !important;
}

.top-margin-25 {
    margin-top: 25px !important;
}

.top-margin-30 {
    margin-top: 30px !important;
}

.top-margin-40 {
    margin-top: 40px !important;
}

.top-margin-neg-1 {
    margin-top: -1px !important;
}

.top-margin-neg-2 {
    margin-top: -2px !important;
}

.top-margin-neg-3 {
    margin-top: -3px !important;
}

.top-margin-neg-4 {
    margin-top: -4px !important;
}

.top-margin-neg-5 {
    margin-top: -5px !important;
}

.top-margin-neg-10 {
    margin-top: -10px !important;
}

.top-margin-neg-15 {
    margin-top: -15px !important;
}

.top-margin-neg-20 {
    margin-top: -20px !important;
}

.top-margin-neg-25 {
    margin-top: -25px !important;
}

.top-margin-neg-30 {
    margin-top: -30px !important;
}

.top-margin-neg-37 {
    margin-top: -37px !important;
}

.left-margin-0 {
    margin-left: 0 !important;
}

.left-margin-1 {
    margin-left: 1px !important;
}

.left-margin-2 {
    margin-left: 2px !important;
}

.left-margin-3 {
    margin-left: 3px !important;
}

.left-margin-4 {
    margin-left: 4px !important;
}

.left-margin-5 {
    margin-left: 5px !important;
}

.left-margin-8 {
    margin-left: 8px !important;
}

.left-margin-10 {
    margin-left: 10px !important;
}

.left-margin-15 {
    margin-left: 15px !important;
}

.left-margin-20 {
    margin-left: 20px !important;
}

.left-margin-25 {
    margin-left: 25px !important;
}

.left-margin-30 {
    margin-left: 30px !important;
}

.left-margin-neg-1 {
    margin-left: -1px !important;
}

.left-margin-neg-2 {
    margin-left: -2px !important;
}

.left-margin-neg-3 {
    margin-left: -3px !important;
}

.left-margin-neg-4 {
    margin-left: -4px !important;
}

.left-margin-neg-5 {
    margin-left: -5px !important;
}

.left-margin-neg-8 {
    margin-left: -8px !important;
}

.left-margin-neg-10 {
    margin-left: -10px !important;
}

.left-margin-neg-15 {
    margin-left: -15px !important;
}

.left-margin-neg-20 {
    margin-left: -20px !important;
}

.left-margin-neg-25 {
    margin-left: -25px !important;
}

.left-margin-neg-30 {
    margin-left: -30px !important;
}

.right-margin-0 {
    margin-right: 0 !important;
}

.right-margin-1 {
    margin-right: 1px !important;
}

.right-margin-2 {
    margin-right: 2px !important;
}

.right-margin-3 {
    margin-right: 3px !important;
}

.right-margin-4 {
    margin-right: 4px !important;
}

.right-margin-5 {
    margin-right: 5px !important;
}

.right-margin-10 {
    margin-right: 10px !important;
}

.right-margin-15 {
    margin-right: 15px !important;
}

.right-margin-20 {
    margin-right: 20px !important;
}

.right-margin-25 {
    margin-right: 25px !important;
}

.right-margin-30 {
    margin-right: 30px !important;
}

.right-margin-neg-1 {
    margin-right: -1px !important;
}

.right-margin-neg-2 {
    margin-right: -2px !important;
}

.right-margin-neg-3 {
    margin-right: -3px !important;
}

.right-margin-neg-4 {
    margin-right: -4px !important;
}

.right-margin-neg-5 {
    margin-right: -5px !important;
}

.right-margin-neg-10 {
    margin-right: -10px !important;
}

.right-margin-neg-15 {
    margin-right: -15px !important;
}

.right-margin-neg-20 {
    margin-right: -20px !important;
}

.right-margin-neg-25 {
    margin-right: -25px !important;
}

.right-margin-neg-30 {
    margin-right: -30px !important;
}

.bottom-margin-0 {
    margin-bottom: 0 !important;
}

.bottom-margin-1 {
    margin-bottom: 1px !important;
}

.bottom-margin-2 {
    margin-bottom: 2px !important;
}

.bottom-margin-3 {
    margin-bottom: 3px !important;
}

.bottom-margin-4 {
    margin-bottom: 4px !important;
}

.bottom-margin-5 {
    margin-bottom: 5px !important;
}

.bottom-margin-50 {
    margin-bottom: 50px !important;
}

.bottom-margin-10 {
    margin-bottom: 10px !important;
}

.bottom-margin-15 {
    margin-bottom: 15px !important;
}

.bottom-margin-20 {
    margin-bottom: 20px !important;
}

.bottom-margin-25 {
    margin-bottom: 25px !important;
}

.bottom-margin-30 {
    margin-bottom: 30px !important;
}

.bottom-margin-37 {
    margin-bottom: 37px !important;
}

.bottom-margin-40 {
    margin-bottom: 40px !important;
}

.bottom-margin-70 {
    margin-bottom: 70px !important;
}

.bottom-margin-neg-1 {
    margin-bottom: -1px !important;
}

.bottom-margin-neg-2 {
    margin-bottom: -2px !important;
}

.bottom-margin-neg-3 {
    margin-bottom: -3px !important;
}

.bottom-margin-neg-4 {
    margin-bottom: -4px !important;
}

.bottom-margin-neg-5 {
    margin-bottom: -5px !important;
}

.bottom-margin-neg-10 {
    margin-bottom: -10px !important;
}

.bottom-margin-neg-15 {
    margin-bottom: -15px !important;
}

.bottom-margin-neg-20 {
    margin-bottom: -20px !important;
}

.bottom-margin-neg-25 {
    margin-bottom: -25px !important;
}

.bottom-margin-neg-30 {
    margin-bottom: -30px !important;
}

.bottom-margin-neg-40 {
    margin-bottom: -40px !important;
}

.fix-margin {
    margin-left: 0 !important
}

.no-padding {
    padding: 0 !important;
}

.padding-0 {
    padding: 0 !important;
}

.padding-5 {
    padding: 5px !important;
}

.padding-7 {
    padding: 7px !important;
}

.padding-10 {
    padding: 10px !important;
}

.padding-15 {
    padding: 15px !important;
}

.padding-20 {
    padding: 20px !important;
}

.padding-25 {
    padding: 25px !important;
}

.padding-30 {
    padding: 30px !important;
}

.padding-40 {
    padding: 40px !important;
}

.padding-50 {
    padding: 50px !important;
}

.padding-100 {
    padding: 100px !important;
}

.padding-y-7 {
    padding-top: 7px !important;
    padding-bottom: 7px !important;
}

.padding-x-12 {
    padding-left: 12px !important;
    padding-right: 12px !important;
}

.top-padding-0 {
    padding-top: 0 !important;
}

.top-padding-1 {
    padding-top: 1px !important;
}

.top-padding-2 {
    padding-top: 2px !important;
}

.top-padding-3 {
    padding-top: 3px !important;
}

.top-padding-4 {
    padding-top: 4px !important;
}

.top-padding-5 {
    padding-top: 5px !important;
}

.top-padding-7 {
    padding-top: 7px !important;
}

.top-padding-8 {
    padding-top: 8px !important;
}

.top-padding-10 {
    padding-top: 10px !important;
}

.top-padding-12 {
    padding-top: 12px !important;
}

.top-padding-15 {
    padding-top: 15px !important;
}

.top-padding-17 {
    padding-top: 17px !important;
}

.top-padding-20 {
    padding-top: 20px !important;
}

.top-padding-25 {
    padding-top: 25px !important;
}

.top-padding-30 {
    padding-top: 30px !important;
}

.top-padding-40 {
    padding-top: 40px !important;
}

.top-padding-50 {
    padding-top: 50px !important;
}

.top-padding-90 {
    padding-top: 90px !important;
}

.top-padding-100 {
    padding-top: 100px !important;
}

.left-padding-0 {
    padding-left: 0 !important;
}

.left-padding-1 {
    padding-left: 1px !important;
}

.left-padding-2 {
    padding-left: 2px !important;
}

.left-padding-3 {
    padding-left: 3px !important;
}

.left-padding-4 {
    padding-left: 4px !important;
}

.left-padding-5 {
    padding-left: 5px !important;
}

.left-padding-7 {
    padding-left: 7px !important;
}

.left-padding-10 {
    padding-left: 10px !important;
}

.left-padding-15 {
    padding-left: 15px !important;
}

.left-padding-20 {
    padding-left: 20px !important;
}

.left-padding-25 {
    padding-left: 25px !important;
}

.left-padding-30 {
    padding-left: 30px !important;
}

.left-padding-35 {
    padding-left: 35px !important;
}

.left-padding-40 {
    padding-left: 40px !important;
}

.left-padding-50 {
    padding-left: 50px !important;
}

.left-padding-100 {
    padding-left: 100px !important;
}

.right-padding-0 {
    padding-right: 0 !important;
}

.right-padding-1 {
    padding-right: 1px !important;
}

.right-padding-2 {
    padding-right: 2px !important;
}

.right-padding-3 {
    padding-right: 3px !important;
}

.right-padding-4 {
    padding-right: 4px !important;
}

.right-padding-5 {
    padding-right: 5px !important;
}

.right-padding-7 {
    padding-right: 7px !important;
}

.right-padding-10 {
    padding-right: 10px !important;
}

.right-padding-15 {
    padding-right: 15px !important;
}

.right-padding-20 {
    padding-right: 20px !important;
}

.right-padding-25 {
    padding-right: 25px !important;
}

.right-padding-30 {
    padding-right: 30px !important;
}

.right-padding-40 {
    padding-right: 40px !important;
}

.right-padding-50 {
    padding-right: 50px !important;
}

.right-padding-100 {
    padding-right: 100px !important;
}

.bottom-padding-0 {
    padding-bottom: 0 !important;
}

.bottom-padding-1 {
    padding-bottom: 1px !important;
}

.bottom-padding-2 {
    padding-bottom: 2px !important;
}

.bottom-padding-3 {
    padding-bottom: 3px !important;
}

.bottom-padding-4 {
    padding-bottom: 4px !important;
}

.bottom-padding-5 {
    padding-bottom: 5px !important;
}

.bottom-padding-10 {
    padding-bottom: 10px !important;
}

.bottom-padding-15 {
    padding-bottom: 15px !important;
}

.bottom-padding-20 {
    padding-bottom: 20px !important;
}

.bottom-padding-25 {
    padding-bottom: 25px !important;
}

.bottom-padding-30 {
    padding-bottom: 30px !important;
}

.bottom-padding-40 {
    padding-bottom: 40px !important;
}

.bottom-padding-50 {
    padding-bottom: 50px !important;
}

.bottom-padding-90 {
    padding-bottom: 90px !important;
}

.bottom-padding-100 {
    padding-bottom: 100px !important;
}

.bottom-padding-120 {
    padding-bottom: 120px !important;
}

/* Cursor
--------------------------------------------------------------*/

.cursor-default {
    cursor: default !important;
}

.cursor-pointer {
    cursor: pointer !important;
}

.cursor-help {
    cursor: help !important;
}

.cursor-not-allowed {
    cursor: not-allowed;
}

.cursor-move {
    cursor: move;
}

/* Width / Height
--------------------------------------------------------------*/

.width-auto {
    width: auto !important;
}

.width-full {
    width: 100% !important;
}

.width-5 {
    width: 5px !important;
}

.width-8 {
    width: 8px !important;
}

.width-10 {
    width: 10px !important;
}

.width-15 {
    width: 15px !important;
}

.width-20 {
    width: 20px !important;
}

.width-25 {
    width: 25px !important;
}

.width-30 {
    width: 30px !important;
}

.width-35 {
    width: 35px !important;
}

.width-40 {
    width: 40px !important;
}

.width-45 {
    width: 45px !important;
}

.width-50 {
    width: 50px !important;
}

.width-60 {
    width: 60px !important;
}

.width-70 {
    width: 70px !important;
}

.width-80 {
    width: 80px !important;
}

.width-90 {
    width: 90px !important;
}

.width-96 {
    width: 96px !important;
}

.width-100 {
    width: 100px !important;
}

.width-110 {
    width: 110px !important;
}

.width-120 {
    width: 120px !important;
}

.width-130 {
    width: 130px !important;
}

.width-140 {
    width: 140px !important;
}

.width-150 {
    width: 150px !important;
}

.width-160 {
    width: 160px !important;
}

.width-170 {
    width: 170px !important;
}

.width-176 {
    width: 176px !important;
}

.width-180 {
    width: 180px !important;
}

.width-190 {
    width: 190px !important;
}

.width-200 {
    width: 200px !important;
}

.width-212 {
    width: 212px !important;
}

.width-230 {
    width: 230px !important;
}

.width-250 {
    width: 250px !important;
}

.width-275 {
    width: 275px !important;
}

.width-300 {
    width: 300px !important;
}

.width-350 {
    width: 350px !important;
}

.width-400 {
    width: 400px !important;
}

.width-500 {
    width: 500px !important;
}

.width-600 {
    width: 600px !important;
}

.width-1\/4 {
    width: 25%;
}

.width-1\/3 {
    width: 33%
}

.width-1\/2 {
    width: 50%;
}

.width-2\/3 {
    width: 66%
}

.width-3\/4 {
    width: 75%;
}

.width-4\/5 {
    width: 80% !important;
}

.width-max-10vw {
    max-width: 10vw;
}

.width-max-15vw {
    max-width: 15vw;
}

.width-max-20vw {
    max-width: 20vw;
}

.width-max-60 {
    max-width: 60px;
}

.width-max-100 {
    max-width: 100px;
}

.width-max-140 {
    max-width: 140px;
}

.width-max-150 {
    max-width: 150px;
}

.width-max-175 {
    max-width: 175px;
}

.width-max-200 {
    max-width: 200px;
}

.width-max-250 {
    max-width: 250px;
}

.width-max-300 {
    max-width: 300px;
}

.width-max-400 {
    max-width: 400px;
}

.width-max-500 {
    max-width: 500px;
}

.width-max-600 {
    max-width: 600px;
}

.width-max-800 {
    max-width: 800px;
}

.width-max-full {
    max-width: 100%;
}

.width-min-0 {
    min-width: 0;
}

.width-min-100 {
    min-width: 100px;
}

.width-min-120 {
    min-width: 120px;
}

.width-min-130 {
    min-width: 130px;
}

.width-min-140 {
    min-width: 140px;
}

.width-min-150 {
    min-width: 150px;
}

.width-min-200 {
    min-width: 200px;
}

.width-min-250 {
    min-width: 250px;
}

.width-min-300 {
    min-width: 300px;
}

.width-min-400 {
    min-width: 400px;
}

.width-min-500 {
    min-width: 500px;
}

.width-min-600 {
    min-width: 600px;
}

.w-max {
    width: max-content;
}

.height-full {
    height: 100% !important;
}

.height-0 {
    height: 0px !important;
}

.height-5 {
    height: 5px !important;
}

.height-10 {
    height: 10px !important;
}

.height-15 {
    height: 15px !important;
}

.height-20 {
    height: 20px !important;
}

.height-25 {
    height: 25px !important;
}

.height-30 {
    height: 30px !important;
}

.height-35 {
    height: 35px !important;
}

.height-40 {
    height: 40px !important;
}

.height-45 {
    height: 45px !important;
}

.height-50 {
    height: 50px !important;
}

.height-55 {
    height: 55px !important;
}

.height-60 {
    height: 60px !important;
}

.height-70 {
    height: 70px !important;
}

.height-80 {
    height: 80px !important;
}

.height-90 {
    height: 90px !important;
}

.height-100 {
    height: 100px !important;
}

.height-110 {
    height: 110px !important;
}

.height-120 {
    height: 120px !important;
}

.height-130 {
    height: 130px !important;
}

.height-140 {
    height: 140px !important;
}

.height-150 {
    height: 150px !important;
}

.height-160 {
    height: 160px !important;
}

.height-170 {
    height: 170px !important;
}

.height-180 {
    height: 180px !important;
}

.height-190 {
    height: 190px !important;
}

.height-200 {
    height: 200px !important;
}

.height-250 {
    height: 250px !important;
}

.height-300 {
    height: 300px !important;
}

.height-350 {
    height: 350px !important;
}

.height-400 {
    height: 400px !important;
}

.height-500 {
    height: 500px !important;
}

.height-1\/2 {
    height: 50% !important;
}

.h-screen {
    height: 100vh !important;
}

.height-max-100 {
    max-height: 100px;
}

.height-max-150 {
    max-height: 150px;
}

.height-max-200 {
    max-height: 200px;
}

.height-max-250 {
    max-height: 250px;
}

.height-max-300 {
    max-height: 300px;
}

.height-max-400 {
    max-height: 400px;
}

.height-max-500 {
    max-height: 500px;
}

.height-max-600 {
    max-height: 600px;
}

.height-min-80 {
    min-height: 80px;
}

.height-min-100 {
    min-height: 100px;
}

.height-min-120 {
    min-height: 120px;
}

.height-min-150 {
    min-height: 150px;
}

.height-min-200 {
    min-height: 200px;
}

.height-min-250 {
    min-height: 250px;
}

.height-min-300 {
    min-height: 300px;
}

.height-min-400 {
    min-height: 400px;
}

.height-min-500 {
    min-height: 500px;
}

.height-min-600 {
    min-height: 600px;
}

.height-min-full {
    min-height: 100% !important;
}

.height-min-screen {
    min-height: 100vh !important;
}

/* Backgrounds
--------------------------------------------------------------*/

.bg-light-gray {
    background-color: #f9f9f9;
}

.bg-gray {
    background-color: #f3f3f4;
}

.hover\:bg-gray:hover {
    background-color: #f3f3f4 !important;
}

.bg-medium-gray {
    background-color: #e8e8e8;
}

.bg-white {
    background-color: #FFF;
}

.bg-navy {
    background-color: #42A5F5;
    color: #FFF;
}

.bg-medium-blue {
    background-color: #337ab7;
    color: #fff;
}

.bg-blue {
    background-color: #1c84c6;
    color: #FFF;
}

.bg-red {
    background-color: #FF5252;
    color: #FFF;
}

.bg-black {
    background-color: #262626;
}

.bg-skimmer-blue {
    background-color: #42a5f5;
    color: white;
}

/* Borders
--------------------------------------------------------------*/

.no-border {
    border: none !important;
}

.top-border-0 {
    border-top: none !important;
}

.left-border-0 {
    border-left: none !important;
}

.right-border-0 {
    border-right: none !important;
}

.bottom-border-0 {
    border-bottom: none !important;
}

.top-border-trans {
    border-top: 1px solid transparent !important;
}

.left-border-trans {
    border-left: 1px solid transparent !important;
}

.right-border-trans {
    border-right: 1px solid transparent !important;
}

.bottom-border-trans {
    border-bottom: 1px solid transparent !important;
}

.border-red {
    border: 1px solid #ff5252 !important;
}

.border-error-red {
    border: 1px solid #d9534f !important;
}
.border-orange {
    border: 1px solid #f9991d !important;
}

.border-gray-light {
    border: 1px solid #e5e6e7;
}

.border-gray-100 {
    border: 1px solid #f8f9fa;
}

.border-gray-200 {
    border: 1px solid #e9ecef;
}

.border-gray-300 {
    border: 1px solid #dee2e6;
}

.border-gray-400 {
    border: 1px solid #ced4da;
}

.border-gray-500 {
    border: 1px solid #adb5bd;
}

.border-gray-600 {
    border: 1px solid #6c757d;
}

.top-border-gray-light {
    border-top: 1px solid #e5e6e7;
}

.bottom-border-gray-light {
    border-bottom: 1px solid #e5e6e7;
}

.border-gray-xlight {
    border: 1px solid #e7eaec;
}

.top-border-gray-xlight {
    border-top: 1px solid #e7eaec;
}

.bottom-border-gray-xlight {
    border-bottom: 1px solid #e7eaec;
}

.right-border-gray-xlight {
    border-right: 1px solid #e7eaec;
}

.bg-transparent {
    background: transparent !important;
}

.no-bg {
    background: none !important;
}

.no-space {
    margin: 0 !important;
    padding: 0 !important;
}

.no-box-shadow {
    box-shadow: none !important;
}

.shadow-sm {
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 1px -2px rgba(0, 0, 0, 0.10), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
}
.shadow {
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
}
.shadow-md {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}
.shadow-lg {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.border-dashed {
    height: 2px;
    background-image: repeating-linear-gradient(270deg, #e7eaec, #e7eaec 5px, transparent 6px, transparent 9px, #e7eaec 10px);
    background-size: 100% 2px;
    background-position: 0 0, 0 0, 100% 0, 0 100%;
    background-repeat: no-repeat;
}

.rounded-sm {
    border-radius: 3px;
}

.rounded {
    border-radius: 5px;
}

.rounded-50 {
    border-radius: 50%;
}

.rounded-full {
    border-radius: 9999px;
}

/* Font / Text
--------------------------------------------------------------*/

.font-light {
    font-weight: 300
}

.font-normal {
    font-weight: 400 !important
}

.font-strong {
    font-weight: 600
}

.font-semibold {
    font-weight: 600 !important;
}

.font-heavy {
    font-weight: 700;
}

.font-bold {
    font-weight: 700 !important;
}

.font-italic {
    font-style: italic;
}

.font-9 {
    font-size: 9px;
}

.font-10 {
    font-size: 10px;
}

.font-11 {
    font-size: 11px;
}

.font-12 {
    font-size: 12px;
}

.font-13 {
    font-size: 13px;
}

.font-14 {
    font-size: 14px;
}

.font-15 {
    font-size: 15px;
}

.font-16 {
    font-size: 16px;
}

.font-18 {
    font-size: 18px !important;
}

.font-20 {
    font-size: 20px;
}

.font-22 {
    font-size: 22px;
}

.font-24 {
    font-size: 24px;
}

.font-26 {
    font-size: 26px;
}

.font-30 {
    font-size: 30px;
}

.font-36 {
    font-size: 36px;
}

.font-48 {
    font-size: 48px;
}

.font-72 {
    font-size: 72px;
}

.font-144 {
    font-size: 144px;
}

.font-red {
    color: #FF0000
}

.font-orange {
    color: #f9991d !important;
}

.text-muted-imp {
    color: #777 !important;
}

.text-normal {
    color: #676a6c !important;
}

.text-gray-500 {
    color: #676a6c;
}

.hover\:text-gray-500:hover {
    color: #676a6c !important;
}

.text-gray-400 {
    color: #999;
}

.text-gray-300 {
    color: #a9a9a9;
}

.text-gray-100 {
    color: #e2e3e3;
}

.text-orange {
    color: #ef6c00;
}

.text-red-400 {
    color: #ff5252;
}

.text-warning-dark {
    color: #ffab00;
}

.text-totals-green {
    color: #90ba2c;
}

.text-totals-red {
    color: #881010;
}

.text-totals-blue {
    color: #0b96ff;
}

.text-primary-imp {
    color: #337ab7 !important;
}

a.text-primary-imp:hover,
a.text-primary-imp:focus {
    color: #286090 !important;
}

.text-success-imp {
    color: #3c763d !important;
}

a.text-success-imp:hover,
a.text-success-imp:focus {
    color: #2b542c !important;
}

.text-info-imp {
    color: #31708f !important;
}

a.text-info-imp:hover,
a.text-info-imp:focus {
    color: #245269 !important;
}

.text-warning-imp {
    color: #8a6d3b !important;
}

a.text-warning-imp:hover,
a.text-warning-imp:focus {
    color: #66512c !important;
}

.text-danger-imp {
    color: #a94442 !important;
}

a.text-danger-imp:hover,
a.text-danger-imp:focus {
    color: #843534 !important;
}

.text-wrap {
    white-space: normal;
}

.text-overflow-ellipsis {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.text-overflow-ellipsis-4 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
    text-overflow: ellipsis;
}

.text-light-gray {
    color: #949494 !important;
    font-weight: 300;
}

.text-line-through {
    text-decoration: line-through;
}

.letter-spacing-0 {
    letter-spacing: 0px !important
}

.uppercase {
    text-transform: uppercase;
}

.text-align-left {
    text-align: left;
}

.text-align-right {
    text-align: right;
}

.text-align-center {
    text-align: center;
}

/* Rotate
--------------------------------------------------------------*/

.rotate-90 {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.rotate-180 {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.rotate-270 {
    -webkit-transform: rotate(270deg);
    -moz-transform: rotate(270deg);
    -o-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg);
}

/* Vertical Align
--------------------------------------------------------------*/

.vert-align-top {
    vertical-align: top !important;
}

.vert-align-middle {
    vertical-align: middle !important;
}

.vert-align-bottom {
    vertical-align: bottom !important;
}

.vert-align-baseline {
    vertical-align: baseline;
}

/* Bootstrap Row Gutter
--------------------------------------------------------------*/

.row.gutter-0 {
    margin-left: 0;
    margin-right: 0;
}

.row.gutter-10 {
    margin-left: -5px;
    margin-right: -5px;
}

.row.gutter-16 {
    margin-left: -8px;
    margin-right: -8px;
}

.row.gutter-20 {
    margin-left: -10px;
    margin-right: -10px;
}

.row.gutter-0 [class*="col-"] {
    padding-left: 0;
    padding-right: 0;
}

.row.gutter-10 [class*="col-"] {
    padding-left: 5px;
    padding-right: 5px;
}

.row.gutter-16 [class*="col-"] {
    padding-left: 8px;
    padding-right: 8px;
}

.row.gutter-20 [class*="col-"] {
    padding-left: 10px;
    padding-right: 10px;
}

/* Bootstrap Fixes
--------------------------------------------------------------*/

.navbar-nav.navbar-right:last-child {
    margin-right: 0;
}

.pointer-events-none {
    pointer-events: none;
}

/* Opacity 
--------------------------------------------------------------*/
.opacity-50 {
    opacity: 0.5;
}

.opacity-10 {
    opacity: 0.1;
}

/* Font Awesome
--------------------------------------------------------------*/
.fa-6x {
    font-size: 6em;
}

.fa-7x {
    font-size: 7em;
}

.fa-8x {
    font-size: 8em;
}

.fa-9x {
    font-size: 9em;
}

.fa-10x {
    font-size: 10em;
}

/* Material Design Icons
--------------------------------------------------------------*/

.mdi:before,
.mdi-set {
    display: inline-block;
    font: normal normal normal 24px/1 "Material Design Icons";
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transform: translate(0, 0);
}

.mdi-lg {
    font-size: 1.33333333em;
    line-height: 0.75em;
    vertical-align: -15%;
}

.mdi-2x {
    font-size: 2em;
}

.mdi-3x {
    font-size: 3em;
}

.mdi-4x {
    font-size: 4em;
}

.mdi-5x {
    font-size: 5em;
}

.mdi-fw {
    width: 1.28571429em;
    text-align: center;
}

.mdi.pull-left {
    float: left;
    margin-right: .15em;
}

.mdi.pull-right {
    float: right;
    margin-left: .15em;
}

/* Print
--------------------------------------------------------------*/

.pagebreak {
    clear: both;
    page-break-after: always;
}

/* Misc
--------------------------------------------------------------*/

.noselect {
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none;
    /* Non-prefixed version, currently
                                     supported by Chrome and Opera */
}

.pre-line {
    white-space: pre-line;
}

.pre-wrap {
    white-space: pre-wrap;
}

.break-word {
    word-break: break-word;
}

.leading-none {
    line-height: 1;
}

.leading-tight {
    line-height: 1.25;
}

.leading-snug {
    line-height: 1.375;
}

.leading-normal {
    line-height: 1.5;
}

.leading-relaxed {
    line-height: 1.625;
}

.leading-loose {
    line-height: 2;
}

.vertical-resize {
    resize: vertical !important;
}