`s.
-
-.nav {
- display: flex;
- flex-wrap: wrap;
- padding-left: 0;
- margin-bottom: 0;
- list-style: none;
-}
-
-.nav-link {
- display: block;
- padding: $nav-link-padding-y $nav-link-padding-x;
-
- @include hover-focus {
- text-decoration: none;
- }
-
- // Disabled state lightens text
- &.disabled {
- color: $nav-link-disabled-color;
- }
-}
-
-//
-// Tabs
-//
-
-.nav-tabs {
- border-bottom: $nav-tabs-border-width solid $nav-tabs-border-color;
-
- .nav-item {
- margin-bottom: -$nav-tabs-border-width;
- }
-
- .nav-link {
- border: $nav-tabs-border-width solid transparent;
- @include border-top-radius($nav-tabs-border-radius);
-
- @include hover-focus {
- border-color: $nav-tabs-link-hover-border-color;
- }
-
- &.disabled {
- color: $nav-link-disabled-color;
- background-color: transparent;
- border-color: transparent;
- }
- }
-
- .nav-link.active,
- .nav-item.show .nav-link {
- color: $nav-tabs-link-active-color;
- background-color: $nav-tabs-link-active-bg;
- border-color: $nav-tabs-link-active-border-color;
- }
-
- .dropdown-menu {
- // Make dropdown border overlap tab border
- margin-top: -$nav-tabs-border-width;
- // Remove the top rounded corners here since there is a hard edge above the menu
- @include border-top-radius(0);
- }
-}
-
-
-//
-// Pills
-//
-
-.nav-pills {
- .nav-link {
- @include border-radius($nav-pills-border-radius);
- }
-
- .nav-link.active,
- .show > .nav-link {
- color: $nav-pills-link-active-color;
- background-color: $nav-pills-link-active-bg;
- }
-}
-
-
-//
-// Justified variants
-//
-
-.nav-fill {
- .nav-item {
- flex: 1 1 auto;
- text-align: center;
- }
-}
-
-.nav-justified {
- .nav-item {
- flex-basis: 0;
- flex-grow: 1;
- text-align: center;
- }
-}
-
-
-// Tabbable tabs
-//
-// Hide tabbable panes to start, show them when `.active`
-
-.tab-content {
- > .tab-pane {
- display: none;
- }
- > .active {
- display: block;
- }
-}
diff --git a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/_navbar.scss b/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/_navbar.scss
deleted file mode 100644
index 52de505..0000000
--- a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/_navbar.scss
+++ /dev/null
@@ -1,299 +0,0 @@
-// Contents
-//
-// Navbar
-// Navbar brand
-// Navbar nav
-// Navbar text
-// Navbar divider
-// Responsive navbar
-// Navbar position
-// Navbar themes
-
-
-// Navbar
-//
-// Provide a static navbar from which we expand to create full-width, fixed, and
-// other navbar variations.
-
-.navbar {
- position: relative;
- display: flex;
- flex-wrap: wrap; // allow us to do the line break for collapsing content
- align-items: center;
- justify-content: space-between; // space out brand from logo
- padding: $navbar-padding-y $navbar-padding-x;
-
- // Because flex properties aren't inherited, we need to redeclare these first
- // few properties so that content nested within behave properly.
- > .container,
- > .container-fluid {
- display: flex;
- flex-wrap: wrap;
- align-items: center;
- justify-content: space-between;
- }
-}
-
-
-// Navbar brand
-//
-// Used for brand, project, or site names.
-
-.navbar-brand {
- display: inline-block;
- padding-top: $navbar-brand-padding-y;
- padding-bottom: $navbar-brand-padding-y;
- margin-right: $navbar-padding-x;
- font-size: $navbar-brand-font-size;
- line-height: inherit;
- white-space: nowrap;
-
- @include hover-focus {
- text-decoration: none;
- }
-}
-
-
-// Navbar nav
-//
-// Custom navbar navigation (doesn't require `.nav`, but does make use of `.nav-link`).
-
-.navbar-nav {
- display: flex;
- flex-direction: column; // cannot use `inherit` to get the `.navbar`s value
- padding-left: 0;
- margin-bottom: 0;
- list-style: none;
-
- .nav-link {
- padding-right: 0;
- padding-left: 0;
- }
-
- .dropdown-menu {
- position: static;
- float: none;
- }
-}
-
-
-// Navbar text
-//
-//
-
-.navbar-text {
- display: inline-block;
- padding-top: $nav-link-padding-y;
- padding-bottom: $nav-link-padding-y;
-}
-
-
-// Responsive navbar
-//
-// Custom styles for responsive collapsing and toggling of navbar contents.
-// Powered by the collapse Bootstrap JavaScript plugin.
-
-// When collapsed, prevent the toggleable navbar contents from appearing in
-// the default flexbox row orientation. Requires the use of `flex-wrap: wrap`
-// on the `.navbar` parent.
-.navbar-collapse {
- flex-basis: 100%;
- flex-grow: 1;
- // For always expanded or extra full navbars, ensure content aligns itself
- // properly vertically. Can be easily overridden with flex utilities.
- align-items: center;
-}
-
-// Button for toggling the navbar when in its collapsed state
-.navbar-toggler {
- padding: $navbar-toggler-padding-y $navbar-toggler-padding-x;
- font-size: $navbar-toggler-font-size;
- line-height: 1;
- background-color: transparent; // remove default button style
- border: $border-width solid transparent; // remove default button style
- @include border-radius($navbar-toggler-border-radius);
-
- @include hover-focus {
- text-decoration: none;
- }
-
- // Opinionated: add "hand" cursor to non-disabled .navbar-toggler elements
- &:not(:disabled):not(.disabled) {
- cursor: pointer;
- }
-}
-
-// Keep as a separate element so folks can easily override it with another icon
-// or image file as needed.
-.navbar-toggler-icon {
- display: inline-block;
- width: 1.5em;
- height: 1.5em;
- vertical-align: middle;
- content: "";
- background: no-repeat center center;
- background-size: 100% 100%;
-}
-
-// Generate series of `.navbar-expand-*` responsive classes for configuring
-// where your navbar collapses.
-.navbar-expand {
- @each $breakpoint in map-keys($grid-breakpoints) {
- $next: breakpoint-next($breakpoint, $grid-breakpoints);
- $infix: breakpoint-infix($next, $grid-breakpoints);
-
- {$infix} {
- @include media-breakpoint-down($breakpoint) {
- > .container,
- > .container-fluid {
- padding-right: 0;
- padding-left: 0;
- }
- }
-
- @include media-breakpoint-up($next) {
- flex-flow: row nowrap;
- justify-content: flex-start;
-
- .navbar-nav {
- flex-direction: row;
-
- .dropdown-menu {
- position: absolute;
- }
-
- .nav-link {
- padding-right: $navbar-nav-link-padding-x;
- padding-left: $navbar-nav-link-padding-x;
- }
- }
-
- // For nesting containers, have to redeclare for alignment purposes
- > .container,
- > .container-fluid {
- flex-wrap: nowrap;
- }
-
- .navbar-collapse {
- display: flex !important; // stylelint-disable-line declaration-no-important
-
- // Changes flex-bases to auto because of an IE10 bug
- flex-basis: auto;
- }
-
- .navbar-toggler {
- display: none;
- }
- }
- }
- }
-}
-
-
-// Navbar themes
-//
-// Styles for switching between navbars with light or dark background.
-
-// Dark links against a light background
-.navbar-light {
- .navbar-brand {
- color: $navbar-light-active-color;
-
- @include hover-focus {
- color: $navbar-light-active-color;
- }
- }
-
- .navbar-nav {
- .nav-link {
- color: $navbar-light-color;
-
- @include hover-focus {
- color: $navbar-light-hover-color;
- }
-
- &.disabled {
- color: $navbar-light-disabled-color;
- }
- }
-
- .show > .nav-link,
- .active > .nav-link,
- .nav-link.show,
- .nav-link.active {
- color: $navbar-light-active-color;
- }
- }
-
- .navbar-toggler {
- color: $navbar-light-color;
- border-color: $navbar-light-toggler-border-color;
- }
-
- .navbar-toggler-icon {
- background-image: $navbar-light-toggler-icon-bg;
- }
-
- .navbar-text {
- color: $navbar-light-color;
- a {
- color: $navbar-light-active-color;
-
- @include hover-focus {
- color: $navbar-light-active-color;
- }
- }
- }
-}
-
-// White links against a dark background
-.navbar-dark {
- .navbar-brand {
- color: $navbar-dark-active-color;
-
- @include hover-focus {
- color: $navbar-dark-active-color;
- }
- }
-
- .navbar-nav {
- .nav-link {
- color: $navbar-dark-color;
-
- @include hover-focus {
- color: $navbar-dark-hover-color;
- }
-
- &.disabled {
- color: $navbar-dark-disabled-color;
- }
- }
-
- .show > .nav-link,
- .active > .nav-link,
- .nav-link.show,
- .nav-link.active {
- color: $navbar-dark-active-color;
- }
- }
-
- .navbar-toggler {
- color: $navbar-dark-color;
- border-color: $navbar-dark-toggler-border-color;
- }
-
- .navbar-toggler-icon {
- background-image: $navbar-dark-toggler-icon-bg;
- }
-
- .navbar-text {
- color: $navbar-dark-color;
- a {
- color: $navbar-dark-active-color;
-
- @include hover-focus {
- color: $navbar-dark-active-color;
- }
- }
- }
-}
diff --git a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/_pagination.scss b/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/_pagination.scss
deleted file mode 100644
index 9349f3f..0000000
--- a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/_pagination.scss
+++ /dev/null
@@ -1,78 +0,0 @@
-.pagination {
- display: flex;
- @include list-unstyled();
- @include border-radius();
-}
-
-.page-link {
- position: relative;
- display: block;
- padding: $pagination-padding-y $pagination-padding-x;
- margin-left: -$pagination-border-width;
- line-height: $pagination-line-height;
- color: $pagination-color;
- background-color: $pagination-bg;
- border: $pagination-border-width solid $pagination-border-color;
-
- &:hover {
- z-index: 2;
- color: $pagination-hover-color;
- text-decoration: none;
- background-color: $pagination-hover-bg;
- border-color: $pagination-hover-border-color;
- }
-
- &:focus {
- z-index: 2;
- outline: $pagination-focus-outline;
- box-shadow: $pagination-focus-box-shadow;
- }
-
- // Opinionated: add "hand" cursor to non-disabled .page-link elements
- &:not(:disabled):not(.disabled) {
- cursor: pointer;
- }
-}
-
-.page-item {
- &:first-child {
- .page-link {
- margin-left: 0;
- @include border-left-radius($border-radius);
- }
- }
- &:last-child {
- .page-link {
- @include border-right-radius($border-radius);
- }
- }
-
- &.active .page-link {
- z-index: 1;
- color: $pagination-active-color;
- background-color: $pagination-active-bg;
- border-color: $pagination-active-border-color;
- }
-
- &.disabled .page-link {
- color: $pagination-disabled-color;
- pointer-events: none;
- // Opinionated: remove the "hand" cursor set previously for .page-link
- cursor: auto;
- background-color: $pagination-disabled-bg;
- border-color: $pagination-disabled-border-color;
- }
-}
-
-
-//
-// Sizing
-//
-
-.pagination-lg {
- @include pagination-size($pagination-padding-y-lg, $pagination-padding-x-lg, $font-size-lg, $line-height-lg, $border-radius-lg);
-}
-
-.pagination-sm {
- @include pagination-size($pagination-padding-y-sm, $pagination-padding-x-sm, $font-size-sm, $line-height-sm, $border-radius-sm);
-}
diff --git a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/_popover.scss b/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/_popover.scss
deleted file mode 100644
index 3ef5f62..0000000
--- a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/_popover.scss
+++ /dev/null
@@ -1,183 +0,0 @@
-.popover {
- position: absolute;
- top: 0;
- left: 0;
- z-index: $zindex-popover;
- display: block;
- max-width: $popover-max-width;
- // Our parent element can be arbitrary since tooltips are by default inserted as a sibling of their target element.
- // So reset our font and text properties to avoid inheriting weird values.
- @include reset-text();
- font-size: $popover-font-size;
- // Allow breaking very long words so they don't overflow the popover's bounds
- word-wrap: break-word;
- background-color: $popover-bg;
- background-clip: padding-box;
- border: $popover-border-width solid $popover-border-color;
- @include border-radius($popover-border-radius);
- @include box-shadow($popover-box-shadow);
-
- .arrow {
- position: absolute;
- display: block;
- width: $popover-arrow-width;
- height: $popover-arrow-height;
- margin: 0 $border-radius-lg;
-
- &::before,
- &::after {
- position: absolute;
- display: block;
- content: "";
- border-color: transparent;
- border-style: solid;
- }
- }
-}
-
-.bs-popover-top {
- margin-bottom: $popover-arrow-height;
-
- .arrow {
- bottom: calc((#{$popover-arrow-height} + #{$popover-border-width}) * -1);
- }
-
- .arrow::before,
- .arrow::after {
- border-width: $popover-arrow-height ($popover-arrow-width / 2) 0;
- }
-
- .arrow::before {
- bottom: 0;
- border-top-color: $popover-arrow-outer-color;
- }
-
- .arrow::after {
- bottom: $popover-border-width;
- border-top-color: $popover-arrow-color;
- }
-}
-
-.bs-popover-right {
- margin-left: $popover-arrow-height;
-
- .arrow {
- left: calc((#{$popover-arrow-height} + #{$popover-border-width}) * -1);
- width: $popover-arrow-height;
- height: $popover-arrow-width;
- margin: $border-radius-lg 0; // make sure the arrow does not touch the popover's rounded corners
- }
-
- .arrow::before,
- .arrow::after {
- border-width: ($popover-arrow-width / 2) $popover-arrow-height ($popover-arrow-width / 2) 0;
- }
-
- .arrow::before {
- left: 0;
- border-right-color: $popover-arrow-outer-color;
- }
-
- .arrow::after {
- left: $popover-border-width;
- border-right-color: $popover-arrow-color;
- }
-}
-
-.bs-popover-bottom {
- margin-top: $popover-arrow-height;
-
- .arrow {
- top: calc((#{$popover-arrow-height} + #{$popover-border-width}) * -1);
- }
-
- .arrow::before,
- .arrow::after {
- border-width: 0 ($popover-arrow-width / 2) $popover-arrow-height ($popover-arrow-width / 2);
- }
-
- .arrow::before {
- top: 0;
- border-bottom-color: $popover-arrow-outer-color;
- }
-
- .arrow::after {
- top: $popover-border-width;
- border-bottom-color: $popover-arrow-color;
- }
-
- // This will remove the popover-header's border just below the arrow
- .popover-header::before {
- position: absolute;
- top: 0;
- left: 50%;
- display: block;
- width: $popover-arrow-width;
- margin-left: ($popover-arrow-width / -2);
- content: "";
- border-bottom: $popover-border-width solid $popover-header-bg;
- }
-}
-
-.bs-popover-left {
- margin-right: $popover-arrow-height;
-
- .arrow {
- right: calc((#{$popover-arrow-height} + #{$popover-border-width}) * -1);
- width: $popover-arrow-height;
- height: $popover-arrow-width;
- margin: $border-radius-lg 0; // make sure the arrow does not touch the popover's rounded corners
- }
-
- .arrow::before,
- .arrow::after {
- border-width: ($popover-arrow-width / 2) 0 ($popover-arrow-width / 2) $popover-arrow-height;
- }
-
- .arrow::before {
- right: 0;
- border-left-color: $popover-arrow-outer-color;
- }
-
- .arrow::after {
- right: $popover-border-width;
- border-left-color: $popover-arrow-color;
- }
-}
-
-.bs-popover-auto {
- &[x-placement^="top"] {
- @extend .bs-popover-top;
- }
- &[x-placement^="right"] {
- @extend .bs-popover-right;
- }
- &[x-placement^="bottom"] {
- @extend .bs-popover-bottom;
- }
- &[x-placement^="left"] {
- @extend .bs-popover-left;
- }
-}
-
-
-// Offset the popover to account for the popover arrow
-.popover-header {
- padding: $popover-header-padding-y $popover-header-padding-x;
- margin-bottom: 0; // Reset the default from Reboot
- font-size: $font-size-base;
- color: $popover-header-color;
- background-color: $popover-header-bg;
- border-bottom: $popover-border-width solid darken($popover-header-bg, 5%);
- $offset-border-width: calc(#{$border-radius-lg} - #{$popover-border-width});
- @include border-top-radius($offset-border-width);
-
- &:empty {
- display: none;
- }
-}
-
-.popover-body {
- padding: $popover-body-padding-y $popover-body-padding-x;
- color: $popover-body-color;
-}
diff --git a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/_print.scss b/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/_print.scss
deleted file mode 100644
index 1df9487..0000000
--- a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/_print.scss
+++ /dev/null
@@ -1,141 +0,0 @@
-// stylelint-disable declaration-no-important, selector-no-qualifying-type
-
-// Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css
-
-// ==========================================================================
-// Print styles.
-// Inlined to avoid the additional HTTP request:
-// https://www.phpied.com/delay-loading-your-print-css/
-// ==========================================================================
-
-@if $enable-print-styles {
- @media print {
- *,
- *::before,
- *::after {
- // Bootstrap specific; comment out `color` and `background`
- //color: $black !important; // Black prints faster
- text-shadow: none !important;
- //background: transparent !important;
- box-shadow: none !important;
- }
-
- a {
- &:not(.btn) {
- text-decoration: underline;
- }
- }
-
- // Bootstrap specific; comment the following selector out
- //a[href]::after {
- // content: " (" attr(href) ")";
- //}
-
- abbr[title]::after {
- content: " (" attr(title) ")";
- }
-
- // Bootstrap specific; comment the following selector out
- //
- // Don't show links that are fragment identifiers,
- // or use the `javascript:` pseudo protocol
- //
-
- //a[href^="#"]::after,
- //a[href^="javascript:"]::after {
- // content: "";
- //}
-
- pre {
- white-space: pre-wrap !important;
- }
- pre,
- blockquote {
- border: $border-width solid $gray-500; // Bootstrap custom code; using `$border-width` instead of 1px
- page-break-inside: avoid;
- }
-
- //
- // Printing Tables:
- // http://css-discuss.incutio.com/wiki/Printing_Tables
- //
-
- thead {
- display: table-header-group;
- }
-
- tr,
- img {
- page-break-inside: avoid;
- }
-
- p,
- h2,
- h3 {
- orphans: 3;
- widows: 3;
- }
-
- h2,
- h3 {
- page-break-after: avoid;
- }
-
- // Bootstrap specific changes start
-
- // Specify a size and min-width to make printing closer across browsers.
- // We don't set margin here because it breaks `size` in Chrome. We also
- // don't use `!important` on `size` as it breaks in Chrome.
- @page {
- size: $print-page-size;
- }
- body {
- min-width: $print-body-min-width !important;
- }
- .container {
- min-width: $print-body-min-width !important;
- }
-
- // Bootstrap components
- .navbar {
- display: none;
- }
- .badge {
- border: $border-width solid $black;
- }
-
- .table {
- border-collapse: collapse !important;
-
- td,
- th {
- background-color: $white !important;
- }
- }
-
- .table-bordered {
- th,
- td {
- border: 1px solid $gray-300 !important;
- }
- }
-
- .table-dark {
- color: inherit;
-
- th,
- td,
- thead th,
- tbody + tbody {
- border-color: $table-border-color;
- }
- }
-
- .table .thead-dark th {
- color: inherit;
- border-color: $table-border-color;
- }
-
- // Bootstrap specific changes end
- }
-}
diff --git a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/_progress.scss b/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/_progress.scss
deleted file mode 100644
index 0ac3e0c..0000000
--- a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/_progress.scss
+++ /dev/null
@@ -1,34 +0,0 @@
-@keyframes progress-bar-stripes {
- from { background-position: $progress-height 0; }
- to { background-position: 0 0; }
-}
-
-.progress {
- display: flex;
- height: $progress-height;
- overflow: hidden; // force rounded corners by cropping it
- font-size: $progress-font-size;
- background-color: $progress-bg;
- @include border-radius($progress-border-radius);
- @include box-shadow($progress-box-shadow);
-}
-
-.progress-bar {
- display: flex;
- flex-direction: column;
- justify-content: center;
- color: $progress-bar-color;
- text-align: center;
- white-space: nowrap;
- background-color: $progress-bar-bg;
- @include transition($progress-bar-transition);
-}
-
-.progress-bar-striped {
- @include gradient-striped();
- background-size: $progress-height $progress-height;
-}
-
-.progress-bar-animated {
- animation: progress-bar-stripes $progress-bar-animation-timing;
-}
diff --git a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/_reboot.scss b/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/_reboot.scss
deleted file mode 100644
index f297d09..0000000
--- a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/_reboot.scss
+++ /dev/null
@@ -1,483 +0,0 @@
-// stylelint-disable at-rule-no-vendor-prefix, declaration-no-important, selector-no-qualifying-type, property-no-vendor-prefix
-
-// Reboot
-//
-// Normalization of HTML elements, manually forked from Normalize.css to remove
-// styles targeting irrelevant browsers while applying new styles.
-//
-// Normalize is licensed MIT. https://github.com/necolas/normalize.css
-
-
-// Document
-//
-// 1. Change from `box-sizing: content-box` so that `width` is not affected by `padding` or `border`.
-// 2. Change the default font family in all browsers.
-// 3. Correct the line height in all browsers.
-// 4. Prevent adjustments of font size after orientation changes in IE on Windows Phone and in iOS.
-// 5. Setting @viewport causes scrollbars to overlap content in IE11 and Edge, so
-// we force a non-overlapping, non-auto-hiding scrollbar to counteract.
-// 6. Change the default tap highlight to be completely transparent in iOS.
-
-*,
-*::before,
-*::after {
- box-sizing: border-box; // 1
-}
-
-html {
- font-family: sans-serif; // 2
- line-height: 1.15; // 3
- -webkit-text-size-adjust: 100%; // 4
- -ms-text-size-adjust: 100%; // 4
- -ms-overflow-style: scrollbar; // 5
- -webkit-tap-highlight-color: rgba($black, 0); // 6
-}
-
-// IE10+ doesn't honor ` ` in some cases.
-@at-root {
- @-ms-viewport {
- width: device-width;
- }
-}
-
-// stylelint-disable selector-list-comma-newline-after
-// Shim for "new" HTML5 structural elements to display correctly (IE10, older browsers)
-article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
- display: block;
-}
-// stylelint-enable selector-list-comma-newline-after
-
-// Body
-//
-// 1. Remove the margin in all browsers.
-// 2. As a best practice, apply a default `background-color`.
-// 3. Set an explicit initial text-align value so that we can later use the
-// the `inherit` value on things like `` elements.
-
-body {
- margin: 0; // 1
- font-family: $font-family-base;
- font-size: $font-size-base;
- font-weight: $font-weight-base;
- line-height: $line-height-base;
- color: $body-color;
- text-align: left; // 3
- background-color: $body-bg; // 2
-}
-
-// Suppress the focus outline on elements that cannot be accessed via keyboard.
-// This prevents an unwanted focus outline from appearing around elements that
-// might still respond to pointer events.
-//
-// Credit: https://github.com/suitcss/base
-[tabindex="-1"]:focus {
- outline: 0 !important;
-}
-
-
-// Content grouping
-//
-// 1. Add the correct box sizing in Firefox.
-// 2. Show the overflow in Edge and IE.
-
-hr {
- box-sizing: content-box; // 1
- height: 0; // 1
- overflow: visible; // 2
-}
-
-
-//
-// Typography
-//
-
-// Remove top margins from headings
-//
-// By default, ``-`` all receive top and bottom margins. We nuke the top
-// margin for easier control within type scales as it avoids margin collapsing.
-// stylelint-disable selector-list-comma-newline-after
-h1, h2, h3, h4, h5, h6 {
- margin-top: 0;
- margin-bottom: $headings-margin-bottom;
-}
-// stylelint-enable selector-list-comma-newline-after
-
-// Reset margins on paragraphs
-//
-// Similarly, the top margin on ` `s get reset. However, we also reset the
-// bottom margin to use `rem` units instead of `em`.
-p {
- margin-top: 0;
- margin-bottom: $paragraph-margin-bottom;
-}
-
-// Abbreviations
-//
-// 1. Remove the bottom border in Firefox 39-.
-// 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
-// 3. Add explicit cursor to indicate changed behavior.
-// 4. Duplicate behavior to the data-* attribute for our tooltip plugin
-
-abbr[title],
-abbr[data-original-title] { // 4
- text-decoration: underline; // 2
- text-decoration: underline dotted; // 2
- cursor: help; // 3
- border-bottom: 0; // 1
-}
-
-address {
- margin-bottom: 1rem;
- font-style: normal;
- line-height: inherit;
-}
-
-ol,
-ul,
-dl {
- margin-top: 0;
- margin-bottom: 1rem;
-}
-
-ol ol,
-ul ul,
-ol ul,
-ul ol {
- margin-bottom: 0;
-}
-
-dt {
- font-weight: $dt-font-weight;
-}
-
-dd {
- margin-bottom: .5rem;
- margin-left: 0; // Undo browser default
-}
-
-blockquote {
- margin: 0 0 1rem;
-}
-
-dfn {
- font-style: italic; // Add the correct font style in Android 4.3-
-}
-
-// stylelint-disable font-weight-notation
-b,
-strong {
- font-weight: bolder; // Add the correct font weight in Chrome, Edge, and Safari
-}
-// stylelint-enable font-weight-notation
-
-small {
- font-size: 80%; // Add the correct font size in all browsers
-}
-
-//
-// Prevent `sub` and `sup` elements from affecting the line height in
-// all browsers.
-//
-
-sub,
-sup {
- position: relative;
- font-size: 75%;
- line-height: 0;
- vertical-align: baseline;
-}
-
-sub { bottom: -.25em; }
-sup { top: -.5em; }
-
-
-//
-// Links
-//
-
-a {
- color: $link-color;
- text-decoration: $link-decoration;
- background-color: transparent; // Remove the gray background on active links in IE 10.
- -webkit-text-decoration-skip: objects; // Remove gaps in links underline in iOS 8+ and Safari 8+.
-
- @include hover {
- color: $link-hover-color;
- text-decoration: $link-hover-decoration;
- }
-}
-
-// And undo these styles for placeholder links/named anchors (without href)
-// which have not been made explicitly keyboard-focusable (without tabindex).
-// It would be more straightforward to just use a[href] in previous block, but that
-// causes specificity issues in many other styles that are too complex to fix.
-// See https://github.com/twbs/bootstrap/issues/19402
-
-a:not([href]):not([tabindex]) {
- color: inherit;
- text-decoration: none;
-
- @include hover-focus {
- color: inherit;
- text-decoration: none;
- }
-
- &:focus {
- outline: 0;
- }
-}
-
-
-//
-// Code
-//
-
-pre,
-code,
-kbd,
-samp {
- font-family: $font-family-monospace;
- font-size: 1em; // Correct the odd `em` font sizing in all browsers.
-}
-
-pre {
- // Remove browser default top margin
- margin-top: 0;
- // Reset browser default of `1em` to use `rem`s
- margin-bottom: 1rem;
- // Don't allow content to break outside
- overflow: auto;
- // We have @viewport set which causes scrollbars to overlap content in IE11 and Edge, so
- // we force a non-overlapping, non-auto-hiding scrollbar to counteract.
- -ms-overflow-style: scrollbar;
-}
-
-
-//
-// Figures
-//
-
-figure {
- // Apply a consistent margin strategy (matches our type styles).
- margin: 0 0 1rem;
-}
-
-
-//
-// Images and content
-//
-
-img {
- vertical-align: middle;
- border-style: none; // Remove the border on images inside links in IE 10-.
-}
-
-svg {
- // Workaround for the SVG overflow bug in IE10/11 is still required.
- // See https://github.com/twbs/bootstrap/issues/26878
- overflow: hidden;
- vertical-align: middle;
-}
-
-
-//
-// Tables
-//
-
-table {
- border-collapse: collapse; // Prevent double borders
-}
-
-caption {
- padding-top: $table-cell-padding;
- padding-bottom: $table-cell-padding;
- color: $table-caption-color;
- text-align: left;
- caption-side: bottom;
-}
-
-th {
- // Matches default `
` alignment by inheriting from the ``, or the
- // closest parent with a set `text-align`.
- text-align: inherit;
-}
-
-
-//
-// Forms
-//
-
-label {
- // Allow labels to use `margin` for spacing.
- display: inline-block;
- margin-bottom: $label-margin-bottom;
-}
-
-// Remove the default `border-radius` that macOS Chrome adds.
-//
-// Details at https://github.com/twbs/bootstrap/issues/24093
-button {
- border-radius: 0;
-}
-
-// Work around a Firefox/IE bug where the transparent `button` background
-// results in a loss of the default `button` focus styles.
-//
-// Credit: https://github.com/suitcss/base/
-button:focus {
- outline: 1px dotted;
- outline: 5px auto -webkit-focus-ring-color;
-}
-
-input,
-button,
-select,
-optgroup,
-textarea {
- margin: 0; // Remove the margin in Firefox and Safari
- font-family: inherit;
- font-size: inherit;
- line-height: inherit;
-}
-
-button,
-input {
- overflow: visible; // Show the overflow in Edge
-}
-
-button,
-select {
- text-transform: none; // Remove the inheritance of text transform in Firefox
-}
-
-// 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
-// controls in Android 4.
-// 2. Correct the inability to style clickable types in iOS and Safari.
-button,
-html [type="button"], // 1
-[type="reset"],
-[type="submit"] {
- -webkit-appearance: button; // 2
-}
-
-// Remove inner border and padding from Firefox, but don't restore the outline like Normalize.
-button::-moz-focus-inner,
-[type="button"]::-moz-focus-inner,
-[type="reset"]::-moz-focus-inner,
-[type="submit"]::-moz-focus-inner {
- padding: 0;
- border-style: none;
-}
-
-input[type="radio"],
-input[type="checkbox"] {
- box-sizing: border-box; // 1. Add the correct box sizing in IE 10-
- padding: 0; // 2. Remove the padding in IE 10-
-}
-
-
-input[type="date"],
-input[type="time"],
-input[type="datetime-local"],
-input[type="month"] {
- // Remove the default appearance of temporal inputs to avoid a Mobile Safari
- // bug where setting a custom line-height prevents text from being vertically
- // centered within the input.
- // See https://bugs.webkit.org/show_bug.cgi?id=139848
- // and https://github.com/twbs/bootstrap/issues/11266
- -webkit-appearance: listbox;
-}
-
-textarea {
- overflow: auto; // Remove the default vertical scrollbar in IE.
- // Textareas should really only resize vertically so they don't break their (horizontal) containers.
- resize: vertical;
-}
-
-fieldset {
- // Browsers set a default `min-width: min-content;` on fieldsets,
- // unlike e.g. ``s, which have `min-width: 0;` by default.
- // So we reset that to ensure fieldsets behave more like a standard block element.
- // See https://github.com/twbs/bootstrap/issues/12359
- // and https://html.spec.whatwg.org/multipage/#the-fieldset-and-legend-elements
- min-width: 0;
- // Reset the default outline behavior of fieldsets so they don't affect page layout.
- padding: 0;
- margin: 0;
- border: 0;
-}
-
-// 1. Correct the text wrapping in Edge and IE.
-// 2. Correct the color inheritance from `fieldset` elements in IE.
-legend {
- display: block;
- width: 100%;
- max-width: 100%; // 1
- padding: 0;
- margin-bottom: .5rem;
- font-size: 1.5rem;
- line-height: inherit;
- color: inherit; // 2
- white-space: normal; // 1
-}
-
-progress {
- vertical-align: baseline; // Add the correct vertical alignment in Chrome, Firefox, and Opera.
-}
-
-// Correct the cursor style of increment and decrement buttons in Chrome.
-[type="number"]::-webkit-inner-spin-button,
-[type="number"]::-webkit-outer-spin-button {
- height: auto;
-}
-
-[type="search"] {
- // This overrides the extra rounded corners on search inputs in iOS so that our
- // `.form-control` class can properly style them. Note that this cannot simply
- // be added to `.form-control` as it's not specific enough. For details, see
- // https://github.com/twbs/bootstrap/issues/11586.
- outline-offset: -2px; // 2. Correct the outline style in Safari.
- -webkit-appearance: none;
-}
-
-//
-// Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
-//
-
-[type="search"]::-webkit-search-cancel-button,
-[type="search"]::-webkit-search-decoration {
- -webkit-appearance: none;
-}
-
-//
-// 1. Correct the inability to style clickable types in iOS and Safari.
-// 2. Change font properties to `inherit` in Safari.
-//
-
-::-webkit-file-upload-button {
- font: inherit; // 2
- -webkit-appearance: button; // 1
-}
-
-//
-// Correct element displays
-//
-
-output {
- display: inline-block;
-}
-
-summary {
- display: list-item; // Add the correct display in all browsers
- cursor: pointer;
-}
-
-template {
- display: none; // Add the correct display in IE
-}
-
-// Always hide an element with the `hidden` HTML attribute (from PureCSS).
-// Needed for proper display in IE 10-.
-[hidden] {
- display: none !important;
-}
diff --git a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/_root.scss b/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/_root.scss
deleted file mode 100644
index ad550df..0000000
--- a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/_root.scss
+++ /dev/null
@@ -1,19 +0,0 @@
-:root {
- // Custom variable values only support SassScript inside `#{}`.
- @each $color, $value in $colors {
- --#{$color}: #{$value};
- }
-
- @each $color, $value in $theme-colors {
- --#{$color}: #{$value};
- }
-
- @each $bp, $value in $grid-breakpoints {
- --breakpoint-#{$bp}: #{$value};
- }
-
- // Use `inspect` for lists so that quoted items keep the quotes.
- // See https://github.com/sass/sass/issues/2383#issuecomment-336349172
- --font-family-sans-serif: #{inspect($font-family-sans-serif)};
- --font-family-monospace: #{inspect($font-family-monospace)};
-}
diff --git a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/_tables.scss b/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/_tables.scss
deleted file mode 100644
index 5fa6a86..0000000
--- a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/_tables.scss
+++ /dev/null
@@ -1,187 +0,0 @@
-//
-// Basic Bootstrap table
-//
-
-.table {
- width: 100%;
- margin-bottom: $spacer;
- background-color: $table-bg; // Reset for nesting within parents with `background-color`.
-
- th,
- td {
- padding: $table-cell-padding;
- vertical-align: top;
- border-top: $table-border-width solid $table-border-color;
- }
-
- thead th {
- vertical-align: bottom;
- border-bottom: (2 * $table-border-width) solid $table-border-color;
- }
-
- tbody + tbody {
- border-top: (2 * $table-border-width) solid $table-border-color;
- }
-
- .table {
- background-color: $body-bg;
- }
-}
-
-
-//
-// Condensed table w/ half padding
-//
-
-.table-sm {
- th,
- td {
- padding: $table-cell-padding-sm;
- }
-}
-
-
-// Border versions
-//
-// Add or remove borders all around the table and between all the columns.
-
-.table-bordered {
- border: $table-border-width solid $table-border-color;
-
- th,
- td {
- border: $table-border-width solid $table-border-color;
- }
-
- thead {
- th,
- td {
- border-bottom-width: (2 * $table-border-width);
- }
- }
-}
-
-.table-borderless {
- th,
- td,
- thead th,
- tbody + tbody {
- border: 0;
- }
-}
-
-// Zebra-striping
-//
-// Default zebra-stripe styles (alternating gray and transparent backgrounds)
-
-.table-striped {
- tbody tr:nth-of-type(#{$table-striped-order}) {
- background-color: $table-accent-bg;
- }
-}
-
-
-// Hover effect
-//
-// Placed here since it has to come after the potential zebra striping
-
-.table-hover {
- tbody tr {
- @include hover {
- background-color: $table-hover-bg;
- }
- }
-}
-
-
-// Table backgrounds
-//
-// Exact selectors below required to override `.table-striped` and prevent
-// inheritance to nested tables.
-
-@each $color, $value in $theme-colors {
- @include table-row-variant($color, theme-color-level($color, -9));
-}
-
-@include table-row-variant(active, $table-active-bg);
-
-
-// Dark styles
-//
-// Same table markup, but inverted color scheme: dark background and light text.
-
-// stylelint-disable-next-line no-duplicate-selectors
-.table {
- .thead-dark {
- th {
- color: $table-dark-color;
- background-color: $table-dark-bg;
- border-color: $table-dark-border-color;
- }
- }
-
- .thead-light {
- th {
- color: $table-head-color;
- background-color: $table-head-bg;
- border-color: $table-border-color;
- }
- }
-}
-
-.table-dark {
- color: $table-dark-color;
- background-color: $table-dark-bg;
-
- th,
- td,
- thead th {
- border-color: $table-dark-border-color;
- }
-
- &.table-bordered {
- border: 0;
- }
-
- &.table-striped {
- tbody tr:nth-of-type(odd) {
- background-color: $table-dark-accent-bg;
- }
- }
-
- &.table-hover {
- tbody tr {
- @include hover {
- background-color: $table-dark-hover-bg;
- }
- }
- }
-}
-
-
-// Responsive tables
-//
-// Generate series of `.table-responsive-*` classes for configuring the screen
-// size of where your table will overflow.
-
-.table-responsive {
- @each $breakpoint in map-keys($grid-breakpoints) {
- $next: breakpoint-next($breakpoint, $grid-breakpoints);
- $infix: breakpoint-infix($next, $grid-breakpoints);
-
- {$infix} {
- @include media-breakpoint-down($breakpoint) {
- display: block;
- width: 100%;
- overflow-x: auto;
- -webkit-overflow-scrolling: touch;
- -ms-overflow-style: -ms-autohiding-scrollbar; // See https://github.com/twbs/bootstrap/pull/10057
-
- // Prevent double border on horizontal scroll due to use of `display: block;`
- > .table-bordered {
- border: 0;
- }
- }
- }
- }
-}
diff --git a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/_tooltip.scss b/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/_tooltip.scss
deleted file mode 100644
index 1286ebf..0000000
--- a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/_tooltip.scss
+++ /dev/null
@@ -1,115 +0,0 @@
-// Base class
-.tooltip {
- position: absolute;
- z-index: $zindex-tooltip;
- display: block;
- margin: $tooltip-margin;
- // Our parent element can be arbitrary since tooltips are by default inserted as a sibling of their target element.
- // So reset our font and text properties to avoid inheriting weird values.
- @include reset-text();
- font-size: $tooltip-font-size;
- // Allow breaking very long words so they don't overflow the tooltip's bounds
- word-wrap: break-word;
- opacity: 0;
-
- &.show { opacity: $tooltip-opacity; }
-
- .arrow {
- position: absolute;
- display: block;
- width: $tooltip-arrow-width;
- height: $tooltip-arrow-height;
-
- &::before {
- position: absolute;
- content: "";
- border-color: transparent;
- border-style: solid;
- }
- }
-}
-
-.bs-tooltip-top {
- padding: $tooltip-arrow-height 0;
-
- .arrow {
- bottom: 0;
-
- &::before {
- top: 0;
- border-width: $tooltip-arrow-height ($tooltip-arrow-width / 2) 0;
- border-top-color: $tooltip-arrow-color;
- }
- }
-}
-
-.bs-tooltip-right {
- padding: 0 $tooltip-arrow-height;
-
- .arrow {
- left: 0;
- width: $tooltip-arrow-height;
- height: $tooltip-arrow-width;
-
- &::before {
- right: 0;
- border-width: ($tooltip-arrow-width / 2) $tooltip-arrow-height ($tooltip-arrow-width / 2) 0;
- border-right-color: $tooltip-arrow-color;
- }
- }
-}
-
-.bs-tooltip-bottom {
- padding: $tooltip-arrow-height 0;
-
- .arrow {
- top: 0;
-
- &::before {
- bottom: 0;
- border-width: 0 ($tooltip-arrow-width / 2) $tooltip-arrow-height;
- border-bottom-color: $tooltip-arrow-color;
- }
- }
-}
-
-.bs-tooltip-left {
- padding: 0 $tooltip-arrow-height;
-
- .arrow {
- right: 0;
- width: $tooltip-arrow-height;
- height: $tooltip-arrow-width;
-
- &::before {
- left: 0;
- border-width: ($tooltip-arrow-width / 2) 0 ($tooltip-arrow-width / 2) $tooltip-arrow-height;
- border-left-color: $tooltip-arrow-color;
- }
- }
-}
-
-.bs-tooltip-auto {
- &[x-placement^="top"] {
- @extend .bs-tooltip-top;
- }
- &[x-placement^="right"] {
- @extend .bs-tooltip-right;
- }
- &[x-placement^="bottom"] {
- @extend .bs-tooltip-bottom;
- }
- &[x-placement^="left"] {
- @extend .bs-tooltip-left;
- }
-}
-
-// Wrapper for the tooltip content
-.tooltip-inner {
- max-width: $tooltip-max-width;
- padding: $tooltip-padding-y $tooltip-padding-x;
- color: $tooltip-color;
- text-align: center;
- background-color: $tooltip-bg;
- @include border-radius($tooltip-border-radius);
-}
diff --git a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/_transitions.scss b/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/_transitions.scss
deleted file mode 100644
index c8d91e2..0000000
--- a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/_transitions.scss
+++ /dev/null
@@ -1,22 +0,0 @@
-// stylelint-disable selector-no-qualifying-type
-
-.fade {
- @include transition($transition-fade);
-
- &:not(.show) {
- opacity: 0;
- }
-}
-
-.collapse {
- &:not(.show) {
- display: none;
- }
-}
-
-.collapsing {
- position: relative;
- height: 0;
- overflow: hidden;
- @include transition($transition-collapse);
-}
diff --git a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/_type.scss b/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/_type.scss
deleted file mode 100644
index 57d610f..0000000
--- a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/_type.scss
+++ /dev/null
@@ -1,125 +0,0 @@
-// stylelint-disable declaration-no-important, selector-list-comma-newline-after
-
-//
-// Headings
-//
-
-h1, h2, h3, h4, h5, h6,
-.h1, .h2, .h3, .h4, .h5, .h6 {
- margin-bottom: $headings-margin-bottom;
- font-family: $headings-font-family;
- font-weight: $headings-font-weight;
- line-height: $headings-line-height;
- color: $headings-color;
-}
-
-h1, .h1 { font-size: $h1-font-size; }
-h2, .h2 { font-size: $h2-font-size; }
-h3, .h3 { font-size: $h3-font-size; }
-h4, .h4 { font-size: $h4-font-size; }
-h5, .h5 { font-size: $h5-font-size; }
-h6, .h6 { font-size: $h6-font-size; }
-
-.lead {
- font-size: $lead-font-size;
- font-weight: $lead-font-weight;
-}
-
-// Type display classes
-.display-1 {
- font-size: $display1-size;
- font-weight: $display1-weight;
- line-height: $display-line-height;
-}
-.display-2 {
- font-size: $display2-size;
- font-weight: $display2-weight;
- line-height: $display-line-height;
-}
-.display-3 {
- font-size: $display3-size;
- font-weight: $display3-weight;
- line-height: $display-line-height;
-}
-.display-4 {
- font-size: $display4-size;
- font-weight: $display4-weight;
- line-height: $display-line-height;
-}
-
-
-//
-// Horizontal rules
-//
-
-hr {
- margin-top: $hr-margin-y;
- margin-bottom: $hr-margin-y;
- border: 0;
- border-top: $hr-border-width solid $hr-border-color;
-}
-
-
-//
-// Emphasis
-//
-
-small,
-.small {
- font-size: $small-font-size;
- font-weight: $font-weight-normal;
-}
-
-mark,
-.mark {
- padding: $mark-padding;
- background-color: $mark-bg;
-}
-
-
-//
-// Lists
-//
-
-.list-unstyled {
- @include list-unstyled;
-}
-
-// Inline turns list items into inline-block
-.list-inline {
- @include list-unstyled;
-}
-.list-inline-item {
- display: inline-block;
-
- &:not(:last-child) {
- margin-right: $list-inline-padding;
- }
-}
-
-
-//
-// Misc
-//
-
-// Builds on `abbr`
-.initialism {
- font-size: 90%;
- text-transform: uppercase;
-}
-
-// Blockquotes
-.blockquote {
- margin-bottom: $spacer;
- font-size: $blockquote-font-size;
-}
-
-.blockquote-footer {
- display: block;
- font-size: 80%; // back to default font-size
- color: $blockquote-small-color;
-
- &::before {
- content: "\2014 \00A0"; // em dash, nbsp
- }
-}
diff --git a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/_utilities.scss b/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/_utilities.scss
deleted file mode 100644
index 6c7a7cd..0000000
--- a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/_utilities.scss
+++ /dev/null
@@ -1,15 +0,0 @@
-@import "utilities/align";
-@import "utilities/background";
-@import "utilities/borders";
-@import "utilities/clearfix";
-@import "utilities/display";
-@import "utilities/embed";
-@import "utilities/flex";
-@import "utilities/float";
-@import "utilities/position";
-@import "utilities/screenreaders";
-@import "utilities/shadows";
-@import "utilities/sizing";
-@import "utilities/spacing";
-@import "utilities/text";
-@import "utilities/visibility";
diff --git a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/_variables.scss b/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/_variables.scss
deleted file mode 100644
index 5cf118f..0000000
--- a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/_variables.scss
+++ /dev/null
@@ -1,952 +0,0 @@
-// Variables
-//
-// Variables should follow the `$component-state-property-size` formula for
-// consistent naming. Ex: $nav-link-disabled-color and $modal-content-box-shadow-xs.
-
-
-//
-// Color system
-//
-
-$white: #fff !default;
-$gray-100: #f8f9fa !default;
-$gray-200: #e9ecef !default;
-$gray-300: #dee2e6 !default;
-$gray-400: #ced4da !default;
-$gray-500: #adb5bd !default;
-$gray-600: #6c757d !default;
-$gray-700: #495057 !default;
-$gray-800: #343a40 !default;
-$gray-900: #212529 !default;
-$black: #000 !default;
-
-$grays: () !default;
-// stylelint-disable-next-line scss/dollar-variable-default
-$grays: map-merge(
- (
- "100": $gray-100,
- "200": $gray-200,
- "300": $gray-300,
- "400": $gray-400,
- "500": $gray-500,
- "600": $gray-600,
- "700": $gray-700,
- "800": $gray-800,
- "900": $gray-900
- ),
- $grays
-);
-
-
-$blue: #007bff !default;
-$indigo: #6610f2 !default;
-$purple: #6f42c1 !default;
-$pink: #e83e8c !default;
-$red: #dc3545 !default;
-$orange: #fd7e14 !default;
-$yellow: #ffc107 !default;
-$green: #28a745 !default;
-$teal: #20c997 !default;
-$cyan: #17a2b8 !default;
-
-$colors: () !default;
-// stylelint-disable-next-line scss/dollar-variable-default
-$colors: map-merge(
- (
- "blue": $blue,
- "indigo": $indigo,
- "purple": $purple,
- "pink": $pink,
- "red": $red,
- "orange": $orange,
- "yellow": $yellow,
- "green": $green,
- "teal": $teal,
- "cyan": $cyan,
- "white": $white,
- "gray": $gray-600,
- "gray-dark": $gray-800
- ),
- $colors
-);
-
-$primary: $blue !default;
-$secondary: $gray-600 !default;
-$success: $green !default;
-$info: $cyan !default;
-$warning: $yellow !default;
-$danger: $red !default;
-$light: $gray-100 !default;
-$dark: $gray-800 !default;
-
-$theme-colors: () !default;
-// stylelint-disable-next-line scss/dollar-variable-default
-$theme-colors: map-merge(
- (
- "primary": $primary,
- "secondary": $secondary,
- "success": $success,
- "info": $info,
- "warning": $warning,
- "danger": $danger,
- "light": $light,
- "dark": $dark
- ),
- $theme-colors
-);
-
-// Set a specific jump point for requesting color jumps
-$theme-color-interval: 8% !default;
-
-// The yiq lightness value that determines when the lightness of color changes from "dark" to "light". Acceptable values are between 0 and 255.
-$yiq-contrasted-threshold: 150 !default;
-
-// Customize the light and dark text colors for use in our YIQ color contrast function.
-$yiq-text-dark: $gray-900 !default;
-$yiq-text-light: $white !default;
-
-// Options
-//
-// Quickly modify global styling by enabling or disabling optional features.
-
-$enable-caret: true !default;
-$enable-rounded: true !default;
-$enable-shadows: false !default;
-$enable-gradients: false !default;
-$enable-transitions: true !default;
-$enable-hover-media-query: false !default; // Deprecated, no longer affects any compiled CSS
-$enable-grid-classes: true !default;
-$enable-print-styles: true !default;
-
-
-// Spacing
-//
-// Control the default styling of most Bootstrap elements by modifying these
-// variables. Mostly focused on spacing.
-// You can add more entries to the $spacers map, should you need more variation.
-
-$spacer: 1rem !default;
-$spacers: () !default;
-// stylelint-disable-next-line scss/dollar-variable-default
-$spacers: map-merge(
- (
- 0: 0,
- 1: ($spacer * .25),
- 2: ($spacer * .5),
- 3: $spacer,
- 4: ($spacer * 1.5),
- 5: ($spacer * 3)
- ),
- $spacers
-);
-
-// This variable affects the `.h-*` and `.w-*` classes.
-$sizes: () !default;
-// stylelint-disable-next-line scss/dollar-variable-default
-$sizes: map-merge(
- (
- 25: 25%,
- 50: 50%,
- 75: 75%,
- 100: 100%,
- auto: auto
- ),
- $sizes
-);
-
-// Body
-//
-// Settings for the `` element.
-
-$body-bg: $white !default;
-$body-color: $gray-900 !default;
-
-// Links
-//
-// Style anchor elements.
-
-$link-color: theme-color("primary") !default;
-$link-decoration: none !default;
-$link-hover-color: darken($link-color, 15%) !default;
-$link-hover-decoration: underline !default;
-
-// Paragraphs
-//
-// Style p element.
-
-$paragraph-margin-bottom: 1rem !default;
-
-
-// Grid breakpoints
-//
-// Define the minimum dimensions at which your layout will change,
-// adapting to different screen sizes, for use in media queries.
-
-$grid-breakpoints: (
- xs: 0,
- sm: 576px,
- md: 768px,
- lg: 992px,
- xl: 1200px
-) !default;
-
-@include _assert-ascending($grid-breakpoints, "$grid-breakpoints");
-@include _assert-starts-at-zero($grid-breakpoints);
-
-
-// Grid containers
-//
-// Define the maximum width of `.container` for different screen sizes.
-
-$container-max-widths: (
- sm: 540px,
- md: 720px,
- lg: 960px,
- xl: 1140px
-) !default;
-
-@include _assert-ascending($container-max-widths, "$container-max-widths");
-
-
-// Grid columns
-//
-// Set the number of columns and specify the width of the gutters.
-
-$grid-columns: 12 !default;
-$grid-gutter-width: 30px !default;
-
-// Components
-//
-// Define common padding and border radius sizes and more.
-
-$line-height-lg: 1.5 !default;
-$line-height-sm: 1.5 !default;
-
-$border-width: 1px !default;
-$border-color: $gray-300 !default;
-
-$border-radius: .25rem !default;
-$border-radius-lg: .3rem !default;
-$border-radius-sm: .2rem !default;
-
-$box-shadow-sm: 0 .125rem .25rem rgba($black, .075) !default;
-$box-shadow: 0 .5rem 1rem rgba($black, .15) !default;
-$box-shadow-lg: 0 1rem 3rem rgba($black, .175) !default;
-
-$component-active-color: $white !default;
-$component-active-bg: theme-color("primary") !default;
-
-$caret-width: .3em !default;
-
-$transition-base: all .2s ease-in-out !default;
-$transition-fade: opacity .15s linear !default;
-$transition-collapse: height .35s ease !default;
-
-
-// Fonts
-//
-// Font, line-height, and color for body text, headings, and more.
-
-// stylelint-disable value-keyword-case
-$font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !default;
-$font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !default;
-$font-family-base: $font-family-sans-serif !default;
-// stylelint-enable value-keyword-case
-
-$font-size-base: 1rem !default; // Assumes the browser default, typically `16px`
-$font-size-lg: ($font-size-base * 1.25) !default;
-$font-size-sm: ($font-size-base * .875) !default;
-
-$font-weight-light: 300 !default;
-$font-weight-normal: 400 !default;
-$font-weight-bold: 700 !default;
-
-$font-weight-base: $font-weight-normal !default;
-$line-height-base: 1.5 !default;
-
-$h1-font-size: $font-size-base * 2.5 !default;
-$h2-font-size: $font-size-base * 2 !default;
-$h3-font-size: $font-size-base * 1.75 !default;
-$h4-font-size: $font-size-base * 1.5 !default;
-$h5-font-size: $font-size-base * 1.25 !default;
-$h6-font-size: $font-size-base !default;
-
-$headings-margin-bottom: ($spacer / 2) !default;
-$headings-font-family: inherit !default;
-$headings-font-weight: 500 !default;
-$headings-line-height: 1.2 !default;
-$headings-color: inherit !default;
-
-$display1-size: 6rem !default;
-$display2-size: 5.5rem !default;
-$display3-size: 4.5rem !default;
-$display4-size: 3.5rem !default;
-
-$display1-weight: 300 !default;
-$display2-weight: 300 !default;
-$display3-weight: 300 !default;
-$display4-weight: 300 !default;
-$display-line-height: $headings-line-height !default;
-
-$lead-font-size: ($font-size-base * 1.25) !default;
-$lead-font-weight: 300 !default;
-
-$small-font-size: 80% !default;
-
-$text-muted: $gray-600 !default;
-
-$blockquote-small-color: $gray-600 !default;
-$blockquote-font-size: ($font-size-base * 1.25) !default;
-
-$hr-border-color: rgba($black, .1) !default;
-$hr-border-width: $border-width !default;
-
-$mark-padding: .2em !default;
-
-$dt-font-weight: $font-weight-bold !default;
-
-$kbd-box-shadow: inset 0 -.1rem 0 rgba($black, .25) !default;
-$nested-kbd-font-weight: $font-weight-bold !default;
-
-$list-inline-padding: .5rem !default;
-
-$mark-bg: #fcf8e3 !default;
-
-$hr-margin-y: $spacer !default;
-
-
-// Tables
-//
-// Customizes the `.table` component with basic values, each used across all table variations.
-
-$table-cell-padding: .75rem !default;
-$table-cell-padding-sm: .3rem !default;
-
-$table-bg: transparent !default;
-$table-accent-bg: rgba($black, .05) !default;
-$table-hover-bg: rgba($black, .075) !default;
-$table-active-bg: $table-hover-bg !default;
-
-$table-border-width: $border-width !default;
-$table-border-color: $gray-300 !default;
-
-$table-head-bg: $gray-200 !default;
-$table-head-color: $gray-700 !default;
-
-$table-dark-bg: $gray-900 !default;
-$table-dark-accent-bg: rgba($white, .05) !default;
-$table-dark-hover-bg: rgba($white, .075) !default;
-$table-dark-border-color: lighten($gray-900, 7.5%) !default;
-$table-dark-color: $body-bg !default;
-
-$table-striped-order: odd !default;
-
-$table-caption-color: $text-muted !default;
-
-// Buttons + Forms
-//
-// Shared variables that are reassigned to `$input-` and `$btn-` specific variables.
-
-$input-btn-padding-y: .375rem !default;
-$input-btn-padding-x: .75rem !default;
-$input-btn-line-height: $line-height-base !default;
-
-$input-btn-focus-width: .2rem !default;
-$input-btn-focus-color: rgba($component-active-bg, .25) !default;
-$input-btn-focus-box-shadow: 0 0 0 $input-btn-focus-width $input-btn-focus-color !default;
-
-$input-btn-padding-y-sm: .25rem !default;
-$input-btn-padding-x-sm: .5rem !default;
-$input-btn-line-height-sm: $line-height-sm !default;
-
-$input-btn-padding-y-lg: .5rem !default;
-$input-btn-padding-x-lg: 1rem !default;
-$input-btn-line-height-lg: $line-height-lg !default;
-
-$input-btn-border-width: $border-width !default;
-
-
-// Buttons
-//
-// For each of Bootstrap's buttons, define text, background, and border color.
-
-$btn-padding-y: $input-btn-padding-y !default;
-$btn-padding-x: $input-btn-padding-x !default;
-$btn-line-height: $input-btn-line-height !default;
-
-$btn-padding-y-sm: $input-btn-padding-y-sm !default;
-$btn-padding-x-sm: $input-btn-padding-x-sm !default;
-$btn-line-height-sm: $input-btn-line-height-sm !default;
-
-$btn-padding-y-lg: $input-btn-padding-y-lg !default;
-$btn-padding-x-lg: $input-btn-padding-x-lg !default;
-$btn-line-height-lg: $input-btn-line-height-lg !default;
-
-$btn-border-width: $input-btn-border-width !default;
-
-$btn-font-weight: $font-weight-normal !default;
-$btn-box-shadow: inset 0 1px 0 rgba($white, .15), 0 1px 1px rgba($black, .075) !default;
-$btn-focus-width: $input-btn-focus-width !default;
-$btn-focus-box-shadow: $input-btn-focus-box-shadow !default;
-$btn-disabled-opacity: .65 !default;
-$btn-active-box-shadow: inset 0 3px 5px rgba($black, .125) !default;
-
-$btn-link-disabled-color: $gray-600 !default;
-
-$btn-block-spacing-y: .5rem !default;
-
-// Allows for customizing button radius independently from global border radius
-$btn-border-radius: $border-radius !default;
-$btn-border-radius-lg: $border-radius-lg !default;
-$btn-border-radius-sm: $border-radius-sm !default;
-
-$btn-transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out !default;
-
-
-// Forms
-
-$label-margin-bottom: .5rem !default;
-
-$input-padding-y: $input-btn-padding-y !default;
-$input-padding-x: $input-btn-padding-x !default;
-$input-line-height: $input-btn-line-height !default;
-
-$input-padding-y-sm: $input-btn-padding-y-sm !default;
-$input-padding-x-sm: $input-btn-padding-x-sm !default;
-$input-line-height-sm: $input-btn-line-height-sm !default;
-
-$input-padding-y-lg: $input-btn-padding-y-lg !default;
-$input-padding-x-lg: $input-btn-padding-x-lg !default;
-$input-line-height-lg: $input-btn-line-height-lg !default;
-
-$input-bg: $white !default;
-$input-disabled-bg: $gray-200 !default;
-
-$input-color: $gray-700 !default;
-$input-border-color: $gray-400 !default;
-$input-border-width: $input-btn-border-width !default;
-$input-box-shadow: inset 0 1px 1px rgba($black, .075) !default;
-
-$input-border-radius: $border-radius !default;
-$input-border-radius-lg: $border-radius-lg !default;
-$input-border-radius-sm: $border-radius-sm !default;
-
-$input-focus-bg: $input-bg !default;
-$input-focus-border-color: lighten($component-active-bg, 25%) !default;
-$input-focus-color: $input-color !default;
-$input-focus-width: $input-btn-focus-width !default;
-$input-focus-box-shadow: $input-btn-focus-box-shadow !default;
-
-$input-placeholder-color: $gray-600 !default;
-$input-plaintext-color: $body-color !default;
-
-$input-height-border: $input-border-width * 2 !default;
-
-$input-height-inner: ($font-size-base * $input-btn-line-height) + ($input-btn-padding-y * 2) !default;
-$input-height: calc(#{$input-height-inner} + #{$input-height-border}) !default;
-
-$input-height-inner-sm: ($font-size-sm * $input-btn-line-height-sm) + ($input-btn-padding-y-sm * 2) !default;
-$input-height-sm: calc(#{$input-height-inner-sm} + #{$input-height-border}) !default;
-
-$input-height-inner-lg: ($font-size-lg * $input-btn-line-height-lg) + ($input-btn-padding-y-lg * 2) !default;
-$input-height-lg: calc(#{$input-height-inner-lg} + #{$input-height-border}) !default;
-
-$input-transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out !default;
-
-$form-text-margin-top: .25rem !default;
-
-$form-check-input-gutter: 1.25rem !default;
-$form-check-input-margin-y: .3rem !default;
-$form-check-input-margin-x: .25rem !default;
-
-$form-check-inline-margin-x: .75rem !default;
-$form-check-inline-input-margin-x: .3125rem !default;
-
-$form-group-margin-bottom: 1rem !default;
-
-$input-group-addon-color: $input-color !default;
-$input-group-addon-bg: $gray-200 !default;
-$input-group-addon-border-color: $input-border-color !default;
-
-$custom-forms-transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out !default;
-
-$custom-control-gutter: 1.5rem !default;
-$custom-control-spacer-x: 1rem !default;
-
-$custom-control-indicator-size: 1rem !default;
-$custom-control-indicator-bg: $gray-300 !default;
-$custom-control-indicator-bg-size: 50% 50% !default;
-$custom-control-indicator-box-shadow: inset 0 .25rem .25rem rgba($black, .1) !default;
-
-$custom-control-indicator-disabled-bg: $gray-200 !default;
-$custom-control-label-disabled-color: $gray-600 !default;
-
-$custom-control-indicator-checked-color: $component-active-color !default;
-$custom-control-indicator-checked-bg: $component-active-bg !default;
-$custom-control-indicator-checked-disabled-bg: rgba(theme-color("primary"), .5) !default;
-$custom-control-indicator-checked-box-shadow: none !default;
-
-$custom-control-indicator-focus-box-shadow: 0 0 0 1px $body-bg, $input-btn-focus-box-shadow !default;
-
-$custom-control-indicator-active-color: $component-active-color !default;
-$custom-control-indicator-active-bg: lighten($component-active-bg, 35%) !default;
-$custom-control-indicator-active-box-shadow: none !default;
-
-$custom-checkbox-indicator-border-radius: $border-radius !default;
-$custom-checkbox-indicator-icon-checked: str-replace(url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='#{$custom-control-indicator-checked-color}' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E"), "#", "%23") !default;
-
-$custom-checkbox-indicator-indeterminate-bg: $component-active-bg !default;
-$custom-checkbox-indicator-indeterminate-color: $custom-control-indicator-checked-color !default;
-$custom-checkbox-indicator-icon-indeterminate: str-replace(url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3E%3Cpath stroke='#{$custom-checkbox-indicator-indeterminate-color}' d='M0 2h4'/%3E%3C/svg%3E"), "#", "%23") !default;
-$custom-checkbox-indicator-indeterminate-box-shadow: none !default;
-
-$custom-radio-indicator-border-radius: 50% !default;
-$custom-radio-indicator-icon-checked: str-replace(url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='#{$custom-control-indicator-checked-color}'/%3E%3C/svg%3E"), "#", "%23") !default;
-
-$custom-select-padding-y: .375rem !default;
-$custom-select-padding-x: .75rem !default;
-$custom-select-height: $input-height !default;
-$custom-select-indicator-padding: 1rem !default; // Extra padding to account for the presence of the background-image based indicator
-$custom-select-line-height: $input-btn-line-height !default;
-$custom-select-color: $input-color !default;
-$custom-select-disabled-color: $gray-600 !default;
-$custom-select-bg: $input-bg !default;
-$custom-select-disabled-bg: $gray-200 !default;
-$custom-select-bg-size: 8px 10px !default; // In pixels because image dimensions
-$custom-select-indicator-color: $gray-800 !default;
-$custom-select-indicator: str-replace(url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='#{$custom-select-indicator-color}' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E"), "#", "%23") !default;
-$custom-select-border-width: $input-btn-border-width !default;
-$custom-select-border-color: $input-border-color !default;
-$custom-select-border-radius: $border-radius !default;
-$custom-select-box-shadow: inset 0 1px 2px rgba($black, .075) !default;
-
-$custom-select-focus-border-color: $input-focus-border-color !default;
-$custom-select-focus-width: $input-btn-focus-width !default;
-$custom-select-focus-box-shadow: 0 0 0 $custom-select-focus-width rgba($custom-select-focus-border-color, .5) !default;
-
-$custom-select-font-size-sm: 75% !default;
-$custom-select-height-sm: $input-height-sm !default;
-
-$custom-select-font-size-lg: 125% !default;
-$custom-select-height-lg: $input-height-lg !default;
-
-$custom-range-track-width: 100% !default;
-$custom-range-track-height: .5rem !default;
-$custom-range-track-cursor: pointer !default;
-$custom-range-track-bg: $gray-300 !default;
-$custom-range-track-border-radius: 1rem !default;
-$custom-range-track-box-shadow: inset 0 .25rem .25rem rgba($black, .1) !default;
-
-$custom-range-thumb-width: 1rem !default;
-$custom-range-thumb-height: $custom-range-thumb-width !default;
-$custom-range-thumb-bg: $component-active-bg !default;
-$custom-range-thumb-border: 0 !default;
-$custom-range-thumb-border-radius: 1rem !default;
-$custom-range-thumb-box-shadow: 0 .1rem .25rem rgba($black, .1) !default;
-$custom-range-thumb-focus-box-shadow: 0 0 0 1px $body-bg, $input-btn-focus-box-shadow !default;
-$custom-range-thumb-focus-box-shadow-width: $input-btn-focus-width !default; // For focus box shadow issue in IE/Edge
-$custom-range-thumb-active-bg: lighten($component-active-bg, 35%) !default;
-
-$custom-file-height: $input-height !default;
-$custom-file-height-inner: $input-height-inner !default;
-$custom-file-focus-border-color: $input-focus-border-color !default;
-$custom-file-focus-box-shadow: $input-btn-focus-box-shadow !default;
-$custom-file-disabled-bg: $input-disabled-bg !default;
-
-$custom-file-padding-y: $input-btn-padding-y !default;
-$custom-file-padding-x: $input-btn-padding-x !default;
-$custom-file-line-height: $input-btn-line-height !default;
-$custom-file-color: $input-color !default;
-$custom-file-bg: $input-bg !default;
-$custom-file-border-width: $input-btn-border-width !default;
-$custom-file-border-color: $input-border-color !default;
-$custom-file-border-radius: $input-border-radius !default;
-$custom-file-box-shadow: $input-box-shadow !default;
-$custom-file-button-color: $custom-file-color !default;
-$custom-file-button-bg: $input-group-addon-bg !default;
-$custom-file-text: (
- en: "Browse"
-) !default;
-
-
-// Form validation
-$form-feedback-margin-top: $form-text-margin-top !default;
-$form-feedback-font-size: $small-font-size !default;
-$form-feedback-valid-color: theme-color("success") !default;
-$form-feedback-invalid-color: theme-color("danger") !default;
-
-
-// Dropdowns
-//
-// Dropdown menu container and contents.
-
-$dropdown-min-width: 10rem !default;
-$dropdown-padding-y: .5rem !default;
-$dropdown-spacer: .125rem !default;
-$dropdown-bg: $white !default;
-$dropdown-border-color: rgba($black, .15) !default;
-$dropdown-border-radius: $border-radius !default;
-$dropdown-border-width: $border-width !default;
-$dropdown-divider-bg: $gray-200 !default;
-$dropdown-box-shadow: 0 .5rem 1rem rgba($black, .175) !default;
-
-$dropdown-link-color: $gray-900 !default;
-$dropdown-link-hover-color: darken($gray-900, 5%) !default;
-$dropdown-link-hover-bg: $gray-100 !default;
-
-$dropdown-link-active-color: $component-active-color !default;
-$dropdown-link-active-bg: $component-active-bg !default;
-
-$dropdown-link-disabled-color: $gray-600 !default;
-
-$dropdown-item-padding-y: .25rem !default;
-$dropdown-item-padding-x: 1.5rem !default;
-
-$dropdown-header-color: $gray-600 !default;
-
-
-// Z-index master list
-//
-// Warning: Avoid customizing these values. They're used for a bird's eye view
-// of components dependent on the z-axis and are designed to all work together.
-
-$zindex-dropdown: 1000 !default;
-$zindex-sticky: 1020 !default;
-$zindex-fixed: 1030 !default;
-$zindex-modal-backdrop: 1040 !default;
-$zindex-modal: 1050 !default;
-$zindex-popover: 1060 !default;
-$zindex-tooltip: 1070 !default;
-
-// Navs
-
-$nav-link-padding-y: .5rem !default;
-$nav-link-padding-x: 1rem !default;
-$nav-link-disabled-color: $gray-600 !default;
-
-$nav-tabs-border-color: $gray-300 !default;
-$nav-tabs-border-width: $border-width !default;
-$nav-tabs-border-radius: $border-radius !default;
-$nav-tabs-link-hover-border-color: $gray-200 $gray-200 $nav-tabs-border-color !default;
-$nav-tabs-link-active-color: $gray-700 !default;
-$nav-tabs-link-active-bg: $body-bg !default;
-$nav-tabs-link-active-border-color: $gray-300 $gray-300 $nav-tabs-link-active-bg !default;
-
-$nav-pills-border-radius: $border-radius !default;
-$nav-pills-link-active-color: $component-active-color !default;
-$nav-pills-link-active-bg: $component-active-bg !default;
-
-$nav-divider-color: $gray-200 !default;
-$nav-divider-margin-y: ($spacer / 2) !default;
-
-// Navbar
-
-$navbar-padding-y: ($spacer / 2) !default;
-$navbar-padding-x: $spacer !default;
-
-$navbar-nav-link-padding-x: .5rem !default;
-
-$navbar-brand-font-size: $font-size-lg !default;
-// Compute the navbar-brand padding-y so the navbar-brand will have the same height as navbar-text and nav-link
-$nav-link-height: ($font-size-base * $line-height-base + $nav-link-padding-y * 2) !default;
-$navbar-brand-height: $navbar-brand-font-size * $line-height-base !default;
-$navbar-brand-padding-y: ($nav-link-height - $navbar-brand-height) / 2 !default;
-
-$navbar-toggler-padding-y: .25rem !default;
-$navbar-toggler-padding-x: .75rem !default;
-$navbar-toggler-font-size: $font-size-lg !default;
-$navbar-toggler-border-radius: $btn-border-radius !default;
-
-$navbar-dark-color: rgba($white, .5) !default;
-$navbar-dark-hover-color: rgba($white, .75) !default;
-$navbar-dark-active-color: $white !default;
-$navbar-dark-disabled-color: rgba($white, .25) !default;
-$navbar-dark-toggler-icon-bg: str-replace(url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='#{$navbar-dark-color}' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E"), "#", "%23") !default;
-$navbar-dark-toggler-border-color: rgba($white, .1) !default;
-
-$navbar-light-color: rgba($black, .5) !default;
-$navbar-light-hover-color: rgba($black, .7) !default;
-$navbar-light-active-color: rgba($black, .9) !default;
-$navbar-light-disabled-color: rgba($black, .3) !default;
-$navbar-light-toggler-icon-bg: str-replace(url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='#{$navbar-light-color}' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E"), "#", "%23") !default;
-$navbar-light-toggler-border-color: rgba($black, .1) !default;
-
-// Pagination
-
-$pagination-padding-y: .5rem !default;
-$pagination-padding-x: .75rem !default;
-$pagination-padding-y-sm: .25rem !default;
-$pagination-padding-x-sm: .5rem !default;
-$pagination-padding-y-lg: .75rem !default;
-$pagination-padding-x-lg: 1.5rem !default;
-$pagination-line-height: 1.25 !default;
-
-$pagination-color: $link-color !default;
-$pagination-bg: $white !default;
-$pagination-border-width: $border-width !default;
-$pagination-border-color: $gray-300 !default;
-
-$pagination-focus-box-shadow: $input-btn-focus-box-shadow !default;
-$pagination-focus-outline: 0 !default;
-
-$pagination-hover-color: $link-hover-color !default;
-$pagination-hover-bg: $gray-200 !default;
-$pagination-hover-border-color: $gray-300 !default;
-
-$pagination-active-color: $component-active-color !default;
-$pagination-active-bg: $component-active-bg !default;
-$pagination-active-border-color: $pagination-active-bg !default;
-
-$pagination-disabled-color: $gray-600 !default;
-$pagination-disabled-bg: $white !default;
-$pagination-disabled-border-color: $gray-300 !default;
-
-
-// Jumbotron
-
-$jumbotron-padding: 2rem !default;
-$jumbotron-bg: $gray-200 !default;
-
-
-// Cards
-
-$card-spacer-y: .75rem !default;
-$card-spacer-x: 1.25rem !default;
-$card-border-width: $border-width !default;
-$card-border-radius: $border-radius !default;
-$card-border-color: rgba($black, .125) !default;
-$card-inner-border-radius: calc(#{$card-border-radius} - #{$card-border-width}) !default;
-$card-cap-bg: rgba($black, .03) !default;
-$card-bg: $white !default;
-
-$card-img-overlay-padding: 1.25rem !default;
-
-$card-group-margin: ($grid-gutter-width / 2) !default;
-$card-deck-margin: $card-group-margin !default;
-
-$card-columns-count: 3 !default;
-$card-columns-gap: 1.25rem !default;
-$card-columns-margin: $card-spacer-y !default;
-
-
-// Tooltips
-
-$tooltip-font-size: $font-size-sm !default;
-$tooltip-max-width: 200px !default;
-$tooltip-color: $white !default;
-$tooltip-bg: $black !default;
-$tooltip-border-radius: $border-radius !default;
-$tooltip-opacity: .9 !default;
-$tooltip-padding-y: .25rem !default;
-$tooltip-padding-x: .5rem !default;
-$tooltip-margin: 0 !default;
-
-$tooltip-arrow-width: .8rem !default;
-$tooltip-arrow-height: .4rem !default;
-$tooltip-arrow-color: $tooltip-bg !default;
-
-
-// Popovers
-
-$popover-font-size: $font-size-sm !default;
-$popover-bg: $white !default;
-$popover-max-width: 276px !default;
-$popover-border-width: $border-width !default;
-$popover-border-color: rgba($black, .2) !default;
-$popover-border-radius: $border-radius-lg !default;
-$popover-box-shadow: 0 .25rem .5rem rgba($black, .2) !default;
-
-$popover-header-bg: darken($popover-bg, 3%) !default;
-$popover-header-color: $headings-color !default;
-$popover-header-padding-y: .5rem !default;
-$popover-header-padding-x: .75rem !default;
-
-$popover-body-color: $body-color !default;
-$popover-body-padding-y: $popover-header-padding-y !default;
-$popover-body-padding-x: $popover-header-padding-x !default;
-
-$popover-arrow-width: 1rem !default;
-$popover-arrow-height: .5rem !default;
-$popover-arrow-color: $popover-bg !default;
-
-$popover-arrow-outer-color: fade-in($popover-border-color, .05) !default;
-
-
-// Badges
-
-$badge-font-size: 75% !default;
-$badge-font-weight: $font-weight-bold !default;
-$badge-padding-y: .25em !default;
-$badge-padding-x: .4em !default;
-$badge-border-radius: $border-radius !default;
-
-$badge-pill-padding-x: .6em !default;
-// Use a higher than normal value to ensure completely rounded edges when
-// customizing padding or font-size on labels.
-$badge-pill-border-radius: 10rem !default;
-
-
-// Modals
-
-// Padding applied to the modal body
-$modal-inner-padding: 1rem !default;
-
-$modal-dialog-margin: .5rem !default;
-$modal-dialog-margin-y-sm-up: 1.75rem !default;
-
-$modal-title-line-height: $line-height-base !default;
-
-$modal-content-bg: $white !default;
-$modal-content-border-color: rgba($black, .2) !default;
-$modal-content-border-width: $border-width !default;
-$modal-content-border-radius: $border-radius-lg !default;
-$modal-content-box-shadow-xs: 0 .25rem .5rem rgba($black, .5) !default;
-$modal-content-box-shadow-sm-up: 0 .5rem 1rem rgba($black, .5) !default;
-
-$modal-backdrop-bg: $black !default;
-$modal-backdrop-opacity: .5 !default;
-$modal-header-border-color: $gray-200 !default;
-$modal-footer-border-color: $modal-header-border-color !default;
-$modal-header-border-width: $modal-content-border-width !default;
-$modal-footer-border-width: $modal-header-border-width !default;
-$modal-header-padding: 1rem !default;
-
-$modal-lg: 800px !default;
-$modal-md: 500px !default;
-$modal-sm: 300px !default;
-
-$modal-transition: transform .3s ease-out !default;
-
-
-// Alerts
-//
-// Define alert colors, border radius, and padding.
-
-$alert-padding-y: .75rem !default;
-$alert-padding-x: 1.25rem !default;
-$alert-margin-bottom: 1rem !default;
-$alert-border-radius: $border-radius !default;
-$alert-link-font-weight: $font-weight-bold !default;
-$alert-border-width: $border-width !default;
-
-$alert-bg-level: -10 !default;
-$alert-border-level: -9 !default;
-$alert-color-level: 6 !default;
-
-
-// Progress bars
-
-$progress-height: 1rem !default;
-$progress-font-size: ($font-size-base * .75) !default;
-$progress-bg: $gray-200 !default;
-$progress-border-radius: $border-radius !default;
-$progress-box-shadow: inset 0 .1rem .1rem rgba($black, .1) !default;
-$progress-bar-color: $white !default;
-$progress-bar-bg: theme-color("primary") !default;
-$progress-bar-animation-timing: 1s linear infinite !default;
-$progress-bar-transition: width .6s ease !default;
-
-// List group
-
-$list-group-bg: $white !default;
-$list-group-border-color: rgba($black, .125) !default;
-$list-group-border-width: $border-width !default;
-$list-group-border-radius: $border-radius !default;
-
-$list-group-item-padding-y: .75rem !default;
-$list-group-item-padding-x: 1.25rem !default;
-
-$list-group-hover-bg: $gray-100 !default;
-$list-group-active-color: $component-active-color !default;
-$list-group-active-bg: $component-active-bg !default;
-$list-group-active-border-color: $list-group-active-bg !default;
-
-$list-group-disabled-color: $gray-600 !default;
-$list-group-disabled-bg: $list-group-bg !default;
-
-$list-group-action-color: $gray-700 !default;
-$list-group-action-hover-color: $list-group-action-color !default;
-
-$list-group-action-active-color: $body-color !default;
-$list-group-action-active-bg: $gray-200 !default;
-
-
-// Image thumbnails
-
-$thumbnail-padding: .25rem !default;
-$thumbnail-bg: $body-bg !default;
-$thumbnail-border-width: $border-width !default;
-$thumbnail-border-color: $gray-300 !default;
-$thumbnail-border-radius: $border-radius !default;
-$thumbnail-box-shadow: 0 1px 2px rgba($black, .075) !default;
-
-
-// Figures
-
-$figure-caption-font-size: 90% !default;
-$figure-caption-color: $gray-600 !default;
-
-
-// Breadcrumbs
-
-$breadcrumb-padding-y: .75rem !default;
-$breadcrumb-padding-x: 1rem !default;
-$breadcrumb-item-padding: .5rem !default;
-
-$breadcrumb-margin-bottom: 1rem !default;
-
-$breadcrumb-bg: $gray-200 !default;
-$breadcrumb-divider-color: $gray-600 !default;
-$breadcrumb-active-color: $gray-600 !default;
-$breadcrumb-divider: quote("/") !default;
-
-$breadcrumb-border-radius: $border-radius !default;
-
-
-// Carousel
-
-$carousel-control-color: $white !default;
-$carousel-control-width: 15% !default;
-$carousel-control-opacity: .5 !default;
-
-$carousel-indicator-width: 30px !default;
-$carousel-indicator-height: 3px !default;
-$carousel-indicator-spacer: 3px !default;
-$carousel-indicator-active-bg: $white !default;
-
-$carousel-caption-width: 70% !default;
-$carousel-caption-color: $white !default;
-
-$carousel-control-icon-width: 20px !default;
-
-$carousel-control-prev-icon-bg: str-replace(url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='#{$carousel-control-color}' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E"), "#", "%23") !default;
-$carousel-control-next-icon-bg: str-replace(url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='#{$carousel-control-color}' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E"), "#", "%23") !default;
-
-$carousel-transition: transform .6s ease !default; // Define transform transition first if using multiple transitions (e.g., `transform 2s ease, opacity .5s ease-out`)
-
-
-// Close
-
-$close-font-size: $font-size-base * 1.5 !default;
-$close-font-weight: $font-weight-bold !default;
-$close-color: $black !default;
-$close-text-shadow: 0 1px 0 $white !default;
-
-// Code
-
-$code-font-size: 87.5% !default;
-$code-color: $pink !default;
-
-$kbd-padding-y: .2rem !default;
-$kbd-padding-x: .4rem !default;
-$kbd-font-size: $code-font-size !default;
-$kbd-color: $white !default;
-$kbd-bg: $gray-900 !default;
-
-$pre-color: $gray-900 !default;
-$pre-scrollable-max-height: 340px !default;
-
-
-// Printing
-$print-page-size: a3 !default;
-$print-body-min-width: map-get($grid-breakpoints, "lg") !default;
diff --git a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/bootstrap-grid.css b/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/bootstrap-grid.css
deleted file mode 100644
index 32861da..0000000
--- a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/bootstrap-grid.css
+++ /dev/null
@@ -1,1435 +0,0 @@
-/*!
- * Bootstrap Grid v4.1.3 (https://getbootstrap.com/)
- * Copyright 2011-2018 The Bootstrap Authors
- * Copyright 2011-2018 Twitter, Inc.
- * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
- */
-@-ms-viewport {
- width: device-width; }
-html {
- box-sizing: border-box;
- -ms-overflow-style: scrollbar; }
-
-*,
-*::before,
-*::after {
- box-sizing: inherit; }
-
-.container {
- width: 100%;
- padding-right: 15px;
- padding-left: 15px;
- margin-right: auto;
- margin-left: auto; }
- @media (min-width: 576px) {
- .container {
- max-width: 540px; } }
- @media (min-width: 768px) {
- .container {
- max-width: 720px; } }
- @media (min-width: 992px) {
- .container {
- max-width: 960px; } }
- @media (min-width: 1200px) {
- .container {
- max-width: 1140px; } }
-
-.container-fluid {
- width: 100%;
- padding-right: 15px;
- padding-left: 15px;
- margin-right: auto;
- margin-left: auto; }
-
-.row {
- display: flex;
- flex-wrap: wrap;
- margin-right: -15px;
- margin-left: -15px; }
-
-.no-gutters {
- margin-right: 0;
- margin-left: 0; }
- .no-gutters > .col,
- .no-gutters > [class*="col-"] {
- padding-right: 0;
- padding-left: 0; }
-
-.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col,
-.col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm,
-.col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md,
-.col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg,
-.col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl,
-.col-xl-auto {
- position: relative;
- width: 100%;
- min-height: 1px;
- padding-right: 15px;
- padding-left: 15px; }
-
-.col {
- flex-basis: 0;
- flex-grow: 1;
- max-width: 100%; }
-
-.col-auto {
- flex: 0 0 auto;
- width: auto;
- max-width: none; }
-
-.col-1 {
- flex: 0 0 8.3333333333%;
- max-width: 8.3333333333%; }
-
-.col-2 {
- flex: 0 0 16.6666666667%;
- max-width: 16.6666666667%; }
-
-.col-3 {
- flex: 0 0 25%;
- max-width: 25%; }
-
-.col-4 {
- flex: 0 0 33.3333333333%;
- max-width: 33.3333333333%; }
-
-.col-5 {
- flex: 0 0 41.6666666667%;
- max-width: 41.6666666667%; }
-
-.col-6 {
- flex: 0 0 50%;
- max-width: 50%; }
-
-.col-7 {
- flex: 0 0 58.3333333333%;
- max-width: 58.3333333333%; }
-
-.col-8 {
- flex: 0 0 66.6666666667%;
- max-width: 66.6666666667%; }
-
-.col-9 {
- flex: 0 0 75%;
- max-width: 75%; }
-
-.col-10 {
- flex: 0 0 83.3333333333%;
- max-width: 83.3333333333%; }
-
-.col-11 {
- flex: 0 0 91.6666666667%;
- max-width: 91.6666666667%; }
-
-.col-12 {
- flex: 0 0 100%;
- max-width: 100%; }
-
-.order-first {
- order: -1; }
-
-.order-last {
- order: 13; }
-
-.order-0 {
- order: 0; }
-
-.order-1 {
- order: 1; }
-
-.order-2 {
- order: 2; }
-
-.order-3 {
- order: 3; }
-
-.order-4 {
- order: 4; }
-
-.order-5 {
- order: 5; }
-
-.order-6 {
- order: 6; }
-
-.order-7 {
- order: 7; }
-
-.order-8 {
- order: 8; }
-
-.order-9 {
- order: 9; }
-
-.order-10 {
- order: 10; }
-
-.order-11 {
- order: 11; }
-
-.order-12 {
- order: 12; }
-
-.offset-1 {
- margin-left: 8.3333333333%; }
-
-.offset-2 {
- margin-left: 16.6666666667%; }
-
-.offset-3 {
- margin-left: 25%; }
-
-.offset-4 {
- margin-left: 33.3333333333%; }
-
-.offset-5 {
- margin-left: 41.6666666667%; }
-
-.offset-6 {
- margin-left: 50%; }
-
-.offset-7 {
- margin-left: 58.3333333333%; }
-
-.offset-8 {
- margin-left: 66.6666666667%; }
-
-.offset-9 {
- margin-left: 75%; }
-
-.offset-10 {
- margin-left: 83.3333333333%; }
-
-.offset-11 {
- margin-left: 91.6666666667%; }
-
-@media (min-width: 576px) {
- .col-sm {
- flex-basis: 0;
- flex-grow: 1;
- max-width: 100%; }
-
- .col-sm-auto {
- flex: 0 0 auto;
- width: auto;
- max-width: none; }
-
- .col-sm-1 {
- flex: 0 0 8.3333333333%;
- max-width: 8.3333333333%; }
-
- .col-sm-2 {
- flex: 0 0 16.6666666667%;
- max-width: 16.6666666667%; }
-
- .col-sm-3 {
- flex: 0 0 25%;
- max-width: 25%; }
-
- .col-sm-4 {
- flex: 0 0 33.3333333333%;
- max-width: 33.3333333333%; }
-
- .col-sm-5 {
- flex: 0 0 41.6666666667%;
- max-width: 41.6666666667%; }
-
- .col-sm-6 {
- flex: 0 0 50%;
- max-width: 50%; }
-
- .col-sm-7 {
- flex: 0 0 58.3333333333%;
- max-width: 58.3333333333%; }
-
- .col-sm-8 {
- flex: 0 0 66.6666666667%;
- max-width: 66.6666666667%; }
-
- .col-sm-9 {
- flex: 0 0 75%;
- max-width: 75%; }
-
- .col-sm-10 {
- flex: 0 0 83.3333333333%;
- max-width: 83.3333333333%; }
-
- .col-sm-11 {
- flex: 0 0 91.6666666667%;
- max-width: 91.6666666667%; }
-
- .col-sm-12 {
- flex: 0 0 100%;
- max-width: 100%; }
-
- .order-sm-first {
- order: -1; }
-
- .order-sm-last {
- order: 13; }
-
- .order-sm-0 {
- order: 0; }
-
- .order-sm-1 {
- order: 1; }
-
- .order-sm-2 {
- order: 2; }
-
- .order-sm-3 {
- order: 3; }
-
- .order-sm-4 {
- order: 4; }
-
- .order-sm-5 {
- order: 5; }
-
- .order-sm-6 {
- order: 6; }
-
- .order-sm-7 {
- order: 7; }
-
- .order-sm-8 {
- order: 8; }
-
- .order-sm-9 {
- order: 9; }
-
- .order-sm-10 {
- order: 10; }
-
- .order-sm-11 {
- order: 11; }
-
- .order-sm-12 {
- order: 12; }
-
- .offset-sm-0 {
- margin-left: 0; }
-
- .offset-sm-1 {
- margin-left: 8.3333333333%; }
-
- .offset-sm-2 {
- margin-left: 16.6666666667%; }
-
- .offset-sm-3 {
- margin-left: 25%; }
-
- .offset-sm-4 {
- margin-left: 33.3333333333%; }
-
- .offset-sm-5 {
- margin-left: 41.6666666667%; }
-
- .offset-sm-6 {
- margin-left: 50%; }
-
- .offset-sm-7 {
- margin-left: 58.3333333333%; }
-
- .offset-sm-8 {
- margin-left: 66.6666666667%; }
-
- .offset-sm-9 {
- margin-left: 75%; }
-
- .offset-sm-10 {
- margin-left: 83.3333333333%; }
-
- .offset-sm-11 {
- margin-left: 91.6666666667%; } }
-@media (min-width: 768px) {
- .col-md {
- flex-basis: 0;
- flex-grow: 1;
- max-width: 100%; }
-
- .col-md-auto {
- flex: 0 0 auto;
- width: auto;
- max-width: none; }
-
- .col-md-1 {
- flex: 0 0 8.3333333333%;
- max-width: 8.3333333333%; }
-
- .col-md-2 {
- flex: 0 0 16.6666666667%;
- max-width: 16.6666666667%; }
-
- .col-md-3 {
- flex: 0 0 25%;
- max-width: 25%; }
-
- .col-md-4 {
- flex: 0 0 33.3333333333%;
- max-width: 33.3333333333%; }
-
- .col-md-5 {
- flex: 0 0 41.6666666667%;
- max-width: 41.6666666667%; }
-
- .col-md-6 {
- flex: 0 0 50%;
- max-width: 50%; }
-
- .col-md-7 {
- flex: 0 0 58.3333333333%;
- max-width: 58.3333333333%; }
-
- .col-md-8 {
- flex: 0 0 66.6666666667%;
- max-width: 66.6666666667%; }
-
- .col-md-9 {
- flex: 0 0 75%;
- max-width: 75%; }
-
- .col-md-10 {
- flex: 0 0 83.3333333333%;
- max-width: 83.3333333333%; }
-
- .col-md-11 {
- flex: 0 0 91.6666666667%;
- max-width: 91.6666666667%; }
-
- .col-md-12 {
- flex: 0 0 100%;
- max-width: 100%; }
-
- .order-md-first {
- order: -1; }
-
- .order-md-last {
- order: 13; }
-
- .order-md-0 {
- order: 0; }
-
- .order-md-1 {
- order: 1; }
-
- .order-md-2 {
- order: 2; }
-
- .order-md-3 {
- order: 3; }
-
- .order-md-4 {
- order: 4; }
-
- .order-md-5 {
- order: 5; }
-
- .order-md-6 {
- order: 6; }
-
- .order-md-7 {
- order: 7; }
-
- .order-md-8 {
- order: 8; }
-
- .order-md-9 {
- order: 9; }
-
- .order-md-10 {
- order: 10; }
-
- .order-md-11 {
- order: 11; }
-
- .order-md-12 {
- order: 12; }
-
- .offset-md-0 {
- margin-left: 0; }
-
- .offset-md-1 {
- margin-left: 8.3333333333%; }
-
- .offset-md-2 {
- margin-left: 16.6666666667%; }
-
- .offset-md-3 {
- margin-left: 25%; }
-
- .offset-md-4 {
- margin-left: 33.3333333333%; }
-
- .offset-md-5 {
- margin-left: 41.6666666667%; }
-
- .offset-md-6 {
- margin-left: 50%; }
-
- .offset-md-7 {
- margin-left: 58.3333333333%; }
-
- .offset-md-8 {
- margin-left: 66.6666666667%; }
-
- .offset-md-9 {
- margin-left: 75%; }
-
- .offset-md-10 {
- margin-left: 83.3333333333%; }
-
- .offset-md-11 {
- margin-left: 91.6666666667%; } }
-@media (min-width: 992px) {
- .col-lg {
- flex-basis: 0;
- flex-grow: 1;
- max-width: 100%; }
-
- .col-lg-auto {
- flex: 0 0 auto;
- width: auto;
- max-width: none; }
-
- .col-lg-1 {
- flex: 0 0 8.3333333333%;
- max-width: 8.3333333333%; }
-
- .col-lg-2 {
- flex: 0 0 16.6666666667%;
- max-width: 16.6666666667%; }
-
- .col-lg-3 {
- flex: 0 0 25%;
- max-width: 25%; }
-
- .col-lg-4 {
- flex: 0 0 33.3333333333%;
- max-width: 33.3333333333%; }
-
- .col-lg-5 {
- flex: 0 0 41.6666666667%;
- max-width: 41.6666666667%; }
-
- .col-lg-6 {
- flex: 0 0 50%;
- max-width: 50%; }
-
- .col-lg-7 {
- flex: 0 0 58.3333333333%;
- max-width: 58.3333333333%; }
-
- .col-lg-8 {
- flex: 0 0 66.6666666667%;
- max-width: 66.6666666667%; }
-
- .col-lg-9 {
- flex: 0 0 75%;
- max-width: 75%; }
-
- .col-lg-10 {
- flex: 0 0 83.3333333333%;
- max-width: 83.3333333333%; }
-
- .col-lg-11 {
- flex: 0 0 91.6666666667%;
- max-width: 91.6666666667%; }
-
- .col-lg-12 {
- flex: 0 0 100%;
- max-width: 100%; }
-
- .order-lg-first {
- order: -1; }
-
- .order-lg-last {
- order: 13; }
-
- .order-lg-0 {
- order: 0; }
-
- .order-lg-1 {
- order: 1; }
-
- .order-lg-2 {
- order: 2; }
-
- .order-lg-3 {
- order: 3; }
-
- .order-lg-4 {
- order: 4; }
-
- .order-lg-5 {
- order: 5; }
-
- .order-lg-6 {
- order: 6; }
-
- .order-lg-7 {
- order: 7; }
-
- .order-lg-8 {
- order: 8; }
-
- .order-lg-9 {
- order: 9; }
-
- .order-lg-10 {
- order: 10; }
-
- .order-lg-11 {
- order: 11; }
-
- .order-lg-12 {
- order: 12; }
-
- .offset-lg-0 {
- margin-left: 0; }
-
- .offset-lg-1 {
- margin-left: 8.3333333333%; }
-
- .offset-lg-2 {
- margin-left: 16.6666666667%; }
-
- .offset-lg-3 {
- margin-left: 25%; }
-
- .offset-lg-4 {
- margin-left: 33.3333333333%; }
-
- .offset-lg-5 {
- margin-left: 41.6666666667%; }
-
- .offset-lg-6 {
- margin-left: 50%; }
-
- .offset-lg-7 {
- margin-left: 58.3333333333%; }
-
- .offset-lg-8 {
- margin-left: 66.6666666667%; }
-
- .offset-lg-9 {
- margin-left: 75%; }
-
- .offset-lg-10 {
- margin-left: 83.3333333333%; }
-
- .offset-lg-11 {
- margin-left: 91.6666666667%; } }
-@media (min-width: 1200px) {
- .col-xl {
- flex-basis: 0;
- flex-grow: 1;
- max-width: 100%; }
-
- .col-xl-auto {
- flex: 0 0 auto;
- width: auto;
- max-width: none; }
-
- .col-xl-1 {
- flex: 0 0 8.3333333333%;
- max-width: 8.3333333333%; }
-
- .col-xl-2 {
- flex: 0 0 16.6666666667%;
- max-width: 16.6666666667%; }
-
- .col-xl-3 {
- flex: 0 0 25%;
- max-width: 25%; }
-
- .col-xl-4 {
- flex: 0 0 33.3333333333%;
- max-width: 33.3333333333%; }
-
- .col-xl-5 {
- flex: 0 0 41.6666666667%;
- max-width: 41.6666666667%; }
-
- .col-xl-6 {
- flex: 0 0 50%;
- max-width: 50%; }
-
- .col-xl-7 {
- flex: 0 0 58.3333333333%;
- max-width: 58.3333333333%; }
-
- .col-xl-8 {
- flex: 0 0 66.6666666667%;
- max-width: 66.6666666667%; }
-
- .col-xl-9 {
- flex: 0 0 75%;
- max-width: 75%; }
-
- .col-xl-10 {
- flex: 0 0 83.3333333333%;
- max-width: 83.3333333333%; }
-
- .col-xl-11 {
- flex: 0 0 91.6666666667%;
- max-width: 91.6666666667%; }
-
- .col-xl-12 {
- flex: 0 0 100%;
- max-width: 100%; }
-
- .order-xl-first {
- order: -1; }
-
- .order-xl-last {
- order: 13; }
-
- .order-xl-0 {
- order: 0; }
-
- .order-xl-1 {
- order: 1; }
-
- .order-xl-2 {
- order: 2; }
-
- .order-xl-3 {
- order: 3; }
-
- .order-xl-4 {
- order: 4; }
-
- .order-xl-5 {
- order: 5; }
-
- .order-xl-6 {
- order: 6; }
-
- .order-xl-7 {
- order: 7; }
-
- .order-xl-8 {
- order: 8; }
-
- .order-xl-9 {
- order: 9; }
-
- .order-xl-10 {
- order: 10; }
-
- .order-xl-11 {
- order: 11; }
-
- .order-xl-12 {
- order: 12; }
-
- .offset-xl-0 {
- margin-left: 0; }
-
- .offset-xl-1 {
- margin-left: 8.3333333333%; }
-
- .offset-xl-2 {
- margin-left: 16.6666666667%; }
-
- .offset-xl-3 {
- margin-left: 25%; }
-
- .offset-xl-4 {
- margin-left: 33.3333333333%; }
-
- .offset-xl-5 {
- margin-left: 41.6666666667%; }
-
- .offset-xl-6 {
- margin-left: 50%; }
-
- .offset-xl-7 {
- margin-left: 58.3333333333%; }
-
- .offset-xl-8 {
- margin-left: 66.6666666667%; }
-
- .offset-xl-9 {
- margin-left: 75%; }
-
- .offset-xl-10 {
- margin-left: 83.3333333333%; }
-
- .offset-xl-11 {
- margin-left: 91.6666666667%; } }
-.d-none {
- display: none !important; }
-
-.d-inline {
- display: inline !important; }
-
-.d-inline-block {
- display: inline-block !important; }
-
-.d-block {
- display: block !important; }
-
-.d-table {
- display: table !important; }
-
-.d-table-row {
- display: table-row !important; }
-
-.d-table-cell {
- display: table-cell !important; }
-
-.d-flex {
- display: flex !important; }
-
-.d-inline-flex {
- display: inline-flex !important; }
-
-@media (min-width: 576px) {
- .d-sm-none {
- display: none !important; }
-
- .d-sm-inline {
- display: inline !important; }
-
- .d-sm-inline-block {
- display: inline-block !important; }
-
- .d-sm-block {
- display: block !important; }
-
- .d-sm-table {
- display: table !important; }
-
- .d-sm-table-row {
- display: table-row !important; }
-
- .d-sm-table-cell {
- display: table-cell !important; }
-
- .d-sm-flex {
- display: flex !important; }
-
- .d-sm-inline-flex {
- display: inline-flex !important; } }
-@media (min-width: 768px) {
- .d-md-none {
- display: none !important; }
-
- .d-md-inline {
- display: inline !important; }
-
- .d-md-inline-block {
- display: inline-block !important; }
-
- .d-md-block {
- display: block !important; }
-
- .d-md-table {
- display: table !important; }
-
- .d-md-table-row {
- display: table-row !important; }
-
- .d-md-table-cell {
- display: table-cell !important; }
-
- .d-md-flex {
- display: flex !important; }
-
- .d-md-inline-flex {
- display: inline-flex !important; } }
-@media (min-width: 992px) {
- .d-lg-none {
- display: none !important; }
-
- .d-lg-inline {
- display: inline !important; }
-
- .d-lg-inline-block {
- display: inline-block !important; }
-
- .d-lg-block {
- display: block !important; }
-
- .d-lg-table {
- display: table !important; }
-
- .d-lg-table-row {
- display: table-row !important; }
-
- .d-lg-table-cell {
- display: table-cell !important; }
-
- .d-lg-flex {
- display: flex !important; }
-
- .d-lg-inline-flex {
- display: inline-flex !important; } }
-@media (min-width: 1200px) {
- .d-xl-none {
- display: none !important; }
-
- .d-xl-inline {
- display: inline !important; }
-
- .d-xl-inline-block {
- display: inline-block !important; }
-
- .d-xl-block {
- display: block !important; }
-
- .d-xl-table {
- display: table !important; }
-
- .d-xl-table-row {
- display: table-row !important; }
-
- .d-xl-table-cell {
- display: table-cell !important; }
-
- .d-xl-flex {
- display: flex !important; }
-
- .d-xl-inline-flex {
- display: inline-flex !important; } }
-@media print {
- .d-print-none {
- display: none !important; }
-
- .d-print-inline {
- display: inline !important; }
-
- .d-print-inline-block {
- display: inline-block !important; }
-
- .d-print-block {
- display: block !important; }
-
- .d-print-table {
- display: table !important; }
-
- .d-print-table-row {
- display: table-row !important; }
-
- .d-print-table-cell {
- display: table-cell !important; }
-
- .d-print-flex {
- display: flex !important; }
-
- .d-print-inline-flex {
- display: inline-flex !important; } }
-.flex-row {
- flex-direction: row !important; }
-
-.flex-column {
- flex-direction: column !important; }
-
-.flex-row-reverse {
- flex-direction: row-reverse !important; }
-
-.flex-column-reverse {
- flex-direction: column-reverse !important; }
-
-.flex-wrap {
- flex-wrap: wrap !important; }
-
-.flex-nowrap {
- flex-wrap: nowrap !important; }
-
-.flex-wrap-reverse {
- flex-wrap: wrap-reverse !important; }
-
-.flex-fill {
- flex: 1 1 auto !important; }
-
-.flex-grow-0 {
- flex-grow: 0 !important; }
-
-.flex-grow-1 {
- flex-grow: 1 !important; }
-
-.flex-shrink-0 {
- flex-shrink: 0 !important; }
-
-.flex-shrink-1 {
- flex-shrink: 1 !important; }
-
-.justify-content-start {
- justify-content: flex-start !important; }
-
-.justify-content-end {
- justify-content: flex-end !important; }
-
-.justify-content-center {
- justify-content: center !important; }
-
-.justify-content-between {
- justify-content: space-between !important; }
-
-.justify-content-around {
- justify-content: space-around !important; }
-
-.align-items-start {
- align-items: flex-start !important; }
-
-.align-items-end {
- align-items: flex-end !important; }
-
-.align-items-center {
- align-items: center !important; }
-
-.align-items-baseline {
- align-items: baseline !important; }
-
-.align-items-stretch {
- align-items: stretch !important; }
-
-.align-content-start {
- align-content: flex-start !important; }
-
-.align-content-end {
- align-content: flex-end !important; }
-
-.align-content-center {
- align-content: center !important; }
-
-.align-content-between {
- align-content: space-between !important; }
-
-.align-content-around {
- align-content: space-around !important; }
-
-.align-content-stretch {
- align-content: stretch !important; }
-
-.align-self-auto {
- align-self: auto !important; }
-
-.align-self-start {
- align-self: flex-start !important; }
-
-.align-self-end {
- align-self: flex-end !important; }
-
-.align-self-center {
- align-self: center !important; }
-
-.align-self-baseline {
- align-self: baseline !important; }
-
-.align-self-stretch {
- align-self: stretch !important; }
-
-@media (min-width: 576px) {
- .flex-sm-row {
- flex-direction: row !important; }
-
- .flex-sm-column {
- flex-direction: column !important; }
-
- .flex-sm-row-reverse {
- flex-direction: row-reverse !important; }
-
- .flex-sm-column-reverse {
- flex-direction: column-reverse !important; }
-
- .flex-sm-wrap {
- flex-wrap: wrap !important; }
-
- .flex-sm-nowrap {
- flex-wrap: nowrap !important; }
-
- .flex-sm-wrap-reverse {
- flex-wrap: wrap-reverse !important; }
-
- .flex-sm-fill {
- flex: 1 1 auto !important; }
-
- .flex-sm-grow-0 {
- flex-grow: 0 !important; }
-
- .flex-sm-grow-1 {
- flex-grow: 1 !important; }
-
- .flex-sm-shrink-0 {
- flex-shrink: 0 !important; }
-
- .flex-sm-shrink-1 {
- flex-shrink: 1 !important; }
-
- .justify-content-sm-start {
- justify-content: flex-start !important; }
-
- .justify-content-sm-end {
- justify-content: flex-end !important; }
-
- .justify-content-sm-center {
- justify-content: center !important; }
-
- .justify-content-sm-between {
- justify-content: space-between !important; }
-
- .justify-content-sm-around {
- justify-content: space-around !important; }
-
- .align-items-sm-start {
- align-items: flex-start !important; }
-
- .align-items-sm-end {
- align-items: flex-end !important; }
-
- .align-items-sm-center {
- align-items: center !important; }
-
- .align-items-sm-baseline {
- align-items: baseline !important; }
-
- .align-items-sm-stretch {
- align-items: stretch !important; }
-
- .align-content-sm-start {
- align-content: flex-start !important; }
-
- .align-content-sm-end {
- align-content: flex-end !important; }
-
- .align-content-sm-center {
- align-content: center !important; }
-
- .align-content-sm-between {
- align-content: space-between !important; }
-
- .align-content-sm-around {
- align-content: space-around !important; }
-
- .align-content-sm-stretch {
- align-content: stretch !important; }
-
- .align-self-sm-auto {
- align-self: auto !important; }
-
- .align-self-sm-start {
- align-self: flex-start !important; }
-
- .align-self-sm-end {
- align-self: flex-end !important; }
-
- .align-self-sm-center {
- align-self: center !important; }
-
- .align-self-sm-baseline {
- align-self: baseline !important; }
-
- .align-self-sm-stretch {
- align-self: stretch !important; } }
-@media (min-width: 768px) {
- .flex-md-row {
- flex-direction: row !important; }
-
- .flex-md-column {
- flex-direction: column !important; }
-
- .flex-md-row-reverse {
- flex-direction: row-reverse !important; }
-
- .flex-md-column-reverse {
- flex-direction: column-reverse !important; }
-
- .flex-md-wrap {
- flex-wrap: wrap !important; }
-
- .flex-md-nowrap {
- flex-wrap: nowrap !important; }
-
- .flex-md-wrap-reverse {
- flex-wrap: wrap-reverse !important; }
-
- .flex-md-fill {
- flex: 1 1 auto !important; }
-
- .flex-md-grow-0 {
- flex-grow: 0 !important; }
-
- .flex-md-grow-1 {
- flex-grow: 1 !important; }
-
- .flex-md-shrink-0 {
- flex-shrink: 0 !important; }
-
- .flex-md-shrink-1 {
- flex-shrink: 1 !important; }
-
- .justify-content-md-start {
- justify-content: flex-start !important; }
-
- .justify-content-md-end {
- justify-content: flex-end !important; }
-
- .justify-content-md-center {
- justify-content: center !important; }
-
- .justify-content-md-between {
- justify-content: space-between !important; }
-
- .justify-content-md-around {
- justify-content: space-around !important; }
-
- .align-items-md-start {
- align-items: flex-start !important; }
-
- .align-items-md-end {
- align-items: flex-end !important; }
-
- .align-items-md-center {
- align-items: center !important; }
-
- .align-items-md-baseline {
- align-items: baseline !important; }
-
- .align-items-md-stretch {
- align-items: stretch !important; }
-
- .align-content-md-start {
- align-content: flex-start !important; }
-
- .align-content-md-end {
- align-content: flex-end !important; }
-
- .align-content-md-center {
- align-content: center !important; }
-
- .align-content-md-between {
- align-content: space-between !important; }
-
- .align-content-md-around {
- align-content: space-around !important; }
-
- .align-content-md-stretch {
- align-content: stretch !important; }
-
- .align-self-md-auto {
- align-self: auto !important; }
-
- .align-self-md-start {
- align-self: flex-start !important; }
-
- .align-self-md-end {
- align-self: flex-end !important; }
-
- .align-self-md-center {
- align-self: center !important; }
-
- .align-self-md-baseline {
- align-self: baseline !important; }
-
- .align-self-md-stretch {
- align-self: stretch !important; } }
-@media (min-width: 992px) {
- .flex-lg-row {
- flex-direction: row !important; }
-
- .flex-lg-column {
- flex-direction: column !important; }
-
- .flex-lg-row-reverse {
- flex-direction: row-reverse !important; }
-
- .flex-lg-column-reverse {
- flex-direction: column-reverse !important; }
-
- .flex-lg-wrap {
- flex-wrap: wrap !important; }
-
- .flex-lg-nowrap {
- flex-wrap: nowrap !important; }
-
- .flex-lg-wrap-reverse {
- flex-wrap: wrap-reverse !important; }
-
- .flex-lg-fill {
- flex: 1 1 auto !important; }
-
- .flex-lg-grow-0 {
- flex-grow: 0 !important; }
-
- .flex-lg-grow-1 {
- flex-grow: 1 !important; }
-
- .flex-lg-shrink-0 {
- flex-shrink: 0 !important; }
-
- .flex-lg-shrink-1 {
- flex-shrink: 1 !important; }
-
- .justify-content-lg-start {
- justify-content: flex-start !important; }
-
- .justify-content-lg-end {
- justify-content: flex-end !important; }
-
- .justify-content-lg-center {
- justify-content: center !important; }
-
- .justify-content-lg-between {
- justify-content: space-between !important; }
-
- .justify-content-lg-around {
- justify-content: space-around !important; }
-
- .align-items-lg-start {
- align-items: flex-start !important; }
-
- .align-items-lg-end {
- align-items: flex-end !important; }
-
- .align-items-lg-center {
- align-items: center !important; }
-
- .align-items-lg-baseline {
- align-items: baseline !important; }
-
- .align-items-lg-stretch {
- align-items: stretch !important; }
-
- .align-content-lg-start {
- align-content: flex-start !important; }
-
- .align-content-lg-end {
- align-content: flex-end !important; }
-
- .align-content-lg-center {
- align-content: center !important; }
-
- .align-content-lg-between {
- align-content: space-between !important; }
-
- .align-content-lg-around {
- align-content: space-around !important; }
-
- .align-content-lg-stretch {
- align-content: stretch !important; }
-
- .align-self-lg-auto {
- align-self: auto !important; }
-
- .align-self-lg-start {
- align-self: flex-start !important; }
-
- .align-self-lg-end {
- align-self: flex-end !important; }
-
- .align-self-lg-center {
- align-self: center !important; }
-
- .align-self-lg-baseline {
- align-self: baseline !important; }
-
- .align-self-lg-stretch {
- align-self: stretch !important; } }
-@media (min-width: 1200px) {
- .flex-xl-row {
- flex-direction: row !important; }
-
- .flex-xl-column {
- flex-direction: column !important; }
-
- .flex-xl-row-reverse {
- flex-direction: row-reverse !important; }
-
- .flex-xl-column-reverse {
- flex-direction: column-reverse !important; }
-
- .flex-xl-wrap {
- flex-wrap: wrap !important; }
-
- .flex-xl-nowrap {
- flex-wrap: nowrap !important; }
-
- .flex-xl-wrap-reverse {
- flex-wrap: wrap-reverse !important; }
-
- .flex-xl-fill {
- flex: 1 1 auto !important; }
-
- .flex-xl-grow-0 {
- flex-grow: 0 !important; }
-
- .flex-xl-grow-1 {
- flex-grow: 1 !important; }
-
- .flex-xl-shrink-0 {
- flex-shrink: 0 !important; }
-
- .flex-xl-shrink-1 {
- flex-shrink: 1 !important; }
-
- .justify-content-xl-start {
- justify-content: flex-start !important; }
-
- .justify-content-xl-end {
- justify-content: flex-end !important; }
-
- .justify-content-xl-center {
- justify-content: center !important; }
-
- .justify-content-xl-between {
- justify-content: space-between !important; }
-
- .justify-content-xl-around {
- justify-content: space-around !important; }
-
- .align-items-xl-start {
- align-items: flex-start !important; }
-
- .align-items-xl-end {
- align-items: flex-end !important; }
-
- .align-items-xl-center {
- align-items: center !important; }
-
- .align-items-xl-baseline {
- align-items: baseline !important; }
-
- .align-items-xl-stretch {
- align-items: stretch !important; }
-
- .align-content-xl-start {
- align-content: flex-start !important; }
-
- .align-content-xl-end {
- align-content: flex-end !important; }
-
- .align-content-xl-center {
- align-content: center !important; }
-
- .align-content-xl-between {
- align-content: space-between !important; }
-
- .align-content-xl-around {
- align-content: space-around !important; }
-
- .align-content-xl-stretch {
- align-content: stretch !important; }
-
- .align-self-xl-auto {
- align-self: auto !important; }
-
- .align-self-xl-start {
- align-self: flex-start !important; }
-
- .align-self-xl-end {
- align-self: flex-end !important; }
-
- .align-self-xl-center {
- align-self: center !important; }
-
- .align-self-xl-baseline {
- align-self: baseline !important; }
-
- .align-self-xl-stretch {
- align-self: stretch !important; } }
-
-/*# sourceMappingURL=bootstrap-grid.css.map */
diff --git a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/bootstrap-grid.css.map b/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/bootstrap-grid.css.map
deleted file mode 100644
index ca99e6e..0000000
--- a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/bootstrap-grid.css.map
+++ /dev/null
@@ -1,7 +0,0 @@
-{
-"version": 3,
-"mappings": "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",
-"sources": ["bootstrap-grid.scss","_grid.scss","mixins/_grid.scss","mixins/_breakpoints.scss","_functions.scss","mixins/_grid-framework.scss","utilities/_display.scss","utilities/_flex.scss"],
-"names": [],
-"file": "bootstrap-grid.css"
-}
\ No newline at end of file
diff --git a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/bootstrap-grid.scss b/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/bootstrap-grid.scss
deleted file mode 100644
index 509171d..0000000
--- a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/bootstrap-grid.scss
+++ /dev/null
@@ -1,32 +0,0 @@
-/*!
- * Bootstrap Grid v4.1.3 (https://getbootstrap.com/)
- * Copyright 2011-2018 The Bootstrap Authors
- * Copyright 2011-2018 Twitter, Inc.
- * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
- */
-
-@at-root {
- @-ms-viewport { width: device-width; } // stylelint-disable-line at-rule-no-vendor-prefix
-}
-
-html {
- box-sizing: border-box;
- -ms-overflow-style: scrollbar;
-}
-
-*,
-*::before,
-*::after {
- box-sizing: inherit;
-}
-
-@import "functions";
-@import "variables";
-
-@import "mixins/breakpoints";
-@import "mixins/grid-framework";
-@import "mixins/grid";
-
-@import "grid";
-@import "utilities/display";
-@import "utilities/flex";
diff --git a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/bootstrap-reboot.css b/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/bootstrap-reboot.css
deleted file mode 100644
index 9be92eb..0000000
--- a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/bootstrap-reboot.css
+++ /dev/null
@@ -1,270 +0,0 @@
-/*!
- * Bootstrap Reboot v4.1.3 (https://getbootstrap.com/)
- * Copyright 2011-2018 The Bootstrap Authors
- * Copyright 2011-2018 Twitter, Inc.
- * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
- * Forked from Normalize.css, licensed MIT (https://github.com/necolas/normalize.css/blob/master/LICENSE.md)
- */
-*,
-*::before,
-*::after {
- box-sizing: border-box; }
-
-html {
- font-family: sans-serif;
- line-height: 1.15;
- -webkit-text-size-adjust: 100%;
- -ms-text-size-adjust: 100%;
- -ms-overflow-style: scrollbar;
- -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }
-
-@-ms-viewport {
- width: device-width; }
-article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
- display: block; }
-
-body {
- margin: 0;
- font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
- font-size: 1rem;
- font-weight: 400;
- line-height: 1.5;
- color: #212529;
- text-align: left;
- background-color: #fff; }
-
-[tabindex="-1"]:focus {
- outline: 0 !important; }
-
-hr {
- box-sizing: content-box;
- height: 0;
- overflow: visible; }
-
-h1, h2, h3, h4, h5, h6 {
- margin-top: 0;
- margin-bottom: 0.5rem; }
-
-p {
- margin-top: 0;
- margin-bottom: 1rem; }
-
-abbr[title],
-abbr[data-original-title] {
- text-decoration: underline;
- text-decoration: underline dotted;
- cursor: help;
- border-bottom: 0; }
-
-address {
- margin-bottom: 1rem;
- font-style: normal;
- line-height: inherit; }
-
-ol,
-ul,
-dl {
- margin-top: 0;
- margin-bottom: 1rem; }
-
-ol ol,
-ul ul,
-ol ul,
-ul ol {
- margin-bottom: 0; }
-
-dt {
- font-weight: 700; }
-
-dd {
- margin-bottom: .5rem;
- margin-left: 0; }
-
-blockquote {
- margin: 0 0 1rem; }
-
-dfn {
- font-style: italic; }
-
-b,
-strong {
- font-weight: bolder; }
-
-small {
- font-size: 80%; }
-
-sub,
-sup {
- position: relative;
- font-size: 75%;
- line-height: 0;
- vertical-align: baseline; }
-
-sub {
- bottom: -.25em; }
-
-sup {
- top: -.5em; }
-
-a {
- color: #007bff;
- text-decoration: none;
- background-color: transparent;
- -webkit-text-decoration-skip: objects; }
- a:hover {
- color: #0056b3;
- text-decoration: underline; }
-
-a:not([href]):not([tabindex]) {
- color: inherit;
- text-decoration: none; }
- a:not([href]):not([tabindex]):hover, a:not([href]):not([tabindex]):focus {
- color: inherit;
- text-decoration: none; }
- a:not([href]):not([tabindex]):focus {
- outline: 0; }
-
-pre,
-code,
-kbd,
-samp {
- font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
- font-size: 1em; }
-
-pre {
- margin-top: 0;
- margin-bottom: 1rem;
- overflow: auto;
- -ms-overflow-style: scrollbar; }
-
-figure {
- margin: 0 0 1rem; }
-
-img {
- vertical-align: middle;
- border-style: none; }
-
-svg {
- overflow: hidden;
- vertical-align: middle; }
-
-table {
- border-collapse: collapse; }
-
-caption {
- padding-top: 0.75rem;
- padding-bottom: 0.75rem;
- color: #6c757d;
- text-align: left;
- caption-side: bottom; }
-
-th {
- text-align: inherit; }
-
-label {
- display: inline-block;
- margin-bottom: 0.5rem; }
-
-button {
- border-radius: 0; }
-
-button:focus {
- outline: 1px dotted;
- outline: 5px auto -webkit-focus-ring-color; }
-
-input,
-button,
-select,
-optgroup,
-textarea {
- margin: 0;
- font-family: inherit;
- font-size: inherit;
- line-height: inherit; }
-
-button,
-input {
- overflow: visible; }
-
-button,
-select {
- text-transform: none; }
-
-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 {
- padding: 0;
- border-style: none; }
-
-input[type="radio"],
-input[type="checkbox"] {
- box-sizing: border-box;
- padding: 0; }
-
-input[type="date"],
-input[type="time"],
-input[type="datetime-local"],
-input[type="month"] {
- -webkit-appearance: listbox; }
-
-textarea {
- overflow: auto;
- resize: vertical; }
-
-fieldset {
- min-width: 0;
- padding: 0;
- margin: 0;
- border: 0; }
-
-legend {
- display: block;
- width: 100%;
- max-width: 100%;
- padding: 0;
- margin-bottom: .5rem;
- font-size: 1.5rem;
- line-height: inherit;
- color: inherit;
- white-space: normal; }
-
-progress {
- vertical-align: baseline; }
-
-[type="number"]::-webkit-inner-spin-button,
-[type="number"]::-webkit-outer-spin-button {
- height: auto; }
-
-[type="search"] {
- outline-offset: -2px;
- -webkit-appearance: none; }
-
-[type="search"]::-webkit-search-cancel-button,
-[type="search"]::-webkit-search-decoration {
- -webkit-appearance: none; }
-
-::-webkit-file-upload-button {
- font: inherit;
- -webkit-appearance: button; }
-
-output {
- display: inline-block; }
-
-summary {
- display: list-item;
- cursor: pointer; }
-
-template {
- display: none; }
-
-[hidden] {
- display: none !important; }
-
-/*# sourceMappingURL=bootstrap-reboot.css.map */
diff --git a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/bootstrap-reboot.css.map b/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/bootstrap-reboot.css.map
deleted file mode 100644
index 6fb8d52..0000000
--- a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/bootstrap-reboot.css.map
+++ /dev/null
@@ -1,7 +0,0 @@
-{
-"version": 3,
-"mappings": "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",
-"sources": ["bootstrap-reboot.scss","_reboot.scss","_variables.scss","mixins/_hover.scss"],
-"names": [],
-"file": "bootstrap-reboot.css"
-}
\ No newline at end of file
diff --git a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/bootstrap-reboot.scss b/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/bootstrap-reboot.scss
deleted file mode 100644
index 75baeb7..0000000
--- a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/bootstrap-reboot.scss
+++ /dev/null
@@ -1,12 +0,0 @@
-/*!
- * Bootstrap Reboot v4.1.3 (https://getbootstrap.com/)
- * Copyright 2011-2018 The Bootstrap Authors
- * Copyright 2011-2018 Twitter, Inc.
- * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
- * Forked from Normalize.css, licensed MIT (https://github.com/necolas/normalize.css/blob/master/LICENSE.md)
- */
-
-@import "functions";
-@import "variables";
-@import "mixins";
-@import "reboot";
diff --git a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/bootstrap.css b/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/bootstrap.css
deleted file mode 100644
index e51a332..0000000
--- a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/bootstrap.css
+++ /dev/null
@@ -1,6784 +0,0 @@
-/*!
- * Bootstrap v4.1.3 (https://getbootstrap.com/)
- * Copyright 2011-2018 The Bootstrap Authors
- * Copyright 2011-2018 Twitter, Inc.
- * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
- */
-:root {
- --blue: #007bff;
- --indigo: #6610f2;
- --purple: #6f42c1;
- --pink: #e83e8c;
- --red: #dc3545;
- --orange: #fd7e14;
- --yellow: #ffc107;
- --green: #28a745;
- --teal: #20c997;
- --cyan: #17a2b8;
- --white: #fff;
- --gray: #6c757d;
- --gray-dark: #343a40;
- --primary: #007bff;
- --secondary: #6c757d;
- --success: #28a745;
- --info: #17a2b8;
- --warning: #ffc107;
- --danger: #dc3545;
- --light: #f8f9fa;
- --dark: #343a40;
- --breakpoint-xs: 0;
- --breakpoint-sm: 576px;
- --breakpoint-md: 768px;
- --breakpoint-lg: 992px;
- --breakpoint-xl: 1200px;
- --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
- --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; }
-
-*,
-*::before,
-*::after {
- box-sizing: border-box; }
-
-html {
- font-family: sans-serif;
- line-height: 1.15;
- -webkit-text-size-adjust: 100%;
- -ms-text-size-adjust: 100%;
- -ms-overflow-style: scrollbar;
- -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }
-
-@-ms-viewport {
- width: device-width; }
-article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
- display: block; }
-
-body {
- margin: 0;
- font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
- font-size: 1rem;
- font-weight: 400;
- line-height: 1.5;
- color: #212529;
- text-align: left;
- background-color: #fff; }
-
-[tabindex="-1"]:focus {
- outline: 0 !important; }
-
-hr {
- box-sizing: content-box;
- height: 0;
- overflow: visible; }
-
-h1, h2, h3, h4, h5, h6 {
- margin-top: 0;
- margin-bottom: 0.5rem; }
-
-p {
- margin-top: 0;
- margin-bottom: 1rem; }
-
-abbr[title],
-abbr[data-original-title] {
- text-decoration: underline;
- text-decoration: underline dotted;
- cursor: help;
- border-bottom: 0; }
-
-address {
- margin-bottom: 1rem;
- font-style: normal;
- line-height: inherit; }
-
-ol,
-ul,
-dl {
- margin-top: 0;
- margin-bottom: 1rem; }
-
-ol ol,
-ul ul,
-ol ul,
-ul ol {
- margin-bottom: 0; }
-
-dt {
- font-weight: 700; }
-
-dd {
- margin-bottom: .5rem;
- margin-left: 0; }
-
-blockquote {
- margin: 0 0 1rem; }
-
-dfn {
- font-style: italic; }
-
-b,
-strong {
- font-weight: bolder; }
-
-small {
- font-size: 80%; }
-
-sub,
-sup {
- position: relative;
- font-size: 75%;
- line-height: 0;
- vertical-align: baseline; }
-
-sub {
- bottom: -.25em; }
-
-sup {
- top: -.5em; }
-
-a {
- color: #007bff;
- text-decoration: none;
- background-color: transparent;
- -webkit-text-decoration-skip: objects; }
- a:hover {
- color: #0056b3;
- text-decoration: underline; }
-
-a:not([href]):not([tabindex]) {
- color: inherit;
- text-decoration: none; }
- a:not([href]):not([tabindex]):hover, a:not([href]):not([tabindex]):focus {
- color: inherit;
- text-decoration: none; }
- a:not([href]):not([tabindex]):focus {
- outline: 0; }
-
-pre,
-code,
-kbd,
-samp {
- font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
- font-size: 1em; }
-
-pre {
- margin-top: 0;
- margin-bottom: 1rem;
- overflow: auto;
- -ms-overflow-style: scrollbar; }
-
-figure {
- margin: 0 0 1rem; }
-
-img {
- vertical-align: middle;
- border-style: none; }
-
-svg {
- overflow: hidden;
- vertical-align: middle; }
-
-table {
- border-collapse: collapse; }
-
-caption {
- padding-top: 0.75rem;
- padding-bottom: 0.75rem;
- color: #6c757d;
- text-align: left;
- caption-side: bottom; }
-
-th {
- text-align: inherit; }
-
-label {
- display: inline-block;
- margin-bottom: 0.5rem; }
-
-button {
- border-radius: 0; }
-
-button:focus {
- outline: 1px dotted;
- outline: 5px auto -webkit-focus-ring-color; }
-
-input,
-button,
-select,
-optgroup,
-textarea {
- margin: 0;
- font-family: inherit;
- font-size: inherit;
- line-height: inherit; }
-
-button,
-input {
- overflow: visible; }
-
-button,
-select {
- text-transform: none; }
-
-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 {
- padding: 0;
- border-style: none; }
-
-input[type="radio"],
-input[type="checkbox"] {
- box-sizing: border-box;
- padding: 0; }
-
-input[type="date"],
-input[type="time"],
-input[type="datetime-local"],
-input[type="month"] {
- -webkit-appearance: listbox; }
-
-textarea {
- overflow: auto;
- resize: vertical; }
-
-fieldset {
- min-width: 0;
- padding: 0;
- margin: 0;
- border: 0; }
-
-legend {
- display: block;
- width: 100%;
- max-width: 100%;
- padding: 0;
- margin-bottom: .5rem;
- font-size: 1.5rem;
- line-height: inherit;
- color: inherit;
- white-space: normal; }
-
-progress {
- vertical-align: baseline; }
-
-[type="number"]::-webkit-inner-spin-button,
-[type="number"]::-webkit-outer-spin-button {
- height: auto; }
-
-[type="search"] {
- outline-offset: -2px;
- -webkit-appearance: none; }
-
-[type="search"]::-webkit-search-cancel-button,
-[type="search"]::-webkit-search-decoration {
- -webkit-appearance: none; }
-
-::-webkit-file-upload-button {
- font: inherit;
- -webkit-appearance: button; }
-
-output {
- display: inline-block; }
-
-summary {
- display: list-item;
- cursor: pointer; }
-
-template {
- display: none; }
-
-[hidden] {
- display: none !important; }
-
-h1, h2, h3, h4, h5, h6,
-.h1, .h2, .h3, .h4, .h5, .h6 {
- margin-bottom: 0.5rem;
- font-family: inherit;
- font-weight: 500;
- line-height: 1.2;
- color: inherit; }
-
-h1, .h1 {
- font-size: 2.5rem; }
-
-h2, .h2 {
- font-size: 2rem; }
-
-h3, .h3 {
- font-size: 1.75rem; }
-
-h4, .h4 {
- font-size: 1.5rem; }
-
-h5, .h5 {
- font-size: 1.25rem; }
-
-h6, .h6 {
- font-size: 1rem; }
-
-.lead {
- font-size: 1.25rem;
- font-weight: 300; }
-
-.display-1 {
- font-size: 6rem;
- font-weight: 300;
- line-height: 1.2; }
-
-.display-2 {
- font-size: 5.5rem;
- font-weight: 300;
- line-height: 1.2; }
-
-.display-3 {
- font-size: 4.5rem;
- font-weight: 300;
- line-height: 1.2; }
-
-.display-4 {
- font-size: 3.5rem;
- font-weight: 300;
- line-height: 1.2; }
-
-hr {
- margin-top: 1rem;
- margin-bottom: 1rem;
- border: 0;
- border-top: 1px solid rgba(0, 0, 0, 0.1); }
-
-small,
-.small {
- font-size: 80%;
- font-weight: 400; }
-
-mark,
-.mark {
- padding: 0.2em;
- background-color: #fcf8e3; }
-
-.list-unstyled {
- padding-left: 0;
- list-style: none; }
-
-.list-inline {
- padding-left: 0;
- list-style: none; }
-
-.list-inline-item {
- display: inline-block; }
- .list-inline-item:not(:last-child) {
- margin-right: 0.5rem; }
-
-.initialism {
- font-size: 90%;
- text-transform: uppercase; }
-
-.blockquote {
- margin-bottom: 1rem;
- font-size: 1.25rem; }
-
-.blockquote-footer {
- display: block;
- font-size: 80%;
- color: #6c757d; }
- .blockquote-footer::before {
- content: "\2014 \00A0"; }
-
-.img-fluid {
- max-width: 100%;
- height: auto; }
-
-.img-thumbnail {
- padding: 0.25rem;
- background-color: #fff;
- border: 1px solid #dee2e6;
- border-radius: 0.25rem;
- max-width: 100%;
- height: auto; }
-
-.figure {
- display: inline-block; }
-
-.figure-img {
- margin-bottom: 0.5rem;
- line-height: 1; }
-
-.figure-caption {
- font-size: 90%;
- color: #6c757d; }
-
-code {
- font-size: 87.5%;
- color: #e83e8c;
- word-break: break-word; }
- a > code {
- color: inherit; }
-
-kbd {
- padding: 0.2rem 0.4rem;
- font-size: 87.5%;
- color: #fff;
- background-color: #212529;
- border-radius: 0.2rem; }
- kbd kbd {
- padding: 0;
- font-size: 100%;
- font-weight: 700; }
-
-pre {
- display: block;
- font-size: 87.5%;
- color: #212529; }
- pre code {
- font-size: inherit;
- color: inherit;
- word-break: normal; }
-
-.pre-scrollable {
- max-height: 340px;
- overflow-y: scroll; }
-
-.container {
- width: 100%;
- padding-right: 15px;
- padding-left: 15px;
- margin-right: auto;
- margin-left: auto; }
- @media (min-width: 576px) {
- .container {
- max-width: 540px; } }
- @media (min-width: 768px) {
- .container {
- max-width: 720px; } }
- @media (min-width: 992px) {
- .container {
- max-width: 960px; } }
- @media (min-width: 1200px) {
- .container {
- max-width: 1140px; } }
-
-.container-fluid {
- width: 100%;
- padding-right: 15px;
- padding-left: 15px;
- margin-right: auto;
- margin-left: auto; }
-
-.row {
- display: flex;
- flex-wrap: wrap;
- margin-right: -15px;
- margin-left: -15px; }
-
-.no-gutters {
- margin-right: 0;
- margin-left: 0; }
- .no-gutters > .col,
- .no-gutters > [class*="col-"] {
- padding-right: 0;
- padding-left: 0; }
-
-.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col,
-.col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm,
-.col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md,
-.col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg,
-.col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl,
-.col-xl-auto {
- position: relative;
- width: 100%;
- min-height: 1px;
- padding-right: 15px;
- padding-left: 15px; }
-
-.col {
- flex-basis: 0;
- flex-grow: 1;
- max-width: 100%; }
-
-.col-auto {
- flex: 0 0 auto;
- width: auto;
- max-width: none; }
-
-.col-1 {
- flex: 0 0 8.3333333333%;
- max-width: 8.3333333333%; }
-
-.col-2 {
- flex: 0 0 16.6666666667%;
- max-width: 16.6666666667%; }
-
-.col-3 {
- flex: 0 0 25%;
- max-width: 25%; }
-
-.col-4 {
- flex: 0 0 33.3333333333%;
- max-width: 33.3333333333%; }
-
-.col-5 {
- flex: 0 0 41.6666666667%;
- max-width: 41.6666666667%; }
-
-.col-6 {
- flex: 0 0 50%;
- max-width: 50%; }
-
-.col-7 {
- flex: 0 0 58.3333333333%;
- max-width: 58.3333333333%; }
-
-.col-8 {
- flex: 0 0 66.6666666667%;
- max-width: 66.6666666667%; }
-
-.col-9 {
- flex: 0 0 75%;
- max-width: 75%; }
-
-.col-10 {
- flex: 0 0 83.3333333333%;
- max-width: 83.3333333333%; }
-
-.col-11 {
- flex: 0 0 91.6666666667%;
- max-width: 91.6666666667%; }
-
-.col-12 {
- flex: 0 0 100%;
- max-width: 100%; }
-
-.order-first {
- order: -1; }
-
-.order-last {
- order: 13; }
-
-.order-0 {
- order: 0; }
-
-.order-1 {
- order: 1; }
-
-.order-2 {
- order: 2; }
-
-.order-3 {
- order: 3; }
-
-.order-4 {
- order: 4; }
-
-.order-5 {
- order: 5; }
-
-.order-6 {
- order: 6; }
-
-.order-7 {
- order: 7; }
-
-.order-8 {
- order: 8; }
-
-.order-9 {
- order: 9; }
-
-.order-10 {
- order: 10; }
-
-.order-11 {
- order: 11; }
-
-.order-12 {
- order: 12; }
-
-.offset-1 {
- margin-left: 8.3333333333%; }
-
-.offset-2 {
- margin-left: 16.6666666667%; }
-
-.offset-3 {
- margin-left: 25%; }
-
-.offset-4 {
- margin-left: 33.3333333333%; }
-
-.offset-5 {
- margin-left: 41.6666666667%; }
-
-.offset-6 {
- margin-left: 50%; }
-
-.offset-7 {
- margin-left: 58.3333333333%; }
-
-.offset-8 {
- margin-left: 66.6666666667%; }
-
-.offset-9 {
- margin-left: 75%; }
-
-.offset-10 {
- margin-left: 83.3333333333%; }
-
-.offset-11 {
- margin-left: 91.6666666667%; }
-
-@media (min-width: 576px) {
- .col-sm {
- flex-basis: 0;
- flex-grow: 1;
- max-width: 100%; }
-
- .col-sm-auto {
- flex: 0 0 auto;
- width: auto;
- max-width: none; }
-
- .col-sm-1 {
- flex: 0 0 8.3333333333%;
- max-width: 8.3333333333%; }
-
- .col-sm-2 {
- flex: 0 0 16.6666666667%;
- max-width: 16.6666666667%; }
-
- .col-sm-3 {
- flex: 0 0 25%;
- max-width: 25%; }
-
- .col-sm-4 {
- flex: 0 0 33.3333333333%;
- max-width: 33.3333333333%; }
-
- .col-sm-5 {
- flex: 0 0 41.6666666667%;
- max-width: 41.6666666667%; }
-
- .col-sm-6 {
- flex: 0 0 50%;
- max-width: 50%; }
-
- .col-sm-7 {
- flex: 0 0 58.3333333333%;
- max-width: 58.3333333333%; }
-
- .col-sm-8 {
- flex: 0 0 66.6666666667%;
- max-width: 66.6666666667%; }
-
- .col-sm-9 {
- flex: 0 0 75%;
- max-width: 75%; }
-
- .col-sm-10 {
- flex: 0 0 83.3333333333%;
- max-width: 83.3333333333%; }
-
- .col-sm-11 {
- flex: 0 0 91.6666666667%;
- max-width: 91.6666666667%; }
-
- .col-sm-12 {
- flex: 0 0 100%;
- max-width: 100%; }
-
- .order-sm-first {
- order: -1; }
-
- .order-sm-last {
- order: 13; }
-
- .order-sm-0 {
- order: 0; }
-
- .order-sm-1 {
- order: 1; }
-
- .order-sm-2 {
- order: 2; }
-
- .order-sm-3 {
- order: 3; }
-
- .order-sm-4 {
- order: 4; }
-
- .order-sm-5 {
- order: 5; }
-
- .order-sm-6 {
- order: 6; }
-
- .order-sm-7 {
- order: 7; }
-
- .order-sm-8 {
- order: 8; }
-
- .order-sm-9 {
- order: 9; }
-
- .order-sm-10 {
- order: 10; }
-
- .order-sm-11 {
- order: 11; }
-
- .order-sm-12 {
- order: 12; }
-
- .offset-sm-0 {
- margin-left: 0; }
-
- .offset-sm-1 {
- margin-left: 8.3333333333%; }
-
- .offset-sm-2 {
- margin-left: 16.6666666667%; }
-
- .offset-sm-3 {
- margin-left: 25%; }
-
- .offset-sm-4 {
- margin-left: 33.3333333333%; }
-
- .offset-sm-5 {
- margin-left: 41.6666666667%; }
-
- .offset-sm-6 {
- margin-left: 50%; }
-
- .offset-sm-7 {
- margin-left: 58.3333333333%; }
-
- .offset-sm-8 {
- margin-left: 66.6666666667%; }
-
- .offset-sm-9 {
- margin-left: 75%; }
-
- .offset-sm-10 {
- margin-left: 83.3333333333%; }
-
- .offset-sm-11 {
- margin-left: 91.6666666667%; } }
-@media (min-width: 768px) {
- .col-md {
- flex-basis: 0;
- flex-grow: 1;
- max-width: 100%; }
-
- .col-md-auto {
- flex: 0 0 auto;
- width: auto;
- max-width: none; }
-
- .col-md-1 {
- flex: 0 0 8.3333333333%;
- max-width: 8.3333333333%; }
-
- .col-md-2 {
- flex: 0 0 16.6666666667%;
- max-width: 16.6666666667%; }
-
- .col-md-3 {
- flex: 0 0 25%;
- max-width: 25%; }
-
- .col-md-4 {
- flex: 0 0 33.3333333333%;
- max-width: 33.3333333333%; }
-
- .col-md-5 {
- flex: 0 0 41.6666666667%;
- max-width: 41.6666666667%; }
-
- .col-md-6 {
- flex: 0 0 50%;
- max-width: 50%; }
-
- .col-md-7 {
- flex: 0 0 58.3333333333%;
- max-width: 58.3333333333%; }
-
- .col-md-8 {
- flex: 0 0 66.6666666667%;
- max-width: 66.6666666667%; }
-
- .col-md-9 {
- flex: 0 0 75%;
- max-width: 75%; }
-
- .col-md-10 {
- flex: 0 0 83.3333333333%;
- max-width: 83.3333333333%; }
-
- .col-md-11 {
- flex: 0 0 91.6666666667%;
- max-width: 91.6666666667%; }
-
- .col-md-12 {
- flex: 0 0 100%;
- max-width: 100%; }
-
- .order-md-first {
- order: -1; }
-
- .order-md-last {
- order: 13; }
-
- .order-md-0 {
- order: 0; }
-
- .order-md-1 {
- order: 1; }
-
- .order-md-2 {
- order: 2; }
-
- .order-md-3 {
- order: 3; }
-
- .order-md-4 {
- order: 4; }
-
- .order-md-5 {
- order: 5; }
-
- .order-md-6 {
- order: 6; }
-
- .order-md-7 {
- order: 7; }
-
- .order-md-8 {
- order: 8; }
-
- .order-md-9 {
- order: 9; }
-
- .order-md-10 {
- order: 10; }
-
- .order-md-11 {
- order: 11; }
-
- .order-md-12 {
- order: 12; }
-
- .offset-md-0 {
- margin-left: 0; }
-
- .offset-md-1 {
- margin-left: 8.3333333333%; }
-
- .offset-md-2 {
- margin-left: 16.6666666667%; }
-
- .offset-md-3 {
- margin-left: 25%; }
-
- .offset-md-4 {
- margin-left: 33.3333333333%; }
-
- .offset-md-5 {
- margin-left: 41.6666666667%; }
-
- .offset-md-6 {
- margin-left: 50%; }
-
- .offset-md-7 {
- margin-left: 58.3333333333%; }
-
- .offset-md-8 {
- margin-left: 66.6666666667%; }
-
- .offset-md-9 {
- margin-left: 75%; }
-
- .offset-md-10 {
- margin-left: 83.3333333333%; }
-
- .offset-md-11 {
- margin-left: 91.6666666667%; } }
-@media (min-width: 992px) {
- .col-lg {
- flex-basis: 0;
- flex-grow: 1;
- max-width: 100%; }
-
- .col-lg-auto {
- flex: 0 0 auto;
- width: auto;
- max-width: none; }
-
- .col-lg-1 {
- flex: 0 0 8.3333333333%;
- max-width: 8.3333333333%; }
-
- .col-lg-2 {
- flex: 0 0 16.6666666667%;
- max-width: 16.6666666667%; }
-
- .col-lg-3 {
- flex: 0 0 25%;
- max-width: 25%; }
-
- .col-lg-4 {
- flex: 0 0 33.3333333333%;
- max-width: 33.3333333333%; }
-
- .col-lg-5 {
- flex: 0 0 41.6666666667%;
- max-width: 41.6666666667%; }
-
- .col-lg-6 {
- flex: 0 0 50%;
- max-width: 50%; }
-
- .col-lg-7 {
- flex: 0 0 58.3333333333%;
- max-width: 58.3333333333%; }
-
- .col-lg-8 {
- flex: 0 0 66.6666666667%;
- max-width: 66.6666666667%; }
-
- .col-lg-9 {
- flex: 0 0 75%;
- max-width: 75%; }
-
- .col-lg-10 {
- flex: 0 0 83.3333333333%;
- max-width: 83.3333333333%; }
-
- .col-lg-11 {
- flex: 0 0 91.6666666667%;
- max-width: 91.6666666667%; }
-
- .col-lg-12 {
- flex: 0 0 100%;
- max-width: 100%; }
-
- .order-lg-first {
- order: -1; }
-
- .order-lg-last {
- order: 13; }
-
- .order-lg-0 {
- order: 0; }
-
- .order-lg-1 {
- order: 1; }
-
- .order-lg-2 {
- order: 2; }
-
- .order-lg-3 {
- order: 3; }
-
- .order-lg-4 {
- order: 4; }
-
- .order-lg-5 {
- order: 5; }
-
- .order-lg-6 {
- order: 6; }
-
- .order-lg-7 {
- order: 7; }
-
- .order-lg-8 {
- order: 8; }
-
- .order-lg-9 {
- order: 9; }
-
- .order-lg-10 {
- order: 10; }
-
- .order-lg-11 {
- order: 11; }
-
- .order-lg-12 {
- order: 12; }
-
- .offset-lg-0 {
- margin-left: 0; }
-
- .offset-lg-1 {
- margin-left: 8.3333333333%; }
-
- .offset-lg-2 {
- margin-left: 16.6666666667%; }
-
- .offset-lg-3 {
- margin-left: 25%; }
-
- .offset-lg-4 {
- margin-left: 33.3333333333%; }
-
- .offset-lg-5 {
- margin-left: 41.6666666667%; }
-
- .offset-lg-6 {
- margin-left: 50%; }
-
- .offset-lg-7 {
- margin-left: 58.3333333333%; }
-
- .offset-lg-8 {
- margin-left: 66.6666666667%; }
-
- .offset-lg-9 {
- margin-left: 75%; }
-
- .offset-lg-10 {
- margin-left: 83.3333333333%; }
-
- .offset-lg-11 {
- margin-left: 91.6666666667%; } }
-@media (min-width: 1200px) {
- .col-xl {
- flex-basis: 0;
- flex-grow: 1;
- max-width: 100%; }
-
- .col-xl-auto {
- flex: 0 0 auto;
- width: auto;
- max-width: none; }
-
- .col-xl-1 {
- flex: 0 0 8.3333333333%;
- max-width: 8.3333333333%; }
-
- .col-xl-2 {
- flex: 0 0 16.6666666667%;
- max-width: 16.6666666667%; }
-
- .col-xl-3 {
- flex: 0 0 25%;
- max-width: 25%; }
-
- .col-xl-4 {
- flex: 0 0 33.3333333333%;
- max-width: 33.3333333333%; }
-
- .col-xl-5 {
- flex: 0 0 41.6666666667%;
- max-width: 41.6666666667%; }
-
- .col-xl-6 {
- flex: 0 0 50%;
- max-width: 50%; }
-
- .col-xl-7 {
- flex: 0 0 58.3333333333%;
- max-width: 58.3333333333%; }
-
- .col-xl-8 {
- flex: 0 0 66.6666666667%;
- max-width: 66.6666666667%; }
-
- .col-xl-9 {
- flex: 0 0 75%;
- max-width: 75%; }
-
- .col-xl-10 {
- flex: 0 0 83.3333333333%;
- max-width: 83.3333333333%; }
-
- .col-xl-11 {
- flex: 0 0 91.6666666667%;
- max-width: 91.6666666667%; }
-
- .col-xl-12 {
- flex: 0 0 100%;
- max-width: 100%; }
-
- .order-xl-first {
- order: -1; }
-
- .order-xl-last {
- order: 13; }
-
- .order-xl-0 {
- order: 0; }
-
- .order-xl-1 {
- order: 1; }
-
- .order-xl-2 {
- order: 2; }
-
- .order-xl-3 {
- order: 3; }
-
- .order-xl-4 {
- order: 4; }
-
- .order-xl-5 {
- order: 5; }
-
- .order-xl-6 {
- order: 6; }
-
- .order-xl-7 {
- order: 7; }
-
- .order-xl-8 {
- order: 8; }
-
- .order-xl-9 {
- order: 9; }
-
- .order-xl-10 {
- order: 10; }
-
- .order-xl-11 {
- order: 11; }
-
- .order-xl-12 {
- order: 12; }
-
- .offset-xl-0 {
- margin-left: 0; }
-
- .offset-xl-1 {
- margin-left: 8.3333333333%; }
-
- .offset-xl-2 {
- margin-left: 16.6666666667%; }
-
- .offset-xl-3 {
- margin-left: 25%; }
-
- .offset-xl-4 {
- margin-left: 33.3333333333%; }
-
- .offset-xl-5 {
- margin-left: 41.6666666667%; }
-
- .offset-xl-6 {
- margin-left: 50%; }
-
- .offset-xl-7 {
- margin-left: 58.3333333333%; }
-
- .offset-xl-8 {
- margin-left: 66.6666666667%; }
-
- .offset-xl-9 {
- margin-left: 75%; }
-
- .offset-xl-10 {
- margin-left: 83.3333333333%; }
-
- .offset-xl-11 {
- margin-left: 91.6666666667%; } }
-.table {
- width: 100%;
- margin-bottom: 1rem;
- background-color: transparent; }
- .table th,
- .table td {
- padding: 0.75rem;
- vertical-align: top;
- border-top: 1px solid #dee2e6; }
- .table thead th {
- vertical-align: bottom;
- border-bottom: 2px solid #dee2e6; }
- .table tbody + tbody {
- border-top: 2px solid #dee2e6; }
- .table .table {
- background-color: #fff; }
-
-.table-sm th,
-.table-sm td {
- padding: 0.3rem; }
-
-.table-bordered {
- border: 1px solid #dee2e6; }
- .table-bordered th,
- .table-bordered td {
- border: 1px solid #dee2e6; }
- .table-bordered thead th,
- .table-bordered thead td {
- border-bottom-width: 2px; }
-
-.table-borderless th,
-.table-borderless td,
-.table-borderless thead th,
-.table-borderless tbody + tbody {
- border: 0; }
-
-.table-striped tbody tr:nth-of-type(odd) {
- background-color: rgba(0, 0, 0, 0.05); }
-
-.table-hover tbody tr:hover {
- background-color: rgba(0, 0, 0, 0.075); }
-
-.table-primary,
-.table-primary > th,
-.table-primary > td {
- background-color: #b8daff; }
-
-.table-hover .table-primary:hover {
- background-color: #9fcdff; }
- .table-hover .table-primary:hover > td,
- .table-hover .table-primary:hover > th {
- background-color: #9fcdff; }
-
-.table-secondary,
-.table-secondary > th,
-.table-secondary > td {
- background-color: #d6d8db; }
-
-.table-hover .table-secondary:hover {
- background-color: #c8cbcf; }
- .table-hover .table-secondary:hover > td,
- .table-hover .table-secondary:hover > th {
- background-color: #c8cbcf; }
-
-.table-success,
-.table-success > th,
-.table-success > td {
- background-color: #c3e6cb; }
-
-.table-hover .table-success:hover {
- background-color: #b1dfbb; }
- .table-hover .table-success:hover > td,
- .table-hover .table-success:hover > th {
- background-color: #b1dfbb; }
-
-.table-info,
-.table-info > th,
-.table-info > td {
- background-color: #bee5eb; }
-
-.table-hover .table-info:hover {
- background-color: #abdde5; }
- .table-hover .table-info:hover > td,
- .table-hover .table-info:hover > th {
- background-color: #abdde5; }
-
-.table-warning,
-.table-warning > th,
-.table-warning > td {
- background-color: #ffeeba; }
-
-.table-hover .table-warning:hover {
- background-color: #ffe8a1; }
- .table-hover .table-warning:hover > td,
- .table-hover .table-warning:hover > th {
- background-color: #ffe8a1; }
-
-.table-danger,
-.table-danger > th,
-.table-danger > td {
- background-color: #f5c6cb; }
-
-.table-hover .table-danger:hover {
- background-color: #f1b0b7; }
- .table-hover .table-danger:hover > td,
- .table-hover .table-danger:hover > th {
- background-color: #f1b0b7; }
-
-.table-light,
-.table-light > th,
-.table-light > td {
- background-color: #fdfdfe; }
-
-.table-hover .table-light:hover {
- background-color: #ececf6; }
- .table-hover .table-light:hover > td,
- .table-hover .table-light:hover > th {
- background-color: #ececf6; }
-
-.table-dark,
-.table-dark > th,
-.table-dark > td {
- background-color: #c6c8ca; }
-
-.table-hover .table-dark:hover {
- background-color: #b9bbbe; }
- .table-hover .table-dark:hover > td,
- .table-hover .table-dark:hover > th {
- background-color: #b9bbbe; }
-
-.table-active,
-.table-active > th,
-.table-active > td {
- background-color: rgba(0, 0, 0, 0.075); }
-
-.table-hover .table-active:hover {
- background-color: rgba(0, 0, 0, 0.075); }
- .table-hover .table-active:hover > td,
- .table-hover .table-active:hover > th {
- background-color: rgba(0, 0, 0, 0.075); }
-
-.table .thead-dark th {
- color: #fff;
- background-color: #212529;
- border-color: #32383e; }
-.table .thead-light th {
- color: #495057;
- background-color: #e9ecef;
- border-color: #dee2e6; }
-
-.table-dark {
- color: #fff;
- background-color: #212529; }
- .table-dark th,
- .table-dark td,
- .table-dark thead th {
- border-color: #32383e; }
- .table-dark.table-bordered {
- border: 0; }
- .table-dark.table-striped tbody tr:nth-of-type(odd) {
- background-color: rgba(255, 255, 255, 0.05); }
- .table-dark.table-hover tbody tr:hover {
- background-color: rgba(255, 255, 255, 0.075); }
-
-@media (max-width: 575.98px) {
- .table-responsive-sm {
- display: block;
- width: 100%;
- overflow-x: auto;
- -webkit-overflow-scrolling: touch;
- -ms-overflow-style: -ms-autohiding-scrollbar; }
- .table-responsive-sm > .table-bordered {
- border: 0; } }
-@media (max-width: 767.98px) {
- .table-responsive-md {
- display: block;
- width: 100%;
- overflow-x: auto;
- -webkit-overflow-scrolling: touch;
- -ms-overflow-style: -ms-autohiding-scrollbar; }
- .table-responsive-md > .table-bordered {
- border: 0; } }
-@media (max-width: 991.98px) {
- .table-responsive-lg {
- display: block;
- width: 100%;
- overflow-x: auto;
- -webkit-overflow-scrolling: touch;
- -ms-overflow-style: -ms-autohiding-scrollbar; }
- .table-responsive-lg > .table-bordered {
- border: 0; } }
-@media (max-width: 1199.98px) {
- .table-responsive-xl {
- display: block;
- width: 100%;
- overflow-x: auto;
- -webkit-overflow-scrolling: touch;
- -ms-overflow-style: -ms-autohiding-scrollbar; }
- .table-responsive-xl > .table-bordered {
- border: 0; } }
-.table-responsive {
- display: block;
- width: 100%;
- overflow-x: auto;
- -webkit-overflow-scrolling: touch;
- -ms-overflow-style: -ms-autohiding-scrollbar; }
- .table-responsive > .table-bordered {
- border: 0; }
-
-.form-control {
- display: block;
- width: 100%;
- height: calc(2.25rem + 2px);
- padding: 0.375rem 0.75rem;
- font-size: 1rem;
- line-height: 1.5;
- color: #495057;
- background-color: #fff;
- background-clip: padding-box;
- border: 1px solid #ced4da;
- border-radius: 0.25rem;
- transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; }
- @media screen and (prefers-reduced-motion: reduce) {
- .form-control {
- transition: none; } }
- .form-control::-ms-expand {
- background-color: transparent;
- border: 0; }
- .form-control:focus {
- color: #495057;
- background-color: #fff;
- border-color: #80bdff;
- outline: 0;
- box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); }
- .form-control::placeholder {
- color: #6c757d;
- opacity: 1; }
- .form-control:disabled, .form-control[readonly] {
- background-color: #e9ecef;
- opacity: 1; }
-
-select.form-control:focus::-ms-value {
- color: #495057;
- background-color: #fff; }
-
-.form-control-file,
-.form-control-range {
- display: block;
- width: 100%; }
-
-.col-form-label {
- padding-top: calc(0.375rem + 1px);
- padding-bottom: calc(0.375rem + 1px);
- margin-bottom: 0;
- font-size: inherit;
- line-height: 1.5; }
-
-.col-form-label-lg {
- padding-top: calc(0.5rem + 1px);
- padding-bottom: calc(0.5rem + 1px);
- font-size: 1.25rem;
- line-height: 1.5; }
-
-.col-form-label-sm {
- padding-top: calc(0.25rem + 1px);
- padding-bottom: calc(0.25rem + 1px);
- font-size: 0.875rem;
- line-height: 1.5; }
-
-.form-control-plaintext {
- display: block;
- width: 100%;
- padding-top: 0.375rem;
- padding-bottom: 0.375rem;
- margin-bottom: 0;
- line-height: 1.5;
- color: #212529;
- background-color: transparent;
- border: solid transparent;
- border-width: 1px 0; }
- .form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg {
- padding-right: 0;
- padding-left: 0; }
-
-.form-control-sm {
- height: calc(1.8125rem + 2px);
- padding: 0.25rem 0.5rem;
- font-size: 0.875rem;
- line-height: 1.5;
- border-radius: 0.2rem; }
-
-.form-control-lg {
- height: calc(2.875rem + 2px);
- padding: 0.5rem 1rem;
- font-size: 1.25rem;
- line-height: 1.5;
- border-radius: 0.3rem; }
-
-select.form-control[size], select.form-control[multiple] {
- height: auto; }
-
-textarea.form-control {
- height: auto; }
-
-.form-group {
- margin-bottom: 1rem; }
-
-.form-text {
- display: block;
- margin-top: 0.25rem; }
-
-.form-row {
- display: flex;
- flex-wrap: wrap;
- margin-right: -5px;
- margin-left: -5px; }
- .form-row > .col,
- .form-row > [class*="col-"] {
- padding-right: 5px;
- padding-left: 5px; }
-
-.form-check {
- position: relative;
- display: block;
- padding-left: 1.25rem; }
-
-.form-check-input {
- position: absolute;
- margin-top: 0.3rem;
- margin-left: -1.25rem; }
- .form-check-input:disabled ~ .form-check-label {
- color: #6c757d; }
-
-.form-check-label {
- margin-bottom: 0; }
-
-.form-check-inline {
- display: inline-flex;
- align-items: center;
- padding-left: 0;
- margin-right: 0.75rem; }
- .form-check-inline .form-check-input {
- position: static;
- margin-top: 0;
- margin-right: 0.3125rem;
- margin-left: 0; }
-
-.valid-feedback {
- display: none;
- width: 100%;
- margin-top: 0.25rem;
- font-size: 80%;
- color: #28a745; }
-
-.valid-tooltip {
- position: absolute;
- top: 100%;
- z-index: 5;
- display: none;
- max-width: 100%;
- padding: 0.25rem 0.5rem;
- margin-top: .1rem;
- font-size: 0.875rem;
- line-height: 1.5;
- color: #fff;
- background-color: rgba(40, 167, 69, 0.9);
- border-radius: 0.25rem; }
-
-.was-validated .form-control:valid, .form-control.is-valid,
-.was-validated .custom-select:valid,
-.custom-select.is-valid {
- border-color: #28a745; }
- .was-validated .form-control:valid:focus, .form-control.is-valid:focus,
- .was-validated .custom-select:valid:focus,
- .custom-select.is-valid:focus {
- border-color: #28a745;
- box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25); }
- .was-validated .form-control:valid ~ .valid-feedback,
- .was-validated .form-control:valid ~ .valid-tooltip, .form-control.is-valid ~ .valid-feedback,
- .form-control.is-valid ~ .valid-tooltip,
- .was-validated .custom-select:valid ~ .valid-feedback,
- .was-validated .custom-select:valid ~ .valid-tooltip,
- .custom-select.is-valid ~ .valid-feedback,
- .custom-select.is-valid ~ .valid-tooltip {
- display: block; }
-
-.was-validated .form-control-file:valid ~ .valid-feedback,
-.was-validated .form-control-file:valid ~ .valid-tooltip, .form-control-file.is-valid ~ .valid-feedback,
-.form-control-file.is-valid ~ .valid-tooltip {
- display: block; }
-
-.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {
- color: #28a745; }
-.was-validated .form-check-input:valid ~ .valid-feedback,
-.was-validated .form-check-input:valid ~ .valid-tooltip, .form-check-input.is-valid ~ .valid-feedback,
-.form-check-input.is-valid ~ .valid-tooltip {
- display: block; }
-
-.was-validated .custom-control-input:valid ~ .custom-control-label, .custom-control-input.is-valid ~ .custom-control-label {
- color: #28a745; }
- .was-validated .custom-control-input:valid ~ .custom-control-label::before, .custom-control-input.is-valid ~ .custom-control-label::before {
- background-color: #71dd8a; }
-.was-validated .custom-control-input:valid ~ .valid-feedback,
-.was-validated .custom-control-input:valid ~ .valid-tooltip, .custom-control-input.is-valid ~ .valid-feedback,
-.custom-control-input.is-valid ~ .valid-tooltip {
- display: block; }
-.was-validated .custom-control-input:valid:checked ~ .custom-control-label::before, .custom-control-input.is-valid:checked ~ .custom-control-label::before {
- background-color: #34ce57; }
-.was-validated .custom-control-input:valid:focus ~ .custom-control-label::before, .custom-control-input.is-valid:focus ~ .custom-control-label::before {
- box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(40, 167, 69, 0.25); }
-
-.was-validated .custom-file-input:valid ~ .custom-file-label, .custom-file-input.is-valid ~ .custom-file-label {
- border-color: #28a745; }
- .was-validated .custom-file-input:valid ~ .custom-file-label::after, .custom-file-input.is-valid ~ .custom-file-label::after {
- border-color: inherit; }
-.was-validated .custom-file-input:valid ~ .valid-feedback,
-.was-validated .custom-file-input:valid ~ .valid-tooltip, .custom-file-input.is-valid ~ .valid-feedback,
-.custom-file-input.is-valid ~ .valid-tooltip {
- display: block; }
-.was-validated .custom-file-input:valid:focus ~ .custom-file-label, .custom-file-input.is-valid:focus ~ .custom-file-label {
- box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25); }
-
-.invalid-feedback {
- display: none;
- width: 100%;
- margin-top: 0.25rem;
- font-size: 80%;
- color: #dc3545; }
-
-.invalid-tooltip {
- position: absolute;
- top: 100%;
- z-index: 5;
- display: none;
- max-width: 100%;
- padding: 0.25rem 0.5rem;
- margin-top: .1rem;
- font-size: 0.875rem;
- line-height: 1.5;
- color: #fff;
- background-color: rgba(220, 53, 69, 0.9);
- border-radius: 0.25rem; }
-
-.was-validated .form-control:invalid, .form-control.is-invalid,
-.was-validated .custom-select:invalid,
-.custom-select.is-invalid {
- border-color: #dc3545; }
- .was-validated .form-control:invalid:focus, .form-control.is-invalid:focus,
- .was-validated .custom-select:invalid:focus,
- .custom-select.is-invalid:focus {
- border-color: #dc3545;
- box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25); }
- .was-validated .form-control:invalid ~ .invalid-feedback,
- .was-validated .form-control:invalid ~ .invalid-tooltip, .form-control.is-invalid ~ .invalid-feedback,
- .form-control.is-invalid ~ .invalid-tooltip,
- .was-validated .custom-select:invalid ~ .invalid-feedback,
- .was-validated .custom-select:invalid ~ .invalid-tooltip,
- .custom-select.is-invalid ~ .invalid-feedback,
- .custom-select.is-invalid ~ .invalid-tooltip {
- display: block; }
-
-.was-validated .form-control-file:invalid ~ .invalid-feedback,
-.was-validated .form-control-file:invalid ~ .invalid-tooltip, .form-control-file.is-invalid ~ .invalid-feedback,
-.form-control-file.is-invalid ~ .invalid-tooltip {
- display: block; }
-
-.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {
- color: #dc3545; }
-.was-validated .form-check-input:invalid ~ .invalid-feedback,
-.was-validated .form-check-input:invalid ~ .invalid-tooltip, .form-check-input.is-invalid ~ .invalid-feedback,
-.form-check-input.is-invalid ~ .invalid-tooltip {
- display: block; }
-
-.was-validated .custom-control-input:invalid ~ .custom-control-label, .custom-control-input.is-invalid ~ .custom-control-label {
- color: #dc3545; }
- .was-validated .custom-control-input:invalid ~ .custom-control-label::before, .custom-control-input.is-invalid ~ .custom-control-label::before {
- background-color: #efa2a9; }
-.was-validated .custom-control-input:invalid ~ .invalid-feedback,
-.was-validated .custom-control-input:invalid ~ .invalid-tooltip, .custom-control-input.is-invalid ~ .invalid-feedback,
-.custom-control-input.is-invalid ~ .invalid-tooltip {
- display: block; }
-.was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before, .custom-control-input.is-invalid:checked ~ .custom-control-label::before {
- background-color: #e4606d; }
-.was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before, .custom-control-input.is-invalid:focus ~ .custom-control-label::before {
- box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(220, 53, 69, 0.25); }
-
-.was-validated .custom-file-input:invalid ~ .custom-file-label, .custom-file-input.is-invalid ~ .custom-file-label {
- border-color: #dc3545; }
- .was-validated .custom-file-input:invalid ~ .custom-file-label::after, .custom-file-input.is-invalid ~ .custom-file-label::after {
- border-color: inherit; }
-.was-validated .custom-file-input:invalid ~ .invalid-feedback,
-.was-validated .custom-file-input:invalid ~ .invalid-tooltip, .custom-file-input.is-invalid ~ .invalid-feedback,
-.custom-file-input.is-invalid ~ .invalid-tooltip {
- display: block; }
-.was-validated .custom-file-input:invalid:focus ~ .custom-file-label, .custom-file-input.is-invalid:focus ~ .custom-file-label {
- box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25); }
-
-.form-inline {
- display: flex;
- flex-flow: row wrap;
- align-items: center; }
- .form-inline .form-check {
- width: 100%; }
- @media (min-width: 576px) {
- .form-inline label {
- display: flex;
- align-items: center;
- justify-content: center;
- margin-bottom: 0; }
- .form-inline .form-group {
- display: flex;
- flex: 0 0 auto;
- flex-flow: row wrap;
- align-items: center;
- margin-bottom: 0; }
- .form-inline .form-control {
- display: inline-block;
- width: auto;
- vertical-align: middle; }
- .form-inline .form-control-plaintext {
- display: inline-block; }
- .form-inline .input-group,
- .form-inline .custom-select {
- width: auto; }
- .form-inline .form-check {
- display: flex;
- align-items: center;
- justify-content: center;
- width: auto;
- padding-left: 0; }
- .form-inline .form-check-input {
- position: relative;
- margin-top: 0;
- margin-right: 0.25rem;
- margin-left: 0; }
- .form-inline .custom-control {
- align-items: center;
- justify-content: center; }
- .form-inline .custom-control-label {
- margin-bottom: 0; } }
-
-.btn {
- display: inline-block;
- font-weight: 400;
- text-align: center;
- white-space: nowrap;
- vertical-align: middle;
- user-select: none;
- border: 1px solid transparent;
- padding: 0.375rem 0.75rem;
- font-size: 1rem;
- line-height: 1.5;
- border-radius: 0.25rem;
- transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; }
- @media screen and (prefers-reduced-motion: reduce) {
- .btn {
- transition: none; } }
- .btn:hover, .btn:focus {
- text-decoration: none; }
- .btn:focus, .btn.focus {
- outline: 0;
- box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); }
- .btn.disabled, .btn:disabled {
- opacity: 0.65; }
- .btn:not(:disabled):not(.disabled) {
- cursor: pointer; }
-
-a.btn.disabled,
-fieldset:disabled a.btn {
- pointer-events: none; }
-
-.btn-primary {
- color: #fff;
- background-color: #007bff;
- border-color: #007bff; }
- .btn-primary:hover {
- color: #fff;
- background-color: #0069d9;
- border-color: #0062cc; }
- .btn-primary:focus, .btn-primary.focus {
- box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5); }
- .btn-primary.disabled, .btn-primary:disabled {
- color: #fff;
- background-color: #007bff;
- border-color: #007bff; }
- .btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active, .show > .btn-primary.dropdown-toggle {
- color: #fff;
- background-color: #0062cc;
- border-color: #005cbf; }
- .btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus, .show > .btn-primary.dropdown-toggle:focus {
- box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5); }
-
-.btn-secondary {
- color: #fff;
- background-color: #6c757d;
- border-color: #6c757d; }
- .btn-secondary:hover {
- color: #fff;
- background-color: #5a6268;
- border-color: #545b62; }
- .btn-secondary:focus, .btn-secondary.focus {
- box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5); }
- .btn-secondary.disabled, .btn-secondary:disabled {
- color: #fff;
- background-color: #6c757d;
- border-color: #6c757d; }
- .btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active, .show > .btn-secondary.dropdown-toggle {
- color: #fff;
- background-color: #545b62;
- border-color: #4e555b; }
- .btn-secondary:not(:disabled):not(.disabled):active:focus, .btn-secondary:not(:disabled):not(.disabled).active:focus, .show > .btn-secondary.dropdown-toggle:focus {
- box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5); }
-
-.btn-success {
- color: #fff;
- background-color: #28a745;
- border-color: #28a745; }
- .btn-success:hover {
- color: #fff;
- background-color: #218838;
- border-color: #1e7e34; }
- .btn-success:focus, .btn-success.focus {
- box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5); }
- .btn-success.disabled, .btn-success:disabled {
- color: #fff;
- background-color: #28a745;
- border-color: #28a745; }
- .btn-success:not(:disabled):not(.disabled):active, .btn-success:not(:disabled):not(.disabled).active, .show > .btn-success.dropdown-toggle {
- color: #fff;
- background-color: #1e7e34;
- border-color: #1c7430; }
- .btn-success:not(:disabled):not(.disabled):active:focus, .btn-success:not(:disabled):not(.disabled).active:focus, .show > .btn-success.dropdown-toggle:focus {
- box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5); }
-
-.btn-info {
- color: #fff;
- background-color: #17a2b8;
- border-color: #17a2b8; }
- .btn-info:hover {
- color: #fff;
- background-color: #138496;
- border-color: #117a8b; }
- .btn-info:focus, .btn-info.focus {
- box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5); }
- .btn-info.disabled, .btn-info:disabled {
- color: #fff;
- background-color: #17a2b8;
- border-color: #17a2b8; }
- .btn-info:not(:disabled):not(.disabled):active, .btn-info:not(:disabled):not(.disabled).active, .show > .btn-info.dropdown-toggle {
- color: #fff;
- background-color: #117a8b;
- border-color: #10707f; }
- .btn-info:not(:disabled):not(.disabled):active:focus, .btn-info:not(:disabled):not(.disabled).active:focus, .show > .btn-info.dropdown-toggle:focus {
- box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5); }
-
-.btn-warning {
- color: #212529;
- background-color: #ffc107;
- border-color: #ffc107; }
- .btn-warning:hover {
- color: #212529;
- background-color: #e0a800;
- border-color: #d39e00; }
- .btn-warning:focus, .btn-warning.focus {
- box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5); }
- .btn-warning.disabled, .btn-warning:disabled {
- color: #212529;
- background-color: #ffc107;
- border-color: #ffc107; }
- .btn-warning:not(:disabled):not(.disabled):active, .btn-warning:not(:disabled):not(.disabled).active, .show > .btn-warning.dropdown-toggle {
- color: #212529;
- background-color: #d39e00;
- border-color: #c69500; }
- .btn-warning:not(:disabled):not(.disabled):active:focus, .btn-warning:not(:disabled):not(.disabled).active:focus, .show > .btn-warning.dropdown-toggle:focus {
- box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5); }
-
-.btn-danger {
- color: #fff;
- background-color: #dc3545;
- border-color: #dc3545; }
- .btn-danger:hover {
- color: #fff;
- background-color: #c82333;
- border-color: #bd2130; }
- .btn-danger:focus, .btn-danger.focus {
- box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5); }
- .btn-danger.disabled, .btn-danger:disabled {
- color: #fff;
- background-color: #dc3545;
- border-color: #dc3545; }
- .btn-danger:not(:disabled):not(.disabled):active, .btn-danger:not(:disabled):not(.disabled).active, .show > .btn-danger.dropdown-toggle {
- color: #fff;
- background-color: #bd2130;
- border-color: #b21f2d; }
- .btn-danger:not(:disabled):not(.disabled):active:focus, .btn-danger:not(:disabled):not(.disabled).active:focus, .show > .btn-danger.dropdown-toggle:focus {
- box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5); }
-
-.btn-light {
- color: #212529;
- background-color: #f8f9fa;
- border-color: #f8f9fa; }
- .btn-light:hover {
- color: #212529;
- background-color: #e2e6ea;
- border-color: #dae0e5; }
- .btn-light:focus, .btn-light.focus {
- box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5); }
- .btn-light.disabled, .btn-light:disabled {
- color: #212529;
- background-color: #f8f9fa;
- border-color: #f8f9fa; }
- .btn-light:not(:disabled):not(.disabled):active, .btn-light:not(:disabled):not(.disabled).active, .show > .btn-light.dropdown-toggle {
- color: #212529;
- background-color: #dae0e5;
- border-color: #d3d9df; }
- .btn-light:not(:disabled):not(.disabled):active:focus, .btn-light:not(:disabled):not(.disabled).active:focus, .show > .btn-light.dropdown-toggle:focus {
- box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5); }
-
-.btn-dark {
- color: #fff;
- background-color: #343a40;
- border-color: #343a40; }
- .btn-dark:hover {
- color: #fff;
- background-color: #23272b;
- border-color: #1d2124; }
- .btn-dark:focus, .btn-dark.focus {
- box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5); }
- .btn-dark.disabled, .btn-dark:disabled {
- color: #fff;
- background-color: #343a40;
- border-color: #343a40; }
- .btn-dark:not(:disabled):not(.disabled):active, .btn-dark:not(:disabled):not(.disabled).active, .show > .btn-dark.dropdown-toggle {
- color: #fff;
- background-color: #1d2124;
- border-color: #171a1d; }
- .btn-dark:not(:disabled):not(.disabled):active:focus, .btn-dark:not(:disabled):not(.disabled).active:focus, .show > .btn-dark.dropdown-toggle:focus {
- box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5); }
-
-.btn-outline-primary {
- color: #007bff;
- background-color: transparent;
- background-image: none;
- border-color: #007bff; }
- .btn-outline-primary:hover {
- color: #fff;
- background-color: #007bff;
- border-color: #007bff; }
- .btn-outline-primary:focus, .btn-outline-primary.focus {
- box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5); }
- .btn-outline-primary.disabled, .btn-outline-primary:disabled {
- color: #007bff;
- background-color: transparent; }
- .btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active, .show > .btn-outline-primary.dropdown-toggle {
- color: #fff;
- background-color: #007bff;
- border-color: #007bff; }
- .btn-outline-primary:not(:disabled):not(.disabled):active:focus, .btn-outline-primary:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-primary.dropdown-toggle:focus {
- box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5); }
-
-.btn-outline-secondary {
- color: #6c757d;
- background-color: transparent;
- background-image: none;
- border-color: #6c757d; }
- .btn-outline-secondary:hover {
- color: #fff;
- background-color: #6c757d;
- border-color: #6c757d; }
- .btn-outline-secondary:focus, .btn-outline-secondary.focus {
- box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5); }
- .btn-outline-secondary.disabled, .btn-outline-secondary:disabled {
- color: #6c757d;
- background-color: transparent; }
- .btn-outline-secondary:not(:disabled):not(.disabled):active, .btn-outline-secondary:not(:disabled):not(.disabled).active, .show > .btn-outline-secondary.dropdown-toggle {
- color: #fff;
- background-color: #6c757d;
- border-color: #6c757d; }
- .btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .btn-outline-secondary:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-secondary.dropdown-toggle:focus {
- box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5); }
-
-.btn-outline-success {
- color: #28a745;
- background-color: transparent;
- background-image: none;
- border-color: #28a745; }
- .btn-outline-success:hover {
- color: #fff;
- background-color: #28a745;
- border-color: #28a745; }
- .btn-outline-success:focus, .btn-outline-success.focus {
- box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5); }
- .btn-outline-success.disabled, .btn-outline-success:disabled {
- color: #28a745;
- background-color: transparent; }
- .btn-outline-success:not(:disabled):not(.disabled):active, .btn-outline-success:not(:disabled):not(.disabled).active, .show > .btn-outline-success.dropdown-toggle {
- color: #fff;
- background-color: #28a745;
- border-color: #28a745; }
- .btn-outline-success:not(:disabled):not(.disabled):active:focus, .btn-outline-success:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-success.dropdown-toggle:focus {
- box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5); }
-
-.btn-outline-info {
- color: #17a2b8;
- background-color: transparent;
- background-image: none;
- border-color: #17a2b8; }
- .btn-outline-info:hover {
- color: #fff;
- background-color: #17a2b8;
- border-color: #17a2b8; }
- .btn-outline-info:focus, .btn-outline-info.focus {
- box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5); }
- .btn-outline-info.disabled, .btn-outline-info:disabled {
- color: #17a2b8;
- background-color: transparent; }
- .btn-outline-info:not(:disabled):not(.disabled):active, .btn-outline-info:not(:disabled):not(.disabled).active, .show > .btn-outline-info.dropdown-toggle {
- color: #fff;
- background-color: #17a2b8;
- border-color: #17a2b8; }
- .btn-outline-info:not(:disabled):not(.disabled):active:focus, .btn-outline-info:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-info.dropdown-toggle:focus {
- box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5); }
-
-.btn-outline-warning {
- color: #ffc107;
- background-color: transparent;
- background-image: none;
- border-color: #ffc107; }
- .btn-outline-warning:hover {
- color: #212529;
- background-color: #ffc107;
- border-color: #ffc107; }
- .btn-outline-warning:focus, .btn-outline-warning.focus {
- box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5); }
- .btn-outline-warning.disabled, .btn-outline-warning:disabled {
- color: #ffc107;
- background-color: transparent; }
- .btn-outline-warning:not(:disabled):not(.disabled):active, .btn-outline-warning:not(:disabled):not(.disabled).active, .show > .btn-outline-warning.dropdown-toggle {
- color: #212529;
- background-color: #ffc107;
- border-color: #ffc107; }
- .btn-outline-warning:not(:disabled):not(.disabled):active:focus, .btn-outline-warning:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-warning.dropdown-toggle:focus {
- box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5); }
-
-.btn-outline-danger {
- color: #dc3545;
- background-color: transparent;
- background-image: none;
- border-color: #dc3545; }
- .btn-outline-danger:hover {
- color: #fff;
- background-color: #dc3545;
- border-color: #dc3545; }
- .btn-outline-danger:focus, .btn-outline-danger.focus {
- box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5); }
- .btn-outline-danger.disabled, .btn-outline-danger:disabled {
- color: #dc3545;
- background-color: transparent; }
- .btn-outline-danger:not(:disabled):not(.disabled):active, .btn-outline-danger:not(:disabled):not(.disabled).active, .show > .btn-outline-danger.dropdown-toggle {
- color: #fff;
- background-color: #dc3545;
- border-color: #dc3545; }
- .btn-outline-danger:not(:disabled):not(.disabled):active:focus, .btn-outline-danger:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-danger.dropdown-toggle:focus {
- box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5); }
-
-.btn-outline-light {
- color: #f8f9fa;
- background-color: transparent;
- background-image: none;
- border-color: #f8f9fa; }
- .btn-outline-light:hover {
- color: #212529;
- background-color: #f8f9fa;
- border-color: #f8f9fa; }
- .btn-outline-light:focus, .btn-outline-light.focus {
- box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5); }
- .btn-outline-light.disabled, .btn-outline-light:disabled {
- color: #f8f9fa;
- background-color: transparent; }
- .btn-outline-light:not(:disabled):not(.disabled):active, .btn-outline-light:not(:disabled):not(.disabled).active, .show > .btn-outline-light.dropdown-toggle {
- color: #212529;
- background-color: #f8f9fa;
- border-color: #f8f9fa; }
- .btn-outline-light:not(:disabled):not(.disabled):active:focus, .btn-outline-light:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-light.dropdown-toggle:focus {
- box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5); }
-
-.btn-outline-dark {
- color: #343a40;
- background-color: transparent;
- background-image: none;
- border-color: #343a40; }
- .btn-outline-dark:hover {
- color: #fff;
- background-color: #343a40;
- border-color: #343a40; }
- .btn-outline-dark:focus, .btn-outline-dark.focus {
- box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5); }
- .btn-outline-dark.disabled, .btn-outline-dark:disabled {
- color: #343a40;
- background-color: transparent; }
- .btn-outline-dark:not(:disabled):not(.disabled):active, .btn-outline-dark:not(:disabled):not(.disabled).active, .show > .btn-outline-dark.dropdown-toggle {
- color: #fff;
- background-color: #343a40;
- border-color: #343a40; }
- .btn-outline-dark:not(:disabled):not(.disabled):active:focus, .btn-outline-dark:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-dark.dropdown-toggle:focus {
- box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5); }
-
-.btn-link {
- font-weight: 400;
- color: #007bff;
- background-color: transparent; }
- .btn-link:hover {
- color: #0056b3;
- text-decoration: underline;
- background-color: transparent;
- border-color: transparent; }
- .btn-link:focus, .btn-link.focus {
- text-decoration: underline;
- border-color: transparent;
- box-shadow: none; }
- .btn-link:disabled, .btn-link.disabled {
- color: #6c757d;
- pointer-events: none; }
-
-.btn-lg, .btn-group-lg > .btn {
- padding: 0.5rem 1rem;
- font-size: 1.25rem;
- line-height: 1.5;
- border-radius: 0.3rem; }
-
-.btn-sm, .btn-group-sm > .btn {
- padding: 0.25rem 0.5rem;
- font-size: 0.875rem;
- line-height: 1.5;
- border-radius: 0.2rem; }
-
-.btn-block {
- display: block;
- width: 100%; }
- .btn-block + .btn-block {
- margin-top: 0.5rem; }
-
-input[type="submit"].btn-block,
-input[type="reset"].btn-block,
-input[type="button"].btn-block {
- width: 100%; }
-
-.fade {
- transition: opacity 0.15s linear; }
- @media screen and (prefers-reduced-motion: reduce) {
- .fade {
- transition: none; } }
- .fade:not(.show) {
- opacity: 0; }
-
-.collapse:not(.show) {
- display: none; }
-
-.collapsing {
- position: relative;
- height: 0;
- overflow: hidden;
- transition: height 0.35s ease; }
- @media screen and (prefers-reduced-motion: reduce) {
- .collapsing {
- transition: none; } }
-
-.dropup,
-.dropright,
-.dropdown,
-.dropleft {
- position: relative; }
-
-.dropdown-toggle::after {
- display: inline-block;
- width: 0;
- height: 0;
- margin-left: 0.255em;
- vertical-align: 0.255em;
- content: "";
- border-top: 0.3em solid;
- border-right: 0.3em solid transparent;
- border-bottom: 0;
- border-left: 0.3em solid transparent; }
-.dropdown-toggle:empty::after {
- margin-left: 0; }
-
-.dropdown-menu {
- position: absolute;
- top: 100%;
- left: 0;
- z-index: 1000;
- display: none;
- float: left;
- min-width: 10rem;
- padding: 0.5rem 0;
- margin: 0.125rem 0 0;
- font-size: 1rem;
- color: #212529;
- text-align: left;
- list-style: none;
- background-color: #fff;
- background-clip: padding-box;
- border: 1px solid rgba(0, 0, 0, 0.15);
- border-radius: 0.25rem; }
-
-.dropdown-menu-right {
- right: 0;
- left: auto; }
-
-.dropup .dropdown-menu {
- top: auto;
- bottom: 100%;
- margin-top: 0;
- margin-bottom: 0.125rem; }
-.dropup .dropdown-toggle::after {
- display: inline-block;
- width: 0;
- height: 0;
- margin-left: 0.255em;
- vertical-align: 0.255em;
- content: "";
- border-top: 0;
- border-right: 0.3em solid transparent;
- border-bottom: 0.3em solid;
- border-left: 0.3em solid transparent; }
-.dropup .dropdown-toggle:empty::after {
- margin-left: 0; }
-
-.dropright .dropdown-menu {
- top: 0;
- right: auto;
- left: 100%;
- margin-top: 0;
- margin-left: 0.125rem; }
-.dropright .dropdown-toggle::after {
- display: inline-block;
- width: 0;
- height: 0;
- margin-left: 0.255em;
- vertical-align: 0.255em;
- content: "";
- border-top: 0.3em solid transparent;
- border-right: 0;
- border-bottom: 0.3em solid transparent;
- border-left: 0.3em solid; }
-.dropright .dropdown-toggle:empty::after {
- margin-left: 0; }
-.dropright .dropdown-toggle::after {
- vertical-align: 0; }
-
-.dropleft .dropdown-menu {
- top: 0;
- right: 100%;
- left: auto;
- margin-top: 0;
- margin-right: 0.125rem; }
-.dropleft .dropdown-toggle::after {
- display: inline-block;
- width: 0;
- height: 0;
- margin-left: 0.255em;
- vertical-align: 0.255em;
- content: ""; }
-.dropleft .dropdown-toggle::after {
- display: none; }
-.dropleft .dropdown-toggle::before {
- display: inline-block;
- width: 0;
- height: 0;
- margin-right: 0.255em;
- vertical-align: 0.255em;
- content: "";
- border-top: 0.3em solid transparent;
- border-right: 0.3em solid;
- border-bottom: 0.3em solid transparent; }
-.dropleft .dropdown-toggle:empty::after {
- margin-left: 0; }
-.dropleft .dropdown-toggle::before {
- vertical-align: 0; }
-
-.dropdown-menu[x-placement^="top"], .dropdown-menu[x-placement^="right"], .dropdown-menu[x-placement^="bottom"], .dropdown-menu[x-placement^="left"] {
- right: auto;
- bottom: auto; }
-
-.dropdown-divider {
- height: 0;
- margin: 0.5rem 0;
- overflow: hidden;
- border-top: 1px solid #e9ecef; }
-
-.dropdown-item {
- display: block;
- width: 100%;
- padding: 0.25rem 1.5rem;
- clear: both;
- font-weight: 400;
- color: #212529;
- text-align: inherit;
- white-space: nowrap;
- background-color: transparent;
- border: 0; }
- .dropdown-item:hover, .dropdown-item:focus {
- color: #16181b;
- text-decoration: none;
- background-color: #f8f9fa; }
- .dropdown-item.active, .dropdown-item:active {
- color: #fff;
- text-decoration: none;
- background-color: #007bff; }
- .dropdown-item.disabled, .dropdown-item:disabled {
- color: #6c757d;
- background-color: transparent; }
-
-.dropdown-menu.show {
- display: block; }
-
-.dropdown-header {
- display: block;
- padding: 0.5rem 1.5rem;
- margin-bottom: 0;
- font-size: 0.875rem;
- color: #6c757d;
- white-space: nowrap; }
-
-.dropdown-item-text {
- display: block;
- padding: 0.25rem 1.5rem;
- color: #212529; }
-
-.btn-group,
-.btn-group-vertical {
- position: relative;
- display: inline-flex;
- vertical-align: middle; }
- .btn-group > .btn,
- .btn-group-vertical > .btn {
- position: relative;
- flex: 0 1 auto; }
- .btn-group > .btn:hover,
- .btn-group-vertical > .btn:hover {
- z-index: 1; }
- .btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active,
- .btn-group-vertical > .btn:focus,
- .btn-group-vertical > .btn:active,
- .btn-group-vertical > .btn.active {
- z-index: 1; }
- .btn-group .btn + .btn,
- .btn-group .btn + .btn-group,
- .btn-group .btn-group + .btn,
- .btn-group .btn-group + .btn-group,
- .btn-group-vertical .btn + .btn,
- .btn-group-vertical .btn + .btn-group,
- .btn-group-vertical .btn-group + .btn,
- .btn-group-vertical .btn-group + .btn-group {
- margin-left: -1px; }
-
-.btn-toolbar {
- display: flex;
- flex-wrap: wrap;
- justify-content: flex-start; }
- .btn-toolbar .input-group {
- width: auto; }
-
-.btn-group > .btn:first-child {
- margin-left: 0; }
-.btn-group > .btn:not(:last-child):not(.dropdown-toggle),
-.btn-group > .btn-group:not(:last-child) > .btn {
- border-top-right-radius: 0;
- border-bottom-right-radius: 0; }
-.btn-group > .btn:not(:first-child),
-.btn-group > .btn-group:not(:first-child) > .btn {
- border-top-left-radius: 0;
- border-bottom-left-radius: 0; }
-
-.dropdown-toggle-split {
- padding-right: 0.5625rem;
- padding-left: 0.5625rem; }
- .dropdown-toggle-split::after, .dropup .dropdown-toggle-split::after, .dropright .dropdown-toggle-split::after {
- margin-left: 0; }
- .dropleft .dropdown-toggle-split::before {
- margin-right: 0; }
-
-.btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split {
- padding-right: 0.375rem;
- padding-left: 0.375rem; }
-
-.btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split {
- padding-right: 0.75rem;
- padding-left: 0.75rem; }
-
-.btn-group-vertical {
- flex-direction: column;
- align-items: flex-start;
- justify-content: center; }
- .btn-group-vertical .btn,
- .btn-group-vertical .btn-group {
- width: 100%; }
- .btn-group-vertical > .btn + .btn,
- .btn-group-vertical > .btn + .btn-group,
- .btn-group-vertical > .btn-group + .btn,
- .btn-group-vertical > .btn-group + .btn-group {
- margin-top: -1px;
- margin-left: 0; }
- .btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle),
- .btn-group-vertical > .btn-group:not(:last-child) > .btn {
- border-bottom-right-radius: 0;
- border-bottom-left-radius: 0; }
- .btn-group-vertical > .btn:not(:first-child),
- .btn-group-vertical > .btn-group:not(:first-child) > .btn {
- border-top-left-radius: 0;
- border-top-right-radius: 0; }
-
-.btn-group-toggle > .btn,
-.btn-group-toggle > .btn-group > .btn {
- margin-bottom: 0; }
- .btn-group-toggle > .btn input[type="radio"],
- .btn-group-toggle > .btn input[type="checkbox"],
- .btn-group-toggle > .btn-group > .btn input[type="radio"],
- .btn-group-toggle > .btn-group > .btn input[type="checkbox"] {
- position: absolute;
- clip: rect(0, 0, 0, 0);
- pointer-events: none; }
-
-.input-group {
- position: relative;
- display: flex;
- flex-wrap: wrap;
- align-items: stretch;
- width: 100%; }
- .input-group > .form-control,
- .input-group > .custom-select,
- .input-group > .custom-file {
- position: relative;
- flex: 1 1 auto;
- width: 1%;
- margin-bottom: 0; }
- .input-group > .form-control + .form-control,
- .input-group > .form-control + .custom-select,
- .input-group > .form-control + .custom-file,
- .input-group > .custom-select + .form-control,
- .input-group > .custom-select + .custom-select,
- .input-group > .custom-select + .custom-file,
- .input-group > .custom-file + .form-control,
- .input-group > .custom-file + .custom-select,
- .input-group > .custom-file + .custom-file {
- margin-left: -1px; }
- .input-group > .form-control:focus,
- .input-group > .custom-select:focus,
- .input-group > .custom-file .custom-file-input:focus ~ .custom-file-label {
- z-index: 3; }
- .input-group > .custom-file .custom-file-input:focus {
- z-index: 4; }
- .input-group > .form-control:not(:last-child),
- .input-group > .custom-select:not(:last-child) {
- border-top-right-radius: 0;
- border-bottom-right-radius: 0; }
- .input-group > .form-control:not(:first-child),
- .input-group > .custom-select:not(:first-child) {
- border-top-left-radius: 0;
- border-bottom-left-radius: 0; }
- .input-group > .custom-file {
- display: flex;
- align-items: center; }
- .input-group > .custom-file:not(:last-child) .custom-file-label, .input-group > .custom-file:not(:last-child) .custom-file-label::after {
- border-top-right-radius: 0;
- border-bottom-right-radius: 0; }
- .input-group > .custom-file:not(:first-child) .custom-file-label {
- border-top-left-radius: 0;
- border-bottom-left-radius: 0; }
-
-.input-group-prepend,
-.input-group-append {
- display: flex; }
- .input-group-prepend .btn,
- .input-group-append .btn {
- position: relative;
- z-index: 2; }
- .input-group-prepend .btn + .btn,
- .input-group-prepend .btn + .input-group-text,
- .input-group-prepend .input-group-text + .input-group-text,
- .input-group-prepend .input-group-text + .btn,
- .input-group-append .btn + .btn,
- .input-group-append .btn + .input-group-text,
- .input-group-append .input-group-text + .input-group-text,
- .input-group-append .input-group-text + .btn {
- margin-left: -1px; }
-
-.input-group-prepend {
- margin-right: -1px; }
-
-.input-group-append {
- margin-left: -1px; }
-
-.input-group-text {
- display: flex;
- align-items: center;
- padding: 0.375rem 0.75rem;
- margin-bottom: 0;
- font-size: 1rem;
- font-weight: 400;
- line-height: 1.5;
- color: #495057;
- text-align: center;
- white-space: nowrap;
- background-color: #e9ecef;
- border: 1px solid #ced4da;
- border-radius: 0.25rem; }
- .input-group-text input[type="radio"],
- .input-group-text input[type="checkbox"] {
- margin-top: 0; }
-
-.input-group-lg > .form-control,
-.input-group-lg > .input-group-prepend > .input-group-text,
-.input-group-lg > .input-group-append > .input-group-text,
-.input-group-lg > .input-group-prepend > .btn,
-.input-group-lg > .input-group-append > .btn {
- height: calc(2.875rem + 2px);
- padding: 0.5rem 1rem;
- font-size: 1.25rem;
- line-height: 1.5;
- border-radius: 0.3rem; }
-
-.input-group-sm > .form-control,
-.input-group-sm > .input-group-prepend > .input-group-text,
-.input-group-sm > .input-group-append > .input-group-text,
-.input-group-sm > .input-group-prepend > .btn,
-.input-group-sm > .input-group-append > .btn {
- height: calc(1.8125rem + 2px);
- padding: 0.25rem 0.5rem;
- font-size: 0.875rem;
- line-height: 1.5;
- border-radius: 0.2rem; }
-
-.input-group > .input-group-prepend > .btn,
-.input-group > .input-group-prepend > .input-group-text,
-.input-group > .input-group-append:not(:last-child) > .btn,
-.input-group > .input-group-append:not(:last-child) > .input-group-text,
-.input-group > .input-group-append:last-child > .btn:not(:last-child):not(.dropdown-toggle),
-.input-group > .input-group-append:last-child > .input-group-text:not(:last-child) {
- border-top-right-radius: 0;
- border-bottom-right-radius: 0; }
-
-.input-group > .input-group-append > .btn,
-.input-group > .input-group-append > .input-group-text,
-.input-group > .input-group-prepend:not(:first-child) > .btn,
-.input-group > .input-group-prepend:not(:first-child) > .input-group-text,
-.input-group > .input-group-prepend:first-child > .btn:not(:first-child),
-.input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child) {
- border-top-left-radius: 0;
- border-bottom-left-radius: 0; }
-
-.custom-control {
- position: relative;
- display: block;
- min-height: 1.5rem;
- padding-left: 1.5rem; }
-
-.custom-control-inline {
- display: inline-flex;
- margin-right: 1rem; }
-
-.custom-control-input {
- position: absolute;
- z-index: -1;
- opacity: 0; }
- .custom-control-input:checked ~ .custom-control-label::before {
- color: #fff;
- background-color: #007bff; }
- .custom-control-input:focus ~ .custom-control-label::before {
- box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25); }
- .custom-control-input:active ~ .custom-control-label::before {
- color: #fff;
- background-color: #b3d7ff; }
- .custom-control-input:disabled ~ .custom-control-label {
- color: #6c757d; }
- .custom-control-input:disabled ~ .custom-control-label::before {
- background-color: #e9ecef; }
-
-.custom-control-label {
- position: relative;
- margin-bottom: 0; }
- .custom-control-label::before {
- position: absolute;
- top: 0.25rem;
- left: -1.5rem;
- display: block;
- width: 1rem;
- height: 1rem;
- pointer-events: none;
- content: "";
- user-select: none;
- background-color: #dee2e6; }
- .custom-control-label::after {
- position: absolute;
- top: 0.25rem;
- left: -1.5rem;
- display: block;
- width: 1rem;
- height: 1rem;
- content: "";
- background-repeat: no-repeat;
- background-position: center center;
- background-size: 50% 50%; }
-
-.custom-checkbox .custom-control-label::before {
- border-radius: 0.25rem; }
-.custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {
- background-color: #007bff; }
-.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
- background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E"); }
-.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before {
- background-color: #007bff; }
-.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after {
- background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3E%3Cpath stroke='%23fff' d='M0 2h4'/%3E%3C/svg%3E"); }
-.custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before {
- background-color: rgba(0, 123, 255, 0.5); }
-.custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before {
- background-color: rgba(0, 123, 255, 0.5); }
-
-.custom-radio .custom-control-label::before {
- border-radius: 50%; }
-.custom-radio .custom-control-input:checked ~ .custom-control-label::before {
- background-color: #007bff; }
-.custom-radio .custom-control-input:checked ~ .custom-control-label::after {
- background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%23fff'/%3E%3C/svg%3E"); }
-.custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before {
- background-color: rgba(0, 123, 255, 0.5); }
-
-.custom-select {
- display: inline-block;
- width: 100%;
- height: calc(2.25rem + 2px);
- padding: 0.375rem 1.75rem 0.375rem 0.75rem;
- line-height: 1.5;
- color: #495057;
- vertical-align: middle;
- background: #fff url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right 0.75rem center;
- background-size: 8px 10px;
- border: 1px solid #ced4da;
- border-radius: 0.25rem;
- appearance: none; }
- .custom-select:focus {
- border-color: #80bdff;
- outline: 0;
- box-shadow: 0 0 0 0.2rem rgba(128, 189, 255, 0.5); }
- .custom-select:focus::-ms-value {
- color: #495057;
- background-color: #fff; }
- .custom-select[multiple], .custom-select[size]:not([size="1"]) {
- height: auto;
- padding-right: 0.75rem;
- background-image: none; }
- .custom-select:disabled {
- color: #6c757d;
- background-color: #e9ecef; }
- .custom-select::-ms-expand {
- opacity: 0; }
-
-.custom-select-sm {
- height: calc(1.8125rem + 2px);
- padding-top: 0.375rem;
- padding-bottom: 0.375rem;
- font-size: 75%; }
-
-.custom-select-lg {
- height: calc(2.875rem + 2px);
- padding-top: 0.375rem;
- padding-bottom: 0.375rem;
- font-size: 125%; }
-
-.custom-file {
- position: relative;
- display: inline-block;
- width: 100%;
- height: calc(2.25rem + 2px);
- margin-bottom: 0; }
-
-.custom-file-input {
- position: relative;
- z-index: 2;
- width: 100%;
- height: calc(2.25rem + 2px);
- margin: 0;
- opacity: 0; }
- .custom-file-input:focus ~ .custom-file-label {
- border-color: #80bdff;
- box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); }
- .custom-file-input:focus ~ .custom-file-label::after {
- border-color: #80bdff; }
- .custom-file-input:disabled ~ .custom-file-label {
- background-color: #e9ecef; }
- .custom-file-input:lang(en) ~ .custom-file-label::after {
- content: "Browse"; }
-
-.custom-file-label {
- position: absolute;
- top: 0;
- right: 0;
- left: 0;
- z-index: 1;
- height: calc(2.25rem + 2px);
- padding: 0.375rem 0.75rem;
- line-height: 1.5;
- color: #495057;
- background-color: #fff;
- border: 1px solid #ced4da;
- border-radius: 0.25rem; }
- .custom-file-label::after {
- position: absolute;
- top: 0;
- right: 0;
- bottom: 0;
- z-index: 3;
- display: block;
- height: 2.25rem;
- padding: 0.375rem 0.75rem;
- line-height: 1.5;
- color: #495057;
- content: "Browse";
- background-color: #e9ecef;
- border-left: 1px solid #ced4da;
- border-radius: 0 0.25rem 0.25rem 0; }
-
-.custom-range {
- width: 100%;
- padding-left: 0;
- background-color: transparent;
- appearance: none; }
- .custom-range:focus {
- outline: none; }
- .custom-range:focus::-webkit-slider-thumb {
- box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25); }
- .custom-range:focus::-moz-range-thumb {
- box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25); }
- .custom-range:focus::-ms-thumb {
- box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25); }
- .custom-range::-moz-focus-outer {
- border: 0; }
- .custom-range::-webkit-slider-thumb {
- width: 1rem;
- height: 1rem;
- margin-top: -0.25rem;
- background-color: #007bff;
- border: 0;
- border-radius: 1rem;
- transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
- appearance: none; }
- @media screen and (prefers-reduced-motion: reduce) {
- .custom-range::-webkit-slider-thumb {
- transition: none; } }
- .custom-range::-webkit-slider-thumb:active {
- background-color: #b3d7ff; }
- .custom-range::-webkit-slider-runnable-track {
- width: 100%;
- height: 0.5rem;
- color: transparent;
- cursor: pointer;
- background-color: #dee2e6;
- border-color: transparent;
- border-radius: 1rem; }
- .custom-range::-moz-range-thumb {
- width: 1rem;
- height: 1rem;
- background-color: #007bff;
- border: 0;
- border-radius: 1rem;
- transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
- appearance: none; }
- @media screen and (prefers-reduced-motion: reduce) {
- .custom-range::-moz-range-thumb {
- transition: none; } }
- .custom-range::-moz-range-thumb:active {
- background-color: #b3d7ff; }
- .custom-range::-moz-range-track {
- width: 100%;
- height: 0.5rem;
- color: transparent;
- cursor: pointer;
- background-color: #dee2e6;
- border-color: transparent;
- border-radius: 1rem; }
- .custom-range::-ms-thumb {
- width: 1rem;
- height: 1rem;
- margin-top: 0;
- margin-right: 0.2rem;
- margin-left: 0.2rem;
- background-color: #007bff;
- border: 0;
- border-radius: 1rem;
- transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
- appearance: none; }
- @media screen and (prefers-reduced-motion: reduce) {
- .custom-range::-ms-thumb {
- transition: none; } }
- .custom-range::-ms-thumb:active {
- background-color: #b3d7ff; }
- .custom-range::-ms-track {
- width: 100%;
- height: 0.5rem;
- color: transparent;
- cursor: pointer;
- background-color: transparent;
- border-color: transparent;
- border-width: 0.5rem; }
- .custom-range::-ms-fill-lower {
- background-color: #dee2e6;
- border-radius: 1rem; }
- .custom-range::-ms-fill-upper {
- margin-right: 15px;
- background-color: #dee2e6;
- border-radius: 1rem; }
-
-.custom-control-label::before,
-.custom-file-label,
-.custom-select {
- transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; }
- @media screen and (prefers-reduced-motion: reduce) {
- .custom-control-label::before,
- .custom-file-label,
- .custom-select {
- transition: none; } }
-
-.nav {
- display: flex;
- flex-wrap: wrap;
- padding-left: 0;
- margin-bottom: 0;
- list-style: none; }
-
-.nav-link {
- display: block;
- padding: 0.5rem 1rem; }
- .nav-link:hover, .nav-link:focus {
- text-decoration: none; }
- .nav-link.disabled {
- color: #6c757d; }
-
-.nav-tabs {
- border-bottom: 1px solid #dee2e6; }
- .nav-tabs .nav-item {
- margin-bottom: -1px; }
- .nav-tabs .nav-link {
- border: 1px solid transparent;
- border-top-left-radius: 0.25rem;
- border-top-right-radius: 0.25rem; }
- .nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
- border-color: #e9ecef #e9ecef #dee2e6; }
- .nav-tabs .nav-link.disabled {
- color: #6c757d;
- background-color: transparent;
- border-color: transparent; }
- .nav-tabs .nav-link.active,
- .nav-tabs .nav-item.show .nav-link {
- color: #495057;
- background-color: #fff;
- border-color: #dee2e6 #dee2e6 #fff; }
- .nav-tabs .dropdown-menu {
- margin-top: -1px;
- border-top-left-radius: 0;
- border-top-right-radius: 0; }
-
-.nav-pills .nav-link {
- border-radius: 0.25rem; }
-.nav-pills .nav-link.active,
-.nav-pills .show > .nav-link {
- color: #fff;
- background-color: #007bff; }
-
-.nav-fill .nav-item {
- flex: 1 1 auto;
- text-align: center; }
-
-.nav-justified .nav-item {
- flex-basis: 0;
- flex-grow: 1;
- text-align: center; }
-
-.tab-content > .tab-pane {
- display: none; }
-.tab-content > .active {
- display: block; }
-
-.navbar {
- position: relative;
- display: flex;
- flex-wrap: wrap;
- align-items: center;
- justify-content: space-between;
- padding: 0.5rem 1rem; }
- .navbar > .container,
- .navbar > .container-fluid {
- display: flex;
- flex-wrap: wrap;
- align-items: center;
- justify-content: space-between; }
-
-.navbar-brand {
- display: inline-block;
- padding-top: 0.3125rem;
- padding-bottom: 0.3125rem;
- margin-right: 1rem;
- font-size: 1.25rem;
- line-height: inherit;
- white-space: nowrap; }
- .navbar-brand:hover, .navbar-brand:focus {
- text-decoration: none; }
-
-.navbar-nav {
- display: flex;
- flex-direction: column;
- padding-left: 0;
- margin-bottom: 0;
- list-style: none; }
- .navbar-nav .nav-link {
- padding-right: 0;
- padding-left: 0; }
- .navbar-nav .dropdown-menu {
- position: static;
- float: none; }
-
-.navbar-text {
- display: inline-block;
- padding-top: 0.5rem;
- padding-bottom: 0.5rem; }
-
-.navbar-collapse {
- flex-basis: 100%;
- flex-grow: 1;
- align-items: center; }
-
-.navbar-toggler {
- padding: 0.25rem 0.75rem;
- font-size: 1.25rem;
- line-height: 1;
- background-color: transparent;
- border: 1px solid transparent;
- border-radius: 0.25rem; }
- .navbar-toggler:hover, .navbar-toggler:focus {
- text-decoration: none; }
- .navbar-toggler:not(:disabled):not(.disabled) {
- cursor: pointer; }
-
-.navbar-toggler-icon {
- display: inline-block;
- width: 1.5em;
- height: 1.5em;
- vertical-align: middle;
- content: "";
- background: no-repeat center center;
- background-size: 100% 100%; }
-
-@media (max-width: 575.98px) {
- .navbar-expand-sm > .container,
- .navbar-expand-sm > .container-fluid {
- padding-right: 0;
- padding-left: 0; } }
-@media (min-width: 576px) {
- .navbar-expand-sm {
- flex-flow: row nowrap;
- justify-content: flex-start; }
- .navbar-expand-sm .navbar-nav {
- flex-direction: row; }
- .navbar-expand-sm .navbar-nav .dropdown-menu {
- position: absolute; }
- .navbar-expand-sm .navbar-nav .nav-link {
- padding-right: 0.5rem;
- padding-left: 0.5rem; }
- .navbar-expand-sm > .container,
- .navbar-expand-sm > .container-fluid {
- flex-wrap: nowrap; }
- .navbar-expand-sm .navbar-collapse {
- display: flex !important;
- flex-basis: auto; }
- .navbar-expand-sm .navbar-toggler {
- display: none; } }
-@media (max-width: 767.98px) {
- .navbar-expand-md > .container,
- .navbar-expand-md > .container-fluid {
- padding-right: 0;
- padding-left: 0; } }
-@media (min-width: 768px) {
- .navbar-expand-md {
- flex-flow: row nowrap;
- justify-content: flex-start; }
- .navbar-expand-md .navbar-nav {
- flex-direction: row; }
- .navbar-expand-md .navbar-nav .dropdown-menu {
- position: absolute; }
- .navbar-expand-md .navbar-nav .nav-link {
- padding-right: 0.5rem;
- padding-left: 0.5rem; }
- .navbar-expand-md > .container,
- .navbar-expand-md > .container-fluid {
- flex-wrap: nowrap; }
- .navbar-expand-md .navbar-collapse {
- display: flex !important;
- flex-basis: auto; }
- .navbar-expand-md .navbar-toggler {
- display: none; } }
-@media (max-width: 991.98px) {
- .navbar-expand-lg > .container,
- .navbar-expand-lg > .container-fluid {
- padding-right: 0;
- padding-left: 0; } }
-@media (min-width: 992px) {
- .navbar-expand-lg {
- flex-flow: row nowrap;
- justify-content: flex-start; }
- .navbar-expand-lg .navbar-nav {
- flex-direction: row; }
- .navbar-expand-lg .navbar-nav .dropdown-menu {
- position: absolute; }
- .navbar-expand-lg .navbar-nav .nav-link {
- padding-right: 0.5rem;
- padding-left: 0.5rem; }
- .navbar-expand-lg > .container,
- .navbar-expand-lg > .container-fluid {
- flex-wrap: nowrap; }
- .navbar-expand-lg .navbar-collapse {
- display: flex !important;
- flex-basis: auto; }
- .navbar-expand-lg .navbar-toggler {
- display: none; } }
-@media (max-width: 1199.98px) {
- .navbar-expand-xl > .container,
- .navbar-expand-xl > .container-fluid {
- padding-right: 0;
- padding-left: 0; } }
-@media (min-width: 1200px) {
- .navbar-expand-xl {
- flex-flow: row nowrap;
- justify-content: flex-start; }
- .navbar-expand-xl .navbar-nav {
- flex-direction: row; }
- .navbar-expand-xl .navbar-nav .dropdown-menu {
- position: absolute; }
- .navbar-expand-xl .navbar-nav .nav-link {
- padding-right: 0.5rem;
- padding-left: 0.5rem; }
- .navbar-expand-xl > .container,
- .navbar-expand-xl > .container-fluid {
- flex-wrap: nowrap; }
- .navbar-expand-xl .navbar-collapse {
- display: flex !important;
- flex-basis: auto; }
- .navbar-expand-xl .navbar-toggler {
- display: none; } }
-.navbar-expand {
- flex-flow: row nowrap;
- justify-content: flex-start; }
- .navbar-expand > .container,
- .navbar-expand > .container-fluid {
- padding-right: 0;
- padding-left: 0; }
- .navbar-expand .navbar-nav {
- flex-direction: row; }
- .navbar-expand .navbar-nav .dropdown-menu {
- position: absolute; }
- .navbar-expand .navbar-nav .nav-link {
- padding-right: 0.5rem;
- padding-left: 0.5rem; }
- .navbar-expand > .container,
- .navbar-expand > .container-fluid {
- flex-wrap: nowrap; }
- .navbar-expand .navbar-collapse {
- display: flex !important;
- flex-basis: auto; }
- .navbar-expand .navbar-toggler {
- display: none; }
-
-.navbar-light .navbar-brand {
- color: rgba(0, 0, 0, 0.9); }
- .navbar-light .navbar-brand:hover, .navbar-light .navbar-brand:focus {
- color: rgba(0, 0, 0, 0.9); }
-.navbar-light .navbar-nav .nav-link {
- color: rgba(0, 0, 0, 0.5); }
- .navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus {
- color: rgba(0, 0, 0, 0.7); }
- .navbar-light .navbar-nav .nav-link.disabled {
- color: rgba(0, 0, 0, 0.3); }
-.navbar-light .navbar-nav .show > .nav-link,
-.navbar-light .navbar-nav .active > .nav-link,
-.navbar-light .navbar-nav .nav-link.show,
-.navbar-light .navbar-nav .nav-link.active {
- color: rgba(0, 0, 0, 0.9); }
-.navbar-light .navbar-toggler {
- color: rgba(0, 0, 0, 0.5);
- border-color: rgba(0, 0, 0, 0.1); }
-.navbar-light .navbar-toggler-icon {
- background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 0, 0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E"); }
-.navbar-light .navbar-text {
- color: rgba(0, 0, 0, 0.5); }
- .navbar-light .navbar-text a {
- color: rgba(0, 0, 0, 0.9); }
- .navbar-light .navbar-text a:hover, .navbar-light .navbar-text a:focus {
- color: rgba(0, 0, 0, 0.9); }
-
-.navbar-dark .navbar-brand {
- color: #fff; }
- .navbar-dark .navbar-brand:hover, .navbar-dark .navbar-brand:focus {
- color: #fff; }
-.navbar-dark .navbar-nav .nav-link {
- color: rgba(255, 255, 255, 0.5); }
- .navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus {
- color: rgba(255, 255, 255, 0.75); }
- .navbar-dark .navbar-nav .nav-link.disabled {
- color: rgba(255, 255, 255, 0.25); }
-.navbar-dark .navbar-nav .show > .nav-link,
-.navbar-dark .navbar-nav .active > .nav-link,
-.navbar-dark .navbar-nav .nav-link.show,
-.navbar-dark .navbar-nav .nav-link.active {
- color: #fff; }
-.navbar-dark .navbar-toggler {
- color: rgba(255, 255, 255, 0.5);
- border-color: rgba(255, 255, 255, 0.1); }
-.navbar-dark .navbar-toggler-icon {
- background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E"); }
-.navbar-dark .navbar-text {
- color: rgba(255, 255, 255, 0.5); }
- .navbar-dark .navbar-text a {
- color: #fff; }
- .navbar-dark .navbar-text a:hover, .navbar-dark .navbar-text a:focus {
- color: #fff; }
-
-.card {
- position: relative;
- display: flex;
- flex-direction: column;
- min-width: 0;
- word-wrap: break-word;
- background-color: #fff;
- background-clip: border-box;
- border: 1px solid rgba(0, 0, 0, 0.125);
- border-radius: 0.25rem; }
- .card > hr {
- margin-right: 0;
- margin-left: 0; }
- .card > .list-group:first-child .list-group-item:first-child {
- border-top-left-radius: 0.25rem;
- border-top-right-radius: 0.25rem; }
- .card > .list-group:last-child .list-group-item:last-child {
- border-bottom-right-radius: 0.25rem;
- border-bottom-left-radius: 0.25rem; }
-
-.card-body {
- flex: 1 1 auto;
- padding: 1.25rem; }
-
-.card-title {
- margin-bottom: 0.75rem; }
-
-.card-subtitle {
- margin-top: -0.375rem;
- margin-bottom: 0; }
-
-.card-text:last-child {
- margin-bottom: 0; }
-
-.card-link:hover {
- text-decoration: none; }
-.card-link + .card-link {
- margin-left: 1.25rem; }
-
-.card-header {
- padding: 0.75rem 1.25rem;
- margin-bottom: 0;
- background-color: rgba(0, 0, 0, 0.03);
- border-bottom: 1px solid rgba(0, 0, 0, 0.125); }
- .card-header:first-child {
- border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0; }
- .card-header + .list-group .list-group-item:first-child {
- border-top: 0; }
-
-.card-footer {
- padding: 0.75rem 1.25rem;
- background-color: rgba(0, 0, 0, 0.03);
- border-top: 1px solid rgba(0, 0, 0, 0.125); }
- .card-footer:last-child {
- border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px); }
-
-.card-header-tabs {
- margin-right: -0.625rem;
- margin-bottom: -0.75rem;
- margin-left: -0.625rem;
- border-bottom: 0; }
-
-.card-header-pills {
- margin-right: -0.625rem;
- margin-left: -0.625rem; }
-
-.card-img-overlay {
- position: absolute;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- padding: 1.25rem; }
-
-.card-img {
- width: 100%;
- border-radius: calc(0.25rem - 1px); }
-
-.card-img-top {
- width: 100%;
- border-top-left-radius: calc(0.25rem - 1px);
- border-top-right-radius: calc(0.25rem - 1px); }
-
-.card-img-bottom {
- width: 100%;
- border-bottom-right-radius: calc(0.25rem - 1px);
- border-bottom-left-radius: calc(0.25rem - 1px); }
-
-.card-deck {
- display: flex;
- flex-direction: column; }
- .card-deck .card {
- margin-bottom: 15px; }
- @media (min-width: 576px) {
- .card-deck {
- flex-flow: row wrap;
- margin-right: -15px;
- margin-left: -15px; }
- .card-deck .card {
- display: flex;
- flex: 1 0 0%;
- flex-direction: column;
- margin-right: 15px;
- margin-bottom: 0;
- margin-left: 15px; } }
-
-.card-group {
- display: flex;
- flex-direction: column; }
- .card-group > .card {
- margin-bottom: 15px; }
- @media (min-width: 576px) {
- .card-group {
- flex-flow: row wrap; }
- .card-group > .card {
- flex: 1 0 0%;
- margin-bottom: 0; }
- .card-group > .card + .card {
- margin-left: 0;
- border-left: 0; }
- .card-group > .card:first-child {
- border-top-right-radius: 0;
- border-bottom-right-radius: 0; }
- .card-group > .card:first-child .card-img-top,
- .card-group > .card:first-child .card-header {
- border-top-right-radius: 0; }
- .card-group > .card:first-child .card-img-bottom,
- .card-group > .card:first-child .card-footer {
- border-bottom-right-radius: 0; }
- .card-group > .card:last-child {
- border-top-left-radius: 0;
- border-bottom-left-radius: 0; }
- .card-group > .card:last-child .card-img-top,
- .card-group > .card:last-child .card-header {
- border-top-left-radius: 0; }
- .card-group > .card:last-child .card-img-bottom,
- .card-group > .card:last-child .card-footer {
- border-bottom-left-radius: 0; }
- .card-group > .card:only-child {
- border-radius: 0.25rem; }
- .card-group > .card:only-child .card-img-top,
- .card-group > .card:only-child .card-header {
- border-top-left-radius: 0.25rem;
- border-top-right-radius: 0.25rem; }
- .card-group > .card:only-child .card-img-bottom,
- .card-group > .card:only-child .card-footer {
- border-bottom-right-radius: 0.25rem;
- border-bottom-left-radius: 0.25rem; }
- .card-group > .card:not(:first-child):not(:last-child):not(:only-child) {
- border-radius: 0; }
- .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-img-top,
- .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-img-bottom,
- .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-header,
- .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-footer {
- border-radius: 0; } }
-
-.card-columns .card {
- margin-bottom: 0.75rem; }
-@media (min-width: 576px) {
- .card-columns {
- column-count: 3;
- column-gap: 1.25rem;
- orphans: 1;
- widows: 1; }
- .card-columns .card {
- display: inline-block;
- width: 100%; } }
-
-.accordion .card:not(:first-of-type):not(:last-of-type) {
- border-bottom: 0;
- border-radius: 0; }
-.accordion .card:not(:first-of-type) .card-header:first-child {
- border-radius: 0; }
-.accordion .card:first-of-type {
- border-bottom: 0;
- border-bottom-right-radius: 0;
- border-bottom-left-radius: 0; }
-.accordion .card:last-of-type {
- border-top-left-radius: 0;
- border-top-right-radius: 0; }
-
-.breadcrumb {
- display: flex;
- flex-wrap: wrap;
- padding: 0.75rem 1rem;
- margin-bottom: 1rem;
- list-style: none;
- background-color: #e9ecef;
- border-radius: 0.25rem; }
-
-.breadcrumb-item + .breadcrumb-item {
- padding-left: 0.5rem; }
- .breadcrumb-item + .breadcrumb-item::before {
- display: inline-block;
- padding-right: 0.5rem;
- color: #6c757d;
- content: "/"; }
-.breadcrumb-item + .breadcrumb-item:hover::before {
- text-decoration: underline; }
-.breadcrumb-item + .breadcrumb-item:hover::before {
- text-decoration: none; }
-.breadcrumb-item.active {
- color: #6c757d; }
-
-.pagination {
- display: flex;
- padding-left: 0;
- list-style: none;
- border-radius: 0.25rem; }
-
-.page-link {
- position: relative;
- display: block;
- padding: 0.5rem 0.75rem;
- margin-left: -1px;
- line-height: 1.25;
- color: #007bff;
- background-color: #fff;
- border: 1px solid #dee2e6; }
- .page-link:hover {
- z-index: 2;
- color: #0056b3;
- text-decoration: none;
- background-color: #e9ecef;
- border-color: #dee2e6; }
- .page-link:focus {
- z-index: 2;
- outline: 0;
- box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); }
- .page-link:not(:disabled):not(.disabled) {
- cursor: pointer; }
-
-.page-item:first-child .page-link {
- margin-left: 0;
- border-top-left-radius: 0.25rem;
- border-bottom-left-radius: 0.25rem; }
-.page-item:last-child .page-link {
- border-top-right-radius: 0.25rem;
- border-bottom-right-radius: 0.25rem; }
-.page-item.active .page-link {
- z-index: 1;
- color: #fff;
- background-color: #007bff;
- border-color: #007bff; }
-.page-item.disabled .page-link {
- color: #6c757d;
- pointer-events: none;
- cursor: auto;
- background-color: #fff;
- border-color: #dee2e6; }
-
-.pagination-lg .page-link {
- padding: 0.75rem 1.5rem;
- font-size: 1.25rem;
- line-height: 1.5; }
-.pagination-lg .page-item:first-child .page-link {
- border-top-left-radius: 0.3rem;
- border-bottom-left-radius: 0.3rem; }
-.pagination-lg .page-item:last-child .page-link {
- border-top-right-radius: 0.3rem;
- border-bottom-right-radius: 0.3rem; }
-
-.pagination-sm .page-link {
- padding: 0.25rem 0.5rem;
- font-size: 0.875rem;
- line-height: 1.5; }
-.pagination-sm .page-item:first-child .page-link {
- border-top-left-radius: 0.2rem;
- border-bottom-left-radius: 0.2rem; }
-.pagination-sm .page-item:last-child .page-link {
- border-top-right-radius: 0.2rem;
- border-bottom-right-radius: 0.2rem; }
-
-.badge {
- display: inline-block;
- padding: 0.25em 0.4em;
- font-size: 75%;
- font-weight: 700;
- line-height: 1;
- text-align: center;
- white-space: nowrap;
- vertical-align: baseline;
- border-radius: 0.25rem; }
- .badge:empty {
- display: none; }
-
-.btn .badge {
- position: relative;
- top: -1px; }
-
-.badge-pill {
- padding-right: 0.6em;
- padding-left: 0.6em;
- border-radius: 10rem; }
-
-.badge-primary {
- color: #fff;
- background-color: #007bff; }
- .badge-primary[href]:hover, .badge-primary[href]:focus {
- color: #fff;
- text-decoration: none;
- background-color: #0062cc; }
-
-.badge-secondary {
- color: #fff;
- background-color: #6c757d; }
- .badge-secondary[href]:hover, .badge-secondary[href]:focus {
- color: #fff;
- text-decoration: none;
- background-color: #545b62; }
-
-.badge-success {
- color: #fff;
- background-color: #28a745; }
- .badge-success[href]:hover, .badge-success[href]:focus {
- color: #fff;
- text-decoration: none;
- background-color: #1e7e34; }
-
-.badge-info {
- color: #fff;
- background-color: #17a2b8; }
- .badge-info[href]:hover, .badge-info[href]:focus {
- color: #fff;
- text-decoration: none;
- background-color: #117a8b; }
-
-.badge-warning {
- color: #212529;
- background-color: #ffc107; }
- .badge-warning[href]:hover, .badge-warning[href]:focus {
- color: #212529;
- text-decoration: none;
- background-color: #d39e00; }
-
-.badge-danger {
- color: #fff;
- background-color: #dc3545; }
- .badge-danger[href]:hover, .badge-danger[href]:focus {
- color: #fff;
- text-decoration: none;
- background-color: #bd2130; }
-
-.badge-light {
- color: #212529;
- background-color: #f8f9fa; }
- .badge-light[href]:hover, .badge-light[href]:focus {
- color: #212529;
- text-decoration: none;
- background-color: #dae0e5; }
-
-.badge-dark {
- color: #fff;
- background-color: #343a40; }
- .badge-dark[href]:hover, .badge-dark[href]:focus {
- color: #fff;
- text-decoration: none;
- background-color: #1d2124; }
-
-.jumbotron {
- padding: 2rem 1rem;
- margin-bottom: 2rem;
- background-color: #e9ecef;
- border-radius: 0.3rem; }
- @media (min-width: 576px) {
- .jumbotron {
- padding: 4rem 2rem; } }
-
-.jumbotron-fluid {
- padding-right: 0;
- padding-left: 0;
- border-radius: 0; }
-
-.alert {
- position: relative;
- padding: 0.75rem 1.25rem;
- margin-bottom: 1rem;
- border: 1px solid transparent;
- border-radius: 0.25rem; }
-
-.alert-heading {
- color: inherit; }
-
-.alert-link {
- font-weight: 700; }
-
-.alert-dismissible {
- padding-right: 4rem; }
- .alert-dismissible .close {
- position: absolute;
- top: 0;
- right: 0;
- padding: 0.75rem 1.25rem;
- color: inherit; }
-
-.alert-primary {
- color: #004085;
- background-color: #cce5ff;
- border-color: #b8daff; }
- .alert-primary hr {
- border-top-color: #9fcdff; }
- .alert-primary .alert-link {
- color: #002752; }
-
-.alert-secondary {
- color: #383d41;
- background-color: #e2e3e5;
- border-color: #d6d8db; }
- .alert-secondary hr {
- border-top-color: #c8cbcf; }
- .alert-secondary .alert-link {
- color: #202326; }
-
-.alert-success {
- color: #155724;
- background-color: #d4edda;
- border-color: #c3e6cb; }
- .alert-success hr {
- border-top-color: #b1dfbb; }
- .alert-success .alert-link {
- color: #0b2e13; }
-
-.alert-info {
- color: #0c5460;
- background-color: #d1ecf1;
- border-color: #bee5eb; }
- .alert-info hr {
- border-top-color: #abdde5; }
- .alert-info .alert-link {
- color: #062c33; }
-
-.alert-warning {
- color: #856404;
- background-color: #fff3cd;
- border-color: #ffeeba; }
- .alert-warning hr {
- border-top-color: #ffe8a1; }
- .alert-warning .alert-link {
- color: #533f03; }
-
-.alert-danger {
- color: #721c24;
- background-color: #f8d7da;
- border-color: #f5c6cb; }
- .alert-danger hr {
- border-top-color: #f1b0b7; }
- .alert-danger .alert-link {
- color: #491217; }
-
-.alert-light {
- color: #818182;
- background-color: #fefefe;
- border-color: #fdfdfe; }
- .alert-light hr {
- border-top-color: #ececf6; }
- .alert-light .alert-link {
- color: #686868; }
-
-.alert-dark {
- color: #1b1e21;
- background-color: #d6d8d9;
- border-color: #c6c8ca; }
- .alert-dark hr {
- border-top-color: #b9bbbe; }
- .alert-dark .alert-link {
- color: #040505; }
-
-@keyframes progress-bar-stripes {
- from {
- background-position: 1rem 0; }
- to {
- background-position: 0 0; } }
-.progress {
- display: flex;
- height: 1rem;
- overflow: hidden;
- font-size: 0.75rem;
- background-color: #e9ecef;
- border-radius: 0.25rem; }
-
-.progress-bar {
- display: flex;
- flex-direction: column;
- justify-content: center;
- color: #fff;
- text-align: center;
- white-space: nowrap;
- background-color: #007bff;
- transition: width 0.6s ease; }
- @media screen and (prefers-reduced-motion: reduce) {
- .progress-bar {
- transition: none; } }
-
-.progress-bar-striped {
- background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
- background-size: 1rem 1rem; }
-
-.progress-bar-animated {
- animation: progress-bar-stripes 1s linear infinite; }
-
-.media {
- display: flex;
- align-items: flex-start; }
-
-.media-body {
- flex: 1; }
-
-.list-group {
- display: flex;
- flex-direction: column;
- padding-left: 0;
- margin-bottom: 0; }
-
-.list-group-item-action {
- width: 100%;
- color: #495057;
- text-align: inherit; }
- .list-group-item-action:hover, .list-group-item-action:focus {
- color: #495057;
- text-decoration: none;
- background-color: #f8f9fa; }
- .list-group-item-action:active {
- color: #212529;
- background-color: #e9ecef; }
-
-.list-group-item {
- position: relative;
- display: block;
- padding: 0.75rem 1.25rem;
- margin-bottom: -1px;
- background-color: #fff;
- border: 1px solid rgba(0, 0, 0, 0.125); }
- .list-group-item:first-child {
- border-top-left-radius: 0.25rem;
- border-top-right-radius: 0.25rem; }
- .list-group-item:last-child {
- margin-bottom: 0;
- border-bottom-right-radius: 0.25rem;
- border-bottom-left-radius: 0.25rem; }
- .list-group-item:hover, .list-group-item:focus {
- z-index: 1;
- text-decoration: none; }
- .list-group-item.disabled, .list-group-item:disabled {
- color: #6c757d;
- background-color: #fff; }
- .list-group-item.active {
- z-index: 2;
- color: #fff;
- background-color: #007bff;
- border-color: #007bff; }
-
-.list-group-flush .list-group-item {
- border-right: 0;
- border-left: 0;
- border-radius: 0; }
-.list-group-flush:first-child .list-group-item:first-child {
- border-top: 0; }
-.list-group-flush:last-child .list-group-item:last-child {
- border-bottom: 0; }
-
-.list-group-item-primary {
- color: #004085;
- background-color: #b8daff; }
- .list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus {
- color: #004085;
- background-color: #9fcdff; }
- .list-group-item-primary.list-group-item-action.active {
- color: #fff;
- background-color: #004085;
- border-color: #004085; }
-
-.list-group-item-secondary {
- color: #383d41;
- background-color: #d6d8db; }
- .list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus {
- color: #383d41;
- background-color: #c8cbcf; }
- .list-group-item-secondary.list-group-item-action.active {
- color: #fff;
- background-color: #383d41;
- border-color: #383d41; }
-
-.list-group-item-success {
- color: #155724;
- background-color: #c3e6cb; }
- .list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus {
- color: #155724;
- background-color: #b1dfbb; }
- .list-group-item-success.list-group-item-action.active {
- color: #fff;
- background-color: #155724;
- border-color: #155724; }
-
-.list-group-item-info {
- color: #0c5460;
- background-color: #bee5eb; }
- .list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus {
- color: #0c5460;
- background-color: #abdde5; }
- .list-group-item-info.list-group-item-action.active {
- color: #fff;
- background-color: #0c5460;
- border-color: #0c5460; }
-
-.list-group-item-warning {
- color: #856404;
- background-color: #ffeeba; }
- .list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus {
- color: #856404;
- background-color: #ffe8a1; }
- .list-group-item-warning.list-group-item-action.active {
- color: #fff;
- background-color: #856404;
- border-color: #856404; }
-
-.list-group-item-danger {
- color: #721c24;
- background-color: #f5c6cb; }
- .list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus {
- color: #721c24;
- background-color: #f1b0b7; }
- .list-group-item-danger.list-group-item-action.active {
- color: #fff;
- background-color: #721c24;
- border-color: #721c24; }
-
-.list-group-item-light {
- color: #818182;
- background-color: #fdfdfe; }
- .list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus {
- color: #818182;
- background-color: #ececf6; }
- .list-group-item-light.list-group-item-action.active {
- color: #fff;
- background-color: #818182;
- border-color: #818182; }
-
-.list-group-item-dark {
- color: #1b1e21;
- background-color: #c6c8ca; }
- .list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus {
- color: #1b1e21;
- background-color: #b9bbbe; }
- .list-group-item-dark.list-group-item-action.active {
- color: #fff;
- background-color: #1b1e21;
- border-color: #1b1e21; }
-
-.close {
- float: right;
- font-size: 1.5rem;
- font-weight: 700;
- line-height: 1;
- color: #000;
- text-shadow: 0 1px 0 #fff;
- opacity: .5; }
- .close:not(:disabled):not(.disabled) {
- cursor: pointer; }
- .close:not(:disabled):not(.disabled):hover, .close:not(:disabled):not(.disabled):focus {
- color: #000;
- text-decoration: none;
- opacity: .75; }
-
-button.close {
- padding: 0;
- background-color: transparent;
- border: 0;
- -webkit-appearance: none; }
-
-.modal-open {
- overflow: hidden; }
- .modal-open .modal {
- overflow-x: hidden;
- overflow-y: auto; }
-
-.modal {
- position: fixed;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- z-index: 1050;
- display: none;
- overflow: hidden;
- outline: 0; }
-
-.modal-dialog {
- position: relative;
- width: auto;
- margin: 0.5rem;
- pointer-events: none; }
- .modal.fade .modal-dialog {
- transition: transform 0.3s ease-out;
- transform: translate(0, -25%); }
- @media screen and (prefers-reduced-motion: reduce) {
- .modal.fade .modal-dialog {
- transition: none; } }
- .modal.show .modal-dialog {
- transform: translate(0, 0); }
-
-.modal-dialog-centered {
- display: flex;
- align-items: center;
- min-height: calc(100% - (0.5rem * 2)); }
- .modal-dialog-centered::before {
- display: block;
- height: calc(100vh - (0.5rem * 2));
- content: ""; }
-
-.modal-content {
- position: relative;
- display: flex;
- flex-direction: column;
- width: 100%;
- pointer-events: auto;
- background-color: #fff;
- background-clip: padding-box;
- border: 1px solid rgba(0, 0, 0, 0.2);
- border-radius: 0.3rem;
- outline: 0; }
-
-.modal-backdrop {
- position: fixed;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- z-index: 1040;
- background-color: #000; }
- .modal-backdrop.fade {
- opacity: 0; }
- .modal-backdrop.show {
- opacity: 0.5; }
-
-.modal-header {
- display: flex;
- align-items: flex-start;
- justify-content: space-between;
- padding: 1rem;
- border-bottom: 1px solid #e9ecef;
- border-top-left-radius: 0.3rem;
- border-top-right-radius: 0.3rem; }
- .modal-header .close {
- padding: 1rem;
- margin: -1rem -1rem -1rem auto; }
-
-.modal-title {
- margin-bottom: 0;
- line-height: 1.5; }
-
-.modal-body {
- position: relative;
- flex: 1 1 auto;
- padding: 1rem; }
-
-.modal-footer {
- display: flex;
- align-items: center;
- justify-content: flex-end;
- padding: 1rem;
- border-top: 1px solid #e9ecef; }
- .modal-footer > :not(:first-child) {
- margin-left: .25rem; }
- .modal-footer > :not(:last-child) {
- margin-right: .25rem; }
-
-.modal-scrollbar-measure {
- position: absolute;
- top: -9999px;
- width: 50px;
- height: 50px;
- overflow: scroll; }
-
-@media (min-width: 576px) {
- .modal-dialog {
- max-width: 500px;
- margin: 1.75rem auto; }
-
- .modal-dialog-centered {
- min-height: calc(100% - (1.75rem * 2)); }
- .modal-dialog-centered::before {
- height: calc(100vh - (1.75rem * 2)); }
-
- .modal-sm {
- max-width: 300px; } }
-@media (min-width: 992px) {
- .modal-lg {
- max-width: 800px; } }
-.tooltip {
- position: absolute;
- z-index: 1070;
- display: block;
- margin: 0;
- font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
- font-style: normal;
- font-weight: 400;
- line-height: 1.5;
- text-align: left;
- text-align: start;
- text-decoration: none;
- text-shadow: none;
- text-transform: none;
- letter-spacing: normal;
- word-break: normal;
- word-spacing: normal;
- white-space: normal;
- line-break: auto;
- font-size: 0.875rem;
- word-wrap: break-word;
- opacity: 0; }
- .tooltip.show {
- opacity: 0.9; }
- .tooltip .arrow {
- position: absolute;
- display: block;
- width: 0.8rem;
- height: 0.4rem; }
- .tooltip .arrow::before {
- position: absolute;
- content: "";
- border-color: transparent;
- border-style: solid; }
-
-.bs-tooltip-top, .bs-tooltip-auto[x-placement^="top"] {
- padding: 0.4rem 0; }
- .bs-tooltip-top .arrow, .bs-tooltip-auto[x-placement^="top"] .arrow {
- bottom: 0; }
- .bs-tooltip-top .arrow::before, .bs-tooltip-auto[x-placement^="top"] .arrow::before {
- top: 0;
- border-width: 0.4rem 0.4rem 0;
- border-top-color: #000; }
-
-.bs-tooltip-right, .bs-tooltip-auto[x-placement^="right"] {
- padding: 0 0.4rem; }
- .bs-tooltip-right .arrow, .bs-tooltip-auto[x-placement^="right"] .arrow {
- left: 0;
- width: 0.4rem;
- height: 0.8rem; }
- .bs-tooltip-right .arrow::before, .bs-tooltip-auto[x-placement^="right"] .arrow::before {
- right: 0;
- border-width: 0.4rem 0.4rem 0.4rem 0;
- border-right-color: #000; }
-
-.bs-tooltip-bottom, .bs-tooltip-auto[x-placement^="bottom"] {
- padding: 0.4rem 0; }
- .bs-tooltip-bottom .arrow, .bs-tooltip-auto[x-placement^="bottom"] .arrow {
- top: 0; }
- .bs-tooltip-bottom .arrow::before, .bs-tooltip-auto[x-placement^="bottom"] .arrow::before {
- bottom: 0;
- border-width: 0 0.4rem 0.4rem;
- border-bottom-color: #000; }
-
-.bs-tooltip-left, .bs-tooltip-auto[x-placement^="left"] {
- padding: 0 0.4rem; }
- .bs-tooltip-left .arrow, .bs-tooltip-auto[x-placement^="left"] .arrow {
- right: 0;
- width: 0.4rem;
- height: 0.8rem; }
- .bs-tooltip-left .arrow::before, .bs-tooltip-auto[x-placement^="left"] .arrow::before {
- left: 0;
- border-width: 0.4rem 0 0.4rem 0.4rem;
- border-left-color: #000; }
-
-.tooltip-inner {
- max-width: 200px;
- padding: 0.25rem 0.5rem;
- color: #fff;
- text-align: center;
- background-color: #000;
- border-radius: 0.25rem; }
-
-.popover {
- position: absolute;
- top: 0;
- left: 0;
- z-index: 1060;
- display: block;
- max-width: 276px;
- font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
- font-style: normal;
- font-weight: 400;
- line-height: 1.5;
- text-align: left;
- text-align: start;
- text-decoration: none;
- text-shadow: none;
- text-transform: none;
- letter-spacing: normal;
- word-break: normal;
- word-spacing: normal;
- white-space: normal;
- line-break: auto;
- font-size: 0.875rem;
- word-wrap: break-word;
- background-color: #fff;
- background-clip: padding-box;
- border: 1px solid rgba(0, 0, 0, 0.2);
- border-radius: 0.3rem; }
- .popover .arrow {
- position: absolute;
- display: block;
- width: 1rem;
- height: 0.5rem;
- margin: 0 0.3rem; }
- .popover .arrow::before, .popover .arrow::after {
- position: absolute;
- display: block;
- content: "";
- border-color: transparent;
- border-style: solid; }
-
-.bs-popover-top, .bs-popover-auto[x-placement^="top"] {
- margin-bottom: 0.5rem; }
- .bs-popover-top .arrow, .bs-popover-auto[x-placement^="top"] .arrow {
- bottom: calc((0.5rem + 1px) * -1); }
- .bs-popover-top .arrow::before, .bs-popover-auto[x-placement^="top"] .arrow::before,
- .bs-popover-top .arrow::after,
- .bs-popover-auto[x-placement^="top"] .arrow::after {
- border-width: 0.5rem 0.5rem 0; }
- .bs-popover-top .arrow::before, .bs-popover-auto[x-placement^="top"] .arrow::before {
- bottom: 0;
- border-top-color: rgba(0, 0, 0, 0.25); }
- .bs-popover-top .arrow::after, .bs-popover-auto[x-placement^="top"] .arrow::after {
- bottom: 1px;
- border-top-color: #fff; }
-
-.bs-popover-right, .bs-popover-auto[x-placement^="right"] {
- margin-left: 0.5rem; }
- .bs-popover-right .arrow, .bs-popover-auto[x-placement^="right"] .arrow {
- left: calc((0.5rem + 1px) * -1);
- width: 0.5rem;
- height: 1rem;
- margin: 0.3rem 0; }
- .bs-popover-right .arrow::before, .bs-popover-auto[x-placement^="right"] .arrow::before,
- .bs-popover-right .arrow::after,
- .bs-popover-auto[x-placement^="right"] .arrow::after {
- border-width: 0.5rem 0.5rem 0.5rem 0; }
- .bs-popover-right .arrow::before, .bs-popover-auto[x-placement^="right"] .arrow::before {
- left: 0;
- border-right-color: rgba(0, 0, 0, 0.25); }
- .bs-popover-right .arrow::after, .bs-popover-auto[x-placement^="right"] .arrow::after {
- left: 1px;
- border-right-color: #fff; }
-
-.bs-popover-bottom, .bs-popover-auto[x-placement^="bottom"] {
- margin-top: 0.5rem; }
- .bs-popover-bottom .arrow, .bs-popover-auto[x-placement^="bottom"] .arrow {
- top: calc((0.5rem + 1px) * -1); }
- .bs-popover-bottom .arrow::before, .bs-popover-auto[x-placement^="bottom"] .arrow::before,
- .bs-popover-bottom .arrow::after,
- .bs-popover-auto[x-placement^="bottom"] .arrow::after {
- border-width: 0 0.5rem 0.5rem 0.5rem; }
- .bs-popover-bottom .arrow::before, .bs-popover-auto[x-placement^="bottom"] .arrow::before {
- top: 0;
- border-bottom-color: rgba(0, 0, 0, 0.25); }
- .bs-popover-bottom .arrow::after, .bs-popover-auto[x-placement^="bottom"] .arrow::after {
- top: 1px;
- border-bottom-color: #fff; }
- .bs-popover-bottom .popover-header::before, .bs-popover-auto[x-placement^="bottom"] .popover-header::before {
- position: absolute;
- top: 0;
- left: 50%;
- display: block;
- width: 1rem;
- margin-left: -0.5rem;
- content: "";
- border-bottom: 1px solid #f7f7f7; }
-
-.bs-popover-left, .bs-popover-auto[x-placement^="left"] {
- margin-right: 0.5rem; }
- .bs-popover-left .arrow, .bs-popover-auto[x-placement^="left"] .arrow {
- right: calc((0.5rem + 1px) * -1);
- width: 0.5rem;
- height: 1rem;
- margin: 0.3rem 0; }
- .bs-popover-left .arrow::before, .bs-popover-auto[x-placement^="left"] .arrow::before,
- .bs-popover-left .arrow::after,
- .bs-popover-auto[x-placement^="left"] .arrow::after {
- border-width: 0.5rem 0 0.5rem 0.5rem; }
- .bs-popover-left .arrow::before, .bs-popover-auto[x-placement^="left"] .arrow::before {
- right: 0;
- border-left-color: rgba(0, 0, 0, 0.25); }
- .bs-popover-left .arrow::after, .bs-popover-auto[x-placement^="left"] .arrow::after {
- right: 1px;
- border-left-color: #fff; }
-
-.popover-header {
- padding: 0.5rem 0.75rem;
- margin-bottom: 0;
- font-size: 1rem;
- color: inherit;
- background-color: #f7f7f7;
- border-bottom: 1px solid #ebebeb;
- border-top-left-radius: calc(0.3rem - 1px);
- border-top-right-radius: calc(0.3rem - 1px); }
- .popover-header:empty {
- display: none; }
-
-.popover-body {
- padding: 0.5rem 0.75rem;
- color: #212529; }
-
-.carousel {
- position: relative; }
-
-.carousel-inner {
- position: relative;
- width: 100%;
- overflow: hidden; }
-
-.carousel-item {
- position: relative;
- display: none;
- align-items: center;
- width: 100%;
- backface-visibility: hidden;
- perspective: 1000px; }
-
-.carousel-item.active,
-.carousel-item-next,
-.carousel-item-prev {
- display: block;
- transition: transform 0.6s ease; }
- @media screen and (prefers-reduced-motion: reduce) {
- .carousel-item.active,
- .carousel-item-next,
- .carousel-item-prev {
- transition: none; } }
-
-.carousel-item-next,
-.carousel-item-prev {
- position: absolute;
- top: 0; }
-
-.carousel-item-next.carousel-item-left,
-.carousel-item-prev.carousel-item-right {
- transform: translateX(0); }
- @supports (transform-style: preserve-3d) {
- .carousel-item-next.carousel-item-left,
- .carousel-item-prev.carousel-item-right {
- transform: translate3d(0, 0, 0); } }
-
-.carousel-item-next,
-.active.carousel-item-right {
- transform: translateX(100%); }
- @supports (transform-style: preserve-3d) {
- .carousel-item-next,
- .active.carousel-item-right {
- transform: translate3d(100%, 0, 0); } }
-
-.carousel-item-prev,
-.active.carousel-item-left {
- transform: translateX(-100%); }
- @supports (transform-style: preserve-3d) {
- .carousel-item-prev,
- .active.carousel-item-left {
- transform: translate3d(-100%, 0, 0); } }
-
-.carousel-fade .carousel-item {
- opacity: 0;
- transition-duration: .6s;
- transition-property: opacity; }
-.carousel-fade .carousel-item.active,
-.carousel-fade .carousel-item-next.carousel-item-left,
-.carousel-fade .carousel-item-prev.carousel-item-right {
- opacity: 1; }
-.carousel-fade .active.carousel-item-left,
-.carousel-fade .active.carousel-item-right {
- opacity: 0; }
-.carousel-fade .carousel-item-next,
-.carousel-fade .carousel-item-prev,
-.carousel-fade .carousel-item.active,
-.carousel-fade .active.carousel-item-left,
-.carousel-fade .active.carousel-item-prev {
- transform: translateX(0); }
- @supports (transform-style: preserve-3d) {
- .carousel-fade .carousel-item-next,
- .carousel-fade .carousel-item-prev,
- .carousel-fade .carousel-item.active,
- .carousel-fade .active.carousel-item-left,
- .carousel-fade .active.carousel-item-prev {
- transform: translate3d(0, 0, 0); } }
-
-.carousel-control-prev,
-.carousel-control-next {
- position: absolute;
- top: 0;
- bottom: 0;
- display: flex;
- align-items: center;
- justify-content: center;
- width: 15%;
- color: #fff;
- text-align: center;
- opacity: 0.5; }
- .carousel-control-prev:hover, .carousel-control-prev:focus,
- .carousel-control-next:hover,
- .carousel-control-next:focus {
- color: #fff;
- text-decoration: none;
- outline: 0;
- opacity: .9; }
-
-.carousel-control-prev {
- left: 0; }
-
-.carousel-control-next {
- right: 0; }
-
-.carousel-control-prev-icon,
-.carousel-control-next-icon {
- display: inline-block;
- width: 20px;
- height: 20px;
- background: transparent no-repeat center center;
- background-size: 100% 100%; }
-
-.carousel-control-prev-icon {
- background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E"); }
-
-.carousel-control-next-icon {
- background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E"); }
-
-.carousel-indicators {
- position: absolute;
- right: 0;
- bottom: 10px;
- left: 0;
- z-index: 15;
- display: flex;
- justify-content: center;
- padding-left: 0;
- margin-right: 15%;
- margin-left: 15%;
- list-style: none; }
- .carousel-indicators li {
- position: relative;
- flex: 0 1 auto;
- width: 30px;
- height: 3px;
- margin-right: 3px;
- margin-left: 3px;
- text-indent: -999px;
- cursor: pointer;
- background-color: rgba(255, 255, 255, 0.5); }
- .carousel-indicators li::before {
- position: absolute;
- top: -10px;
- left: 0;
- display: inline-block;
- width: 100%;
- height: 10px;
- content: ""; }
- .carousel-indicators li::after {
- position: absolute;
- bottom: -10px;
- left: 0;
- display: inline-block;
- width: 100%;
- height: 10px;
- content: ""; }
- .carousel-indicators .active {
- background-color: #fff; }
-
-.carousel-caption {
- position: absolute;
- right: 15%;
- bottom: 20px;
- left: 15%;
- z-index: 10;
- padding-top: 20px;
- padding-bottom: 20px;
- color: #fff;
- text-align: center; }
-
-.align-baseline {
- vertical-align: baseline !important; }
-
-.align-top {
- vertical-align: top !important; }
-
-.align-middle {
- vertical-align: middle !important; }
-
-.align-bottom {
- vertical-align: bottom !important; }
-
-.align-text-bottom {
- vertical-align: text-bottom !important; }
-
-.align-text-top {
- vertical-align: text-top !important; }
-
-.bg-primary {
- background-color: #007bff !important; }
-
-a.bg-primary:hover, a.bg-primary:focus,
-button.bg-primary:hover,
-button.bg-primary:focus {
- background-color: #0062cc !important; }
-
-.bg-secondary {
- background-color: #6c757d !important; }
-
-a.bg-secondary:hover, a.bg-secondary:focus,
-button.bg-secondary:hover,
-button.bg-secondary:focus {
- background-color: #545b62 !important; }
-
-.bg-success {
- background-color: #28a745 !important; }
-
-a.bg-success:hover, a.bg-success:focus,
-button.bg-success:hover,
-button.bg-success:focus {
- background-color: #1e7e34 !important; }
-
-.bg-info {
- background-color: #17a2b8 !important; }
-
-a.bg-info:hover, a.bg-info:focus,
-button.bg-info:hover,
-button.bg-info:focus {
- background-color: #117a8b !important; }
-
-.bg-warning {
- background-color: #ffc107 !important; }
-
-a.bg-warning:hover, a.bg-warning:focus,
-button.bg-warning:hover,
-button.bg-warning:focus {
- background-color: #d39e00 !important; }
-
-.bg-danger {
- background-color: #dc3545 !important; }
-
-a.bg-danger:hover, a.bg-danger:focus,
-button.bg-danger:hover,
-button.bg-danger:focus {
- background-color: #bd2130 !important; }
-
-.bg-light {
- background-color: #f8f9fa !important; }
-
-a.bg-light:hover, a.bg-light:focus,
-button.bg-light:hover,
-button.bg-light:focus {
- background-color: #dae0e5 !important; }
-
-.bg-dark {
- background-color: #343a40 !important; }
-
-a.bg-dark:hover, a.bg-dark:focus,
-button.bg-dark:hover,
-button.bg-dark:focus {
- background-color: #1d2124 !important; }
-
-.bg-white {
- background-color: #fff !important; }
-
-.bg-transparent {
- background-color: transparent !important; }
-
-.border {
- border: 1px solid #dee2e6 !important; }
-
-.border-top {
- border-top: 1px solid #dee2e6 !important; }
-
-.border-right {
- border-right: 1px solid #dee2e6 !important; }
-
-.border-bottom {
- border-bottom: 1px solid #dee2e6 !important; }
-
-.border-left {
- border-left: 1px solid #dee2e6 !important; }
-
-.border-0 {
- border: 0 !important; }
-
-.border-top-0 {
- border-top: 0 !important; }
-
-.border-right-0 {
- border-right: 0 !important; }
-
-.border-bottom-0 {
- border-bottom: 0 !important; }
-
-.border-left-0 {
- border-left: 0 !important; }
-
-.border-primary {
- border-color: #007bff !important; }
-
-.border-secondary {
- border-color: #6c757d !important; }
-
-.border-success {
- border-color: #28a745 !important; }
-
-.border-info {
- border-color: #17a2b8 !important; }
-
-.border-warning {
- border-color: #ffc107 !important; }
-
-.border-danger {
- border-color: #dc3545 !important; }
-
-.border-light {
- border-color: #f8f9fa !important; }
-
-.border-dark {
- border-color: #343a40 !important; }
-
-.border-white {
- border-color: #fff !important; }
-
-.rounded {
- border-radius: 0.25rem !important; }
-
-.rounded-top {
- border-top-left-radius: 0.25rem !important;
- border-top-right-radius: 0.25rem !important; }
-
-.rounded-right {
- border-top-right-radius: 0.25rem !important;
- border-bottom-right-radius: 0.25rem !important; }
-
-.rounded-bottom {
- border-bottom-right-radius: 0.25rem !important;
- border-bottom-left-radius: 0.25rem !important; }
-
-.rounded-left {
- border-top-left-radius: 0.25rem !important;
- border-bottom-left-radius: 0.25rem !important; }
-
-.rounded-circle {
- border-radius: 50% !important; }
-
-.rounded-0 {
- border-radius: 0 !important; }
-
-.clearfix::after {
- display: block;
- clear: both;
- content: ""; }
-
-.d-none {
- display: none !important; }
-
-.d-inline {
- display: inline !important; }
-
-.d-inline-block {
- display: inline-block !important; }
-
-.d-block {
- display: block !important; }
-
-.d-table {
- display: table !important; }
-
-.d-table-row {
- display: table-row !important; }
-
-.d-table-cell {
- display: table-cell !important; }
-
-.d-flex {
- display: flex !important; }
-
-.d-inline-flex {
- display: inline-flex !important; }
-
-@media (min-width: 576px) {
- .d-sm-none {
- display: none !important; }
-
- .d-sm-inline {
- display: inline !important; }
-
- .d-sm-inline-block {
- display: inline-block !important; }
-
- .d-sm-block {
- display: block !important; }
-
- .d-sm-table {
- display: table !important; }
-
- .d-sm-table-row {
- display: table-row !important; }
-
- .d-sm-table-cell {
- display: table-cell !important; }
-
- .d-sm-flex {
- display: flex !important; }
-
- .d-sm-inline-flex {
- display: inline-flex !important; } }
-@media (min-width: 768px) {
- .d-md-none {
- display: none !important; }
-
- .d-md-inline {
- display: inline !important; }
-
- .d-md-inline-block {
- display: inline-block !important; }
-
- .d-md-block {
- display: block !important; }
-
- .d-md-table {
- display: table !important; }
-
- .d-md-table-row {
- display: table-row !important; }
-
- .d-md-table-cell {
- display: table-cell !important; }
-
- .d-md-flex {
- display: flex !important; }
-
- .d-md-inline-flex {
- display: inline-flex !important; } }
-@media (min-width: 992px) {
- .d-lg-none {
- display: none !important; }
-
- .d-lg-inline {
- display: inline !important; }
-
- .d-lg-inline-block {
- display: inline-block !important; }
-
- .d-lg-block {
- display: block !important; }
-
- .d-lg-table {
- display: table !important; }
-
- .d-lg-table-row {
- display: table-row !important; }
-
- .d-lg-table-cell {
- display: table-cell !important; }
-
- .d-lg-flex {
- display: flex !important; }
-
- .d-lg-inline-flex {
- display: inline-flex !important; } }
-@media (min-width: 1200px) {
- .d-xl-none {
- display: none !important; }
-
- .d-xl-inline {
- display: inline !important; }
-
- .d-xl-inline-block {
- display: inline-block !important; }
-
- .d-xl-block {
- display: block !important; }
-
- .d-xl-table {
- display: table !important; }
-
- .d-xl-table-row {
- display: table-row !important; }
-
- .d-xl-table-cell {
- display: table-cell !important; }
-
- .d-xl-flex {
- display: flex !important; }
-
- .d-xl-inline-flex {
- display: inline-flex !important; } }
-@media print {
- .d-print-none {
- display: none !important; }
-
- .d-print-inline {
- display: inline !important; }
-
- .d-print-inline-block {
- display: inline-block !important; }
-
- .d-print-block {
- display: block !important; }
-
- .d-print-table {
- display: table !important; }
-
- .d-print-table-row {
- display: table-row !important; }
-
- .d-print-table-cell {
- display: table-cell !important; }
-
- .d-print-flex {
- display: flex !important; }
-
- .d-print-inline-flex {
- display: inline-flex !important; } }
-.embed-responsive {
- position: relative;
- display: block;
- width: 100%;
- padding: 0;
- overflow: hidden; }
- .embed-responsive::before {
- display: block;
- content: ""; }
- .embed-responsive .embed-responsive-item,
- .embed-responsive iframe,
- .embed-responsive embed,
- .embed-responsive object,
- .embed-responsive video {
- position: absolute;
- top: 0;
- bottom: 0;
- left: 0;
- width: 100%;
- height: 100%;
- border: 0; }
-
-.embed-responsive-21by9::before {
- padding-top: 42.8571428571%; }
-
-.embed-responsive-16by9::before {
- padding-top: 56.25%; }
-
-.embed-responsive-4by3::before {
- padding-top: 75%; }
-
-.embed-responsive-1by1::before {
- padding-top: 100%; }
-
-.flex-row {
- flex-direction: row !important; }
-
-.flex-column {
- flex-direction: column !important; }
-
-.flex-row-reverse {
- flex-direction: row-reverse !important; }
-
-.flex-column-reverse {
- flex-direction: column-reverse !important; }
-
-.flex-wrap {
- flex-wrap: wrap !important; }
-
-.flex-nowrap {
- flex-wrap: nowrap !important; }
-
-.flex-wrap-reverse {
- flex-wrap: wrap-reverse !important; }
-
-.flex-fill {
- flex: 1 1 auto !important; }
-
-.flex-grow-0 {
- flex-grow: 0 !important; }
-
-.flex-grow-1 {
- flex-grow: 1 !important; }
-
-.flex-shrink-0 {
- flex-shrink: 0 !important; }
-
-.flex-shrink-1 {
- flex-shrink: 1 !important; }
-
-.justify-content-start {
- justify-content: flex-start !important; }
-
-.justify-content-end {
- justify-content: flex-end !important; }
-
-.justify-content-center {
- justify-content: center !important; }
-
-.justify-content-between {
- justify-content: space-between !important; }
-
-.justify-content-around {
- justify-content: space-around !important; }
-
-.align-items-start {
- align-items: flex-start !important; }
-
-.align-items-end {
- align-items: flex-end !important; }
-
-.align-items-center {
- align-items: center !important; }
-
-.align-items-baseline {
- align-items: baseline !important; }
-
-.align-items-stretch {
- align-items: stretch !important; }
-
-.align-content-start {
- align-content: flex-start !important; }
-
-.align-content-end {
- align-content: flex-end !important; }
-
-.align-content-center {
- align-content: center !important; }
-
-.align-content-between {
- align-content: space-between !important; }
-
-.align-content-around {
- align-content: space-around !important; }
-
-.align-content-stretch {
- align-content: stretch !important; }
-
-.align-self-auto {
- align-self: auto !important; }
-
-.align-self-start {
- align-self: flex-start !important; }
-
-.align-self-end {
- align-self: flex-end !important; }
-
-.align-self-center {
- align-self: center !important; }
-
-.align-self-baseline {
- align-self: baseline !important; }
-
-.align-self-stretch {
- align-self: stretch !important; }
-
-@media (min-width: 576px) {
- .flex-sm-row {
- flex-direction: row !important; }
-
- .flex-sm-column {
- flex-direction: column !important; }
-
- .flex-sm-row-reverse {
- flex-direction: row-reverse !important; }
-
- .flex-sm-column-reverse {
- flex-direction: column-reverse !important; }
-
- .flex-sm-wrap {
- flex-wrap: wrap !important; }
-
- .flex-sm-nowrap {
- flex-wrap: nowrap !important; }
-
- .flex-sm-wrap-reverse {
- flex-wrap: wrap-reverse !important; }
-
- .flex-sm-fill {
- flex: 1 1 auto !important; }
-
- .flex-sm-grow-0 {
- flex-grow: 0 !important; }
-
- .flex-sm-grow-1 {
- flex-grow: 1 !important; }
-
- .flex-sm-shrink-0 {
- flex-shrink: 0 !important; }
-
- .flex-sm-shrink-1 {
- flex-shrink: 1 !important; }
-
- .justify-content-sm-start {
- justify-content: flex-start !important; }
-
- .justify-content-sm-end {
- justify-content: flex-end !important; }
-
- .justify-content-sm-center {
- justify-content: center !important; }
-
- .justify-content-sm-between {
- justify-content: space-between !important; }
-
- .justify-content-sm-around {
- justify-content: space-around !important; }
-
- .align-items-sm-start {
- align-items: flex-start !important; }
-
- .align-items-sm-end {
- align-items: flex-end !important; }
-
- .align-items-sm-center {
- align-items: center !important; }
-
- .align-items-sm-baseline {
- align-items: baseline !important; }
-
- .align-items-sm-stretch {
- align-items: stretch !important; }
-
- .align-content-sm-start {
- align-content: flex-start !important; }
-
- .align-content-sm-end {
- align-content: flex-end !important; }
-
- .align-content-sm-center {
- align-content: center !important; }
-
- .align-content-sm-between {
- align-content: space-between !important; }
-
- .align-content-sm-around {
- align-content: space-around !important; }
-
- .align-content-sm-stretch {
- align-content: stretch !important; }
-
- .align-self-sm-auto {
- align-self: auto !important; }
-
- .align-self-sm-start {
- align-self: flex-start !important; }
-
- .align-self-sm-end {
- align-self: flex-end !important; }
-
- .align-self-sm-center {
- align-self: center !important; }
-
- .align-self-sm-baseline {
- align-self: baseline !important; }
-
- .align-self-sm-stretch {
- align-self: stretch !important; } }
-@media (min-width: 768px) {
- .flex-md-row {
- flex-direction: row !important; }
-
- .flex-md-column {
- flex-direction: column !important; }
-
- .flex-md-row-reverse {
- flex-direction: row-reverse !important; }
-
- .flex-md-column-reverse {
- flex-direction: column-reverse !important; }
-
- .flex-md-wrap {
- flex-wrap: wrap !important; }
-
- .flex-md-nowrap {
- flex-wrap: nowrap !important; }
-
- .flex-md-wrap-reverse {
- flex-wrap: wrap-reverse !important; }
-
- .flex-md-fill {
- flex: 1 1 auto !important; }
-
- .flex-md-grow-0 {
- flex-grow: 0 !important; }
-
- .flex-md-grow-1 {
- flex-grow: 1 !important; }
-
- .flex-md-shrink-0 {
- flex-shrink: 0 !important; }
-
- .flex-md-shrink-1 {
- flex-shrink: 1 !important; }
-
- .justify-content-md-start {
- justify-content: flex-start !important; }
-
- .justify-content-md-end {
- justify-content: flex-end !important; }
-
- .justify-content-md-center {
- justify-content: center !important; }
-
- .justify-content-md-between {
- justify-content: space-between !important; }
-
- .justify-content-md-around {
- justify-content: space-around !important; }
-
- .align-items-md-start {
- align-items: flex-start !important; }
-
- .align-items-md-end {
- align-items: flex-end !important; }
-
- .align-items-md-center {
- align-items: center !important; }
-
- .align-items-md-baseline {
- align-items: baseline !important; }
-
- .align-items-md-stretch {
- align-items: stretch !important; }
-
- .align-content-md-start {
- align-content: flex-start !important; }
-
- .align-content-md-end {
- align-content: flex-end !important; }
-
- .align-content-md-center {
- align-content: center !important; }
-
- .align-content-md-between {
- align-content: space-between !important; }
-
- .align-content-md-around {
- align-content: space-around !important; }
-
- .align-content-md-stretch {
- align-content: stretch !important; }
-
- .align-self-md-auto {
- align-self: auto !important; }
-
- .align-self-md-start {
- align-self: flex-start !important; }
-
- .align-self-md-end {
- align-self: flex-end !important; }
-
- .align-self-md-center {
- align-self: center !important; }
-
- .align-self-md-baseline {
- align-self: baseline !important; }
-
- .align-self-md-stretch {
- align-self: stretch !important; } }
-@media (min-width: 992px) {
- .flex-lg-row {
- flex-direction: row !important; }
-
- .flex-lg-column {
- flex-direction: column !important; }
-
- .flex-lg-row-reverse {
- flex-direction: row-reverse !important; }
-
- .flex-lg-column-reverse {
- flex-direction: column-reverse !important; }
-
- .flex-lg-wrap {
- flex-wrap: wrap !important; }
-
- .flex-lg-nowrap {
- flex-wrap: nowrap !important; }
-
- .flex-lg-wrap-reverse {
- flex-wrap: wrap-reverse !important; }
-
- .flex-lg-fill {
- flex: 1 1 auto !important; }
-
- .flex-lg-grow-0 {
- flex-grow: 0 !important; }
-
- .flex-lg-grow-1 {
- flex-grow: 1 !important; }
-
- .flex-lg-shrink-0 {
- flex-shrink: 0 !important; }
-
- .flex-lg-shrink-1 {
- flex-shrink: 1 !important; }
-
- .justify-content-lg-start {
- justify-content: flex-start !important; }
-
- .justify-content-lg-end {
- justify-content: flex-end !important; }
-
- .justify-content-lg-center {
- justify-content: center !important; }
-
- .justify-content-lg-between {
- justify-content: space-between !important; }
-
- .justify-content-lg-around {
- justify-content: space-around !important; }
-
- .align-items-lg-start {
- align-items: flex-start !important; }
-
- .align-items-lg-end {
- align-items: flex-end !important; }
-
- .align-items-lg-center {
- align-items: center !important; }
-
- .align-items-lg-baseline {
- align-items: baseline !important; }
-
- .align-items-lg-stretch {
- align-items: stretch !important; }
-
- .align-content-lg-start {
- align-content: flex-start !important; }
-
- .align-content-lg-end {
- align-content: flex-end !important; }
-
- .align-content-lg-center {
- align-content: center !important; }
-
- .align-content-lg-between {
- align-content: space-between !important; }
-
- .align-content-lg-around {
- align-content: space-around !important; }
-
- .align-content-lg-stretch {
- align-content: stretch !important; }
-
- .align-self-lg-auto {
- align-self: auto !important; }
-
- .align-self-lg-start {
- align-self: flex-start !important; }
-
- .align-self-lg-end {
- align-self: flex-end !important; }
-
- .align-self-lg-center {
- align-self: center !important; }
-
- .align-self-lg-baseline {
- align-self: baseline !important; }
-
- .align-self-lg-stretch {
- align-self: stretch !important; } }
-@media (min-width: 1200px) {
- .flex-xl-row {
- flex-direction: row !important; }
-
- .flex-xl-column {
- flex-direction: column !important; }
-
- .flex-xl-row-reverse {
- flex-direction: row-reverse !important; }
-
- .flex-xl-column-reverse {
- flex-direction: column-reverse !important; }
-
- .flex-xl-wrap {
- flex-wrap: wrap !important; }
-
- .flex-xl-nowrap {
- flex-wrap: nowrap !important; }
-
- .flex-xl-wrap-reverse {
- flex-wrap: wrap-reverse !important; }
-
- .flex-xl-fill {
- flex: 1 1 auto !important; }
-
- .flex-xl-grow-0 {
- flex-grow: 0 !important; }
-
- .flex-xl-grow-1 {
- flex-grow: 1 !important; }
-
- .flex-xl-shrink-0 {
- flex-shrink: 0 !important; }
-
- .flex-xl-shrink-1 {
- flex-shrink: 1 !important; }
-
- .justify-content-xl-start {
- justify-content: flex-start !important; }
-
- .justify-content-xl-end {
- justify-content: flex-end !important; }
-
- .justify-content-xl-center {
- justify-content: center !important; }
-
- .justify-content-xl-between {
- justify-content: space-between !important; }
-
- .justify-content-xl-around {
- justify-content: space-around !important; }
-
- .align-items-xl-start {
- align-items: flex-start !important; }
-
- .align-items-xl-end {
- align-items: flex-end !important; }
-
- .align-items-xl-center {
- align-items: center !important; }
-
- .align-items-xl-baseline {
- align-items: baseline !important; }
-
- .align-items-xl-stretch {
- align-items: stretch !important; }
-
- .align-content-xl-start {
- align-content: flex-start !important; }
-
- .align-content-xl-end {
- align-content: flex-end !important; }
-
- .align-content-xl-center {
- align-content: center !important; }
-
- .align-content-xl-between {
- align-content: space-between !important; }
-
- .align-content-xl-around {
- align-content: space-around !important; }
-
- .align-content-xl-stretch {
- align-content: stretch !important; }
-
- .align-self-xl-auto {
- align-self: auto !important; }
-
- .align-self-xl-start {
- align-self: flex-start !important; }
-
- .align-self-xl-end {
- align-self: flex-end !important; }
-
- .align-self-xl-center {
- align-self: center !important; }
-
- .align-self-xl-baseline {
- align-self: baseline !important; }
-
- .align-self-xl-stretch {
- align-self: stretch !important; } }
-.float-left {
- float: left !important; }
-
-.float-right {
- float: right !important; }
-
-.float-none {
- float: none !important; }
-
-@media (min-width: 576px) {
- .float-sm-left {
- float: left !important; }
-
- .float-sm-right {
- float: right !important; }
-
- .float-sm-none {
- float: none !important; } }
-@media (min-width: 768px) {
- .float-md-left {
- float: left !important; }
-
- .float-md-right {
- float: right !important; }
-
- .float-md-none {
- float: none !important; } }
-@media (min-width: 992px) {
- .float-lg-left {
- float: left !important; }
-
- .float-lg-right {
- float: right !important; }
-
- .float-lg-none {
- float: none !important; } }
-@media (min-width: 1200px) {
- .float-xl-left {
- float: left !important; }
-
- .float-xl-right {
- float: right !important; }
-
- .float-xl-none {
- float: none !important; } }
-.position-static {
- position: static !important; }
-
-.position-relative {
- position: relative !important; }
-
-.position-absolute {
- position: absolute !important; }
-
-.position-fixed {
- position: fixed !important; }
-
-.position-sticky {
- position: sticky !important; }
-
-.fixed-top {
- position: fixed;
- top: 0;
- right: 0;
- left: 0;
- z-index: 1030; }
-
-.fixed-bottom {
- position: fixed;
- right: 0;
- bottom: 0;
- left: 0;
- z-index: 1030; }
-
-@supports (position: sticky) {
- .sticky-top {
- position: sticky;
- top: 0;
- z-index: 1020; } }
-
-.sr-only {
- position: absolute;
- width: 1px;
- height: 1px;
- padding: 0;
- overflow: hidden;
- clip: rect(0, 0, 0, 0);
- white-space: nowrap;
- border: 0; }
-
-.sr-only-focusable:active, .sr-only-focusable:focus {
- position: static;
- width: auto;
- height: auto;
- overflow: visible;
- clip: auto;
- white-space: normal; }
-
-.shadow-sm {
- box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important; }
-
-.shadow {
- box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important; }
-
-.shadow-lg {
- box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important; }
-
-.shadow-none {
- box-shadow: none !important; }
-
-.w-25 {
- width: 25% !important; }
-
-.w-50 {
- width: 50% !important; }
-
-.w-75 {
- width: 75% !important; }
-
-.w-100 {
- width: 100% !important; }
-
-.w-auto {
- width: auto !important; }
-
-.h-25 {
- height: 25% !important; }
-
-.h-50 {
- height: 50% !important; }
-
-.h-75 {
- height: 75% !important; }
-
-.h-100 {
- height: 100% !important; }
-
-.h-auto {
- height: auto !important; }
-
-.mw-100 {
- max-width: 100% !important; }
-
-.mh-100 {
- max-height: 100% !important; }
-
-.m-0 {
- margin: 0 !important; }
-
-.mt-0,
-.my-0 {
- margin-top: 0 !important; }
-
-.mr-0,
-.mx-0 {
- margin-right: 0 !important; }
-
-.mb-0,
-.my-0 {
- margin-bottom: 0 !important; }
-
-.ml-0,
-.mx-0 {
- margin-left: 0 !important; }
-
-.m-1 {
- margin: 0.25rem !important; }
-
-.mt-1,
-.my-1 {
- margin-top: 0.25rem !important; }
-
-.mr-1,
-.mx-1 {
- margin-right: 0.25rem !important; }
-
-.mb-1,
-.my-1 {
- margin-bottom: 0.25rem !important; }
-
-.ml-1,
-.mx-1 {
- margin-left: 0.25rem !important; }
-
-.m-2 {
- margin: 0.5rem !important; }
-
-.mt-2,
-.my-2 {
- margin-top: 0.5rem !important; }
-
-.mr-2,
-.mx-2 {
- margin-right: 0.5rem !important; }
-
-.mb-2,
-.my-2 {
- margin-bottom: 0.5rem !important; }
-
-.ml-2,
-.mx-2 {
- margin-left: 0.5rem !important; }
-
-.m-3 {
- margin: 1rem !important; }
-
-.mt-3,
-.my-3 {
- margin-top: 1rem !important; }
-
-.mr-3,
-.mx-3 {
- margin-right: 1rem !important; }
-
-.mb-3,
-.my-3 {
- margin-bottom: 1rem !important; }
-
-.ml-3,
-.mx-3 {
- margin-left: 1rem !important; }
-
-.m-4 {
- margin: 1.5rem !important; }
-
-.mt-4,
-.my-4 {
- margin-top: 1.5rem !important; }
-
-.mr-4,
-.mx-4 {
- margin-right: 1.5rem !important; }
-
-.mb-4,
-.my-4 {
- margin-bottom: 1.5rem !important; }
-
-.ml-4,
-.mx-4 {
- margin-left: 1.5rem !important; }
-
-.m-5 {
- margin: 3rem !important; }
-
-.mt-5,
-.my-5 {
- margin-top: 3rem !important; }
-
-.mr-5,
-.mx-5 {
- margin-right: 3rem !important; }
-
-.mb-5,
-.my-5 {
- margin-bottom: 3rem !important; }
-
-.ml-5,
-.mx-5 {
- margin-left: 3rem !important; }
-
-.p-0 {
- padding: 0 !important; }
-
-.pt-0,
-.py-0 {
- padding-top: 0 !important; }
-
-.pr-0,
-.px-0 {
- padding-right: 0 !important; }
-
-.pb-0,
-.py-0 {
- padding-bottom: 0 !important; }
-
-.pl-0,
-.px-0 {
- padding-left: 0 !important; }
-
-.p-1 {
- padding: 0.25rem !important; }
-
-.pt-1,
-.py-1 {
- padding-top: 0.25rem !important; }
-
-.pr-1,
-.px-1 {
- padding-right: 0.25rem !important; }
-
-.pb-1,
-.py-1 {
- padding-bottom: 0.25rem !important; }
-
-.pl-1,
-.px-1 {
- padding-left: 0.25rem !important; }
-
-.p-2 {
- padding: 0.5rem !important; }
-
-.pt-2,
-.py-2 {
- padding-top: 0.5rem !important; }
-
-.pr-2,
-.px-2 {
- padding-right: 0.5rem !important; }
-
-.pb-2,
-.py-2 {
- padding-bottom: 0.5rem !important; }
-
-.pl-2,
-.px-2 {
- padding-left: 0.5rem !important; }
-
-.p-3 {
- padding: 1rem !important; }
-
-.pt-3,
-.py-3 {
- padding-top: 1rem !important; }
-
-.pr-3,
-.px-3 {
- padding-right: 1rem !important; }
-
-.pb-3,
-.py-3 {
- padding-bottom: 1rem !important; }
-
-.pl-3,
-.px-3 {
- padding-left: 1rem !important; }
-
-.p-4 {
- padding: 1.5rem !important; }
-
-.pt-4,
-.py-4 {
- padding-top: 1.5rem !important; }
-
-.pr-4,
-.px-4 {
- padding-right: 1.5rem !important; }
-
-.pb-4,
-.py-4 {
- padding-bottom: 1.5rem !important; }
-
-.pl-4,
-.px-4 {
- padding-left: 1.5rem !important; }
-
-.p-5 {
- padding: 3rem !important; }
-
-.pt-5,
-.py-5 {
- padding-top: 3rem !important; }
-
-.pr-5,
-.px-5 {
- padding-right: 3rem !important; }
-
-.pb-5,
-.py-5 {
- padding-bottom: 3rem !important; }
-
-.pl-5,
-.px-5 {
- padding-left: 3rem !important; }
-
-.m-auto {
- margin: auto !important; }
-
-.mt-auto,
-.my-auto {
- margin-top: auto !important; }
-
-.mr-auto,
-.mx-auto {
- margin-right: auto !important; }
-
-.mb-auto,
-.my-auto {
- margin-bottom: auto !important; }
-
-.ml-auto,
-.mx-auto {
- margin-left: auto !important; }
-
-@media (min-width: 576px) {
- .m-sm-0 {
- margin: 0 !important; }
-
- .mt-sm-0,
- .my-sm-0 {
- margin-top: 0 !important; }
-
- .mr-sm-0,
- .mx-sm-0 {
- margin-right: 0 !important; }
-
- .mb-sm-0,
- .my-sm-0 {
- margin-bottom: 0 !important; }
-
- .ml-sm-0,
- .mx-sm-0 {
- margin-left: 0 !important; }
-
- .m-sm-1 {
- margin: 0.25rem !important; }
-
- .mt-sm-1,
- .my-sm-1 {
- margin-top: 0.25rem !important; }
-
- .mr-sm-1,
- .mx-sm-1 {
- margin-right: 0.25rem !important; }
-
- .mb-sm-1,
- .my-sm-1 {
- margin-bottom: 0.25rem !important; }
-
- .ml-sm-1,
- .mx-sm-1 {
- margin-left: 0.25rem !important; }
-
- .m-sm-2 {
- margin: 0.5rem !important; }
-
- .mt-sm-2,
- .my-sm-2 {
- margin-top: 0.5rem !important; }
-
- .mr-sm-2,
- .mx-sm-2 {
- margin-right: 0.5rem !important; }
-
- .mb-sm-2,
- .my-sm-2 {
- margin-bottom: 0.5rem !important; }
-
- .ml-sm-2,
- .mx-sm-2 {
- margin-left: 0.5rem !important; }
-
- .m-sm-3 {
- margin: 1rem !important; }
-
- .mt-sm-3,
- .my-sm-3 {
- margin-top: 1rem !important; }
-
- .mr-sm-3,
- .mx-sm-3 {
- margin-right: 1rem !important; }
-
- .mb-sm-3,
- .my-sm-3 {
- margin-bottom: 1rem !important; }
-
- .ml-sm-3,
- .mx-sm-3 {
- margin-left: 1rem !important; }
-
- .m-sm-4 {
- margin: 1.5rem !important; }
-
- .mt-sm-4,
- .my-sm-4 {
- margin-top: 1.5rem !important; }
-
- .mr-sm-4,
- .mx-sm-4 {
- margin-right: 1.5rem !important; }
-
- .mb-sm-4,
- .my-sm-4 {
- margin-bottom: 1.5rem !important; }
-
- .ml-sm-4,
- .mx-sm-4 {
- margin-left: 1.5rem !important; }
-
- .m-sm-5 {
- margin: 3rem !important; }
-
- .mt-sm-5,
- .my-sm-5 {
- margin-top: 3rem !important; }
-
- .mr-sm-5,
- .mx-sm-5 {
- margin-right: 3rem !important; }
-
- .mb-sm-5,
- .my-sm-5 {
- margin-bottom: 3rem !important; }
-
- .ml-sm-5,
- .mx-sm-5 {
- margin-left: 3rem !important; }
-
- .p-sm-0 {
- padding: 0 !important; }
-
- .pt-sm-0,
- .py-sm-0 {
- padding-top: 0 !important; }
-
- .pr-sm-0,
- .px-sm-0 {
- padding-right: 0 !important; }
-
- .pb-sm-0,
- .py-sm-0 {
- padding-bottom: 0 !important; }
-
- .pl-sm-0,
- .px-sm-0 {
- padding-left: 0 !important; }
-
- .p-sm-1 {
- padding: 0.25rem !important; }
-
- .pt-sm-1,
- .py-sm-1 {
- padding-top: 0.25rem !important; }
-
- .pr-sm-1,
- .px-sm-1 {
- padding-right: 0.25rem !important; }
-
- .pb-sm-1,
- .py-sm-1 {
- padding-bottom: 0.25rem !important; }
-
- .pl-sm-1,
- .px-sm-1 {
- padding-left: 0.25rem !important; }
-
- .p-sm-2 {
- padding: 0.5rem !important; }
-
- .pt-sm-2,
- .py-sm-2 {
- padding-top: 0.5rem !important; }
-
- .pr-sm-2,
- .px-sm-2 {
- padding-right: 0.5rem !important; }
-
- .pb-sm-2,
- .py-sm-2 {
- padding-bottom: 0.5rem !important; }
-
- .pl-sm-2,
- .px-sm-2 {
- padding-left: 0.5rem !important; }
-
- .p-sm-3 {
- padding: 1rem !important; }
-
- .pt-sm-3,
- .py-sm-3 {
- padding-top: 1rem !important; }
-
- .pr-sm-3,
- .px-sm-3 {
- padding-right: 1rem !important; }
-
- .pb-sm-3,
- .py-sm-3 {
- padding-bottom: 1rem !important; }
-
- .pl-sm-3,
- .px-sm-3 {
- padding-left: 1rem !important; }
-
- .p-sm-4 {
- padding: 1.5rem !important; }
-
- .pt-sm-4,
- .py-sm-4 {
- padding-top: 1.5rem !important; }
-
- .pr-sm-4,
- .px-sm-4 {
- padding-right: 1.5rem !important; }
-
- .pb-sm-4,
- .py-sm-4 {
- padding-bottom: 1.5rem !important; }
-
- .pl-sm-4,
- .px-sm-4 {
- padding-left: 1.5rem !important; }
-
- .p-sm-5 {
- padding: 3rem !important; }
-
- .pt-sm-5,
- .py-sm-5 {
- padding-top: 3rem !important; }
-
- .pr-sm-5,
- .px-sm-5 {
- padding-right: 3rem !important; }
-
- .pb-sm-5,
- .py-sm-5 {
- padding-bottom: 3rem !important; }
-
- .pl-sm-5,
- .px-sm-5 {
- padding-left: 3rem !important; }
-
- .m-sm-auto {
- margin: auto !important; }
-
- .mt-sm-auto,
- .my-sm-auto {
- margin-top: auto !important; }
-
- .mr-sm-auto,
- .mx-sm-auto {
- margin-right: auto !important; }
-
- .mb-sm-auto,
- .my-sm-auto {
- margin-bottom: auto !important; }
-
- .ml-sm-auto,
- .mx-sm-auto {
- margin-left: auto !important; } }
-@media (min-width: 768px) {
- .m-md-0 {
- margin: 0 !important; }
-
- .mt-md-0,
- .my-md-0 {
- margin-top: 0 !important; }
-
- .mr-md-0,
- .mx-md-0 {
- margin-right: 0 !important; }
-
- .mb-md-0,
- .my-md-0 {
- margin-bottom: 0 !important; }
-
- .ml-md-0,
- .mx-md-0 {
- margin-left: 0 !important; }
-
- .m-md-1 {
- margin: 0.25rem !important; }
-
- .mt-md-1,
- .my-md-1 {
- margin-top: 0.25rem !important; }
-
- .mr-md-1,
- .mx-md-1 {
- margin-right: 0.25rem !important; }
-
- .mb-md-1,
- .my-md-1 {
- margin-bottom: 0.25rem !important; }
-
- .ml-md-1,
- .mx-md-1 {
- margin-left: 0.25rem !important; }
-
- .m-md-2 {
- margin: 0.5rem !important; }
-
- .mt-md-2,
- .my-md-2 {
- margin-top: 0.5rem !important; }
-
- .mr-md-2,
- .mx-md-2 {
- margin-right: 0.5rem !important; }
-
- .mb-md-2,
- .my-md-2 {
- margin-bottom: 0.5rem !important; }
-
- .ml-md-2,
- .mx-md-2 {
- margin-left: 0.5rem !important; }
-
- .m-md-3 {
- margin: 1rem !important; }
-
- .mt-md-3,
- .my-md-3 {
- margin-top: 1rem !important; }
-
- .mr-md-3,
- .mx-md-3 {
- margin-right: 1rem !important; }
-
- .mb-md-3,
- .my-md-3 {
- margin-bottom: 1rem !important; }
-
- .ml-md-3,
- .mx-md-3 {
- margin-left: 1rem !important; }
-
- .m-md-4 {
- margin: 1.5rem !important; }
-
- .mt-md-4,
- .my-md-4 {
- margin-top: 1.5rem !important; }
-
- .mr-md-4,
- .mx-md-4 {
- margin-right: 1.5rem !important; }
-
- .mb-md-4,
- .my-md-4 {
- margin-bottom: 1.5rem !important; }
-
- .ml-md-4,
- .mx-md-4 {
- margin-left: 1.5rem !important; }
-
- .m-md-5 {
- margin: 3rem !important; }
-
- .mt-md-5,
- .my-md-5 {
- margin-top: 3rem !important; }
-
- .mr-md-5,
- .mx-md-5 {
- margin-right: 3rem !important; }
-
- .mb-md-5,
- .my-md-5 {
- margin-bottom: 3rem !important; }
-
- .ml-md-5,
- .mx-md-5 {
- margin-left: 3rem !important; }
-
- .p-md-0 {
- padding: 0 !important; }
-
- .pt-md-0,
- .py-md-0 {
- padding-top: 0 !important; }
-
- .pr-md-0,
- .px-md-0 {
- padding-right: 0 !important; }
-
- .pb-md-0,
- .py-md-0 {
- padding-bottom: 0 !important; }
-
- .pl-md-0,
- .px-md-0 {
- padding-left: 0 !important; }
-
- .p-md-1 {
- padding: 0.25rem !important; }
-
- .pt-md-1,
- .py-md-1 {
- padding-top: 0.25rem !important; }
-
- .pr-md-1,
- .px-md-1 {
- padding-right: 0.25rem !important; }
-
- .pb-md-1,
- .py-md-1 {
- padding-bottom: 0.25rem !important; }
-
- .pl-md-1,
- .px-md-1 {
- padding-left: 0.25rem !important; }
-
- .p-md-2 {
- padding: 0.5rem !important; }
-
- .pt-md-2,
- .py-md-2 {
- padding-top: 0.5rem !important; }
-
- .pr-md-2,
- .px-md-2 {
- padding-right: 0.5rem !important; }
-
- .pb-md-2,
- .py-md-2 {
- padding-bottom: 0.5rem !important; }
-
- .pl-md-2,
- .px-md-2 {
- padding-left: 0.5rem !important; }
-
- .p-md-3 {
- padding: 1rem !important; }
-
- .pt-md-3,
- .py-md-3 {
- padding-top: 1rem !important; }
-
- .pr-md-3,
- .px-md-3 {
- padding-right: 1rem !important; }
-
- .pb-md-3,
- .py-md-3 {
- padding-bottom: 1rem !important; }
-
- .pl-md-3,
- .px-md-3 {
- padding-left: 1rem !important; }
-
- .p-md-4 {
- padding: 1.5rem !important; }
-
- .pt-md-4,
- .py-md-4 {
- padding-top: 1.5rem !important; }
-
- .pr-md-4,
- .px-md-4 {
- padding-right: 1.5rem !important; }
-
- .pb-md-4,
- .py-md-4 {
- padding-bottom: 1.5rem !important; }
-
- .pl-md-4,
- .px-md-4 {
- padding-left: 1.5rem !important; }
-
- .p-md-5 {
- padding: 3rem !important; }
-
- .pt-md-5,
- .py-md-5 {
- padding-top: 3rem !important; }
-
- .pr-md-5,
- .px-md-5 {
- padding-right: 3rem !important; }
-
- .pb-md-5,
- .py-md-5 {
- padding-bottom: 3rem !important; }
-
- .pl-md-5,
- .px-md-5 {
- padding-left: 3rem !important; }
-
- .m-md-auto {
- margin: auto !important; }
-
- .mt-md-auto,
- .my-md-auto {
- margin-top: auto !important; }
-
- .mr-md-auto,
- .mx-md-auto {
- margin-right: auto !important; }
-
- .mb-md-auto,
- .my-md-auto {
- margin-bottom: auto !important; }
-
- .ml-md-auto,
- .mx-md-auto {
- margin-left: auto !important; } }
-@media (min-width: 992px) {
- .m-lg-0 {
- margin: 0 !important; }
-
- .mt-lg-0,
- .my-lg-0 {
- margin-top: 0 !important; }
-
- .mr-lg-0,
- .mx-lg-0 {
- margin-right: 0 !important; }
-
- .mb-lg-0,
- .my-lg-0 {
- margin-bottom: 0 !important; }
-
- .ml-lg-0,
- .mx-lg-0 {
- margin-left: 0 !important; }
-
- .m-lg-1 {
- margin: 0.25rem !important; }
-
- .mt-lg-1,
- .my-lg-1 {
- margin-top: 0.25rem !important; }
-
- .mr-lg-1,
- .mx-lg-1 {
- margin-right: 0.25rem !important; }
-
- .mb-lg-1,
- .my-lg-1 {
- margin-bottom: 0.25rem !important; }
-
- .ml-lg-1,
- .mx-lg-1 {
- margin-left: 0.25rem !important; }
-
- .m-lg-2 {
- margin: 0.5rem !important; }
-
- .mt-lg-2,
- .my-lg-2 {
- margin-top: 0.5rem !important; }
-
- .mr-lg-2,
- .mx-lg-2 {
- margin-right: 0.5rem !important; }
-
- .mb-lg-2,
- .my-lg-2 {
- margin-bottom: 0.5rem !important; }
-
- .ml-lg-2,
- .mx-lg-2 {
- margin-left: 0.5rem !important; }
-
- .m-lg-3 {
- margin: 1rem !important; }
-
- .mt-lg-3,
- .my-lg-3 {
- margin-top: 1rem !important; }
-
- .mr-lg-3,
- .mx-lg-3 {
- margin-right: 1rem !important; }
-
- .mb-lg-3,
- .my-lg-3 {
- margin-bottom: 1rem !important; }
-
- .ml-lg-3,
- .mx-lg-3 {
- margin-left: 1rem !important; }
-
- .m-lg-4 {
- margin: 1.5rem !important; }
-
- .mt-lg-4,
- .my-lg-4 {
- margin-top: 1.5rem !important; }
-
- .mr-lg-4,
- .mx-lg-4 {
- margin-right: 1.5rem !important; }
-
- .mb-lg-4,
- .my-lg-4 {
- margin-bottom: 1.5rem !important; }
-
- .ml-lg-4,
- .mx-lg-4 {
- margin-left: 1.5rem !important; }
-
- .m-lg-5 {
- margin: 3rem !important; }
-
- .mt-lg-5,
- .my-lg-5 {
- margin-top: 3rem !important; }
-
- .mr-lg-5,
- .mx-lg-5 {
- margin-right: 3rem !important; }
-
- .mb-lg-5,
- .my-lg-5 {
- margin-bottom: 3rem !important; }
-
- .ml-lg-5,
- .mx-lg-5 {
- margin-left: 3rem !important; }
-
- .p-lg-0 {
- padding: 0 !important; }
-
- .pt-lg-0,
- .py-lg-0 {
- padding-top: 0 !important; }
-
- .pr-lg-0,
- .px-lg-0 {
- padding-right: 0 !important; }
-
- .pb-lg-0,
- .py-lg-0 {
- padding-bottom: 0 !important; }
-
- .pl-lg-0,
- .px-lg-0 {
- padding-left: 0 !important; }
-
- .p-lg-1 {
- padding: 0.25rem !important; }
-
- .pt-lg-1,
- .py-lg-1 {
- padding-top: 0.25rem !important; }
-
- .pr-lg-1,
- .px-lg-1 {
- padding-right: 0.25rem !important; }
-
- .pb-lg-1,
- .py-lg-1 {
- padding-bottom: 0.25rem !important; }
-
- .pl-lg-1,
- .px-lg-1 {
- padding-left: 0.25rem !important; }
-
- .p-lg-2 {
- padding: 0.5rem !important; }
-
- .pt-lg-2,
- .py-lg-2 {
- padding-top: 0.5rem !important; }
-
- .pr-lg-2,
- .px-lg-2 {
- padding-right: 0.5rem !important; }
-
- .pb-lg-2,
- .py-lg-2 {
- padding-bottom: 0.5rem !important; }
-
- .pl-lg-2,
- .px-lg-2 {
- padding-left: 0.5rem !important; }
-
- .p-lg-3 {
- padding: 1rem !important; }
-
- .pt-lg-3,
- .py-lg-3 {
- padding-top: 1rem !important; }
-
- .pr-lg-3,
- .px-lg-3 {
- padding-right: 1rem !important; }
-
- .pb-lg-3,
- .py-lg-3 {
- padding-bottom: 1rem !important; }
-
- .pl-lg-3,
- .px-lg-3 {
- padding-left: 1rem !important; }
-
- .p-lg-4 {
- padding: 1.5rem !important; }
-
- .pt-lg-4,
- .py-lg-4 {
- padding-top: 1.5rem !important; }
-
- .pr-lg-4,
- .px-lg-4 {
- padding-right: 1.5rem !important; }
-
- .pb-lg-4,
- .py-lg-4 {
- padding-bottom: 1.5rem !important; }
-
- .pl-lg-4,
- .px-lg-4 {
- padding-left: 1.5rem !important; }
-
- .p-lg-5 {
- padding: 3rem !important; }
-
- .pt-lg-5,
- .py-lg-5 {
- padding-top: 3rem !important; }
-
- .pr-lg-5,
- .px-lg-5 {
- padding-right: 3rem !important; }
-
- .pb-lg-5,
- .py-lg-5 {
- padding-bottom: 3rem !important; }
-
- .pl-lg-5,
- .px-lg-5 {
- padding-left: 3rem !important; }
-
- .m-lg-auto {
- margin: auto !important; }
-
- .mt-lg-auto,
- .my-lg-auto {
- margin-top: auto !important; }
-
- .mr-lg-auto,
- .mx-lg-auto {
- margin-right: auto !important; }
-
- .mb-lg-auto,
- .my-lg-auto {
- margin-bottom: auto !important; }
-
- .ml-lg-auto,
- .mx-lg-auto {
- margin-left: auto !important; } }
-@media (min-width: 1200px) {
- .m-xl-0 {
- margin: 0 !important; }
-
- .mt-xl-0,
- .my-xl-0 {
- margin-top: 0 !important; }
-
- .mr-xl-0,
- .mx-xl-0 {
- margin-right: 0 !important; }
-
- .mb-xl-0,
- .my-xl-0 {
- margin-bottom: 0 !important; }
-
- .ml-xl-0,
- .mx-xl-0 {
- margin-left: 0 !important; }
-
- .m-xl-1 {
- margin: 0.25rem !important; }
-
- .mt-xl-1,
- .my-xl-1 {
- margin-top: 0.25rem !important; }
-
- .mr-xl-1,
- .mx-xl-1 {
- margin-right: 0.25rem !important; }
-
- .mb-xl-1,
- .my-xl-1 {
- margin-bottom: 0.25rem !important; }
-
- .ml-xl-1,
- .mx-xl-1 {
- margin-left: 0.25rem !important; }
-
- .m-xl-2 {
- margin: 0.5rem !important; }
-
- .mt-xl-2,
- .my-xl-2 {
- margin-top: 0.5rem !important; }
-
- .mr-xl-2,
- .mx-xl-2 {
- margin-right: 0.5rem !important; }
-
- .mb-xl-2,
- .my-xl-2 {
- margin-bottom: 0.5rem !important; }
-
- .ml-xl-2,
- .mx-xl-2 {
- margin-left: 0.5rem !important; }
-
- .m-xl-3 {
- margin: 1rem !important; }
-
- .mt-xl-3,
- .my-xl-3 {
- margin-top: 1rem !important; }
-
- .mr-xl-3,
- .mx-xl-3 {
- margin-right: 1rem !important; }
-
- .mb-xl-3,
- .my-xl-3 {
- margin-bottom: 1rem !important; }
-
- .ml-xl-3,
- .mx-xl-3 {
- margin-left: 1rem !important; }
-
- .m-xl-4 {
- margin: 1.5rem !important; }
-
- .mt-xl-4,
- .my-xl-4 {
- margin-top: 1.5rem !important; }
-
- .mr-xl-4,
- .mx-xl-4 {
- margin-right: 1.5rem !important; }
-
- .mb-xl-4,
- .my-xl-4 {
- margin-bottom: 1.5rem !important; }
-
- .ml-xl-4,
- .mx-xl-4 {
- margin-left: 1.5rem !important; }
-
- .m-xl-5 {
- margin: 3rem !important; }
-
- .mt-xl-5,
- .my-xl-5 {
- margin-top: 3rem !important; }
-
- .mr-xl-5,
- .mx-xl-5 {
- margin-right: 3rem !important; }
-
- .mb-xl-5,
- .my-xl-5 {
- margin-bottom: 3rem !important; }
-
- .ml-xl-5,
- .mx-xl-5 {
- margin-left: 3rem !important; }
-
- .p-xl-0 {
- padding: 0 !important; }
-
- .pt-xl-0,
- .py-xl-0 {
- padding-top: 0 !important; }
-
- .pr-xl-0,
- .px-xl-0 {
- padding-right: 0 !important; }
-
- .pb-xl-0,
- .py-xl-0 {
- padding-bottom: 0 !important; }
-
- .pl-xl-0,
- .px-xl-0 {
- padding-left: 0 !important; }
-
- .p-xl-1 {
- padding: 0.25rem !important; }
-
- .pt-xl-1,
- .py-xl-1 {
- padding-top: 0.25rem !important; }
-
- .pr-xl-1,
- .px-xl-1 {
- padding-right: 0.25rem !important; }
-
- .pb-xl-1,
- .py-xl-1 {
- padding-bottom: 0.25rem !important; }
-
- .pl-xl-1,
- .px-xl-1 {
- padding-left: 0.25rem !important; }
-
- .p-xl-2 {
- padding: 0.5rem !important; }
-
- .pt-xl-2,
- .py-xl-2 {
- padding-top: 0.5rem !important; }
-
- .pr-xl-2,
- .px-xl-2 {
- padding-right: 0.5rem !important; }
-
- .pb-xl-2,
- .py-xl-2 {
- padding-bottom: 0.5rem !important; }
-
- .pl-xl-2,
- .px-xl-2 {
- padding-left: 0.5rem !important; }
-
- .p-xl-3 {
- padding: 1rem !important; }
-
- .pt-xl-3,
- .py-xl-3 {
- padding-top: 1rem !important; }
-
- .pr-xl-3,
- .px-xl-3 {
- padding-right: 1rem !important; }
-
- .pb-xl-3,
- .py-xl-3 {
- padding-bottom: 1rem !important; }
-
- .pl-xl-3,
- .px-xl-3 {
- padding-left: 1rem !important; }
-
- .p-xl-4 {
- padding: 1.5rem !important; }
-
- .pt-xl-4,
- .py-xl-4 {
- padding-top: 1.5rem !important; }
-
- .pr-xl-4,
- .px-xl-4 {
- padding-right: 1.5rem !important; }
-
- .pb-xl-4,
- .py-xl-4 {
- padding-bottom: 1.5rem !important; }
-
- .pl-xl-4,
- .px-xl-4 {
- padding-left: 1.5rem !important; }
-
- .p-xl-5 {
- padding: 3rem !important; }
-
- .pt-xl-5,
- .py-xl-5 {
- padding-top: 3rem !important; }
-
- .pr-xl-5,
- .px-xl-5 {
- padding-right: 3rem !important; }
-
- .pb-xl-5,
- .py-xl-5 {
- padding-bottom: 3rem !important; }
-
- .pl-xl-5,
- .px-xl-5 {
- padding-left: 3rem !important; }
-
- .m-xl-auto {
- margin: auto !important; }
-
- .mt-xl-auto,
- .my-xl-auto {
- margin-top: auto !important; }
-
- .mr-xl-auto,
- .mx-xl-auto {
- margin-right: auto !important; }
-
- .mb-xl-auto,
- .my-xl-auto {
- margin-bottom: auto !important; }
-
- .ml-xl-auto,
- .mx-xl-auto {
- margin-left: auto !important; } }
-.text-monospace {
- font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; }
-
-.text-justify {
- text-align: justify !important; }
-
-.text-nowrap {
- white-space: nowrap !important; }
-
-.text-truncate {
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap; }
-
-.text-left {
- text-align: left !important; }
-
-.text-right {
- text-align: right !important; }
-
-.text-center {
- text-align: center !important; }
-
-@media (min-width: 576px) {
- .text-sm-left {
- text-align: left !important; }
-
- .text-sm-right {
- text-align: right !important; }
-
- .text-sm-center {
- text-align: center !important; } }
-@media (min-width: 768px) {
- .text-md-left {
- text-align: left !important; }
-
- .text-md-right {
- text-align: right !important; }
-
- .text-md-center {
- text-align: center !important; } }
-@media (min-width: 992px) {
- .text-lg-left {
- text-align: left !important; }
-
- .text-lg-right {
- text-align: right !important; }
-
- .text-lg-center {
- text-align: center !important; } }
-@media (min-width: 1200px) {
- .text-xl-left {
- text-align: left !important; }
-
- .text-xl-right {
- text-align: right !important; }
-
- .text-xl-center {
- text-align: center !important; } }
-.text-lowercase {
- text-transform: lowercase !important; }
-
-.text-uppercase {
- text-transform: uppercase !important; }
-
-.text-capitalize {
- text-transform: capitalize !important; }
-
-.font-weight-light {
- font-weight: 300 !important; }
-
-.font-weight-normal {
- font-weight: 400 !important; }
-
-.font-weight-bold {
- font-weight: 700 !important; }
-
-.font-italic {
- font-style: italic !important; }
-
-.text-white {
- color: #fff !important; }
-
-.text-primary {
- color: #007bff !important; }
-
-a.text-primary:hover, a.text-primary:focus {
- color: #0062cc !important; }
-
-.text-secondary {
- color: #6c757d !important; }
-
-a.text-secondary:hover, a.text-secondary:focus {
- color: #545b62 !important; }
-
-.text-success {
- color: #28a745 !important; }
-
-a.text-success:hover, a.text-success:focus {
- color: #1e7e34 !important; }
-
-.text-info {
- color: #17a2b8 !important; }
-
-a.text-info:hover, a.text-info:focus {
- color: #117a8b !important; }
-
-.text-warning {
- color: #ffc107 !important; }
-
-a.text-warning:hover, a.text-warning:focus {
- color: #d39e00 !important; }
-
-.text-danger {
- color: #dc3545 !important; }
-
-a.text-danger:hover, a.text-danger:focus {
- color: #bd2130 !important; }
-
-.text-light {
- color: #f8f9fa !important; }
-
-a.text-light:hover, a.text-light:focus {
- color: #dae0e5 !important; }
-
-.text-dark {
- color: #343a40 !important; }
-
-a.text-dark:hover, a.text-dark:focus {
- color: #1d2124 !important; }
-
-.text-body {
- color: #212529 !important; }
-
-.text-muted {
- color: #6c757d !important; }
-
-.text-black-50 {
- color: rgba(0, 0, 0, 0.5) !important; }
-
-.text-white-50 {
- color: rgba(255, 255, 255, 0.5) !important; }
-
-.text-hide {
- font: 0/0 a;
- color: transparent;
- text-shadow: none;
- background-color: transparent;
- border: 0; }
-
-.visible {
- visibility: visible !important; }
-
-.invisible {
- visibility: hidden !important; }
-
-@media print {
- *,
- *::before,
- *::after {
- text-shadow: none !important;
- box-shadow: none !important; }
-
- a:not(.btn) {
- text-decoration: underline; }
-
- abbr[title]::after {
- content: " (" attr(title) ")"; }
-
- pre {
- white-space: pre-wrap !important; }
-
- pre,
- blockquote {
- border: 1px solid #adb5bd;
- page-break-inside: avoid; }
-
- thead {
- display: table-header-group; }
-
- tr,
- img {
- page-break-inside: avoid; }
-
- p,
- h2,
- h3 {
- orphans: 3;
- widows: 3; }
-
- h2,
- h3 {
- page-break-after: avoid; }
-
- @page {
- size: a3; }
- body {
- min-width: 992px !important; }
-
- .container {
- min-width: 992px !important; }
-
- .navbar {
- display: none; }
-
- .badge {
- border: 1px solid #000; }
-
- .table {
- border-collapse: collapse !important; }
- .table td,
- .table th {
- background-color: #fff !important; }
-
- .table-bordered th,
- .table-bordered td {
- border: 1px solid #dee2e6 !important; }
-
- .table-dark {
- color: inherit; }
- .table-dark th,
- .table-dark td,
- .table-dark thead th,
- .table-dark tbody + tbody {
- border-color: #dee2e6; }
-
- .table .thead-dark th {
- color: inherit;
- border-color: #dee2e6; } }
-
-/*# sourceMappingURL=bootstrap.css.map */
diff --git a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/bootstrap.css.map b/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/bootstrap.css.map
deleted file mode 100644
index 73d5a4e..0000000
--- a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/bootstrap.css.map
+++ /dev/null
@@ -1,7 +0,0 @@
-{
-"version": 3,
-"mappings": "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",
-"sources": ["bootstrap.scss","_root.scss","_reboot.scss","_variables.scss","mixins/_hover.scss","_type.scss","mixins/_lists.scss","_images.scss","mixins/_image.scss","mixins/_border-radius.scss","_code.scss","_grid.scss","mixins/_grid.scss","mixins/_breakpoints.scss","_functions.scss","mixins/_grid-framework.scss","_tables.scss","mixins/_table-row.scss","_forms.scss","mixins/_transition.scss","mixins/_forms.scss","mixins/_gradients.scss","_buttons.scss","mixins/_buttons.scss","_transitions.scss","_dropdown.scss","mixins/_caret.scss","mixins/_nav-divider.scss","_button-group.scss","_input-group.scss","_custom-forms.scss","_nav.scss","_navbar.scss","_card.scss","_breadcrumb.scss","_pagination.scss","mixins/_pagination.scss","_badge.scss","mixins/_badge.scss","_jumbotron.scss","_alert.scss","mixins/_alert.scss","_progress.scss","_media.scss","_list-group.scss","mixins/_list-group.scss","_close.scss","_modal.scss","_tooltip.scss","mixins/_reset-text.scss","_popover.scss","_carousel.scss","utilities/_align.scss","mixins/_background-variant.scss","utilities/_background.scss","utilities/_borders.scss","mixins/_clearfix.scss","utilities/_display.scss","utilities/_embed.scss","utilities/_flex.scss","utilities/_float.scss","mixins/_float.scss","utilities/_position.scss","utilities/_screenreaders.scss","mixins/_screen-reader.scss","utilities/_shadows.scss","utilities/_sizing.scss","utilities/_spacing.scss","utilities/_text.scss","mixins/_text-truncate.scss","mixins/_text-emphasis.scss","mixins/_text-hide.scss","utilities/_visibility.scss","mixins/_visibility.scss","_print.scss"],
-"names": [],
-"file": "bootstrap.css"
-}
\ No newline at end of file
diff --git a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/bootstrap.scss b/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/bootstrap.scss
deleted file mode 100644
index e3f7654..0000000
--- a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/bootstrap.scss
+++ /dev/null
@@ -1,42 +0,0 @@
-/*!
- * Bootstrap v4.1.3 (https://getbootstrap.com/)
- * Copyright 2011-2018 The Bootstrap Authors
- * Copyright 2011-2018 Twitter, Inc.
- * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
- */
-
-@import "functions";
-@import "variables";
-@import "mixins";
-@import "root";
-@import "reboot";
-@import "type";
-@import "images";
-@import "code";
-@import "grid";
-@import "tables";
-@import "forms";
-@import "buttons";
-@import "transitions";
-@import "dropdown";
-@import "button-group";
-@import "input-group";
-@import "custom-forms";
-@import "nav";
-@import "navbar";
-@import "card";
-@import "breadcrumb";
-@import "pagination";
-@import "badge";
-@import "jumbotron";
-@import "alert";
-@import "progress";
-@import "media";
-@import "list-group";
-@import "close";
-@import "modal";
-@import "tooltip";
-@import "popover";
-@import "carousel";
-@import "utilities";
-@import "print";
diff --git a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/mixins/_alert.scss b/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/mixins/_alert.scss
deleted file mode 100644
index db5a7eb..0000000
--- a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/mixins/_alert.scss
+++ /dev/null
@@ -1,13 +0,0 @@
-@mixin alert-variant($background, $border, $color) {
- color: $color;
- @include gradient-bg($background);
- border-color: $border;
-
- hr {
- border-top-color: darken($border, 5%);
- }
-
- .alert-link {
- color: darken($color, 10%);
- }
-}
diff --git a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/mixins/_background-variant.scss b/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/mixins/_background-variant.scss
deleted file mode 100644
index 494439d..0000000
--- a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/mixins/_background-variant.scss
+++ /dev/null
@@ -1,21 +0,0 @@
-// stylelint-disable declaration-no-important
-
-// Contextual backgrounds
-
-@mixin bg-variant($parent, $color) {
- #{$parent} {
- background-color: $color !important;
- }
- a#{$parent},
- button#{$parent} {
- @include hover-focus {
- background-color: darken($color, 10%) !important;
- }
- }
-}
-
-@mixin bg-gradient-variant($parent, $color) {
- #{$parent} {
- background: $color linear-gradient(180deg, mix($body-bg, $color, 15%), $color) repeat-x !important;
- }
-}
diff --git a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/mixins/_badge.scss b/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/mixins/_badge.scss
deleted file mode 100644
index eeca0b4..0000000
--- a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/mixins/_badge.scss
+++ /dev/null
@@ -1,12 +0,0 @@
-@mixin badge-variant($bg) {
- color: color-yiq($bg);
- background-color: $bg;
-
- &[href] {
- @include hover-focus {
- color: color-yiq($bg);
- text-decoration: none;
- background-color: darken($bg, 10%);
- }
- }
-}
diff --git a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/mixins/_border-radius.scss b/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/mixins/_border-radius.scss
deleted file mode 100644
index 2024feb..0000000
--- a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/mixins/_border-radius.scss
+++ /dev/null
@@ -1,35 +0,0 @@
-// Single side border-radius
-
-@mixin border-radius($radius: $border-radius) {
- @if $enable-rounded {
- border-radius: $radius;
- }
-}
-
-@mixin border-top-radius($radius) {
- @if $enable-rounded {
- border-top-left-radius: $radius;
- border-top-right-radius: $radius;
- }
-}
-
-@mixin border-right-radius($radius) {
- @if $enable-rounded {
- border-top-right-radius: $radius;
- border-bottom-right-radius: $radius;
- }
-}
-
-@mixin border-bottom-radius($radius) {
- @if $enable-rounded {
- border-bottom-right-radius: $radius;
- border-bottom-left-radius: $radius;
- }
-}
-
-@mixin border-left-radius($radius) {
- @if $enable-rounded {
- border-top-left-radius: $radius;
- border-bottom-left-radius: $radius;
- }
-}
diff --git a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/mixins/_box-shadow.scss b/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/mixins/_box-shadow.scss
deleted file mode 100644
index b2410e5..0000000
--- a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/mixins/_box-shadow.scss
+++ /dev/null
@@ -1,5 +0,0 @@
-@mixin box-shadow($shadow...) {
- @if $enable-shadows {
- box-shadow: $shadow;
- }
-}
diff --git a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/mixins/_breakpoints.scss b/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/mixins/_breakpoints.scss
deleted file mode 100644
index 59f25a2..0000000
--- a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/mixins/_breakpoints.scss
+++ /dev/null
@@ -1,123 +0,0 @@
-// Breakpoint viewport sizes and media queries.
-//
-// Breakpoints are defined as a map of (name: minimum width), order from small to large:
-//
-// (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px)
-//
-// The map defined in the `$grid-breakpoints` global variable is used as the `$breakpoints` argument by default.
-
-// Name of the next breakpoint, or null for the last breakpoint.
-//
-// >> breakpoint-next(sm)
-// md
-// >> breakpoint-next(sm, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px))
-// md
-// >> breakpoint-next(sm, $breakpoint-names: (xs sm md lg xl))
-// md
-@function breakpoint-next($name, $breakpoints: $grid-breakpoints, $breakpoint-names: map-keys($breakpoints)) {
- $n: index($breakpoint-names, $name);
- @return if($n < length($breakpoint-names), nth($breakpoint-names, $n + 1), null);
-}
-
-// Minimum breakpoint width. Null for the smallest (first) breakpoint.
-//
-// >> breakpoint-min(sm, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px))
-// 576px
-@function breakpoint-min($name, $breakpoints: $grid-breakpoints) {
- $min: map-get($breakpoints, $name);
- @return if($min != 0, $min, null);
-}
-
-// Maximum breakpoint width. Null for the largest (last) breakpoint.
-// The maximum value is calculated as the minimum of the next one less 0.02px
-// to work around the limitations of `min-` and `max-` prefixes and viewports with fractional widths.
-// See https://www.w3.org/TR/mediaqueries-4/#mq-min-max
-// Uses 0.02px rather than 0.01px to work around a current rounding bug in Safari.
-// See https://bugs.webkit.org/show_bug.cgi?id=178261
-//
-// >> breakpoint-max(sm, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px))
-// 767.98px
-@function breakpoint-max($name, $breakpoints: $grid-breakpoints) {
- $next: breakpoint-next($name, $breakpoints);
- @return if($next, breakpoint-min($next, $breakpoints) - .02px, null);
-}
-
-// Returns a blank string if smallest breakpoint, otherwise returns the name with a dash in front.
-// Useful for making responsive utilities.
-//
-// >> breakpoint-infix(xs, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px))
-// "" (Returns a blank string)
-// >> breakpoint-infix(sm, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px))
-// "-sm"
-@function breakpoint-infix($name, $breakpoints: $grid-breakpoints) {
- @return if(breakpoint-min($name, $breakpoints) == null, "", "-#{$name}");
-}
-
-// Media of at least the minimum breakpoint width. No query for the smallest breakpoint.
-// Makes the @content apply to the given breakpoint and wider.
-@mixin media-breakpoint-up($name, $breakpoints: $grid-breakpoints) {
- $min: breakpoint-min($name, $breakpoints);
- @if $min {
- @media (min-width: $min) {
- @content;
- }
- } @else {
- @content;
- }
-}
-
-// Media of at most the maximum breakpoint width. No query for the largest breakpoint.
-// Makes the @content apply to the given breakpoint and narrower.
-@mixin media-breakpoint-down($name, $breakpoints: $grid-breakpoints) {
- $max: breakpoint-max($name, $breakpoints);
- @if $max {
- @media (max-width: $max) {
- @content;
- }
- } @else {
- @content;
- }
-}
-
-// Media that spans multiple breakpoint widths.
-// Makes the @content apply between the min and max breakpoints
-@mixin media-breakpoint-between($lower, $upper, $breakpoints: $grid-breakpoints) {
- $min: breakpoint-min($lower, $breakpoints);
- $max: breakpoint-max($upper, $breakpoints);
-
- @if $min != null and $max != null {
- @media (min-width: $min) and (max-width: $max) {
- @content;
- }
- } @else if $max == null {
- @include media-breakpoint-up($lower, $breakpoints) {
- @content;
- }
- } @else if $min == null {
- @include media-breakpoint-down($upper, $breakpoints) {
- @content;
- }
- }
-}
-
-// Media between the breakpoint's minimum and maximum widths.
-// No minimum for the smallest breakpoint, and no maximum for the largest one.
-// Makes the @content apply only to the given breakpoint, not viewports any wider or narrower.
-@mixin media-breakpoint-only($name, $breakpoints: $grid-breakpoints) {
- $min: breakpoint-min($name, $breakpoints);
- $max: breakpoint-max($name, $breakpoints);
-
- @if $min != null and $max != null {
- @media (min-width: $min) and (max-width: $max) {
- @content;
- }
- } @else if $max == null {
- @include media-breakpoint-up($name, $breakpoints) {
- @content;
- }
- } @else if $min == null {
- @include media-breakpoint-down($name, $breakpoints) {
- @content;
- }
- }
-}
diff --git a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/mixins/_buttons.scss b/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/mixins/_buttons.scss
deleted file mode 100644
index 06ad677..0000000
--- a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/mixins/_buttons.scss
+++ /dev/null
@@ -1,109 +0,0 @@
-// Button variants
-//
-// Easily pump out default styles, as well as :hover, :focus, :active,
-// and disabled options for all buttons
-
-@mixin button-variant($background, $border, $hover-background: darken($background, 7.5%), $hover-border: darken($border, 10%), $active-background: darken($background, 10%), $active-border: darken($border, 12.5%)) {
- color: color-yiq($background);
- @include gradient-bg($background);
- border-color: $border;
- @include box-shadow($btn-box-shadow);
-
- @include hover {
- color: color-yiq($hover-background);
- @include gradient-bg($hover-background);
- border-color: $hover-border;
- }
-
- &:focus,
- &.focus {
- // Avoid using mixin so we can pass custom focus shadow properly
- @if $enable-shadows {
- box-shadow: $btn-box-shadow, 0 0 0 $btn-focus-width rgba($border, .5);
- } @else {
- box-shadow: 0 0 0 $btn-focus-width rgba($border, .5);
- }
- }
-
- // Disabled comes first so active can properly restyle
- &.disabled,
- &:disabled {
- color: color-yiq($background);
- background-color: $background;
- border-color: $border;
- }
-
- &:not(:disabled):not(.disabled):active,
- &:not(:disabled):not(.disabled).active,
- .show > &.dropdown-toggle {
- color: color-yiq($active-background);
- background-color: $active-background;
- @if $enable-gradients {
- background-image: none; // Remove the gradient for the pressed/active state
- }
- border-color: $active-border;
-
- &:focus {
- // Avoid using mixin so we can pass custom focus shadow properly
- @if $enable-shadows {
- box-shadow: $btn-active-box-shadow, 0 0 0 $btn-focus-width rgba($border, .5);
- } @else {
- box-shadow: 0 0 0 $btn-focus-width rgba($border, .5);
- }
- }
- }
-}
-
-@mixin button-outline-variant($color, $color-hover: color-yiq($color), $active-background: $color, $active-border: $color) {
- color: $color;
- background-color: transparent;
- background-image: none;
- border-color: $color;
-
- &:hover {
- color: $color-hover;
- background-color: $active-background;
- border-color: $active-border;
- }
-
- &:focus,
- &.focus {
- box-shadow: 0 0 0 $btn-focus-width rgba($color, .5);
- }
-
- &.disabled,
- &:disabled {
- color: $color;
- background-color: transparent;
- }
-
- &:not(:disabled):not(.disabled):active,
- &:not(:disabled):not(.disabled).active,
- .show > &.dropdown-toggle {
- color: color-yiq($active-background);
- background-color: $active-background;
- border-color: $active-border;
-
- &:focus {
- // Avoid using mixin so we can pass custom focus shadow properly
- @if $enable-shadows and $btn-active-box-shadow != none {
- box-shadow: $btn-active-box-shadow, 0 0 0 $btn-focus-width rgba($color, .5);
- } @else {
- box-shadow: 0 0 0 $btn-focus-width rgba($color, .5);
- }
- }
- }
-}
-
-// Button sizes
-@mixin button-size($padding-y, $padding-x, $font-size, $line-height, $border-radius) {
- padding: $padding-y $padding-x;
- font-size: $font-size;
- line-height: $line-height;
- // Manually declare to provide an override to the browser default
- @if $enable-rounded {
- border-radius: $border-radius;
- } @else {
- border-radius: 0;
- }
-}
diff --git a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/mixins/_caret.scss b/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/mixins/_caret.scss
deleted file mode 100644
index 82aea42..0000000
--- a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/mixins/_caret.scss
+++ /dev/null
@@ -1,66 +0,0 @@
-@mixin caret-down {
- border-top: $caret-width solid;
- border-right: $caret-width solid transparent;
- border-bottom: 0;
- border-left: $caret-width solid transparent;
-}
-
-@mixin caret-up {
- border-top: 0;
- border-right: $caret-width solid transparent;
- border-bottom: $caret-width solid;
- border-left: $caret-width solid transparent;
-}
-
-@mixin caret-right {
- border-top: $caret-width solid transparent;
- border-right: 0;
- border-bottom: $caret-width solid transparent;
- border-left: $caret-width solid;
-}
-
-@mixin caret-left {
- border-top: $caret-width solid transparent;
- border-right: $caret-width solid;
- border-bottom: $caret-width solid transparent;
-}
-
-@mixin caret($direction: down) {
- @if $enable-caret {
- &::after {
- display: inline-block;
- width: 0;
- height: 0;
- margin-left: $caret-width * .85;
- vertical-align: $caret-width * .85;
- content: "";
- @if $direction == down {
- @include caret-down;
- } @else if $direction == up {
- @include caret-up;
- } @else if $direction == right {
- @include caret-right;
- }
- }
-
- @if $direction == left {
- &::after {
- display: none;
- }
-
- &::before {
- display: inline-block;
- width: 0;
- height: 0;
- margin-right: $caret-width * .85;
- vertical-align: $caret-width * .85;
- content: "";
- @include caret-left;
- }
- }
-
- &:empty::after {
- margin-left: 0;
- }
- }
-}
diff --git a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/mixins/_clearfix.scss b/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/mixins/_clearfix.scss
deleted file mode 100644
index 11a977b..0000000
--- a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/mixins/_clearfix.scss
+++ /dev/null
@@ -1,7 +0,0 @@
-@mixin clearfix() {
- &::after {
- display: block;
- clear: both;
- content: "";
- }
-}
diff --git a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/mixins/_float.scss b/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/mixins/_float.scss
deleted file mode 100644
index 48fa8b6..0000000
--- a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/mixins/_float.scss
+++ /dev/null
@@ -1,11 +0,0 @@
-// stylelint-disable declaration-no-important
-
-@mixin float-left {
- float: left !important;
-}
-@mixin float-right {
- float: right !important;
-}
-@mixin float-none {
- float: none !important;
-}
diff --git a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/mixins/_forms.scss b/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/mixins/_forms.scss
deleted file mode 100644
index 3a61878..0000000
--- a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/mixins/_forms.scss
+++ /dev/null
@@ -1,147 +0,0 @@
-// Form control focus state
-//
-// Generate a customized focus state and for any input with the specified color,
-// which defaults to the `$input-focus-border-color` variable.
-//
-// We highly encourage you to not customize the default value, but instead use
-// this to tweak colors on an as-needed basis. This aesthetic change is based on
-// WebKit's default styles, but applicable to a wider range of browsers. Its
-// usability and accessibility should be taken into account with any change.
-//
-// Example usage: change the default blue border and shadow to white for better
-// contrast against a dark gray background.
-@mixin form-control-focus() {
- &:focus {
- color: $input-focus-color;
- background-color: $input-focus-bg;
- border-color: $input-focus-border-color;
- outline: 0;
- // Avoid using mixin so we can pass custom focus shadow properly
- @if $enable-shadows {
- box-shadow: $input-box-shadow, $input-focus-box-shadow;
- } @else {
- box-shadow: $input-focus-box-shadow;
- }
- }
-}
-
-
-@mixin form-validation-state($state, $color) {
- .#{$state}-feedback {
- display: none;
- width: 100%;
- margin-top: $form-feedback-margin-top;
- font-size: $form-feedback-font-size;
- color: $color;
- }
-
- .#{$state}-tooltip {
- position: absolute;
- top: 100%;
- z-index: 5;
- display: none;
- max-width: 100%; // Contain to parent when possible
- padding: $tooltip-padding-y $tooltip-padding-x;
- margin-top: .1rem;
- font-size: $tooltip-font-size;
- line-height: $line-height-base;
- color: color-yiq($color);
- background-color: rgba($color, $tooltip-opacity);
- @include border-radius($tooltip-border-radius);
- }
-
- .form-control,
- .custom-select {
- .was-validated &:#{$state},
- &.is-#{$state} {
- border-color: $color;
-
- &:focus {
- border-color: $color;
- box-shadow: 0 0 0 $input-focus-width rgba($color, .25);
- }
-
- ~ .#{$state}-feedback,
- ~ .#{$state}-tooltip {
- display: block;
- }
- }
- }
-
- .form-control-file {
- .was-validated &:#{$state},
- &.is-#{$state} {
- ~ .#{$state}-feedback,
- ~ .#{$state}-tooltip {
- display: block;
- }
- }
- }
-
- .form-check-input {
- .was-validated &:#{$state},
- &.is-#{$state} {
- ~ .form-check-label {
- color: $color;
- }
-
- ~ .#{$state}-feedback,
- ~ .#{$state}-tooltip {
- display: block;
- }
- }
- }
-
- .custom-control-input {
- .was-validated &:#{$state},
- &.is-#{$state} {
- ~ .custom-control-label {
- color: $color;
-
- &::before {
- background-color: lighten($color, 25%);
- }
- }
-
- ~ .#{$state}-feedback,
- ~ .#{$state}-tooltip {
- display: block;
- }
-
- &:checked {
- ~ .custom-control-label::before {
- @include gradient-bg(lighten($color, 10%));
- }
- }
-
- &:focus {
- ~ .custom-control-label::before {
- box-shadow: 0 0 0 1px $body-bg, 0 0 0 $input-focus-width rgba($color, .25);
- }
- }
- }
- }
-
- // custom file
- .custom-file-input {
- .was-validated &:#{$state},
- &.is-#{$state} {
- ~ .custom-file-label {
- border-color: $color;
-
- &::after { border-color: inherit; }
- }
-
- ~ .#{$state}-feedback,
- ~ .#{$state}-tooltip {
- display: block;
- }
-
- &:focus {
- ~ .custom-file-label {
- box-shadow: 0 0 0 $input-focus-width rgba($color, .25);
- }
- }
- }
- }
-}
diff --git a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/mixins/_gradients.scss b/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/mixins/_gradients.scss
deleted file mode 100644
index 88c4d64..0000000
--- a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/mixins/_gradients.scss
+++ /dev/null
@@ -1,45 +0,0 @@
-// Gradients
-
-@mixin gradient-bg($color) {
- @if $enable-gradients {
- background: $color linear-gradient(180deg, mix($body-bg, $color, 15%), $color) repeat-x;
- } @else {
- background-color: $color;
- }
-}
-
-// Horizontal gradient, from left to right
-//
-// Creates two color stops, start and end, by specifying a color and position for each color stop.
-@mixin gradient-x($start-color: $gray-700, $end-color: $gray-800, $start-percent: 0%, $end-percent: 100%) {
- background-image: linear-gradient(to right, $start-color $start-percent, $end-color $end-percent);
- background-repeat: repeat-x;
-}
-
-// Vertical gradient, from top to bottom
-//
-// Creates two color stops, start and end, by specifying a color and position for each color stop.
-@mixin gradient-y($start-color: $gray-700, $end-color: $gray-800, $start-percent: 0%, $end-percent: 100%) {
- background-image: linear-gradient(to bottom, $start-color $start-percent, $end-color $end-percent);
- background-repeat: repeat-x;
-}
-
-@mixin gradient-directional($start-color: $gray-700, $end-color: $gray-800, $deg: 45deg) {
- background-image: linear-gradient($deg, $start-color, $end-color);
- background-repeat: repeat-x;
-}
-@mixin gradient-x-three-colors($start-color: $blue, $mid-color: $purple, $color-stop: 50%, $end-color: $red) {
- background-image: linear-gradient(to right, $start-color, $mid-color $color-stop, $end-color);
- background-repeat: no-repeat;
-}
-@mixin gradient-y-three-colors($start-color: $blue, $mid-color: $purple, $color-stop: 50%, $end-color: $red) {
- background-image: linear-gradient($start-color, $mid-color $color-stop, $end-color);
- background-repeat: no-repeat;
-}
-@mixin gradient-radial($inner-color: $gray-700, $outer-color: $gray-800) {
- background-image: radial-gradient(circle, $inner-color, $outer-color);
- background-repeat: no-repeat;
-}
-@mixin gradient-striped($color: rgba($white, .15), $angle: 45deg) {
- background-image: linear-gradient($angle, $color 25%, transparent 25%, transparent 50%, $color 50%, $color 75%, transparent 75%, transparent);
-}
diff --git a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/mixins/_grid-framework.scss b/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/mixins/_grid-framework.scss
deleted file mode 100644
index 7b37f86..0000000
--- a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/mixins/_grid-framework.scss
+++ /dev/null
@@ -1,67 +0,0 @@
-// Framework grid generation
-//
-// Used only by Bootstrap to generate the correct number of grid classes given
-// any value of `$grid-columns`.
-
-@mixin make-grid-columns($columns: $grid-columns, $gutter: $grid-gutter-width, $breakpoints: $grid-breakpoints) {
- // Common properties for all breakpoints
- %grid-column {
- position: relative;
- width: 100%;
- min-height: 1px; // Prevent columns from collapsing when empty
- padding-right: ($gutter / 2);
- padding-left: ($gutter / 2);
- }
-
- @each $breakpoint in map-keys($breakpoints) {
- $infix: breakpoint-infix($breakpoint, $breakpoints);
-
- // Allow columns to stretch full width below their breakpoints
- @for $i from 1 through $columns {
- .col#{$infix}-#{$i} {
- @extend %grid-column;
- }
- }
- .col#{$infix},
- .col#{$infix}-auto {
- @extend %grid-column;
- }
-
- @include media-breakpoint-up($breakpoint, $breakpoints) {
- // Provide basic `.col-{bp}` classes for equal-width flexbox columns
- .col#{$infix} {
- flex-basis: 0;
- flex-grow: 1;
- max-width: 100%;
- }
- .col#{$infix}-auto {
- flex: 0 0 auto;
- width: auto;
- max-width: none; // Reset earlier grid tiers
- }
-
- @for $i from 1 through $columns {
- .col#{$infix}-#{$i} {
- @include make-col($i, $columns);
- }
- }
-
- .order#{$infix}-first { order: -1; }
-
- .order#{$infix}-last { order: $columns + 1; }
-
- @for $i from 0 through $columns {
- .order#{$infix}-#{$i} { order: $i; }
- }
-
- // `$columns - 1` because offsetting by the width of an entire row isn't possible
- @for $i from 0 through ($columns - 1) {
- @if not ($infix == "" and $i == 0) { // Avoid emitting useless .offset-0
- .offset#{$infix}-#{$i} {
- @include make-col-offset($i, $columns);
- }
- }
- }
- }
- }
-}
diff --git a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/mixins/_grid.scss b/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/mixins/_grid.scss
deleted file mode 100644
index b75ebcb..0000000
--- a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/mixins/_grid.scss
+++ /dev/null
@@ -1,52 +0,0 @@
-/// Grid system
-//
-// Generate semantic grid columns with these mixins.
-
-@mixin make-container() {
- width: 100%;
- padding-right: ($grid-gutter-width / 2);
- padding-left: ($grid-gutter-width / 2);
- margin-right: auto;
- margin-left: auto;
-}
-
-
-// For each breakpoint, define the maximum width of the container in a media query
-@mixin make-container-max-widths($max-widths: $container-max-widths, $breakpoints: $grid-breakpoints) {
- @each $breakpoint, $container-max-width in $max-widths {
- @include media-breakpoint-up($breakpoint, $breakpoints) {
- max-width: $container-max-width;
- }
- }
-}
-
-@mixin make-row() {
- display: flex;
- flex-wrap: wrap;
- margin-right: ($grid-gutter-width / -2);
- margin-left: ($grid-gutter-width / -2);
-}
-
-@mixin make-col-ready() {
- position: relative;
- // Prevent columns from becoming too narrow when at smaller grid tiers by
- // always setting `width: 100%;`. This works because we use `flex` values
- // later on to override this initial width.
- width: 100%;
- min-height: 1px; // Prevent collapsing
- padding-right: ($grid-gutter-width / 2);
- padding-left: ($grid-gutter-width / 2);
-}
-
-@mixin make-col($size, $columns: $grid-columns) {
- flex: 0 0 percentage($size / $columns);
- // Add a `max-width` to ensure content within each column does not blow out
- // the width of the column. Applies to IE10+ and Firefox. Chrome and Safari
- // do not appear to require this.
- max-width: percentage($size / $columns);
-}
-
-@mixin make-col-offset($size, $columns: $grid-columns) {
- $num: $size / $columns;
- margin-left: if($num == 0, 0, percentage($num));
-}
diff --git a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/mixins/_hover.scss b/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/mixins/_hover.scss
deleted file mode 100644
index 192f847..0000000
--- a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/mixins/_hover.scss
+++ /dev/null
@@ -1,37 +0,0 @@
-// Hover mixin and `$enable-hover-media-query` are deprecated.
-//
-// Originally added during our alphas and maintained during betas, this mixin was
-// designed to prevent `:hover` stickiness on iOS-an issue where hover styles
-// would persist after initial touch.
-//
-// For backward compatibility, we've kept these mixins and updated them to
-// always return their regular pseudo-classes instead of a shimmed media query.
-//
-// Issue: https://github.com/twbs/bootstrap/issues/25195
-
-@mixin hover {
- &:hover { @content; }
-}
-
-@mixin hover-focus {
- &:hover,
- &:focus {
- @content;
- }
-}
-
-@mixin plain-hover-focus {
- &,
- &:hover,
- &:focus {
- @content;
- }
-}
-
-@mixin hover-focus-active {
- &:hover,
- &:focus,
- &:active {
- @content;
- }
-}
diff --git a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/mixins/_image.scss b/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/mixins/_image.scss
deleted file mode 100644
index 0544f0d..0000000
--- a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/mixins/_image.scss
+++ /dev/null
@@ -1,36 +0,0 @@
-// Image Mixins
-// - Responsive image
-// - Retina image
-
-
-// Responsive image
-//
-// Keep images from scaling beyond the width of their parents.
-
-@mixin img-fluid {
- // Part 1: Set a maximum relative to the parent
- max-width: 100%;
- // Part 2: Override the height to auto, otherwise images will be stretched
- // when setting a width and height attribute on the img element.
- height: auto;
-}
-
-
-// Retina image
-//
-// Short retina mixin for setting background-image and -size.
-
-// stylelint-disable indentation, media-query-list-comma-newline-after
-@mixin img-retina($file-1x, $file-2x, $width-1x, $height-1x) {
- background-image: url($file-1x);
-
- // Autoprefixer takes care of adding -webkit-min-device-pixel-ratio and -o-min-device-pixel-ratio,
- // but doesn't convert dppx=>dpi.
- // There's no such thing as unprefixed min-device-pixel-ratio since it's nonstandard.
- // Compatibility info: https://caniuse.com/#feat=css-media-resolution
- @media only screen and (min-resolution: 192dpi), // IE9-11 don't support dppx
- only screen and (min-resolution: 2dppx) { // Standardized
- background-image: url($file-2x);
- background-size: $width-1x $height-1x;
- }
-}
diff --git a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/mixins/_list-group.scss b/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/mixins/_list-group.scss
deleted file mode 100644
index cd47a4e..0000000
--- a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/mixins/_list-group.scss
+++ /dev/null
@@ -1,21 +0,0 @@
-// List Groups
-
-@mixin list-group-item-variant($state, $background, $color) {
- .list-group-item-#{$state} {
- color: $color;
- background-color: $background;
-
- &.list-group-item-action {
- @include hover-focus {
- color: $color;
- background-color: darken($background, 5%);
- }
-
- &.active {
- color: $white;
- background-color: $color;
- border-color: $color;
- }
- }
- }
-}
diff --git a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/mixins/_lists.scss b/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/mixins/_lists.scss
deleted file mode 100644
index 2518562..0000000
--- a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/mixins/_lists.scss
+++ /dev/null
@@ -1,7 +0,0 @@
-// Lists
-
-// Unstyled keeps list items block level, just removes default browser padding and list-style
-@mixin list-unstyled {
- padding-left: 0;
- list-style: none;
-}
diff --git a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/mixins/_nav-divider.scss b/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/mixins/_nav-divider.scss
deleted file mode 100644
index 4fb37b6..0000000
--- a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/mixins/_nav-divider.scss
+++ /dev/null
@@ -1,10 +0,0 @@
-// Horizontal dividers
-//
-// Dividers (basically an hr) within dropdowns and nav lists
-
-@mixin nav-divider($color: $nav-divider-color, $margin-y: $nav-divider-margin-y) {
- height: 0;
- margin: $margin-y 0;
- overflow: hidden;
- border-top: 1px solid $color;
-}
diff --git a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/mixins/_pagination.scss b/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/mixins/_pagination.scss
deleted file mode 100644
index ff36eb6..0000000
--- a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/mixins/_pagination.scss
+++ /dev/null
@@ -1,22 +0,0 @@
-// Pagination
-
-@mixin pagination-size($padding-y, $padding-x, $font-size, $line-height, $border-radius) {
- .page-link {
- padding: $padding-y $padding-x;
- font-size: $font-size;
- line-height: $line-height;
- }
-
- .page-item {
- &:first-child {
- .page-link {
- @include border-left-radius($border-radius);
- }
- }
- &:last-child {
- .page-link {
- @include border-right-radius($border-radius);
- }
- }
- }
-}
diff --git a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/mixins/_reset-text.scss b/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/mixins/_reset-text.scss
deleted file mode 100644
index 71edb00..0000000
--- a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/mixins/_reset-text.scss
+++ /dev/null
@@ -1,17 +0,0 @@
-@mixin reset-text {
- font-family: $font-family-base;
- // We deliberately do NOT reset font-size or word-wrap.
- font-style: normal;
- font-weight: $font-weight-normal;
- line-height: $line-height-base;
- text-align: left; // Fallback for where `start` is not supported
- text-align: start; // stylelint-disable-line declaration-block-no-duplicate-properties
- text-decoration: none;
- text-shadow: none;
- text-transform: none;
- letter-spacing: normal;
- word-break: normal;
- word-spacing: normal;
- white-space: normal;
- line-break: auto;
-}
diff --git a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/mixins/_resize.scss b/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/mixins/_resize.scss
deleted file mode 100644
index 66f233a..0000000
--- a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/mixins/_resize.scss
+++ /dev/null
@@ -1,6 +0,0 @@
-// Resize anything
-
-@mixin resizable($direction) {
- overflow: auto; // Per CSS3 UI, `resize` only applies when `overflow` isn't `visible`
- resize: $direction; // Options: horizontal, vertical, both
-}
diff --git a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/mixins/_screen-reader.scss b/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/mixins/_screen-reader.scss
deleted file mode 100644
index 812591b..0000000
--- a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/mixins/_screen-reader.scss
+++ /dev/null
@@ -1,33 +0,0 @@
-// Only display content to screen readers
-//
-// See: https://a11yproject.com/posts/how-to-hide-content/
-// See: https://hugogiraudel.com/2016/10/13/css-hide-and-seek/
-
-@mixin sr-only {
- position: absolute;
- width: 1px;
- height: 1px;
- padding: 0;
- overflow: hidden;
- clip: rect(0, 0, 0, 0);
- white-space: nowrap;
- border: 0;
-}
-
-// Use in conjunction with .sr-only to only display content when it's focused.
-//
-// Useful for "Skip to main content" links; see https://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1
-//
-// Credit: HTML5 Boilerplate
-
-@mixin sr-only-focusable {
- &:active,
- &:focus {
- position: static;
- width: auto;
- height: auto;
- overflow: visible;
- clip: auto;
- white-space: normal;
- }
-}
diff --git a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/mixins/_size.scss b/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/mixins/_size.scss
deleted file mode 100644
index b9dd48e..0000000
--- a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/mixins/_size.scss
+++ /dev/null
@@ -1,6 +0,0 @@
-// Sizing shortcuts
-
-@mixin size($width, $height: $width) {
- width: $width;
- height: $height;
-}
diff --git a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/mixins/_table-row.scss b/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/mixins/_table-row.scss
deleted file mode 100644
index 84f1d30..0000000
--- a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/mixins/_table-row.scss
+++ /dev/null
@@ -1,30 +0,0 @@
-// Tables
-
-@mixin table-row-variant($state, $background) {
- // Exact selectors below required to override `.table-striped` and prevent
- // inheritance to nested tables.
- .table-#{$state} {
- &,
- > th,
- > td {
- background-color: $background;
- }
- }
-
- // Hover states for `.table-hover`
- // Note: this is not available for cells or rows within `thead` or `tfoot`.
- .table-hover {
- $hover-background: darken($background, 5%);
-
- .table-#{$state} {
- @include hover {
- background-color: $hover-background;
-
- > td,
- > th {
- background-color: $hover-background;
- }
- }
- }
- }
-}
diff --git a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/mixins/_text-emphasis.scss b/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/mixins/_text-emphasis.scss
deleted file mode 100644
index 58db3e0..0000000
--- a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/mixins/_text-emphasis.scss
+++ /dev/null
@@ -1,14 +0,0 @@
-// stylelint-disable declaration-no-important
-
-// Typography
-
-@mixin text-emphasis-variant($parent, $color) {
- #{$parent} {
- color: $color !important;
- }
- a#{$parent} {
- @include hover-focus {
- color: darken($color, 10%) !important;
- }
- }
-}
diff --git a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/mixins/_text-hide.scss b/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/mixins/_text-hide.scss
deleted file mode 100644
index 9ffab16..0000000
--- a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/mixins/_text-hide.scss
+++ /dev/null
@@ -1,13 +0,0 @@
-// CSS image replacement
-@mixin text-hide($ignore-warning: false) {
- // stylelint-disable-next-line font-family-no-missing-generic-family-keyword
- font: 0/0 a;
- color: transparent;
- text-shadow: none;
- background-color: transparent;
- border: 0;
-
- @if ($ignore-warning != true) {
- @warn "The `text-hide()` mixin has been deprecated as of v4.1.0. It will be removed entirely in v5.";
- }
-}
diff --git a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/mixins/_text-truncate.scss b/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/mixins/_text-truncate.scss
deleted file mode 100644
index 3504bb1..0000000
--- a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/mixins/_text-truncate.scss
+++ /dev/null
@@ -1,8 +0,0 @@
-// Text truncate
-// Requires inline-block or block for proper styling
-
-@mixin text-truncate() {
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
-}
diff --git a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/mixins/_transition.scss b/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/mixins/_transition.scss
deleted file mode 100644
index f853821..0000000
--- a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/mixins/_transition.scss
+++ /dev/null
@@ -1,13 +0,0 @@
-@mixin transition($transition...) {
- @if $enable-transitions {
- @if length($transition) == 0 {
- transition: $transition-base;
- } @else {
- transition: $transition;
- }
- }
-
- @media screen and (prefers-reduced-motion: reduce) {
- transition: none;
- }
-}
diff --git a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/mixins/_visibility.scss b/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/mixins/_visibility.scss
deleted file mode 100644
index fe523d0..0000000
--- a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/mixins/_visibility.scss
+++ /dev/null
@@ -1,7 +0,0 @@
-// stylelint-disable declaration-no-important
-
-// Visibility
-
-@mixin invisible($visibility) {
- visibility: $visibility !important;
-}
diff --git a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/utilities/_align.scss b/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/utilities/_align.scss
deleted file mode 100644
index 8b7df9f..0000000
--- a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/utilities/_align.scss
+++ /dev/null
@@ -1,8 +0,0 @@
-// stylelint-disable declaration-no-important
-
-.align-baseline { vertical-align: baseline !important; } // Browser default
-.align-top { vertical-align: top !important; }
-.align-middle { vertical-align: middle !important; }
-.align-bottom { vertical-align: bottom !important; }
-.align-text-bottom { vertical-align: text-bottom !important; }
-.align-text-top { vertical-align: text-top !important; }
diff --git a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/utilities/_background.scss b/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/utilities/_background.scss
deleted file mode 100644
index 1f18b2f..0000000
--- a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/utilities/_background.scss
+++ /dev/null
@@ -1,19 +0,0 @@
-// stylelint-disable declaration-no-important
-
-@each $color, $value in $theme-colors {
- @include bg-variant(".bg-#{$color}", $value);
-}
-
-@if $enable-gradients {
- @each $color, $value in $theme-colors {
- @include bg-gradient-variant(".bg-gradient-#{$color}", $value);
- }
-}
-
-.bg-white {
- background-color: $white !important;
-}
-
-.bg-transparent {
- background-color: transparent !important;
-}
diff --git a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/utilities/_borders.scss b/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/utilities/_borders.scss
deleted file mode 100644
index b8832ef..0000000
--- a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/utilities/_borders.scss
+++ /dev/null
@@ -1,59 +0,0 @@
-// stylelint-disable declaration-no-important
-
-//
-// Border
-//
-
-.border { border: $border-width solid $border-color !important; }
-.border-top { border-top: $border-width solid $border-color !important; }
-.border-right { border-right: $border-width solid $border-color !important; }
-.border-bottom { border-bottom: $border-width solid $border-color !important; }
-.border-left { border-left: $border-width solid $border-color !important; }
-
-.border-0 { border: 0 !important; }
-.border-top-0 { border-top: 0 !important; }
-.border-right-0 { border-right: 0 !important; }
-.border-bottom-0 { border-bottom: 0 !important; }
-.border-left-0 { border-left: 0 !important; }
-
-@each $color, $value in $theme-colors {
- .border-#{$color} {
- border-color: $value !important;
- }
-}
-
-.border-white {
- border-color: $white !important;
-}
-
-//
-// Border-radius
-//
-
-.rounded {
- border-radius: $border-radius !important;
-}
-.rounded-top {
- border-top-left-radius: $border-radius !important;
- border-top-right-radius: $border-radius !important;
-}
-.rounded-right {
- border-top-right-radius: $border-radius !important;
- border-bottom-right-radius: $border-radius !important;
-}
-.rounded-bottom {
- border-bottom-right-radius: $border-radius !important;
- border-bottom-left-radius: $border-radius !important;
-}
-.rounded-left {
- border-top-left-radius: $border-radius !important;
- border-bottom-left-radius: $border-radius !important;
-}
-
-.rounded-circle {
- border-radius: 50% !important;
-}
-
-.rounded-0 {
- border-radius: 0 !important;
-}
diff --git a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/utilities/_clearfix.scss b/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/utilities/_clearfix.scss
deleted file mode 100644
index e92522a..0000000
--- a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/utilities/_clearfix.scss
+++ /dev/null
@@ -1,3 +0,0 @@
-.clearfix {
- @include clearfix();
-}
diff --git a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/utilities/_display.scss b/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/utilities/_display.scss
deleted file mode 100644
index 20aeeb5..0000000
--- a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/utilities/_display.scss
+++ /dev/null
@@ -1,38 +0,0 @@
-// stylelint-disable declaration-no-important
-
-//
-// Utilities for common `display` values
-//
-
-@each $breakpoint in map-keys($grid-breakpoints) {
- @include media-breakpoint-up($breakpoint) {
- $infix: breakpoint-infix($breakpoint, $grid-breakpoints);
-
- .d#{$infix}-none { display: none !important; }
- .d#{$infix}-inline { display: inline !important; }
- .d#{$infix}-inline-block { display: inline-block !important; }
- .d#{$infix}-block { display: block !important; }
- .d#{$infix}-table { display: table !important; }
- .d#{$infix}-table-row { display: table-row !important; }
- .d#{$infix}-table-cell { display: table-cell !important; }
- .d#{$infix}-flex { display: flex !important; }
- .d#{$infix}-inline-flex { display: inline-flex !important; }
- }
-}
-
-
-//
-// Utilities for toggling `display` in print
-//
-
-@media print {
- .d-print-none { display: none !important; }
- .d-print-inline { display: inline !important; }
- .d-print-inline-block { display: inline-block !important; }
- .d-print-block { display: block !important; }
- .d-print-table { display: table !important; }
- .d-print-table-row { display: table-row !important; }
- .d-print-table-cell { display: table-cell !important; }
- .d-print-flex { display: flex !important; }
- .d-print-inline-flex { display: inline-flex !important; }
-}
diff --git a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/utilities/_embed.scss b/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/utilities/_embed.scss
deleted file mode 100644
index d3362b6..0000000
--- a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/utilities/_embed.scss
+++ /dev/null
@@ -1,52 +0,0 @@
-// Credit: Nicolas Gallagher and SUIT CSS.
-
-.embed-responsive {
- position: relative;
- display: block;
- width: 100%;
- padding: 0;
- overflow: hidden;
-
- &::before {
- display: block;
- content: "";
- }
-
- .embed-responsive-item,
- iframe,
- embed,
- object,
- video {
- position: absolute;
- top: 0;
- bottom: 0;
- left: 0;
- width: 100%;
- height: 100%;
- border: 0;
- }
-}
-
-.embed-responsive-21by9 {
- &::before {
- padding-top: percentage(9 / 21);
- }
-}
-
-.embed-responsive-16by9 {
- &::before {
- padding-top: percentage(9 / 16);
- }
-}
-
-.embed-responsive-4by3 {
- &::before {
- padding-top: percentage(3 / 4);
- }
-}
-
-.embed-responsive-1by1 {
- &::before {
- padding-top: percentage(1 / 1);
- }
-}
diff --git a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/utilities/_flex.scss b/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/utilities/_flex.scss
deleted file mode 100644
index 3d4266e..0000000
--- a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/utilities/_flex.scss
+++ /dev/null
@@ -1,51 +0,0 @@
-// stylelint-disable declaration-no-important
-
-// Flex variation
-//
-// Custom styles for additional flex alignment options.
-
-@each $breakpoint in map-keys($grid-breakpoints) {
- @include media-breakpoint-up($breakpoint) {
- $infix: breakpoint-infix($breakpoint, $grid-breakpoints);
-
- .flex#{$infix}-row { flex-direction: row !important; }
- .flex#{$infix}-column { flex-direction: column !important; }
- .flex#{$infix}-row-reverse { flex-direction: row-reverse !important; }
- .flex#{$infix}-column-reverse { flex-direction: column-reverse !important; }
-
- .flex#{$infix}-wrap { flex-wrap: wrap !important; }
- .flex#{$infix}-nowrap { flex-wrap: nowrap !important; }
- .flex#{$infix}-wrap-reverse { flex-wrap: wrap-reverse !important; }
- .flex#{$infix}-fill { flex: 1 1 auto !important; }
- .flex#{$infix}-grow-0 { flex-grow: 0 !important; }
- .flex#{$infix}-grow-1 { flex-grow: 1 !important; }
- .flex#{$infix}-shrink-0 { flex-shrink: 0 !important; }
- .flex#{$infix}-shrink-1 { flex-shrink: 1 !important; }
-
- .justify-content#{$infix}-start { justify-content: flex-start !important; }
- .justify-content#{$infix}-end { justify-content: flex-end !important; }
- .justify-content#{$infix}-center { justify-content: center !important; }
- .justify-content#{$infix}-between { justify-content: space-between !important; }
- .justify-content#{$infix}-around { justify-content: space-around !important; }
-
- .align-items#{$infix}-start { align-items: flex-start !important; }
- .align-items#{$infix}-end { align-items: flex-end !important; }
- .align-items#{$infix}-center { align-items: center !important; }
- .align-items#{$infix}-baseline { align-items: baseline !important; }
- .align-items#{$infix}-stretch { align-items: stretch !important; }
-
- .align-content#{$infix}-start { align-content: flex-start !important; }
- .align-content#{$infix}-end { align-content: flex-end !important; }
- .align-content#{$infix}-center { align-content: center !important; }
- .align-content#{$infix}-between { align-content: space-between !important; }
- .align-content#{$infix}-around { align-content: space-around !important; }
- .align-content#{$infix}-stretch { align-content: stretch !important; }
-
- .align-self#{$infix}-auto { align-self: auto !important; }
- .align-self#{$infix}-start { align-self: flex-start !important; }
- .align-self#{$infix}-end { align-self: flex-end !important; }
- .align-self#{$infix}-center { align-self: center !important; }
- .align-self#{$infix}-baseline { align-self: baseline !important; }
- .align-self#{$infix}-stretch { align-self: stretch !important; }
- }
-}
diff --git a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/utilities/_float.scss b/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/utilities/_float.scss
deleted file mode 100644
index 01655e9..0000000
--- a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/utilities/_float.scss
+++ /dev/null
@@ -1,9 +0,0 @@
-@each $breakpoint in map-keys($grid-breakpoints) {
- @include media-breakpoint-up($breakpoint) {
- $infix: breakpoint-infix($breakpoint, $grid-breakpoints);
-
- .float#{$infix}-left { @include float-left; }
- .float#{$infix}-right { @include float-right; }
- .float#{$infix}-none { @include float-none; }
- }
-}
diff --git a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/utilities/_position.scss b/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/utilities/_position.scss
deleted file mode 100644
index 9ecdeeb..0000000
--- a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/utilities/_position.scss
+++ /dev/null
@@ -1,37 +0,0 @@
-// stylelint-disable declaration-no-important
-
-// Common values
-
-// Sass list not in variables since it's not intended for customization.
-// stylelint-disable-next-line scss/dollar-variable-default
-$positions: static, relative, absolute, fixed, sticky;
-
-@each $position in $positions {
- .position-#{$position} { position: $position !important; }
-}
-
-// Shorthand
-
-.fixed-top {
- position: fixed;
- top: 0;
- right: 0;
- left: 0;
- z-index: $zindex-fixed;
-}
-
-.fixed-bottom {
- position: fixed;
- right: 0;
- bottom: 0;
- left: 0;
- z-index: $zindex-fixed;
-}
-
-.sticky-top {
- @supports (position: sticky) {
- position: sticky;
- top: 0;
- z-index: $zindex-sticky;
- }
-}
diff --git a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/utilities/_screenreaders.scss b/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/utilities/_screenreaders.scss
deleted file mode 100644
index 9f26fde..0000000
--- a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/utilities/_screenreaders.scss
+++ /dev/null
@@ -1,11 +0,0 @@
-//
-// Screenreaders
-//
-
-.sr-only {
- @include sr-only();
-}
-
-.sr-only-focusable {
- @include sr-only-focusable();
-}
diff --git a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/utilities/_shadows.scss b/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/utilities/_shadows.scss
deleted file mode 100644
index f5d03fc..0000000
--- a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/utilities/_shadows.scss
+++ /dev/null
@@ -1,6 +0,0 @@
-// stylelint-disable declaration-no-important
-
-.shadow-sm { box-shadow: $box-shadow-sm !important; }
-.shadow { box-shadow: $box-shadow !important; }
-.shadow-lg { box-shadow: $box-shadow-lg !important; }
-.shadow-none { box-shadow: none !important; }
diff --git a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/utilities/_sizing.scss b/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/utilities/_sizing.scss
deleted file mode 100644
index e95a4db..0000000
--- a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/utilities/_sizing.scss
+++ /dev/null
@@ -1,12 +0,0 @@
-// stylelint-disable declaration-no-important
-
-// Width and height
-
-@each $prop, $abbrev in (width: w, height: h) {
- @each $size, $length in $sizes {
- .#{$abbrev}-#{$size} { #{$prop}: $length !important; }
- }
-}
-
-.mw-100 { max-width: 100% !important; }
-.mh-100 { max-height: 100% !important; }
diff --git a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/utilities/_spacing.scss b/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/utilities/_spacing.scss
deleted file mode 100644
index b2e2354..0000000
--- a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/utilities/_spacing.scss
+++ /dev/null
@@ -1,51 +0,0 @@
-// stylelint-disable declaration-no-important
-
-// Margin and Padding
-
-@each $breakpoint in map-keys($grid-breakpoints) {
- @include media-breakpoint-up($breakpoint) {
- $infix: breakpoint-infix($breakpoint, $grid-breakpoints);
-
- @each $prop, $abbrev in (margin: m, padding: p) {
- @each $size, $length in $spacers {
-
- .#{$abbrev}#{$infix}-#{$size} { #{$prop}: $length !important; }
- .#{$abbrev}t#{$infix}-#{$size},
- .#{$abbrev}y#{$infix}-#{$size} {
- #{$prop}-top: $length !important;
- }
- .#{$abbrev}r#{$infix}-#{$size},
- .#{$abbrev}x#{$infix}-#{$size} {
- #{$prop}-right: $length !important;
- }
- .#{$abbrev}b#{$infix}-#{$size},
- .#{$abbrev}y#{$infix}-#{$size} {
- #{$prop}-bottom: $length !important;
- }
- .#{$abbrev}l#{$infix}-#{$size},
- .#{$abbrev}x#{$infix}-#{$size} {
- #{$prop}-left: $length !important;
- }
- }
- }
-
- // Some special margin utils
- .m#{$infix}-auto { margin: auto !important; }
- .mt#{$infix}-auto,
- .my#{$infix}-auto {
- margin-top: auto !important;
- }
- .mr#{$infix}-auto,
- .mx#{$infix}-auto {
- margin-right: auto !important;
- }
- .mb#{$infix}-auto,
- .my#{$infix}-auto {
- margin-bottom: auto !important;
- }
- .ml#{$infix}-auto,
- .mx#{$infix}-auto {
- margin-left: auto !important;
- }
- }
-}
diff --git a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/utilities/_text.scss b/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/utilities/_text.scss
deleted file mode 100644
index 9d96c46..0000000
--- a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/utilities/_text.scss
+++ /dev/null
@@ -1,58 +0,0 @@
-// stylelint-disable declaration-no-important
-
-//
-// Text
-//
-
-.text-monospace { font-family: $font-family-monospace; }
-
-// Alignment
-
-.text-justify { text-align: justify !important; }
-.text-nowrap { white-space: nowrap !important; }
-.text-truncate { @include text-truncate; }
-
-// Responsive alignment
-
-@each $breakpoint in map-keys($grid-breakpoints) {
- @include media-breakpoint-up($breakpoint) {
- $infix: breakpoint-infix($breakpoint, $grid-breakpoints);
-
- .text#{$infix}-left { text-align: left !important; }
- .text#{$infix}-right { text-align: right !important; }
- .text#{$infix}-center { text-align: center !important; }
- }
-}
-
-// Transformation
-
-.text-lowercase { text-transform: lowercase !important; }
-.text-uppercase { text-transform: uppercase !important; }
-.text-capitalize { text-transform: capitalize !important; }
-
-// Weight and italics
-
-.font-weight-light { font-weight: $font-weight-light !important; }
-.font-weight-normal { font-weight: $font-weight-normal !important; }
-.font-weight-bold { font-weight: $font-weight-bold !important; }
-.font-italic { font-style: italic !important; }
-
-// Contextual colors
-
-.text-white { color: $white !important; }
-
-@each $color, $value in $theme-colors {
- @include text-emphasis-variant(".text-#{$color}", $value);
-}
-
-.text-body { color: $body-color !important; }
-.text-muted { color: $text-muted !important; }
-
-.text-black-50 { color: rgba($black, .5) !important; }
-.text-white-50 { color: rgba($white, .5) !important; }
-
-// Misc
-
-.text-hide {
- @include text-hide($ignore-warning: true);
-}
diff --git a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/utilities/_visibility.scss b/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/utilities/_visibility.scss
deleted file mode 100644
index 823406d..0000000
--- a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/scss/utilities/_visibility.scss
+++ /dev/null
@@ -1,11 +0,0 @@
-//
-// Visibility utilities
-//
-
-.visible {
- @include invisible(visible);
-}
-
-.invisible {
- @include invisible(hidden);
-}
diff --git a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/site/_data/breakpoints.yml b/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/site/_data/breakpoints.yml
deleted file mode 100644
index 3c8cfe2..0000000
--- a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/site/_data/breakpoints.yml
+++ /dev/null
@@ -1,29 +0,0 @@
-- breakpoint: xs
- abbr: ""
- name: Extra small
- min-width: 0px
- container: ""
-
-- breakpoint: sm
- abbr: -sm
- name: Small
- min-width: 576px
- container: 540px
-
-- breakpoint: md
- abbr: -md
- name: Medium
- min-width: 768px
- container: 720px
-
-- breakpoint: lg
- abbr: -lg
- name: Large
- min-width: 992px
- container: 960px
-
-- breakpoint: xl
- abbr: -xl
- name: Extra large
- min-width: 1200px
- container: 1140px
diff --git a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/site/_data/browser-bugs.yml b/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/site/_data/browser-bugs.yml
deleted file mode 100644
index ceb2e5f..0000000
--- a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/site/_data/browser-bugs.yml
+++ /dev/null
@@ -1,451 +0,0 @@
--
- browser: >
- Edge
- summary: >
- Visual artifacts in scrollable modal dialogs
- upstream_bug: >
- Edge#9011176
- origin: >
- Bootstrap#20755
-
--
- browser: >
- Edge
- summary: >
- Native browser tooltip for `title` shows on first keyboard focus (in addition to custom tooltip component)
- upstream_bug: >
- Edge#6793560
- origin: >
- Bootstrap#18692
-
--
- browser: >
- Edge
- summary: >
- Hovered element still remains in `:hover` state after scrolling away.
- upstream_bug: >
- Edge#5381673
- origin: >
- Bootstrap#14211
-
--
- browser: >
- Edge
- summary: >
- CSS `border-radius` sometimes causes lines of bleed-through of the `background-color` of the parent element.
- upstream_bug: >
- Edge#3342037
- origin: >
- Bootstrap#16671
-
--
- browser: >
- Edge
- summary: >
- `background` of `
` is only applied to first child cell instead of all cells in the row
- upstream_bug: >
- Edge#5865620
- origin: >
- Bootstrap#18504
-
--
- browser: >
- Edge
- summary: >
- `@-ms-viewport{width: device-width;}` has side-effect of making scrollbars auto-hide
- upstream_bug: >
- Edge#7165383
- origin: >
- Bootstrap#18543
-
--
- browser: >
- Edge
- summary: >
- Background color from lower layer bleeds through transparent border in some cases
- upstream_bug: >
- Edge#6274505
- origin: >
- Bootstrap#18228
-
--
- browser: >
- Edge
- summary: >
- Hovering over descendant SVG element fires `mouseleave` event at ancestor
- upstream_bug: >
- Edge#7787318
- origin: >
- Bootstrap#19670
-
--
- browser: >
- Edge
- summary: >
- Active `position: fixed;` `` flickers when scrolling
- upstream_bug: >
- Edge#8770398
- origin: >
- Bootstrap#20507
-
--
- browser: >
- Firefox
- summary: >
- `.table-bordered` with an empty `` is missing borders.
- upstream_bug: >
- Mozilla#1023761
- origin: >
- Bootstrap#13453
-
--
- browser: >
- Firefox
- summary: >
- If the disabled state of a form control is changed via JavaScript, the normal state doesn't return after refreshing the page.
- upstream_bug: >
- Mozilla#654072
- origin: >
- Bootstrap#793
-
--
- browser: >
- Firefox
- summary: >
- `focus` events should not be fired at the `document` object
- upstream_bug: >
- Mozilla#1228802
- origin: >
- Bootstrap#18365
-
--
- browser: >
- Firefox
- summary: >
- Wide floated table doesn't wrap onto new line
- upstream_bug: >
- Mozilla#1277782
- origin: >
- Bootstrap#19839
-
--
- browser: >
- Firefox
- summary: >
- Mouse sometimes not within element for purposes of `mouseenter`/`mouseleave` when it's within SVG elements
- upstream_bug: >
- Mozilla#577785
- origin: >
- Bootstrap#19670
-
--
- browser: >
- Firefox
- summary: >
- Layout with floated columns breaks when printing
- upstream_bug: >
- Mozilla#1315994
- origin: >
- Bootstrap#21092
-
--
- browser: >
- Firefox (Windows)
- summary: >
- Right border of `` menu is sometimes missing when screen is set to uncommon resolution
- upstream_bug: >
- Mozilla#545685
- origin: >
- Bootstrap#15990
-
--
- browser: >
- Firefox (macOS & Linux)
- summary: >
- Badge widget causes bottom border of Tabs widget to unexpectedly not overlap
- upstream_bug: >
- Mozilla#1259972
- origin: >
- Bootstrap#19626
-
--
- browser: >
- Chrome (Android)
- summary: >
- Tapping on an ` ` in a scrollable overlay doesn't scroll the ` ` into view
- upstream_bug: >
- Chromium#595210
- origin: >
- Bootstrap#17338
-
--
- browser: >
- Chrome (macOS)
- summary: >
- Clicking above ` ` increment button flashes the decrement button.
- upstream_bug: >
- Chromium#419108
- origin: >
- Offshoot of Bootstrap#8350 & Chromium#337668
-
--
- browser: >
- Chrome
- summary: >
- CSS infinite linear animation with alpha transparency leaks memory.
- upstream_bug: >
- Chromium#429375
- origin: >
- Bootstrap#14409
-
--
- browser: >
- Chrome
- summary: >
- `table-cell` borders not overlapping despite `margin-right: -1px`
- upstream_bug: >
- Chromium#749848
- origin: >
- Bootstrap#17438, Bootstrap#14237
-
--
- browser: >
- Chrome
- summary: >
- Clicking scrollbar in `` with overflowed options will select nearby ``
- upstream_bug: >
- Chromium#597642
- origin: >
- Bootstrap#19810
-
--
- browser: >
- Chrome
- summary: >
- Don't make `:hover` sticky on touch-friendly webpages
- upstream_bug: >
- Chromium#370155
- origin: >
- Bootstrap#12832
-
--
- browser: >
- Chrome
- summary: >
- `position: absolute` element that's wider than its column is incorrectly clipped to column boundary
- upstream_bug: >
- Chromium#269061
- origin: >
- Bootstrap#20161
-
--
- browser: >
- Chrome (Windows & Linux)
- summary: >
- Animation glitch when returning to inactive tab after animations occurred while tab was hidden.
- upstream_bug: >
- Chromium#449180
- origin: >
- Bootstrap#15298
-
--
- browser: >
- Chrome
- summary: >
- Significant performance hit for dynamic SVGs with text depending on the number of fonts in `font-family`.
- upstream_bug: >
- Chromium#781344
- origin: >
- Bootstrap#24673
-
--
- browser: >
- Safari
- summary: >
- `rem` units in media queries should be calculated using `font-size: initial`, not the root element's `font-size`
- upstream_bug: >
- WebKit#156684
- origin: >
- Bootstrap#17403
-
--
- browser: >
- Safari
- summary: >
- Link to container with id and tabindex results in container being ignored by VoiceOver (affects skip links)
- upstream_bug: >
- WebKit#163658
- origin: >
- Bootstrap#20732
-
--
- browser: >
- Safari
- summary: >
- CSS `min-width` and `max-width` media features should not round fractional pixel
- upstream_bug: >
- WebKit#178261
- origin: >
- Bootstrap#25166
-
--
- browser: >
- Safari (macOS)
- summary: >
- `px`, `em`, and `rem` should all behave the same in media queries when page zoom is applied
- upstream_bug: >
- WebKit#156687
- origin: >
- Bootstrap#17403
-
--
- browser: >
- Safari (macOS)
- summary: >
- Weird button behavior with some ` ` elements.
- upstream_bug: >
- WebKit#137269, Safari#18834768
- origin: >
- Bootstrap#8350,
- Normalize#283,
- Chromium#337668
-
--
- browser: >
- Safari (macOS)
- summary: >
- Small font size when printing webpage with fixed-width `.container`.
- upstream_bug: >
- WebKit#138192, Safari#19435018
- origin: >
- Bootstrap#14868
-
--
- browser: >
- Safari (iOS)
- summary: >
- `transform: translate3d(0,0,0);` rendering bug.
- upstream_bug: >
- WebKit#138162, Safari#18804973
- origin: >
- Bootstrap#14603
-
--
- browser: >
- Safari (iOS)
- summary: >
- Text input's cursor doesn't move while scrolling the page.
- upstream_bug: >
- WebKit#138201, Safari#18819624
- origin: >
- Bootstrap#14708
-
--
- browser: >
- Safari (iOS)
- summary: >
- Can't move cursor to start of text after entering long string of text into ` `
- upstream_bug: >
- WebKit#148061, Safari#22299624
- origin: >
- Bootstrap#16988
-
--
- browser: >
- Safari (iOS)
- summary: >
- `display: block` causes text of temporal ` `s to become vertically misaligned
- upstream_bug: >
- WebKit#139848, Safari#19434878
- origin: >
- Bootstrap#11266, Bootstrap#13098
-
--
- browser: >
- Safari (iOS)
- summary: >
- Tapping on `` doesn't fire `click` events
- upstream_bug: >
- WebKit#151933
- origin: >
- Bootstrap#16028
-
--
- browser: >
- Safari (iOS)
- summary: >
- `position:fixed` is incorrectly positioned when tab bar is visible on iPhone 6S+ Safari
- upstream_bug: >
- WebKit#153056
- origin: >
- Bootstrap#18859
-
--
- browser: >
- Safari (iOS)
- summary: >
- Tapping into an ` ` within a `position:fixed` element scrolls to the top of the page
- upstream_bug: >
- WebKit#153224, Safari#24235301
- origin: >
- Bootstrap#17497
-
--
- browser: >
- Safari (iOS)
- summary: >
- `` with `overflow:hidden` CSS is scrollable on iOS
- upstream_bug: >
- WebKit#153852
- origin: >
- Bootstrap#14839
-
--
- browser: >
- Safari (iOS)
- summary: >
- Scroll gesture in text field in `position:fixed` element sometimes scrolls `` instead of scrollable ancestor
- upstream_bug: >
- WebKit#153856
- origin: >
- Bootstrap#14839
-
--
- browser: >
- Safari (iOS)
- summary: >
- Modal with `-webkit-overflow-scrolling: touch` doesn't become scrollable after added text makes it taller
- upstream_bug: >
- WebKit#158342
- origin: >
- Bootstrap#17695
-
--
- browser: >
- Safari (iOS)
- summary: >
- Don't make `:hover` sticky on touch-friendly webpages
- upstream_bug: >
- WebKit#158517
- origin: >
- Bootstrap#12832
-
--
- browser: >
- Safari (iOS)
- summary: >
- Element which is `position:fixed` disappears after opening a `` menu
- upstream_bug: >
- WebKit#162362
- origin: >
- Bootstrap#20759
-
--
- browser: >
- Safari (iPad Pro)
- summary: >
- Rendering of descendants of `position: fixed` element gets clipped on iPad Pro in Landscape orientation
- upstream_bug: >
- WebKit#152637, Safari#24030853
- origin: >
- Bootstrap#18738
diff --git a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/site/_data/browser-features.yml b/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/site/_data/browser-features.yml
deleted file mode 100644
index 6c8701f..0000000
--- a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/site/_data/browser-features.yml
+++ /dev/null
@@ -1,139 +0,0 @@
--
- browser: >
- Edge
- summary: >
- Focusable elements should fire focus event / receive :focus styling when they receive Narrator/accessibility focus
- upstream_bug: >
- A11yUserVoice#16717318
- origin: >
- Bootstrap#20732
-
--
- browser: >
- Edge
- summary: >
- Implement the [`:dir()` pseudo-class](https://developer.mozilla.org/en-US/docs/Web/CSS/:dir) from Selectors Level 4
- upstream_bug: >
- UserVoice#12299532
- origin: >
- Bootstrap#19984
-
--
- browser: >
- Edge
- summary: >
- Implement the HTML5 [`` element](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/dialog)
- upstream_bug: >
- UserVoice#6508895
- origin: >
- Bootstrap#20175
-
--
- browser: >
- Edge
- summary: >
- Fire a [`transitioncancel` event](https://developer.mozilla.org/en-US/docs/Web/Events/transitioncancel) when a CSS transition is canceled
- upstream_bug: >
- UserVoice#15939898
- origin: >
- Bootstrap#20618
-
--
- browser: >
- Edge
- summary: >
- Implement the [`of ` clause](https://caniuse.com/#feat=css-nth-child-of) of the `:nth-child()` pseudo-class
- upstream_bug: >
- UserVoice#15944476
- origin: >
- Bootstrap#20143
-
--
- browser: >
- Firefox
- summary: >
- Implement the [`of ` clause](https://caniuse.com/#feat=css-nth-child-of) of the `:nth-child()` pseudo-class
- upstream_bug: >
- Mozilla#854148
- origin: >
- Bootstrap#20143
-
--
- browser: >
- Firefox
- summary: >
- Implement the HTML5 [`` element](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/dialog)
- upstream_bug: >
- Mozilla#840640
- origin: >
- Bootstrap#20175
-
--
- browser: >
- Firefox
- summary: >
- When virtual focus is on a button or link, fire actual focus on the element, too
- upstream_bug: >
- Mozilla#1000082
- origin: >
- Bootstrap#20732
-
--
- browser: >
- Chrome
- summary: >
- Fire a [`transitioncancel` event](https://developer.mozilla.org/en-US/docs/Web/Events/transitioncancel) when a CSS transition is canceled
- upstream_bug: >
- Chromium#642487
- origin: >
- Chromium#437860
-
--
- browser: >
- Chrome
- summary: >
- Implement the [`of ` clause](https://caniuse.com/#feat=css-nth-child-of) of the `:nth-child()` pseudo-class
- upstream_bug: >
- Chromium#304163
- origin: >
- Bootstrap#20143
-
--
- browser: >
- Chrome
- summary: >
- Implement the [`:dir()` pseudo-class](https://developer.mozilla.org/en-US/docs/Web/CSS/:dir) from Selectors Level 4
- upstream_bug: >
- Chromium#576815
- origin: >
- Bootstrap#19984
-
--
- browser: >
- Safari
- summary: >
- Fire a [`transitioncancel` event](https://developer.mozilla.org/en-US/docs/Web/Events/transitioncancel) when a CSS transition is canceled
- upstream_bug: >
- WebKit#161535
- origin: >
- Bootstrap#20618
-
--
- browser: >
- Safari
- summary: >
- Implement the [`:dir()` pseudo-class](https://developer.mozilla.org/en-US/docs/Web/CSS/:dir) from Selectors Level 4
- upstream_bug: >
- WebKit#64861
- origin: >
- Bootstrap#19984
-
--
- browser: >
- Safari
- summary: >
- Implement the HTML5 [`` element](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/dialog)
- upstream_bug: >
- WebKit#84635
- origin: >
- Bootstrap#20175
diff --git a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/site/_data/colors.yml b/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/site/_data/colors.yml
deleted file mode 100644
index 202270c..0000000
--- a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/site/_data/colors.yml
+++ /dev/null
@@ -1,26 +0,0 @@
-- name: blue
- hex: "#007bff"
-- name: indigo
- hex: "#6610f2"
-- name: purple
- hex: "#6f42c1"
-- name: pink
- hex: "#e83e8c"
-- name: red
- hex: "#dc3545"
-- name: orange
- hex: "#fd7e14"
-- name: yellow
- hex: "#ffc107"
-- name: green
- hex: "#28a745"
-- name: teal
- hex: "#20c997"
-- name: cyan
- hex: "#17a2b8"
-- name: white
- hex: "#fff"
-- name: gray
- hex: "#868e96"
-- name: gray-dark
- hex: "#343a40"
diff --git a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/site/_data/examples.yml b/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/site/_data/examples.yml
deleted file mode 100644
index 673fde4..0000000
--- a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/site/_data/examples.yml
+++ /dev/null
@@ -1,55 +0,0 @@
-- category: Custom components
- description: "Brand new components and templates to help folks quickly get started with Bootstrap and demonstrate best practices for adding onto the framework."
- examples:
- - name: Album
- description: "Simple one-page template for photo galleries, portfolios, and more."
- - name: Pricing
- description: "Example pricing page built with Cards and featuring a custom header and footer."
- - name: Checkout
- description: "Custom checkout form showing our form components and their validation features."
- - name: Product
- description: "Lean product-focused marketing page with extensive grid and image work."
- - name: Cover
- description: "A one-page template for building simple and beautiful home pages."
- - name: Carousel
- description: "Customize the navbar and carousel, then add some new components."
- - name: Blog
- description: "Magazine like blog template with header, navigation, featured content."
- - name: Dashboard
- description: "Basic admin dashboard shell with fixed sidebar and navbar."
- - name: Sign-in
- description: "Custom form layout and design for a simple sign in form."
- - name: Sticky footer
- description: "Attach a footer to the bottom of the viewport when page content is short."
- - name: Sticky footer navbar
- description: "Attach a footer to the bottom of the viewport with a fixed top navbar."
-
-- category: Framework
- description: "Examples that focus on implementing uses of built-in components provided by Bootstrap."
- examples:
- - name: "Starter template"
- description: "Nothing but the basics: compiled CSS and JavaScript."
- - name: Grid
- description: "Multiple examples of grid layouts with all four tiers, nesting, and more."
- - name: Jumbotron
- description: "Build around the jumbotron with a navbar and some basic grid columns."
-
-- category: Navbars
- description: "Taking the default navbar component and showing how it can be moved, placed, and extended."
- examples:
- - name: Navbars
- description: "Demonstration of all responsive and container options for the navbar."
- - name: Navbar static
- description: "Single navbar example of a static top navbar along with some additional content."
- - name: Navbar fixed
- description: "Single navbar example with a fixed top navbar along with some additional content."
- - name: Navbar bottom
- description: "Single navbar example with a bottom navbar along with some additional content."
-
-- category: Experiments
- description: "Examples that focus on future-friendly features or techniques."
- examples:
- - name: Floating labels
- description: "Beautifully simple forms with floating labels over your inputs."
- - name: Offcanvas
- description: "Turn your expandable navbar into a sliding offcanvas menu."
diff --git a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/site/_data/grays.yml b/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/site/_data/grays.yml
deleted file mode 100644
index d6e50f9..0000000
--- a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/site/_data/grays.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-- name: 100
- hex: "#f8f9fa"
-- name: 200
- hex: "#e9ecef"
-- name: 300
- hex: "#dee2e6"
-- name: 400
- hex: "#ced4da"
-- name: 500
- hex: "#adb5bd"
-- name: 600
- hex: "#868e96"
-- name: 700
- hex: "#495057"
-- name: 800
- hex: "#343a40"
-- name: 900
- hex: "#212529"
diff --git a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/site/_data/nav.yml b/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/site/_data/nav.yml
deleted file mode 100644
index 98bd2c5..0000000
--- a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/site/_data/nav.yml
+++ /dev/null
@@ -1,86 +0,0 @@
-- title: Getting started
- pages:
- - title: Introduction
- - title: Download
- - title: Contents
- - title: Browsers & devices
- - title: JavaScript
- - title: Theming
- - title: Build tools
- # - title: Best practices # TODO: Write this content
- - title: Webpack
- - title: Accessibility
-
-- title: Layout
- pages:
- - title: Overview
- - title: Grid
- - title: Media object
- - title: Utilities for layout
-
-- title: Content
- pages:
- - title: Reboot
- - title: Typography
- - title: Code
- - title: Images
- - title: Tables
- - title: Figures
-
-- title: Components
- pages:
- - title: Alerts
- - title: Badge
- - title: Breadcrumb
- - title: Buttons
- - title: Button group
- - title: Card
- - title: Carousel
- - title: Collapse
- - title: Dropdowns
- - title: Forms
- - title: Input group
- - title: Jumbotron
- - title: List group
- - title: Modal
- - title: Navs
- - title: Navbar
- - title: Pagination
- - title: Popovers
- - title: Progress
- - title: Scrollspy
- - title: Tooltips
-
-- title: Utilities
- pages:
- - title: Borders
- - title: Clearfix
- - title: Close icon
- - title: Colors
- - title: Display
- - title: Embed
- - title: Flex
- - title: Float
- - title: Image replacement
- - title: Position
- - title: Screenreaders
- - title: Shadows
- - title: Sizing
- - title: Spacing
- - title: Text
- - title: Vertical align
- - title: Visibility
-
-- title: Extend
- pages:
- - title: Approach
- - title: Icons
-
-- title: Migration
-
-- title: About
- pages:
- - title: Overview
- - title: Brand
- - title: License
- - title: Translations
diff --git a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/site/_data/theme-colors.yml b/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/site/_data/theme-colors.yml
deleted file mode 100644
index bef5002..0000000
--- a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/site/_data/theme-colors.yml
+++ /dev/null
@@ -1,16 +0,0 @@
-- name: primary
- hex: "#007bff"
-- name: secondary
- hex: "#868e96"
-- name: success
- hex: "#28a745"
-- name: danger
- hex: "#dc3545"
-- name: warning
- hex: "#ffc107"
-- name: info
- hex: "#17a2b8"
-- name: light
- hex: "#f8f9fa"
-- name: dark
- hex: "#343a40"
diff --git a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/site/_data/translations.yml b/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/site/_data/translations.yml
deleted file mode 100644
index 38b5771..0000000
--- a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/site/_data/translations.yml
+++ /dev/null
@@ -1,19 +0,0 @@
-- name: 中文(繁體)
- code: zh-tw
- description: Bootstrap 4 繁體中文手冊
- url: http://bootstrap.hexschool.com/
-
-- name: Chinese
- code: zh
- description: Bootstrap 4 · 全球最流行的 HTML、CSS 和 JS 工具库。
- url: https://code.z01.com/v4
-
-- name: Chinese
- code: zh
- description: Bootstrap 4 中文文档教程
- url: https://wiki.jikexueyuan.com/project/bootstrap4/
-
-- name: Brazilian Portuguese
- code: pt-BR
- description: Bootstrap 4 Português do Brasil
- url: http://getbootstrap.com.br/v4/
diff --git a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/site/_includes/ads.html b/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/site/_includes/ads.html
deleted file mode 100644
index bbb9671..0000000
--- a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/site/_includes/ads.html
+++ /dev/null
@@ -1 +0,0 @@
-
diff --git a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/site/_includes/bugify.html b/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/site/_includes/bugify.html
deleted file mode 100644
index 6a02bd2..0000000
--- a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/site/_includes/bugify.html
+++ /dev/null
@@ -1,42 +0,0 @@
-{%- comment -%}
-Usage: {% include bugify.html content=text %},
-where content is a string that contains a bug reference name and id.
-e.g. Bootstrap#19984
-{%- endcomment -%}
-
-{%- assign words = include.content | split: " " -%}
-
-{%- for word in words -%}
- {% if word contains "#" %}
- {% if word contains "," %}{% assign separator = true %}{% else %}{% assign separator = false %}{% endif %}
- {%- assign data = word | split: "#" -%}
- {%- assign bug_cat = data[0] | strip_newlines -%}
- {%- assign bug_id = data[1] | strip_newlines | remove: "," -%}
-
- {%- case bug_cat -%}
- {%- when "Bootstrap" -%}
- #{{ bug_id }}
- {%- when "Edge" -%}
- Edge issue #{{ bug_id }}
- {%- when "A11yUserVoice" -%}
- Microsoft A11y UserVoice idea #{{ bug_id }}
- {%- when "UserVoice" -%}
- Edge UserVoice idea #{{ bug_id }}
- {%- when "Mozilla" -%}
- Mozilla bug #{{ bug_id }}
- {%- when "Chromium" -%}
- Chromium issue #{{ bug_id }}
- {%- when "WebKit" -%}
- WebKit bug #{{ bug_id }}
- {%- when "Safari" -%}
- Apple Safari Radar #{{ bug_id }}
- {%- when "Normalize" -%}
- Normalize #{{ bug_id }}
- {%- else -%}
- parse error
- {%- endcase -%}{% if separator %}, {% endif %}
-
- {% else %}
- {{ word }}
- {%- endif -%}
-{%- endfor -%}
diff --git a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/site/_includes/callout-danger-async-methods.md b/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/site/_includes/callout-danger-async-methods.md
deleted file mode 100644
index ca35e0b..0000000
--- a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/site/_includes/callout-danger-async-methods.md
+++ /dev/null
@@ -1,8 +0,0 @@
-{% capture callout %}
-#### Asynchronous methods and transitions
-
-All API methods are **asynchronous** and start a **transition**. They return to the caller as soon as the transition is started but **before it ends**. In addition, a method call on a **transitioning component will be ignored**.
-
-[See our JavaScript documentation for more information.]({{ site.baseurl }}/docs/{{ site.docs_version }}/getting-started/javascript/)
-{% endcapture %}
-{% include callout.html content=callout type="danger" %}
diff --git a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/site/_includes/callout-info-mediaqueries-breakpoints.md b/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/site/_includes/callout-info-mediaqueries-breakpoints.md
deleted file mode 100644
index d3988ce..0000000
--- a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/site/_includes/callout-info-mediaqueries-breakpoints.md
+++ /dev/null
@@ -1,4 +0,0 @@
-{% capture callout %}
-Note that since browsers do not currently support [range context queries](https://www.w3.org/TR/mediaqueries-4/#range-context), we work around the limitations of [`min-` and `max-` prefixes](https://www.w3.org/TR/mediaqueries-4/#mq-min-max) and viewports with fractional widths (which can occur under certain conditions on high-dpi devices, for instance) by using values with higher precision for these comparisons.
-{% endcapture %}
-{% include callout.html content=callout type="info" %}
diff --git a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/site/_includes/callout-warning-color-assistive-technologies.md b/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/site/_includes/callout-warning-color-assistive-technologies.md
deleted file mode 100644
index 98214eb..0000000
--- a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/site/_includes/callout-warning-color-assistive-technologies.md
+++ /dev/null
@@ -1,6 +0,0 @@
-{% capture callout %}
-##### Conveying meaning to assistive technologies
-
-Using color to add meaning only provides a visual indication, which will not be conveyed to users of assistive technologies – such as screen readers. Ensure that information denoted by the color is either obvious from the content itself (e.g. the visible text), or is included through alternative means, such as additional text hidden with the `.sr-only` class.
-{% endcapture %}
-{% include callout.html content=callout type="warning" %}
diff --git a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/site/_includes/callout.html b/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/site/_includes/callout.html
deleted file mode 100644
index ff9450d..0000000
--- a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/site/_includes/callout.html
+++ /dev/null
@@ -1,9 +0,0 @@
-{%- comment -%}
-Usage: {% include callout.html content=callout type="type" %},
-where content is a capture with the content
-and type is one of: info (default), danger, warning
-{%- endcomment -%}
-{%- assign css_class = include.type | default: "info" -%}
-
- {{- include.content | markdownify -}}
-
diff --git a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/site/_includes/docs-navbar.html b/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/site/_includes/docs-navbar.html
deleted file mode 100644
index cb442bd..0000000
--- a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/site/_includes/docs-navbar.html
+++ /dev/null
@@ -1,62 +0,0 @@
-
diff --git a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/site/_includes/docs-sidebar.html b/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/site/_includes/docs-sidebar.html
deleted file mode 100644
index 61edd8e..0000000
--- a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/site/_includes/docs-sidebar.html
+++ /dev/null
@@ -1,57 +0,0 @@
-
-
-
- {%- assign page_slug = page.url | split: '/' | last -%}
- {%- for group in site.data.nav -%}
- {%- assign link = group.pages | first -%}
- {%- assign link_slug = link.title | slugify -%}
- {%- assign group_slug = group.title | slugify -%}
- {%- assign active = nil -%}
-
- {%- if page.group == group_slug -%}
- {%- assign active = 'active' -%}
- {%- endif -%}
-
-
-
- {{ group.title }}
-
-
-
- {%- for doc in group.pages -%}
- {%- assign doc_slug = doc.title | slugify -%}
- {%- assign active = nil -%}
-
- {%- if page.group == group_slug and page_slug == doc_slug -%}
- {%- assign active = 'active bd-sidenav-active' -%}
- {%- endif -%}
-
-
-
- {{ doc.title }}
-
-
- {%- comment -%}
- {% unless doc.sections == nil %}
-
- {% endunless %}
- {%- endcomment -%}
-
- {%- endfor -%}
-
-
- {%- endfor -%}
-
diff --git a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/site/_includes/example.html b/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/site/_includes/example.html
deleted file mode 100644
index 24d1262..0000000
--- a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/site/_includes/example.html
+++ /dev/null
@@ -1,23 +0,0 @@
-{%- comment -%}
-Usage: {% include example.html content=markup %},
-where content is a capture with the HTML content
-id - null (default)
-class - "bd-example" (default)
-optional: hide_preview - disabled (default)
-optional: hide_markup - disabled (default)
-{%- endcomment -%}
-
-{%- assign preview_id = include.id -%}
-{%- assign preview_class = include.class -%}
-
-{%- if include.hide_preview == null -%}
-
- {{- include.content -}}
-
-{%- endif -%}
-
-{%- if include.hide_markup == null -%}
- {%- highlight html -%}
- {{- include.content | replace: 'data-src="holder.js', 'src="...' -}}
- {%- endhighlight -%}
-{%- endif -%}
diff --git a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/site/_includes/favicons.html b/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/site/_includes/favicons.html
deleted file mode 100644
index df4c15e..0000000
--- a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/site/_includes/favicons.html
+++ /dev/null
@@ -1,9 +0,0 @@
-
-
-
-
-
-
-
-
-
diff --git a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/site/_includes/footer.html b/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/site/_includes/footer.html
deleted file mode 100644
index 8e16577..0000000
--- a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/site/_includes/footer.html
+++ /dev/null
@@ -1,12 +0,0 @@
-
diff --git a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/site/_includes/header.html b/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/site/_includes/header.html
deleted file mode 100644
index b92a579..0000000
--- a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/site/_includes/header.html
+++ /dev/null
@@ -1,37 +0,0 @@
-
-
-
-
-
-
-
- {%- if page.title -%}
- {{ page.title | smartify }} · {{ site.title | smartify }}
- {%- else -%}
- {{ site.title | smartify }} · {{ site.description | smartify }}
- {%- endif -%}
-
-
-
-{% if site.github %}
-
-{% else %}
-
-{% endif %}
-
-
-{% if page.layout == "docs" %}
-
-{% endif %}
-
-
-{% include favicons.html %}
-
-{% include social.html %}
-
-
-
diff --git a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/site/_includes/icons/bootstrap.svg b/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/site/_includes/icons/bootstrap.svg
deleted file mode 100644
index 816028b..0000000
--- a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/site/_includes/icons/bootstrap.svg
+++ /dev/null
@@ -1 +0,0 @@
-Bootstrap
diff --git a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/site/_includes/icons/download.svg b/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/site/_includes/icons/download.svg
deleted file mode 100644
index aa5f3f1..0000000
--- a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/site/_includes/icons/download.svg
+++ /dev/null
@@ -1 +0,0 @@
-Download icon
diff --git a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/site/_includes/icons/github.svg b/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/site/_includes/icons/github.svg
deleted file mode 100644
index 5d6ad18..0000000
--- a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/site/_includes/icons/github.svg
+++ /dev/null
@@ -1 +0,0 @@
-GitHub
diff --git a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/site/_includes/icons/import.svg b/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/site/_includes/icons/import.svg
deleted file mode 100644
index 0a9dbb2..0000000
--- a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/site/_includes/icons/import.svg
+++ /dev/null
@@ -1 +0,0 @@
-Import icon
diff --git a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/site/_includes/icons/lightning.svg b/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/site/_includes/icons/lightning.svg
deleted file mode 100644
index be6f475..0000000
--- a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/site/_includes/icons/lightning.svg
+++ /dev/null
@@ -1 +0,0 @@
-Lightning icon
diff --git a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/site/_includes/icons/menu.svg b/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/site/_includes/icons/menu.svg
deleted file mode 100644
index 03e15dc..0000000
--- a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/site/_includes/icons/menu.svg
+++ /dev/null
@@ -1 +0,0 @@
-Menu
diff --git a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/site/_includes/icons/slack.svg b/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/site/_includes/icons/slack.svg
deleted file mode 100644
index 3927fa4..0000000
--- a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/site/_includes/icons/slack.svg
+++ /dev/null
@@ -1 +0,0 @@
-Slack
diff --git a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/site/_includes/icons/twitter.svg b/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/site/_includes/icons/twitter.svg
deleted file mode 100644
index 450c393..0000000
--- a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/site/_includes/icons/twitter.svg
+++ /dev/null
@@ -1 +0,0 @@
-Twitter
diff --git a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/site/_includes/scripts.html b/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/site/_includes/scripts.html
deleted file mode 100644
index 92c6d01..0000000
--- a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/site/_includes/scripts.html
+++ /dev/null
@@ -1,26 +0,0 @@
-
-
-
-
-
-{%- if site.github -%}
-
-{%- else -%}
-
-{%- endif -%}
-
-{%- if page.layout == "docs" -%}
-
-{%- endif -%}
-
-{%- if site.github -%}
-
-{%- else -%}
-
-
-
-
-
-
-
-{%- endif -%}
diff --git a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/site/_includes/skippy.html b/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/site/_includes/skippy.html
deleted file mode 100644
index 2c73089..0000000
--- a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/site/_includes/skippy.html
+++ /dev/null
@@ -1,5 +0,0 @@
-
-
- Skip to main content
-
-
diff --git a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/site/_includes/social.html b/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/site/_includes/social.html
deleted file mode 100644
index 277ee23..0000000
--- a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/site/_includes/social.html
+++ /dev/null
@@ -1,18 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/site/_layouts/default.html b/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/site/_layouts/default.html
deleted file mode 100644
index 28f4cdc..0000000
--- a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/site/_layouts/default.html
+++ /dev/null
@@ -1,22 +0,0 @@
-
-
-
- {% include header.html %}
-
-
- {% include skippy.html %}
-
- {% include docs-navbar.html %}
-
- {% if page.layout == "simple" or page.layout == "examples" %}
- {{ content }}
- {% else %}
-
- {{ content }}
-
- {% endif %}
-
- {% include footer.html %}
- {% include scripts.html %}
-
-
diff --git a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/site/_layouts/docs.html b/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/site/_layouts/docs.html
deleted file mode 100644
index 1d21255..0000000
--- a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/site/_layouts/docs.html
+++ /dev/null
@@ -1,34 +0,0 @@
-
-
-
- {% include header.html %}
-
-
- {% include skippy.html %}
-
- {% include docs-navbar.html %}
-
-
-
-
-
- {% if page.toc %}
-
- {{ content | toc_only }}
-
- {% endif %}
-
-
- {{ page.title | smartify }}
- {{ page.description | smartify }}
- {% include ads.html %}
- {{ content }}
-
-
-
-
- {% include scripts.html %}
-
-
diff --git a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/site/_layouts/examples.html b/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/site/_layouts/examples.html
deleted file mode 100644
index 1f8fbcd..0000000
--- a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/site/_layouts/examples.html
+++ /dev/null
@@ -1,16 +0,0 @@
----
-layout: default
----
-
-
-
-
- {{ content }}
-
diff --git a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/site/_layouts/home.html b/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/site/_layouts/home.html
deleted file mode 100644
index 88a23d4..0000000
--- a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/site/_layouts/home.html
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-
- {% include header.html %}
-
-
- {% include skippy.html %}
-
- {% include docs-navbar.html %}
-
- {{ content }}
-
- {% include footer.html %}
- {% include scripts.html %}
-
-
diff --git a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/site/_layouts/redirect.html b/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/site/_layouts/redirect.html
deleted file mode 100644
index a30e77b..0000000
--- a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/site/_layouts/redirect.html
+++ /dev/null
@@ -1,38 +0,0 @@
-
-
-
-
-
- Bootstrap · Content moved
-
-
-
-
-
-
-
- Redirecting…
- Click here if you are not redirected
-
-
diff --git a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/site/_layouts/simple.html b/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/site/_layouts/simple.html
deleted file mode 100644
index dfd9afd..0000000
--- a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/site/_layouts/simple.html
+++ /dev/null
@@ -1,12 +0,0 @@
----
-layout: default
----
-
-
-
- {{ page.title | smartify }}
- {{ page.description | smartify }}
- {% include ads.html %}
- {{ content }}
-
-
diff --git a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/site/docs/4.1/about/brand.md b/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/site/docs/4.1/about/brand.md
deleted file mode 100644
index 084c36b..0000000
--- a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/site/docs/4.1/about/brand.md
+++ /dev/null
@@ -1,78 +0,0 @@
----
-layout: docs
-title: Brand guidelines
-description: Documentation and examples for Bootstrap's logo and brand usage guidelines.
-group: about
-toc: true
----
-
-Have a need for Bootstrap's brand resources? Great! We have only a few guidelines we follow, and in turn ask you to follow as well. These guidelines were inspired by MailChimp's [Brand Assets](https://mailchimp.com/about/brand-assets/).
-
-## Mark and logo
-
-Use either the Bootstrap mark (a capital **B**) or the standard logo (just **Bootstrap**). It should always appear in San Francisco Display Semibold. **Do not use the Twitter bird** in association with Bootstrap.
-
-
-
-
-
-
-
-
-
-
-
- Bootstrap
-
-
- Bootstrap
-
-
-
-## Download mark
-
-Download the Bootstrap mark in one of three styles, each available as an SVG file. Right click, Save as.
-
-
-
-## Name
-
-The project and framework should always be referred to as **Bootstrap**. No Twitter before it, no capital _s_, and no abbreviations except for one, a capital **B**.
-
-
-
- Bootstrap
- Right
-
-
- BootStrap
- Wrong
-
-
- Twitter Bootstrap
- Wrong
-
-
-
-## Colors
-
-Our docs and branding use a handful of primary colors to differentiate what *is* Bootstrap from what *is in* Bootstrap. In other words, if it's purple, it's representative of Bootstrap.
-
-
diff --git a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/site/docs/4.1/about/license.md b/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/site/docs/4.1/about/license.md
deleted file mode 100644
index 3972002..0000000
--- a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/site/docs/4.1/about/license.md
+++ /dev/null
@@ -1,34 +0,0 @@
----
-layout: docs
-title: License FAQs
-description: Commonly asked questions about Bootstrap's open source license.
-group: about
----
-
-Bootstrap is released under the MIT license and is copyright {{ site.time | date: "%Y" }} Twitter. Boiled down to smaller chunks, it can be described with the following conditions.
-
-#### It requires you to:
-
-* Keep the license and copyright notice included in Bootstrap's CSS and JavaScript files when you use them in your works
-
-#### It permits you to:
-
-- Freely download and use Bootstrap, in whole or in part, for personal, private, company internal, or commercial purposes
-- Use Bootstrap in packages or distributions that you create
-- Modify the source code
-- Grant a sublicense to modify and distribute Bootstrap to third parties not included in the license
-
-#### It forbids you to:
-
-- Hold the authors and license owners liable for damages as Bootstrap is provided without warranty
-- Hold the creators or copyright holders of Bootstrap liable
-- Redistribute any piece of Bootstrap without proper attribution
-- Use any marks owned by Twitter in any way that might state or imply that Twitter endorses your distribution
-- Use any marks owned by Twitter in any way that might state or imply that you created the Twitter software in question
-
-#### It does not require you to:
-
-- Include the source of Bootstrap itself, or of any modifications you may have made to it, in any redistribution you may assemble that includes it
-- Submit changes that you make to Bootstrap back to the Bootstrap project (though such feedback is encouraged)
-
-The full Bootstrap license is located [in the project repository]({{ site.repo }}/blob/v{{ site.current_version }}/LICENSE) for more information.
diff --git a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/site/docs/4.1/about/overview.md b/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/site/docs/4.1/about/overview.md
deleted file mode 100644
index 23dd7af..0000000
--- a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/site/docs/4.1/about/overview.md
+++ /dev/null
@@ -1,28 +0,0 @@
----
-layout: docs
-title: About
-description: Learn more about the team maintaining Bootstrap, how and why the project started, and how to get involved.
-redirect_from:
- - "/docs/4.1/about/"
- - "/docs/4.1/history/"
- - "/docs/4.1/team/"
-group: about
----
-
-## Team
-
-Bootstrap is maintained by a [small team of developers](https://github.com/orgs/twbs/people) on GitHub. We're actively looking to grow this team and would love to hear from you if you're excited about CSS at scale, writing and maintaining vanilla JavaScript plugins, and improving build tooling processes for frontend code.
-
-## History
-
-Originally created by a designer and a developer at Twitter, Bootstrap has become one of the most popular front-end frameworks and open source projects in the world.
-
-Bootstrap was created at Twitter in mid-2010 by [@mdo](https://twitter.com/mdo) and [@fat](https://twitter.com/fat). Prior to being an open-sourced framework, Bootstrap was known as _Twitter Blueprint_. A few months into development, Twitter held its [first Hack Week](https://blog.twitter.com/2010/hack-week) and the project exploded as developers of all skill levels jumped in without any external guidance. It served as the style guide for internal tools development at the company for over a year before its public release, and continues to do so today.
-
-Originally [released](https://blog.twitter.com/developer/en_us/a/2011/bootstrap-twitter.html) on Friday, August 19, 2011 , we've since had over [twenty releases]({{ site.repo }}/releases), including two major rewrites with v2 and v3. With Bootstrap 2, we added responsive functionality to the entire framework as an optional stylesheet. Building on that with Bootstrap 3, we rewrote the library once more to make it responsive by default with a mobile first approach.
-
-With Bootstrap 4, we once again rewrote the project to account for two key architectural changes: a migration to Sass and the move to CSS's flexbox. Our intention is to help in a small way to move the web development community forward by pushing for newer CSS properties, fewer dependencies, and new technologies across more modern browsers.
-
-## Get involved
-
-Get involved with Bootstrap development by [opening an issue]({{ site.repo }}/issues/new) or submitting a pull request. Read our [contributing guidelines]({{ site.repo }}/blob/v{{ site.current_version }}/.github/CONTRIBUTING.md) for information on how we develop.
diff --git a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/site/docs/4.1/about/translations.md b/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/site/docs/4.1/about/translations.md
deleted file mode 100644
index 576259d..0000000
--- a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/site/docs/4.1/about/translations.md
+++ /dev/null
@@ -1,18 +0,0 @@
----
-layout: docs
-title: Translations
-description: Links to community-translated Bootstrap documentation sites.
-group: about
----
-
-Community members have translated Bootstrap's documentation into various languages. None are officially supported and they may not always be up to date.
-
-
-
-**We don't help organize or host translations, we just link to them.**
-
-Finished a new or better translation? Open a pull request to add it to our list.
diff --git a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/site/docs/4.1/assets/brand/bootstrap-outline.svg b/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/site/docs/4.1/assets/brand/bootstrap-outline.svg
deleted file mode 100644
index 215be05..0000000
--- a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/site/docs/4.1/assets/brand/bootstrap-outline.svg
+++ /dev/null
@@ -1,4 +0,0 @@
-
-
-
-
diff --git a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/site/docs/4.1/assets/brand/bootstrap-punchout.svg b/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/site/docs/4.1/assets/brand/bootstrap-punchout.svg
deleted file mode 100644
index 9f4f529..0000000
--- a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/site/docs/4.1/assets/brand/bootstrap-punchout.svg
+++ /dev/null
@@ -1,4 +0,0 @@
-
-
-
-
diff --git a/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/site/docs/4.1/assets/brand/bootstrap-social-logo.png b/YtManagerApp/static/YtManagerApp/import/bootstrap-4.1.3/site/docs/4.1/assets/brand/bootstrap-social-logo.png
deleted file mode 100644
index fdd35e5d47d2f972897ca8a1a51529ea128730ab..0000000000000000000000000000000000000000
GIT binary patch
literal 0
HcmV?d00001
literal 23959
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