.fade-enter-active, .fade-leave-active {
  transition: opacity .15s linear; }

.fade-enter, .fade-leave-to {
  opacity: 0; }

/* workaround for https://github.com/bootstrap-vue/bootstrap-vue/issues/1560 */
/* source: _input-group.scss */
.input-group > .input-group-prepend > .b-dropdown > .btn,
.input-group > .input-group-append:not(:last-child) > .b-dropdown > .btn,
.input-group > .input-group-append:last-child > .b-dropdown:not(:last-child):not(.dropdown-toggle) > .btn {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0; }

.input-group > .input-group-append > .b-dropdown > .btn,
.input-group > .input-group-prepend:not(:first-child) > .b-dropdown > .btn,
.input-group > .input-group-prepend:first-child > .b-dropdown:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0; }

/* Special styling for type=range and type=color input */
input.form-control[type="range"],
input.form-control[type="color"] {
  height: 2.25rem; }

input.form-control.form-control-sm[type="range"],
input.form-control.form-control-sm[type="color"] {
  height: 1.9375rem; }

input.form-control.form-control-lg[type="range"],
input.form-control.form-control-lg[type="color"] {
  height: 3rem; }

/* Less padding on type=color */
input.form-control[type="color"] {
  padding: 0.25rem 0.25rem; }

input.form-control.form-control-sm[type="color"] {
  padding: 0.125rem 0.125rem; }

/* Add support for fixed layout table */
table.b-table.b-table-fixed {
  table-layout: fixed; }

/* Busy table styling */
table.b-table[aria-busy='false'] {
  opacity: 1; }

table.b-table[aria-busy='true'] {
  opacity: 0.6; }

/* Sort styling */
table.b-table > thead > tr > th,
table.b-table > tfoot > tr > th {
  position: relative; }

table.b-table > thead > tr > th.sorting,
table.b-table > tfoot > tr > th.sorting {
  padding-right: 1.5em;
  cursor: pointer; }

table.b-table > thead > tr > th.sorting::before,
table.b-table > thead > tr > th.sorting::after,
table.b-table > tfoot > tr > th.sorting::before,
table.b-table > tfoot > tr > th.sorting::after {
  position: absolute;
  bottom: 0;
  display: block;
  opacity: 0.4;
  padding-bottom: inherit;
  font-size: inherit;
  line-height: 180%; }

table.b-table > thead > tr > th.sorting::before,
table.b-table > tfoot > tr > th.sorting::before {
  right: 0.75em;
  content: '\2191'; }

table.b-table > thead > tr > th.sorting::after,
table.b-table > tfoot > tr > th.sorting::after {
  right: 0.25em;
  content: '\2193'; }

table.b-table > thead > tr > th.sorting_asc::after,
table.b-table > thead > tr > th.sorting_desc::before,
table.b-table > tfoot > tr > th.sorting_asc::after,
table.b-table > tfoot > tr > th.sorting_desc::before {
  opacity: 1; }

/* Stacked table layout */
/* Derived from http://blog.adrianroselli.com/2017/11/a-responsive-accessible-table.html */
/* Always stacked */
table.b-table.b-table-stacked {
  width: 100%; }

table.b-table.b-table-stacked,
table.b-table.b-table-stacked > tbody,
table.b-table.b-table-stacked > tbody > tr,
table.b-table.b-table-stacked > tbody > tr > td,
table.b-table.b-table-stacked > tbody > tr > th,
table.b-table.b-table-stacked > caption {
  display: block; }

/* Hide stuff we can't deal with, or shouldn't show */
table.b-table.b-table-stacked > thead,
table.b-table.b-table-stacked > tfoot,
table.b-table.b-table-stacked > tbody > tr.b-table-top-row,
table.b-table.b-table-stacked > tbody > tr.b-table-bottom-row {
  display: none; }

/* inter-row top border */
table.b-table.b-table-stacked > tbody > tr > :first-child {
  border-top-width: 0.4rem; }

/* convert TD/TH contents to "cells". Caveat: child elements become cells! */
table.b-table.b-table-stacked > tbody > tr > [data-label] {
  display: grid;
  grid-template-columns: 40% auto;
  grid-gap: 0.25rem 1rem; }

/* generate row cell "heading" */
table.b-table.b-table-stacked > tbody > tr > [data-label]::before {
  content: attr(data-label);
  display: inline;
  text-align: right;
  overflow-wrap: break-word;
  font-weight: bold;
  font-style: normal; }

@media all and (max-width: 575.99px) {
  /* Under SM */
  table.b-table.b-table-stacked-sm {
    width: 100%; }
  table.b-table.b-table-stacked-sm,
  table.b-table.b-table-stacked-sm > tbody,
  table.b-table.b-table-stacked-sm > tbody > tr,
  table.b-table.b-table-stacked-sm > tbody > tr > td,
  table.b-table.b-table-stacked-sm > tbody > tr > th,
  table.b-table.b-table-stacked-sm > caption {
    display: block; }
  /* hide stuff we can't deal with, or shouldn't show */
  table.b-table.b-table-stacked-sm > thead,
  table.b-table.b-table-stacked-sm > tfoot,
  table.b-table.b-table-stacked-sm > tbody > tr.b-table-top-row,
  table.b-table.b-table-stacked-sm > tbody > tr.b-table-bottom-row {
    display: none; }
  /* inter-row top border */
  table.b-table.b-table-stacked-sm > tbody > tr > :first-child {
    border-top-width: 0.4rem; }
  /* convert TD/TH contents to "cells". Caveat: child elements become cells! */
  table.b-table.b-table-stacked-sm > tbody > tr > [data-label] {
    display: grid;
    grid-template-columns: 40% auto;
    grid-gap: 0.25rem 1rem; }
  /* generate row cell "heading" */
  table.b-table.b-table-stacked-sm > tbody > tr > [data-label]::before {
    content: attr(data-label);
    display: inline;
    text-align: right;
    overflow-wrap: break-word;
    font-weight: bold;
    font-style: normal; } }

@media all and (max-width: 767.99px) {
  /* under MD  */
  table.b-table.b-table-stacked-md {
    width: 100%; }
  table.b-table.b-table-stacked-md,
  table.b-table.b-table-stacked-md > tbody,
  table.b-table.b-table-stacked-md > tbody > tr,
  table.b-table.b-table-stacked-md > tbody > tr > td,
  table.b-table.b-table-stacked-md > tbody > tr > th,
  table.b-table.b-table-stacked-md > caption {
    display: block; }
  /* hide stuff we can't deal with, or shouldn't show */
  table.b-table.b-table-stacked-md > thead,
  table.b-table.b-table-stacked-md > tfoot,
  table.b-table.b-table-stacked-md > tbody > tr.b-table-top-row,
  table.b-table.b-table-stacked-md > tbody > tr.b-table-bottom-row {
    display: none; }
  /* inter-row top border */
  table.b-table.b-table-stacked-md > tbody > tr > :first-child {
    border-top-width: 0.4rem; }
  /* convert TD/TH contents to "cells". Caveat: child elements become cells! */
  table.b-table.b-table-stacked-md > tbody > tr > [data-label] {
    display: grid;
    grid-template-columns: 40% auto;
    grid-gap: 0.25rem 1rem; }
  /* generate row cell "heading" */
  table.b-table.b-table-stacked-md > tbody > tr > [data-label]::before {
    content: attr(data-label);
    display: inline;
    text-align: right;
    overflow-wrap: break-word;
    font-weight: bold;
    font-style: normal; } }

@media all and (max-width: 991.99px) {
  /* under LG  */
  table.b-table.b-table-stacked-lg {
    width: 100%; }
  table.b-table.b-table-stacked-lg,
  table.b-table.b-table-stacked-lg > tbody,
  table.b-table.b-table-stacked-lg > tbody > tr,
  table.b-table.b-table-stacked-lg > tbody > tr > td,
  table.b-table.b-table-stacked-lg > tbody > tr > th,
  table.b-table.b-table-stacked-lg > caption {
    display: block; }
  /* hide stuff we can't deal with, or shouldn't show */
  table.b-table.b-table-stacked-lg > thead,
  table.b-table.b-table-stacked-lg > tfoot,
  table.b-table.b-table-stacked-lg > tbody > tr.b-table-top-row,
  table.b-table.b-table-stacked-lg > tbody > tr.b-table-bottom-row {
    display: none; }
  /* inter-row top border */
  table.b-table.b-table-stacked-lg > tbody > tr > :first-child {
    border-top-width: 0.4rem; }
  /* convert TD/TH contents to "cells". Caveat: child elements become cells! */
  table.b-table.b-table-stacked-lg > tbody > tr > [data-label] {
    display: grid;
    grid-template-columns: 40% auto;
    grid-gap: 0.25rem 1rem; }
  /* generate row cell "heading" */
  table.b-table.b-table-stacked-lg > tbody > tr > [data-label]::before {
    content: attr(data-label);
    display: inline;
    text-align: right;
    overflow-wrap: break-word;
    font-weight: bold;
    font-style: normal; } }

@media all and (max-width: 1199.99px) {
  /* under XL  */
  table.b-table.b-table-stacked-xl {
    width: 100%; }
  table.b-table.b-table-stacked-xl,
  table.b-table.b-table-stacked-xl > tbody,
  table.b-table.b-table-stacked-xl > tbody > tr,
  table.b-table.b-table-stacked-xl > tbody > tr > td,
  table.b-table.b-table-stacked-xl > tbody > tr > th,
  table.b-table.b-table-stacked-xl > caption {
    display: block; }
  /* hide stuff we can't deal with, or shouldn't show */
  table.b-table.b-table-stacked-xl > thead,
  table.b-table.b-table-stacked-xl > tfoot,
  table.b-table.b-table-stacked-xl > tbody > tr.b-table-top-row,
  table.b-table.b-table-stacked-xl > tbody > tr.b-table-bottom-row {
    display: none; }
  /* inter-row top border */
  table.b-table.b-table-stacked-xl > tbody > tr > :first-child {
    border-top-width: 0.4rem; }
  /* convert TD/TH contents to "cells". Caveat: child elements become cells! */
  table.b-table.b-table-stacked-xl > tbody > tr > [data-label] {
    display: grid;
    grid-template-columns: 40% auto;
    grid-gap: 0.25rem 1rem; }
  /* generate row cell "heading" */
  table.b-table.b-table-stacked-xl > tbody > tr > [data-label]::before {
    content: attr(data-label);
    display: inline;
    text-align: right;
    overflow-wrap: break-word;
    font-weight: bold;
    font-style: normal; } }

/* Details row styling */
table.b-table > tbody > tr.b-table-details > td {
  border-top: none; }

.fade-enter-active, .fade-leave-active {
  transition: opacity .15s linear; }

.fade-enter, .fade-leave-to {
  opacity: 0; }

/* workaround for https://github.com/bootstrap-vue/bootstrap-vue/issues/1560 */
/* source: _input-group.scss */
.input-group > .input-group-prepend > .b-dropdown > .btn,
.input-group > .input-group-append:not(:last-child) > .b-dropdown > .btn,
.input-group > .input-group-append:last-child > .b-dropdown:not(:last-child):not(.dropdown-toggle) > .btn {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0; }

.input-group > .input-group-append > .b-dropdown > .btn,
.input-group > .input-group-prepend:not(:first-child) > .b-dropdown > .btn,
.input-group > .input-group-prepend:first-child > .b-dropdown:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0; }

/* Special styling for type=range and type=color input */
input.form-control[type="range"],
input.form-control[type="color"] {
  height: 2.25rem; }

input.form-control.form-control-sm[type="range"],
input.form-control.form-control-sm[type="color"] {
  height: 1.9375rem; }

input.form-control.form-control-lg[type="range"],
input.form-control.form-control-lg[type="color"] {
  height: 3rem; }

/* Less padding on type=color */
input.form-control[type="color"] {
  padding: 0.25rem 0.25rem; }

input.form-control.form-control-sm[type="color"] {
  padding: 0.125rem 0.125rem; }

/* Add support for fixed layout table */
table.b-table.b-table-fixed {
  table-layout: fixed; }

/* Busy table styling */
table.b-table[aria-busy='false'] {
  opacity: 1; }

table.b-table[aria-busy='true'] {
  opacity: 0.6; }

/* Sort styling */
table.b-table > thead > tr > th,
table.b-table > tfoot > tr > th {
  position: relative; }

table.b-table > thead > tr > th.sorting,
table.b-table > tfoot > tr > th.sorting {
  padding-right: 1.5em;
  cursor: pointer; }

table.b-table > thead > tr > th.sorting::before,
table.b-table > thead > tr > th.sorting::after,
table.b-table > tfoot > tr > th.sorting::before,
table.b-table > tfoot > tr > th.sorting::after {
  position: absolute;
  bottom: 0;
  display: block;
  opacity: 0.4;
  padding-bottom: inherit;
  font-size: inherit;
  line-height: 180%; }

table.b-table > thead > tr > th.sorting::before,
table.b-table > tfoot > tr > th.sorting::before {
  right: 0.75em;
  content: '\2191'; }

table.b-table > thead > tr > th.sorting::after,
table.b-table > tfoot > tr > th.sorting::after {
  right: 0.25em;
  content: '\2193'; }

table.b-table > thead > tr > th.sorting_asc::after,
table.b-table > thead > tr > th.sorting_desc::before,
table.b-table > tfoot > tr > th.sorting_asc::after,
table.b-table > tfoot > tr > th.sorting_desc::before {
  opacity: 1; }

/* Stacked table layout */
/* Derived from http://blog.adrianroselli.com/2017/11/a-responsive-accessible-table.html */
/* Always stacked */
table.b-table.b-table-stacked {
  width: 100%; }

table.b-table.b-table-stacked,
table.b-table.b-table-stacked > tbody,
table.b-table.b-table-stacked > tbody > tr,
table.b-table.b-table-stacked > tbody > tr > td,
table.b-table.b-table-stacked > tbody > tr > th,
table.b-table.b-table-stacked > caption {
  display: block; }

/* Hide stuff we can't deal with, or shouldn't show */
table.b-table.b-table-stacked > thead,
table.b-table.b-table-stacked > tfoot,
table.b-table.b-table-stacked > tbody > tr.b-table-top-row,
table.b-table.b-table-stacked > tbody > tr.b-table-bottom-row {
  display: none; }

/* inter-row top border */
table.b-table.b-table-stacked > tbody > tr > :first-child {
  border-top-width: 0.4rem; }

/* convert TD/TH contents to "cells". Caveat: child elements become cells! */
table.b-table.b-table-stacked > tbody > tr > [data-label] {
  display: grid;
  grid-template-columns: 40% auto;
  grid-gap: 0.25rem 1rem; }

/* generate row cell "heading" */
table.b-table.b-table-stacked > tbody > tr > [data-label]::before {
  content: attr(data-label);
  display: inline;
  text-align: right;
  overflow-wrap: break-word;
  font-weight: bold;
  font-style: normal; }

@media all and (max-width: 575.99px) {
  /* Under SM */
  table.b-table.b-table-stacked-sm {
    width: 100%; }
  table.b-table.b-table-stacked-sm,
  table.b-table.b-table-stacked-sm > tbody,
  table.b-table.b-table-stacked-sm > tbody > tr,
  table.b-table.b-table-stacked-sm > tbody > tr > td,
  table.b-table.b-table-stacked-sm > tbody > tr > th,
  table.b-table.b-table-stacked-sm > caption {
    display: block; }
  /* hide stuff we can't deal with, or shouldn't show */
  table.b-table.b-table-stacked-sm > thead,
  table.b-table.b-table-stacked-sm > tfoot,
  table.b-table.b-table-stacked-sm > tbody > tr.b-table-top-row,
  table.b-table.b-table-stacked-sm > tbody > tr.b-table-bottom-row {
    display: none; }
  /* inter-row top border */
  table.b-table.b-table-stacked-sm > tbody > tr > :first-child {
    border-top-width: 0.4rem; }
  /* convert TD/TH contents to "cells". Caveat: child elements become cells! */
  table.b-table.b-table-stacked-sm > tbody > tr > [data-label] {
    display: grid;
    grid-template-columns: 40% auto;
    grid-gap: 0.25rem 1rem; }
  /* generate row cell "heading" */
  table.b-table.b-table-stacked-sm > tbody > tr > [data-label]::before {
    content: attr(data-label);
    display: inline;
    text-align: right;
    overflow-wrap: break-word;
    font-weight: bold;
    font-style: normal; } }

@media all and (max-width: 767.99px) {
  /* under MD  */
  table.b-table.b-table-stacked-md {
    width: 100%; }
  table.b-table.b-table-stacked-md,
  table.b-table.b-table-stacked-md > tbody,
  table.b-table.b-table-stacked-md > tbody > tr,
  table.b-table.b-table-stacked-md > tbody > tr > td,
  table.b-table.b-table-stacked-md > tbody > tr > th,
  table.b-table.b-table-stacked-md > caption {
    display: block; }
  /* hide stuff we can't deal with, or shouldn't show */
  table.b-table.b-table-stacked-md > thead,
  table.b-table.b-table-stacked-md > tfoot,
  table.b-table.b-table-stacked-md > tbody > tr.b-table-top-row,
  table.b-table.b-table-stacked-md > tbody > tr.b-table-bottom-row {
    display: none; }
  /* inter-row top border */
  table.b-table.b-table-stacked-md > tbody > tr > :first-child {
    border-top-width: 0.4rem; }
  /* convert TD/TH contents to "cells". Caveat: child elements become cells! */
  table.b-table.b-table-stacked-md > tbody > tr > [data-label] {
    display: grid;
    grid-template-columns: 40% auto;
    grid-gap: 0.25rem 1rem; }
  /* generate row cell "heading" */
  table.b-table.b-table-stacked-md > tbody > tr > [data-label]::before {
    content: attr(data-label);
    display: inline;
    text-align: right;
    overflow-wrap: break-word;
    font-weight: bold;
    font-style: normal; } }

@media all and (max-width: 991.99px) {
  /* under LG  */
  table.b-table.b-table-stacked-lg {
    width: 100%; }
  table.b-table.b-table-stacked-lg,
  table.b-table.b-table-stacked-lg > tbody,
  table.b-table.b-table-stacked-lg > tbody > tr,
  table.b-table.b-table-stacked-lg > tbody > tr > td,
  table.b-table.b-table-stacked-lg > tbody > tr > th,
  table.b-table.b-table-stacked-lg > caption {
    display: block; }
  /* hide stuff we can't deal with, or shouldn't show */
  table.b-table.b-table-stacked-lg > thead,
  table.b-table.b-table-stacked-lg > tfoot,
  table.b-table.b-table-stacked-lg > tbody > tr.b-table-top-row,
  table.b-table.b-table-stacked-lg > tbody > tr.b-table-bottom-row {
    display: none; }
  /* inter-row top border */
  table.b-table.b-table-stacked-lg > tbody > tr > :first-child {
    border-top-width: 0.4rem; }
  /* convert TD/TH contents to "cells". Caveat: child elements become cells! */
  table.b-table.b-table-stacked-lg > tbody > tr > [data-label] {
    display: grid;
    grid-template-columns: 40% auto;
    grid-gap: 0.25rem 1rem; }
  /* generate row cell "heading" */
  table.b-table.b-table-stacked-lg > tbody > tr > [data-label]::before {
    content: attr(data-label);
    display: inline;
    text-align: right;
    overflow-wrap: break-word;
    font-weight: bold;
    font-style: normal; } }

@media all and (max-width: 1199.99px) {
  /* under XL  */
  table.b-table.b-table-stacked-xl {
    width: 100%; }
  table.b-table.b-table-stacked-xl,
  table.b-table.b-table-stacked-xl > tbody,
  table.b-table.b-table-stacked-xl > tbody > tr,
  table.b-table.b-table-stacked-xl > tbody > tr > td,
  table.b-table.b-table-stacked-xl > tbody > tr > th,
  table.b-table.b-table-stacked-xl > caption {
    display: block; }
  /* hide stuff we can't deal with, or shouldn't show */
  table.b-table.b-table-stacked-xl > thead,
  table.b-table.b-table-stacked-xl > tfoot,
  table.b-table.b-table-stacked-xl > tbody > tr.b-table-top-row,
  table.b-table.b-table-stacked-xl > tbody > tr.b-table-bottom-row {
    display: none; }
  /* inter-row top border */
  table.b-table.b-table-stacked-xl > tbody > tr > :first-child {
    border-top-width: 0.4rem; }
  /* convert TD/TH contents to "cells". Caveat: child elements become cells! */
  table.b-table.b-table-stacked-xl > tbody > tr > [data-label] {
    display: grid;
    grid-template-columns: 40% auto;
    grid-gap: 0.25rem 1rem; }
  /* generate row cell "heading" */
  table.b-table.b-table-stacked-xl > tbody > tr > [data-label]::before {
    content: attr(data-label);
    display: inline;
    text-align: right;
    overflow-wrap: break-word;
    font-weight: bold;
    font-style: normal; } }

/* Details row styling */
table.b-table > tbody > tr.b-table-details > td {
  border-top: none; }

.toasted {
  padding: 0 20px; }

.toasted.rounded {
  border-radius: 24px; }

.toasted.primary {
  border-radius: 2px;
  min-height: 38px;
  line-height: 1.1em;
  background-color: #353535;
  padding: 0 20px;
  font-size: 15px;
  font-weight: 300;
  color: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); }

.toasted.primary.success {
  background: #4caf50; }

.toasted.primary.error {
  background: #f44336; }

.toasted.primary.info {
  background: #3f51b5; }

.toasted.primary .action {
  color: #a1c2fa; }

.toasted.bubble {
  border-radius: 30px;
  min-height: 38px;
  line-height: 1.1em;
  background-color: #ff7043;
  padding: 0 20px;
  font-size: 15px;
  font-weight: 300;
  color: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); }

.toasted.bubble.success {
  background: #4caf50; }

.toasted.bubble.error {
  background: #f44336; }

.toasted.bubble.info {
  background: #3f51b5; }

.toasted.bubble .action {
  color: #8e2b0c; }

.toasted.outline {
  border-radius: 30px;
  min-height: 38px;
  line-height: 1.1em;
  background-color: #fff;
  border: 1px solid #676767;
  padding: 0 20px;
  font-size: 15px;
  color: #676767;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  font-weight: 700; }

.toasted.outline.success {
  color: #4caf50;
  border-color: #4caf50; }

.toasted.outline.error {
  color: #f44336;
  border-color: #f44336; }

.toasted.outline.info {
  color: #3f51b5;
  border-color: #3f51b5; }

.toasted.outline .action {
  color: #607d8b; }

.toasted-container {
  position: fixed;
  z-index: 10000; }

.toasted-container, .toasted-container.full-width {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column; }

.toasted-container.full-width {
  max-width: 86%;
  width: 100%; }

.toasted-container.full-width.fit-to-screen {
  min-width: 100%; }

.toasted-container.full-width.fit-to-screen .toasted:first-child {
  margin-top: 0; }

.toasted-container.full-width.fit-to-screen.top-right {
  top: 0;
  right: 0; }

.toasted-container.full-width.fit-to-screen.top-left {
  top: 0;
  left: 0; }

.toasted-container.full-width.fit-to-screen.top-center {
  top: 0;
  left: 0;
  transform: translateX(0); }

.toasted-container.full-width.fit-to-screen.bottom-right {
  right: 0;
  bottom: 0; }

.toasted-container.full-width.fit-to-screen.bottom-left {
  left: 0;
  bottom: 0; }

.toasted-container.full-width.fit-to-screen.bottom-center {
  left: 0;
  bottom: 0;
  transform: translateX(0); }

.toasted-container.top-right {
  top: 10%;
  right: 7%; }

.toasted-container.top-left {
  top: 10%;
  left: 7%; }

.toasted-container.top-center {
  top: 10%;
  left: 50%;
  transform: translateX(-50%); }

.toasted-container.bottom-right {
  right: 5%;
  bottom: 7%; }

.toasted-container.bottom-left {
  left: 5%;
  bottom: 7%; }

.toasted-container.bottom-center {
  left: 50%;
  transform: translateX(-50%);
  bottom: 7%; }

.toasted-container.bottom-left .toasted, .toasted-container.top-left .toasted {
  float: left; }

.toasted-container.bottom-right .toasted, .toasted-container.top-right .toasted {
  float: right; }

.toasted-container .toasted {
  top: 35px;
  width: auto;
  clear: both;
  margin-top: 10px;
  position: relative;
  max-width: 100%;
  height: auto;
  word-break: normal;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  box-sizing: inherit; }

.toasted-container .toasted .fa, .toasted-container .toasted .material-icons, .toasted-container .toasted .mdi {
  margin-right: .5rem;
  margin-left: -.4rem; }

.toasted-container .toasted .fa.after, .toasted-container .toasted .material-icons.after, .toasted-container .toasted .mdi.after {
  margin-left: .5rem;
  margin-right: -.4rem; }

.toasted-container .toasted .action {
  text-decoration: none;
  font-size: .8rem;
  padding: 8px;
  margin: 5px -7px 5px 7px;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: .03em;
  font-weight: 600;
  cursor: pointer; }

.toasted-container .toasted .action.icon {
  padding: 4px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center; }

.toasted-container .toasted .action.icon .fa, .toasted-container .toasted .action.icon .material-icons, .toasted-container .toasted .action.icon .mdi {
  margin-right: 0;
  margin-left: 4px; }

.toasted-container .toasted .action.icon:hover {
  text-decoration: none; }

.toasted-container .toasted .action:hover {
  text-decoration: underline; }

@media only screen and (max-width: 600px) {
  #toasted-container {
    min-width: 100%; }
  #toasted-container .toasted:first-child {
    margin-top: 0; }
  #toasted-container.top-right {
    top: 0;
    right: 0; }
  #toasted-container.top-left {
    top: 0;
    left: 0; }
  #toasted-container.top-center {
    top: 0;
    left: 0;
    transform: translateX(0); }
  #toasted-container.bottom-right {
    right: 0;
    bottom: 0; }
  #toasted-container.bottom-left {
    left: 0;
    bottom: 0; }
  #toasted-container.bottom-center {
    left: 0;
    bottom: 0;
    transform: translateX(0); }
  #toasted-container.bottom-center, #toasted-container.top-center {
    -ms-flex-align: stretch !important;
    align-items: stretch !important; }
  #toasted-container.bottom-left .toasted, #toasted-container.bottom-right .toasted, #toasted-container.top-left .toasted, #toasted-container.top-right .toasted {
    float: none; }
  #toasted-container .toasted {
    border-radius: 0; } }

