@charset "UTF-8";

/**
 * Base application styles
 */

/* region "Base" */

html, body {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    overflow: hidden;
    font-size: 15px;
    color: #242424;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    border: none;
}

h4 {
    font-weight: 400;
}

h5, h6 {
    font-weight: 700;
}

hr {
    margin: 0;
    padding: 0;
}

/* endregion */

/* region "Animation classes" */

.b-smooth {
    -webkit-transition: all 0.15s;
    -moz-transition: all 0.15s;
    -o-transition: all 0.15s;
    transition: all 0.15s;
}

.b-smooth--x {
    -webkit-transition: all 0.25s;
    -moz-transition: all 0.25s;
    -o-transition: all 0.25s;
    transition: all 0.25s;
}

.b-smooth--xx {
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.b-smooth--xxx {
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s;
}

.b-anim-time--100 {
    -webkit-animation-duration: 100ms;
    -moz-animation-duration: 100ms;
    -o-animation-duration: 100ms;
    animation-duration: 100ms;
}

.b-anim-time--200 {
    -webkit-animation-duration: 200ms;
    -moz-animation-duration: 200ms;
    -o-animation-duration: 200ms;
    animation-duration: 200ms;
}

.b-anim-time--300 {
    -webkit-animation-duration: 300ms;
    -moz-animation-duration: 300ms;
    -o-animation-duration: 300ms;
    animation-duration: 300ms;
}

.b-anim-time--400 {
    -webkit-animation-duration: 400ms;
    -moz-animation-duration: 400ms;
    -o-animation-duration: 400ms;
    animation-duration: 400ms;
}

.b-anim-time--500 {
    -webkit-animation-duration: 500ms;
    -moz-animation-duration: 500ms;
    -o-animation-duration: 500ms;
    animation-duration: 500ms;
}

.b-anim-time--600 {
    -webkit-animation-duration: 600ms;
    -moz-animation-duration: 600ms;
    -o-animation-duration: 600ms;
    animation-duration: 600ms;
}

.b-anim-time--700 {
    -webkit-animation-duration: 700ms;
    -moz-animation-duration: 700ms;
    -o-animation-duration: 700ms;
    animation-duration: 700ms;
}

.b-anim-time--800 {
    -webkit-animation-duration: 800ms;
    -moz-animation-duration: 800ms;
    -o-animation-duration: 800ms;
    animation-duration: 800ms;
}

.b-anim-time--900 {
    -webkit-animation-duration: 900ms;
    -moz-animation-duration: 900ms;
    -o-animation-duration: 900ms;
    animation-duration: 900ms;
}

.b-anim-time--1000 {
    -webkit-animation-duration: 1000ms;
    -moz-animation-duration: 1000ms;
    -o-animation-duration: 1000ms;
    animation-duration: 1000ms;
}

.b-anim-time--1250 {
    -webkit-animation-duration: 1250ms;
    -moz-animation-duration: 1250ms;
    -o-animation-duration: 1250ms;
    animation-duration: 1250ms;
}

.b-anim-time--1500 {
    -webkit-animation-duration: 1500ms;
    -moz-animation-duration: 1500ms;
    -o-animation-duration: 1500ms;
    animation-duration: 1500ms;
}

.b-anim-time--1750 {
    -webkit-animation-duration: 1750ms;
    -moz-animation-duration: 1750ms;
    -o-animation-duration: 1750ms;
    animation-duration: 1750ms;
}

.b-anim-time--2000 {
    -webkit-animation-duration: 2000ms;
    -moz-animation-duration: 2000ms;
    -o-animation-duration: 2000ms;
    animation-duration: 2000ms;
}

.b-anim-time--2500 {
    -webkit-animation-duration: 2500ms;
    -moz-animation-duration: 2500ms;
    -o-animation-duration: 2500ms;
    animation-duration: 2500ms;
}

.b-anim-time--3000 {
    -webkit-animation-duration: 3000ms;
    -moz-animation-duration: 3000ms;
    -o-animation-duration: 3000ms;
    animation-duration: 3000ms;
}

/* endregion */

/* region "Select/drag classes" */

.b-no-select {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.b-no-drag {
    -webkit-touch-callout: none;
    -webkit-user-drag: none;
    -moz-user-drag: none;
    -ms-user-drag: none;
    user-drag: none;
}

/* endregion */

/* region "Text classes" */

.b-txt-ellipsis, .b-txt-truncate {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.b-txt-justify {
    text-align: justify;
}

/* endregion */

/* region "Alignment classes" */

.b-to-left {
    text-align: left;
}

.b-to-right {
    text-align: right;
}

.b-to-center {
    text-align: center;
}

.b-to-middle {
    vertical-align: middle;
}

.b-float-left {
    float: left;
}

.b-float-right {
    float: right;
}

.b-clearfix:before,
.b-clearfix:after {
    content: " ";
    display: table;
}

.b-clearfix:after {
    clear: both;
}

.b-clearfix {
    *zoom: 1;
}

/* endregion */

/* region "Visibility classes" */

.b-hidden, .b-hide {
    display: none !important;
}

.b-transparent {
    opacity: 0 !important;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -moz-opacity: 0 !important;
}

/* endregion */

/* region "Effects" */

.b-ripple, .b-ripple--alt {
    position: relative;
    overflow: hidden;
    transform: translate3d(0, 0, 0);
}

.b-ripple:after, .b-ripple--alt:after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    background: radial-gradient(circle, #000 10%, transparent 10.01%) no-repeat 50%;
    transform: scale(10, 10);
    opacity: 0;
    transition: transform .5s, opacity 1s
}

.b-ripple--alt:after {
    background: radial-gradient(circle, #fff 10%, transparent 10.01%) no-repeat 50%;
}

.b-ripple:active:after, .b-ripple--alt:active:after {
    transform: scale(0, 0);
    opacity: 0.3;
    transition: none;
}

.b-ripple--alt:active:after {
    opacity: 0.38;
}

.b-shadow, .b-shadow--hov {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24) !important;
}

.b-shadow--hov:hover {
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.12), 0 2px 3px rgba(0, 0, 0, 0.24) !important;
}

.b-shadow--x {
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23) !important;
}

.b-shadow--xx {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23) !important;
}

.b-shadow--xxx {
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22) !important;
}

.b-shadow--xxxx {
    box-shadow: 0 19px 38px rgba(0, 0, 0, 0.30), 0 15px 12px rgba(0, 0, 0, 0.22) !important;
}

/* endregion */

/* region "Colors" */

.b-bg-none {
    background: none !important;
}

.b-bg-red-50 {
    background: #ffebee !important;
}

.b-fg-red-50 {
    color: #ffebee !important;
}

.b-bg-red-100 {
    background: #ffcdd2 !important;
}

.b-fg-red-100 {
    color: #ffcdd2 !important;
}

.b-bg-red-200 {
    background: #ef9a9a !important;
}

.b-fg-red-200 {
    color: #ef9a9a !important;
}

.b-bg-red-300 {
    background: #e57373 !important;
}

.b-fg-red-300 {
    color: #e57373 !important;
}

.b-bg-red-400 {
    background: #ef5350 !important;
}

.b-fg-red-400 {
    color: #ef5350 !important;
}

.b-bg-red-500 {
    background: #f44336 !important;
}

.b-fg-red-500 {
    color: #f44336 !important;
}

.b-bg-red-600 {
    background: #e53935 !important;
}

.b-fg-red-600 {
    color: #e53935 !important;
}

.b-bg-red-700 {
    background: #d32f2f !important;
}

.b-fg-red-700 {
    color: #d32f2f !important;
}

.b-bg-red-800 {
    background: #c62828 !important;
}

.b-fg-red-800 {
    color: #c62828 !important;
}

.b-bg-red-900 {
    background: #b71c1c !important;
}

.b-fg-red-900 {
    color: #b71c1c !important;
}

.b-bg-red-a100 {
    background: #ff8a80 !important;
}

.b-fg-red-a100 {
    color: #ff8a80 !important;
}

.b-bg-red-a200 {
    background: #ff5252 !important;
}

.b-fg-red-a200 {
    color: #ff5252 !important;
}

.b-bg-red-a400 {
    background: #ff1744 !important;
}

.b-fg-red-a400 {
    color: #ff1744 !important;
}

.b-bg-red-a700 {
    background: #d50000 !important;
}

.b-fg-red-a700 {
    color: #d50000 !important;
}

.b-bg-pink-50 {
    background: #fce4ec !important;
}

.b-fg-pink-50 {
    color: #fce4ec !important;
}

.b-bg-pink-100 {
    background: #f8bbd0 !important;
}

.b-fg-pink-100 {
    color: #f8bbd0 !important;
}

.b-bg-pink-200 {
    background: #f48fb1 !important;
}

.b-fg-pink-200 {
    color: #f48fb1 !important;
}

.b-bg-pink-300 {
    background: #f06292 !important;
}

.b-fg-pink-300 {
    color: #f06292 !important;
}

.b-bg-pink-400 {
    background: #ec407a !important;
}

.b-fg-pink-400 {
    color: #ec407a !important;
}

.b-bg-pink-500 {
    background: #e91e63 !important;
}

.b-fg-pink-500 {
    color: #e91e63 !important;
}

.b-bg-pink-600 {
    background: #d81b60 !important;
}

.b-fg-pink-600 {
    color: #d81b60 !important;
}

.b-bg-pink-700 {
    background: #c2185b !important;
}

.b-fg-pink-700 {
    color: #c2185b !important;
}

.b-bg-pink-800 {
    background: #ad1457 !important;
}

.b-fg-pink-800 {
    color: #ad1457 !important;
}

.b-bg-pink-900 {
    background: #880e4f !important;
}

.b-fg-pink-900 {
    color: #880e4f !important;
}

.b-bg-pink-a100 {
    background: #ff80ab !important;
}

.b-fg-pink-a100 {
    color: #ff80ab !important;
}

.b-bg-pink-a200 {
    background: #ff4081 !important;
}

.b-fg-pink-a200 {
    color: #ff4081 !important;
}

.b-bg-pink-a400 {
    background: #f50057 !important;
}

.b-fg-pink-a400 {
    color: #f50057 !important;
}

.b-bg-pink-a700 {
    background: #c51162 !important;
}

.b-fg-pink-a700 {
    color: #c51162 !important;
}

.b-bg-purple-50 {
    background: #f3e5f5 !important;
}

.b-fg-purple-50 {
    color: #f3e5f5 !important;
}

.b-bg-purple-100 {
    background: #e1bee7 !important;
}

.b-fg-purple-100 {
    color: #e1bee7 !important;
}

.b-bg-purple-200 {
    background: #ce93d8 !important;
}

.b-fg-purple-200 {
    color: #ce93d8 !important;
}

.b-bg-purple-300 {
    background: #ba68c8 !important;
}

.b-fg-purple-300 {
    color: #ba68c8 !important;
}

.b-bg-purple-400 {
    background: #ab47bc !important;
}

.b-fg-purple-400 {
    color: #ab47bc !important;
}

.b-bg-purple-500 {
    background: #9c27b0 !important;
}

.b-fg-purple-500 {
    color: #9c27b0 !important;
}

.b-bg-purple-600 {
    background: #8e24aa !important;
}

.b-fg-purple-600 {
    color: #8e24aa !important;
}

.b-bg-purple-700 {
    background: #7b1fa2 !important;
}

.b-fg-purple-700 {
    color: #7b1fa2 !important;
}

.b-bg-purple-800 {
    background: #6a1b9a !important;
}

.b-fg-purple-800 {
    color: #6a1b9a !important;
}

.b-bg-purple-900 {
    background: #4a148c !important;
}

.b-fg-purple-900 {
    color: #4a148c !important;
}

.b-bg-purple-a100 {
    background: #ea80fc !important;
}

.b-fg-purple-a100 {
    color: #ea80fc !important;
}

.b-bg-purple-a200 {
    background: #e040fb !important;
}

.b-fg-purple-a200 {
    color: #e040fb !important;
}

.b-bg-purple-a400 {
    background: #d500f9 !important;
}

.b-fg-purple-a400 {
    color: #d500f9 !important;
}

.b-bg-purple-a700 {
    background: #aa00ff !important;
}

.b-fg-purple-a700 {
    color: #aa00ff !important;
}

.b-bg-deep-purple-50 {
    background: #ede7f6 !important;
}

.b-fg-deep-purple-50 {
    color: #ede7f6 !important;
}

.b-bg-deep-purple-100 {
    background: #d1c4e9 !important;
}

.b-fg-deep-purple-100 {
    color: #d1c4e9 !important;
}

.b-bg-deep-purple-200 {
    background: #b39ddb !important;
}

.b-fg-deep-purple-200 {
    color: #b39ddb !important;
}

.b-bg-deep-purple-300 {
    background: #9575cd !important;
}

.b-fg-deep-purple-300 {
    color: #9575cd !important;
}

.b-bg-deep-purple-400 {
    background: #7e57c2 !important;
}

.b-fg-deep-purple-400 {
    color: #7e57c2 !important;
}

.b-bg-deep-purple-500 {
    background: #673ab7 !important;
}

.b-fg-deep-purple-500 {
    color: #673ab7 !important;
}

.b-bg-deep-purple-600 {
    background: #5e35b1 !important;
}

.b-fg-deep-purple-600 {
    color: #5e35b1 !important;
}

.b-bg-deep-purple-700 {
    background: #512da8 !important;
}

.b-fg-deep-purple-700 {
    color: #512da8 !important;
}

.b-bg-deep-purple-800 {
    background: #4527a0 !important;
}

.b-fg-deep-purple-800 {
    color: #4527a0 !important;
}

.b-bg-deep-purple-900 {
    background: #311b92 !important;
}

.b-fg-deep-purple-900 {
    color: #311b92 !important;
}

.b-bg-deep-purple-a100 {
    background: #b388ff !important;
}

.b-fg-deep-purple-a100 {
    color: #b388ff !important;
}

.b-bg-deep-purple-a200 {
    background: #7c4dff !important;
}

.b-fg-deep-purple-a200 {
    color: #7c4dff !important;
}

.b-bg-deep-purple-a400 {
    background: #651fff !important;
}

.b-fg-deep-purple-a400 {
    color: #651fff !important;
}

.b-bg-deep-purple-a700 {
    background: #6200ea !important;
}

.b-fg-deep-purple-a700 {
    color: #6200ea !important;
}

.b-bg-indigo-50 {
    background: #e8eaf6 !important;
}

.b-fg-indigo-50 {
    color: #e8eaf6 !important;
}

.b-bg-indigo-100 {
    background: #c5cae9 !important;
}

.b-fg-indigo-100 {
    color: #c5cae9 !important;
}

.b-bg-indigo-200 {
    background: #9fa8da !important;
}

.b-fg-indigo-200 {
    color: #9fa8da !important;
}

.b-bg-indigo-300 {
    background: #7986cb !important;
}

.b-fg-indigo-300 {
    color: #7986cb !important;
}

.b-bg-indigo-400 {
    background: #5c6bc0 !important;
}

.b-fg-indigo-400 {
    color: #5c6bc0 !important;
}

.b-bg-indigo-500 {
    background: #3f51b5 !important;
}

.b-fg-indigo-500 {
    color: #3f51b5 !important;
}

.b-bg-indigo-600 {
    background: #3949ab !important;
}

.b-fg-indigo-600 {
    color: #3949ab !important;
}

.b-bg-indigo-700 {
    background: #303f9f !important;
}

.b-fg-indigo-700 {
    color: #303f9f !important;
}

.b-bg-indigo-800 {
    background: #283593 !important;
}

.b-fg-indigo-800 {
    color: #283593 !important;
}

.b-bg-indigo-900 {
    background: #1a237e !important;
}

.b-fg-indigo-900 {
    color: #1a237e !important;
}

.b-bg-indigo-a100 {
    background: #8c9eff !important;
}

.b-fg-indigo-a100 {
    color: #8c9eff !important;
}

.b-bg-indigo-a200 {
    background: #536dfe !important;
}

.b-fg-indigo-a200 {
    color: #536dfe !important;
}

.b-bg-indigo-a400 {
    background: #3d5afe !important;
}

.b-fg-indigo-a400 {
    color: #3d5afe !important;
}

.b-bg-indigo-a700 {
    background: #304ffe !important;
}

.b-fg-indigo-a700 {
    color: #304ffe !important;
}

.b-bg-blue-50 {
    background: #e3f2fd !important;
}

.b-fg-blue-50 {
    color: #e3f2fd !important;
}

.b-bg-blue-100 {
    background: #bbdefb !important;
}

.b-fg-blue-100 {
    color: #bbdefb !important;
}

.b-bg-blue-200 {
    background: #90caf9 !important;
}

.b-fg-blue-200 {
    color: #90caf9 !important;
}

.b-bg-blue-300 {
    background: #64b5f6 !important;
}

.b-fg-blue-300 {
    color: #64b5f6 !important;
}

.b-bg-blue-400 {
    background: #42a5f5 !important;
}

.b-fg-blue-400 {
    color: #42a5f5 !important;
}

.b-bg-blue-500 {
    background: #2196f3 !important;
}

.b-fg-blue-500 {
    color: #2196f3 !important;
}

.b-bg-blue-600 {
    background: #1e88e5 !important;
}

.b-fg-blue-600 {
    color: #1e88e5 !important;
}

.b-bg-blue-700 {
    background: #1976d2 !important;
}

.b-fg-blue-700 {
    color: #1976d2 !important;
}

.b-bg-blue-800 {
    background: #1565c0 !important;
}

.b-fg-blue-800 {
    color: #1565c0 !important;
}

.b-bg-blue-900 {
    background: #0d47a1 !important;
}

.b-fg-blue-900 {
    color: #0d47a1 !important;
}

.b-bg-blue-a100 {
    background: #82b1ff !important;
}

.b-fg-blue-a100 {
    color: #82b1ff !important;
}

.b-bg-blue-a200 {
    background: #448aff !important;
}

.b-fg-blue-a200 {
    color: #448aff !important;
}

.b-bg-blue-a400 {
    background: #2979ff !important;
}

.b-fg-blue-a400 {
    color: #2979ff !important;
}

.b-bg-blue-a700 {
    background: #2962ff !important;
}

.b-fg-blue-a700 {
    color: #2962ff !important;
}

.b-bg-light-blue-50 {
    background: #e1f5fe !important;
}

.b-fg-light-blue-50 {
    color: #e1f5fe !important;
}

.b-bg-light-blue-100 {
    background: #b3e5fc !important;
}

.b-fg-light-blue-100 {
    color: #b3e5fc !important;
}

.b-bg-light-blue-200 {
    background: #81d4fa !important;
}

.b-fg-light-blue-200 {
    color: #81d4fa !important;
}

.b-bg-light-blue-300 {
    background: #4fc3f7 !important;
}

.b-fg-light-blue-300 {
    color: #4fc3f7 !important;
}

.b-bg-light-blue-400 {
    background: #29b6f6 !important;
}

.b-fg-light-blue-400 {
    color: #29b6f6 !important;
}

.b-bg-light-blue-500 {
    background: #03a9f4 !important;
}

.b-fg-light-blue-500 {
    color: #03a9f4 !important;
}

.b-bg-light-blue-600 {
    background: #039be5 !important;
}

.b-fg-light-blue-600 {
    color: #039be5 !important;
}

.b-bg-light-blue-700 {
    background: #0288d1 !important;
}

.b-fg-light-blue-700 {
    color: #0288d1 !important;
}

.b-bg-light-blue-800 {
    background: #0277bd !important;
}

.b-fg-light-blue-800 {
    color: #0277bd !important;
}

.b-bg-light-blue-900 {
    background: #01579b !important;
}

.b-fg-light-blue-900 {
    color: #01579b !important;
}

.b-bg-light-blue-a100 {
    background: #80d8ff !important;
}

.b-fg-light-blue-a100 {
    color: #80d8ff !important;
}

.b-bg-light-blue-a200 {
    background: #40c4ff !important;
}

.b-fg-light-blue-a200 {
    color: #40c4ff !important;
}

.b-bg-light-blue-a400 {
    background: #00b0ff !important;
}

.b-fg-light-blue-a400 {
    color: #00b0ff !important;
}

.b-bg-light-blue-a700 {
    background: #0091ea !important;
}

.b-fg-light-blue-a700 {
    color: #0091ea !important;
}

.b-bg-cyan-50 {
    background: #e0f7fa !important;
}

.b-fg-cyan-50 {
    color: #e0f7fa !important;
}

.b-bg-cyan-100 {
    background: #b2ebf2 !important;
}

.b-fg-cyan-100 {
    color: #b2ebf2 !important;
}

.b-bg-cyan-200 {
    background: #80deea !important;
}

.b-fg-cyan-200 {
    color: #80deea !important;
}

.b-bg-cyan-300 {
    background: #4dd0e1 !important;
}

.b-fg-cyan-300 {
    color: #4dd0e1 !important;
}

.b-bg-cyan-400 {
    background: #26c6da !important;
}

.b-fg-cyan-400 {
    color: #26c6da !important;
}

.b-bg-cyan-500 {
    background: #00bcd4 !important;
}

.b-fg-cyan-500 {
    color: #00bcd4 !important;
}

.b-bg-cyan-600 {
    background: #00acc1 !important;
}

.b-fg-cyan-600 {
    color: #00acc1 !important;
}

.b-bg-cyan-700 {
    background: #0097a7 !important;
}

.b-fg-cyan-700 {
    color: #0097a7 !important;
}

.b-bg-cyan-800 {
    background: #00838f !important;
}

.b-fg-cyan-800 {
    color: #00838f !important;
}

.b-bg-cyan-900 {
    background: #006064 !important;
}

.b-fg-cyan-900 {
    color: #006064 !important;
}

.b-bg-cyan-a100 {
    background: #84ffff !important;
}

.b-fg-cyan-a100 {
    color: #84ffff !important;
}

.b-bg-cyan-a200 {
    background: #18ffff !important;
}

.b-fg-cyan-a200 {
    color: #18ffff !important;
}

.b-bg-cyan-a400 {
    background: #00e5ff !important;
}

.b-fg-cyan-a400 {
    color: #00e5ff !important;
}

.b-bg-cyan-a700 {
    background: #00b8d4 !important;
}

.b-fg-cyan-a700 {
    color: #00b8d4 !important;
}

.b-bg-teal-50 {
    background: #e0f2f1 !important;
}

.b-fg-teal-50 {
    color: #e0f2f1 !important;
}

.b-bg-teal-100 {
    background: #b2dfdb !important;
}

.b-fg-teal-100 {
    color: #b2dfdb !important;
}

.b-bg-teal-200 {
    background: #80cbc4 !important;
}

.b-fg-teal-200 {
    color: #80cbc4 !important;
}

.b-bg-teal-300 {
    background: #4db6ac !important;
}

.b-fg-teal-300 {
    color: #4db6ac !important;
}

.b-bg-teal-400 {
    background: #26a69a !important;
}

.b-fg-teal-400 {
    color: #26a69a !important;
}

.b-bg-teal-500 {
    background: #009688 !important;
}

.b-fg-teal-500 {
    color: #009688 !important;
}

.b-bg-teal-600 {
    background: #00897b !important;
}

.b-fg-teal-600 {
    color: #00897b !important;
}

.b-bg-teal-700 {
    background: #00796b !important;
}

.b-fg-teal-700 {
    color: #00796b !important;
}

.b-bg-teal-800 {
    background: #00695c !important;
}

.b-fg-teal-800 {
    color: #00695c !important;
}

.b-bg-teal-900 {
    background: #004d40 !important;
}

.b-fg-teal-900 {
    color: #004d40 !important;
}

.b-bg-teal-a100 {
    background: #a7ffeb !important;
}

.b-fg-teal-a100 {
    color: #a7ffeb !important;
}

.b-bg-teal-a200 {
    background: #64ffda !important;
}

.b-fg-teal-a200 {
    color: #64ffda !important;
}

.b-bg-teal-a400 {
    background: #1de9b6 !important;
}

.b-fg-teal-a400 {
    color: #1de9b6 !important;
}

.b-bg-teal-a700 {
    background: #00bfa5 !important;
}

.b-fg-teal-a700 {
    color: #00bfa5 !important;
}

.b-bg-green-50 {
    background: #e8f5e9 !important;
}

.b-fg-green-50 {
    color: #e8f5e9 !important;
}

.b-bg-green-100 {
    background: #c8e6c9 !important;
}

.b-fg-green-100 {
    color: #c8e6c9 !important;
}

.b-bg-green-200 {
    background: #a5d6a7 !important;
}

.b-fg-green-200 {
    color: #a5d6a7 !important;
}

.b-bg-green-300 {
    background: #81c784 !important;
}

.b-fg-green-300 {
    color: #81c784 !important;
}

.b-bg-green-400 {
    background: #66bb6a !important;
}

.b-fg-green-400 {
    color: #66bb6a !important;
}

.b-bg-green-500 {
    background: #4caf50 !important;
}

.b-fg-green-500 {
    color: #4caf50 !important;
}

.b-bg-green-600 {
    background: #43a047 !important;
}

.b-fg-green-600 {
    color: #43a047 !important;
}

.b-bg-green-700 {
    background: #388e3c !important;
}

.b-fg-green-700 {
    color: #388e3c !important;
}

.b-bg-green-800 {
    background: #2e7d32 !important;
}

.b-fg-green-800 {
    color: #2e7d32 !important;
}

.b-bg-green-900 {
    background: #1b5e20 !important;
}

.b-fg-green-900 {
    color: #1b5e20 !important;
}

.b-bg-green-a100 {
    background: #b9f6ca !important;
}

.b-fg-green-a100 {
    color: #b9f6ca !important;
}

.b-bg-green-a200 {
    background: #69f0ae !important;
}

.b-fg-green-a200 {
    color: #69f0ae !important;
}

.b-bg-green-a400 {
    background: #00e676 !important;
}

.b-fg-green-a400 {
    color: #00e676 !important;
}

.b-bg-green-a700 {
    background: #00c853 !important;
}

.b-fg-green-a700 {
    color: #00c853 !important;
}

.b-bg-light-green-50 {
    background: #f1f8e9 !important;
}

.b-fg-light-green-50 {
    color: #f1f8e9 !important;
}

.b-bg-light-green-100 {
    background: #dcedc8 !important;
}

.b-fg-light-green-100 {
    color: #dcedc8 !important;
}

.b-bg-light-green-200 {
    background: #c5e1a5 !important;
}

.b-fg-light-green-200 {
    color: #c5e1a5 !important;
}

.b-bg-light-green-300 {
    background: #aed581 !important;
}

.b-fg-light-green-300 {
    color: #aed581 !important;
}

.b-bg-light-green-400 {
    background: #9ccc65 !important;
}

.b-fg-light-green-400 {
    color: #9ccc65 !important;
}

.b-bg-light-green-500 {
    background: #8bc34a !important;
}

.b-fg-light-green-500 {
    color: #8bc34a !important;
}

.b-bg-light-green-600 {
    background: #7cb342 !important;
}

.b-fg-light-green-600 {
    color: #7cb342 !important;
}

.b-bg-light-green-700 {
    background: #689f38 !important;
}

.b-fg-light-green-700 {
    color: #689f38 !important;
}

.b-bg-light-green-800 {
    background: #558b2f !important;
}

.b-fg-light-green-800 {
    color: #558b2f !important;
}

.b-bg-light-green-900 {
    background: #33691e !important;
}

.b-fg-light-green-900 {
    color: #33691e !important;
}

.b-bg-light-green-a100 {
    background: #ccff90 !important;
}

.b-fg-light-green-a100 {
    color: #ccff90 !important;
}

.b-bg-light-green-a200 {
    background: #b2ff59 !important;
}

.b-fg-light-green-a200 {
    color: #b2ff59 !important;
}

.b-bg-light-green-a400 {
    background: #76ff03 !important;
}

.b-fg-light-green-a400 {
    color: #76ff03 !important;
}

.b-bg-light-green-a700 {
    background: #64dd17 !important;
}

.b-fg-light-green-a700 {
    color: #64dd17 !important;
}

.b-bg-lime-50 {
    background: #f9fbe7 !important;
}

.b-fg-lime-50 {
    color: #f9fbe7 !important;
}

.b-bg-lime-100 {
    background: #f0f4c3 !important;
}

.b-fg-lime-100 {
    color: #f0f4c3 !important;
}

.b-bg-lime-200 {
    background: #e6ee9c !important;
}

.b-fg-lime-200 {
    color: #e6ee9c !important;
}

.b-bg-lime-300 {
    background: #dce775 !important;
}

.b-fg-lime-300 {
    color: #dce775 !important;
}

.b-bg-lime-400 {
    background: #d4e157 !important;
}

.b-fg-lime-400 {
    color: #d4e157 !important;
}

.b-bg-lime-500 {
    background: #cddc39 !important;
}

.b-fg-lime-500 {
    color: #cddc39 !important;
}

.b-bg-lime-600 {
    background: #c0ca33 !important;
}

.b-fg-lime-600 {
    color: #c0ca33 !important;
}

.b-bg-lime-700 {
    background: #afb42b !important;
}

.b-fg-lime-700 {
    color: #afb42b !important;
}

.b-bg-lime-800 {
    background: #9e9d24 !important;
}

.b-fg-lime-800 {
    color: #9e9d24 !important;
}

.b-bg-lime-900 {
    background: #827717 !important;
}

.b-fg-lime-900 {
    color: #827717 !important;
}

.b-bg-lime-a100 {
    background: #f4ff81 !important;
}

.b-fg-lime-a100 {
    color: #f4ff81 !important;
}

.b-bg-lime-a200 {
    background: #eeff41 !important;
}

.b-fg-lime-a200 {
    color: #eeff41 !important;
}

.b-bg-lime-a400 {
    background: #c6ff00 !important;
}

.b-fg-lime-a400 {
    color: #c6ff00 !important;
}

.b-bg-lime-a700 {
    background: #aeea00 !important;
}

.b-fg-lime-a700 {
    color: #aeea00 !important;
}

.b-bg-yellow-50 {
    background: #fffde7 !important;
}

.b-fg-yellow-50 {
    color: #fffde7 !important;
}

.b-bg-yellow-100 {
    background: #fff9c4 !important;
}

.b-fg-yellow-100 {
    color: #fff9c4 !important;
}

.b-bg-yellow-200 {
    background: #fff59d !important;
}

.b-fg-yellow-200 {
    color: #fff59d !important;
}

.b-bg-yellow-300 {
    background: #fff176 !important;
}

.b-fg-yellow-300 {
    color: #fff176 !important;
}

.b-bg-yellow-400 {
    background: #ffee58 !important;
}

.b-fg-yellow-400 {
    color: #ffee58 !important;
}

.b-bg-yellow-500 {
    background: #ffeb3b !important;
}

.b-fg-yellow-500 {
    color: #ffeb3b !important;
}

.b-bg-yellow-600 {
    background: #fdd835 !important;
}

.b-fg-yellow-600 {
    color: #fdd835 !important;
}

.b-bg-yellow-700 {
    background: #fbc02d !important;
}

.b-fg-yellow-700 {
    color: #fbc02d !important;
}

.b-bg-yellow-800 {
    background: #f9a825 !important;
}

.b-fg-yellow-800 {
    color: #f9a825 !important;
}

.b-bg-yellow-900 {
    background: #f57f17 !important;
}

.b-fg-yellow-900 {
    color: #f57f17 !important;
}

.b-bg-yellow-a100 {
    background: #ffff8d !important;
}

.b-fg-yellow-a100 {
    color: #ffff8d !important;
}

.b-bg-yellow-a200 {
    background: #ffff00 !important;
}

.b-fg-yellow-a200 {
    color: #ffff00 !important;
}

.b-bg-yellow-a400 {
    background: #ffea00 !important;
}

.b-fg-yellow-a400 {
    color: #ffea00 !important;
}

.b-bg-yellow-a700 {
    background: #ffd600 !important;
}

.b-fg-yellow-a700 {
    color: #ffd600 !important;
}

.b-bg-amber-50 {
    background: #fff8e1 !important;
}

.b-fg-amber-50 {
    color: #fff8e1 !important;
}

.b-bg-amber-100 {
    background: #ffecb3 !important;
}

.b-fg-amber-100 {
    color: #ffecb3 !important;
}

.b-bg-amber-200 {
    background: #ffe082 !important;
}

.b-fg-amber-200 {
    color: #ffe082 !important;
}

.b-bg-amber-300 {
    background: #ffd54f !important;
}

.b-fg-amber-300 {
    color: #ffd54f !important;
}

.b-bg-amber-400 {
    background: #ffca28 !important;
}

.b-fg-amber-400 {
    color: #ffca28 !important;
}

.b-bg-amber-500 {
    background: #ffc107 !important;
}

.b-fg-amber-500 {
    color: #ffc107 !important;
}

.b-bg-amber-600 {
    background: #ffb300 !important;
}

.b-fg-amber-600 {
    color: #ffb300 !important;
}

.b-bg-amber-700 {
    background: #ffa000 !important;
}

.b-fg-amber-700 {
    color: #ffa000 !important;
}

.b-bg-amber-800 {
    background: #ff8f00 !important;
}

.b-fg-amber-800 {
    color: #ff8f00 !important;
}

.b-bg-amber-900 {
    background: #ff6f00 !important;
}

.b-fg-amber-900 {
    color: #ff6f00 !important;
}

.b-bg-amber-a100 {
    background: #ffe57f !important;
}

.b-fg-amber-a100 {
    color: #ffe57f !important;
}

.b-bg-amber-a200 {
    background: #ffd740 !important;
}

.b-fg-amber-a200 {
    color: #ffd740 !important;
}

.b-bg-amber-a400 {
    background: #ffc400 !important;
}

.b-fg-amber-a400 {
    color: #ffc400 !important;
}

.b-bg-amber-a700 {
    background: #ffab00 !important;
}

.b-fg-amber-a700 {
    color: #ffab00 !important;
}

.b-bg-orange-50 {
    background: #fff3e0 !important;
}

.b-fg-orange-50 {
    color: #fff3e0 !important;
}

.b-bg-orange-100 {
    background: #ffe0b2 !important;
}

.b-fg-orange-100 {
    color: #ffe0b2 !important;
}

.b-bg-orange-200 {
    background: #ffcc80 !important;
}

.b-fg-orange-200 {
    color: #ffcc80 !important;
}

.b-bg-orange-300 {
    background: #ffb74d !important;
}

.b-fg-orange-300 {
    color: #ffb74d !important;
}

.b-bg-orange-400 {
    background: #ffa726 !important;
}

.b-fg-orange-400 {
    color: #ffa726 !important;
}

.b-bg-orange-500 {
    background: #ff9800 !important;
}

.b-fg-orange-500 {
    color: #ff9800 !important;
}

.b-bg-orange-600 {
    background: #fb8c00 !important;
}

.b-fg-orange-600 {
    color: #fb8c00 !important;
}

.b-bg-orange-700 {
    background: #f57c00 !important;
}

.b-fg-orange-700 {
    color: #f57c00 !important;
}

.b-bg-orange-800 {
    background: #ef6c00 !important;
}

.b-fg-orange-800 {
    color: #ef6c00 !important;
}

.b-bg-orange-900 {
    background: #e65100 !important;
}

.b-fg-orange-900 {
    color: #e65100 !important;
}

.b-bg-orange-a100 {
    background: #ffd180 !important;
}

.b-fg-orange-a100 {
    color: #ffd180 !important;
}

.b-bg-orange-a200 {
    background: #ffab40 !important;
}

.b-fg-orange-a200 {
    color: #ffab40 !important;
}

.b-bg-orange-a400 {
    background: #ff9100 !important;
}

.b-fg-orange-a400 {
    color: #ff9100 !important;
}

.b-bg-orange-a700 {
    background: #ff6d00 !important;
}

.b-fg-orange-a700 {
    color: #ff6d00 !important;
}

.b-bg-deep-orange-50 {
    background: #fbe9e7 !important;
}

.b-fg-deep-orange-50 {
    color: #fbe9e7 !important;
}

.b-bg-deep-orange-100 {
    background: #ffccbc !important;
}

.b-fg-deep-orange-100 {
    color: #ffccbc !important;
}

.b-bg-deep-orange-200 {
    background: #ffab91 !important;
}

.b-fg-deep-orange-200 {
    color: #ffab91 !important;
}

.b-bg-deep-orange-300 {
    background: #ff8a65 !important;
}

.b-fg-deep-orange-300 {
    color: #ff8a65 !important;
}

.b-bg-deep-orange-400 {
    background: #ff7043 !important;
}

.b-fg-deep-orange-400 {
    color: #ff7043 !important;
}

.b-bg-deep-orange-500 {
    background: #ff5722 !important;
}

.b-fg-deep-orange-500 {
    color: #ff5722 !important;
}

.b-bg-deep-orange-600 {
    background: #f4511e !important;
}

.b-fg-deep-orange-600 {
    color: #f4511e !important;
}

.b-bg-deep-orange-700 {
    background: #e64a19 !important;
}

.b-fg-deep-orange-700 {
    color: #e64a19 !important;
}

.b-bg-deep-orange-800 {
    background: #d84315 !important;
}

.b-fg-deep-orange-800 {
    color: #d84315 !important;
}

.b-bg-deep-orange-900 {
    background: #bf360c !important;
}

.b-fg-deep-orange-900 {
    color: #bf360c !important;
}

.b-bg-deep-orange-a100 {
    background: #ff9e80 !important;
}

.b-fg-deep-orange-a100 {
    color: #ff9e80 !important;
}

.b-bg-deep-orange-a200 {
    background: #ff6e40 !important;
}

.b-fg-deep-orange-a200 {
    color: #ff6e40 !important;
}

.b-bg-deep-orange-a400 {
    background: #ff3d00 !important;
}

.b-fg-deep-orange-a400 {
    color: #ff3d00 !important;
}

.b-bg-deep-orange-a700 {
    background: #dd2c00 !important;
}

.b-fg-deep-orange-a700 {
    color: #dd2c00 !important;
}

.b-bg-brown-50 {
    background: #efebe9 !important;
}

.b-fg-brown-50 {
    color: #efebe9 !important;
}

.b-bg-brown-100 {
    background: #d7ccc8 !important;
}

.b-fg-brown-100 {
    color: #d7ccc8 !important;
}

.b-bg-brown-200 {
    background: #bcaaa4 !important;
}

.b-fg-brown-200 {
    color: #bcaaa4 !important;
}

.b-bg-brown-300 {
    background: #a1887f !important;
}

.b-fg-brown-300 {
    color: #a1887f !important;
}

.b-bg-brown-400 {
    background: #8d6e63 !important;
}

.b-fg-brown-400 {
    color: #8d6e63 !important;
}

.b-bg-brown-500 {
    background: #795548 !important;
}

.b-fg-brown-500 {
    color: #795548 !important;
}

.b-bg-brown-600 {
    background: #6d4c41 !important;
}

.b-fg-brown-600 {
    color: #6d4c41 !important;
}

.b-bg-brown-700 {
    background: #5d4037 !important;
}

.b-fg-brown-700 {
    color: #5d4037 !important;
}

.b-bg-brown-800 {
    background: #4e342e !important;
}

.b-fg-brown-800 {
    color: #4e342e !important;
}

.b-bg-brown-900 {
    background: #3e2723 !important;
}

.b-fg-brown-900 {
    color: #3e2723 !important;
}

.b-bg-grey-50 {
    background: #fafafa !important;
}

.b-fg-grey-50 {
    color: #fafafa !important;
}

.b-bg-grey-100 {
    background: #f5f5f5 !important;
}

.b-fg-grey-100 {
    color: #f5f5f5 !important;
}

.b-bg-grey-200 {
    background: #eeeeee !important;
}

.b-fg-grey-200 {
    color: #eeeeee !important;
}

.b-bg-grey-300 {
    background: #e0e0e0 !important;
}

.b-fg-grey-300 {
    color: #e0e0e0 !important;
}

.b-bg-grey-400 {
    background: #bdbdbd !important;
}

.b-fg-grey-400 {
    color: #bdbdbd !important;
}

.b-bg-grey-500 {
    background: #9e9e9e !important;
}

.b-fg-grey-500 {
    color: #9e9e9e !important;
}

.b-bg-grey-600 {
    background: #757575 !important;
}

.b-fg-grey-600 {
    color: #757575 !important;
}

.b-bg-grey-700 {
    background: #616161 !important;
}

.b-fg-grey-700 {
    color: #616161 !important;
}

.b-bg-grey-800 {
    background: #424242 !important;
}

.b-fg-grey-800 {
    color: #424242 !important;
}

.b-bg-grey-900 {
    background: #212121 !important;
}

.b-fg-grey-900 {
    color: #212121 !important;
}

.b-bg-blue-grey-50 {
    background: #eceff1 !important;
}

.b-fg-blue-grey-50 {
    color: #eceff1 !important;
}

.b-bg-blue-grey-100 {
    background: #cfd8dc !important;
}

.b-fg-blue-grey-100 {
    color: #cfd8dc !important;
}

.b-bg-blue-grey-200 {
    background: #b0bec5 !important;
}

.b-fg-blue-grey-200 {
    color: #b0bec5 !important;
}

.b-bg-blue-grey-300 {
    background: #90a4ae !important;
}

.b-fg-blue-grey-300 {
    color: #90a4ae !important;
}

.b-bg-blue-grey-400 {
    background: #78909c !important;
}

.b-fg-blue-grey-400 {
    color: #78909c !important;
}

.b-bg-blue-grey-500 {
    background: #607d8b !important;
}

.b-fg-blue-grey-500 {
    color: #607d8b !important;
}

.b-bg-blue-grey-600 {
    background: #546e7a !important;
}

.b-fg-blue-grey-600 {
    color: #546e7a !important;
}

.b-bg-blue-grey-700 {
    background: #455a64 !important;
}

.b-fg-blue-grey-700 {
    color: #455a64 !important;
}

.b-bg-blue-grey-800 {
    background: #37474f !important;
}

.b-fg-blue-grey-800 {
    color: #37474f !important;
}

.b-bg-blue-grey-900 {
    background: #263238 !important;
}

.b-fg-blue-grey-900 {
    color: #263238 !important;
}

.b-bg-black {
    background: #000000 !important;
}

.b-fg-black {
    color: #000000 !important;
}

.b-bg-white {
    background: #ffffff !important;
}

.b-fg-white {
    color: #ffffff !important;
}

/* endregion */

/* region "Generic components" */

.b-comp--loading-dialog--inner {
    max-height: 50px;
    min-height: 50px;
    height: 50px;
    line-height: 50px;
}

.b-comp--loading-dialog--inner img {
    display: inline-block;
    vertical-align: middle;
    margin: -6px 8px 0 0;
}

.b-comp--loading-dialog--inner span {
    font-size: 20px;
}

/* endregion */
@charset "UTF-8";

/**
 * Base application layouts
 */

/* region "Base layout" */

.b-layout {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0;
    padding: 0;
    max-width: 100%;
}

.b-scrollable--xy, .b-scroll--xy {
    overflow-x: auto !important;
    overflow-y: auto !important;
}

.b-scrollable--x, .b-scroll--x {
    overflow-x: auto !important;
    overflow-y: hidden !important;
}

.b-scrollable--y, .b-scroll--y {
    overflow-x: hidden !important;
    overflow-y: auto !important;
}

.b-inner {
    position: relative;
    width: 100%;
    height: 100%;
}

.b-card {
    background: #fff;
    border-radius: 2px;
}

/* endregion */

/* region "Spacers" */

.b-hr-spacer--5 {
    display: block;
    height: 5px;
}

.b-hr-spacer--10 {
    display: block;
    height: 10px;
}

.b-hr-spacer--15 {
    display: block;
    height: 15px;
}

.b-hr-spacer--20 {
    display: block;
    height: 20px;
}

.b-hr-spacer--25 {
    display: block;
    height: 25px;
}

.b-hr-spacer--30 {
    display: block;
    height: 30px;
}

.b-hr-spacer--40 {
    display: block;
    height: 40px;
}

.b-hr-spacer--50 {
    display: block;
    height: 50px;
}

.b-hr-spacer--60 {
    display: block;
    height: 60px;
}

.b-hr-spacer--70 {
    display: block;
    height: 70px;
}

.b-hr-spacer--80 {
    display: block;
    height: 80px;
}

.b-hr-spacer--90 {
    display: block;
    height: 90px;
}

.b-hr-spacer--100 {
    display: block;
    height: 100px;
}

.b-vr-spacer--5 {
    display: inline-block;
    width: 5px;
}

.b-vr-spacer--10 {
    display: inline-block;
    width: 10px;
}

.b-vr-spacer--15 {
    display: inline-block;
    width: 15px;
}

.b-vr-spacer--20 {
    display: inline-block;
    width: 20px;
}

.b-vr-spacer--25 {
    display: inline-block;
    width: 25px;
}

.b-vr-spacer--30 {
    display: inline-block;
    width: 30px;
}

.b-vr-spacer--40 {
    display: inline-block;
    width: 40px;
}

.b-vr-spacer--50 {
    display: inline-block;
    width: 50px;
}

.b-vr-spacer--60 {
    display: inline-block;
    width: 60px;
}

.b-vr-spacer--70 {
    display: inline-block;
    width: 70px;
}

.b-vr-spacer--80 {
    display: inline-block;
    width: 80px;
}

.b-vr-spacer--90 {
    display: inline-block;
    width: 90px;
}

.b-vr-spacer--100 {
    display: inline-block;
    width: 100px;
}

/* endregion */

/* region "Grid" */

[class*='b-col-'] {
    float: left;
}

.b-col-row {
    width: 100%;
}

.b-col-1-2 {
    width: 50%;
}

.b-col-1-3 {
    width: 33.33%;
}

.b-col-2-3 {
    width: 66.66%;
}

.b-grid {
    width: 100%;
}

.b-grid:before,
.b-grid:after {
    content: " ";
    display: table;
}

.b-grid:after {
    clear: both;
}

.b-grid {
    *zoom: 1;
}

/* endregion */
@charset "UTF-8";

/**
 * Base form application styles
 */

/* region "Buttons" */

.b-in-btn {
    display: inline-block;
    background: #d3d3d3;
    color: #2d2d2d;
    text-decoration: none;
    border: none;
    padding: 6px 14px;
    border-radius: 3px;
    cursor: pointer;
    text-align: center;
    vertical-align: middle;
    white-space: nowrap;
    min-width: 90px;
    margin: 0;
    min-height: 1.5em;
    touch-action: manipulation;
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: 400;
    text-transform: uppercase;
    align-items: flex-start;
    text-rendering: auto;
    letter-spacing: normal;
    word-spacing: normal;
    -webkit-writing-mode: horizontal-tb;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transition: background 0.15s, border 0.15s, box-shadow 0.15s, outline 0.15s, color 0.15s;
    -moz-transition: background 0.15s, border 0.15s, box-shadow 0.15s, outline 0.15s, color 0.15s;
    -o-transition: background 0.15s, border 0.15s, box-shadow 0.15s, outline 0.15s, color 0.15s;
    transition: background 0.15s, border 0.15s, box-shadow 0.15s, outline 0.15s, color 0.15s;
}

.b-in-btn:active, .b-in-btn:focus {
    background: #d3d3d3;
    border-color: rgba(0, 0, 0, 0.54);
    outline: none;
    text-decoration: none;
    color: #000000;
    box-shadow: none;
}

.b-in-btn:hover {
    background: #d3d3d3;
    outline: none;
    text-decoration: none;
    color: #000000;
    box-shadow: none;
}

.b-in-btn--default {
    background: #e5e5e5;
    color: #1e1e1e;
}

.b-in-btn--primary {
    color: #ffffff;
    background: #1E88E5;
}

.b-in-btn--primary:active, .b-in-btn--primary:focus, .b-in-btn--primary:hover {
    background: #2962FF;
    color: #ffffff;
}

.b-in-btn--success {
    color: #ffffff;
    background: #4CAF50;
}

.b-in-btn--success:active, .b-in-btn--success:focus, .b-in-btn--success:hover {
    color: #ffffff;
    background: #43A047;
}

.b-in-btn--info {
    color: #ffffff;
    background: #03A9F4;
}

.b-in-btn--info:active, .b-in-btn--info:focus, .b-in-btn--info:hover {
    color: #ffffff;
    background: #039BE5;
}

.b-in-btn--warning {
    color: #ffffff;
    background: #FB8C00;
}

.b-in-btn--warning:active, .b-in-btn--warning:focus, .b-in-btn--warning:hover {
    color: #ffffff;
    background: #EF6C00;
}

.b-in-btn--danger, .b-in-btn--error {
    color: #ffffff;
    background: #E53935;
}

.b-in-btn--danger:active, .b-in-btn--danger:focus, .b-in-btn--danger:hover,
.b-in-btn--error:active, .b-in-btn--error:focus, .b-in-btn--error:hover {
    color: #ffffff;
    background: #C62828;
}

.b-in-btn--link {
    color: #2196f3;
    background: transparent;
    text-decoration: underline;
}

.b-in-btn--link:active, .b-in-btn--link:focus, .b-in-btn--link:hover {
    color: #2196f3;
    background: transparent;
    text-decoration: underline;
}

.b-in-btn--minimal, .b-in-btn--minimal:focus {
    background: transparent;
}

.b-in-btn--minimal:active, .b-in-btn--minimal:hover {
    background: rgba(0, 0, 0, 0.1);
}

/* endregion */

/* region "Text inputs" */

.b-in-txt-holder {
    position: relative;
}

.b-in-txt {
    width: 100%;
    outline: none;
    border: none !important;
    border-bottom: 1px solid #919191 !important;
    border-radius: 0 !important;
    margin: 0 !important;
    padding: 4px !important;
}

select.b-in-txt:not([multiple]) {
    -ms-appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAJCAMAAAA1k+1bAAAABlBMVEUPDw8eHh629ABbAAAAAXRSTlMAQObYZgAAABhJREFUeAFjIAQY4QCVjyqPqh5VPwMRAAAJnAAfICsexAAAAABJRU5ErkJggg==") no-repeat right;
}

select.b-in-txt[multiple] {
    overflow-y: visible;
    background-image: none !important;
}

.b-in-txt:invalid:focus:invalid,
.b-in-txt:invalid {
    color: #C62828;
    outline: none;
    box-shadow: none;
}

.b-in-txt:invalid {
    color: inherit;
}

.b-in-txt:focus {
    outline: none !important;
}

.b-in-txt-placeholder {
    font-size: 11px;
    min-height: 13px;
    max-height: 13px;
}

.b-in-txt-bar {
    position: relative;
    display: block;
    width: 100%;
}

.b-in-txt-bar:before, .b-in-txt-bar:after {
    content: '';
    height: 2px;
    width: 0;
    bottom: 1px;
    position: absolute;
    background: #919191;
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
}

.b-in-txt-bar:before {
    left: 50%;
}

.b-in-txt-bar:after {
    right: 50%;
}

.b-in-txt:focus ~ .b-in-txt-bar:before, .b-in-txt:focus ~ .b-in-txt-bar:after {
    width: 50%;
}

.b-in-txt--primary {
    border-bottom: 1px solid #1E88E5 !important;
}

.b-in-txt--primary + .b-in-txt-bar:before, .b-in-txt--primary + .b-in-txt-bar:after {
    background: #1E88E5;
}

.b-in-txt--success {
    border-bottom: 1px solid #4CAF50 !important;
}

.b-in-txt--success + .b-in-txt-bar:before, .b-in-txt--success + .b-in-txt-bar:after {
    background: #4CAF50;
}

.b-in-txt--info {
    border-bottom: 1px solid #03A9F4 !important;
}

.b-in-txt--info + .b-in-txt-bar:before, .b-in-txt--info + .b-in-txt-bar:after {
    background: #03A9F4;
}

.b-in-txt--warning {
    border-bottom: 1px solid #FB8C00 !important;
}

.b-in-txt--warning + .b-in-txt-bar:before, .b-in-txt--warning + .b-in-txt-bar:after {
    background: #FB8C00;
}

.b-in-txt--danger, .b-in-txt--error {
    border-bottom: 1px solid #E53935 !important;
}

.b-in-txt--danger + .b-in-txt-bar:before, .b-in-txt--danger + .b-in-txt-bar:after,
.b-in-txt--error + .b-in-txt-bar:before, .b-in-txt--error + .b-in-txt-bar:after {
    background: #E53935;
}

/* endregion */

/* region "Auto complete" */

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    background-color: transparent !important;
}

:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 #000;
}

/* endregion */
@charset "UTF-8";

/**
 * Base dialog styles
 */

.b-dialog, .b-dialog-content {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    overflow: hidden;
}

/* region "Dimmer" */

[class*='b-dialog-dimmer-'] {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    overflow: hidden;
}

.b-dialog-dimmer-white-100 {
    background: #fff;
}

.b-dialog-dimmer-white-90 {
    background: rgba(255, 255, 255, 0.90)
}

.b-dialog-dimmer-white-75 {
    background: rgba(255, 255, 255, 0.75)
}

.b-dialog-dimmer-white-50 {
    background: rgba(255, 255, 255, 0.50)
}

.b-dialog-dimmer-white-25 {
    background: rgba(255, 255, 255, 0.25)
}

.b-dialog-dimmer-white-10 {
    background: rgba(255, 255, 255, 0.10)
}

.b-dialog-dimmer-black-100 {
    background: #000;
}

.b-dialog-dimmer-black-90 {
    background: rgba(0, 0, 0, 0.90)
}

.b-dialog-dimmer-black-75 {
    background: rgba(0, 0, 0, 0.75)
}

.b-dialog-dimmer-black-50 {
    background: rgba(0, 0, 0, 0.50)
}

.b-dialog-dimmer-black-25 {
    background: rgba(0, 0, 0, 0.25)
}

.b-dialog-dimmer-black-10 {
    background: rgba(0, 0, 0, 0.10)
}

/* endregion */

/* region "Layout" */

[class*='b-dialog-layout-'] {
    position: fixed;
    top: 50%;
    left: 50%;
    padding: 25px 30px;
}

.b-dialog-layout-310x300 {
    width: 310px;
    margin-left: -155px;
    height: 300px;
    margin-top: -150px;
}

.b-dialog-layout-520x450 {
    width: 520px;
    margin-left: -250px;
    height: 450px;
    margin-top: -300px;
}

@media all and (max-width: 540px) {
    .b-dialog-layout-520x450 {
        position: fixed;
        top: 8px;
        bottom: 8px;
        right: 8px;
        left: 8px;
        margin-left: 0;
        margin-top: 0;
        width: auto;
        height: auto;
    }
}

.b-dialog-layout-476x450 {
    width: 476px;
    margin-left: -238px;
    height: 450px;
    margin-top: -300px;
}

.b-dialog-layout-260x100 {
    width: 260px;
    margin-left: -130px;
    height: 100px;
    margin-top: -50px;
}

/* endregion */

/* region "Title and footer" */

.b-dialog-title {
    font-size: 18px;
    font-weight: 500;
}

.b-dialog-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.b-dialog-btn-bar .b-in-btn {
    min-width: 0;
    padding: 6px;
    margin-right: 10px;
}

.b-dialog-btn-bar .b-in-btn:first-child {
    margin-right: 0;
}

/* endregion */
@charset "UTF-8";

/**
 * Base toast alert styles
 */

.b-toast {
    position: fixed;
    bottom: 15px;
    left: 50%;
    width: 420px;
    margin-left: -210px;
    height: 45px;
    padding: 0 20px;
    line-height: 45px;
    background: #212121;
    color: #BDBDBD;
    text-align: center;
    font-size: 15px;
    cursor: pointer;
}

.b-toast--primary {
    background: #283593;
    color: #ffffff;
}

.b-toast--success {
    background: #388E3C;
    color: #ffffff;
}

.b-toast--info {
    background: #1565C0;
    color: #ffffff;
}

.b-toast--warning {
    background: #EF6C00;
    color: #ffffff;
}

.b-toast--danger, .b-toast--error {
    background: #C62828;
    color: #ffffff;
}

.b-toast--bottom-right {
    left: auto;
    margin-left: 0;
    right: 15px;
}

.b-toast--bottom-left {
    left: 15px;
    margin-left: 0;
}

.b-toast--top, .b-toast--top-center {
    bottom: auto;
    top: 15px;
}

.b-toast--top-right {
    bottom: auto;
    top: 15px;
    left: auto;
    margin-left: 0;
    right: 15px;
}

.b-toast--top-left {
    bottom: auto;
    top: 15px;
    left: 15px;
    margin-left: 0;
}

@media all and (max-width: 450px) {

    .b-toast, .b-toast--bottom-right, .b-toast--bottom-left,
    .b-toast--top, .b-toast--top-center, .b-toast--top-right, .b-toast--top-left {
        bottom: 0;
        border-radius: 0 !important;
        box-shadow: 0 !important;
        margin-left: 0;
        width: auto;
        left: 0;
        right: 0;
    }

    .b-toast--top, .b-toast--top-center, .b-toast--top-right, .b-toast--top-left {
        bottom: auto;
        top: 0;
    }

}
