@charset "UTF-8";
*, *:before, *:after {
  padding: 0;
  border: 0;
  border-radius: 0;
  margin: 0;
  box-shadow: none;
  outline: none;
  background-color: transparent;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  appearance: none;
}

:root {
  --viewportWidth: 100vw;
  --viewportHeight: 100vh;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.mainContent {
  padding-bottom: 15rem;
  overflow: hidden;
  flex-grow: 1;
}

@media (min-width: 1440px) {
  * + .mainContent {
    padding-top: 17.5rem;
  }
}
@media (min-width: 768px) and (max-width: 1439px) {
  * + .mainContent {
    padding-top: 13.75rem;
  }
}
@media (max-width: 767px) {
  * + .mainContent {
    padding-top: 10rem;
  }
}
.center-block {
  margin-left: auto;
  margin-right: auto;
}

.container-fluid {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 1440px) {
  .container {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 1024px) and (max-width: 1439px) {
  .container {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .container {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 767px) {
  .container {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -2rem;
  margin-right: -2rem;
}
.row > * {
  width: 100%;
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

.grid {
  display: grid;
  grid-gap: 4rem;
}

.col-1 {
  width: 8.3333333333%;
}

.inset-1 {
  margin-left: -8.3333333333%;
}

.offset-1 {
  margin-left: 8.3333333333%;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, 1fr);
}

.grid-rows-1 {
  grid-template-rows: repeat(1, 1fr);
}

.grid-colspan-1 {
  grid-column: span 1/span 1;
}

.grid-rowspan-1 {
  grid-row: span 1/span 1;
}

.col-2 {
  width: 16.6666666667%;
}

.inset-2 {
  margin-left: -16.6666666667%;
}

.offset-2 {
  margin-left: 16.6666666667%;
}

.grid-cols-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-rows-2 {
  grid-template-rows: repeat(2, 1fr);
}

.grid-colspan-2 {
  grid-column: span 2/span 2;
}

.grid-rowspan-2 {
  grid-row: span 2/span 2;
}

.col-3 {
  width: 25%;
}

.inset-3 {
  margin-left: -25%;
}

.offset-3 {
  margin-left: 25%;
}

.grid-cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-rows-3 {
  grid-template-rows: repeat(3, 1fr);
}

.grid-colspan-3 {
  grid-column: span 3/span 3;
}

.grid-rowspan-3 {
  grid-row: span 3/span 3;
}

.col-4 {
  width: 33.3333333333%;
}

.inset-4 {
  margin-left: -33.3333333333%;
}

.offset-4 {
  margin-left: 33.3333333333%;
}

.grid-cols-4 {
  grid-template-columns: repeat(4, 1fr);
}

.grid-rows-4 {
  grid-template-rows: repeat(4, 1fr);
}

.grid-colspan-4 {
  grid-column: span 4/span 4;
}

.grid-rowspan-4 {
  grid-row: span 4/span 4;
}

.col-5 {
  width: 41.6666666667%;
}

.inset-5 {
  margin-left: -41.6666666667%;
}

.offset-5 {
  margin-left: 41.6666666667%;
}

.grid-cols-5 {
  grid-template-columns: repeat(5, 1fr);
}

.grid-rows-5 {
  grid-template-rows: repeat(5, 1fr);
}

.grid-colspan-5 {
  grid-column: span 5/span 5;
}

.grid-rowspan-5 {
  grid-row: span 5/span 5;
}

.col-6 {
  width: 50%;
}

.inset-6 {
  margin-left: -50%;
}

.offset-6 {
  margin-left: 50%;
}

.grid-cols-6 {
  grid-template-columns: repeat(6, 1fr);
}

.grid-rows-6 {
  grid-template-rows: repeat(6, 1fr);
}

.grid-colspan-6 {
  grid-column: span 6/span 6;
}

.grid-rowspan-6 {
  grid-row: span 6/span 6;
}

.col-7 {
  width: 58.3333333333%;
}

.inset-7 {
  margin-left: -58.3333333333%;
}

.offset-7 {
  margin-left: 58.3333333333%;
}

.grid-cols-7 {
  grid-template-columns: repeat(7, 1fr);
}

.grid-rows-7 {
  grid-template-rows: repeat(7, 1fr);
}

.grid-colspan-7 {
  grid-column: span 7/span 7;
}

.grid-rowspan-7 {
  grid-row: span 7/span 7;
}

.col-8 {
  width: 66.6666666667%;
}

.inset-8 {
  margin-left: -66.6666666667%;
}

.offset-8 {
  margin-left: 66.6666666667%;
}

.grid-cols-8 {
  grid-template-columns: repeat(8, 1fr);
}

.grid-rows-8 {
  grid-template-rows: repeat(8, 1fr);
}

.grid-colspan-8 {
  grid-column: span 8/span 8;
}

.grid-rowspan-8 {
  grid-row: span 8/span 8;
}

.col-9 {
  width: 75%;
}

.inset-9 {
  margin-left: -75%;
}

.offset-9 {
  margin-left: 75%;
}

.grid-cols-9 {
  grid-template-columns: repeat(9, 1fr);
}

.grid-rows-9 {
  grid-template-rows: repeat(9, 1fr);
}

.grid-colspan-9 {
  grid-column: span 9/span 9;
}

.grid-rowspan-9 {
  grid-row: span 9/span 9;
}

.col-10 {
  width: 83.3333333333%;
}

.inset-10 {
  margin-left: -83.3333333333%;
}

.offset-10 {
  margin-left: 83.3333333333%;
}

.grid-cols-10 {
  grid-template-columns: repeat(10, 1fr);
}

.grid-rows-10 {
  grid-template-rows: repeat(10, 1fr);
}

.grid-colspan-10 {
  grid-column: span 10/span 10;
}

.grid-rowspan-10 {
  grid-row: span 10/span 10;
}

.col-11 {
  width: 91.6666666667%;
}

.inset-11 {
  margin-left: -91.6666666667%;
}

.offset-11 {
  margin-left: 91.6666666667%;
}

.grid-cols-11 {
  grid-template-columns: repeat(11, 1fr);
}

.grid-rows-11 {
  grid-template-rows: repeat(11, 1fr);
}

.grid-colspan-11 {
  grid-column: span 11/span 11;
}

.grid-rowspan-11 {
  grid-row: span 11/span 11;
}

.col-12 {
  width: 100%;
}

.inset-12 {
  margin-left: -100%;
}

.offset-12 {
  margin-left: 100%;
}

.grid-cols-12 {
  grid-template-columns: repeat(12, 1fr);
}

.grid-rows-12 {
  grid-template-rows: repeat(12, 1fr);
}

.grid-colspan-12 {
  grid-column: span 12/span 12;
}

.grid-rowspan-12 {
  grid-row: span 12/span 12;
}

@media (min-width: 768px) {
  .col-sm-1 {
    width: 8.3333333333%;
  }
  .inset-sm-1 {
    margin-left: -8.3333333333%;
  }
  .offset-sm-1 {
    margin-left: 8.3333333333%;
  }
  .grid-cols-sm-1 {
    grid-template-columns: repeat(1, 1fr);
  }
  .grid-rows-sm-1 {
    grid-template-rows: repeat(1, 1fr);
  }
  .grid-colspan-sm-1 {
    grid-column: span 1/span 1;
  }
  .grid-rowspan-sm-1 {
    grid-row: span 1/span 1;
  }
  .col-sm-2 {
    width: 16.6666666667%;
  }
  .inset-sm-2 {
    margin-left: -16.6666666667%;
  }
  .offset-sm-2 {
    margin-left: 16.6666666667%;
  }
  .grid-cols-sm-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-rows-sm-2 {
    grid-template-rows: repeat(2, 1fr);
  }
  .grid-colspan-sm-2 {
    grid-column: span 2/span 2;
  }
  .grid-rowspan-sm-2 {
    grid-row: span 2/span 2;
  }
  .col-sm-3 {
    width: 25%;
  }
  .inset-sm-3 {
    margin-left: -25%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .grid-cols-sm-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid-rows-sm-3 {
    grid-template-rows: repeat(3, 1fr);
  }
  .grid-colspan-sm-3 {
    grid-column: span 3/span 3;
  }
  .grid-rowspan-sm-3 {
    grid-row: span 3/span 3;
  }
  .col-sm-4 {
    width: 33.3333333333%;
  }
  .inset-sm-4 {
    margin-left: -33.3333333333%;
  }
  .offset-sm-4 {
    margin-left: 33.3333333333%;
  }
  .grid-cols-sm-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .grid-rows-sm-4 {
    grid-template-rows: repeat(4, 1fr);
  }
  .grid-colspan-sm-4 {
    grid-column: span 4/span 4;
  }
  .grid-rowspan-sm-4 {
    grid-row: span 4/span 4;
  }
  .col-sm-5 {
    width: 41.6666666667%;
  }
  .inset-sm-5 {
    margin-left: -41.6666666667%;
  }
  .offset-sm-5 {
    margin-left: 41.6666666667%;
  }
  .grid-cols-sm-5 {
    grid-template-columns: repeat(5, 1fr);
  }
  .grid-rows-sm-5 {
    grid-template-rows: repeat(5, 1fr);
  }
  .grid-colspan-sm-5 {
    grid-column: span 5/span 5;
  }
  .grid-rowspan-sm-5 {
    grid-row: span 5/span 5;
  }
  .col-sm-6 {
    width: 50%;
  }
  .inset-sm-6 {
    margin-left: -50%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .grid-cols-sm-6 {
    grid-template-columns: repeat(6, 1fr);
  }
  .grid-rows-sm-6 {
    grid-template-rows: repeat(6, 1fr);
  }
  .grid-colspan-sm-6 {
    grid-column: span 6/span 6;
  }
  .grid-rowspan-sm-6 {
    grid-row: span 6/span 6;
  }
  .col-sm-7 {
    width: 58.3333333333%;
  }
  .inset-sm-7 {
    margin-left: -58.3333333333%;
  }
  .offset-sm-7 {
    margin-left: 58.3333333333%;
  }
  .grid-cols-sm-7 {
    grid-template-columns: repeat(7, 1fr);
  }
  .grid-rows-sm-7 {
    grid-template-rows: repeat(7, 1fr);
  }
  .grid-colspan-sm-7 {
    grid-column: span 7/span 7;
  }
  .grid-rowspan-sm-7 {
    grid-row: span 7/span 7;
  }
  .col-sm-8 {
    width: 66.6666666667%;
  }
  .inset-sm-8 {
    margin-left: -66.6666666667%;
  }
  .offset-sm-8 {
    margin-left: 66.6666666667%;
  }
  .grid-cols-sm-8 {
    grid-template-columns: repeat(8, 1fr);
  }
  .grid-rows-sm-8 {
    grid-template-rows: repeat(8, 1fr);
  }
  .grid-colspan-sm-8 {
    grid-column: span 8/span 8;
  }
  .grid-rowspan-sm-8 {
    grid-row: span 8/span 8;
  }
  .col-sm-9 {
    width: 75%;
  }
  .inset-sm-9 {
    margin-left: -75%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .grid-cols-sm-9 {
    grid-template-columns: repeat(9, 1fr);
  }
  .grid-rows-sm-9 {
    grid-template-rows: repeat(9, 1fr);
  }
  .grid-colspan-sm-9 {
    grid-column: span 9/span 9;
  }
  .grid-rowspan-sm-9 {
    grid-row: span 9/span 9;
  }
  .col-sm-10 {
    width: 83.3333333333%;
  }
  .inset-sm-10 {
    margin-left: -83.3333333333%;
  }
  .offset-sm-10 {
    margin-left: 83.3333333333%;
  }
  .grid-cols-sm-10 {
    grid-template-columns: repeat(10, 1fr);
  }
  .grid-rows-sm-10 {
    grid-template-rows: repeat(10, 1fr);
  }
  .grid-colspan-sm-10 {
    grid-column: span 10/span 10;
  }
  .grid-rowspan-sm-10 {
    grid-row: span 10/span 10;
  }
  .col-sm-11 {
    width: 91.6666666667%;
  }
  .inset-sm-11 {
    margin-left: -91.6666666667%;
  }
  .offset-sm-11 {
    margin-left: 91.6666666667%;
  }
  .grid-cols-sm-11 {
    grid-template-columns: repeat(11, 1fr);
  }
  .grid-rows-sm-11 {
    grid-template-rows: repeat(11, 1fr);
  }
  .grid-colspan-sm-11 {
    grid-column: span 11/span 11;
  }
  .grid-rowspan-sm-11 {
    grid-row: span 11/span 11;
  }
  .col-sm-12 {
    width: 100%;
  }
  .inset-sm-12 {
    margin-left: -100%;
  }
  .offset-sm-12 {
    margin-left: 100%;
  }
  .grid-cols-sm-12 {
    grid-template-columns: repeat(12, 1fr);
  }
  .grid-rows-sm-12 {
    grid-template-rows: repeat(12, 1fr);
  }
  .grid-colspan-sm-12 {
    grid-column: span 12/span 12;
  }
  .grid-rowspan-sm-12 {
    grid-row: span 12/span 12;
  }
}
@media (min-width: 1024px) {
  .col-md-1 {
    width: 8.3333333333%;
  }
  .inset-md-1 {
    margin-left: -8.3333333333%;
  }
  .offset-md-1 {
    margin-left: 8.3333333333%;
  }
  .grid-cols-md-1 {
    grid-template-columns: repeat(1, 1fr);
  }
  .grid-rows-md-1 {
    grid-template-rows: repeat(1, 1fr);
  }
  .grid-colspan-md-1 {
    grid-column: span 1/span 1;
  }
  .grid-rowspan-md-1 {
    grid-row: span 1/span 1;
  }
  .col-md-2 {
    width: 16.6666666667%;
  }
  .inset-md-2 {
    margin-left: -16.6666666667%;
  }
  .offset-md-2 {
    margin-left: 16.6666666667%;
  }
  .grid-cols-md-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-rows-md-2 {
    grid-template-rows: repeat(2, 1fr);
  }
  .grid-colspan-md-2 {
    grid-column: span 2/span 2;
  }
  .grid-rowspan-md-2 {
    grid-row: span 2/span 2;
  }
  .col-md-3 {
    width: 25%;
  }
  .inset-md-3 {
    margin-left: -25%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .grid-cols-md-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid-rows-md-3 {
    grid-template-rows: repeat(3, 1fr);
  }
  .grid-colspan-md-3 {
    grid-column: span 3/span 3;
  }
  .grid-rowspan-md-3 {
    grid-row: span 3/span 3;
  }
  .col-md-4 {
    width: 33.3333333333%;
  }
  .inset-md-4 {
    margin-left: -33.3333333333%;
  }
  .offset-md-4 {
    margin-left: 33.3333333333%;
  }
  .grid-cols-md-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .grid-rows-md-4 {
    grid-template-rows: repeat(4, 1fr);
  }
  .grid-colspan-md-4 {
    grid-column: span 4/span 4;
  }
  .grid-rowspan-md-4 {
    grid-row: span 4/span 4;
  }
  .col-md-5 {
    width: 41.6666666667%;
  }
  .inset-md-5 {
    margin-left: -41.6666666667%;
  }
  .offset-md-5 {
    margin-left: 41.6666666667%;
  }
  .grid-cols-md-5 {
    grid-template-columns: repeat(5, 1fr);
  }
  .grid-rows-md-5 {
    grid-template-rows: repeat(5, 1fr);
  }
  .grid-colspan-md-5 {
    grid-column: span 5/span 5;
  }
  .grid-rowspan-md-5 {
    grid-row: span 5/span 5;
  }
  .col-md-6 {
    width: 50%;
  }
  .inset-md-6 {
    margin-left: -50%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .grid-cols-md-6 {
    grid-template-columns: repeat(6, 1fr);
  }
  .grid-rows-md-6 {
    grid-template-rows: repeat(6, 1fr);
  }
  .grid-colspan-md-6 {
    grid-column: span 6/span 6;
  }
  .grid-rowspan-md-6 {
    grid-row: span 6/span 6;
  }
  .col-md-7 {
    width: 58.3333333333%;
  }
  .inset-md-7 {
    margin-left: -58.3333333333%;
  }
  .offset-md-7 {
    margin-left: 58.3333333333%;
  }
  .grid-cols-md-7 {
    grid-template-columns: repeat(7, 1fr);
  }
  .grid-rows-md-7 {
    grid-template-rows: repeat(7, 1fr);
  }
  .grid-colspan-md-7 {
    grid-column: span 7/span 7;
  }
  .grid-rowspan-md-7 {
    grid-row: span 7/span 7;
  }
  .col-md-8 {
    width: 66.6666666667%;
  }
  .inset-md-8 {
    margin-left: -66.6666666667%;
  }
  .offset-md-8 {
    margin-left: 66.6666666667%;
  }
  .grid-cols-md-8 {
    grid-template-columns: repeat(8, 1fr);
  }
  .grid-rows-md-8 {
    grid-template-rows: repeat(8, 1fr);
  }
  .grid-colspan-md-8 {
    grid-column: span 8/span 8;
  }
  .grid-rowspan-md-8 {
    grid-row: span 8/span 8;
  }
  .col-md-9 {
    width: 75%;
  }
  .inset-md-9 {
    margin-left: -75%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .grid-cols-md-9 {
    grid-template-columns: repeat(9, 1fr);
  }
  .grid-rows-md-9 {
    grid-template-rows: repeat(9, 1fr);
  }
  .grid-colspan-md-9 {
    grid-column: span 9/span 9;
  }
  .grid-rowspan-md-9 {
    grid-row: span 9/span 9;
  }
  .col-md-10 {
    width: 83.3333333333%;
  }
  .inset-md-10 {
    margin-left: -83.3333333333%;
  }
  .offset-md-10 {
    margin-left: 83.3333333333%;
  }
  .grid-cols-md-10 {
    grid-template-columns: repeat(10, 1fr);
  }
  .grid-rows-md-10 {
    grid-template-rows: repeat(10, 1fr);
  }
  .grid-colspan-md-10 {
    grid-column: span 10/span 10;
  }
  .grid-rowspan-md-10 {
    grid-row: span 10/span 10;
  }
  .col-md-11 {
    width: 91.6666666667%;
  }
  .inset-md-11 {
    margin-left: -91.6666666667%;
  }
  .offset-md-11 {
    margin-left: 91.6666666667%;
  }
  .grid-cols-md-11 {
    grid-template-columns: repeat(11, 1fr);
  }
  .grid-rows-md-11 {
    grid-template-rows: repeat(11, 1fr);
  }
  .grid-colspan-md-11 {
    grid-column: span 11/span 11;
  }
  .grid-rowspan-md-11 {
    grid-row: span 11/span 11;
  }
  .col-md-12 {
    width: 100%;
  }
  .inset-md-12 {
    margin-left: -100%;
  }
  .offset-md-12 {
    margin-left: 100%;
  }
  .grid-cols-md-12 {
    grid-template-columns: repeat(12, 1fr);
  }
  .grid-rows-md-12 {
    grid-template-rows: repeat(12, 1fr);
  }
  .grid-colspan-md-12 {
    grid-column: span 12/span 12;
  }
  .grid-rowspan-md-12 {
    grid-row: span 12/span 12;
  }
}
@media (min-width: 1440px) {
  .col-lg-1 {
    width: 8.3333333333%;
  }
  .inset-lg-1 {
    margin-left: -8.3333333333%;
  }
  .offset-lg-1 {
    margin-left: 8.3333333333%;
  }
  .grid-cols-lg-1 {
    grid-template-columns: repeat(1, 1fr);
  }
  .grid-rows-lg-1 {
    grid-template-rows: repeat(1, 1fr);
  }
  .grid-colspan-lg-1 {
    grid-column: span 1/span 1;
  }
  .grid-rowspan-lg-1 {
    grid-row: span 1/span 1;
  }
  .col-lg-2 {
    width: 16.6666666667%;
  }
  .inset-lg-2 {
    margin-left: -16.6666666667%;
  }
  .offset-lg-2 {
    margin-left: 16.6666666667%;
  }
  .grid-cols-lg-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-rows-lg-2 {
    grid-template-rows: repeat(2, 1fr);
  }
  .grid-colspan-lg-2 {
    grid-column: span 2/span 2;
  }
  .grid-rowspan-lg-2 {
    grid-row: span 2/span 2;
  }
  .col-lg-3 {
    width: 25%;
  }
  .inset-lg-3 {
    margin-left: -25%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .grid-cols-lg-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid-rows-lg-3 {
    grid-template-rows: repeat(3, 1fr);
  }
  .grid-colspan-lg-3 {
    grid-column: span 3/span 3;
  }
  .grid-rowspan-lg-3 {
    grid-row: span 3/span 3;
  }
  .col-lg-4 {
    width: 33.3333333333%;
  }
  .inset-lg-4 {
    margin-left: -33.3333333333%;
  }
  .offset-lg-4 {
    margin-left: 33.3333333333%;
  }
  .grid-cols-lg-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .grid-rows-lg-4 {
    grid-template-rows: repeat(4, 1fr);
  }
  .grid-colspan-lg-4 {
    grid-column: span 4/span 4;
  }
  .grid-rowspan-lg-4 {
    grid-row: span 4/span 4;
  }
  .col-lg-5 {
    width: 41.6666666667%;
  }
  .inset-lg-5 {
    margin-left: -41.6666666667%;
  }
  .offset-lg-5 {
    margin-left: 41.6666666667%;
  }
  .grid-cols-lg-5 {
    grid-template-columns: repeat(5, 1fr);
  }
  .grid-rows-lg-5 {
    grid-template-rows: repeat(5, 1fr);
  }
  .grid-colspan-lg-5 {
    grid-column: span 5/span 5;
  }
  .grid-rowspan-lg-5 {
    grid-row: span 5/span 5;
  }
  .col-lg-6 {
    width: 50%;
  }
  .inset-lg-6 {
    margin-left: -50%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .grid-cols-lg-6 {
    grid-template-columns: repeat(6, 1fr);
  }
  .grid-rows-lg-6 {
    grid-template-rows: repeat(6, 1fr);
  }
  .grid-colspan-lg-6 {
    grid-column: span 6/span 6;
  }
  .grid-rowspan-lg-6 {
    grid-row: span 6/span 6;
  }
  .col-lg-7 {
    width: 58.3333333333%;
  }
  .inset-lg-7 {
    margin-left: -58.3333333333%;
  }
  .offset-lg-7 {
    margin-left: 58.3333333333%;
  }
  .grid-cols-lg-7 {
    grid-template-columns: repeat(7, 1fr);
  }
  .grid-rows-lg-7 {
    grid-template-rows: repeat(7, 1fr);
  }
  .grid-colspan-lg-7 {
    grid-column: span 7/span 7;
  }
  .grid-rowspan-lg-7 {
    grid-row: span 7/span 7;
  }
  .col-lg-8 {
    width: 66.6666666667%;
  }
  .inset-lg-8 {
    margin-left: -66.6666666667%;
  }
  .offset-lg-8 {
    margin-left: 66.6666666667%;
  }
  .grid-cols-lg-8 {
    grid-template-columns: repeat(8, 1fr);
  }
  .grid-rows-lg-8 {
    grid-template-rows: repeat(8, 1fr);
  }
  .grid-colspan-lg-8 {
    grid-column: span 8/span 8;
  }
  .grid-rowspan-lg-8 {
    grid-row: span 8/span 8;
  }
  .col-lg-9 {
    width: 75%;
  }
  .inset-lg-9 {
    margin-left: -75%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .grid-cols-lg-9 {
    grid-template-columns: repeat(9, 1fr);
  }
  .grid-rows-lg-9 {
    grid-template-rows: repeat(9, 1fr);
  }
  .grid-colspan-lg-9 {
    grid-column: span 9/span 9;
  }
  .grid-rowspan-lg-9 {
    grid-row: span 9/span 9;
  }
  .col-lg-10 {
    width: 83.3333333333%;
  }
  .inset-lg-10 {
    margin-left: -83.3333333333%;
  }
  .offset-lg-10 {
    margin-left: 83.3333333333%;
  }
  .grid-cols-lg-10 {
    grid-template-columns: repeat(10, 1fr);
  }
  .grid-rows-lg-10 {
    grid-template-rows: repeat(10, 1fr);
  }
  .grid-colspan-lg-10 {
    grid-column: span 10/span 10;
  }
  .grid-rowspan-lg-10 {
    grid-row: span 10/span 10;
  }
  .col-lg-11 {
    width: 91.6666666667%;
  }
  .inset-lg-11 {
    margin-left: -91.6666666667%;
  }
  .offset-lg-11 {
    margin-left: 91.6666666667%;
  }
  .grid-cols-lg-11 {
    grid-template-columns: repeat(11, 1fr);
  }
  .grid-rows-lg-11 {
    grid-template-rows: repeat(11, 1fr);
  }
  .grid-colspan-lg-11 {
    grid-column: span 11/span 11;
  }
  .grid-rowspan-lg-11 {
    grid-row: span 11/span 11;
  }
  .col-lg-12 {
    width: 100%;
  }
  .inset-lg-12 {
    margin-left: -100%;
  }
  .offset-lg-12 {
    margin-left: 100%;
  }
  .grid-cols-lg-12 {
    grid-template-columns: repeat(12, 1fr);
  }
  .grid-rows-lg-12 {
    grid-template-rows: repeat(12, 1fr);
  }
  .grid-colspan-lg-12 {
    grid-column: span 12/span 12;
  }
  .grid-rowspan-lg-12 {
    grid-row: span 12/span 12;
  }
}
* {
  font-family: inherit;
}

body {
  color: #00253d;
  font-family: var(--fontFamily);
  font-size: 4rem;
  line-height: 6rem;
}

p, li {
  margin-bottom: 5rem;
}

.section-tit1 {
  font-weight: 700;
  color: #00253d;
}
@media (min-width: 768px) {
  .section-tit1 {
    margin-bottom: 5.75rem;
    font-size: 7.5rem;
    line-height: 1;
  }
}
@media (max-width: 767px) {
  .section-tit1 {
    margin-bottom: 4rem;
    font-size: 6rem;
    line-height: 1.25;
  }
}

.text-primary {
  color: #004b7d;
}

.text-secondary {
  color: #00253d;
}

.text-tertiary {
  color: #3090c8;
}

.text-black {
  color: #00253d;
}

.text-grey4 {
  color: #495057;
}

.text-grey3 {
  color: #ACB5BD;
}

.text-grey2 {
  color: #DDE2E5;
}

.text-grey1 {
  color: #F8F9FA;
}

.text-white {
  color: #FFFFFF;
}

.text-error {
  color: #F44336;
}

.text-success {
  color: #00D385;
}

.text-warning {
  color: #FFC107;
}

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

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

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

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

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

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

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

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

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

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

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

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

.text-underline {
  text-decoration: underline;
}

.text-linethrough {
  text-decoration: line-through;
}

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

.text-h1 {
  font-size: 39rem;
  line-height: 40rem;
}

.text-h2 {
  font-size: 30.5rem;
  line-height: 31.5rem;
}

.text-h3 {
  font-size: 23rem;
  line-height: 24rem;
}

.text-h4 {
  font-size: 21rem;
  line-height: 22.5rem;
}

.text-h5 {
  font-size: 19rem;
  line-height: 20rem;
}

.text-h6 {
  font-size: 17rem;
  line-height: 18rem;
}

.text-h7 {
  font-size: 15rem;
  line-height: 16rem;
}

.text-h8 {
  font-size: 13.5rem;
  line-height: 14.5rem;
}

.text-h9 {
  font-size: 12rem;
  line-height: 52px;
}

.text-h10 {
  font-size: 44px;
  line-height: 13rem;
}

.text-h11 {
  font-size: 10.5rem;
  line-height: 11.5rem;
}

.text-h12 {
  font-size: 9rem;
  line-height: 10rem;
}

.text-h13 {
  font-size: 8rem;
  line-height: 9.5rem;
}

.text-h14 {
  font-size: 7rem;
  line-height: 8rem;
}

.text-h15 {
  font-size: 6rem;
  line-height: 7rem;
}

@media (min-width: 768px) {
  .text-h1-sm {
    font-size: 39rem;
    line-height: 40rem;
  }
  .text-h2-sm {
    font-size: 30.5rem;
    line-height: 31.5rem;
  }
  .text-h3-sm {
    font-size: 23rem;
    line-height: 24rem;
  }
  .text-h4-sm {
    font-size: 21rem;
    line-height: 22.5rem;
  }
  .text-h5-sm {
    font-size: 19rem;
    line-height: 20rem;
  }
  .text-h6-sm {
    font-size: 17rem;
    line-height: 18rem;
  }
  .text-h7-sm {
    font-size: 15rem;
    line-height: 16rem;
  }
  .text-h8-sm {
    font-size: 13.5rem;
    line-height: 14.5rem;
  }
  .text-h9-sm {
    font-size: 12rem;
    line-height: 52px;
  }
  .text-h10-sm {
    font-size: 44px;
    line-height: 13rem;
  }
  .text-h11-sm {
    font-size: 10.5rem;
    line-height: 11.5rem;
  }
  .text-h12-sm {
    font-size: 9rem;
    line-height: 10rem;
  }
  .text-h13-sm {
    font-size: 8rem;
    line-height: 9.5rem;
  }
  .text-h14-sm {
    font-size: 7rem;
    line-height: 8rem;
  }
  .text-h15-sm {
    font-size: 6rem;
    line-height: 7rem;
  }
}
@media (min-width: 1024px) {
  .text-h1-md {
    font-size: 39rem;
    line-height: 40rem;
  }
  .text-h2-md {
    font-size: 30.5rem;
    line-height: 31.5rem;
  }
  .text-h3-md {
    font-size: 23rem;
    line-height: 24rem;
  }
  .text-h4-md {
    font-size: 21rem;
    line-height: 22.5rem;
  }
  .text-h5-md {
    font-size: 19rem;
    line-height: 20rem;
  }
  .text-h6-md {
    font-size: 17rem;
    line-height: 18rem;
  }
  .text-h7-md {
    font-size: 15rem;
    line-height: 16rem;
  }
  .text-h8-md {
    font-size: 13.5rem;
    line-height: 14.5rem;
  }
  .text-h9-md {
    font-size: 12rem;
    line-height: 52px;
  }
  .text-h10-md {
    font-size: 44px;
    line-height: 13rem;
  }
  .text-h11-md {
    font-size: 10.5rem;
    line-height: 11.5rem;
  }
  .text-h12-md {
    font-size: 9rem;
    line-height: 10rem;
  }
  .text-h13-md {
    font-size: 8rem;
    line-height: 9.5rem;
  }
  .text-h14-md {
    font-size: 7rem;
    line-height: 8rem;
  }
  .text-h15-md {
    font-size: 6rem;
    line-height: 7rem;
  }
}
@media (min-width: 1440px) {
  .text-h1-lg {
    font-size: 39rem;
    line-height: 40rem;
  }
  .text-h2-lg {
    font-size: 30.5rem;
    line-height: 31.5rem;
  }
  .text-h3-lg {
    font-size: 23rem;
    line-height: 24rem;
  }
  .text-h4-lg {
    font-size: 21rem;
    line-height: 22.5rem;
  }
  .text-h5-lg {
    font-size: 19rem;
    line-height: 20rem;
  }
  .text-h6-lg {
    font-size: 17rem;
    line-height: 18rem;
  }
  .text-h7-lg {
    font-size: 15rem;
    line-height: 16rem;
  }
  .text-h8-lg {
    font-size: 13.5rem;
    line-height: 14.5rem;
  }
  .text-h9-lg {
    font-size: 12rem;
    line-height: 52px;
  }
  .text-h10-lg {
    font-size: 44px;
    line-height: 13rem;
  }
  .text-h11-lg {
    font-size: 10.5rem;
    line-height: 11.5rem;
  }
  .text-h12-lg {
    font-size: 9rem;
    line-height: 10rem;
  }
  .text-h13-lg {
    font-size: 8rem;
    line-height: 9.5rem;
  }
  .text-h14-lg {
    font-size: 7rem;
    line-height: 8rem;
  }
  .text-h15-lg {
    font-size: 6rem;
    line-height: 7rem;
  }
}
.text-p1 {
  font-size: 5rem;
  line-height: 6rem;
}

.text-p2 {
  font-size: 4.5rem;
  line-height: 5.5rem;
}

.text-p3 {
  font-size: 4rem;
  line-height: 6rem;
}

.text-p4 {
  font-size: 3.5rem;
  line-height: 5rem;
}

.text-p5 {
  font-size: 3rem;
  line-height: 4em;
}

@media (min-width: 768px) {
  .text-p1-sm {
    font-size: 5rem;
    line-height: 6rem;
  }
  .text-p2-sm {
    font-size: 4.5rem;
    line-height: 5.5rem;
  }
  .text-p3-sm {
    font-size: 4rem;
    line-height: 6rem;
  }
  .text-p4-sm {
    font-size: 3.5rem;
    line-height: 5rem;
  }
  .text-p5-sm {
    font-size: 3rem;
    line-height: 4em;
  }
}
@media (min-width: 1024px) {
  .text-p1-md {
    font-size: 5rem;
    line-height: 6rem;
  }
  .text-p2-md {
    font-size: 4.5rem;
    line-height: 5.5rem;
  }
  .text-p3-md {
    font-size: 4rem;
    line-height: 6rem;
  }
  .text-p4-md {
    font-size: 3.5rem;
    line-height: 5rem;
  }
  .text-p5-md {
    font-size: 3rem;
    line-height: 4em;
  }
}
@media (min-width: 1440px) {
  .text-p1-lg {
    font-size: 5rem;
    line-height: 6rem;
  }
  .text-p2-lg {
    font-size: 4.5rem;
    line-height: 5.5rem;
  }
  .text-p3-lg {
    font-size: 4rem;
    line-height: 6rem;
  }
  .text-p4-lg {
    font-size: 3.5rem;
    line-height: 5rem;
  }
  .text-p5-lg {
    font-size: 3rem;
    line-height: 4em;
  }
}
@font-face {
  font-family: "icomoon";
  src: url("icons/icomoon.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
[class^=icon-], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "icomoon" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
}
[class^=icon-]:before, [class*=" icon-"]:before {
  display: block;
}

.icon-12 {
  font-size: 3rem;
}

.icon-16 {
  font-size: 4rem;
}

.icon-20 {
  font-size: 5rem;
}

.icon-24 {
  font-size: 6rem;
}

.icon-28 {
  font-size: 7rem;
}

.icon-dua-Light-account_circle:before {
  content: "\e910";
}

.icon-dua-Light-arrow_back_ios:before {
  content: "\e90f";
}

.icon-dua-Light-arrow_drop_down:before {
  content: "\e90e";
}

.icon-dua-Light-atention:before {
  content: "\e90d";
}

.icon-dua-Light-double_arrow:before {
  content: "\e90c";
}

.icon-dua-Light-favorite_border:before {
  content: "\e90b";
}

.icon-dua-Light-local_offer:before {
  content: "\e90a";
}

.icon-dua-Light-local_shipping:before {
  content: "\e909";
}

.icon-dua-Light-menu:before {
  content: "\e908";
}

.icon-dua-Light-restore:before {
  content: "\e907";
}

.icon-dua-Light-search:before {
  content: "\e906";
}

.icon-dua-Light-shopping_cart:before {
  content: "\e905";
}

.icon-dua-RRSS-facebook:before {
  content: "\e904";
}

.icon-dua-RRSS-linkedin:before {
  content: "\e903";
}

.icon-dua-RRSS-twitter:before {
  content: "\e902";
}

.icon-dua-RRSS-whastapp:before {
  content: "\e901";
}

.icon-dua-RRSS-x:before {
  content: "\e900";
}

.icon-ibm-alphanumeric--letter_Aa:before {
  content: "\e911";
}

.icon-ibm-alphanumeric--letter_Bb:before {
  content: "\e912";
}

.icon-ibm-alphanumeric--letter_Cc:before {
  content: "\e913";
}

.icon-ibm-alphanumeric--letter_Dd:before {
  content: "\e914";
}

.icon-ibm-alphanumeric--letter_Ee:before {
  content: "\e915";
}

.icon-ibm-alphanumeric--letter_Ff:before {
  content: "\e916";
}

.icon-ibm-alphanumeric--letter_Gg:before {
  content: "\e917";
}

.icon-ibm-alphanumeric--letter_Hh:before {
  content: "\e918";
}

.icon-ibm-alphanumeric--letter_Ii:before {
  content: "\e919";
}

.icon-ibm-alphanumeric--letter_Jj:before {
  content: "\e91a";
}

.icon-ibm-alphanumeric--letter_Kk:before {
  content: "\e91b";
}

.icon-ibm-alphanumeric--letter_Ll:before {
  content: "\e91c";
}

.icon-ibm-alphanumeric--letter_Mm:before {
  content: "\e91d";
}

.icon-ibm-alphanumeric--letter_Nn:before {
  content: "\e91e";
}

.icon-ibm-alphanumeric--letter_Oo:before {
  content: "\e91f";
}

.icon-ibm-alphanumeric--letter_Pp:before {
  content: "\e920";
}

.icon-ibm-alphanumeric--letter_Qq:before {
  content: "\e921";
}

.icon-ibm-alphanumeric--letter_Rr:before {
  content: "\e922";
}

.icon-ibm-alphanumeric--letter_Ss:before {
  content: "\e923";
}

.icon-ibm-alphanumeric--letter_Tt:before {
  content: "\e924";
}

.icon-ibm-alphanumeric--letter_Uu:before {
  content: "\e925";
}

.icon-ibm-alphanumeric--letter_Vv:before {
  content: "\e926";
}

.icon-ibm-alphanumeric--letter_Ww:before {
  content: "\e927";
}

.icon-ibm-alphanumeric--letter_Xx:before {
  content: "\e928";
}

.icon-ibm-alphanumeric--letter_Yy:before {
  content: "\e929";
}

.icon-ibm-alphanumeric--letter_Zz:before {
  content: "\e92a";
}

.icon-ibm-alphanumeric--number_-7:before {
  content: "\e92b";
}

.icon-ibm-alphanumeric--number_0:before {
  content: "\e92c";
}

.icon-ibm-alphanumeric--number_1:before {
  content: "\e92d";
}

.icon-ibm-alphanumeric--number_2:before {
  content: "\e92f";
}

.icon-ibm-alphanumeric--number_3:before {
  content: "\e930";
}

.icon-ibm-alphanumeric--number_4:before {
  content: "\e931";
}

.icon-ibm-alphanumeric--number_5:before {
  content: "\e933";
}

.icon-ibm-alphanumeric--number_6:before {
  content: "\e934";
}

.icon-ibm-alphanumeric--number_8:before {
  content: "\e935";
}

.icon-ibm-alphanumeric--number_9:before {
  content: "\e936";
}

.icon-ibm-alphanumeric--number_small_0:before {
  content: "\e937";
}

.icon-ibm-alphanumeric--number_small_1:before {
  content: "\e938";
}

.icon-ibm-alphanumeric--number_small_2:before {
  content: "\e939";
}

.icon-ibm-alphanumeric--number_small_3:before {
  content: "\e93a";
}

.icon-ibm-alphanumeric--number_small_4:before {
  content: "\e93b";
}

.icon-ibm-alphanumeric--number_small_5:before {
  content: "\e93c";
}

.icon-ibm-alphanumeric--number_small_6:before {
  content: "\e93d";
}

.icon-ibm-alphanumeric--number_small_7:before {
  content: "\e93e";
}

.icon-ibm-alphanumeric--number_small_8:before {
  content: "\e93f";
}

.icon-ibm-alphanumeric--number_small_9:before {
  content: "\e940";
}

.icon-ibm-alphanumeric--omega:before {
  content: "\e941";
}

.icon-ibm-alphanumeric--sigma:before {
  content: "\e942";
}

.icon-ibm-app_catalogue--cloud_alerting:before {
  content: "\e943";
}

.icon-ibm-app_catalogue--cloud_auditing:before {
  content: "\e944";
}

.icon-ibm-app_catalogue--cloud_data_ops:before {
  content: "\e945";
}

.icon-ibm-app_catalogue--cloud_foundry_1:before {
  content: "\e946";
}

.icon-ibm-app_catalogue--cloud_logging:before {
  content: "\e947";
}

.icon-ibm-app_catalogue--cloud_monitoring:before {
  content: "\e948";
}

.icon-ibm-app_catalogue--cloud_registry:before {
  content: "\e949";
}

.icon-ibm-app_catalogue--cloud_satellite:before {
  content: "\e94a";
}

.icon-ibm-app_catalogue--cloud_service_management:before {
  content: "\e94e";
}

.icon-ibm-app_catalogue--cloud_services:before {
  content: "\e94f";
}

.icon-ibm-app_catalogue--content_delivery_network:before {
  content: "\e950";
}

.icon-ibm-app_catalogue--direct_link:before {
  content: "\e951";
}

.icon-ibm-app_catalogue--dns_services:before {
  content: "\e952";
}

.icon-ibm-app_catalogue--flow_logs_vpc:before {
  content: "\e953";
}

.icon-ibm-app_catalogue--ibm_cloud_dedicated_host:before {
  content: "\e954";
}

.icon-ibm-app_catalogue--ibm_cloud_internet_services:before {
  content: "\e955";
}

.icon-ibm-app_catalogue--ibm_cloud_subnets:before {
  content: "\e956";
}

.icon-ibm-app_catalogue--ibm_cloud_vpc_endpoints:before {
  content: "\e957";
}

.icon-ibm-app_catalogue--ibm_security_services:before {
  content: "\e958";
}

.icon-ibm-app_catalogue--infrastructure_classic:before {
  content: "\e959";
}

.icon-ibm-app_catalogue--load_balancer_vpc:before {
  content: "\e95a";
}

.icon-ibm-app_catalogue--virtual_private_cloud_alt:before {
  content: "\e95b";
}

.icon-ibm-app_catalogue--vlan_ibm:before {
  content: "\e95c";
}

.icon-ibm-commerce--account:before {
  content: "\e95d";
}

.icon-ibm-commerce--apple:before {
  content: "\e95e";
}

.icon-ibm-commerce--basketball:before {
  content: "\e95f";
}

.icon-ibm-commerce--bat:before {
  content: "\e960";
}

.icon-ibm-commerce--bee_bat:before {
  content: "\e961";
}

.icon-ibm-commerce--building:before {
  content: "\e962";
}

.icon-ibm-commerce--corn:before {
  content: "\e963";
}

.icon-ibm-commerce--currency:before {
  content: "\e964";
}

.icon-ibm-commerce--currency_baht:before {
  content: "\e965";
}

.icon-ibm-commerce--currency_dollar:before {
  content: "\e966";
}

.icon-ibm-commerce--currency_euro:before {
  content: "\e967";
}

.icon-ibm-commerce--currency_lira:before {
  content: "\e968";
}

.icon-ibm-commerce--currency_pound:before {
  content: "\e969";
}

.icon-ibm-commerce--currency_ruble:before {
  content: "\e96a";
}

.icon-ibm-commerce--currency_rupee:before {
  content: "\e96b";
}

.icon-ibm-commerce--currency_shekel:before {
  content: "\e96c";
}

.icon-ibm-commerce--currency_won:before {
  content: "\e96d";
}

.icon-ibm-commerce--currency_yen:before {
  content: "\e96e";
}

.icon-ibm-commerce--delivery_add:before {
  content: "\e96f";
}

.icon-ibm-commerce--delivey:before {
  content: "\e970";
}

.icon-ibm-commerce--delivey_parcel:before {
  content: "\e971";
}

.icon-ibm-commerce--enterprise:before {
  content: "\e972";
}

.icon-ibm-commerce--finance:before {
  content: "\e973";
}

.icon-ibm-commerce--fish:before {
  content: "\e974";
}

.icon-ibm-commerce--fish_multiple:before {
  content: "\e975";
}

.icon-ibm-commerce--fragile:before {
  content: "\e976";
}

.icon-ibm-commerce--fruit_bowl:before {
  content: "\e977";
}

.icon-ibm-commerce--gift:before {
  content: "\e978";
}

.icon-ibm-commerce--industry:before {
  content: "\e979";
}

.icon-ibm-commerce--inventory_management:before {
  content: "\e97a";
}

.icon-ibm-commerce--keep_dry:before {
  content: "\e97b";
}

.icon-ibm-commerce--money:before {
  content: "\e97c";
}

.icon-ibm-commerce--monster:before {
  content: "\e97d";
}

.icon-ibm-commerce--noodle_bowl:before {
  content: "\e97e";
}

.icon-ibm-commerce--piggy_bank:before {
  content: "\e97f";
}

.icon-ibm-commerce--piggy_bank_slot:before {
  content: "\e980";
}

.icon-ibm-commerce--purchase:before {
  content: "\e981";
}

.icon-ibm-commerce--receipt:before {
  content: "\e982";
}

.icon-ibm-commerce--shopping_bag:before {
  content: "\e983";
}

.icon-ibm-commerce--shopping_cart:before {
  content: "\e984";
}

.icon-ibm-commerce--shopping_cart_arrow_down:before {
  content: "\e985";
}

.icon-ibm-commerce--shopping_cart_arrow_up:before {
  content: "\e986";
}

.icon-ibm-commerce--shopping_cart_clear:before {
  content: "\e987";
}

.icon-ibm-commerce--shopping_cart_error:before {
  content: "\e988";
}

.icon-ibm-commerce--shopping_cart_minus:before {
  content: "\e989";
}

.icon-ibm-commerce--shopping_cart_plus:before {
  content: "\e98a";
}

.icon-ibm-commerce--shopping_catalog:before {
  content: "\e98b";
}

.icon-ibm-commerce--soccer:before {
  content: "\e98c";
}

.icon-ibm-commerce--sprout:before {
  content: "\e98d";
}

.icon-ibm-commerce--stack_limitation:before {
  content: "\e98e";
}

.icon-ibm-commerce--store:before {
  content: "\e98f";
}

.icon-ibm-commerce--strawberry:before {
  content: "\e990";
}

.icon-ibm-commerce--tennis:before {
  content: "\e991";
}

.icon-ibm-commerce--tennis_ball:before {
  content: "\e992";
}

.icon-ibm-commerce--this_side_up:before {
  content: "\e993";
}

.icon-ibm-commerce--tree:before {
  content: "\e994";
}

.icon-ibm-commerce--two_person_lift:before {
  content: "\e995";
}

.icon-ibm-commerce--wallet:before {
  content: "\e996";
}

.icon-ibm-commerce--wheat:before {
  content: "\e997";
}

.icon-ibm-commerce--wireless_checkout:before {
  content: "\e998";
}

.icon-ibm-controls--center_to_fit:before {
  content: "\e999";
}

.icon-ibm-controls--dashboard:before {
  content: "\e99a";
}

.icon-ibm-controls--dashboard_referente:before {
  content: "\e99b";
}

.icon-ibm-controls--fit_to_screen:before {
  content: "\e99c";
}

.icon-ibm-controls--forward_10:before {
  content: "\e99d";
}

.icon-ibm-controls--forward_30:before {
  content: "\e99e";
}

.icon-ibm-controls--forward_5:before {
  content: "\e99f";
}

.icon-ibm-controls--next_filled:before {
  content: "\e9a0";
}

.icon-ibm-controls--next_outline:before {
  content: "\e9a1";
}

.icon-ibm-controls--open_panel_bottom:before {
  content: "\e9a2";
}

.icon-ibm-controls--open_panel_filled_bottom:before {
  content: "\e9a3";
}

.icon-ibm-controls--open_panel_filled_left:before {
  content: "\e9a4";
}

.icon-ibm-controls--open_panel_filled_right:before {
  content: "\e9a5";
}

.icon-ibm-controls--open_panel_filled_top:before {
  content: "\e9a6";
}

.icon-ibm-controls--open_panel_left:before {
  content: "\e9a7";
}

.icon-ibm-controls--open_panel_right:before {
  content: "\e9a8";
}

.icon-ibm-controls--open_panel_top:before {
  content: "\e9a9";
}

.icon-ibm-controls--pause:before {
  content: "\e9aa";
}

.icon-ibm-controls--pause_filled:before {
  content: "\e9ab";
}

.icon-ibm-controls--pause_outline:before {
  content: "\e9ac";
}

.icon-ibm-controls--pause_outline_filled:before {
  content: "\e9ad";
}

.icon-ibm-controls--play:before {
  content: "\e9ae";
}

.icon-ibm-controls--play_filled:before {
  content: "\e9af";
}

.icon-ibm-controls--play_filled_alt:before {
  content: "\e9b0";
}

.icon-ibm-controls--play_outline:before {
  content: "\e9b1";
}

.icon-ibm-controls--play_outline_filled:before {
  content: "\e9b2";
}

.icon-ibm-controls--power:before {
  content: "\e9b3";
}

.icon-ibm-controls--previous_filled:before {
  content: "\e9b4";
}

.icon-ibm-controls--previous_outline:before {
  content: "\e9b5";
}

.icon-ibm-controls--recording:before {
  content: "\e9b6";
}

.icon-ibm-controls--recording_filled:before {
  content: "\e9b7";
}

.icon-ibm-controls--recording_filled_alt:before {
  content: "\e9b8";
}

.icon-ibm-controls--rewind_10:before {
  content: "\e9b9";
}

.icon-ibm-controls--rewind_30:before {
  content: "\e9ba";
}

.icon-ibm-controls--rewind_5:before {
  content: "\e9bb";
}

.icon-ibm-controls--settings:before {
  content: "\e9bc";
}

.icon-ibm-controls--settings_adjust:before {
  content: "\e9bd";
}

.icon-ibm-controls--settings_check:before {
  content: "\e9be";
}

.icon-ibm-controls--shrink_screen:before {
  content: "\e9bf";
}

.icon-ibm-controls--shrink_screen_filled:before {
  content: "\e9c0";
}

.icon-ibm-controls--skip_back:before {
  content: "\e9c1";
}

.icon-ibm-controls--skip_back_filled:before {
  content: "\e9c2";
}

.icon-ibm-controls--skip_back_outline:before {
  content: "\e9c3";
}

.icon-ibm-controls--skip_back_outline_filled:before {
  content: "\e9c4";
}

.icon-ibm-controls--skip_back_solid:before {
  content: "\e9c5";
}

.icon-ibm-controls--skip_back_solid_filled:before {
  content: "\e9c6";
}

.icon-ibm-controls--skip_forward_outline:before {
  content: "\e9c7";
}

.icon-ibm-controls--skip_forward_outline_filled:before {
  content: "\e9c8";
}

.icon-ibm-controls--skip_forward_solid:before {
  content: "\e9c9";
}

.icon-ibm-controls--skip_forward_solid_filled:before {
  content: "\e9ca";
}

.icon-ibm-controls--skip_foward:before {
  content: "\e9cb";
}

.icon-ibm-controls--skip_foward_filled:before {
  content: "\e9cc";
}

.icon-ibm-controls--stop:before {
  content: "\e9cd";
}

.icon-ibm-controls--stop_filled:before {
  content: "\e9ce";
}

.icon-ibm-controls--stop_filled_alt:before {
  content: "\e9cf";
}

.icon-ibm-controls--stop_outline:before {
  content: "\e9d0";
}

.icon-ibm-controls--stop_outline_filled:before {
  content: "\e9d1";
}

.icon-ibm-controls--video_add:before {
  content: "\e9d2";
}

.icon-ibm-controls--video_chat:before {
  content: "\e9d3";
}

.icon-ibm-controls--volume_down:before {
  content: "\e9d4";
}

.icon-ibm-controls--volume_down_alt:before {
  content: "\e9d5";
}

.icon-ibm-controls--volume_down_filled:before {
  content: "\e9d6";
}

.icon-ibm-controls--volume_down_filled_alt:before {
  content: "\e9d7";
}

.icon-ibm-controls--volume_mute:before {
  content: "\e9d8";
}

.icon-ibm-controls--volume_mute_filled:before {
  content: "\e9d9";
}

.icon-ibm-controls--volume_up:before {
  content: "\e9da";
}

.icon-ibm-controls--volume_up_alt:before {
  content: "\e9db";
}

.icon-ibm-controls--volume_up_filled:before {
  content: "\e9dc";
}

.icon-ibm-controls--volume_up_filled_alt:before {
  content: "\e9df";
}

.icon-ibm-data--activity:before {
  content: "\e9e0";
}

.icon-ibm-data--analytics:before {
  content: "\e9e1";
}

.icon-ibm-data--analytics_reference:before {
  content: "\e9e2";
}

.icon-ibm-data--app_connectivity:before {
  content: "\e9e3";
}

.icon-ibm-data--archive:before {
  content: "\e9e4";
}

.icon-ibm-data--blockchain:before {
  content: "\e9e5";
}

.icon-ibm-data--boolean:before {
  content: "\e9e6";
}

.icon-ibm-data--box_plot:before {
  content: "\e9e7";
}

.icon-ibm-data--calculation:before {
  content: "\e9e8";
}

.icon-ibm-data--calculation_alt:before {
  content: "\e9e9";
}

.icon-ibm-data--calendar_heat_map:before {
  content: "\e9ea";
}

.icon-ibm-data--char_bubble_packed:before {
  content: "\e9eb";
}

.icon-ibm-data--character_patterns:before {
  content: "\e9ec";
}

.icon-ibm-data--chart_3D:before {
  content: "\e9ed";
}

.icon-ibm-data--chart_area:before {
  content: "\e9ee";
}

.icon-ibm-data--chart_area_smooth:before {
  content: "\e9ef";
}

.icon-ibm-data--chart_area_stepper:before {
  content: "\e9f0";
}

.icon-ibm-data--chart_average:before {
  content: "\e9f1";
}

.icon-ibm-data--chart_bar:before {
  content: "\e9f2";
}

.icon-ibm-data--chart_bar_floating:before {
  content: "\e9f3";
}

.icon-ibm-data--chart_bar_overlay:before {
  content: "\e9f4";
}

.icon-ibm-data--chart_bar_stacked:before {
  content: "\e9f5";
}

.icon-ibm-data--chart_bar_target:before {
  content: "\e9f6";
}

.icon-ibm-data--chart_bubble:before {
  content: "\e9f7";
}

.icon-ibm-data--chart_bullet:before {
  content: "\e9f8";
}

.icon-ibm-data--chart_candlestick:before {
  content: "\e9f9";
}

.icon-ibm-data--chart_cluster_bar:before {
  content: "\e9fa";
}

.icon-ibm-data--chart_column:before {
  content: "\e9fb";
}

.icon-ibm-data--chart_column_floating:before {
  content: "\e9fc";
}

.icon-ibm-data--chart_column_target:before {
  content: "\e9fd";
}

.icon-ibm-data--chart_combo:before {
  content: "\e9fe";
}

.icon-ibm-data--chart_combo_stacked:before {
  content: "\e9ff";
}

.icon-ibm-data--chart_custom:before {
  content: "\ea00";
}

.icon-ibm-data--chart_error_bar:before {
  content: "\ea01";
}

.icon-ibm-data--chart_error_bar_alt:before {
  content: "\ea02";
}

.icon-ibm-data--chart_evaluation:before {
  content: "\ea03";
}

.icon-ibm-data--chart_high_low:before {
  content: "\ea04";
}

.icon-ibm-data--chart_histogram:before {
  content: "\ea05";
}

.icon-ibm-data--chart_line:before {
  content: "\ea06";
}

.icon-ibm-data--chart_line_data:before {
  content: "\ea07";
}

.icon-ibm-data--chart_line_smooth:before {
  content: "\ea08";
}

.icon-ibm-data--chart_marimekko:before {
  content: "\ea09";
}

.icon-ibm-data--chart_maximum:before {
  content: "\ea0a";
}

.icon-ibm-data--chart_median:before {
  content: "\ea0b";
}

.icon-ibm-data--chart_minimum:before {
  content: "\ea0c";
}

.icon-ibm-data--chart_multi_line:before {
  content: "\ea0d";
}

.icon-ibm-data--chart_multitype:before {
  content: "\ea0e";
}

.icon-ibm-data--chart_network:before {
  content: "\ea0f";
}

.icon-ibm-data--chart_parallel:before {
  content: "\ea10";
}

.icon-ibm-data--chart_pie:before {
  content: "\ea11";
}

.icon-ibm-data--chart_point:before {
  content: "\ea12";
}

.icon-ibm-data--chart_population:before {
  content: "\ea13";
}

.icon-ibm-data--chart_radar:before {
  content: "\ea14";
}

.icon-ibm-data--chart_radial:before {
  content: "\ea15";
}

.icon-ibm-data--chart_relationship:before {
  content: "\ea16";
}

.icon-ibm-data--chart_ring:before {
  content: "\ea17";
}

.icon-ibm-data--chart_river:before {
  content: "\ea18";
}

.icon-ibm-data--chart_rose:before {
  content: "\ea19";
}

.icon-ibm-data--chart_scatter:before {
  content: "\ea1a";
}

.icon-ibm-data--chart_spiral:before {
  content: "\ea1b";
}

.icon-ibm-data--chart_stacked:before {
  content: "\ea1c";
}

.icon-ibm-data--chart_stepper:before {
  content: "\ea1d";
}

.icon-ibm-data--chart_sunburst:before {
  content: "\ea1e";
}

.icon-ibm-data--chart_t_sne:before {
  content: "\ea1f";
}

.icon-ibm-data--chart_treemap:before {
  content: "\ea20";
}

.icon-ibm-data--chart_venn_diagram:before {
  content: "\ea21";
}

.icon-ibm-data--chart_violin_plot:before {
  content: "\ea22";
}

.icon-ibm-data--chart_waterfall:before {
  content: "\ea23";
}

.icon-ibm-data--chart_win_loss:before {
  content: "\ea24";
}

.icon-ibm-data--choropleth_map:before {
  content: "\ea25";
}

.icon-ibm-data--circle_filled:before {
  content: "\ea26";
}

.icon-ibm-data--circle_packaging:before {
  content: "\ea27";
}

.icon-ibm-data--classifier_language:before {
  content: "\ea28";
}

.icon-ibm-data--cloud_data_ops:before {
  content: "\ea29";
}

.icon-ibm-data--cloud_registry:before {
  content: "\ea2a";
}

.icon-ibm-data--cloud_satellite:before {
  content: "\ea2b";
}

.icon-ibm-data--column_dependency:before {
  content: "\ea2f";
}

.icon-ibm-data--concept:before {
  content: "\ea30";
}

.icon-ibm-data--container_software:before {
  content: "\ea31";
}

.icon-ibm-data--covariate:before {
  content: "\ea32";
}

.icon-ibm-data--cross_tab:before {
  content: "\ea33";
}

.icon-ibm-data--data_1:before {
  content: "\ea34";
}

.icon-ibm-data--data_2:before {
  content: "\ea35";
}

.icon-ibm-data--data_base:before {
  content: "\ea36";
}

.icon-ibm-data--data_base_alt:before {
  content: "\ea37";
}

.icon-ibm-data--data_bin:before {
  content: "\ea38";
}

.icon-ibm-data--data_check:before {
  content: "\ea39";
}

.icon-ibm-data--data_class:before {
  content: "\ea3a";
}

.icon-ibm-data--data_collection:before {
  content: "\ea3b";
}

.icon-ibm-data--data_connected:before {
  content: "\ea3c";
}

.icon-ibm-data--data_error:before {
  content: "\ea3d";
}

.icon-ibm-data--data_format:before {
  content: "\ea3e";
}

.icon-ibm-data--data_player:before {
  content: "\ea3f";
}

.icon-ibm-data--data_reference:before {
  content: "\ea40";
}

.icon-ibm-data--data_refinery:before {
  content: "\ea41";
}

.icon-ibm-data--data_refinery_reference:before {
  content: "\ea42";
}

.icon-ibm-data--data_set:before {
  content: "\ea43";
}

.icon-ibm-data--data_share:before {
  content: "\ea44";
}

.icon-ibm-data--data_structured:before {
  content: "\ea45";
}

.icon-ibm-data--data_table:before {
  content: "\ea46";
}

.icon-ibm-data--data_table_reference:before {
  content: "\ea47";
}

.icon-ibm-data--data_unstructured:before {
  content: "\ea48";
}

.icon-ibm-data--data_view:before {
  content: "\ea49";
}

.icon-ibm-data--data_vis_1:before {
  content: "\ea4a";
}

.icon-ibm-data--data_vis_2:before {
  content: "\ea4b";
}

.icon-ibm-data--data_vis_3:before {
  content: "\ea4c";
}

.icon-ibm-data--data_vis_4:before {
  content: "\ea4d";
}

.icon-ibm-data--datastore:before {
  content: "\ea4e";
}

.icon-ibm-data--decision_tree:before {
  content: "\ea4f";
}

.icon-ibm-data--diagram:before {
  content: "\ea50";
}

.icon-ibm-data--diagram_reference:before {
  content: "\ea51";
}

.icon-ibm-data--document_sentiment:before {
  content: "\ea52";
}

.icon-ibm-data--double_integer:before {
  content: "\ea53";
}

.icon-ibm-data--driver_analysis:before {
  content: "\ea54";
}

.icon-ibm-data--factor:before {
  content: "\ea55";
}

.icon-ibm-data--flow:before {
  content: "\ea56";
}

.icon-ibm-data--flow_connection:before {
  content: "\ea57";
}

.icon-ibm-data--flow_data:before {
  content: "\ea58";
}

.icon-ibm-data--flow_modeler:before {
  content: "\ea59";
}

.icon-ibm-data--flow_stream:before {
  content: "\ea5a";
}

.icon-ibm-data--flow_stream_reference:before {
  content: "\ea5d";
}

.icon-ibm-data--graphical_data_flow:before {
  content: "\ea62";
}

.icon-ibm-data--growth:before {
  content: "\ea63";
}

.icon-ibm-data--hashtag:before {
  content: "\ea64";
}

.icon-ibm-data--heat_map:before {
  content: "\ea65";
}

.icon-ibm-data--heat_map_02:before {
  content: "\ea66";
}

.icon-ibm-data--heat_map_03:before {
  content: "\ea67";
}

.icon-ibm-data--heat_map_stocks:before {
  content: "\ea68";
}

.icon-ibm-data--hybrid_networking:before {
  content: "\ea69";
}

.icon-ibm-data--improve_relevence:before {
  content: "\ea6a";
}

.icon-ibm-data--increase_level:before {
  content: "\ea6b";
}

.icon-ibm-data--interactions:before {
  content: "\ea6c";
}

.icon-ibm-data--join_full:before {
  content: "\ea6d";
}

.icon-ibm-data--join_inner:before {
  content: "\ea6e";
}

.icon-ibm-data--join_outer:before {
  content: "\ea6f";
}

.icon-ibm-data--join_right:before {
  content: "\ea70";
}

.icon-ibm-data--joing_left:before {
  content: "\ea71";
}

.icon-ibm-data--managed_solutions:before {
  content: "\ea72";
}

.icon-ibm-data--math_curve:before {
  content: "\ea73";
}

.icon-ibm-data--model_builder:before {
  content: "\ea74";
}

.icon-ibm-data--model_builder_reference:before {
  content: "\ea75";
}

.icon-ibm-data--name_space:before {
  content: "\ea76";
}

.icon-ibm-data--network_1:before {
  content: "\ea77";
}

.icon-ibm-data--network_2:before {
  content: "\ea78";
}

.icon-ibm-data--network_3:before {
  content: "\ea79";
}

.icon-ibm-data--network_3_reference:before {
  content: "\ea7a";
}

.icon-ibm-data--network_4:before {
  content: "\ea7b";
}

.icon-ibm-data--nominal:before {
  content: "\ea7c";
}

.icon-ibm-data--object_storage:before {
  content: "\ea7d";
}

.icon-ibm-data--ordinal:before {
  content: "\ea7e";
}

.icon-ibm-data--parameter:before {
  content: "\ea7f";
}

.icon-ibm-data--parent_child:before {
  content: "\ea80";
}

.icon-ibm-data--phrase_sentiment:before {
  content: "\ea81";
}

.icon-ibm-data--presentation_file:before {
  content: "\ea82";
}

.icon-ibm-data--progress_bar:before {
  content: "\ea83";
}

.icon-ibm-data--progress_bar_round:before {
  content: "\ea84";
}

.icon-ibm-data--qq_plot:before {
  content: "\ea85";
}

.icon-ibm-data--quadrant_plot:before {
  content: "\ea86";
}

.icon-ibm-data--query_queue:before {
  content: "\ea87";
}

.icon-ibm-data--report:before {
  content: "\ea88";
}

.icon-ibm-data--report_data:before {
  content: "\ea89";
}

.icon-ibm-data--row_collapse:before {
  content: "\ea8a";
}

.icon-ibm-data--row_expand:before {
  content: "\ea8b";
}

.icon-ibm-data--sankey_diagram:before {
  content: "\ea8c";
}

.icon-ibm-data--sankey_diagram_alt:before {
  content: "\ea8d";
}

.icon-ibm-data--scatter_matrix:before {
  content: "\ea8e";
}

.icon-ibm-data--schematics:before {
  content: "\ea8f";
}

.icon-ibm-data--share_knowledge:before {
  content: "\ea90";
}

.icon-ibm-data--skill_level:before {
  content: "\ea91";
}

.icon-ibm-data--skill_level_advanced:before {
  content: "\ea92";
}

.icon-ibm-data--skill_level_basic:before {
  content: "\ea93";
}

.icon-ibm-data--skill_level_intermediate:before {
  content: "\ea94";
}

.icon-ibm-data--stem_leaf_plot:before {
  content: "\ea95";
}

.icon-ibm-data--storage_pool:before {
  content: "\ea96";
}

.icon-ibm-data--storage_request:before {
  content: "\ea97";
}

.icon-ibm-data--string_integer:before {
  content: "\ea98";
}

.icon-ibm-data--string_text:before {
  content: "\ea99";
}

.icon-ibm-data--summary_KPI:before {
  content: "\ea9a";
}

.icon-ibm-data--sys_provision:before {
  content: "\ea9b";
}

.icon-ibm-data--table:before {
  content: "\ea9c";
}

.icon-ibm-data--table_built:before {
  content: "\ea9d";
}

.icon-ibm-data--table_split:before {
  content: "\ea9e";
}

.icon-ibm-data--term:before {
  content: "\ea9f";
}

.icon-ibm-data--text_link:before {
  content: "\eaa0";
}

.icon-ibm-data--text_link_analysis:before {
  content: "\eaa1";
}

.icon-ibm-data--text_mining:before {
  content: "\eaa2";
}

.icon-ibm-data--text_mining_applier:before {
  content: "\eaa3";
}

.icon-ibm-data--time_plot:before {
  content: "\eaa4";
}

.icon-ibm-data--tree_view:before {
  content: "\eaa5";
}

.icon-ibm-data--tree_view_alt:before {
  content: "\eaa6";
}

.icon-ibm-data--type_pattern:before {
  content: "\eaa7";
}

.icon-ibm-data--types:before {
  content: "\eaa8";
}

.icon-ibm-data--virtual_cloumn:before {
  content: "\eaa9";
}

.icon-ibm-data--virtual_column_key:before {
  content: "\eaaa";
}

.icon-ibm-data--virtual_machine:before {
  content: "\eaab";
}

.icon-ibm-data--virtual_private_cloud:before {
  content: "\eaac";
}

.icon-ibm-data--virtual_private_cloud_alt:before {
  content: "\eaad";
}

.icon-ibm-data--visual_recognition:before {
  content: "\eaae";
}

.icon-ibm-data--vmdk_disk:before {
  content: "\eaaf";
}

.icon-ibm-data--word_cloud:before {
  content: "\eab0";
}

.icon-ibm-file--4K:before {
  content: "\eab1";
}

.icon-ibm-file--4K_filled:before {
  content: "\eab2";
}

.icon-ibm-file--API:before {
  content: "\eab3";
}

.icon-ibm-file--CAD:before {
  content: "\eab4";
}

.icon-ibm-file--CDA:before {
  content: "\eab5";
}

.icon-ibm-file--CSV:before {
  content: "\eab6";
}

.icon-ibm-file--DOC:before {
  content: "\eab7";
}

.icon-ibm-file--DVR:before {
  content: "\eab8";
}

.icon-ibm-file--GIF:before {
  content: "\eab9";
}

.icon-ibm-file--HD:before {
  content: "\eaba";
}

.icon-ibm-file--HDR:before {
  content: "\eabb";
}

.icon-ibm-file--HD_filled:before {
  content: "\eabc";
}

.icon-ibm-file--HMTL:before {
  content: "\eabd";
}

.icon-ibm-file--HTML_reference:before {
  content: "\eabe";
}

.icon-ibm-file--HTTP:before {
  content: "\eabf";
}

.icon-ibm-file--ISO:before {
  content: "\eac0";
}

.icon-ibm-file--ISO_filled:before {
  content: "\eac1";
}

.icon-ibm-file--ISO_outline:before {
  content: "\eac2";
}

.icon-ibm-file--JPG:before {
  content: "\eac3";
}

.icon-ibm-file--JSON:before {
  content: "\eac4";
}

.icon-ibm-file--JSON_reference:before {
  content: "\eac5";
}

.icon-ibm-file--MOV:before {
  content: "\eac6";
}

.icon-ibm-file--MP3:before {
  content: "\eac7";
}

.icon-ibm-file--MP4:before {
  content: "\eac8";
}

.icon-ibm-file--MPEG:before {
  content: "\eacc";
}

.icon-ibm-file--MPG2:before {
  content: "\eacd";
}

.icon-ibm-file--PDF:before {
  content: "\eace";
}

.icon-ibm-file--PDF_reference:before {
  content: "\eacf";
}

.icon-ibm-file--PNG:before {
  content: "\ead0";
}

.icon-ibm-file--PPT:before {
  content: "\ead1";
}

.icon-ibm-file--RAW:before {
  content: "\ead2";
}

.icon-ibm-file--SDK:before {
  content: "\ead3";
}

.icon-ibm-file--SQL:before {
  content: "\ead4";
}

.icon-ibm-file--SVG:before {
  content: "\ead5";
}

.icon-ibm-file--TIF:before {
  content: "\ead6";
}

.icon-ibm-file--TSV:before {
  content: "\ead7";
}

.icon-ibm-file--TXT:before {
  content: "\ead8";
}

.icon-ibm-file--TXT_reference:before {
  content: "\ead9";
}

.icon-ibm-file--WMV:before {
  content: "\eada";
}

.icon-ibm-file--XLS:before {
  content: "\eadb";
}

.icon-ibm-file--XML:before {
  content: "\eadc";
}

.icon-ibm-file--ZIP:before {
  content: "\eadd";
}

.icon-ibm-file--ZIP_reference:before {
  content: "\eade";
}

.icon-ibm-file--app:before {
  content: "\eadf";
}

.icon-ibm-file--application:before {
  content: "\eae0";
}

.icon-ibm-file--badge:before {
  content: "\eae1";
}

.icon-ibm-file--book:before {
  content: "\eae2";
}

.icon-ibm-file--catalog:before {
  content: "\eae3";
}

.icon-ibm-file--categories:before {
  content: "\eae4";
}

.icon-ibm-file--category:before {
  content: "\eae5";
}

.icon-ibm-file--category_and:before {
  content: "\eae6";
}

.icon-ibm-file--category_app:before {
  content: "\eae7";
}

.icon-ibm-file--category_new:before {
  content: "\eae8";
}

.icon-ibm-file--category_new_each:before {
  content: "\eae9";
}

.icon-ibm-file--certificate:before {
  content: "\eaea";
}

.icon-ibm-file--certificate_check:before {
  content: "\eaeb";
}

.icon-ibm-file--classification:before {
  content: "\eaec";
}

.icon-ibm-file--closed_caption_alt:before {
  content: "\eaed";
}

.icon-ibm-file--closed_caption_filled:before {
  content: "\eaee";
}

.icon-ibm-file--closed_caption_outline:before {
  content: "\eaef";
}

.icon-ibm-file--cloud_foundry_1:before {
  content: "\eaf0";
}

.icon-ibm-file--cloud_foundry_2:before {
  content: "\eaf1";
}

.icon-ibm-file--content_view:before {
  content: "\eaf2";
}

.icon-ibm-file--copy:before {
  content: "\eaf3";
}

.icon-ibm-file--copy_file:before {
  content: "\eaf4";
}

.icon-ibm-file--copy_link:before {
  content: "\eaf5";
}

.icon-ibm-file--course:before {
  content: "\eaf6";
}

.icon-ibm-file--cube:before {
  content: "\eaf7";
}

.icon-ibm-file--cube_view:before {
  content: "\eaf8";
}

.icon-ibm-file--document:before {
  content: "\eaf9";
}

.icon-ibm-file--document_add:before {
  content: "\eafa";
}

.icon-ibm-file--document_attachment:before {
  content: "\eafb";
}

.icon-ibm-file--document_audio:before {
  content: "\eafc";
}

.icon-ibm-file--document_blank:before {
  content: "\eafd";
}

.icon-ibm-file--document_download:before {
  content: "\eafe";
}

.icon-ibm-file--document_export:before {
  content: "\eaff";
}

.icon-ibm-file--document_import:before {
  content: "\eb00";
}

.icon-ibm-file--document_pdf:before {
  content: "\eb01";
}

.icon-ibm-file--document_sketch:before {
  content: "\eb02";
}

.icon-ibm-file--document_subtract:before {
  content: "\eb03";
}

.icon-ibm-file--document_tasks:before {
  content: "\eb04";
}

.icon-ibm-file--document_unkown:before {
  content: "\eb05";
}

.icon-ibm-file--document_video:before {
  content: "\eb06";
}

.icon-ibm-file--document_view:before {
  content: "\eb07";
}

.icon-ibm-file--document_word_processor:before {
  content: "\eb08";
}

.icon-ibm-file--document_word_processor_reference:before {
  content: "\eb09";
}

.icon-ibm-file--download:before {
  content: "\eb0a";
}

.icon-ibm-file--export:before {
  content: "\eb0b";
}

.icon-ibm-file--folder:before {
  content: "\eb0c";
}

.icon-ibm-file--folder_app:before {
  content: "\eb0d";
}

.icon-ibm-file--folder_details:before {
  content: "\eb0e";
}

.icon-ibm-file--folder_details_reference:before {
  content: "\eb0f";
}

.icon-ibm-file--folder_move_to:before {
  content: "\eb10";
}

.icon-ibm-file--folder_off:before {
  content: "\eb11";
}

.icon-ibm-file--folder_open:before {
  content: "\eb12";
}

.icon-ibm-file--folder_parent:before {
  content: "\eb13";
}

.icon-ibm-file--folder_shared:before {
  content: "\eb14";
}

.icon-ibm-file--folders:before {
  content: "\eb15";
}

.icon-ibm-file--gamification:before {
  content: "\eb16";
}

.icon-ibm-file--generate_pdf:before {
  content: "\eb17";
}

.icon-ibm-file--legend:before {
  content: "\eb18";
}

.icon-ibm-file--license:before {
  content: "\eb19";
}

.icon-ibm-file--license_draft:before {
  content: "\eb1a";
}

.icon-ibm-file--license_global:before {
  content: "\eb1b";
}

.icon-ibm-file--license_maintenance:before {
  content: "\eb1c";
}

.icon-ibm-file--license_maintenance_draft:before {
  content: "\eb1d";
}

.icon-ibm-file--license_third_party:before {
  content: "\eb1e";
}

.icon-ibm-file--license_third_party_draft:before {
  content: "\eb1f";
}

.icon-ibm-file--list_dropdown:before {
  content: "\eb20";
}

.icon-ibm-file--media_library:before {
  content: "\eb21";
}

.icon-ibm-file--model:before {
  content: "\eb22";
}

.icon-ibm-file--model_alt:before {
  content: "\eb23";
}

.icon-ibm-file--model_reference:before {
  content: "\eb24";
}

.icon-ibm-file--music:before {
  content: "\eb25";
}

.icon-ibm-file--music_add:before {
  content: "\eb26";
}

.icon-ibm-file--music_remove:before {
  content: "\eb27";
}

.icon-ibm-file--no_ticket:before {
  content: "\eb28";
}

.icon-ibm-file--non_certified:before {
  content: "\eb29";
}

.icon-ibm-file--notebook:before {
  content: "\eb2a";
}

.icon-ibm-file--notebook_reference:before {
  content: "\eb2b";
}

.icon-ibm-file--panel_expansion:before {
  content: "\eb2c";
}

.icon-ibm-file--panel_scane:before {
  content: "\eb2d";
}

.icon-ibm-file--paste:before {
  content: "\eb2e";
}

.icon-ibm-file--playlist:before {
  content: "\eb2f";
}

.icon-ibm-file--policy:before {
  content: "\eb30";
}

.icon-ibm-file--popup:before {
  content: "\eb31";
}

.icon-ibm-file--product:before {
  content: "\eb32";
}

.icon-ibm-file--roadmap:before {
  content: "\eb33";
}

.icon-ibm-file--rule:before {
  content: "\eb34";
}

.icon-ibm-file--script:before {
  content: "\eb35";
}

.icon-ibm-file--script_reference:before {
  content: "\eb36";
}

.icon-ibm-file--security:before {
  content: "\eb37";
}

.icon-ibm-file--star_review:before {
  content: "\eb38";
}

.icon-ibm-file--table_of_contents:before {
  content: "\eb39";
}

.icon-ibm-file--task:before {
  content: "\eb3a";
}

.icon-ibm-file--task_view:before {
  content: "\eb3b";
}

.icon-ibm-file--template:before {
  content: "\eb3c";
}

.icon-ibm-file--ticket:before {
  content: "\eb3d";
}

.icon-ibm-file--upload:before {
  content: "\eb3e";
}

.icon-ibm-file--websheet:before {
  content: "\eb3f";
}

.icon-ibm-file--workspace:before {
  content: "\eb40";
}

.icon-ibm-formatting--align_box_bottom_center:before {
  content: "\eb41";
}

.icon-ibm-formatting--align_box_bottom_left:before {
  content: "\eb42";
}

.icon-ibm-formatting--align_box_bottom_right:before {
  content: "\eb43";
}

.icon-ibm-formatting--align_box_middle_center:before {
  content: "\eb44";
}

.icon-ibm-formatting--align_box_middle_left:before {
  content: "\eb45";
}

.icon-ibm-formatting--align_box_middle_right:before {
  content: "\eb46";
}

.icon-ibm-formatting--align_box_top_center:before {
  content: "\eb47";
}

.icon-ibm-formatting--align_box_top_left:before {
  content: "\eb48";
}

.icon-ibm-formatting--align_box_top_right:before {
  content: "\eb49";
}

.icon-ibm-formatting--align_horizontal_center:before {
  content: "\eb4a";
}

.icon-ibm-formatting--align_horizontal_left:before {
  content: "\eb4b";
}

.icon-ibm-formatting--align_horizontal_right:before {
  content: "\eb4c";
}

.icon-ibm-formatting--align_vertical_bottom:before {
  content: "\eb4d";
}

.icon-ibm-formatting--align_vertical_center:before {
  content: "\eb4e";
}

.icon-ibm-formatting--align_vertical_top:before {
  content: "\eb4f";
}

.icon-ibm-formatting--attachment:before {
  content: "\eb50";
}

.icon-ibm-formatting--border_bottom:before {
  content: "\eb51";
}

.icon-ibm-formatting--border_full:before {
  content: "\eb52";
}

.icon-ibm-formatting--border_left:before {
  content: "\eb53";
}

.icon-ibm-formatting--border_none:before {
  content: "\eb54";
}

.icon-ibm-formatting--border_right:before {
  content: "\eb55";
}

.icon-ibm-formatting--border_top:before {
  content: "\eb56";
}

.icon-ibm-formatting--brightness_contrast:before {
  content: "\eb57";
}

.icon-ibm-formatting--bring_to_front:before {
  content: "\eb58";
}

.icon-ibm-formatting--color_palette:before {
  content: "\eb59";
}

.icon-ibm-formatting--color_switch:before {
  content: "\eb5a";
}

.icon-ibm-formatting--column_delete:before {
  content: "\eb5b";
}

.icon-ibm-formatting--column_insert:before {
  content: "\eb5c";
}

.icon-ibm-formatting--contrast:before {
  content: "\eb5d";
}

.icon-ibm-formatting--corner:before {
  content: "\eb5e";
}

.icon-ibm-formatting--crop:before {
  content: "\eb5f";
}

.icon-ibm-formatting--cut:before {
  content: "\eb60";
}

.icon-ibm-formatting--cut_out:before {
  content: "\eb61";
}

.icon-ibm-formatting--distribute_horizontal_center:before {
  content: "\eb62";
}

.icon-ibm-formatting--distribute_horizontal_left:before {
  content: "\eb63";
}

.icon-ibm-formatting--distribute_horizontal_right:before {
  content: "\eb64";
}

.icon-ibm-formatting--distribute_vertical_bottom:before {
  content: "\eb65";
}

.icon-ibm-formatting--distribute_vertical_center:before {
  content: "\eb66";
}

.icon-ibm-formatting--distribute_vertical_top:before {
  content: "\eb67";
}

.icon-ibm-formatting--document_horizontal:before {
  content: "\eb68";
}

.icon-ibm-formatting--document_vertical:before {
  content: "\eb69";
}

.icon-ibm-formatting--dot_mark:before {
  content: "\eb6a";
}

.icon-ibm-formatting--draw:before {
  content: "\eb6b";
}

.icon-ibm-formatting--drop_photo:before {
  content: "\eb6c";
}

.icon-ibm-formatting--drop_photo_filled:before {
  content: "\eb6d";
}

.icon-ibm-formatting--edit:before {
  content: "\eb6e";
}

.icon-ibm-formatting--edit_off:before {
  content: "\eb6f";
}

.icon-ibm-formatting--erase:before {
  content: "\eb70";
}

.icon-ibm-formatting--eyedropper:before {
  content: "\eb71";
}

.icon-ibm-formatting--gradient:before {
  content: "\eb72";
}

.icon-ibm-formatting--image:before {
  content: "\eb73";
}

.icon-ibm-formatting--image_copy:before {
  content: "\eb74";
}

.icon-ibm-formatting--image_reference:before {
  content: "\eb75";
}

.icon-ibm-formatting--language:before {
  content: "\eb76";
}

.icon-ibm-formatting--lasso:before {
  content: "\eb77";
}

.icon-ibm-formatting--lasso_polygon:before {
  content: "\eb78";
}

.icon-ibm-formatting--link:before {
  content: "\eb79";
}

.icon-ibm-formatting--list_boxes:before {
  content: "\eb7a";
}

.icon-ibm-formatting--list_bullet:before {
  content: "\eb7b";
}

.icon-ibm-formatting--list_checked:before {
  content: "\eb7c";
}

.icon-ibm-formatting--list_numbered:before {
  content: "\eb7d";
}

.icon-ibm-formatting--magic_wand:before {
  content: "\eb7e";
}

.icon-ibm-formatting--magic_wand_filled:before {
  content: "\eb7f";
}

.icon-ibm-formatting--no_image:before {
  content: "\eb80";
}

.icon-ibm-formatting--opacity:before {
  content: "\eb81";
}

.icon-ibm-formatting--page_break:before {
  content: "\eb82";
}

.icon-ibm-formatting--page_number:before {
  content: "\eb83";
}

.icon-ibm-formatting--paint_brush:before {
  content: "\eb84";
}

.icon-ibm-formatting--paint_brush_alt:before {
  content: "\eb85";
}

.icon-ibm-formatting--paragraph:before {
  content: "\eb86";
}

.icon-ibm-formatting--pen:before {
  content: "\eb87";
}

.icon-ibm-formatting--pen_fountain:before {
  content: "\eb88";
}

.icon-ibm-formatting--percentage:before {
  content: "\eb89";
}

.icon-ibm-formatting--percentage_filled:before {
  content: "\eb8a";
}

.icon-ibm-formatting--quotes:before {
  content: "\eb8b";
}

.icon-ibm-formatting--reflect_horizontal:before {
  content: "\eb8c";
}

.icon-ibm-formatting--reflect_vertical:before {
  content: "\eb8d";
}

.icon-ibm-formatting--rotate_clockwise:before {
  content: "\eb8e";
}

.icon-ibm-formatting--rotate_clockwise_alt:before {
  content: "\eb8f";
}

.icon-ibm-formatting--rotate_clockwise_alt_filled:before {
  content: "\eb90";
}

.icon-ibm-formatting--rotate_clockwise_filled:before {
  content: "\eb91";
}

.icon-ibm-formatting--rotate_counterclockwise:before {
  content: "\eb92";
}

.icon-ibm-formatting--rotate_counterclockwise_alt:before {
  content: "\eb93";
}

.icon-ibm-formatting--rotate_counterclockwise_alt_filled:before {
  content: "\eb94";
}

.icon-ibm-formatting--rotate_counterclockwise_filled:before {
  content: "\eb95";
}

.icon-ibm-formatting--row_delete:before {
  content: "\eb96";
}

.icon-ibm-formatting--row_insert:before {
  content: "\eb97";
}

.icon-ibm-formatting--save:before {
  content: "\eb98";
}

.icon-ibm-formatting--select_01:before {
  content: "\eb99";
}

.icon-ibm-formatting--select_02:before {
  content: "\eb9a";
}

.icon-ibm-formatting--send_to_back:before {
  content: "\eb9b";
}

.icon-ibm-formatting--shape_except:before {
  content: "\eb9c";
}

.icon-ibm-formatting--shape_exclude:before {
  content: "\eb9d";
}

.icon-ibm-formatting--shape_intersect:before {
  content: "\eb9e";
}

.icon-ibm-formatting--shape_join:before {
  content: "\eb9f";
}

.icon-ibm-formatting--shape_unite:before {
  content: "\eba0";
}

.icon-ibm-formatting--spell_check:before {
  content: "\eba1";
}

.icon-ibm-formatting--spray_paint:before {
  content: "\eba2";
}

.icon-ibm-formatting--text-_highlight:before {
  content: "\eba3";
}

.icon-ibm-formatting--text_align_center:before {
  content: "\eba4";
}

.icon-ibm-formatting--text_align_justify:before {
  content: "\eba5";
}

.icon-ibm-formatting--text_align_left:before {
  content: "\eba6";
}

.icon-ibm-formatting--text_align_mixed:before {
  content: "\eba7";
}

.icon-ibm-formatting--text_align_right:before {
  content: "\eba8";
}

.icon-ibm-formatting--text_all_caps:before {
  content: "\eba9";
}

.icon-ibm-formatting--text_bold:before {
  content: "\ebaa";
}

.icon-ibm-formatting--text_clear_format:before {
  content: "\ebab";
}

.icon-ibm-formatting--text_color:before {
  content: "\ebac";
}

.icon-ibm-formatting--text_creation:before {
  content: "\ebad";
}

.icon-ibm-formatting--text_fill:before {
  content: "\ebae";
}

.icon-ibm-formatting--text_font:before {
  content: "\ebaf";
}

.icon-ibm-formatting--text_footnote:before {
  content: "\ebb0";
}

.icon-ibm-formatting--text_indent:before {
  content: "\ebb1";
}

.icon-ibm-formatting--text_indent_less:before {
  content: "\ebb2";
}

.icon-ibm-formatting--text_indent_more:before {
  content: "\ebb3";
}

.icon-ibm-formatting--text_italic:before {
  content: "\ebb4";
}

.icon-ibm-formatting--text_kerning:before {
  content: "\ebb5";
}

.icon-ibm-formatting--text_leading:before {
  content: "\ebb6";
}

.icon-ibm-formatting--text_line_sparcing:before {
  content: "\ebb7";
}

.icon-ibm-formatting--text_new_line:before {
  content: "\ebb8";
}

.icon-ibm-formatting--text_scale:before {
  content: "\ebb9";
}

.icon-ibm-formatting--text_selection:before {
  content: "\ebba";
}

.icon-ibm-formatting--text_small_caps:before {
  content: "\ebbb";
}

.icon-ibm-formatting--text_stikethrough:before {
  content: "\ebbc";
}

.icon-ibm-formatting--text_subcript:before {
  content: "\ebbd";
}

.icon-ibm-formatting--text_superscript:before {
  content: "\ebbe";
}

.icon-ibm-formatting--text_tracking:before {
  content: "\ebbf";
}

.icon-ibm-formatting--text_underline:before {
  content: "\ebc0";
}

.icon-ibm-formatting--text_vertical_alignment:before {
  content: "\ebc1";
}

.icon-ibm-formatting--text_wrap:before {
  content: "\ebc2";
}

.icon-ibm-formatting--trash_can:before {
  content: "\ebc3";
}

.icon-ibm-formatting--unlink:before {
  content: "\ebc4";
}

.icon-ibm-health--3D_MPR_toggle:before {
  content: "\ebc5";
}

.icon-ibm-health--3D_cursor:before {
  content: "\ebc6";
}

.icon-ibm-health--3D_cursor_alt:before {
  content: "\ebc7";
}

.icon-ibm-health--3D_curve_auto_colon:before {
  content: "\ebc8";
}

.icon-ibm-health--3D_curve_auto_vessels:before {
  content: "\ebc9";
}

.icon-ibm-health--3D_curve_manual:before {
  content: "\ebca";
}

.icon-ibm-health--3D_iCA:before {
  content: "\ebcb";
}

.icon-ibm-health--3D_print_mesh:before {
  content: "\ebcc";
}

.icon-ibm-health--3D_software:before {
  content: "\ebcd";
}

.icon-ibm-health--3rd_party_connected:before {
  content: "\ebce";
}

.icon-ibm-health--ai_results:before {
  content: "\ebcf";
}

.icon-ibm-health--ai_results_high:before {
  content: "\ebd0";
}

.icon-ibm-health--ai_results_low:before {
  content: "\ebd1";
}

.icon-ibm-health--ai_results_medium:before {
  content: "\ebd2";
}

.icon-ibm-health--ai_results_urgent:before {
  content: "\ebd3";
}

.icon-ibm-health--ai_results_very_high:before {
  content: "\ebd4";
}

.icon-ibm-health--ai_status:before {
  content: "\ebd5";
}

.icon-ibm-health--ai_status_complete:before {
  content: "\ebd6";
}

.icon-ibm-health--ai_status_failed:before {
  content: "\ebd7";
}

.icon-ibm-health--ai_status_in_progress:before {
  content: "\ebd8";
}

.icon-ibm-health--ai_status_queued:before {
  content: "\ebd9";
}

.icon-ibm-health--ai_status_rejected:before {
  content: "\ebde";
}

.icon-ibm-health--angle:before {
  content: "\ebdf";
}

.icon-ibm-health--annotation_visibility:before {
  content: "\ebe0";
}

.icon-ibm-health--arrow_annotation:before {
  content: "\ebe1";
}

.icon-ibm-health--auto_scroll:before {
  content: "\ebe2";
}

.icon-ibm-health--brush_freehand:before {
  content: "\ebe3";
}

.icon-ibm-health--brush_polygon:before {
  content: "\ebe4";
}

.icon-ibm-health--cd_archive:before {
  content: "\ebe5";
}

.icon-ibm-health--cd_create_archive:before {
  content: "\ebe6";
}

.icon-ibm-health--cd_create_exchange:before {
  content: "\ebe7";
}

.icon-ibm-health--chemistry:before {
  content: "\ebe8";
}

.icon-ibm-health--chemistry_reference:before {
  content: "\ebe9";
}

.icon-ibm-health--circle_measurement:before {
  content: "\ebea";
}

.icon-ibm-health--cobb_angle:before {
  content: "\ebeb";
}

.icon-ibm-health--contour_finding:before {
  content: "\ebec";
}

.icon-ibm-health--coronavirus:before {
  content: "\ebed";
}

.icon-ibm-health--cross_reference:before {
  content: "\ebee";
}

.icon-ibm-health--cut_in_half:before {
  content: "\ebef";
}

.icon-ibm-health--denominate:before {
  content: "\ebf0";
}

.icon-ibm-health--dicom_6000:before {
  content: "\ebf1";
}

.icon-ibm-health--discom_overlay:before {
  content: "\ebf2";
}

.icon-ibm-health--dna:before {
  content: "\ebf3";
}

.icon-ibm-health--donwload_study:before {
  content: "\ebf4";
}

.icon-ibm-health--edge_enhancement:before {
  content: "\ebf5";
}

.icon-ibm-health--edge_enhancement_01:before {
  content: "\ebf6";
}

.icon-ibm-health--edge_enhancement_02:before {
  content: "\ebf7";
}

.icon-ibm-health--edge_enhancement_03:before {
  content: "\ebf8";
}

.icon-ibm-health--erase_3D:before {
  content: "\ebf9";
}

.icon-ibm-health--exam_mode:before {
  content: "\ebfa";
}

.icon-ibm-health--fusion_blender:before {
  content: "\ebfb";
}

.icon-ibm-health--hanging_protocol:before {
  content: "\ebfc";
}

.icon-ibm-health--health_cross:before {
  content: "\ebfd";
}

.icon-ibm-health--hole_filing_cursor:before {
  content: "\ebfe";
}

.icon-ibm-health--hole_filling:before {
  content: "\ebff";
}

.icon-ibm-health--iCA_2D:before {
  content: "\ec00";
}

.icon-ibm-health--image_medical:before {
  content: "\ec01";
}

.icon-ibm-health--interactive_segmentation_cursor:before {
  content: "\ec02";
}

.icon-ibm-health--launch_study_03:before {
  content: "\ec03";
}

.icon-ibm-health--launch_study_1:before {
  content: "\ec04";
}

.icon-ibm-health--launch_study_2:before {
  content: "\ec05";
}

.icon-ibm-health--magnify:before {
  content: "\ec06";
}

.icon-ibm-health--mammogram:before {
  content: "\ec07";
}

.icon-ibm-health--medication:before {
  content: "\ec08";
}

.icon-ibm-health--medication_alert:before {
  content: "\ec09";
}

.icon-ibm-health--medication_reminder:before {
  content: "\ec0a";
}

.icon-ibm-health--nominate:before {
  content: "\ec0b";
}

.icon-ibm-health--page_scroll:before {
  content: "\ec0c";
}

.icon-ibm-health--pet_image_0:before {
  content: "\ec0d";
}

.icon-ibm-health--pet_image_B:before {
  content: "\ec0e";
}

.icon-ibm-health--pils:before {
  content: "\ec0f";
}

.icon-ibm-health--pils_add:before {
  content: "\ec10";
}

.icon-ibm-health--pils_substract:before {
  content: "\ec11";
}

.icon-ibm-health--pointer_text:before {
  content: "\ec12";
}

.icon-ibm-health--region_analysis_area:before {
  content: "\ec13";
}

.icon-ibm-health--region_analysis_volume:before {
  content: "\ec14";
}

.icon-ibm-health--registration:before {
  content: "\ec16";
}

.icon-ibm-health--rotate_180:before {
  content: "\ec17";
}

.icon-ibm-health--rotate_360:before {
  content: "\ec18";
}

.icon-ibm-health--save_annotation:before {
  content: "\ec19";
}

.icon-ibm-health--save_image:before {
  content: "\ec1a";
}

.icon-ibm-health--save_series:before {
  content: "\ec1b";
}

.icon-ibm-health--scalpel_cursor:before {
  content: "\ec1c";
}

.icon-ibm-health--scalpel_lasso:before {
  content: "\ec1d";
}

.icon-ibm-health--scalpel_select:before {
  content: "\ec1e";
}

.icon-ibm-health--smoothing:before {
  content: "\ec1f";
}

.icon-ibm-health--smoothing_cursor:before {
  content: "\ec2a";
}

.icon-ibm-health--spine_label:before {
  content: "\ec2b";
}

.icon-ibm-health--split_discard:before {
  content: "\ec2c";
}

.icon-ibm-health--stacked_move:before {
  content: "\ec2d";
}

.icon-ibm-health--stacked_srolling_01:before {
  content: "\ec2e";
}

.icon-ibm-health--stacked_srolling_02:before {
  content: "\ec2f";
}

.icon-ibm-health--stress_breath_editor:before {
  content: "\ec30";
}

.icon-ibm-health--study_next:before {
  content: "\ec31";
}

.icon-ibm-health--study_previous:before {
  content: "\ec32";
}

.icon-ibm-health--study_skip:before {
  content: "\ec33";
}

.icon-ibm-health--sub_volume:before {
  content: "\ec34";
}

.icon-ibm-health--text_annotation_toggle:before {
  content: "\ec35";
}

.icon-ibm-health--threshold:before {
  content: "\ec36";
}

.icon-ibm-health--tumbnail_preview:before {
  content: "\ec37";
}

.icon-ibm-health--window_auto:before {
  content: "\ec38";
}

.icon-ibm-health--window_base:before {
  content: "\ec39";
}

.icon-ibm-health--window_overlay:before {
  content: "\ec3a";
}

.icon-ibm-health--window_preset:before {
  content: "\ec3b";
}

.icon-ibm-health--zoom_pan:before {
  content: "\ec45";
}

.icon-ibm-ibm--EDT_loop:before {
  content: "\ec46";
}

.icon-ibm-ibm--bee:before {
  content: "\ec47";
}

.icon-ibm-ibm--carbon:before {
  content: "\ec48";
}

.icon-ibm-ibm--cloud_app:before {
  content: "\ec49";
}

.icon-ibm-ibm--ibm_cloud:before {
  content: "\ec4a";
}

.icon-ibm-ibm--ibm_security:before {
  content: "\ec4b";
}

.icon-ibm-ibm--watson:before {
  content: "\ec4c";
}

.icon-ibm-ibm--watson_matchine_learning:before {
  content: "\ec4d";
}

.icon-ibm-instruments--binoculars:before {
  content: "\ec4e";
}

.icon-ibm-instruments--box:before {
  content: "\ec4f";
}

.icon-ibm-instruments--bullhorn:before {
  content: "\ec50";
}

.icon-ibm-instruments--calibrate:before {
  content: "\ec51";
}

.icon-ibm-instruments--cursor_1:before {
  content: "\ec52";
}

.icon-ibm-instruments--cursor_2:before {
  content: "\ec53";
}

.icon-ibm-instruments--meter:before {
  content: "\ec54";
}

.icon-ibm-instruments--meter_alt:before {
  content: "\ec55";
}

.icon-ibm-instruments--microscope:before {
  content: "\ec56";
}

.icon-ibm-instruments--portfolio:before {
  content: "\ec57";
}

.icon-ibm-instruments--radar:before {
  content: "\ec58";
}

.icon-ibm-instruments--ruler:before {
  content: "\ec59";
}

.icon-ibm-instruments--ruler_alt:before {
  content: "\ec5a";
}

.icon-ibm-instruments--scales:before {
  content: "\ec5b";
}

.icon-ibm-instruments--scales_tipped:before {
  content: "\ec5c";
}

.icon-ibm-instruments--scalpel:before {
  content: "\ec5d";
}

.icon-ibm-instruments--stamp:before {
  content: "\ec5e";
}

.icon-ibm-instruments--stethoscope:before {
  content: "\ec5f";
}

.icon-ibm-instruments--tool_box:before {
  content: "\ec60";
}

.icon-ibm-instruments--tools:before {
  content: "\ec61";
}

.icon-ibm-instruments--tools_alt:before {
  content: "\ec62";
}

.icon-ibm-instruments--umbrella:before {
  content: "\ec63";
}

.icon-ibm-navigation--add:before {
  content: "\ec64";
}

.icon-ibm-navigation--add_alt:before {
  content: "\ec65";
}

.icon-ibm-navigation--add_filled:before {
  content: "\ec66";
}

.icon-ibm-navigation--apps:before {
  content: "\ec67";
}

.icon-ibm-navigation--arrow_down:before {
  content: "\ec68";
}

.icon-ibm-navigation--arrow_down_left:before {
  content: "\ec69";
}

.icon-ibm-navigation--arrow_down_right:before {
  content: "\ec6a";
}

.icon-ibm-navigation--arrow_left:before {
  content: "\ec6b";
}

.icon-ibm-navigation--arrow_right:before {
  content: "\ec6c";
}

.icon-ibm-navigation--arrow_up:before {
  content: "\ec6d";
}

.icon-ibm-navigation--arrow_up_left:before {
  content: "\ec6e";
}

.icon-ibm-navigation--arrow_up_right:before {
  content: "\ec6f";
}

.icon-ibm-navigation--bookmark_add:before {
  content: "\ec70";
}

.icon-ibm-navigation--caret_down:before {
  content: "\ec71";
}

.icon-ibm-navigation--caret_left:before {
  content: "\ec72";
}

.icon-ibm-navigation--caret_right:before {
  content: "\ec73";
}

.icon-ibm-navigation--caret_up:before {
  content: "\ec74";
}

.icon-ibm-navigation--chevron_down:before {
  content: "\ec75";
}

.icon-ibm-navigation--chevron_left:before {
  content: "\ec76";
}

.icon-ibm-navigation--chevron_right:before {
  content: "\ec77";
}

.icon-ibm-navigation--chevron_up:before {
  content: "\ec78";
}

.icon-ibm-navigation--close:before {
  content: "\ec79";
}

.icon-ibm-navigation--close_filled:before {
  content: "\ec7a";
}

.icon-ibm-navigation--close_outline:before {
  content: "\ec7b";
}

.icon-ibm-navigation--down_to_bottom:before {
  content: "\ec7c";
}

.icon-ibm-navigation--draggable:before {
  content: "\ec7d";
}

.icon-ibm-navigation--home:before {
  content: "\ec7e";
}

.icon-ibm-navigation--menu:before {
  content: "\ec7f";
}

.icon-ibm-navigation--overflow_menu_horizontal:before {
  content: "\ec80";
}

.icon-ibm-navigation--overflow_menu_vertical:before {
  content: "\ec81";
}

.icon-ibm-navigation--page_first:before {
  content: "\ec82";
}

.icon-ibm-navigation--page_last:before {
  content: "\ec83";
}

.icon-ibm-navigation--select_window:before {
  content: "\ec84";
}

.icon-ibm-navigation--subtract:before {
  content: "\ec85";
}

.icon-ibm-navigation--subtract_alt:before {
  content: "\ec86";
}

.icon-ibm-navigation--switcher:before {
  content: "\ec87";
}

.icon-ibm-navigation--up_to_top:before {
  content: "\ec88";
}

.icon-ibm-navigation--zoom_area:before {
  content: "\ec89";
}

.icon-ibm-navigation--zoom_fit:before {
  content: "\ec8a";
}

.icon-ibm-navigation--zoom_in:before {
  content: "\ec8b";
}

.icon-ibm-navigation--zoom_in_area:before {
  content: "\ec8c";
}

.icon-ibm-navigation--zoom_out:before {
  content: "\ec8d";
}

.icon-ibm-navigation--zoom_out_area:before {
  content: "\ec8e";
}

.icon-ibm-navigation--zoom_resert:before {
  content: "\ec8f";
}

.icon-ibm-operations--add_comment:before {
  content: "\ec90";
}

.icon-ibm-operations--area:before {
  content: "\ec91";
}

.icon-ibm-operations--area_custom:before {
  content: "\ec92";
}

.icon-ibm-operations--arrow_shift_down:before {
  content: "\ec93";
}

.icon-ibm-operations--arrows_horizontal:before {
  content: "\ec94";
}

.icon-ibm-operations--arrows_vertical:before {
  content: "\ec95";
}

.icon-ibm-operations--automatic:before {
  content: "\ec96";
}

.icon-ibm-operations--bookmark:before {
  content: "\ec97";
}

.icon-ibm-operations--bookmark_filled:before {
  content: "\ec98";
}

.icon-ibm-operations--branch:before {
  content: "\ec99";
}

.icon-ibm-operations--caret_down:before {
  content: "\ec9a";
}

.icon-ibm-operations--caret_sort:before {
  content: "\ec9b";
}

.icon-ibm-operations--caret_up:before {
  content: "\ec9c";
}

.icon-ibm-operations--center_circle:before {
  content: "\ec9d";
}

.icon-ibm-operations--center_square:before {
  content: "\ec9e";
}

.icon-ibm-operations--change_catalog:before {
  content: "\ec9f";
}

.icon-ibm-operations--chat:before {
  content: "\eca0";
}

.icon-ibm-operations--chat_lunch:before {
  content: "\eca1";
}

.icon-ibm-operations--chevrin_short_down:before {
  content: "\eca2";
}

.icon-ibm-operations--chevrin_short_up:before {
  content: "\eca3";
}

.icon-ibm-operations--chevron_mini:before {
  content: "\eca4";
}

.icon-ibm-operations--chevron_sort:before {
  content: "\eca5";
}

.icon-ibm-operations--choices:before {
  content: "\eca6";
}

.icon-ibm-operations--circle_dash:before {
  content: "\eca7";
}

.icon-ibm-operations--clean:before {
  content: "\eca8";
}

.icon-ibm-operations--collapse_all:before {
  content: "\eca9";
}

.icon-ibm-operations--collapse_categories:before {
  content: "\ecaa";
}

.icon-ibm-operations--commit:before {
  content: "\ecab";
}

.icon-ibm-operations--compare:before {
  content: "\ecac";
}

.icon-ibm-operations--conect_source:before {
  content: "\ecad";
}

.icon-ibm-operations--connect:before {
  content: "\ecae";
}

.icon-ibm-operations--connect_recursive:before {
  content: "\ecaf";
}

.icon-ibm-operations--connect_target:before {
  content: "\ecb0";
}

.icon-ibm-operations--convert_to_cloud:before {
  content: "\ecb1";
}

.icon-ibm-operations--deploy:before {
  content: "\ecb2";
}

.icon-ibm-operations--deploy_rules:before {
  content: "\ecb3";
}

.icon-ibm-operations--drag_horizontal:before {
  content: "\ecb4";
}

.icon-ibm-operations--drag_vertical:before {
  content: "\ecb5";
}

.icon-ibm-operations--drill_back:before {
  content: "\ecb6";
}

.icon-ibm-operations--drill_down:before {
  content: "\ecb7";
}

.icon-ibm-operations--drill_through:before {
  content: "\ecb8";
}

.icon-ibm-operations--exit:before {
  content: "\ecb9";
}

.icon-ibm-operations--expand_all:before {
  content: "\ecba";
}

.icon-ibm-operations--expand_categories:before {
  content: "\ecbb";
}

.icon-ibm-operations--explore:before {
  content: "\ecbc";
}

.icon-ibm-operations--fade:before {
  content: "\ecbd";
}

.icon-ibm-operations--filter:before {
  content: "\ecbe";
}

.icon-ibm-operations--filter_edit:before {
  content: "\ecbf";
}

.icon-ibm-operations--filter_remove:before {
  content: "\ecc0";
}

.icon-ibm-operations--filter_reset:before {
  content: "\ecc1";
}

.icon-ibm-operations--flag:before {
  content: "\ecc2";
}

.icon-ibm-operations--flag_filled:before {
  content: "\ecc3";
}

.icon-ibm-operations--fork:before {
  content: "\ecc4";
}

.icon-ibm-operations--function:before {
  content: "\ecc5";
}

.icon-ibm-operations--image_search:before {
  content: "\ecc7";
}

.icon-ibm-operations--insert:before {
  content: "\ecc8";
}

.icon-ibm-operations--insert_page:before {
  content: "\ecc9";
}

.icon-ibm-operations--insert_syntax:before {
  content: "\ecca";
}

.icon-ibm-operations--intersect:before {
  content: "\eccb";
}

.icon-ibm-operations--jump_link:before {
  content: "\eccc";
}

.icon-ibm-operations--launch:before {
  content: "\eccd";
}

.icon-ibm-operations--layers:before {
  content: "\ecce";
}

.icon-ibm-operations--login:before {
  content: "\eccf";
}

.icon-ibm-operations--logout:before {
  content: "\ecd0";
}

.icon-ibm-operations--loop:before {
  content: "\ecd1";
}

.icon-ibm-operations--mac_command:before {
  content: "\ecd2";
}

.icon-ibm-operations--mac_option:before {
  content: "\ecd3";
}

.icon-ibm-operations--mac_shift:before {
  content: "\ecd4";
}

.icon-ibm-operations--maximize:before {
  content: "\ecd5";
}

.icon-ibm-operations--migrate:before {
  content: "\ecd6";
}

.icon-ibm-operations--migrate_all:before {
  content: "\ecd7";
}

.icon-ibm-operations--minimize:before {
  content: "\ecd8";
}

.icon-ibm-operations--move:before {
  content: "\ecd9";
}

.icon-ibm-operations--new_tab:before {
  content: "\ecda";
}

.icon-ibm-operations--not_sent:before {
  content: "\ecdb";
}

.icon-ibm-operations--not_sent_filled:before {
  content: "\ecdc";
}

.icon-ibm-operations--operations_filled:before {
  content: "\ecdd";
}

.icon-ibm-operations--operations_record:before {
  content: "\ecde";
}

.icon-ibm-operations--overlay:before {
  content: "\ecdf";
}

.icon-ibm-operations--package:before {
  content: "\ece0";
}

.icon-ibm-operations--pan_horizontal:before {
  content: "\ece1";
}

.icon-ibm-operations--pan_vertical:before {
  content: "\ece2";
}

.icon-ibm-operations--pause_future:before {
  content: "\ece3";
}

.icon-ibm-operations--pause_past:before {
  content: "\ece4";
}

.icon-ibm-operations--pin:before {
  content: "\ece5";
}

.icon-ibm-operations--pin_filled:before {
  content: "\ece6";
}

.icon-ibm-operations--query:before {
  content: "\ece7";
}

.icon-ibm-operations--recommend:before {
  content: "\ece8";
}

.icon-ibm-operations--redo:before {
  content: "\ece9";
}

.icon-ibm-operations--rencently_viewed:before {
  content: "\ecea";
}

.icon-ibm-operations--renew:before {
  content: "\eceb";
}

.icon-ibm-operations--repeat:before {
  content: "\ecec";
}

.icon-ibm-operations--repeat_one:before {
  content: "\eced";
}

.icon-ibm-operations--reply:before {
  content: "\ecee";
}

.icon-ibm-operations--reply_all:before {
  content: "\ecef";
}

.icon-ibm-operations--request_note:before {
  content: "\ecf0";
}

.icon-ibm-operations--reset:before {
  content: "\ecf1";
}

.icon-ibm-operations--rest_alt:before {
  content: "\ecf2";
}

.icon-ibm-operations--restart:before {
  content: "\ecf3";
}

.icon-ibm-operations--rotate:before {
  content: "\ecf4";
}

.icon-ibm-operations--run:before {
  content: "\ecf5";
}

.icon-ibm-operations--save_model:before {
  content: "\ecf6";
}

.icon-ibm-operations--scan:before {
  content: "\ecf7";
}

.icon-ibm-operations--scan_disabled:before {
  content: "\ecf8";
}

.icon-ibm-operations--search:before {
  content: "\ecf9";
}

.icon-ibm-operations--search_locate:before {
  content: "\ecfa";
}

.icon-ibm-operations--send:before {
  content: "\ecfb";
}

.icon-ibm-operations--send_alt:before {
  content: "\ecfc";
}

.icon-ibm-operations--send_alt_filled:before {
  content: "\ecfd";
}

.icon-ibm-operations--send_filled:before {
  content: "\ecfe";
}

.icon-ibm-operations--shuffle:before {
  content: "\ecff";
}

.icon-ibm-operations--sort_ascending:before {
  content: "\ed00";
}

.icon-ibm-operations--sort_descending:before {
  content: "\ed01";
}

.icon-ibm-operations--split:before {
  content: "\ed02";
}

.icon-ibm-operations--split_screen:before {
  content: "\ed03";
}

.icon-ibm-operations--tag:before {
  content: "\ed04";
}

.icon-ibm-operations--tag_edit:before {
  content: "\ed05";
}

.icon-ibm-operations--tag_group:before {
  content: "\ed06";
}

.icon-ibm-operations--translate:before {
  content: "\ed07";
}

.icon-ibm-operations--transpose:before {
  content: "\ed08";
}

.icon-ibm-operations--undo:before {
  content: "\ed09";
}

.icon-ibm-operations--upgrade:before {
  content: "\ed0a";
}

.icon-ibm-operations--view_next:before {
  content: "\ed0b";
}

.icon-ibm-operations--workspace_import:before {
  content: "\ed0c";
}

.icon-ibm-operations--x_axis:before {
  content: "\ed0d";
}

.icon-ibm-operations--y_axis:before {
  content: "\ed0e";
}

.icon-ibm-operations--z_axis:before {
  content: "\ed0f";
}

.icon-ibm-research--H:before {
  content: "\ed10";
}

.icon-ibm-research--S:before {
  content: "\ed11";
}

.icon-ibm-research--S_alt:before {
  content: "\ed12";
}

.icon-ibm-research--T:before {
  content: "\ed13";
}

.icon-ibm-research--T_alt:before {
  content: "\ed14";
}

.icon-ibm-research--U1:before {
  content: "\ed15";
}

.icon-ibm-research--U2:before {
  content: "\ed16";
}

.icon-ibm-research--U3:before {
  content: "\ed17";
}

.icon-ibm-research--X:before {
  content: "\ed18";
}

.icon-ibm-research--Y:before {
  content: "\ed19";
}

.icon-ibm-research--Z:before {
  content: "\ed1a";
}

.icon-ibm-research--barrier:before {
  content: "\ed1b";
}

.icon-ibm-research--bloch_sphere:before {
  content: "\ed1c";
}

.icon-ibm-research--cU1:before {
  content: "\ed1d";
}

.icon-ibm-research--cU3:before {
  content: "\ed1e";
}

.icon-ibm-research--cY:before {
  content: "\ed1f";
}

.icon-ibm-research--cZ:before {
  content: "\ed20";
}

.icon-ibm-research--ccX:before {
  content: "\ed21";
}

.icon-ibm-research--circuit_composer:before {
  content: "\ed22";
}

.icon-ibm-research--composer_edit:before {
  content: "\ed23";
}

.icon-ibm-research--hinton_plot:before {
  content: "\ed24";
}

.icon-ibm-research--iD:before {
  content: "\ed25";
}

.icon-ibm-research--matrix:before {
  content: "\ed26";
}

.icon-ibm-research--operation:before {
  content: "\ed27";
}

.icon-ibm-research--operation_gauge:before {
  content: "\ed28";
}

.icon-ibm-research--operation_if:before {
  content: "\ed29";
}

.icon-ibm-senses--cognitive:before {
  content: "\ed2a";
}

.icon-ibm-senses--hearing:before {
  content: "\ed2b";
}

.icon-ibm-senses--idea:before {
  content: "\ed2c";
}

.icon-ibm-senses--movement:before {
  content: "\ed2d";
}

.icon-ibm-senses--smell:before {
  content: "\ed2e";
}

.icon-ibm-senses--taste:before {
  content: "\ed2f";
}

.icon-ibm-senses--touch_1:before {
  content: "\ed30";
}

.icon-ibm-senses--touch_1_down:before {
  content: "\ed31";
}

.icon-ibm-senses--touch_1_down_filled:before {
  content: "\ed32";
}

.icon-ibm-senses--touch_1_filled:before {
  content: "\ed33";
}

.icon-ibm-senses--touch_2:before {
  content: "\ed34";
}

.icon-ibm-senses--touch_2_filled:before {
  content: "\ed35";
}

.icon-ibm-senses--touch_interaction:before {
  content: "\ed36";
}

.icon-ibm-social--logo_digg:before {
  content: "\ed37";
}

.icon-ibm-social--logo_discord:before {
  content: "\ed38";
}

.icon-ibm-social--logo_facebook:before {
  content: "\ed39";
}

.icon-ibm-social--logo_flickr:before {
  content: "\ed3a";
}

.icon-ibm-social--logo_github:before {
  content: "\ed3b";
}

.icon-ibm-social--logo_glassdoor:before {
  content: "\ed3c";
}

.icon-ibm-social--logo_instagram:before {
  content: "\ed3d";
}

.icon-ibm-social--logo_linkedin:before {
  content: "\ed3e";
}

.icon-ibm-social--logo_livestream:before {
  content: "\ed3f";
}

.icon-ibm-social--logo_medium:before {
  content: "\ed40";
}

.icon-ibm-social--logo_pinterest:before {
  content: "\ed41";
}

.icon-ibm-social--logo_quora:before {
  content: "\ed42";
}

.icon-ibm-social--logo_skype:before {
  content: "\ed43";
}

.icon-ibm-social--logo_slack:before {
  content: "\ed44";
}

.icon-ibm-social--logo_snapchat:before {
  content: "\ed45";
}

.icon-ibm-social--logo_tumblr:before {
  content: "\ed46";
}

.icon-ibm-social--logo_twitter:before {
  content: "\ed47";
}

.icon-ibm-social--logo_x:before {
  content: "\ed48";
}

.icon-ibm-social--logo_xing:before {
  content: "\ed49";
}

.icon-ibm-social--logo_yelp:before {
  content: "\ed4a";
}

.icon-ibm-social--logo_youtube:before {
  content: "\ed4b";
}

.icon-ibm-status--checkmark:before {
  content: "\ed4c";
}

.icon-ibm-status--checkmark_filled:before {
  content: "\ed4d";
}

.icon-ibm-status--checkmark_filled_error:before {
  content: "\ed4e";
}

.icon-ibm-status--checkmark_filled_warning:before {
  content: "\ed4f";
}

.icon-ibm-status--checkmark_outline:before {
  content: "\ed50";
}

.icon-ibm-status--checkmark_outline_error:before {
  content: "\ed51";
}

.icon-ibm-status--checkmark_outline_warning:before {
  content: "\ed52";
}

.icon-ibm-status--condition_point:before {
  content: "\ed53";
}

.icon-ibm-status--condition_wait_point:before {
  content: "\ed54";
}

.icon-ibm-status--error:before {
  content: "\ed55";
}

.icon-ibm-status--error_filled:before {
  content: "\ed56";
}

.icon-ibm-status--error_outline:before {
  content: "\ed57";
}

.icon-ibm-status--glyph_caution:before {
  content: "\ed58";
}

.icon-ibm-status--glyph_caution_inverted:before {
  content: "\ed59";
}

.icon-ibm-status--glyph_circle_fill:before {
  content: "\ed5a";
}

.icon-ibm-status--glyph_circle_stroke:before {
  content: "\ed5b";
}

.icon-ibm-status--glyph_critical:before {
  content: "\ed5c";
}

.icon-ibm-status--glyph_incomplete:before {
  content: "\ed5d";
}

.icon-ibm-status--glyph_square_fill:before {
  content: "\ed5e";
}

.icon-ibm-status--glyph_undefined:before {
  content: "\ed5f";
}

.icon-ibm-status--help:before {
  content: "\ed60";
}

.icon-ibm-status--help_filled:before {
  content: "\ed61";
}

.icon-ibm-status--in_progress:before {
  content: "\ed62";
}

.icon-ibm-status--in_progress_error:before {
  content: "\ed63";
}

.icon-ibm-status--in_progress_warning:before {
  content: "\ed64";
}

.icon-ibm-status--incomplete:before {
  content: "\ed65";
}

.icon-ibm-status--incomplete_cancel:before {
  content: "\ed66";
}

.icon-ibm-status--incomplete_error:before {
  content: "\ed67";
}

.icon-ibm-status--incomplete_warning:before {
  content: "\ed68";
}

.icon-ibm-status--information:before {
  content: "\ed69";
}

.icon-ibm-status--information_filled:before {
  content: "\ed6a";
}

.icon-ibm-status--information_square:before {
  content: "\ed6b";
}

.icon-ibm-status--information_square_filled:before {
  content: "\ed6c";
}

.icon-ibm-status--misuse:before {
  content: "\ed6d";
}

.icon-ibm-status--misuse_outline:before {
  content: "\ed6e";
}

.icon-ibm-status--pending:before {
  content: "\ed6f";
}

.icon-ibm-status--pending_filled:before {
  content: "\ed70";
}

.icon-ibm-status--queued:before {
  content: "\ed71";
}

.icon-ibm-status--undefined:before {
  content: "\ed72";
}

.icon-ibm-status--undefined_filled:before {
  content: "\ed73";
}

.icon-ibm-status--unknown_filled:before {
  content: "\ed74";
}

.icon-ibm-status--unkonwn:before {
  content: "\ed75";
}

.icon-ibm-status--warning:before {
  content: "\ed76";
}

.icon-ibm-status--warning_alt:before {
  content: "\ed77";
}

.icon-ibm-status--warning_alt_filled:before {
  content: "\ed78";
}

.icon-ibm-status--warning_alt_inverted:before {
  content: "\ed79";
}

.icon-ibm-status--warning_alt_inverted_filled:before {
  content: "\ed7a";
}

.icon-ibm-status--warning_filled:before {
  content: "\ed7b";
}

.icon-ibm-status--warning_hex:before {
  content: "\ed7c";
}

.icon-ibm-status--warning_hex_filled:before {
  content: "\ed7d";
}

.icon-ibm-status--warning_other:before {
  content: "\ed7e";
}

.icon-ibm-status--warning_square:before {
  content: "\ed7f";
}

.icon-ibm-status--warning_square_filled:before {
  content: "\ed80";
}

.icon-ibm-systems--application_mobile:before {
  content: "\ed81";
}

.icon-ibm-systems--application_virtual:before {
  content: "\ed82";
}

.icon-ibm-systems--application_web:before {
  content: "\ed83";
}

.icon-ibm-systems--autoscaling:before {
  content: "\ed84";
}

.icon-ibm-systems--bare_metal_server:before {
  content: "\ed85";
}

.icon-ibm-systems--bastion_host:before {
  content: "\ed86";
}

.icon-ibm-systems--block_storage:before {
  content: "\ed87";
}

.icon-ibm-systems--block_storage_alt:before {
  content: "\ed88";
}

.icon-ibm-systems--chat_operational:before {
  content: "\ed89";
}

.icon-ibm-systems--code_signing_service:before {
  content: "\ed8a";
}

.icon-ibm-systems--container_registry:before {
  content: "\ed8b";
}

.icon-ibm-systems--container_services:before {
  content: "\ed8c";
}

.icon-ibm-systems--data_accessor:before {
  content: "\ed8d";
}

.icon-ibm-systems--data_backup:before {
  content: "\ed8e";
}

.icon-ibm-systems--data_blob:before {
  content: "\ed8f";
}

.icon-ibm-systems--data_center:before {
  content: "\ed90";
}

.icon-ibm-systems--data_diode:before {
  content: "\ed91";
}

.icon-ibm-systems--edge_node_alt:before {
  content: "\ed92";
}

.icon-ibm-systems--file_storage:before {
  content: "\ed93";
}

.icon-ibm-systems--firewall:before {
  content: "\ed94";
}

.icon-ibm-systems--firewall_classic:before {
  content: "\ed95";
}

.icon-ibm-systems--floating_ip:before {
  content: "\ed96";
}

.icon-ibm-systems--gateway:before {
  content: "\ed97";
}

.icon-ibm-systems--gateway_api:before {
  content: "\ed98";
}

.icon-ibm-systems--gateway_mail:before {
  content: "\ed99";
}

.icon-ibm-systems--gateway_public:before {
  content: "\ed9a";
}

.icon-ibm-systems--gateway_security:before {
  content: "\ed9b";
}

.icon-ibm-systems--gateway_user_access:before {
  content: "\ed9c";
}

.icon-ibm-systems--gateway_vpn:before {
  content: "\ed9d";
}

.icon-ibm-systems--group_access:before {
  content: "\ed9e";
}

.icon-ibm-systems--group_account:before {
  content: "\ed9f";
}

.icon-ibm-systems--group_resource:before {
  content: "\eda0";
}

.icon-ibm-systems--group_security:before {
  content: "\eda1";
}

.icon-ibm-systems--gui:before {
  content: "\eda2";
}

.icon-ibm-systems--gui_management:before {
  content: "\eda3";
}

.icon-ibm-systems--hardware_security_module:before {
  content: "\eda4";
}

.icon-ibm-systems--hybrid_networking_alt:before {
  content: "\eda5";
}

.icon-ibm-systems--id_management:before {
  content: "\eda6";
}

.icon-ibm-systems--image_service:before {
  content: "\eda7";
}

.icon-ibm-systems--instance_bx:before {
  content: "\eda8";
}

.icon-ibm-systems--instance_classic:before {
  content: "\eda9";
}

.icon-ibm-systems--instance_cx:before {
  content: "\edaa";
}

.icon-ibm-systems--instance_mx:before {
  content: "\edab";
}

.icon-ibm-systems--instance_virtual:before {
  content: "\edac";
}

.icon-ibm-systems--intrusion_prevention:before {
  content: "\edad";
}

.icon-ibm-systems--kubernetes:before {
  content: "\edae";
}

.icon-ibm-systems--load_balancer_application:before {
  content: "\edaf";
}

.icon-ibm-systems--load_balancer_classic:before {
  content: "\edb0";
}

.icon-ibm-systems--load_balancer_global:before {
  content: "\edb1";
}

.icon-ibm-systems--load_balancer_listener:before {
  content: "\edb2";
}

.icon-ibm-systems--load_balancer_local:before {
  content: "\edb3";
}

.icon-ibm-systems--load_balancer_network:before {
  content: "\edb4";
}

.icon-ibm-systems--load_balancer_pool:before {
  content: "\edb5";
}

.icon-ibm-systems--message_queue:before {
  content: "\edb6";
}

.icon-ibm-systems--mobility_services:before {
  content: "\edb7";
}

.icon-ibm-systems--network_enterprise:before {
  content: "\edb8";
}

.icon-ibm-systems--network_overlay:before {
  content: "\edb9";
}

.icon-ibm-systems--network_public:before {
  content: "\edba";
}

.icon-ibm-systems--object_storage_alt:before {
  content: "\edbb";
}

.icon-ibm-systems--point_of_presence:before {
  content: "\edbc";
}

.icon-ibm-systems--router:before {
  content: "\edbd";
}

.icon-ibm-systems--router_voice:before {
  content: "\edbe";
}

.icon-ibm-systems--router_wifi:before {
  content: "\edbf";
}

.icon-ibm-systems--security_services:before {
  content: "\edc0";
}

.icon-ibm-systems--server_dns:before {
  content: "\edc1";
}

.icon-ibm-systems--server_proxy:before {
  content: "\edc2";
}

.icon-ibm-systems--server_time:before {
  content: "\edc3";
}

.icon-ibm-systems--slisor:before {
  content: "\edc4";
}

.icon-ibm-systems--subnet_acl_rules:before {
  content: "\edc5";
}

.icon-ibm-systems--switch_layer_2:before {
  content: "\edc6";
}

.icon-ibm-systems--switch_layer_3:before {
  content: "\edc7";
}

.icon-ibm-systems--two_factor_authentication:before {
  content: "\edc8";
}

.icon-ibm-systems--vehicle_api:before {
  content: "\edc9";
}

.icon-ibm-systems--vehicle_connected:before {
  content: "\edca";
}

.icon-ibm-systems--vehicle_insights:before {
  content: "\edcb";
}

.icon-ibm-systems--vehicle_services:before {
  content: "\edcc";
}

.icon-ibm-systems--virtual_desktop:before {
  content: "\edcd";
}

.icon-ibm-systems--vlan:before {
  content: "\edce";
}

.icon-ibm-systems--vpn_connection:before {
  content: "\edcf";
}

.icon-ibm-systems--vpn_policy:before {
  content: "\edd0";
}

.icon-ibm-systems--wifi_bridge:before {
  content: "\edd1";
}

.icon-ibm-systems--wifi_bridge_alt:before {
  content: "\edd2";
}

.icon-ibm-systems--wifi_not_secure:before {
  content: "\edd3";
}

.icon-ibm-systems--wifi_secure:before {
  content: "\edd4";
}

.icon-ibm-technology--USB:before {
  content: "\edd5";
}

.icon-ibm-technology--VPN:before {
  content: "\edd6";
}

.icon-ibm-technology--aperture:before {
  content: "\edd7";
}

.icon-ibm-technology--asset:before {
  content: "\edd8";
}

.icon-ibm-technology--at:before {
  content: "\edd9";
}

.icon-ibm-technology--audio_console:before {
  content: "\edda";
}

.icon-ibm-technology--augmented_reality:before {
  content: "\eddb";
}

.icon-ibm-technology--barcode:before {
  content: "\eddc";
}

.icon-ibm-technology--battery_charging:before {
  content: "\eddd";
}

.icon-ibm-technology--battery_empty:before {
  content: "\edde";
}

.icon-ibm-technology--battery_full:before {
  content: "\eddf";
}

.icon-ibm-technology--battery_half:before {
  content: "\ede0";
}

.icon-ibm-technology--battery_low:before {
  content: "\ede1";
}

.icon-ibm-technology--battery_quarter:before {
  content: "\ede2";
}

.icon-ibm-technology--blog:before {
  content: "\ede3";
}

.icon-ibm-technology--bluetooth:before {
  content: "\ede4";
}

.icon-ibm-technology--bluetooth_off:before {
  content: "\ede5";
}

.icon-ibm-technology--bot:before {
  content: "\ede6";
}

.icon-ibm-technology--breaking_changes:before {
  content: "\ede7";
}

.icon-ibm-technology--building_insights_1:before {
  content: "\ede8";
}

.icon-ibm-technology--building_insights_2:before {
  content: "\ede9";
}

.icon-ibm-technology--building_insights_3:before {
  content: "\edea";
}

.icon-ibm-technology--calculator:before {
  content: "\edeb";
}

.icon-ibm-technology--calculator_check:before {
  content: "\edec";
}

.icon-ibm-technology--camera:before {
  content: "\eded";
}

.icon-ibm-technology--camera_action:before {
  content: "\edee";
}

.icon-ibm-technology--chat_bot:before {
  content: "\edef";
}

.icon-ibm-technology--chip:before {
  content: "\edf0";
}

.icon-ibm-technology--cloud_download:before {
  content: "\edf1";
}

.icon-ibm-technology--cloud_upload:before {
  content: "\edf2";
}

.icon-ibm-technology--code:before {
  content: "\edf3";
}

.icon-ibm-technology--code_hide:before {
  content: "\edf4";
}

.icon-ibm-technology--code_reference:before {
  content: "\edf5";
}

.icon-ibm-technology--connection_receive:before {
  content: "\edf6";
}

.icon-ibm-technology--connection_send:before {
  content: "\edf7";
}

.icon-ibm-technology--connection_signal_off:before {
  content: "\edf8";
}

.icon-ibm-technology--connection_signed:before {
  content: "\edf9";
}

.icon-ibm-technology--connection_two_way:before {
  content: "\edfa";
}

.icon-ibm-technology--debug:before {
  content: "\edfb";
}

.icon-ibm-technology--deployment_pattern:before {
  content: "\edfc";
}

.icon-ibm-technology--deployment_policy:before {
  content: "\edfd";
}

.icon-ibm-technology--desk_adjustable:before {
  content: "\edfe";
}

.icon-ibm-technology--development:before {
  content: "\edff";
}

.icon-ibm-technology--devices:before {
  content: "\ee00";
}

.icon-ibm-technology--drone:before {
  content: "\ee01";
}

.icon-ibm-technology--edge_cluster:before {
  content: "\ee02";
}

.icon-ibm-technology--edge_device:before {
  content: "\ee03";
}

.icon-ibm-technology--edge_node:before {
  content: "\ee04";
}

.icon-ibm-technology--edge_service:before {
  content: "\ee05";
}

.icon-ibm-technology--email:before {
  content: "\ee06";
}

.icon-ibm-technology--email_new:before {
  content: "\ee07";
}

.icon-ibm-technology--equalizer:before {
  content: "\ee08";
}

.icon-ibm-technology--fetch_upload:before {
  content: "\ee09";
}

.icon-ibm-technology--fetch_upload_cloud:before {
  content: "\ee0a";
}

.icon-ibm-technology--fingerprint_recognition:before {
  content: "\ee0b";
}

.icon-ibm-technology--forum:before {
  content: "\ee0c";
}

.icon-ibm-technology--function:before {
  content: "\ee0d";
}

.icon-ibm-technology--game_console:before {
  content: "\ee0e";
}

.icon-ibm-technology--game_wireless:before {
  content: "\ee0f";
}

.icon-ibm-technology--headphones:before {
  content: "\ee10";
}

.icon-ibm-technology--headset:before {
  content: "\ee11";
}

.icon-ibm-technology--integration:before {
  content: "\ee12";
}

.icon-ibm-technology--iot_conect:before {
  content: "\ee13";
}

.icon-ibm-technology--iot_platform:before {
  content: "\ee14";
}

.icon-ibm-technology--keyboard:before {
  content: "\ee15";
}

.icon-ibm-technology--laptop:before {
  content: "\ee16";
}

.icon-ibm-technology--linux:before {
  content: "\ee17";
}

.icon-ibm-technology--linux_alt:before {
  content: "\ee18";
}

.icon-ibm-technology--location_current:before {
  content: "\ee19";
}

.icon-ibm-technology--logo_jupyter:before {
  content: "\ee1a";
}

.icon-ibm-technology--logo_keybase:before {
  content: "\ee1b";
}

.icon-ibm-technology--logo_openshift:before {
  content: "\ee1c";
}

.icon-ibm-technology--logo_python:before {
  content: "\ee1d";
}

.icon-ibm-technology--logo_r_script:before {
  content: "\ee1e";
}

.icon-ibm-technology--logo_vmware:before {
  content: "\ee1f";
}

.icon-ibm-technology--machine_learning:before {
  content: "\ee20";
}

.icon-ibm-technology--machine_learning_model:before {
  content: "\ee21";
}

.icon-ibm-technology--mail_alt:before {
  content: "\ee22";
}

.icon-ibm-technology--mail_reply:before {
  content: "\ee23";
}

.icon-ibm-technology--mobile:before {
  content: "\ee24";
}

.icon-ibm-technology--mobile_add:before {
  content: "\ee25";
}

.icon-ibm-technology--mobile_audio:before {
  content: "\ee26";
}

.icon-ibm-technology--mobile_check:before {
  content: "\ee2d";
}

.icon-ibm-technology--mobile_download:before {
  content: "\ee2e";
}

.icon-ibm-technology--mobile_landscape:before {
  content: "\ee2f";
}

.icon-ibm-technology--outage:before {
  content: "\ee30";
}

.icon-ibm-technology--password:before {
  content: "\ee31";
}

.icon-ibm-technology--phone_ip:before {
  content: "\ee32";
}

.icon-ibm-technology--plug:before {
  content: "\ee33";
}

.icon-ibm-technology--plug_filled:before {
  content: "\ee34";
}

.icon-ibm-technology--printer:before {
  content: "\ee35";
}

.icon-ibm-technology--qr_code:before {
  content: "\ee36";
}

.icon-ibm-technology--radio:before {
  content: "\ee37";
}

.icon-ibm-technology--rocket:before {
  content: "\ee38";
}

.icon-ibm-technology--rss:before {
  content: "\ee39";
}

.icon-ibm-technology--satellite:before {
  content: "\ee3a";
}

.icon-ibm-technology--share:before {
  content: "\ee3b";
}

.icon-ibm-technology--signal_strength:before {
  content: "\ee3c";
}

.icon-ibm-technology--tablet:before {
  content: "\ee3d";
}

.icon-ibm-technology--tablet_landscape:before {
  content: "\ee3e";
}

.icon-ibm-technology--terminal:before {
  content: "\ee3f";
}

.icon-ibm-technology--voicemail:before {
  content: "\ee40";
}

.icon-ibm-technology--watch:before {
  content: "\ee41";
}

.icon-ibm-technology--wifi:before {
  content: "\ee42";
}

.icon-ibm-technology--wifi_off:before {
  content: "\ee43";
}

.icon-ibm-technology--wikis:before {
  content: "\ee44";
}

.icon-ibm-time--alarm:before {
  content: "\ee45";
}

.icon-ibm-time--alarm_add:before {
  content: "\ee46";
}

.icon-ibm-time--alarm_subtract:before {
  content: "\ee47";
}

.icon-ibm-time--calendar:before {
  content: "\ee48";
}

.icon-ibm-time--calendar_settings:before {
  content: "\ee49";
}

.icon-ibm-time--calendar_tools:before {
  content: "\ee4a";
}

.icon-ibm-time--event:before {
  content: "\ee4b";
}

.icon-ibm-time--event_schedule:before {
  content: "\ee4c";
}

.icon-ibm-time--hourglass:before {
  content: "\ee4d";
}

.icon-ibm-time--reminder:before {
  content: "\ee4e";
}

.icon-ibm-time--reminder_medical:before {
  content: "\ee4f";
}

.icon-ibm-time--snooze:before {
  content: "\ee50";
}

.icon-ibm-time--time:before {
  content: "\ee51";
}

.icon-ibm-time--timer:before {
  content: "\ee52";
}

.icon-ibm-toggle--asleep:before {
  content: "\ee53";
}

.icon-ibm-toggle--asleep_filled:before {
  content: "\ee54";
}

.icon-ibm-toggle--carousel_horizontal:before {
  content: "\ee55";
}

.icon-ibm-toggle--carousel_vertical:before {
  content: "\ee56";
}

.icon-ibm-toggle--checkbox:before {
  content: "\ee57";
}

.icon-ibm-toggle--checkbox_checked:before {
  content: "\ee58";
}

.icon-ibm-toggle--checkbox_checked_filled:before {
  content: "\ee59";
}

.icon-ibm-toggle--checkbox_inderterminate_filled:before {
  content: "\ee5a";
}

.icon-ibm-toggle--checkbox_indeterminate:before {
  content: "\ee5b";
}

.icon-ibm-toggle--column:before {
  content: "\ee5c";
}

.icon-ibm-toggle--favorite:before {
  content: "\ee5d";
}

.icon-ibm-toggle--favorite_filled:before {
  content: "\ee5e";
}

.icon-ibm-toggle--favorite_half:before {
  content: "\ee5f";
}

.icon-ibm-toggle--flash:before {
  content: "\ee60";
}

.icon-ibm-toggle--flash_filled:before {
  content: "\ee61";
}

.icon-ibm-toggle--flash_off:before {
  content: "\ee62";
}

.icon-ibm-toggle--flash_off_filled:before {
  content: "\ee63";
}

.icon-ibm-toggle--grid:before {
  content: "\ee64";
}

.icon-ibm-toggle--light:before {
  content: "\ee65";
}

.icon-ibm-toggle--light_filled:before {
  content: "\ee66";
}

.icon-ibm-toggle--list:before {
  content: "\ee67";
}

.icon-ibm-toggle--locked:before {
  content: "\ee68";
}

.icon-ibm-toggle--microphone:before {
  content: "\ee69";
}

.icon-ibm-toggle--microphone_filled:before {
  content: "\ee6a";
}

.icon-ibm-toggle--microphone_off:before {
  content: "\ee6b";
}

.icon-ibm-toggle--microphone_off_filled:before {
  content: "\ee6c";
}

.icon-ibm-toggle--notification:before {
  content: "\ee6d";
}

.icon-ibm-toggle--notification_filled:before {
  content: "\ee6e";
}

.icon-ibm-toggle--notification_new:before {
  content: "\ee6f";
}

.icon-ibm-toggle--notification_off:before {
  content: "\ee70";
}

.icon-ibm-toggle--notification_off_filled:before {
  content: "\ee71";
}

.icon-ibm-toggle--phone:before {
  content: "\ee72";
}

.icon-ibm-toggle--phone_block:before {
  content: "\ee73";
}

.icon-ibm-toggle--phone_block_filled:before {
  content: "\ee74";
}

.icon-ibm-toggle--phone_filled:before {
  content: "\ee75";
}

.icon-ibm-toggle--phone_incoming:before {
  content: "\ee76";
}

.icon-ibm-toggle--phone_incoming_filled:before {
  content: "\ee78";
}

.icon-ibm-toggle--phone_off:before {
  content: "\ee7a";
}

.icon-ibm-toggle--phone_off_filled:before {
  content: "\ee7b";
}

.icon-ibm-toggle--phone_outgoing:before {
  content: "\ee7c";
}

.icon-ibm-toggle--phone_outgoing_filled:before {
  content: "\ee7e";
}

.icon-ibm-toggle--phone_voice:before {
  content: "\ee80";
}

.icon-ibm-toggle--phone_voice_filled:before {
  content: "\ee81";
}

.icon-ibm-toggle--radio_button:before {
  content: "\ee82";
}

.icon-ibm-toggle--radio_button_checked:before {
  content: "\ee83";
}

.icon-ibm-toggle--row:before {
  content: "\ee84";
}

.icon-ibm-toggle--screen:before {
  content: "\ee85";
}

.icon-ibm-toggle--screen_off:before {
  content: "\ee86";
}

.icon-ibm-toggle--star:before {
  content: "\ee87";
}

.icon-ibm-toggle--star_filled:before {
  content: "\ee88";
}

.icon-ibm-toggle--star_half:before {
  content: "\ee89";
}

.icon-ibm-toggle--thumbnail_1:before {
  content: "\ee8a";
}

.icon-ibm-toggle--thumbnail_2:before {
  content: "\ee8b";
}

.icon-ibm-toggle--thumbs_down:before {
  content: "\ee8c";
}

.icon-ibm-toggle--thumbs_down_filled:before {
  content: "\ee8d";
}

.icon-ibm-toggle--thumbs_up:before {
  content: "\ee8e";
}

.icon-ibm-toggle--thumbs_up_filled:before {
  content: "\ee8f";
}

.icon-ibm-toggle--trophy:before {
  content: "\ee90";
}

.icon-ibm-toggle--trophy_filled:before {
  content: "\ee91";
}

.icon-ibm-toggle--unlocked:before {
  content: "\ee92";
}

.icon-ibm-toggle--video:before {
  content: "\ee93";
}

.icon-ibm-toggle--video_filled:before {
  content: "\ee94";
}

.icon-ibm-toggle--video_off:before {
  content: "\ee95";
}

.icon-ibm-toggle--video_off_filled:before {
  content: "\ee96";
}

.icon-ibm-toggle--view:before {
  content: "\ee97";
}

.icon-ibm-toggle--view_filled:before {
  content: "\ee98";
}

.icon-ibm-toggle--view_mode_1:before {
  content: "\ee99";
}

.icon-ibm-toggle--view_mode_2:before {
  content: "\ee9a";
}

.icon-ibm-toggle--view_off:before {
  content: "\ee9b";
}

.icon-ibm-toggle--view_off_filled:before {
  content: "\ee9c";
}

.icon-ibm-travel--airline_cabin_care:before {
  content: "\ee9d";
}

.icon-ibm-travel--airline_cabin_care_alert:before {
  content: "\ee9e";
}

.icon-ibm-travel--airline_cabin_care_alt:before {
  content: "\ee9f";
}

.icon-ibm-travel--airline_digital_gate:before {
  content: "\eea0";
}

.icon-ibm-travel--airline_manage_gates:before {
  content: "\eea1";
}

.icon-ibm-travel--airline_passenger_care:before {
  content: "\eea2";
}

.icon-ibm-travel--airline_rapid_board:before {
  content: "\eea3";
}

.icon-ibm-travel--airport_01:before {
  content: "\eea4";
}

.icon-ibm-travel--airport_02:before {
  content: "\eea5";
}

.icon-ibm-travel--airport_location:before {
  content: "\eea6";
}

.icon-ibm-travel--arrival:before {
  content: "\eea7";
}

.icon-ibm-travel--baggage_claim:before {
  content: "\eea8";
}

.icon-ibm-travel--bar:before {
  content: "\eea9";
}

.icon-ibm-travel--bicycle:before {
  content: "\eeaa";
}

.icon-ibm-travel--bus:before {
  content: "\eeab";
}

.icon-ibm-travel--cafe:before {
  content: "\eeac";
}

.icon-ibm-travel--campsite:before {
  content: "\eead";
}

.icon-ibm-travel--car:before {
  content: "\eeae";
}

.icon-ibm-travel--car_front:before {
  content: "\eeaf";
}

.icon-ibm-travel--charging_station:before {
  content: "\eeb0";
}

.icon-ibm-travel--charging_station_filled:before {
  content: "\eeb1";
}

.icon-ibm-travel--compass:before {
  content: "\eeb2";
}

.icon-ibm-travel--construction:before {
  content: "\eeb3";
}

.icon-ibm-travel--crossroad:before {
  content: "\eeb4";
}

.icon-ibm-travel--crowd_report:before {
  content: "\eeb5";
}

.icon-ibm-travel--crowd_report_filled:before {
  content: "\eeb6";
}

.icon-ibm-travel--cyclist:before {
  content: "\eeb7";
}

.icon-ibm-travel--delivery_truck:before {
  content: "\eeb8";
}

.icon-ibm-travel--departure:before {
  content: "\eeb9";
}

.icon-ibm-travel--direction_U_turn:before {
  content: "\eeba";
}

.icon-ibm-travel--direction_U_turn_filled:before {
  content: "\eebb";
}

.icon-ibm-travel--direction_bear_right_01:before {
  content: "\eebc";
}

.icon-ibm-travel--direction_bear_right_01_filled:before {
  content: "\eebd";
}

.icon-ibm-travel--direction_bear_right_02:before {
  content: "\eebe";
}

.icon-ibm-travel--direction_bear_right_02_filled:before {
  content: "\eebf";
}

.icon-ibm-travel--direction_curve:before {
  content: "\eec0";
}

.icon-ibm-travel--direction_curve_filled:before {
  content: "\eec1";
}

.icon-ibm-travel--direction_fork:before {
  content: "\eec2";
}

.icon-ibm-travel--direction_fork_filled:before {
  content: "\eec3";
}

.icon-ibm-travel--direction_loop_left:before {
  content: "\eec4";
}

.icon-ibm-travel--direction_loop_left-filled:before {
  content: "\eec5";
}

.icon-ibm-travel--direction_loop_right:before {
  content: "\eec6";
}

.icon-ibm-travel--direction_loop_right-filled:before {
  content: "\eec7";
}

.icon-ibm-travel--direction_merge:before {
  content: "\eec8";
}

.icon-ibm-travel--direction_merge_filled:before {
  content: "\eec9";
}

.icon-ibm-travel--direction_right_01:before {
  content: "\eeca";
}

.icon-ibm-travel--direction_right_01_filled:before {
  content: "\eecb";
}

.icon-ibm-travel--direction_right_02:before {
  content: "\eecc";
}

.icon-ibm-travel--direction_right_02_filled:before {
  content: "\eecd";
}

.icon-ibm-travel--direction_rotary_first_right:before {
  content: "\eece";
}

.icon-ibm-travel--direction_rotary_first_right_filled:before {
  content: "\eecf";
}

.icon-ibm-travel--direction_rotary_right:before {
  content: "\eed0";
}

.icon-ibm-travel--direction_rotary_right_filled:before {
  content: "\eed1";
}

.icon-ibm-travel--direction_rotary_straight:before {
  content: "\eed2";
}

.icon-ibm-travel--direction_rotary_straight_filled:before {
  content: "\eed3";
}

.icon-ibm-travel--direction_sharp_turn:before {
  content: "\eed4";
}

.icon-ibm-travel--direction_sharp_turn_filled:before {
  content: "\eed5";
}

.icon-ibm-travel--direction_straight:before {
  content: "\eed6";
}

.icon-ibm-travel--direction_straight_filled:before {
  content: "\eed7";
}

.icon-ibm-travel--direction_straight_right:before {
  content: "\eed8";
}

.icon-ibm-travel--direction_straight_right_filled:before {
  content: "\eed9";
}

.icon-ibm-travel--earth:before {
  content: "\eeda";
}

.icon-ibm-travel--earth_america_filled:before {
  content: "\eedb";
}

.icon-ibm-travel--earth_europa_africa:before {
  content: "\eedc";
}

.icon-ibm-travel--earth_europa_africa_filled:before {
  content: "\eedd";
}

.icon-ibm-travel--earth_filled:before {
  content: "\eede";
}

.icon-ibm-travel--earth_southeast_asia:before {
  content: "\eedf";
}

.icon-ibm-travel--earth_southeast_asia_filled:before {
  content: "\eee0";
}

.icon-ibm-travel--fight_roster:before {
  content: "\eee1";
}

.icon-ibm-travel--fire:before {
  content: "\eee2";
}

.icon-ibm-travel--flagging_taxi:before {
  content: "\eee3";
}

.icon-ibm-travel--flight_international:before {
  content: "\eee4";
}

.icon-ibm-travel--flight_schedule:before {
  content: "\eee5";
}

.icon-ibm-travel--gas_station:before {
  content: "\eee6";
}

.icon-ibm-travel--gas_station_filled:before {
  content: "\eee7";
}

.icon-ibm-travel--globe:before {
  content: "\eee8";
}

.icon-ibm-travel--harbor:before {
  content: "\eee9";
}

.icon-ibm-travel--helicopter:before {
  content: "\eeea";
}

.icon-ibm-travel--help_desk:before {
  content: "\eeeb";
}

.icon-ibm-travel--hospital:before {
  content: "\eeec";
}

.icon-ibm-travel--hospital_bed:before {
  content: "\eeed";
}

.icon-ibm-travel--hotel:before {
  content: "\eeee";
}

.icon-ibm-travel--lifesaver:before {
  content: "\eeef";
}

.icon-ibm-travel--location:before {
  content: "\eef0";
}

.icon-ibm-travel--location_company:before {
  content: "\eef1";
}

.icon-ibm-travel--location_company_filled:before {
  content: "\eef2";
}

.icon-ibm-travel--location_filled:before {
  content: "\eef3";
}

.icon-ibm-travel--location_hazard:before {
  content: "\eef4";
}

.icon-ibm-travel--location_hazard_filled:before {
  content: "\eef5";
}

.icon-ibm-travel--location_heart:before {
  content: "\eef6";
}

.icon-ibm-travel--location_heart_filled:before {
  content: "\eef7";
}

.icon-ibm-travel--location_person:before {
  content: "\eef8";
}

.icon-ibm-travel--location_person_filled:before {
  content: "\eef9";
}

.icon-ibm-travel--location_star:before {
  content: "\eefa";
}

.icon-ibm-travel--location_star_filled:before {
  content: "\eefb";
}

.icon-ibm-travel--map:before {
  content: "\eefc";
}

.icon-ibm-travel--map_boundary:before {
  content: "\eefd";
}

.icon-ibm-travel--milestone:before {
  content: "\eefe";
}

.icon-ibm-travel--monument:before {
  content: "\eeff";
}

.icon-ibm-travel--mountain:before {
  content: "\ef00";
}

.icon-ibm-travel--navaid_civil:before {
  content: "\ef01";
}

.icon-ibm-travel--navaid_dme:before {
  content: "\ef02";
}

.icon-ibm-travel--navaid_helipad:before {
  content: "\ef03";
}

.icon-ibm-travel--navaid_military:before {
  content: "\ef04";
}

.icon-ibm-travel--navaid_military_civil:before {
  content: "\ef05";
}

.icon-ibm-travel--navaid_ndb:before {
  content: "\ef06";
}

.icon-ibm-travel--navaid_ndb_dme:before {
  content: "\ef07";
}

.icon-ibm-travel--navaid_private:before {
  content: "\ef1d";
}

.icon-ibm-travel--navaid_seaplane:before {
  content: "\ef1e";
}

.icon-ibm-travel--navaid_tacan:before {
  content: "\ef1f";
}

.icon-ibm-travel--navaid_vhfor:before {
  content: "\ef20";
}

.icon-ibm-travel--navaid_vor:before {
  content: "\ef21";
}

.icon-ibm-travel--navaid_vordme:before {
  content: "\ef23";
}

.icon-ibm-travel--navaid_vortac:before {
  content: "\ef25";
}

.icon-ibm-travel--palm_tree:before {
  content: "\ef26";
}

.icon-ibm-travel--passenger_drinks:before {
  content: "\ef27";
}

.icon-ibm-travel--passenger_plus:before {
  content: "\ef28";
}

.icon-ibm-travel--pedestrian:before {
  content: "\ef29";
}

.icon-ibm-travel--pedestrian_child:before {
  content: "\ef2a";
}

.icon-ibm-travel--pedestrian_family:before {
  content: "\ef2b";
}

.icon-ibm-travel--picnic_area:before {
  content: "\ef2c";
}

.icon-ibm-travel--plane:before {
  content: "\ef2d";
}

.icon-ibm-travel--plane_private:before {
  content: "\ef2e";
}

.icon-ibm-travel--plane_sea:before {
  content: "\ef2f";
}

.icon-ibm-travel--police:before {
  content: "\ef30";
}

.icon-ibm-travel--restaurant:before {
  content: "\ef31";
}

.icon-ibm-travel--restaurant_fine:before {
  content: "\ef32";
}

.icon-ibm-travel--road:before {
  content: "\ef33";
}

.icon-ibm-travel--road_weather:before {
  content: "\ef34";
}

.icon-ibm-travel--scooter:before {
  content: "\ef35";
}

.icon-ibm-travel--scooter_front:before {
  content: "\ef36";
}

.icon-ibm-travel--service_desk:before {
  content: "\ef37";
}

.icon-ibm-travel--shuttle:before {
  content: "\ef38";
}

.icon-ibm-travel--stop_sign:before {
  content: "\ef39";
}

.icon-ibm-travel--stop_sign_filled:before {
  content: "\ef3a";
}

.icon-ibm-travel--swim:before {
  content: "\ef3b";
}

.icon-ibm-travel--taxi:before {
  content: "\ef3c";
}

.icon-ibm-travel--theater:before {
  content: "\ef3d";
}

.icon-ibm-travel--traffic_cone:before {
  content: "\ef3e";
}

.icon-ibm-travel--traffic_event:before {
  content: "\ef3f";
}

.icon-ibm-travel--traffic_flow:before {
  content: "\ef40";
}

.icon-ibm-travel--traffic_flow_incident:before {
  content: "\ef41";
}

.icon-ibm-travel--traffic_incident:before {
  content: "\ef42";
}

.icon-ibm-travel--traffic_weather_incident:before {
  content: "\ef43";
}

.icon-ibm-travel--train:before {
  content: "\ef44";
}

.icon-ibm-travel--train_heart:before {
  content: "\ef45";
}

.icon-ibm-travel--train_ticket:before {
  content: "\ef46";
}

.icon-ibm-travel--train_time:before {
  content: "\ef47";
}

.icon-ibm-travel--tram:before {
  content: "\ef48";
}

.icon-ibm-travel--van:before {
  content: "\ef49";
}

.icon-ibm-travel--worship:before {
  content: "\ef4a";
}

.icon-ibm-travel--worship_christian:before {
  content: "\ef4b";
}

.icon-ibm-travel--worship_jewish:before {
  content: "\ef4c";
}

.icon-ibm-travel--worship_muslim:before {
  content: "\ef4d";
}

.icon-ibm-travel-earth_america:before {
  content: "\ef4e";
}

.icon-ibm-user--accesibility:before {
  content: "\ef4f";
}

.icon-ibm-user--accesibility_alt:before {
  content: "\ef50";
}

.icon-ibm-user--accesibility_color:before {
  content: "\ef51";
}

.icon-ibm-user--accesibility_color_filled:before {
  content: "\ef52";
}

.icon-ibm-user--collaborate:before {
  content: "\ef53";
}

.icon-ibm-user--cought:before {
  content: "\ef54";
}

.icon-ibm-user--credentials:before {
  content: "\ef55";
}

.icon-ibm-user--education:before {
  content: "\ef56";
}

.icon-ibm-user--events:before {
  content: "\ef57";
}

.icon-ibm-user--events_alt:before {
  content: "\ef58";
}

.icon-ibm-user--face_activated:before {
  content: "\ef59";
}

.icon-ibm-user--face_activated_add:before {
  content: "\ef5a";
}

.icon-ibm-user--face_activated_filled:before {
  content: "\ef5b";
}

.icon-ibm-user--face_add:before {
  content: "\ef5c";
}

.icon-ibm-user--face_cool:before {
  content: "\ef5d";
}

.icon-ibm-user--face_dissatisfied:before {
  content: "\ef5e";
}

.icon-ibm-user--face_dissatisfied_filled:before {
  content: "\ef5f";
}

.icon-ibm-user--face_dizzy:before {
  content: "\ef60";
}

.icon-ibm-user--face_dizzy_filled:before {
  content: "\ef61";
}

.icon-ibm-user--face_mask:before {
  content: "\ef62";
}

.icon-ibm-user--face_neutral:before {
  content: "\ef63";
}

.icon-ibm-user--face_neutral_filled:before {
  content: "\ef64";
}

.icon-ibm-user--face_pending:before {
  content: "\ef65";
}

.icon-ibm-user--face_pending_filled:before {
  content: "\ef66";
}

.icon-ibm-user--face_satisfied:before {
  content: "\ef67";
}

.icon-ibm-user--face_satisfied_filled:before {
  content: "\ef68";
}

.icon-ibm-user--face_wink:before {
  content: "\ef69";
}

.icon-ibm-user--face_wink_filled:before {
  content: "\ef6a";
}

.icon-ibm-user--gender_female:before {
  content: "\ef6b";
}

.icon-ibm-user--gender_mail:before {
  content: "\ef6c";
}

.icon-ibm-user--group:before {
  content: "\ef6d";
}

.icon-ibm-user--group_presentation:before {
  content: "\ef6e";
}

.icon-ibm-user--identification:before {
  content: "\ef6f";
}

.icon-ibm-user--partnership:before {
  content: "\ef70";
}

.icon-ibm-user--person:before {
  content: "\ef71";
}

.icon-ibm-user--person_favorite:before {
  content: "\ef72";
}

.icon-ibm-user--sight:before {
  content: "\ef73";
}

.icon-ibm-user--transgender:before {
  content: "\ef74";
}

.icon-ibm-user--user:before {
  content: "\ef75";
}

.icon-ibm-user--user_access:before {
  content: "\ef76";
}

.icon-ibm-user--user_activity:before {
  content: "\ef77";
}

.icon-ibm-user--user_admin:before {
  content: "\ef78";
}

.icon-ibm-user--user_avatar:before {
  content: "\ef79";
}

.icon-ibm-user--user_avatar_filled:before {
  content: "\ef7a";
}

.icon-ibm-user--user_avatar_filled_alt:before {
  content: "\ef7b";
}

.icon-ibm-user--user_certification:before {
  content: "\ef7c";
}

.icon-ibm-user--user_data:before {
  content: "\ef7d";
}

.icon-ibm-user--user_favorite:before {
  content: "\ef7e";
}

.icon-ibm-user--user_favorite_alt:before {
  content: "\ef7f";
}

.icon-ibm-user--user_favorite_alt_filled:before {
  content: "\ef80";
}

.icon-ibm-user--user_filled:before {
  content: "\ef81";
}

.icon-ibm-user--user_follow:before {
  content: "\ef82";
}

.icon-ibm-user--user_identification:before {
  content: "\ef83";
}

.icon-ibm-user--user_multiple:before {
  content: "\ef84";
}

.icon-ibm-user--user_online:before {
  content: "\ef85";
}

.icon-ibm-user--user_profile:before {
  content: "\ef86";
}

.icon-ibm-user--user_profile_alt:before {
  content: "\ef87";
}

.icon-ibm-user--user_role:before {
  content: "\ef88";
}

.icon-ibm-user--user_simulation:before {
  content: "\ef89";
}

.icon-ibm-user--user_speaker:before {
  content: "\ef8a";
}

.icon-ibm-user--user_x_ray:before {
  content: "\ef8b";
}

.icon-ibm-user--voice_activate:before {
  content: "\ef8c";
}

.icon-ibm-weather--accumulation_ice:before {
  content: "\ef8d";
}

.icon-ibm-weather--accumulation_precipitation:before {
  content: "\ef8e";
}

.icon-ibm-weather--accumulation_rain:before {
  content: "\ef8f";
}

.icon-ibm-weather--accumulation_snow:before {
  content: "\ef90";
}

.icon-ibm-weather--agriculture_analytics:before {
  content: "\ef91";
}

.icon-ibm-weather--buoy:before {
  content: "\ef92";
}

.icon-ibm-weather--cloud:before {
  content: "\ef93";
}

.icon-ibm-weather--cloudy:before {
  content: "\ef94";
}

.icon-ibm-weather--coul_ceiling:before {
  content: "\ef95";
}

.icon-ibm-weather--crop_growth:before {
  content: "\ef96";
}

.icon-ibm-weather--crop_health:before {
  content: "\ef97";
}

.icon-ibm-weather--drew_point:before {
  content: "\ef98";
}

.icon-ibm-weather--drew_point_filled:before {
  content: "\ef99";
}

.icon-ibm-weather--drought:before {
  content: "\ef9a";
}

.icon-ibm-weather--earthquake:before {
  content: "\ef9b";
}

.icon-ibm-weather--flood:before {
  content: "\ef9c";
}

.icon-ibm-weather--flood_alert:before {
  content: "\ef9d";
}

.icon-ibm-weather--fog:before {
  content: "\ef9e";
}

.icon-ibm-weather--forecast_hail:before {
  content: "\ef9f";
}

.icon-ibm-weather--forecast_hail_30:before {
  content: "\efa0";
}

.icon-ibm-weather--forecast_lighting:before {
  content: "\efa1";
}

.icon-ibm-weather--forecast_lightning_30:before {
  content: "\efa2";
}

.icon-ibm-weather--hail:before {
  content: "\efa3";
}

.icon-ibm-weather--haze:before {
  content: "\efa4";
}

.icon-ibm-weather--haze_night:before {
  content: "\efa5";
}

.icon-ibm-weather--humidity:before {
  content: "\efa6";
}

.icon-ibm-weather--humidity_alt:before {
  content: "\efa7";
}

.icon-ibm-weather--hurricane:before {
  content: "\efa8";
}

.icon-ibm-weather--ice_accretion:before {
  content: "\efa9";
}

.icon-ibm-weather--ice_vision:before {
  content: "\efaa";
}

.icon-ibm-weather--lightning:before {
  content: "\efab";
}

.icon-ibm-weather--marine_alert:before {
  content: "\efac";
}

.icon-ibm-weather--mixed_rain_hail:before {
  content: "\efad";
}

.icon-ibm-weather--moon:before {
  content: "\efae";
}

.icon-ibm-weather--moonrise:before {
  content: "\efaf";
}

.icon-ibm-weather--moonset:before {
  content: "\efb0";
}

.icon-ibm-weather--mostly_cloudy:before {
  content: "\efb1";
}

.icon-ibm-weather--mostly_cloudy_night:before {
  content: "\efb2";
}

.icon-ibm-weather--not_available:before {
  content: "\efb3";
}

.icon-ibm-weather--observed_hail:before {
  content: "\efb4";
}

.icon-ibm-weather--observed_lightning:before {
  content: "\efb5";
}

.icon-ibm-weather--outlook_severe:before {
  content: "\efb6";
}

.icon-ibm-weather--partly_cloudy_night:before {
  content: "\efb7";
}

.icon-ibm-weather--party_cloudy:before {
  content: "\efb8";
}

.icon-ibm-weather--pest:before {
  content: "\efb9";
}

.icon-ibm-weather--pressure:before {
  content: "\efba";
}

.icon-ibm-weather--pressure_filled:before {
  content: "\efbb";
}

.icon-ibm-weather--radar_enhanced:before {
  content: "\efbc";
}

.icon-ibm-weather--radar_weather:before {
  content: "\efbd";
}

.icon-ibm-weather--rain:before {
  content: "\efbe";
}

.icon-ibm-weather--rain_drizzle:before {
  content: "\efbf";
}

.icon-ibm-weather--rain_drop:before {
  content: "\efc0";
}

.icon-ibm-weather--rain_heavy:before {
  content: "\efc1";
}

.icon-ibm-weather--rain_scattered:before {
  content: "\efc2";
}

.icon-ibm-weather--rain_scattered_night:before {
  content: "\efc3";
}

.icon-ibm-weather--ref_evapotranspiration:before {
  content: "\efc4";
}

.icon-ibm-weather--sailboat_coastal:before {
  content: "\efc5";
}

.icon-ibm-weather--sailboat_offshore:before {
  content: "\efc6";
}

.icon-ibm-weather--satellite_radar:before {
  content: "\efc7";
}

.icon-ibm-weather--satellite_weather:before {
  content: "\efc8";
}

.icon-ibm-weather--sleet:before {
  content: "\efc9";
}

.icon-ibm-weather--smoke:before {
  content: "\efca";
}

.icon-ibm-weather--snow:before {
  content: "\efcb";
}

.icon-ibm-weather--snow_blizzard:before {
  content: "\efcc";
}

.icon-ibm-weather--snow_density:before {
  content: "\efcd";
}

.icon-ibm-weather--snow_heavy:before {
  content: "\efce";
}

.icon-ibm-weather--snow_scattered:before {
  content: "\efcf";
}

.icon-ibm-weather--snow_scattered_night:before {
  content: "\efd0";
}

.icon-ibm-weather--snowflake:before {
  content: "\efd1";
}

.icon-ibm-weather--soil_moisture:before {
  content: "\efd2";
}

.icon-ibm-weather--soil_moisture_field:before {
  content: "\efd3";
}

.icon-ibm-weather--soil_moisture_global:before {
  content: "\efd4";
}

.icon-ibm-weather--soil_temperature:before {
  content: "\efd5";
}

.icon-ibm-weather--soil_temperature_field:before {
  content: "\efd6";
}

.icon-ibm-weather--soil_temperature_global:before {
  content: "\efd7";
}

.icon-ibm-weather--stay_inside:before {
  content: "\efd8";
}

.icon-ibm-weather--storm_tracker:before {
  content: "\efd9";
}

.icon-ibm-weather--sun:before {
  content: "\efda";
}

.icon-ibm-weather--sunrise:before {
  content: "\efdb";
}

.icon-ibm-weather--sunset:before {
  content: "\efdc";
}

.icon-ibm-weather--temperature:before {
  content: "\efdd";
}

.icon-ibm-weather--temperature_feels_like:before {
  content: "\efde";
}

.icon-ibm-weather--temperature_frigid:before {
  content: "\efdf";
}

.icon-ibm-weather--temperature_hot:before {
  content: "\efe0";
}

.icon-ibm-weather--temperature_inversion:before {
  content: "\efe1";
}

.icon-ibm-weather--temperature_max:before {
  content: "\efe2";
}

.icon-ibm-weather--temperature_min:before {
  content: "\efe3";
}

.icon-ibm-weather--temperature_water:before {
  content: "\efe4";
}

.icon-ibm-weather--thunderstorm:before {
  content: "\efe5";
}

.icon-ibm-weather--thunderstorm_scattered:before {
  content: "\efe6";
}

.icon-ibm-weather--thunderstorm_scattered_night:before {
  content: "\efe7";
}

.icon-ibm-weather--thunderstorm_severe:before {
  content: "\efe8";
}

.icon-ibm-weather--thunderstorm_strong:before {
  content: "\efe9";
}

.icon-ibm-weather--tides:before {
  content: "\efea";
}

.icon-ibm-weather--tornado:before {
  content: "\efeb";
}

.icon-ibm-weather--tornado_warning:before {
  content: "\efec";
}

.icon-ibm-weather--tropical_storm:before {
  content: "\efed";
}

.icon-ibm-weather--tropical_storm_model_tracks:before {
  content: "\efee";
}

.icon-ibm-weather--tropical_storm_tracks:before {
  content: "\efef";
}

.icon-ibm-weather--tropical_warning:before {
  content: "\eff0";
}

.icon-ibm-weather--tsunami:before {
  content: "\eff1";
}

.icon-ibm-weather--uv_index:before {
  content: "\eff2";
}

.icon-ibm-weather--uv_index_alt:before {
  content: "\eff3";
}

.icon-ibm-weather--uv_index_filled:before {
  content: "\eff4";
}

.icon-ibm-weather--wave_direction:before {
  content: "\eff5";
}

.icon-ibm-weather--wave_height:before {
  content: "\eff6";
}

.icon-ibm-weather--wave_period:before {
  content: "\eff7";
}

.icon-ibm-weather--weather_front_cold:before {
  content: "\eff8";
}

.icon-ibm-weather--weather_front_stationary:before {
  content: "\eff9";
}

.icon-ibm-weather--weather_front_warm:before {
  content: "\effa";
}

.icon-ibm-weather--weather_station:before {
  content: "\effb";
}

.icon-ibm-weather--wind_gusts:before {
  content: "\effc";
}

.icon-ibm-weather--wind_stream:before {
  content: "\effd";
}

.icon-ibm-weather--windy:before {
  content: "\effe";
}

.icon-ibm-weather--windy_dust:before {
  content: "\efff";
}

.icon-ibm-weather--windy_snow:before {
  content: "\f000";
}

.icon-ibm-weather--windy_strong:before {
  content: "\f001";
}

.icon-ibm-weather--winter_warning:before {
  content: "\f002";
}

.icon-ibm-weather--wintry_mix:before {
  content: "\f003";
}

.icon-ion-f-add:before {
  content: "\f004";
}

.icon-ion-f-add-circle:before {
  content: "\f005";
}

.icon-ion-f-airplane:before {
  content: "\f006";
}

.icon-ion-f-alarm:before {
  content: "\f007";
}

.icon-ion-f-albums:before {
  content: "\f008";
}

.icon-ion-f-alert:before {
  content: "\f009";
}

.icon-ion-f-alert-circle:before {
  content: "\f00a";
}

.icon-ion-f-american-football:before {
  content: "\f00b";
}

.icon-ion-f-analytics:before {
  content: "\f00c";
}

.icon-ion-f-aperture:before {
  content: "\f00d";
}

.icon-ion-f-apps:before {
  content: "\f00e";
}

.icon-ion-f-archive:before {
  content: "\f00f";
}

.icon-ion-f-arrow-back:before {
  content: "\f010";
}

.icon-ion-f-arrow-back-circle:before {
  content: "\f011";
}

.icon-ion-f-arrow-down:before {
  content: "\f012";
}

.icon-ion-f-arrow-down-circle:before {
  content: "\f013";
}

.icon-ion-f-arrow-forward:before {
  content: "\f014";
}

.icon-ion-f-arrow-forward-circle:before {
  content: "\f015";
}

.icon-ion-f-arrow-redo:before {
  content: "\f016";
}

.icon-ion-f-arrow-redo-circle:before {
  content: "\f017";
}

.icon-ion-f-arrow-undo:before {
  content: "\f018";
}

.icon-ion-f-arrow-undo-circle:before {
  content: "\f019";
}

.icon-ion-f-arrow-up:before {
  content: "\f01a";
}

.icon-ion-f-arrow-up-circle:before {
  content: "\f01b";
}

.icon-ion-f-at:before {
  content: "\f01c";
}

.icon-ion-f-at-circle:before {
  content: "\f01d";
}

.icon-ion-f-attach:before {
  content: "\f01e";
}

.icon-ion-f-backspace:before {
  content: "\f01f";
}

.icon-ion-f-bandage:before {
  content: "\f020";
}

.icon-ion-f-bar-chart:before {
  content: "\f021";
}

.icon-ion-f-barbell:before {
  content: "\f022";
}

.icon-ion-f-barcode:before {
  content: "\f023";
}

.icon-ion-f-baseball:before {
  content: "\f024";
}

.icon-ion-f-basket:before {
  content: "\f025";
}

.icon-ion-f-basketball:before {
  content: "\f026";
}

.icon-ion-f-battery-charging:before {
  content: "\f027";
}

.icon-ion-f-battery-dead:before {
  content: "\f028";
}

.icon-ion-f-battery-full:before {
  content: "\f029";
}

.icon-ion-f-battery-half:before {
  content: "\f02a";
}

.icon-ion-f-beaker:before {
  content: "\f02b";
}

.icon-ion-f-bed:before {
  content: "\f02c";
}

.icon-ion-f-beer:before {
  content: "\f02d";
}

.icon-ion-f-bicycle:before {
  content: "\f02e";
}

.icon-ion-f-bluetooth:before {
  content: "\f02f";
}

.icon-ion-f-boat:before {
  content: "\f030";
}

.icon-ion-f-body:before {
  content: "\f031";
}

.icon-ion-f-bonfire:before {
  content: "\f032";
}

.icon-ion-f-book:before {
  content: "\f033";
}

.icon-ion-f-bookmark:before {
  content: "\f034";
}

.icon-ion-f-bookmarks:before {
  content: "\f035";
}

.icon-ion-f-briefcase:before {
  content: "\f036";
}

.icon-ion-f-browsers:before {
  content: "\f037";
}

.icon-ion-f-brush:before {
  content: "\f038";
}

.icon-ion-f-bug:before {
  content: "\f039";
}

.icon-ion-f-build:before {
  content: "\f03a";
}

.icon-ion-f-bulb:before {
  content: "\f03b";
}

.icon-ion-f-bus:before {
  content: "\f03c";
}

.icon-ion-f-business:before {
  content: "\f03d";
}

.icon-ion-f-cafe:before {
  content: "\f03e";
}

.icon-ion-f-calculator:before {
  content: "\f03f";
}

.icon-ion-f-calendar:before {
  content: "\f040";
}

.icon-ion-f-call:before {
  content: "\f041";
}

.icon-ion-f-camera:before {
  content: "\f042";
}

.icon-ion-f-camera-reverse:before {
  content: "\f043";
}

.icon-ion-f-car:before {
  content: "\f044";
}

.icon-ion-f-car-sport:before {
  content: "\f045";
}

.icon-ion-f-card:before {
  content: "\f046";
}

.icon-ion-f-caret-back:before {
  content: "\f047";
}

.icon-ion-f-caret-back-circle:before {
  content: "\f048";
}

.icon-ion-f-caret-down:before {
  content: "\f049";
}

.icon-ion-f-caret-down-circle:before {
  content: "\f04a";
}

.icon-ion-f-caret-forward:before {
  content: "\f04b";
}

.icon-ion-f-caret-forward-circle:before {
  content: "\f04c";
}

.icon-ion-f-caret-up:before {
  content: "\f04d";
}

.icon-ion-f-caret-up-circle:before {
  content: "\f04e";
}

.icon-ion-f-cart:before {
  content: "\f04f";
}

.icon-ion-f-cash:before {
  content: "\f050";
}

.icon-ion-f-cellular:before {
  content: "\f051";
}

.icon-ion-f-chatbox:before {
  content: "\f052";
}

.icon-ion-f-chatbox-ellipses:before {
  content: "\f053";
}

.icon-ion-f-chatbubble:before {
  content: "\f054";
}

.icon-ion-f-chatbubble-ellipses:before {
  content: "\f055";
}

.icon-ion-f-chatbubbles:before {
  content: "\f056";
}

.icon-ion-f-checkbox:before {
  content: "\f057";
}

.icon-ion-f-checkmark:before {
  content: "\f058";
}

.icon-ion-f-checkmark-circle:before {
  content: "\f059";
}

.icon-ion-f-checkmark-done:before {
  content: "\f05a";
}

.icon-ion-f-checkmark-done-circle:before {
  content: "\f05b";
}

.icon-ion-f-chevron-back:before {
  content: "\f05c";
}

.icon-ion-f-chevron-back-circle:before {
  content: "\f05d";
}

.icon-ion-f-chevron-down:before {
  content: "\f05e";
}

.icon-ion-f-chevron-down-circle:before {
  content: "\f05f";
}

.icon-ion-f-chevron-forward:before {
  content: "\f060";
}

.icon-ion-f-chevron-forward-circle:before {
  content: "\f061";
}

.icon-ion-f-chevron-up:before {
  content: "\f062";
}

.icon-ion-f-chevron-up-circle:before {
  content: "\f063";
}

.icon-ion-f-clipboard:before {
  content: "\f064";
}

.icon-ion-f-close:before {
  content: "\f065";
}

.icon-ion-f-close-circle:before {
  content: "\f066";
}

.icon-ion-f-cloud:before {
  content: "\f067";
}

.icon-ion-f-cloud-circle:before {
  content: "\f068";
}

.icon-ion-f-cloud-done:before {
  content: "\f069";
}

.icon-ion-f-cloud-download:before {
  content: "\f06a";
}

.icon-ion-f-cloud-offline:before {
  content: "\f06b";
}

.icon-ion-f-cloud-upload:before {
  content: "\f06c";
}

.icon-ion-f-cloudy:before {
  content: "\f06d";
}

.icon-ion-f-cloudy-night:before {
  content: "\f06e";
}

.icon-ion-f-code:before {
  content: "\f06f";
}

.icon-ion-f-code-download:before {
  content: "\f070";
}

.icon-ion-f-code-slash:before {
  content: "\f071";
}

.icon-ion-f-code-working:before {
  content: "\f072";
}

.icon-ion-f-cog:before {
  content: "\f073";
}

.icon-ion-f-color-fill:before {
  content: "\f074";
}

.icon-ion-f-color-filter:before {
  content: "\f075";
}

.icon-ion-f-color-palette:before {
  content: "\f076";
}

.icon-ion-f-color-wand:before {
  content: "\f077";
}

.icon-ion-f-compass:before {
  content: "\f078";
}

.icon-ion-f-construct:before {
  content: "\f079";
}

.icon-ion-f-contract:before {
  content: "\f07a";
}

.icon-ion-f-contrast:before {
  content: "\f07b";
}

.icon-ion-f-copy:before {
  content: "\f07c";
}

.icon-ion-f-create:before {
  content: "\f07d";
}

.icon-ion-f-crop:before {
  content: "\f07e";
}

.icon-ion-f-cube:before {
  content: "\f07f";
}

.icon-ion-f-cut:before {
  content: "\f080";
}

.icon-ion-f-desktop:before {
  content: "\f081";
}

.icon-ion-f-disc:before {
  content: "\f082";
}

.icon-ion-f-document:before {
  content: "\f083";
}

.icon-ion-f-document-attach:before {
  content: "\f084";
}

.icon-ion-f-document-text:before {
  content: "\f085";
}

.icon-ion-f-documents:before {
  content: "\f086";
}

.icon-ion-f-download:before {
  content: "\f087";
}

.icon-ion-f-duplicate:before {
  content: "\f088";
}

.icon-ion-f-ear:before {
  content: "\f089";
}

.icon-ion-f-earth:before {
  content: "\f08a";
}

.icon-ion-f-easel:before {
  content: "\f08b";
}

.icon-ion-f-egg:before {
  content: "\f08c";
}

.icon-ion-f-ellipse:before {
  content: "\f08d";
}

.icon-ion-f-ellipsis-horizontal:before {
  content: "\f08e";
}

.icon-ion-f-ellipsis-horizontal-circle:before {
  content: "\f08f";
}

.icon-ion-f-ellipsis-vertical:before {
  content: "\f090";
}

.icon-ion-f-ellipsis-vertical-circle:before {
  content: "\f091";
}

.icon-ion-f-enter:before {
  content: "\f092";
}

.icon-ion-f-exit:before {
  content: "\f093";
}

.icon-ion-f-expand:before {
  content: "\f094";
}

.icon-ion-f-eye:before {
  content: "\f095";
}

.icon-ion-f-eye-off:before {
  content: "\f096";
}

.icon-ion-f-eyedrop:before {
  content: "\f097";
}

.icon-ion-f-fast-food:before {
  content: "\f098";
}

.icon-ion-f-female:before {
  content: "\f099";
}

.icon-ion-f-file-tray:before {
  content: "\f09a";
}

.icon-ion-f-file-tray-full:before {
  content: "\f09b";
}

.icon-ion-f-file-tray-stacked:before {
  content: "\f09c";
}

.icon-ion-f-film:before {
  content: "\f09d";
}

.icon-ion-f-filter:before {
  content: "\f09e";
}

.icon-ion-f-finger-print:before {
  content: "\f09f";
}

.icon-ion-f-fitness:before {
  content: "\f0a0";
}

.icon-ion-f-flag:before {
  content: "\f0a1";
}

.icon-ion-f-flame:before {
  content: "\f0a2";
}

.icon-ion-f-flash:before {
  content: "\f0a3";
}

.icon-ion-f-flash-off:before {
  content: "\f0a4";
}

.icon-ion-f-flashlight:before {
  content: "\f0a5";
}

.icon-ion-f-flask:before {
  content: "\f0a6";
}

.icon-ion-f-flower:before {
  content: "\f0a7";
}

.icon-ion-f-folder:before {
  content: "\f0a8";
}

.icon-ion-f-folder-open:before {
  content: "\f0a9";
}

.icon-ion-f-football:before {
  content: "\f0aa";
}

.icon-ion-f-funnel:before {
  content: "\f0ab";
}

.icon-ion-f-game-controller:before {
  content: "\f0ac";
}

.icon-ion-f-gift:before {
  content: "\f0ad";
}

.icon-ion-f-git-branch:before {
  content: "\f0ae";
}

.icon-ion-f-git-commit:before {
  content: "\f0af";
}

.icon-ion-f-git-compare:before {
  content: "\f0b0";
}

.icon-ion-f-git-merge:before {
  content: "\f0b1";
}

.icon-ion-f-git-network:before {
  content: "\f0b2";
}

.icon-ion-f-git-pull-request:before {
  content: "\f0b3";
}

.icon-ion-f-glasses:before {
  content: "\f0b4";
}

.icon-ion-f-globe:before {
  content: "\f0b5";
}

.icon-ion-f-golf:before {
  content: "\f0b6";
}

.icon-ion-f-grid:before {
  content: "\f0b7";
}

.icon-ion-f-hammer:before {
  content: "\f0b8";
}

.icon-ion-f-hand-left:before {
  content: "\f0b9";
}

.icon-ion-f-hand-right:before {
  content: "\f0ba";
}

.icon-ion-f-happy:before {
  content: "\f0bb";
}

.icon-ion-f-hardware-chip:before {
  content: "\f0bc";
}

.icon-ion-f-headset:before {
  content: "\f0bd";
}

.icon-ion-f-heart:before {
  content: "\f0be";
}

.icon-ion-f-heart-circle:before {
  content: "\f0bf";
}

.icon-ion-f-heart-dislike:before {
  content: "\f0c0";
}

.icon-ion-f-heart-dislike-circle:before {
  content: "\f0c1";
}

.icon-ion-f-heart-half:before {
  content: "\f0c2";
}

.icon-ion-f-help:before {
  content: "\f0c3";
}

.icon-ion-f-help-buoy:before {
  content: "\f0c4";
}

.icon-ion-f-help-circle:before {
  content: "\f0c5";
}

.icon-ion-f-home:before {
  content: "\f0c6";
}

.icon-ion-f-hourglass:before {
  content: "\f0c7";
}

.icon-ion-f-ice-cream:before {
  content: "\f0c8";
}

.icon-ion-f-image:before {
  content: "\f0c9";
}

.icon-ion-f-images:before {
  content: "\f0ca";
}

.icon-ion-f-infinite:before {
  content: "\f0cb";
}

.icon-ion-f-information:before {
  content: "\f0cc";
}

.icon-ion-f-information-circle:before {
  content: "\f0cd";
}

.icon-ion-f-journal:before {
  content: "\f0ce";
}

.icon-ion-f-key:before {
  content: "\f0cf";
}

.icon-ion-f-keypad:before {
  content: "\f0d0";
}

.icon-ion-f-language:before {
  content: "\f0d1";
}

.icon-ion-f-laptop:before {
  content: "\f0d2";
}

.icon-ion-f-layers:before {
  content: "\f0d3";
}

.icon-ion-f-leaf:before {
  content: "\f0d4";
}

.icon-ion-f-library:before {
  content: "\f0d5";
}

.icon-ion-f-link:before {
  content: "\f0d6";
}

.icon-ion-f-list:before {
  content: "\f0d7";
}

.icon-ion-f-list-circle:before {
  content: "\f0d8";
}

.icon-ion-f-locate:before {
  content: "\f0d9";
}

.icon-ion-f-location:before {
  content: "\f0da";
}

.icon-ion-f-lock-closed:before {
  content: "\f0db";
}

.icon-ion-f-lock-open:before {
  content: "\f0dc";
}

.icon-ion-f-log-in:before {
  content: "\f0dd";
}

.icon-ion-f-log-out:before {
  content: "\f0de";
}

.icon-ion-f-magnet:before {
  content: "\f0df";
}

.icon-ion-f-mail:before {
  content: "\f0e0";
}

.icon-ion-f-mail-open:before {
  content: "\f0e1";
}

.icon-ion-f-mail-unread:before {
  content: "\f0e2";
}

.icon-ion-f-male:before {
  content: "\f0e3";
}

.icon-ion-f-male-female:before {
  content: "\f0e4";
}

.icon-ion-f-man:before {
  content: "\f0e5";
}

.icon-ion-f-map:before {
  content: "\f0e6";
}

.icon-ion-f-medal:before {
  content: "\f0e7";
}

.icon-ion-f-medical:before {
  content: "\f0e8";
}

.icon-ion-f-medkit:before {
  content: "\f0e9";
}

.icon-ion-f-megaphone:before {
  content: "\f0ea";
}

.icon-ion-f-menu:before {
  content: "\f0eb";
}

.icon-ion-f-mic:before {
  content: "\f0ec";
}

.icon-ion-f-mic-circle:before {
  content: "\f0ed";
}

.icon-ion-f-mic-off:before {
  content: "\f0ee";
}

.icon-ion-f-mic-off-circle:before {
  content: "\f0ef";
}

.icon-ion-f-moon:before {
  content: "\f0f0";
}

.icon-ion-f-move:before {
  content: "\f0f1";
}

.icon-ion-f-musical-note:before {
  content: "\f0f2";
}

.icon-ion-f-musical-notes:before {
  content: "\f0f3";
}

.icon-ion-f-navigate:before {
  content: "\f0f4";
}

.icon-ion-f-navigate-circle:before {
  content: "\f0f5";
}

.icon-ion-f-newspaper:before {
  content: "\f0f6";
}

.icon-ion-f-notifications:before {
  content: "\f0f7";
}

.icon-ion-f-notifications-circle:before {
  content: "\f0f8";
}

.icon-ion-f-notifications-off:before {
  content: "\f0f9";
}

.icon-ion-f-notifications-off-circle:before {
  content: "\f0fa";
}

.icon-ion-f-nuclear:before {
  content: "\f0fb";
}

.icon-ion-f-nutrition:before {
  content: "\f0fc";
}

.icon-ion-f-open:before {
  content: "\f0fd";
}

.icon-ion-f-options:before {
  content: "\f0fe";
}

.icon-ion-f-paper-plane:before {
  content: "\f0ff";
}

.icon-ion-f-partly-sunny:before {
  content: "\f100";
}

.icon-ion-f-pause:before {
  content: "\f101";
}

.icon-ion-f-pause-circle:before {
  content: "\f102";
}

.icon-ion-f-paw:before {
  content: "\f103";
}

.icon-ion-f-pencil:before {
  content: "\f104";
}

.icon-ion-f-people:before {
  content: "\f105";
}

.icon-ion-f-people-circle:before {
  content: "\f106";
}

.icon-ion-f-person:before {
  content: "\f107";
}

.icon-ion-f-person-add:before {
  content: "\f108";
}

.icon-ion-f-person-circle:before {
  content: "\f109";
}

.icon-ion-f-person-remove:before {
  content: "\f10a";
}

.icon-ion-f-phone-landscape:before {
  content: "\f10b";
}

.icon-ion-f-phone-portrait:before {
  content: "\f10c";
}

.icon-ion-f-pie-chart:before {
  content: "\f10d";
}

.icon-ion-f-pin:before {
  content: "\f10e";
}

.icon-ion-f-pint:before {
  content: "\f10f";
}

.icon-ion-f-pizza:before {
  content: "\f110";
}

.icon-ion-f-planet:before {
  content: "\f111";
}

.icon-ion-f-play:before {
  content: "\f112";
}

.icon-ion-f-play-back:before {
  content: "\f113";
}

.icon-ion-f-play-back-circle:before {
  content: "\f114";
}

.icon-ion-f-play-circle:before {
  content: "\f115";
}

.icon-ion-f-play-forward:before {
  content: "\f116";
}

.icon-ion-f-play-forward-circle:before {
  content: "\f117";
}

.icon-ion-f-play-skip-back:before {
  content: "\f118";
}

.icon-ion-f-play-skip-back-circle:before {
  content: "\f119";
}

.icon-ion-f-play-skip-forward:before {
  content: "\f11a";
}

.icon-ion-f-play-skip-forward-circle:before {
  content: "\f11b";
}

.icon-ion-f-podium:before {
  content: "\f11c";
}

.icon-ion-f-power:before {
  content: "\f11d";
}

.icon-ion-f-pricetag:before {
  content: "\f11e";
}

.icon-ion-f-pricetags:before {
  content: "\f11f";
}

.icon-ion-f-print:before {
  content: "\f120";
}

.icon-ion-f-pulse:before {
  content: "\f121";
}

.icon-ion-f-push-sharp:before {
  content: "\f122";
}

.icon-ion-f-qr-code:before {
  content: "\f123";
}

.icon-ion-f-radio:before {
  content: "\f124";
}

.icon-ion-f-radio-button-off:before {
  content: "\f125";
}

.icon-ion-f-radio-button-on:before {
  content: "\f126";
}

.icon-ion-f-rainy:before {
  content: "\f127";
}

.icon-ion-f-reader:before {
  content: "\f128";
}

.icon-ion-f-receipt:before {
  content: "\f129";
}

.icon-ion-f-recording:before {
  content: "\f12a";
}

.icon-ion-f-refresh:before {
  content: "\f12b";
}

.icon-ion-f-refresh-circle:before {
  content: "\f12c";
}

.icon-ion-f-reload:before {
  content: "\f12d";
}

.icon-ion-f-reload-circle:before {
  content: "\f12e";
}

.icon-ion-f-remove:before {
  content: "\f12f";
}

.icon-ion-f-remove-circle:before {
  content: "\f130";
}

.icon-ion-f-reorder-four:before {
  content: "\f131";
}

.icon-ion-f-reorder-three:before {
  content: "\f132";
}

.icon-ion-f-reorder-two:before {
  content: "\f133";
}

.icon-ion-f-repeat:before {
  content: "\f134";
}

.icon-ion-f-resize:before {
  content: "\f135";
}

.icon-ion-f-restaurant:before {
  content: "\f136";
}

.icon-ion-f-return-down-back:before {
  content: "\f137";
}

.icon-ion-f-return-down-forward:before {
  content: "\f138";
}

.icon-ion-f-return-up-back:before {
  content: "\f139";
}

.icon-ion-f-return-up-forward:before {
  content: "\f13a";
}

.icon-ion-f-ribbon:before {
  content: "\f13b";
}

.icon-ion-f-rocket:before {
  content: "\f13c";
}

.icon-ion-f-rose:before {
  content: "\f13d";
}

.icon-ion-f-sad:before {
  content: "\f13e";
}

.icon-ion-f-save:before {
  content: "\f13f";
}

.icon-ion-f-scan:before {
  content: "\f140";
}

.icon-ion-f-scan-circle:before {
  content: "\f141";
}

.icon-ion-f-school:before {
  content: "\f142";
}

.icon-ion-f-search:before {
  content: "\f143";
}

.icon-ion-f-search-circle:before {
  content: "\f144";
}

.icon-ion-f-send:before {
  content: "\f145";
}

.icon-ion-f-server:before {
  content: "\f146";
}

.icon-ion-f-settings:before {
  content: "\f147";
}

.icon-ion-f-shapes:before {
  content: "\f148";
}

.icon-ion-f-share:before {
  content: "\f149";
}

.icon-ion-f-share-social:before {
  content: "\f14a";
}

.icon-ion-f-shield:before {
  content: "\f14b";
}

.icon-ion-f-shield-checkmark:before {
  content: "\f14c";
}

.icon-ion-f-shirt:before {
  content: "\f14d";
}

.icon-ion-f-shuffle:before {
  content: "\f14e";
}

.icon-ion-f-skull:before {
  content: "\f14f";
}

.icon-ion-f-snow:before {
  content: "\f150";
}

.icon-ion-f-speedometer:before {
  content: "\f151";
}

.icon-ion-f-square:before {
  content: "\f152";
}

.icon-ion-f-star:before {
  content: "\f153";
}

.icon-ion-f-star-half:before {
  content: "\f154";
}

.icon-ion-f-stats-chart:before {
  content: "\f155";
}

.icon-ion-f-stop:before {
  content: "\f156";
}

.icon-ion-f-stop-circle:before {
  content: "\f157";
}

.icon-ion-f-stopwatch:before {
  content: "\f158";
}

.icon-ion-f-subway:before {
  content: "\f159";
}

.icon-ion-f-sunny:before {
  content: "\f15a";
}

.icon-ion-f-swap-horizontal:before {
  content: "\f15b";
}

.icon-ion-f-swap-vertical:before {
  content: "\f15c";
}

.icon-ion-f-sync:before {
  content: "\f15d";
}

.icon-ion-f-sync-circle:before {
  content: "\f15e";
}

.icon-ion-f-tablet-landscape:before {
  content: "\f15f";
}

.icon-ion-f-tablet-portrait:before {
  content: "\f160";
}

.icon-ion-f-tennisball:before {
  content: "\f161";
}

.icon-ion-f-terminal:before {
  content: "\f162";
}

.icon-ion-f-text:before {
  content: "\f163";
}

.icon-ion-f-thermometer:before {
  content: "\f164";
}

.icon-ion-f-thumbs-down:before {
  content: "\f165";
}

.icon-ion-f-thumbs-up:before {
  content: "\f166";
}

.icon-ion-f-thunderstorm:before {
  content: "\f167";
}

.icon-ion-f-time:before {
  content: "\f168";
}

.icon-ion-f-timer:before {
  content: "\f169";
}

.icon-ion-f-today:before {
  content: "\f16a";
}

.icon-ion-f-toggle:before {
  content: "\f16b";
}

.icon-ion-f-trail-sign:before {
  content: "\f16c";
}

.icon-ion-f-train:before {
  content: "\f16d";
}

.icon-ion-f-transgender:before {
  content: "\f16e";
}

.icon-ion-f-trash:before {
  content: "\f16f";
}

.icon-ion-f-trash-bin:before {
  content: "\f170";
}

.icon-ion-f-trending-down:before {
  content: "\f171";
}

.icon-ion-f-trending-up:before {
  content: "\f172";
}

.icon-ion-f-triangle:before {
  content: "\f173";
}

.icon-ion-f-trophy:before {
  content: "\f174";
}

.icon-ion-f-tv:before {
  content: "\f175";
}

.icon-ion-f-umbrella:before {
  content: "\f176";
}

.icon-ion-f-videocam:before {
  content: "\f177";
}

.icon-ion-f-volume-high:before {
  content: "\f178";
}

.icon-ion-f-volume-low:before {
  content: "\f179";
}

.icon-ion-f-volume-medium:before {
  content: "\f17a";
}

.icon-ion-f-volume-mute:before {
  content: "\f17b";
}

.icon-ion-f-volume-off:before {
  content: "\f17c";
}

.icon-ion-f-walk:before {
  content: "\f17d";
}

.icon-ion-f-wallet:before {
  content: "\f17e";
}

.icon-ion-f-warning:before {
  content: "\f17f";
}

.icon-ion-f-watch:before {
  content: "\f180";
}

.icon-ion-f-water:before {
  content: "\f181";
}

.icon-ion-f-wifi:before {
  content: "\f182";
}

.icon-ion-f-wine:before {
  content: "\f183";
}

.icon-ion-f-woman:before {
  content: "\f184";
}

.icon-ion-l-logo-amazon:before {
  content: "\f185";
}

.icon-ion-l-logo-amplify:before {
  content: "\f186";
}

.icon-ion-l-logo-android:before {
  content: "\f187";
}

.icon-ion-l-logo-angular:before {
  content: "\f188";
}

.icon-ion-l-logo-apple:before {
  content: "\f189";
}

.icon-ion-l-logo-apple-appstore:before {
  content: "\f18a";
}

.icon-ion-l-logo-bitbucket:before {
  content: "\f18b";
}

.icon-ion-l-logo-bitcoin:before {
  content: "\f18c";
}

.icon-ion-l-logo-buffer:before {
  content: "\f18d";
}

.icon-ion-l-logo-capacitor:before {
  content: "\f18e";
}

.icon-ion-l-logo-chrome:before {
  content: "\f18f";
}

.icon-ion-l-logo-closed-captioning:before {
  content: "\f190";
}

.icon-ion-l-logo-codepen:before {
  content: "\f191";
}

.icon-ion-l-logo-css3:before {
  content: "\f192";
}

.icon-ion-l-logo-designernews:before {
  content: "\f193";
}

.icon-ion-l-logo-dribbble:before {
  content: "\f194";
}

.icon-ion-l-logo-dropbox:before {
  content: "\f195";
}

.icon-ion-l-logo-edge:before {
  content: "\f196";
}

.icon-ion-l-logo-electron:before {
  content: "\f197";
}

.icon-ion-l-logo-euro:before {
  content: "\f198";
}

.icon-ion-l-logo-facebook:before {
  content: "\f199";
}

.icon-ion-l-logo-firebase:before {
  content: "\f19a";
}

.icon-ion-l-logo-firefox:before {
  content: "\f19b";
}

.icon-ion-l-logo-flickr:before {
  content: "\f19c";
}

.icon-ion-l-logo-foursquare:before {
  content: "\f19d";
}

.icon-ion-l-logo-github:before {
  content: "\f19e";
}

.icon-ion-l-logo-google:before {
  content: "\f19f";
}

.icon-ion-l-logo-google-playstore:before {
  content: "\f1a0";
}

.icon-ion-l-logo-hackernews:before {
  content: "\f1a1";
}

.icon-ion-l-logo-html5:before {
  content: "\f1a2";
}

.icon-ion-l-logo-instagram:before {
  content: "\f1a3";
}

.icon-ion-l-logo-ionic:before {
  content: "\f1a4";
}

.icon-ion-l-logo-ionitron:before {
  content: "\f1a5";
}

.icon-ion-l-logo-javascript:before {
  content: "\f1a6";
}

.icon-ion-l-logo-laravel:before {
  content: "\f1a7";
}

.icon-ion-l-logo-linkedin:before {
  content: "\f1a8";
}

.icon-ion-l-logo-markdown:before {
  content: "\f1a9";
}

.icon-ion-l-logo-no-smoking:before {
  content: "\f1aa";
}

.icon-ion-l-logo-nodejs:before {
  content: "\f1ab";
}

.icon-ion-l-logo-npm:before {
  content: "\f1ac";
}

.icon-ion-l-logo-octocat:before {
  content: "\f1ad";
}

.icon-ion-l-logo-pinterest:before {
  content: "\f1ae";
}

.icon-ion-l-logo-playstation:before {
  content: "\f1af";
}

.icon-ion-l-logo-pwa:before {
  content: "\f1b0";
}

.icon-ion-l-logo-python:before {
  content: "\f1b1";
}

.icon-ion-l-logo-react:before {
  content: "\f1b2";
}

.icon-ion-l-logo-reddit:before {
  content: "\f1b3";
}

.icon-ion-l-logo-rss:before {
  content: "\f1b4";
}

.icon-ion-l-logo-sass:before {
  content: "\f1b5";
}

.icon-ion-l-logo-skype:before {
  content: "\f1b6";
}

.icon-ion-l-logo-slack:before {
  content: "\f1b7";
}

.icon-ion-l-logo-snapchat:before {
  content: "\f1b8";
}

.icon-ion-l-logo-stackoverflow:before {
  content: "\f1b9";
}

.icon-ion-l-logo-steam:before {
  content: "\f1ba";
}

.icon-ion-l-logo-stencil:before {
  content: "\f1bb";
}

.icon-ion-l-logo-tumblr:before {
  content: "\f1bc";
}

.icon-ion-l-logo-tux:before {
  content: "\f1bd";
}

.icon-ion-l-logo-twitch:before {
  content: "\f1be";
}

.icon-ion-l-logo-twitter:before {
  content: "\f1bf";
}

.icon-ion-l-logo-usd:before {
  content: "\f1c0";
}

.icon-ion-l-logo-vimeo:before {
  content: "\f1c1";
}

.icon-ion-l-logo-vk:before {
  content: "\f1c2";
}

.icon-ion-l-logo-vue:before {
  content: "\f1c3";
}

.icon-ion-l-logo-web-component:before {
  content: "\f1c4";
}

.icon-ion-l-logo-whatsapp:before {
  content: "\f1c5";
}

.icon-ion-l-logo-windows:before {
  content: "\f1c6";
}

.icon-ion-l-logo-wordpress:before {
  content: "\f1c7";
}

.icon-ion-l-logo-xbox:before {
  content: "\f1c8";
}

.icon-ion-l-logo-xing:before {
  content: "\f1c9";
}

.icon-ion-l-logo-yahoo:before {
  content: "\f1ca";
}

.icon-ion-l-logo-yen:before {
  content: "\f1cb";
}

.icon-ion-l-logo-youtube:before {
  content: "\f1cc";
}

.icon-ion-o-add:before {
  content: "\f1cd";
}

.icon-ion-o-add-circle:before {
  content: "\f1ce";
}

.icon-ion-o-airplane:before {
  content: "\f1cf";
}

.icon-ion-o-alarm:before {
  content: "\f1d0";
}

.icon-ion-o-albums:before {
  content: "\f1d1";
}

.icon-ion-o-alert:before {
  content: "\f1d2";
}

.icon-ion-o-alert-circle:before {
  content: "\f1d3";
}

.icon-ion-o-american-football:before {
  content: "\f1d4";
}

.icon-ion-o-analytics:before {
  content: "\f1d5";
}

.icon-ion-o-aperture:before {
  content: "\f1d6";
}

.icon-ion-o-apps:before {
  content: "\f1d7";
}

.icon-ion-o-archive:before {
  content: "\f1d8";
}

.icon-ion-o-arrow-back:before {
  content: "\f1d9";
}

.icon-ion-o-arrow-back-circle:before {
  content: "\f1da";
}

.icon-ion-o-arrow-down:before {
  content: "\f1db";
}

.icon-ion-o-arrow-down-circle:before {
  content: "\f1dc";
}

.icon-ion-o-arrow-forward:before {
  content: "\f1dd";
}

.icon-ion-o-arrow-forward-circle:before {
  content: "\f1de";
}

.icon-ion-o-arrow-redo:before {
  content: "\f1df";
}

.icon-ion-o-arrow-redo-circle:before {
  content: "\f1e0";
}

.icon-ion-o-arrow-undo:before {
  content: "\f1e1";
}

.icon-ion-o-arrow-undo-circle:before {
  content: "\f1e2";
}

.icon-ion-o-arrow-up:before {
  content: "\f1e3";
}

.icon-ion-o-arrow-up-circle:before {
  content: "\f1e4";
}

.icon-ion-o-at:before {
  content: "\f1e5";
}

.icon-ion-o-at-circle:before {
  content: "\f1e6";
}

.icon-ion-o-attach:before {
  content: "\f1e7";
}

.icon-ion-o-backspace:before {
  content: "\f1e8";
}

.icon-ion-o-bandage:before {
  content: "\f1e9";
}

.icon-ion-o-bar-chart:before {
  content: "\f1ea";
}

.icon-ion-o-barbell:before {
  content: "\f1eb";
}

.icon-ion-o-barcode:before {
  content: "\f1ec";
}

.icon-ion-o-baseball:before {
  content: "\f1ed";
}

.icon-ion-o-basket:before {
  content: "\f1ee";
}

.icon-ion-o-basketball:before {
  content: "\f1ef";
}

.icon-ion-o-battery-charging:before {
  content: "\f1f0";
}

.icon-ion-o-battery-dead:before {
  content: "\f1f1";
}

.icon-ion-o-battery-full:before {
  content: "\f1f2";
}

.icon-ion-o-battery-half:before {
  content: "\f1f3";
}

.icon-ion-o-beaker:before {
  content: "\f1f4";
}

.icon-ion-o-bed:before {
  content: "\f1f5";
}

.icon-ion-o-beer:before {
  content: "\f1f6";
}

.icon-ion-o-bicycle:before {
  content: "\f1f7";
}

.icon-ion-o-bluetooth:before {
  content: "\f1f8";
}

.icon-ion-o-boat:before {
  content: "\f1f9";
}

.icon-ion-o-body:before {
  content: "\f1fa";
}

.icon-ion-o-bonfire:before {
  content: "\f1fb";
}

.icon-ion-o-book:before {
  content: "\f1fc";
}

.icon-ion-o-bookmark:before {
  content: "\f1fd";
}

.icon-ion-o-bookmarks:before {
  content: "\f1fe";
}

.icon-ion-o-briefcase:before {
  content: "\f1ff";
}

.icon-ion-o-browsers:before {
  content: "\f200";
}

.icon-ion-o-brush:before {
  content: "\f201";
}

.icon-ion-o-bug:before {
  content: "\f202";
}

.icon-ion-o-build:before {
  content: "\f203";
}

.icon-ion-o-bulb:before {
  content: "\f204";
}

.icon-ion-o-bus:before {
  content: "\f205";
}

.icon-ion-o-business:before {
  content: "\f206";
}

.icon-ion-o-cafe:before {
  content: "\f207";
}

.icon-ion-o-calculator:before {
  content: "\f208";
}

.icon-ion-o-calendar:before {
  content: "\f209";
}

.icon-ion-o-call:before {
  content: "\f20a";
}

.icon-ion-o-camera:before {
  content: "\f20b";
}

.icon-ion-o-camera-reverse:before {
  content: "\f20c";
}

.icon-ion-o-car:before {
  content: "\f20d";
}

.icon-ion-o-car-sport:before {
  content: "\f20e";
}

.icon-ion-o-card:before {
  content: "\f20f";
}

.icon-ion-o-caret-back:before {
  content: "\f210";
}

.icon-ion-o-caret-back-circle:before {
  content: "\f211";
}

.icon-ion-o-caret-down:before {
  content: "\f212";
}

.icon-ion-o-caret-down-circle:before {
  content: "\f213";
}

.icon-ion-o-caret-forward:before {
  content: "\f214";
}

.icon-ion-o-caret-forward-circle:before {
  content: "\f215";
}

.icon-ion-o-caret-up:before {
  content: "\f216";
}

.icon-ion-o-caret-up-circle:before {
  content: "\f217";
}

.icon-ion-o-cart:before {
  content: "\f218";
}

.icon-ion-o-cash:before {
  content: "\f219";
}

.icon-ion-o-cellular:before {
  content: "\f21a";
}

.icon-ion-o-chatbox:before {
  content: "\f21b";
}

.icon-ion-o-chatbox-ellipses:before {
  content: "\f21c";
}

.icon-ion-o-chatbubble:before {
  content: "\f21d";
}

.icon-ion-o-chatbubble-ellipses:before {
  content: "\f21e";
}

.icon-ion-o-chatbubbles:before {
  content: "\f21f";
}

.icon-ion-o-checkbox:before {
  content: "\f220";
}

.icon-ion-o-checkmark:before {
  content: "\f221";
}

.icon-ion-o-checkmark-circle:before {
  content: "\f222";
}

.icon-ion-o-checkmark-done:before {
  content: "\f223";
}

.icon-ion-o-checkmark-done-circle:before {
  content: "\f224";
}

.icon-ion-o-chevron-back:before {
  content: "\f225";
}

.icon-ion-o-chevron-back-circle:before {
  content: "\f226";
}

.icon-ion-o-chevron-down:before {
  content: "\f227";
}

.icon-ion-o-chevron-down-circle:before {
  content: "\f228";
}

.icon-ion-o-chevron-forward:before {
  content: "\f229";
}

.icon-ion-o-chevron-forward-circle:before {
  content: "\f22a";
}

.icon-ion-o-chevron-up:before {
  content: "\f22b";
}

.icon-ion-o-chevron-up-circle:before {
  content: "\f22c";
}

.icon-ion-o-clipboard:before {
  content: "\f22d";
}

.icon-ion-o-close:before {
  content: "\f22e";
}

.icon-ion-o-close-circle:before {
  content: "\f22f";
}

.icon-ion-o-cloud:before {
  content: "\f230";
}

.icon-ion-o-cloud-circle:before {
  content: "\f231";
}

.icon-ion-o-cloud-done:before {
  content: "\f232";
}

.icon-ion-o-cloud-download:before {
  content: "\f233";
}

.icon-ion-o-cloud-offline:before {
  content: "\f234";
}

.icon-ion-o-cloud-upload:before {
  content: "\f235";
}

.icon-ion-o-cloudy:before {
  content: "\f236";
}

.icon-ion-o-cloudy-night:before {
  content: "\f237";
}

.icon-ion-o-code:before {
  content: "\f238";
}

.icon-ion-o-code-download:before {
  content: "\f239";
}

.icon-ion-o-code-slash:before {
  content: "\f23a";
}

.icon-ion-o-code-working:before {
  content: "\f23b";
}

.icon-ion-o-cog:before {
  content: "\f23c";
}

.icon-ion-o-color-fill:before {
  content: "\f23d";
}

.icon-ion-o-color-filter:before {
  content: "\f23e";
}

.icon-ion-o-color-palette:before {
  content: "\f23f";
}

.icon-ion-o-color-wand:before {
  content: "\f240";
}

.icon-ion-o-compass:before {
  content: "\f241";
}

.icon-ion-o-construct:before {
  content: "\f242";
}

.icon-ion-o-contract:before {
  content: "\f243";
}

.icon-ion-o-contrast:before {
  content: "\f244";
}

.icon-ion-o-copy:before {
  content: "\f245";
}

.icon-ion-o-create:before {
  content: "\f246";
}

.icon-ion-o-crop:before {
  content: "\f247";
}

.icon-ion-o-cube:before {
  content: "\f248";
}

.icon-ion-o-cut:before {
  content: "\f249";
}

.icon-ion-o-desktop:before {
  content: "\f24a";
}

.icon-ion-o-disc:before {
  content: "\f24b";
}

.icon-ion-o-document:before {
  content: "\f24c";
}

.icon-ion-o-document-attach:before {
  content: "\f24d";
}

.icon-ion-o-document-text:before {
  content: "\f24e";
}

.icon-ion-o-documents:before {
  content: "\f24f";
}

.icon-ion-o-download:before {
  content: "\f250";
}

.icon-ion-o-duplicate:before {
  content: "\f251";
}

.icon-ion-o-ear:before {
  content: "\f252";
}

.icon-ion-o-earth:before {
  content: "\f253";
}

.icon-ion-o-easel:before {
  content: "\f254";
}

.icon-ion-o-egg:before {
  content: "\f255";
}

.icon-ion-o-ellipse:before {
  content: "\f256";
}

.icon-ion-o-ellipsis-horizontal:before {
  content: "\f257";
}

.icon-ion-o-ellipsis-horizontal-circle:before {
  content: "\f258";
}

.icon-ion-o-ellipsis-vertical:before {
  content: "\f259";
}

.icon-ion-o-ellipsis-vertical-circle:before {
  content: "\f25a";
}

.icon-ion-o-enter:before {
  content: "\f25b";
}

.icon-ion-o-exit:before {
  content: "\f25c";
}

.icon-ion-o-expand:before {
  content: "\f25d";
}

.icon-ion-o-eye:before {
  content: "\f25e";
}

.icon-ion-o-eye-off:before {
  content: "\f25f";
}

.icon-ion-o-eyedrop:before {
  content: "\f260";
}

.icon-ion-o-fast-food:before {
  content: "\f261";
}

.icon-ion-o-female:before {
  content: "\f262";
}

.icon-ion-o-file-tray:before {
  content: "\f263";
}

.icon-ion-o-file-tray-full:before {
  content: "\f264";
}

.icon-ion-o-file-tray-stacked:before {
  content: "\f265";
}

.icon-ion-o-film:before {
  content: "\f266";
}

.icon-ion-o-filter:before {
  content: "\f267";
}

.icon-ion-o-finger-print:before {
  content: "\f268";
}

.icon-ion-o-fitness:before {
  content: "\f269";
}

.icon-ion-o-flag:before {
  content: "\f26a";
}

.icon-ion-o-flame:before {
  content: "\f26b";
}

.icon-ion-o-flash:before {
  content: "\f26c";
}

.icon-ion-o-flash-off:before {
  content: "\f26d";
}

.icon-ion-o-flashlight:before {
  content: "\f26e";
}

.icon-ion-o-flask:before {
  content: "\f26f";
}

.icon-ion-o-flower:before {
  content: "\f270";
}

.icon-ion-o-folder:before {
  content: "\f271";
}

.icon-ion-o-folder-open:before {
  content: "\f272";
}

.icon-ion-o-football:before {
  content: "\f273";
}

.icon-ion-o-funnel:before {
  content: "\f274";
}

.icon-ion-o-game-controller:before {
  content: "\f275";
}

.icon-ion-o-gift:before {
  content: "\f276";
}

.icon-ion-o-git-branch:before {
  content: "\f277";
}

.icon-ion-o-git-commit:before {
  content: "\f278";
}

.icon-ion-o-git-compare:before {
  content: "\f279";
}

.icon-ion-o-git-merge:before {
  content: "\f27a";
}

.icon-ion-o-git-network:before {
  content: "\f27b";
}

.icon-ion-o-git-pull-request:before {
  content: "\f27c";
}

.icon-ion-o-glasses:before {
  content: "\f27d";
}

.icon-ion-o-globe:before {
  content: "\f27e";
}

.icon-ion-o-golf:before {
  content: "\f27f";
}

.icon-ion-o-grid:before {
  content: "\f280";
}

.icon-ion-o-hammer:before {
  content: "\f281";
}

.icon-ion-o-hand-left:before {
  content: "\f282";
}

.icon-ion-o-hand-right:before {
  content: "\f283";
}

.icon-ion-o-happy:before {
  content: "\f284";
}

.icon-ion-o-hardware-chip:before {
  content: "\f285";
}

.icon-ion-o-headset:before {
  content: "\f286";
}

.icon-ion-o-heart:before {
  content: "\f287";
}

.icon-ion-o-heart-circle:before {
  content: "\f288";
}

.icon-ion-o-heart-dislike:before {
  content: "\f289";
}

.icon-ion-o-heart-dislike-circle:before {
  content: "\f28a";
}

.icon-ion-o-heart-half:before {
  content: "\f28b";
}

.icon-ion-o-help:before {
  content: "\f28c";
}

.icon-ion-o-help-buoy:before {
  content: "\f28d";
}

.icon-ion-o-help-circle:before {
  content: "\f28e";
}

.icon-ion-o-home:before {
  content: "\f28f";
}

.icon-ion-o-hourglass:before {
  content: "\f290";
}

.icon-ion-o-ice-cream:before {
  content: "\f291";
}

.icon-ion-o-image:before {
  content: "\f292";
}

.icon-ion-o-images:before {
  content: "\f293";
}

.icon-ion-o-infinite:before {
  content: "\f294";
}

.icon-ion-o-information:before {
  content: "\f295";
}

.icon-ion-o-information-circle:before {
  content: "\f296";
}

.icon-ion-o-journal:before {
  content: "\f297";
}

.icon-ion-o-key:before {
  content: "\f298";
}

.icon-ion-o-keypad:before {
  content: "\f299";
}

.icon-ion-o-language:before {
  content: "\f29a";
}

.icon-ion-o-laptop:before {
  content: "\f29b";
}

.icon-ion-o-layers:before {
  content: "\f29c";
}

.icon-ion-o-leaf:before {
  content: "\f29d";
}

.icon-ion-o-library:before {
  content: "\f29e";
}

.icon-ion-o-link:before {
  content: "\f29f";
}

.icon-ion-o-list:before {
  content: "\f2a0";
}

.icon-ion-o-list-circle:before {
  content: "\f2a1";
}

.icon-ion-o-locate:before {
  content: "\f2a2";
}

.icon-ion-o-location:before {
  content: "\f2a3";
}

.icon-ion-o-lock-closed:before {
  content: "\f2a4";
}

.icon-ion-o-lock-open:before {
  content: "\f2a5";
}

.icon-ion-o-log-in:before {
  content: "\f2a6";
}

.icon-ion-o-log-out:before {
  content: "\f2a7";
}

.icon-ion-o-magnet:before {
  content: "\f2a8";
}

.icon-ion-o-mail:before {
  content: "\f2a9";
}

.icon-ion-o-mail-open:before {
  content: "\f2aa";
}

.icon-ion-o-mail-unread:before {
  content: "\f2ab";
}

.icon-ion-o-male:before {
  content: "\f2ac";
}

.icon-ion-o-male-female:before {
  content: "\f2ad";
}

.icon-ion-o-man:before {
  content: "\f2ae";
}

.icon-ion-o-map:before {
  content: "\f2af";
}

.icon-ion-o-medal:before {
  content: "\f2b0";
}

.icon-ion-o-medical:before {
  content: "\f2b1";
}

.icon-ion-o-medkit:before {
  content: "\f2b2";
}

.icon-ion-o-megaphone:before {
  content: "\f2b3";
}

.icon-ion-o-menu:before {
  content: "\f2b4";
}

.icon-ion-o-mic:before {
  content: "\f2b5";
}

.icon-ion-o-mic-circle:before {
  content: "\f2b6";
}

.icon-ion-o-mic-off:before {
  content: "\f2b7";
}

.icon-ion-o-mic-off-circle:before {
  content: "\f2b8";
}

.icon-ion-o-moon:before {
  content: "\f2b9";
}

.icon-ion-o-move:before {
  content: "\f2ba";
}

.icon-ion-o-musical-note:before {
  content: "\f2bb";
}

.icon-ion-o-musical-notes:before {
  content: "\f2bc";
}

.icon-ion-o-navigate:before {
  content: "\f2bd";
}

.icon-ion-o-navigate-circle:before {
  content: "\f2be";
}

.icon-ion-o-newspaper:before {
  content: "\f2bf";
}

.icon-ion-o-notifications:before {
  content: "\f2c0";
}

.icon-ion-o-notifications-circle:before {
  content: "\f2c1";
}

.icon-ion-o-notifications-off:before {
  content: "\f2c2";
}

.icon-ion-o-notifications-off-circle:before {
  content: "\f2c3";
}

.icon-ion-o-nuclear:before {
  content: "\f2c4";
}

.icon-ion-o-nutrition:before {
  content: "\f2c5";
}

.icon-ion-o-open:before {
  content: "\f2c6";
}

.icon-ion-o-options:before {
  content: "\f2c7";
}

.icon-ion-o-paper-plane:before {
  content: "\f2c8";
}

.icon-ion-o-partly-sunny:before {
  content: "\f2c9";
}

.icon-ion-o-pause:before {
  content: "\f2ca";
}

.icon-ion-o-pause-circle:before {
  content: "\f2cb";
}

.icon-ion-o-paw:before {
  content: "\f2cc";
}

.icon-ion-o-pencil:before {
  content: "\f2cd";
}

.icon-ion-o-people:before {
  content: "\f2ce";
}

.icon-ion-o-people-circle:before {
  content: "\f2cf";
}

.icon-ion-o-person:before {
  content: "\f2d0";
}

.icon-ion-o-person-add:before {
  content: "\f2d1";
}

.icon-ion-o-person-circle:before {
  content: "\f2d2";
}

.icon-ion-o-person-remove:before {
  content: "\f2d3";
}

.icon-ion-o-phone-landscape:before {
  content: "\f2d4";
}

.icon-ion-o-phone-portrait:before {
  content: "\f2d5";
}

.icon-ion-o-pie-chart:before {
  content: "\f2d6";
}

.icon-ion-o-pin:before {
  content: "\f2d7";
}

.icon-ion-o-pint:before {
  content: "\f2d8";
}

.icon-ion-o-pizza:before {
  content: "\f2d9";
}

.icon-ion-o-planet:before {
  content: "\f2da";
}

.icon-ion-o-play:before {
  content: "\f2db";
}

.icon-ion-o-play-back:before {
  content: "\f2dc";
}

.icon-ion-o-play-back-circle:before {
  content: "\f2dd";
}

.icon-ion-o-play-circle:before {
  content: "\f2de";
}

.icon-ion-o-play-forward:before {
  content: "\f2df";
}

.icon-ion-o-play-forward-circle:before {
  content: "\f2e0";
}

.icon-ion-o-play-skip-back:before {
  content: "\f2e1";
}

.icon-ion-o-play-skip-back-circle:before {
  content: "\f2e2";
}

.icon-ion-o-play-skip-forward:before {
  content: "\f2e3";
}

.icon-ion-o-play-skip-forward-circle:before {
  content: "\f2e4";
}

.icon-ion-o-podium:before {
  content: "\f2e5";
}

.icon-ion-o-power:before {
  content: "\f2e6";
}

.icon-ion-o-pricetag:before {
  content: "\f2e7";
}

.icon-ion-o-pricetags:before {
  content: "\f2e8";
}

.icon-ion-o-print:before {
  content: "\f2e9";
}

.icon-ion-o-pulse:before {
  content: "\f2ea";
}

.icon-ion-o-push:before {
  content: "\f2eb";
}

.icon-ion-o-qr-code:before {
  content: "\f2ec";
}

.icon-ion-o-radio:before {
  content: "\f2ed";
}

.icon-ion-o-radio-button-off:before {
  content: "\f2ee";
}

.icon-ion-o-radio-button-on:before {
  content: "\f2ef";
}

.icon-ion-o-rainy:before {
  content: "\f2f0";
}

.icon-ion-o-reader:before {
  content: "\f2f1";
}

.icon-ion-o-receipt:before {
  content: "\f2f2";
}

.icon-ion-o-recording:before {
  content: "\f2f3";
}

.icon-ion-o-refresh:before {
  content: "\f2f4";
}

.icon-ion-o-refresh-circle:before {
  content: "\f2f5";
}

.icon-ion-o-reload:before {
  content: "\f2f6";
}

.icon-ion-o-reload-circle:before {
  content: "\f2f7";
}

.icon-ion-o-remove-circle:before {
  content: "\f2f8";
}

.icon-ion-o-remove-sharp:before {
  content: "\f2f9";
}

.icon-ion-o-reorder-four:before {
  content: "\f2fa";
}

.icon-ion-o-reorder-three:before {
  content: "\f2fb";
}

.icon-ion-o-reorder-two:before {
  content: "\f2fc";
}

.icon-ion-o-repeat:before {
  content: "\f2fd";
}

.icon-ion-o-resize:before {
  content: "\f2fe";
}

.icon-ion-o-restaurant:before {
  content: "\f2ff";
}

.icon-ion-o-return-down-back:before {
  content: "\f300";
}

.icon-ion-o-return-down-forward:before {
  content: "\f301";
}

.icon-ion-o-return-up-back:before {
  content: "\f302";
}

.icon-ion-o-return-up-forward:before {
  content: "\f303";
}

.icon-ion-o-ribbon:before {
  content: "\f304";
}

.icon-ion-o-rocket:before {
  content: "\f305";
}

.icon-ion-o-rose:before {
  content: "\f306";
}

.icon-ion-o-sad:before {
  content: "\f307";
}

.icon-ion-o-save:before {
  content: "\f308";
}

.icon-ion-o-scan:before {
  content: "\f309";
}

.icon-ion-o-scan-circle:before {
  content: "\f30a";
}

.icon-ion-o-school:before {
  content: "\f30b";
}

.icon-ion-o-search:before {
  content: "\f30c";
}

.icon-ion-o-search-circle:before {
  content: "\f30d";
}

.icon-ion-o-send:before {
  content: "\f30e";
}

.icon-ion-o-server:before {
  content: "\f30f";
}

.icon-ion-o-settings:before {
  content: "\f310";
}

.icon-ion-o-shapes:before {
  content: "\f311";
}

.icon-ion-o-share:before {
  content: "\f312";
}

.icon-ion-o-share-social:before {
  content: "\f313";
}

.icon-ion-o-shield:before {
  content: "\f314";
}

.icon-ion-o-shield-checkmark:before {
  content: "\f315";
}

.icon-ion-o-shirt:before {
  content: "\f316";
}

.icon-ion-o-shuffle:before {
  content: "\f317";
}

.icon-ion-o-skull:before {
  content: "\f318";
}

.icon-ion-o-snow:before {
  content: "\f319";
}

.icon-ion-o-speedometer:before {
  content: "\f31a";
}

.icon-ion-o-square:before {
  content: "\f31b";
}

.icon-ion-o-star:before {
  content: "\f31c";
}

.icon-ion-o-star-half:before {
  content: "\f31d";
}

.icon-ion-o-stats-chart:before {
  content: "\f31e";
}

.icon-ion-o-stop:before {
  content: "\f31f";
}

.icon-ion-o-stop-circle:before {
  content: "\f320";
}

.icon-ion-o-stopwatch:before {
  content: "\f321";
}

.icon-ion-o-subway:before {
  content: "\f322";
}

.icon-ion-o-sunny:before {
  content: "\f323";
}

.icon-ion-o-swap-horizontal:before {
  content: "\f324";
}

.icon-ion-o-swap-vertical:before {
  content: "\f325";
}

.icon-ion-o-sync:before {
  content: "\f326";
}

.icon-ion-o-sync-circle:before {
  content: "\f327";
}

.icon-ion-o-tablet-landscape:before {
  content: "\f328";
}

.icon-ion-o-tablet-portrait:before {
  content: "\f329";
}

.icon-ion-o-tennisball:before {
  content: "\f32a";
}

.icon-ion-o-terminal:before {
  content: "\f32b";
}

.icon-ion-o-text:before {
  content: "\f32c";
}

.icon-ion-o-thermometer:before {
  content: "\f32d";
}

.icon-ion-o-thumbs-down:before {
  content: "\f32e";
}

.icon-ion-o-thumbs-up:before {
  content: "\f32f";
}

.icon-ion-o-thunderstorm:before {
  content: "\f330";
}

.icon-ion-o-time:before {
  content: "\f331";
}

.icon-ion-o-timer:before {
  content: "\f332";
}

.icon-ion-o-today:before {
  content: "\f333";
}

.icon-ion-o-toggle:before {
  content: "\f334";
}

.icon-ion-o-trail-sign:before {
  content: "\f335";
}

.icon-ion-o-train:before {
  content: "\f336";
}

.icon-ion-o-transgender:before {
  content: "\f337";
}

.icon-ion-o-trash:before {
  content: "\f338";
}

.icon-ion-o-trash-bin:before {
  content: "\f339";
}

.icon-ion-o-trending-down:before {
  content: "\f33a";
}

.icon-ion-o-trending-up:before {
  content: "\f33b";
}

.icon-ion-o-triangle:before {
  content: "\f33c";
}

.icon-ion-o-trophy:before {
  content: "\f33d";
}

.icon-ion-o-tv:before {
  content: "\f33e";
}

.icon-ion-o-umbrella:before {
  content: "\f33f";
}

.icon-ion-o-videocam:before {
  content: "\f340";
}

.icon-ion-o-volume-high:before {
  content: "\f341";
}

.icon-ion-o-volume-low:before {
  content: "\f342";
}

.icon-ion-o-volume-medium:before {
  content: "\f343";
}

.icon-ion-o-volume-mute:before {
  content: "\f344";
}

.icon-ion-o-volume-off:before {
  content: "\f345";
}

.icon-ion-o-walk:before {
  content: "\f346";
}

.icon-ion-o-wallet:before {
  content: "\f347";
}

.icon-ion-o-warning:before {
  content: "\f348";
}

.icon-ion-o-watch:before {
  content: "\f349";
}

.icon-ion-o-water:before {
  content: "\f34a";
}

.icon-ion-o-wifi:before {
  content: "\f34b";
}

.icon-ion-o-wine:before {
  content: "\f34c";
}

.icon-ion-o-woman:before {
  content: "\f34d";
}

.icon-ion-s-add:before {
  content: "\f34e";
}

.icon-ion-s-add-circle:before {
  content: "\f34f";
}

.icon-ion-s-airplane:before {
  content: "\f350";
}

.icon-ion-s-alarm:before {
  content: "\f351";
}

.icon-ion-s-albums:before {
  content: "\f352";
}

.icon-ion-s-alert:before {
  content: "\f353";
}

.icon-ion-s-alert-circle:before {
  content: "\f354";
}

.icon-ion-s-american-football:before {
  content: "\f355";
}

.icon-ion-s-analytics:before {
  content: "\f356";
}

.icon-ion-s-aperture:before {
  content: "\f357";
}

.icon-ion-s-apps:before {
  content: "\f358";
}

.icon-ion-s-archive:before {
  content: "\f359";
}

.icon-ion-s-arrow-back:before {
  content: "\f35a";
}

.icon-ion-s-arrow-back-circle:before {
  content: "\f35b";
}

.icon-ion-s-arrow-down:before {
  content: "\f35c";
}

.icon-ion-s-arrow-down-circle:before {
  content: "\f35d";
}

.icon-ion-s-arrow-forward:before {
  content: "\f35e";
}

.icon-ion-s-arrow-forward-circle:before {
  content: "\f35f";
}

.icon-ion-s-arrow-redo:before {
  content: "\f360";
}

.icon-ion-s-arrow-redo-circle:before {
  content: "\f361";
}

.icon-ion-s-arrow-undo:before {
  content: "\f362";
}

.icon-ion-s-arrow-undo-circle:before {
  content: "\f363";
}

.icon-ion-s-arrow-up:before {
  content: "\f364";
}

.icon-ion-s-arrow-up-circle:before {
  content: "\f365";
}

.icon-ion-s-at:before {
  content: "\f366";
}

.icon-ion-s-at-circle:before {
  content: "\f367";
}

.icon-ion-s-attach:before {
  content: "\f368";
}

.icon-ion-s-backspace:before {
  content: "\f369";
}

.icon-ion-s-bandage:before {
  content: "\f36a";
}

.icon-ion-s-bar-chart:before {
  content: "\f36b";
}

.icon-ion-s-barbell:before {
  content: "\f36c";
}

.icon-ion-s-barcode:before {
  content: "\f36d";
}

.icon-ion-s-baseball:before {
  content: "\f36e";
}

.icon-ion-s-basket:before {
  content: "\f36f";
}

.icon-ion-s-basketball:before {
  content: "\f370";
}

.icon-ion-s-battery-charging:before {
  content: "\f371";
}

.icon-ion-s-battery-dead:before {
  content: "\f372";
}

.icon-ion-s-battery-full:before {
  content: "\f373";
}

.icon-ion-s-battery-half:before {
  content: "\f374";
}

.icon-ion-s-beaker:before {
  content: "\f375";
}

.icon-ion-s-bed:before {
  content: "\f376";
}

.icon-ion-s-beer:before {
  content: "\f377";
}

.icon-ion-s-bicycle:before {
  content: "\f378";
}

.icon-ion-s-bluetooth:before {
  content: "\f379";
}

.icon-ion-s-boat:before {
  content: "\f37a";
}

.icon-ion-s-body:before {
  content: "\f37b";
}

.icon-ion-s-bonfire:before {
  content: "\f37c";
}

.icon-ion-s-book:before {
  content: "\f37d";
}

.icon-ion-s-bookmark:before {
  content: "\f37e";
}

.icon-ion-s-bookmarks:before {
  content: "\f37f";
}

.icon-ion-s-briefcase:before {
  content: "\f380";
}

.icon-ion-s-browsers:before {
  content: "\f381";
}

.icon-ion-s-brush:before {
  content: "\f382";
}

.icon-ion-s-bug:before {
  content: "\f383";
}

.icon-ion-s-build:before {
  content: "\f384";
}

.icon-ion-s-bulb:before {
  content: "\f385";
}

.icon-ion-s-bus:before {
  content: "\f386";
}

.icon-ion-s-business:before {
  content: "\f387";
}

.icon-ion-s-cafe:before {
  content: "\f388";
}

.icon-ion-s-calculator:before {
  content: "\f389";
}

.icon-ion-s-calendar:before {
  content: "\f38a";
}

.icon-ion-s-call:before {
  content: "\f38b";
}

.icon-ion-s-camera:before {
  content: "\f38c";
}

.icon-ion-s-camera-reverse:before {
  content: "\f38d";
}

.icon-ion-s-car:before {
  content: "\f38e";
}

.icon-ion-s-car-sport:before {
  content: "\f38f";
}

.icon-ion-s-card:before {
  content: "\f390";
}

.icon-ion-s-caret-back:before {
  content: "\f391";
}

.icon-ion-s-caret-back-circle:before {
  content: "\f392";
}

.icon-ion-s-caret-down:before {
  content: "\f393";
}

.icon-ion-s-caret-down-circle:before {
  content: "\f394";
}

.icon-ion-s-caret-forward:before {
  content: "\f395";
}

.icon-ion-s-caret-forward-circle:before {
  content: "\f396";
}

.icon-ion-s-caret-up:before {
  content: "\f397";
}

.icon-ion-s-caret-up-circle:before {
  content: "\f398";
}

.icon-ion-s-cart:before {
  content: "\f399";
}

.icon-ion-s-cash:before {
  content: "\f39a";
}

.icon-ion-s-cellular:before {
  content: "\f39b";
}

.icon-ion-s-chatbox:before {
  content: "\f39c";
}

.icon-ion-s-chatbox-ellipses:before {
  content: "\f39d";
}

.icon-ion-s-chatbubble:before {
  content: "\f39e";
}

.icon-ion-s-chatbubble-ellipses:before {
  content: "\f39f";
}

.icon-ion-s-chatbubbles:before {
  content: "\f3a0";
}

.icon-ion-s-checkbox:before {
  content: "\f3a1";
}

.icon-ion-s-checkmark:before {
  content: "\f3a2";
}

.icon-ion-s-checkmark-circle:before {
  content: "\f3a3";
}

.icon-ion-s-checkmark-done:before {
  content: "\f3a4";
}

.icon-ion-s-checkmark-done-circle:before {
  content: "\f3a5";
}

.icon-ion-s-chevron-back:before {
  content: "\f3a6";
}

.icon-ion-s-chevron-back-circle:before {
  content: "\f3a7";
}

.icon-ion-s-chevron-down:before {
  content: "\f3a8";
}

.icon-ion-s-chevron-down-circle:before {
  content: "\f3a9";
}

.icon-ion-s-chevron-forward:before {
  content: "\f3aa";
}

.icon-ion-s-chevron-forward-circle:before {
  content: "\f3ab";
}

.icon-ion-s-chevron-up:before {
  content: "\f3ac";
}

.icon-ion-s-chevron-up-circle:before {
  content: "\f3ad";
}

.icon-ion-s-clipboard:before {
  content: "\f3ae";
}

.icon-ion-s-close:before {
  content: "\f3af";
}

.icon-ion-s-close-circle:before {
  content: "\f3b0";
}

.icon-ion-s-cloud:before {
  content: "\f3b1";
}

.icon-ion-s-cloud-circle:before {
  content: "\f3b2";
}

.icon-ion-s-cloud-done:before {
  content: "\f3b3";
}

.icon-ion-s-cloud-download:before {
  content: "\f3b4";
}

.icon-ion-s-cloud-offline:before {
  content: "\f3b5";
}

.icon-ion-s-cloud-upload:before {
  content: "\f3b6";
}

.icon-ion-s-cloudy:before {
  content: "\f3b7";
}

.icon-ion-s-cloudy-night:before {
  content: "\f3b8";
}

.icon-ion-s-code:before {
  content: "\f3b9";
}

.icon-ion-s-code-download:before {
  content: "\f3ba";
}

.icon-ion-s-code-slash:before {
  content: "\f3bb";
}

.icon-ion-s-code-working:before {
  content: "\f3bc";
}

.icon-ion-s-cog:before {
  content: "\f3bd";
}

.icon-ion-s-color-fill:before {
  content: "\f3be";
}

.icon-ion-s-color-filter:before {
  content: "\f3bf";
}

.icon-ion-s-color-palette:before {
  content: "\f3c0";
}

.icon-ion-s-color-wand:before {
  content: "\f3c1";
}

.icon-ion-s-compass:before {
  content: "\f3c2";
}

.icon-ion-s-construct:before {
  content: "\f3c3";
}

.icon-ion-s-contract:before {
  content: "\f3c4";
}

.icon-ion-s-contrast:before {
  content: "\f3c5";
}

.icon-ion-s-copy:before {
  content: "\f3c6";
}

.icon-ion-s-create:before {
  content: "\f3c7";
}

.icon-ion-s-crop:before {
  content: "\f3c8";
}

.icon-ion-s-cube:before {
  content: "\f3c9";
}

.icon-ion-s-cut:before {
  content: "\f3ca";
}

.icon-ion-s-desktop:before {
  content: "\f3cb";
}

.icon-ion-s-disc:before {
  content: "\f3cc";
}

.icon-ion-s-document:before {
  content: "\f3cd";
}

.icon-ion-s-document-attach:before {
  content: "\f3ce";
}

.icon-ion-s-document-text:before {
  content: "\f3cf";
}

.icon-ion-s-documents:before {
  content: "\f3d0";
}

.icon-ion-s-download:before {
  content: "\f3d1";
}

.icon-ion-s-duplicate:before {
  content: "\f3d2";
}

.icon-ion-s-ear:before {
  content: "\f3d3";
}

.icon-ion-s-earth:before {
  content: "\f3d4";
}

.icon-ion-s-easel:before {
  content: "\f3d5";
}

.icon-ion-s-egg:before {
  content: "\f3d6";
}

.icon-ion-s-ellipse:before {
  content: "\f3d7";
}

.icon-ion-s-ellipsis-horizontal:before {
  content: "\f3d8";
}

.icon-ion-s-ellipsis-horizontal-circle:before {
  content: "\f3d9";
}

.icon-ion-s-ellipsis-vertical:before {
  content: "\f3da";
}

.icon-ion-s-ellipsis-vertical-circle:before {
  content: "\f3db";
}

.icon-ion-s-enter:before {
  content: "\f3dc";
}

.icon-ion-s-exit:before {
  content: "\f3dd";
}

.icon-ion-s-expand:before {
  content: "\f3de";
}

.icon-ion-s-eye:before {
  content: "\f3df";
}

.icon-ion-s-eye-off:before {
  content: "\f3e0";
}

.icon-ion-s-eyedrop:before {
  content: "\f3e1";
}

.icon-ion-s-fast-food:before {
  content: "\f3e2";
}

.icon-ion-s-female:before {
  content: "\f3e3";
}

.icon-ion-s-file-tray:before {
  content: "\f3e4";
}

.icon-ion-s-file-tray-full:before {
  content: "\f3e5";
}

.icon-ion-s-file-tray-stacked:before {
  content: "\f3e6";
}

.icon-ion-s-film:before {
  content: "\f3e7";
}

.icon-ion-s-filter:before {
  content: "\f3e8";
}

.icon-ion-s-finger-print:before {
  content: "\f3e9";
}

.icon-ion-s-fitness:before {
  content: "\f3ea";
}

.icon-ion-s-flag:before {
  content: "\f3eb";
}

.icon-ion-s-flame:before {
  content: "\f3ec";
}

.icon-ion-s-flash:before {
  content: "\f3ed";
}

.icon-ion-s-flash-off:before {
  content: "\f3ee";
}

.icon-ion-s-flashlight:before {
  content: "\f3ef";
}

.icon-ion-s-flask:before {
  content: "\f3f0";
}

.icon-ion-s-flower:before {
  content: "\f3f1";
}

.icon-ion-s-folder:before {
  content: "\f3f2";
}

.icon-ion-s-folder-open:before {
  content: "\f3f3";
}

.icon-ion-s-football:before {
  content: "\f3f4";
}

.icon-ion-s-funnel:before {
  content: "\f3f5";
}

.icon-ion-s-game-controller:before {
  content: "\f3f6";
}

.icon-ion-s-gift:before {
  content: "\f3f7";
}

.icon-ion-s-git-branch:before {
  content: "\f3f8";
}

.icon-ion-s-git-commit:before {
  content: "\f3f9";
}

.icon-ion-s-git-compare:before {
  content: "\f3fa";
}

.icon-ion-s-git-merge:before {
  content: "\f3fb";
}

.icon-ion-s-git-network:before {
  content: "\f3fc";
}

.icon-ion-s-git-pull-request:before {
  content: "\f3fd";
}

.icon-ion-s-glasses:before {
  content: "\f3fe";
}

.icon-ion-s-globe:before {
  content: "\f3ff";
}

.icon-ion-s-golf:before {
  content: "\f400";
}

.icon-ion-s-grid:before {
  content: "\f401";
}

.icon-ion-s-hammer:before {
  content: "\f402";
}

.icon-ion-s-hand-left:before {
  content: "\f403";
}

.icon-ion-s-hand-right:before {
  content: "\f404";
}

.icon-ion-s-happy:before {
  content: "\f405";
}

.icon-ion-s-hardware-chip:before {
  content: "\f406";
}

.icon-ion-s-headset:before {
  content: "\f407";
}

.icon-ion-s-heart:before {
  content: "\f408";
}

.icon-ion-s-heart-circle:before {
  content: "\f409";
}

.icon-ion-s-heart-dislike:before {
  content: "\f40a";
}

.icon-ion-s-heart-dislike-circle:before {
  content: "\f40b";
}

.icon-ion-s-heart-half:before {
  content: "\f40c";
}

.icon-ion-s-help:before {
  content: "\f40d";
}

.icon-ion-s-help-buoy:before {
  content: "\f40e";
}

.icon-ion-s-help-circle:before {
  content: "\f40f";
}

.icon-ion-s-home:before {
  content: "\f410";
}

.icon-ion-s-hourglass:before {
  content: "\f411";
}

.icon-ion-s-ice-cream:before {
  content: "\f412";
}

.icon-ion-s-image:before {
  content: "\f413";
}

.icon-ion-s-images:before {
  content: "\f414";
}

.icon-ion-s-infinite:before {
  content: "\f415";
}

.icon-ion-s-information:before {
  content: "\f416";
}

.icon-ion-s-information-circle:before {
  content: "\f417";
}

.icon-ion-s-journal:before {
  content: "\f418";
}

.icon-ion-s-key:before {
  content: "\f419";
}

.icon-ion-s-keypad:before {
  content: "\f41a";
}

.icon-ion-s-language:before {
  content: "\f41b";
}

.icon-ion-s-laptop:before {
  content: "\f41c";
}

.icon-ion-s-layers:before {
  content: "\f41d";
}

.icon-ion-s-leaf:before {
  content: "\f41e";
}

.icon-ion-s-library:before {
  content: "\f41f";
}

.icon-ion-s-link:before {
  content: "\f420";
}

.icon-ion-s-list:before {
  content: "\f421";
}

.icon-ion-s-list-circle:before {
  content: "\f422";
}

.icon-ion-s-locate:before {
  content: "\f423";
}

.icon-ion-s-location:before {
  content: "\f424";
}

.icon-ion-s-lock-closed:before {
  content: "\f425";
}

.icon-ion-s-lock-open:before {
  content: "\f426";
}

.icon-ion-s-log-in:before {
  content: "\f427";
}

.icon-ion-s-log-out:before {
  content: "\f428";
}

.icon-ion-s-magnet:before {
  content: "\f429";
}

.icon-ion-s-mail:before {
  content: "\f42a";
}

.icon-ion-s-mail-open:before {
  content: "\f42b";
}

.icon-ion-s-mail-unread:before {
  content: "\f42c";
}

.icon-ion-s-male:before {
  content: "\f42d";
}

.icon-ion-s-male-female:before {
  content: "\f42e";
}

.icon-ion-s-man:before {
  content: "\f42f";
}

.icon-ion-s-map:before {
  content: "\f430";
}

.icon-ion-s-medal:before {
  content: "\f431";
}

.icon-ion-s-medical:before {
  content: "\f432";
}

.icon-ion-s-medkit:before {
  content: "\f433";
}

.icon-ion-s-megaphone:before {
  content: "\f434";
}

.icon-ion-s-menu:before {
  content: "\f435";
}

.icon-ion-s-mic:before {
  content: "\f436";
}

.icon-ion-s-mic-circle:before {
  content: "\f437";
}

.icon-ion-s-mic-off:before {
  content: "\f438";
}

.icon-ion-s-mic-off-circle:before {
  content: "\f439";
}

.icon-ion-s-moon:before {
  content: "\f43a";
}

.icon-ion-s-move:before {
  content: "\f43b";
}

.icon-ion-s-musical-note:before {
  content: "\f43c";
}

.icon-ion-s-musical-notes:before {
  content: "\f43d";
}

.icon-ion-s-navigate:before {
  content: "\f43e";
}

.icon-ion-s-navigate-circle:before {
  content: "\f43f";
}

.icon-ion-s-newspaper:before {
  content: "\f440";
}

.icon-ion-s-notifications:before {
  content: "\f441";
}

.icon-ion-s-notifications-circle:before {
  content: "\f442";
}

.icon-ion-s-notifications-off:before {
  content: "\f443";
}

.icon-ion-s-notifications-off-circle:before {
  content: "\f444";
}

.icon-ion-s-nuclear:before {
  content: "\f445";
}

.icon-ion-s-nutrition:before {
  content: "\f446";
}

.icon-ion-s-open:before {
  content: "\f447";
}

.icon-ion-s-options:before {
  content: "\f448";
}

.icon-ion-s-paper-plane:before {
  content: "\f449";
}

.icon-ion-s-partly-sunny:before {
  content: "\f44a";
}

.icon-ion-s-pause:before {
  content: "\f44b";
}

.icon-ion-s-pause-circle:before {
  content: "\f44c";
}

.icon-ion-s-paw:before {
  content: "\f44d";
}

.icon-ion-s-pencil:before {
  content: "\f44e";
}

.icon-ion-s-people:before {
  content: "\f44f";
}

.icon-ion-s-people-circle:before {
  content: "\f450";
}

.icon-ion-s-person:before {
  content: "\f451";
}

.icon-ion-s-person-add:before {
  content: "\f452";
}

.icon-ion-s-person-circle:before {
  content: "\f453";
}

.icon-ion-s-person-remove:before {
  content: "\f454";
}

.icon-ion-s-phone-landscape:before {
  content: "\f455";
}

.icon-ion-s-phone-portrait:before {
  content: "\f456";
}

.icon-ion-s-pie-chart:before {
  content: "\f457";
}

.icon-ion-s-pin:before {
  content: "\f458";
}

.icon-ion-s-pint:before {
  content: "\f459";
}

.icon-ion-s-pizza:before {
  content: "\f45a";
}

.icon-ion-s-planet:before {
  content: "\f45b";
}

.icon-ion-s-play:before {
  content: "\f45c";
}

.icon-ion-s-play-back:before {
  content: "\f45d";
}

.icon-ion-s-play-back-circle:before {
  content: "\f45e";
}

.icon-ion-s-play-circle:before {
  content: "\f45f";
}

.icon-ion-s-play-forward:before {
  content: "\f460";
}

.icon-ion-s-play-forward-circle:before {
  content: "\f461";
}

.icon-ion-s-play-skip-back:before {
  content: "\f462";
}

.icon-ion-s-play-skip-back-circle:before {
  content: "\f463";
}

.icon-ion-s-play-skip-forward:before {
  content: "\f464";
}

.icon-ion-s-play-skip-forward-circle:before {
  content: "\f465";
}

.icon-ion-s-podium:before {
  content: "\f466";
}

.icon-ion-s-power:before {
  content: "\f467";
}

.icon-ion-s-pricetag:before {
  content: "\f468";
}

.icon-ion-s-pricetags:before {
  content: "\f469";
}

.icon-ion-s-print:before {
  content: "\f46a";
}

.icon-ion-s-pulse:before {
  content: "\f46b";
}

.icon-ion-s-push:before {
  content: "\f46c";
}

.icon-ion-s-qr-code:before {
  content: "\f46d";
}

.icon-ion-s-radio:before {
  content: "\f46e";
}

.icon-ion-s-radio-button-off:before {
  content: "\f46f";
}

.icon-ion-s-radio-button-on:before {
  content: "\f470";
}

.icon-ion-s-rainy:before {
  content: "\f471";
}

.icon-ion-s-reader:before {
  content: "\f472";
}

.icon-ion-s-receipt:before {
  content: "\f473";
}

.icon-ion-s-recording:before {
  content: "\f474";
}

.icon-ion-s-refresh:before {
  content: "\f475";
}

.icon-ion-s-refresh-circle:before {
  content: "\f476";
}

.icon-ion-s-reload:before {
  content: "\f477";
}

.icon-ion-s-reload-circle:before {
  content: "\f478";
}

.icon-ion-s-remove:before {
  content: "\f479";
}

.icon-ion-s-remove-circle:before {
  content: "\f47a";
}

.icon-ion-s-reorder-four:before {
  content: "\f47b";
}

.icon-ion-s-reorder-three:before {
  content: "\f47c";
}

.icon-ion-s-reorder-two:before {
  content: "\f47d";
}

.icon-ion-s-repeat:before {
  content: "\f47e";
}

.icon-ion-s-resize:before {
  content: "\f47f";
}

.icon-ion-s-restaurant:before {
  content: "\f480";
}

.icon-ion-s-return-down-back:before {
  content: "\f481";
}

.icon-ion-s-return-down-forward:before {
  content: "\f482";
}

.icon-ion-s-return-up-back:before {
  content: "\f483";
}

.icon-ion-s-return-up-forward:before {
  content: "\f484";
}

.icon-ion-s-ribbon:before {
  content: "\f485";
}

.icon-ion-s-rocket:before {
  content: "\f486";
}

.icon-ion-s-rose:before {
  content: "\f487";
}

.icon-ion-s-sad:before {
  content: "\f488";
}

.icon-ion-s-save:before {
  content: "\f489";
}

.icon-ion-s-scan:before {
  content: "\f48a";
}

.icon-ion-s-scan-circle:before {
  content: "\f48b";
}

.icon-ion-s-school:before {
  content: "\f48c";
}

.icon-ion-s-search:before {
  content: "\f48d";
}

.icon-ion-s-search-circle:before {
  content: "\f48e";
}

.icon-ion-s-send:before {
  content: "\f48f";
}

.icon-ion-s-server:before {
  content: "\f490";
}

.icon-ion-s-settings:before {
  content: "\f491";
}

.icon-ion-s-shapes:before {
  content: "\f492";
}

.icon-ion-s-share:before {
  content: "\f493";
}

.icon-ion-s-share-social:before {
  content: "\f494";
}

.icon-ion-s-shield:before {
  content: "\f495";
}

.icon-ion-s-shield-checkmark:before {
  content: "\f496";
}

.icon-ion-s-shirt:before {
  content: "\f497";
}

.icon-ion-s-shuffle:before {
  content: "\f498";
}

.icon-ion-s-skull:before {
  content: "\f499";
}

.icon-ion-s-snow:before {
  content: "\f49a";
}

.icon-ion-s-speedometer:before {
  content: "\f49b";
}

.icon-ion-s-square:before {
  content: "\f49c";
}

.icon-ion-s-star:before {
  content: "\f49d";
}

.icon-ion-s-star-half:before {
  content: "\f49e";
}

.icon-ion-s-stats-chart:before {
  content: "\f49f";
}

.icon-ion-s-stop:before {
  content: "\f4a0";
}

.icon-ion-s-stop-circle:before {
  content: "\f4a1";
}

.icon-ion-s-stopwatch:before {
  content: "\f4a2";
}

.icon-ion-s-subway:before {
  content: "\f4a3";
}

.icon-ion-s-sunny:before {
  content: "\f4a4";
}

.icon-ion-s-swap-horizontal:before {
  content: "\f4a5";
}

.icon-ion-s-swap-vertical:before {
  content: "\f4a6";
}

.icon-ion-s-sync:before {
  content: "\f4a7";
}

.icon-ion-s-sync-circle:before {
  content: "\f4a8";
}

.icon-ion-s-tablet-landscape:before {
  content: "\f4a9";
}

.icon-ion-s-tablet-portrait:before {
  content: "\f4aa";
}

.icon-ion-s-tennisball:before {
  content: "\f4ab";
}

.icon-ion-s-terminal:before {
  content: "\f4ac";
}

.icon-ion-s-text:before {
  content: "\f4ad";
}

.icon-ion-s-thermometer:before {
  content: "\f4ae";
}

.icon-ion-s-thumbs-down:before {
  content: "\f4af";
}

.icon-ion-s-thumbs-up:before {
  content: "\f4b0";
}

.icon-ion-s-thunderstorm:before {
  content: "\f4b1";
}

.icon-ion-s-time:before {
  content: "\f4b2";
}

.icon-ion-s-timer:before {
  content: "\f4b3";
}

.icon-ion-s-today:before {
  content: "\f4b4";
}

.icon-ion-s-toggle:before {
  content: "\f4b5";
}

.icon-ion-s-trail-sign:before {
  content: "\f4b6";
}

.icon-ion-s-train:before {
  content: "\f4b7";
}

.icon-ion-s-transgender:before {
  content: "\f4b8";
}

.icon-ion-s-trash:before {
  content: "\f4b9";
}

.icon-ion-s-trash-bin:before {
  content: "\f4ba";
}

.icon-ion-s-trending-down:before {
  content: "\f4bb";
}

.icon-ion-s-trending-up:before {
  content: "\f4bc";
}

.icon-ion-s-triangle:before {
  content: "\f4bd";
}

.icon-ion-s-trophy:before {
  content: "\f4be";
}

.icon-ion-s-tv:before {
  content: "\f4bf";
}

.icon-ion-s-umbrella:before {
  content: "\f4c0";
}

.icon-ion-s-videocam:before {
  content: "\f4c1";
}

.icon-ion-s-volume-high:before {
  content: "\f4c2";
}

.icon-ion-s-volume-low:before {
  content: "\f4c3";
}

.icon-ion-s-volume-medium:before {
  content: "\f4c4";
}

.icon-ion-s-volume-mute:before {
  content: "\f4c5";
}

.icon-ion-s-volume-off:before {
  content: "\f4c6";
}

.icon-ion-s-walk:before {
  content: "\f4c7";
}

.icon-ion-s-wallet:before {
  content: "\f4c8";
}

.icon-ion-s-warning:before {
  content: "\f4c9";
}

.icon-ion-s-watch:before {
  content: "\f4ca";
}

.icon-ion-s-water:before {
  content: "\f4cb";
}

.icon-ion-s-wifi:before {
  content: "\f4cc";
}

.icon-ion-s-wine:before {
  content: "\f4cd";
}

.icon-ion-s-woman:before {
  content: "\f4ce";
}

.icon-mdi-f-3d_rotation:before {
  content: "\f4cf";
}

.icon-mdi-f-ac_unit:before {
  content: "\f4d0";
}

.icon-mdi-f-access_alarm:before {
  content: "\f4d1";
}

.icon-mdi-f-access_time:before {
  content: "\f4d2";
}

.icon-mdi-f-accessibility:before {
  content: "\f4d3";
}

.icon-mdi-f-accessible:before {
  content: "\f4d4";
}

.icon-mdi-f-account_balance:before {
  content: "\f4d5";
}

.icon-mdi-f-account_balance_wallet:before {
  content: "\f4d6";
}

.icon-mdi-f-account_box:before {
  content: "\f4d7";
}

.icon-mdi-f-account_circle:before {
  content: "\f4d8";
}

.icon-mdi-f-adb:before {
  content: "\f4d9";
}

.icon-mdi-f-add:before {
  content: "\f4da";
}

.icon-mdi-f-add_a_photo:before {
  content: "\f4db";
}

.icon-mdi-f-add_alarm:before {
  content: "\f4dc";
}

.icon-mdi-f-add_alert:before {
  content: "\f4dd";
}

.icon-mdi-f-add_box:before {
  content: "\f4de";
}

.icon-mdi-f-add_circle:before {
  content: "\f4df";
}

.icon-mdi-f-add_circle_outline:before {
  content: "\f4e0";
}

.icon-mdi-f-add_location:before {
  content: "\f4e1";
}

.icon-mdi-f-add_shopping_cart:before {
  content: "\f4e2";
}

.icon-mdi-f-add_to_photos:before {
  content: "\f4e3";
}

.icon-mdi-f-add_to_queue:before {
  content: "\f4e4";
}

.icon-mdi-f-adjust:before {
  content: "\f4e5";
}

.icon-mdi-f-airline_seat_flat:before {
  content: "\f4e6";
}

.icon-mdi-f-airline_seat_flat_angled:before {
  content: "\f4e7";
}

.icon-mdi-f-airline_seat_individual_suite:before {
  content: "\f4e8";
}

.icon-mdi-f-airline_seat_legroom_extra:before {
  content: "\f4e9";
}

.icon-mdi-f-airline_seat_legroom_normal:before {
  content: "\f4ea";
}

.icon-mdi-f-airline_seat_legroom_reduced:before {
  content: "\f4eb";
}

.icon-mdi-f-airline_seat_recline_extra:before {
  content: "\f4ec";
}

.icon-mdi-f-airline_seat_recline_normal:before {
  content: "\f4ed";
}

.icon-mdi-f-airplanemode_active:before {
  content: "\f4ee";
}

.icon-mdi-f-airplanemode_inactive:before {
  content: "\f4ef";
}

.icon-mdi-f-airplay:before {
  content: "\f4f0";
}

.icon-mdi-f-airport_shuttle:before {
  content: "\f4f1";
}

.icon-mdi-f-alarm:before {
  content: "\f4f2";
}

.icon-mdi-f-alarm_add:before {
  content: "\f4f3";
}

.icon-mdi-f-alarm_off:before {
  content: "\f4f4";
}

.icon-mdi-f-alarm_on:before {
  content: "\f4f5";
}

.icon-mdi-f-album:before {
  content: "\f4f6";
}

.icon-mdi-f-all_inclusive:before {
  content: "\f4f7";
}

.icon-mdi-f-all_out:before {
  content: "\f4f8";
}

.icon-mdi-f-android:before {
  content: "\f4f9";
}

.icon-mdi-f-announcement:before {
  content: "\f4fa";
}

.icon-mdi-f-apps:before {
  content: "\f4fb";
}

.icon-mdi-f-archive:before {
  content: "\f4fc";
}

.icon-mdi-f-arrow_back:before {
  content: "\f4fd";
}

.icon-mdi-f-arrow_downward:before {
  content: "\f4fe";
}

.icon-mdi-f-arrow_drop_down:before {
  content: "\f4ff";
}

.icon-mdi-f-arrow_drop_down_circle:before {
  content: "\f500";
}

.icon-mdi-f-arrow_drop_up:before {
  content: "\f501";
}

.icon-mdi-f-arrow_forward:before {
  content: "\f502";
}

.icon-mdi-f-arrow_upward:before {
  content: "\f503";
}

.icon-mdi-f-art_track:before {
  content: "\f504";
}

.icon-mdi-f-aspect_ratio:before {
  content: "\f505";
}

.icon-mdi-f-assessment:before {
  content: "\f506";
}

.icon-mdi-f-assignment:before {
  content: "\f507";
}

.icon-mdi-f-assignment_ind:before {
  content: "\f508";
}

.icon-mdi-f-assignment_late:before {
  content: "\f509";
}

.icon-mdi-f-assignment_return:before {
  content: "\f50a";
}

.icon-mdi-f-assignment_returned:before {
  content: "\f50b";
}

.icon-mdi-f-assignment_turned_in:before {
  content: "\f50c";
}

.icon-mdi-f-assistant:before {
  content: "\f50d";
}

.icon-mdi-f-assistant_photo:before {
  content: "\f50e";
}

.icon-mdi-f-attach_file:before {
  content: "\f50f";
}

.icon-mdi-f-attach_money:before {
  content: "\f510";
}

.icon-mdi-f-audiotrack:before {
  content: "\f511";
}

.icon-mdi-f-autorenew:before {
  content: "\f512";
}

.icon-mdi-f-av_timer:before {
  content: "\f513";
}

.icon-mdi-f-backspace:before {
  content: "\f514";
}

.icon-mdi-f-backup:before {
  content: "\f515";
}

.icon-mdi-f-battery_20:before {
  content: "\f516";
}

.icon-mdi-f-battery_30:before {
  content: "\f518";
}

.icon-mdi-f-battery_50:before {
  content: "\f51a";
}

.icon-mdi-f-battery_60:before {
  content: "\f51c";
}

.icon-mdi-f-battery_80:before {
  content: "\f51e";
}

.icon-mdi-f-battery_90:before {
  content: "\f520";
}

.icon-mdi-f-battery_alert:before {
  content: "\f522";
}

.icon-mdi-f-battery_charging_20:before {
  content: "\f523";
}

.icon-mdi-f-battery_charging_30:before {
  content: "\f525";
}

.icon-mdi-f-battery_charging_50:before {
  content: "\f527";
}

.icon-mdi-f-battery_charging_60:before {
  content: "\f529";
}

.icon-mdi-f-battery_charging_80:before {
  content: "\f52b";
}

.icon-mdi-f-battery_charging_90:before {
  content: "\f52d";
}

.icon-mdi-f-battery_charging_full:before {
  content: "\f52f";
}

.icon-mdi-f-battery_full:before {
  content: "\f530";
}

.icon-mdi-f-battery_std:before {
  content: "\f531";
}

.icon-mdi-f-battery_unknown:before {
  content: "\f532";
}

.icon-mdi-f-beach_access:before {
  content: "\f533";
}

.icon-mdi-f-beenhere:before {
  content: "\f534";
}

.icon-mdi-f-block:before {
  content: "\f535";
}

.icon-mdi-f-bluetooth:before {
  content: "\f536";
}

.icon-mdi-f-bluetooth_audio:before {
  content: "\f537";
}

.icon-mdi-f-bluetooth_connected:before {
  content: "\f538";
}

.icon-mdi-f-bluetooth_disabled:before {
  content: "\f539";
}

.icon-mdi-f-bluetooth_searching:before {
  content: "\f53a";
}

.icon-mdi-f-blur_circular:before {
  content: "\f53b";
}

.icon-mdi-f-blur_linear:before {
  content: "\f53c";
}

.icon-mdi-f-blur_off:before {
  content: "\f53d";
}

.icon-mdi-f-blur_on:before {
  content: "\f53e";
}

.icon-mdi-f-book:before {
  content: "\f53f";
}

.icon-mdi-f-bookmark:before {
  content: "\f540";
}

.icon-mdi-f-bookmark_border:before {
  content: "\f541";
}

.icon-mdi-f-border_all:before {
  content: "\f542";
}

.icon-mdi-f-border_bottom:before {
  content: "\f543";
}

.icon-mdi-f-border_clear:before {
  content: "\f544";
}

.icon-mdi-f-border_color:before {
  content: "\f545";
}

.icon-mdi-f-border_horizontal:before {
  content: "\f547";
}

.icon-mdi-f-border_inner:before {
  content: "\f548";
}

.icon-mdi-f-border_left:before {
  content: "\f549";
}

.icon-mdi-f-border_outer:before {
  content: "\f54a";
}

.icon-mdi-f-border_right:before {
  content: "\f54b";
}

.icon-mdi-f-border_style:before {
  content: "\f54c";
}

.icon-mdi-f-border_top:before {
  content: "\f54d";
}

.icon-mdi-f-border_vertical:before {
  content: "\f54e";
}

.icon-mdi-f-branding_watermark:before {
  content: "\f54f";
}

.icon-mdi-f-brightness_1:before {
  content: "\f550";
}

.icon-mdi-f-brightness_2:before {
  content: "\f551";
}

.icon-mdi-f-brightness_3:before {
  content: "\f552";
}

.icon-mdi-f-brightness_4:before {
  content: "\f553";
}

.icon-mdi-f-brightness_5:before {
  content: "\f554";
}

.icon-mdi-f-brightness_6:before {
  content: "\f555";
}

.icon-mdi-f-brightness_7:before {
  content: "\f556";
}

.icon-mdi-f-brightness_auto:before {
  content: "\f557";
}

.icon-mdi-f-brightness_high:before {
  content: "\f558";
}

.icon-mdi-f-brightness_low:before {
  content: "\f559";
}

.icon-mdi-f-brightness_medium:before {
  content: "\f55a";
}

.icon-mdi-f-broken_image:before {
  content: "\f55b";
}

.icon-mdi-f-brush:before {
  content: "\f55c";
}

.icon-mdi-f-bubble_chart:before {
  content: "\f55d";
}

.icon-mdi-f-bug_report:before {
  content: "\f55e";
}

.icon-mdi-f-build:before {
  content: "\f55f";
}

.icon-mdi-f-burst_mode:before {
  content: "\f560";
}

.icon-mdi-f-business:before {
  content: "\f561";
}

.icon-mdi-f-business_center:before {
  content: "\f562";
}

.icon-mdi-f-cached:before {
  content: "\f563";
}

.icon-mdi-f-call:before {
  content: "\f564";
}

.icon-mdi-f-call_end:before {
  content: "\f565";
}

.icon-mdi-f-call_made:before {
  content: "\f566";
}

.icon-mdi-f-call_merge:before {
  content: "\f567";
}

.icon-mdi-f-call_missed:before {
  content: "\f568";
}

.icon-mdi-f-call_missed_outgoing:before {
  content: "\f569";
}

.icon-mdi-f-call_received:before {
  content: "\f56a";
}

.icon-mdi-f-call_split:before {
  content: "\f56b";
}

.icon-mdi-f-call_to_action:before {
  content: "\f56c";
}

.icon-mdi-f-camera:before {
  content: "\f56d";
}

.icon-mdi-f-camera_alt:before {
  content: "\f56e";
}

.icon-mdi-f-camera_enhance:before {
  content: "\f56f";
}

.icon-mdi-f-camera_front:before {
  content: "\f570";
}

.icon-mdi-f-camera_rear:before {
  content: "\f571";
}

.icon-mdi-f-camera_roll:before {
  content: "\f572";
}

.icon-mdi-f-cancel:before {
  content: "\f573";
}

.icon-mdi-f-card_giftcard:before {
  content: "\f574";
}

.icon-mdi-f-card_membership:before {
  content: "\f575";
}

.icon-mdi-f-card_travel:before {
  content: "\f576";
}

.icon-mdi-f-casino:before {
  content: "\f577";
}

.icon-mdi-f-cast:before {
  content: "\f578";
}

.icon-mdi-f-cast_connected:before {
  content: "\f579";
}

.icon-mdi-f-center_focus_strong:before {
  content: "\f57a";
}

.icon-mdi-f-center_focus_weak:before {
  content: "\f57b";
}

.icon-mdi-f-change_history:before {
  content: "\f57c";
}

.icon-mdi-f-chat:before {
  content: "\f57d";
}

.icon-mdi-f-chat_bubble:before {
  content: "\f57e";
}

.icon-mdi-f-chat_bubble_outline:before {
  content: "\f57f";
}

.icon-mdi-f-check:before {
  content: "\f580";
}

.icon-mdi-f-check_circle:before {
  content: "\f581";
}

.icon-mdi-f-chevron_left:before {
  content: "\f582";
}

.icon-mdi-f-chevron_right:before {
  content: "\f583";
}

.icon-mdi-f-child_care:before {
  content: "\f584";
}

.icon-mdi-f-child_friendly:before {
  content: "\f585";
}

.icon-mdi-f-chrome_reader_mode:before {
  content: "\f586";
}

.icon-mdi-f-class:before {
  content: "\f587";
}

.icon-mdi-f-clear:before {
  content: "\f588";
}

.icon-mdi-f-clear_all:before {
  content: "\f589";
}

.icon-mdi-f-close:before {
  content: "\f58a";
}

.icon-mdi-f-closed_caption:before {
  content: "\f58b";
}

.icon-mdi-f-code:before {
  content: "\f58c";
}

.icon-mdi-f-collections:before {
  content: "\f58d";
}

.icon-mdi-f-collections_bookmark:before {
  content: "\f58e";
}

.icon-mdi-f-color_lens:before {
  content: "\f58f";
}

.icon-mdi-f-colorize:before {
  content: "\f590";
}

.icon-mdi-f-comment:before {
  content: "\f591";
}

.icon-mdi-f-compare:before {
  content: "\f592";
}

.icon-mdi-f-compare_arrows:before {
  content: "\f593";
}

.icon-mdi-f-computer:before {
  content: "\f594";
}

.icon-mdi-f-confirmation_number:before {
  content: "\f595";
}

.icon-mdi-f-contact_mail:before {
  content: "\f596";
}

.icon-mdi-f-contact_phone:before {
  content: "\f597";
}

.icon-mdi-f-contacts:before {
  content: "\f598";
}

.icon-mdi-f-content_copy:before {
  content: "\f599";
}

.icon-mdi-f-content_cut:before {
  content: "\f59a";
}

.icon-mdi-f-content_paste:before {
  content: "\f59b";
}

.icon-mdi-f-control_point:before {
  content: "\f59c";
}

.icon-mdi-f-control_point_duplicate:before {
  content: "\f59d";
}

.icon-mdi-f-copyright:before {
  content: "\f59e";
}

.icon-mdi-f-create:before {
  content: "\f59f";
}

.icon-mdi-f-credit_card:before {
  content: "\f5a0";
}

.icon-mdi-f-crop:before {
  content: "\f5a1";
}

.icon-mdi-f-crop_16_9:before {
  content: "\f5a2";
}

.icon-mdi-f-crop_3_2:before {
  content: "\f5a3";
}

.icon-mdi-f-crop_5_4:before {
  content: "\f5a4";
}

.icon-mdi-f-crop_7_5:before {
  content: "\f5a5";
}

.icon-mdi-f-crop_din:before {
  content: "\f5a6";
}

.icon-mdi-f-crop_free:before {
  content: "\f5a7";
}

.icon-mdi-f-crop_landscape:before {
  content: "\f5a8";
}

.icon-mdi-f-crop_original:before {
  content: "\f5a9";
}

.icon-mdi-f-crop_portrait:before {
  content: "\f5aa";
}

.icon-mdi-f-crop_rotate:before {
  content: "\f5ab";
}

.icon-mdi-f-crop_square:before {
  content: "\f5ac";
}

.icon-mdi-f-dashboard:before {
  content: "\f5ad";
}

.icon-mdi-f-data_usage:before {
  content: "\f5ae";
}

.icon-mdi-f-date_range:before {
  content: "\f5af";
}

.icon-mdi-f-dehaze:before {
  content: "\f5b0";
}

.icon-mdi-f-delete:before {
  content: "\f5b1";
}

.icon-mdi-f-delete_forever:before {
  content: "\f5b2";
}

.icon-mdi-f-delete_sweep:before {
  content: "\f5b3";
}

.icon-mdi-f-description:before {
  content: "\f5b4";
}

.icon-mdi-f-desktop_mac:before {
  content: "\f5b5";
}

.icon-mdi-f-desktop_windows:before {
  content: "\f5b6";
}

.icon-mdi-f-details:before {
  content: "\f5b7";
}

.icon-mdi-f-developer_board:before {
  content: "\f5b8";
}

.icon-mdi-f-developer_mode:before {
  content: "\f5b9";
}

.icon-mdi-f-device_hub:before {
  content: "\f5ba";
}

.icon-mdi-f-devices:before {
  content: "\f5bb";
}

.icon-mdi-f-devices_other:before {
  content: "\f5bc";
}

.icon-mdi-f-dialer_sip:before {
  content: "\f5bd";
}

.icon-mdi-f-dialpad:before {
  content: "\f5be";
}

.icon-mdi-f-directions:before {
  content: "\f5bf";
}

.icon-mdi-f-directions_bike:before {
  content: "\f5c0";
}

.icon-mdi-f-directions_boat:before {
  content: "\f5c1";
}

.icon-mdi-f-directions_bus:before {
  content: "\f5c2";
}

.icon-mdi-f-directions_car:before {
  content: "\f5c3";
}

.icon-mdi-f-directions_railway:before {
  content: "\f5c4";
}

.icon-mdi-f-directions_run:before {
  content: "\f5c5";
}

.icon-mdi-f-directions_subway:before {
  content: "\f5c6";
}

.icon-mdi-f-directions_transit:before {
  content: "\f5c7";
}

.icon-mdi-f-directions_walk:before {
  content: "\f5c8";
}

.icon-mdi-f-disc_full:before {
  content: "\f5c9";
}

.icon-mdi-f-dns:before {
  content: "\f5ca";
}

.icon-mdi-f-do_not_disturb:before {
  content: "\f5cb";
}

.icon-mdi-f-do_not_disturb_alt:before {
  content: "\f5cc";
}

.icon-mdi-f-do_not_disturb_off:before {
  content: "\f5cd";
}

.icon-mdi-f-do_not_disturb_on:before {
  content: "\f5ce";
}

.icon-mdi-f-dock:before {
  content: "\f5cf";
}

.icon-mdi-f-done:before {
  content: "\f5d0";
}

.icon-mdi-f-done_all:before {
  content: "\f5d1";
}

.icon-mdi-f-donut_large:before {
  content: "\f5d2";
}

.icon-mdi-f-donut_small:before {
  content: "\f5d3";
}

.icon-mdi-f-drafts:before {
  content: "\f5d4";
}

.icon-mdi-f-drag_handle:before {
  content: "\f5d5";
}

.icon-mdi-f-drive_eta:before {
  content: "\f5d6";
}

.icon-mdi-f-dvr:before {
  content: "\f5d7";
}

.icon-mdi-f-edit:before {
  content: "\f5d8";
}

.icon-mdi-f-edit_location:before {
  content: "\f5d9";
}

.icon-mdi-f-eject:before {
  content: "\f5da";
}

.icon-mdi-f-email:before {
  content: "\f5db";
}

.icon-mdi-f-enhanced_encryption:before {
  content: "\f5dc";
}

.icon-mdi-f-equalizer:before {
  content: "\f5dd";
}

.icon-mdi-f-error:before {
  content: "\f5de";
}

.icon-mdi-f-error_outline:before {
  content: "\f5df";
}

.icon-mdi-f-euro_symbol:before {
  content: "\f5e0";
}

.icon-mdi-f-ev_station:before {
  content: "\f5e1";
}

.icon-mdi-f-event:before {
  content: "\f5e2";
}

.icon-mdi-f-event_available:before {
  content: "\f5e3";
}

.icon-mdi-f-event_busy:before {
  content: "\f5e4";
}

.icon-mdi-f-event_note:before {
  content: "\f5e5";
}

.icon-mdi-f-event_seat:before {
  content: "\f5e6";
}

.icon-mdi-f-exit_to_app:before {
  content: "\f5e7";
}

.icon-mdi-f-expand_less:before {
  content: "\f5e8";
}

.icon-mdi-f-expand_more:before {
  content: "\f5e9";
}

.icon-mdi-f-explicit:before {
  content: "\f5ea";
}

.icon-mdi-f-explore:before {
  content: "\f5eb";
}

.icon-mdi-f-exposure:before {
  content: "\f5ec";
}

.icon-mdi-f-exposure_neg_1:before {
  content: "\f5ed";
}

.icon-mdi-f-exposure_neg_2:before {
  content: "\f5ee";
}

.icon-mdi-f-exposure_plus_1:before {
  content: "\f5ef";
}

.icon-mdi-f-exposure_plus_2:before {
  content: "\f5f0";
}

.icon-mdi-f-exposure_zero:before {
  content: "\f5f1";
}

.icon-mdi-f-extension:before {
  content: "\f5f2";
}

.icon-mdi-f-face:before {
  content: "\f5f3";
}

.icon-mdi-f-fast_forward:before {
  content: "\f5f4";
}

.icon-mdi-f-fast_rewind:before {
  content: "\f5f5";
}

.icon-mdi-f-favorite:before {
  content: "\f5f6";
}

.icon-mdi-f-favorite_border:before {
  content: "\f5f7";
}

.icon-mdi-f-featured_play_list:before {
  content: "\f5f8";
}

.icon-mdi-f-featured_video:before {
  content: "\f5f9";
}

.icon-mdi-f-feedback:before {
  content: "\f5fa";
}

.icon-mdi-f-fiber_dvr:before {
  content: "\f5fb";
}

.icon-mdi-f-fiber_manual_record:before {
  content: "\f5fc";
}

.icon-mdi-f-fiber_new:before {
  content: "\f5fd";
}

.icon-mdi-f-fiber_pin:before {
  content: "\f5fe";
}

.icon-mdi-f-fiber_smart_record:before {
  content: "\f5ff";
}

.icon-mdi-f-filter:before {
  content: "\f600";
}

.icon-mdi-f-filter_1:before {
  content: "\f601";
}

.icon-mdi-f-filter_2:before {
  content: "\f602";
}

.icon-mdi-f-filter_3:before {
  content: "\f603";
}

.icon-mdi-f-filter_4:before {
  content: "\f604";
}

.icon-mdi-f-filter_5:before {
  content: "\f605";
}

.icon-mdi-f-filter_6:before {
  content: "\f606";
}

.icon-mdi-f-filter_7:before {
  content: "\f607";
}

.icon-mdi-f-filter_8:before {
  content: "\f608";
}

.icon-mdi-f-filter_9:before {
  content: "\f609";
}

.icon-mdi-f-filter_9_plus:before {
  content: "\f60a";
}

.icon-mdi-f-filter_b_and_w:before {
  content: "\f60b";
}

.icon-mdi-f-filter_center_focus:before {
  content: "\f60c";
}

.icon-mdi-f-filter_drama:before {
  content: "\f60d";
}

.icon-mdi-f-filter_frames:before {
  content: "\f60e";
}

.icon-mdi-f-filter_hdr:before {
  content: "\f60f";
}

.icon-mdi-f-filter_list:before {
  content: "\f610";
}

.icon-mdi-f-filter_none:before {
  content: "\f611";
}

.icon-mdi-f-filter_tilt_shift:before {
  content: "\f612";
}

.icon-mdi-f-filter_vintage:before {
  content: "\f613";
}

.icon-mdi-f-find_in_page:before {
  content: "\f614";
}

.icon-mdi-f-find_replace:before {
  content: "\f615";
}

.icon-mdi-f-fingerprint:before {
  content: "\f616";
}

.icon-mdi-f-first_page:before {
  content: "\f617";
}

.icon-mdi-f-fitness_center:before {
  content: "\f618";
}

.icon-mdi-f-flag:before {
  content: "\f619";
}

.icon-mdi-f-flare:before {
  content: "\f61a";
}

.icon-mdi-f-flash_auto:before {
  content: "\f61b";
}

.icon-mdi-f-flash_off:before {
  content: "\f61c";
}

.icon-mdi-f-flash_on:before {
  content: "\f61d";
}

.icon-mdi-f-flight:before {
  content: "\f61e";
}

.icon-mdi-f-flight_land:before {
  content: "\f61f";
}

.icon-mdi-f-flight_takeoff:before {
  content: "\f620";
}

.icon-mdi-f-flip:before {
  content: "\f621";
}

.icon-mdi-f-flip_to_back:before {
  content: "\f622";
}

.icon-mdi-f-flip_to_front:before {
  content: "\f623";
}

.icon-mdi-f-folder_special:before {
  content: "\f624";
}

.icon-mdi-f-font_download:before {
  content: "\f625";
}

.icon-mdi-f-format_align_center:before {
  content: "\f626";
}

.icon-mdi-f-format_align_justify:before {
  content: "\f627";
}

.icon-mdi-f-format_align_left:before {
  content: "\f628";
}

.icon-mdi-f-format_align_right:before {
  content: "\f629";
}

.icon-mdi-f-format_bold:before {
  content: "\f62a";
}

.icon-mdi-f-format_clear:before {
  content: "\f62b";
}

.icon-mdi-f-format_color_fill:before {
  content: "\f62c";
}

.icon-mdi-f-format_color_reset:before {
  content: "\f62e";
}

.icon-mdi-f-format_color_text:before {
  content: "\f62f";
}

.icon-mdi-f-format_indent_decrease:before {
  content: "\f631";
}

.icon-mdi-f-format_indent_increase:before {
  content: "\f632";
}

.icon-mdi-f-format_italic:before {
  content: "\f633";
}

.icon-mdi-f-format_line_spacing:before {
  content: "\f634";
}

.icon-mdi-f-format_list_bulleted:before {
  content: "\f635";
}

.icon-mdi-f-format_list_numbered:before {
  content: "\f636";
}

.icon-mdi-f-format_paint:before {
  content: "\f637";
}

.icon-mdi-f-format_quote:before {
  content: "\f638";
}

.icon-mdi-f-format_shapes:before {
  content: "\f639";
}

.icon-mdi-f-format_size:before {
  content: "\f63a";
}

.icon-mdi-f-format_strikethrough:before {
  content: "\f63b";
}

.icon-mdi-f-format_textdirection_l_to_r:before {
  content: "\f63c";
}

.icon-mdi-f-format_textdirection_r_to_l:before {
  content: "\f63d";
}

.icon-mdi-f-format_underlined:before {
  content: "\f63e";
}

.icon-mdi-f-forum:before {
  content: "\f63f";
}

.icon-mdi-f-forward:before {
  content: "\f640";
}

.icon-mdi-f-forward_10:before {
  content: "\f641";
}

.icon-mdi-f-forward_30:before {
  content: "\f642";
}

.icon-mdi-f-forward_5:before {
  content: "\f643";
}

.icon-mdi-f-free_breakfast:before {
  content: "\f644";
}

.icon-mdi-f-fullscreen:before {
  content: "\f645";
}

.icon-mdi-f-fullscreen_exit:before {
  content: "\f646";
}

.icon-mdi-f-functions:before {
  content: "\f647";
}

.icon-mdi-f-g_translate:before {
  content: "\f648";
}

.icon-mdi-f-gamepad:before {
  content: "\f649";
}

.icon-mdi-f-gavel:before {
  content: "\f64a";
}

.icon-mdi-f-gesture:before {
  content: "\f64b";
}

.icon-mdi-f-get_app:before {
  content: "\f64c";
}

.icon-mdi-f-gif:before {
  content: "\f64d";
}

.icon-mdi-f-golf_course:before {
  content: "\f64e";
}

.icon-mdi-f-gps_fixed:before {
  content: "\f64f";
}

.icon-mdi-f-gps_not_fixed:before {
  content: "\f650";
}

.icon-mdi-f-gps_off:before {
  content: "\f651";
}

.icon-mdi-f-grade:before {
  content: "\f652";
}

.icon-mdi-f-gradient:before {
  content: "\f653";
}

.icon-mdi-f-grain:before {
  content: "\f654";
}

.icon-mdi-f-graphic_eq:before {
  content: "\f655";
}

.icon-mdi-f-grid_off:before {
  content: "\f656";
}

.icon-mdi-f-grid_on:before {
  content: "\f657";
}

.icon-mdi-f-group_work:before {
  content: "\f658";
}

.icon-mdi-f-hd:before {
  content: "\f659";
}

.icon-mdi-f-hdr_off:before {
  content: "\f65a";
}

.icon-mdi-f-hdr_on:before {
  content: "\f65b";
}

.icon-mdi-f-hdr_strong:before {
  content: "\f65c";
}

.icon-mdi-f-hdr_weak:before {
  content: "\f65d";
}

.icon-mdi-f-headset:before {
  content: "\f65e";
}

.icon-mdi-f-headset_mic:before {
  content: "\f65f";
}

.icon-mdi-f-healing:before {
  content: "\f660";
}

.icon-mdi-f-hearing:before {
  content: "\f661";
}

.icon-mdi-f-help:before {
  content: "\f662";
}

.icon-mdi-f-help_outline:before {
  content: "\f663";
}

.icon-mdi-f-high_quality:before {
  content: "\f664";
}

.icon-mdi-f-highlight:before {
  content: "\f665";
}

.icon-mdi-f-highlight_off:before {
  content: "\f666";
}

.icon-mdi-f-history:before {
  content: "\f667";
}

.icon-mdi-f-home:before {
  content: "\f668";
}

.icon-mdi-f-hot_tub:before {
  content: "\f669";
}

.icon-mdi-f-hotel:before {
  content: "\f66a";
}

.icon-mdi-f-hourglass_empty:before {
  content: "\f66b";
}

.icon-mdi-f-hourglass_full:before {
  content: "\f66c";
}

.icon-mdi-f-http:before {
  content: "\f66d";
}

.icon-mdi-f-https:before {
  content: "\f66e";
}

.icon-mdi-f-image:before {
  content: "\f66f";
}

.icon-mdi-f-image_aspect_ratio:before {
  content: "\f670";
}

.icon-mdi-f-import_contacts:before {
  content: "\f671";
}

.icon-mdi-f-import_export:before {
  content: "\f672";
}

.icon-mdi-f-important_devices:before {
  content: "\f673";
}

.icon-mdi-f-inbox:before {
  content: "\f674";
}

.icon-mdi-f-info:before {
  content: "\f675";
}

.icon-mdi-f-info_outline:before {
  content: "\f676";
}

.icon-mdi-f-input:before {
  content: "\f677";
}

.icon-mdi-f-insert_chart:before {
  content: "\f678";
}

.icon-mdi-f-insert_comment:before {
  content: "\f679";
}

.icon-mdi-f-insert_drive_file:before {
  content: "\f67a";
}

.icon-mdi-f-insert_emoticon:before {
  content: "\f67b";
}

.icon-mdi-f-insert_invitation:before {
  content: "\f67c";
}

.icon-mdi-f-insert_link:before {
  content: "\f67d";
}

.icon-mdi-f-insert_photo:before {
  content: "\f67e";
}

.icon-mdi-f-invert_colors:before {
  content: "\f67f";
}

.icon-mdi-f-invert_colors_off:before {
  content: "\f680";
}

.icon-mdi-f-iso:before {
  content: "\f681";
}

.icon-mdi-f-keyboard:before {
  content: "\f682";
}

.icon-mdi-f-keyboard_arrow_down:before {
  content: "\f683";
}

.icon-mdi-f-keyboard_arrow_left:before {
  content: "\f684";
}

.icon-mdi-f-keyboard_arrow_right:before {
  content: "\f685";
}

.icon-mdi-f-keyboard_arrow_up:before {
  content: "\f686";
}

.icon-mdi-f-keyboard_backspace:before {
  content: "\f687";
}

.icon-mdi-f-keyboard_capslock:before {
  content: "\f688";
}

.icon-mdi-f-keyboard_hide:before {
  content: "\f689";
}

.icon-mdi-f-keyboard_return:before {
  content: "\f68a";
}

.icon-mdi-f-keyboard_tab:before {
  content: "\f68b";
}

.icon-mdi-f-keyboard_voice:before {
  content: "\f68c";
}

.icon-mdi-f-kitchen:before {
  content: "\f68d";
}

.icon-mdi-f-label:before {
  content: "\f68e";
}

.icon-mdi-f-label_outline:before {
  content: "\f68f";
}

.icon-mdi-f-landscape:before {
  content: "\f690";
}

.icon-mdi-f-language:before {
  content: "\f691";
}

.icon-mdi-f-laptop:before {
  content: "\f692";
}

.icon-mdi-f-laptop_chromebook:before {
  content: "\f693";
}

.icon-mdi-f-laptop_mac:before {
  content: "\f694";
}

.icon-mdi-f-laptop_windows:before {
  content: "\f695";
}

.icon-mdi-f-last_page:before {
  content: "\f696";
}

.icon-mdi-f-launch:before {
  content: "\f697";
}

.icon-mdi-f-layers:before {
  content: "\f698";
}

.icon-mdi-f-layers_clear:before {
  content: "\f699";
}

.icon-mdi-f-leak_add:before {
  content: "\f69a";
}

.icon-mdi-f-leak_remove:before {
  content: "\f69b";
}

.icon-mdi-f-lens:before {
  content: "\f69c";
}

.icon-mdi-f-library_add:before {
  content: "\f69d";
}

.icon-mdi-f-library_books:before {
  content: "\f69e";
}

.icon-mdi-f-library_music:before {
  content: "\f69f";
}

.icon-mdi-f-lightbulb_outline:before {
  content: "\f6a0";
}

.icon-mdi-f-line_style:before {
  content: "\f6a1";
}

.icon-mdi-f-line_weight:before {
  content: "\f6a2";
}

.icon-mdi-f-linear_scale:before {
  content: "\f6a3";
}

.icon-mdi-f-link:before {
  content: "\f6a4";
}

.icon-mdi-f-linked_camera:before {
  content: "\f6a5";
}

.icon-mdi-f-list:before {
  content: "\f6a6";
}

.icon-mdi-f-live_help:before {
  content: "\f6a7";
}

.icon-mdi-f-live_tv:before {
  content: "\f6a8";
}

.icon-mdi-f-local_activity:before {
  content: "\f6a9";
}

.icon-mdi-f-local_airport:before {
  content: "\f6aa";
}

.icon-mdi-f-local_atm:before {
  content: "\f6ab";
}

.icon-mdi-f-local_bar:before {
  content: "\f6ac";
}

.icon-mdi-f-local_cafe:before {
  content: "\f6ad";
}

.icon-mdi-f-local_car_wash:before {
  content: "\f6ae";
}

.icon-mdi-f-local_convenience_store:before {
  content: "\f6af";
}

.icon-mdi-f-local_dining:before {
  content: "\f6b0";
}

.icon-mdi-f-local_drink:before {
  content: "\f6b1";
}

.icon-mdi-f-local_florist:before {
  content: "\f6b2";
}

.icon-mdi-f-local_gas_station:before {
  content: "\f6b3";
}

.icon-mdi-f-local_grocery_store:before {
  content: "\f6b4";
}

.icon-mdi-f-local_hospital:before {
  content: "\f6b5";
}

.icon-mdi-f-local_hotel:before {
  content: "\f6b6";
}

.icon-mdi-f-local_laundry_service:before {
  content: "\f6b7";
}

.icon-mdi-f-local_library:before {
  content: "\f6b8";
}

.icon-mdi-f-local_mall:before {
  content: "\f6b9";
}

.icon-mdi-f-local_movies:before {
  content: "\f6ba";
}

.icon-mdi-f-local_offer:before {
  content: "\f6bb";
}

.icon-mdi-f-local_parking:before {
  content: "\f6bc";
}

.icon-mdi-f-local_pharmacy:before {
  content: "\f6bd";
}

.icon-mdi-f-local_phone:before {
  content: "\f6be";
}

.icon-mdi-f-local_pizza:before {
  content: "\f6bf";
}

.icon-mdi-f-local_play:before {
  content: "\f6c0";
}

.icon-mdi-f-local_post_office:before {
  content: "\f6c1";
}

.icon-mdi-f-local_printshop:before {
  content: "\f6c2";
}

.icon-mdi-f-local_see:before {
  content: "\f6c3";
}

.icon-mdi-f-local_shipping:before {
  content: "\f6c4";
}

.icon-mdi-f-local_taxi:before {
  content: "\f6c5";
}

.icon-mdi-f-location_disabled:before {
  content: "\f6c6";
}

.icon-mdi-f-location_off:before {
  content: "\f6c7";
}

.icon-mdi-f-location_on:before {
  content: "\f6c8";
}

.icon-mdi-f-location_searching:before {
  content: "\f6c9";
}

.icon-mdi-f-lock:before {
  content: "\f6ca";
}

.icon-mdi-f-lock_open:before {
  content: "\f6cb";
}

.icon-mdi-f-lock_outline:before {
  content: "\f6cc";
}

.icon-mdi-f-looks:before {
  content: "\f6cd";
}

.icon-mdi-f-looks_3:before {
  content: "\f6ce";
}

.icon-mdi-f-looks_4:before {
  content: "\f6cf";
}

.icon-mdi-f-looks_5:before {
  content: "\f6d0";
}

.icon-mdi-f-looks_6:before {
  content: "\f6d1";
}

.icon-mdi-f-looks_one:before {
  content: "\f6d2";
}

.icon-mdi-f-looks_two:before {
  content: "\f6d3";
}

.icon-mdi-f-loop:before {
  content: "\f6d4";
}

.icon-mdi-f-loupe:before {
  content: "\f6d5";
}

.icon-mdi-f-low_priority:before {
  content: "\f6d6";
}

.icon-mdi-f-loyalty:before {
  content: "\f6d7";
}

.icon-mdi-f-mail:before {
  content: "\f6d8";
}

.icon-mdi-f-mail_outline:before {
  content: "\f6d9";
}

.icon-mdi-f-map:before {
  content: "\f6da";
}

.icon-mdi-f-markunread:before {
  content: "\f6db";
}

.icon-mdi-f-markunread_mailbox:before {
  content: "\f6dc";
}

.icon-mdi-f-memory:before {
  content: "\f6dd";
}

.icon-mdi-f-menu:before {
  content: "\f6de";
}

.icon-mdi-f-merge_type:before {
  content: "\f6df";
}

.icon-mdi-f-message:before {
  content: "\f6e0";
}

.icon-mdi-f-mic:before {
  content: "\f6e1";
}

.icon-mdi-f-mic_none:before {
  content: "\f6e2";
}

.icon-mdi-f-mic_off:before {
  content: "\f6e3";
}

.icon-mdi-f-mms:before {
  content: "\f6e4";
}

.icon-mdi-f-mode_comment:before {
  content: "\f6e5";
}

.icon-mdi-f-mode_edit:before {
  content: "\f6e6";
}

.icon-mdi-f-monetization_on:before {
  content: "\f6e7";
}

.icon-mdi-f-money_off:before {
  content: "\f6e8";
}

.icon-mdi-f-monochrome_photos:before {
  content: "\f6e9";
}

.icon-mdi-f-more:before {
  content: "\f6ea";
}

.icon-mdi-f-more_horiz:before {
  content: "\f6eb";
}

.icon-mdi-f-more_vert:before {
  content: "\f6ec";
}

.icon-mdi-f-motorcycle:before {
  content: "\f6ed";
}

.icon-mdi-f-mouse:before {
  content: "\f6ee";
}

.icon-mdi-f-move_to_inbox:before {
  content: "\f6ef";
}

.icon-mdi-f-movie:before {
  content: "\f6f0";
}

.icon-mdi-f-movie_filter:before {
  content: "\f6f1";
}

.icon-mdi-f-multiline_chart:before {
  content: "\f6f2";
}

.icon-mdi-f-music_note:before {
  content: "\f6f3";
}

.icon-mdi-f-music_video:before {
  content: "\f6f4";
}

.icon-mdi-f-my_location:before {
  content: "\f6f5";
}

.icon-mdi-f-nature:before {
  content: "\f6f6";
}

.icon-mdi-f-nature_people:before {
  content: "\f6f7";
}

.icon-mdi-f-navigate_before:before {
  content: "\f6f8";
}

.icon-mdi-f-navigate_next:before {
  content: "\f6f9";
}

.icon-mdi-f-navigation:before {
  content: "\f6fa";
}

.icon-mdi-f-near_me:before {
  content: "\f6fb";
}

.icon-mdi-f-network_cell:before {
  content: "\f6fc";
}

.icon-mdi-f-network_check:before {
  content: "\f6fe";
}

.icon-mdi-f-network_locked:before {
  content: "\f6ff";
}

.icon-mdi-f-network_wifi:before {
  content: "\f700";
}

.icon-mdi-f-new_releases:before {
  content: "\f702";
}

.icon-mdi-f-next_week:before {
  content: "\f703";
}

.icon-mdi-f-nfc:before {
  content: "\f704";
}

.icon-mdi-f-no_encryption:before {
  content: "\f705";
}

.icon-mdi-f-no_sim:before {
  content: "\f706";
}

.icon-mdi-f-not_interested:before {
  content: "\f707";
}

.icon-mdi-f-note:before {
  content: "\f708";
}

.icon-mdi-f-note_add:before {
  content: "\f709";
}

.icon-mdi-f-offline_pin:before {
  content: "\f70a";
}

.icon-mdi-f-ondemand_video:before {
  content: "\f70b";
}

.icon-mdi-f-opacity:before {
  content: "\f70c";
}

.icon-mdi-f-open_in_browser:before {
  content: "\f70d";
}

.icon-mdi-f-open_in_new:before {
  content: "\f70e";
}

.icon-mdi-f-open_with:before {
  content: "\f70f";
}

.icon-mdi-f-pageview:before {
  content: "\f710";
}

.icon-mdi-f-palette:before {
  content: "\f711";
}

.icon-mdi-f-pan_tool:before {
  content: "\f712";
}

.icon-mdi-f-panorama:before {
  content: "\f713";
}

.icon-mdi-f-panorama_fish_eye:before {
  content: "\f714";
}

.icon-mdi-f-panorama_horizontal:before {
  content: "\f715";
}

.icon-mdi-f-panorama_vertical:before {
  content: "\f716";
}

.icon-mdi-f-panorama_wide_angle:before {
  content: "\f717";
}

.icon-mdi-f-pause:before {
  content: "\f718";
}

.icon-mdi-f-pause_circle_filled:before {
  content: "\f719";
}

.icon-mdi-f-pause_circle_outline:before {
  content: "\f71a";
}

.icon-mdi-f-payment:before {
  content: "\f71b";
}

.icon-mdi-f-perm_camera_mic:before {
  content: "\f71c";
}

.icon-mdi-f-perm_contact_calendar:before {
  content: "\f71d";
}

.icon-mdi-f-perm_data_setting:before {
  content: "\f71e";
}

.icon-mdi-f-perm_device_information:before {
  content: "\f71f";
}

.icon-mdi-f-perm_identity:before {
  content: "\f720";
}

.icon-mdi-f-perm_media:before {
  content: "\f721";
}

.icon-mdi-f-perm_phone_msg:before {
  content: "\f722";
}

.icon-mdi-f-perm_scan_wifi:before {
  content: "\f723";
}

.icon-mdi-f-person_pin:before {
  content: "\f724";
}

.icon-mdi-f-person_pin_circle:before {
  content: "\f725";
}

.icon-mdi-f-personal_video:before {
  content: "\f726";
}

.icon-mdi-f-pets:before {
  content: "\f727";
}

.icon-mdi-f-phone:before {
  content: "\f728";
}

.icon-mdi-f-phone_android:before {
  content: "\f729";
}

.icon-mdi-f-phone_bluetooth_speaker:before {
  content: "\f72a";
}

.icon-mdi-f-phone_forwarded:before {
  content: "\f72b";
}

.icon-mdi-f-phone_in_talk:before {
  content: "\f72c";
}

.icon-mdi-f-phone_iphone:before {
  content: "\f72d";
}

.icon-mdi-f-phone_locked:before {
  content: "\f72e";
}

.icon-mdi-f-phone_missed:before {
  content: "\f72f";
}

.icon-mdi-f-phone_paused:before {
  content: "\f730";
}

.icon-mdi-f-phonelink:before {
  content: "\f731";
}

.icon-mdi-f-phonelink_erase:before {
  content: "\f732";
}

.icon-mdi-f-phonelink_lock:before {
  content: "\f733";
}

.icon-mdi-f-phonelink_off:before {
  content: "\f734";
}

.icon-mdi-f-phonelink_ring:before {
  content: "\f735";
}

.icon-mdi-f-phonelink_setup:before {
  content: "\f736";
}

.icon-mdi-f-photo:before {
  content: "\f737";
}

.icon-mdi-f-photo_album:before {
  content: "\f738";
}

.icon-mdi-f-photo_camera:before {
  content: "\f739";
}

.icon-mdi-f-photo_filter:before {
  content: "\f73a";
}

.icon-mdi-f-photo_library:before {
  content: "\f73b";
}

.icon-mdi-f-photo_size_select_actual:before {
  content: "\f73c";
}

.icon-mdi-f-photo_size_select_large:before {
  content: "\f73d";
}

.icon-mdi-f-photo_size_select_small:before {
  content: "\f73e";
}

.icon-mdi-f-picture_as_pdf:before {
  content: "\f73f";
}

.icon-mdi-f-picture_in_picture:before {
  content: "\f740";
}

.icon-mdi-f-picture_in_picture_alt:before {
  content: "\f741";
}

.icon-mdi-f-pie_chart:before {
  content: "\f742";
}

.icon-mdi-f-pie_chart_outlined:before {
  content: "\f743";
}

.icon-mdi-f-pin_drop:before {
  content: "\f744";
}

.icon-mdi-f-place:before {
  content: "\f745";
}

.icon-mdi-f-play_arrow:before {
  content: "\f746";
}

.icon-mdi-f-play_circle_filled:before {
  content: "\f747";
}

.icon-mdi-f-play_circle_outline:before {
  content: "\f748";
}

.icon-mdi-f-play_for_work:before {
  content: "\f749";
}

.icon-mdi-f-playlist_add:before {
  content: "\f74a";
}

.icon-mdi-f-playlist_add_check:before {
  content: "\f74b";
}

.icon-mdi-f-playlist_play:before {
  content: "\f74c";
}

.icon-mdi-f-polymer:before {
  content: "\f74d";
}

.icon-mdi-f-pool:before {
  content: "\f74e";
}

.icon-mdi-f-portable_wifi_off:before {
  content: "\f74f";
}

.icon-mdi-f-portrait:before {
  content: "\f750";
}

.icon-mdi-f-power:before {
  content: "\f751";
}

.icon-mdi-f-power_input:before {
  content: "\f752";
}

.icon-mdi-f-power_settings_new:before {
  content: "\f753";
}

.icon-mdi-f-pregnant_woman:before {
  content: "\f754";
}

.icon-mdi-f-present_to_all:before {
  content: "\f755";
}

.icon-mdi-f-print:before {
  content: "\f756";
}

.icon-mdi-f-priority_high:before {
  content: "\f757";
}

.icon-mdi-f-publish:before {
  content: "\f758";
}

.icon-mdi-f-query_builder:before {
  content: "\f759";
}

.icon-mdi-f-question_answer:before {
  content: "\f75a";
}

.icon-mdi-f-queue:before {
  content: "\f75b";
}

.icon-mdi-f-queue_music:before {
  content: "\f75c";
}

.icon-mdi-f-queue_play_next:before {
  content: "\f75d";
}

.icon-mdi-f-radio:before {
  content: "\f75e";
}

.icon-mdi-f-rate_review:before {
  content: "\f75f";
}

.icon-mdi-f-receipt:before {
  content: "\f760";
}

.icon-mdi-f-recent_actors:before {
  content: "\f761";
}

.icon-mdi-f-record_voice_over:before {
  content: "\f762";
}

.icon-mdi-f-redeem:before {
  content: "\f763";
}

.icon-mdi-f-redo:before {
  content: "\f764";
}

.icon-mdi-f-refresh:before {
  content: "\f765";
}

.icon-mdi-f-remove:before {
  content: "\f766";
}

.icon-mdi-f-remove_circle:before {
  content: "\f767";
}

.icon-mdi-f-remove_circle_outline:before {
  content: "\f768";
}

.icon-mdi-f-remove_from_queue:before {
  content: "\f769";
}

.icon-mdi-f-remove_red_eye:before {
  content: "\f76a";
}

.icon-mdi-f-remove_shopping_cart:before {
  content: "\f76b";
}

.icon-mdi-f-reorder:before {
  content: "\f76c";
}

.icon-mdi-f-repeat:before {
  content: "\f76d";
}

.icon-mdi-f-repeat_one:before {
  content: "\f76e";
}

.icon-mdi-f-replay:before {
  content: "\f76f";
}

.icon-mdi-f-replay_10:before {
  content: "\f770";
}

.icon-mdi-f-replay_30:before {
  content: "\f771";
}

.icon-mdi-f-replay_5:before {
  content: "\f772";
}

.icon-mdi-f-reply:before {
  content: "\f773";
}

.icon-mdi-f-reply_all:before {
  content: "\f774";
}

.icon-mdi-f-report:before {
  content: "\f775";
}

.icon-mdi-f-report_problem:before {
  content: "\f776";
}

.icon-mdi-f-restaurant:before {
  content: "\f777";
}

.icon-mdi-f-restaurant_menu:before {
  content: "\f778";
}

.icon-mdi-f-restore:before {
  content: "\f779";
}

.icon-mdi-f-restore_page:before {
  content: "\f77a";
}

.icon-mdi-f-ring_volume:before {
  content: "\f77b";
}

.icon-mdi-f-room:before {
  content: "\f77c";
}

.icon-mdi-f-room_service:before {
  content: "\f77d";
}

.icon-mdi-f-rotate_90_degrees_ccw:before {
  content: "\f77e";
}

.icon-mdi-f-rotate_left:before {
  content: "\f77f";
}

.icon-mdi-f-rotate_right:before {
  content: "\f780";
}

.icon-mdi-f-rounded_corner:before {
  content: "\f781";
}

.icon-mdi-f-router:before {
  content: "\f782";
}

.icon-mdi-f-rowing:before {
  content: "\f783";
}

.icon-mdi-f-rss_feed:before {
  content: "\f784";
}

.icon-mdi-f-rv_hookup:before {
  content: "\f785";
}

.icon-mdi-f-satellite:before {
  content: "\f786";
}

.icon-mdi-f-save:before {
  content: "\f787";
}

.icon-mdi-f-scanner:before {
  content: "\f788";
}

.icon-mdi-f-schedule:before {
  content: "\f789";
}

.icon-mdi-f-screen_lock_landscape:before {
  content: "\f78a";
}

.icon-mdi-f-screen_lock_portrait:before {
  content: "\f78b";
}

.icon-mdi-f-screen_lock_rotation:before {
  content: "\f78c";
}

.icon-mdi-f-screen_rotation:before {
  content: "\f78d";
}

.icon-mdi-f-screen_share:before {
  content: "\f78e";
}

.icon-mdi-f-sd_card:before {
  content: "\f78f";
}

.icon-mdi-f-sd_storage:before {
  content: "\f790";
}

.icon-mdi-f-search:before {
  content: "\f791";
}

.icon-mdi-f-security:before {
  content: "\f792";
}

.icon-mdi-f-select_all:before {
  content: "\f793";
}

.icon-mdi-f-send:before {
  content: "\f794";
}

.icon-mdi-f-settings:before {
  content: "\f795";
}

.icon-mdi-f-settings_applications:before {
  content: "\f796";
}

.icon-mdi-f-settings_backup_restore:before {
  content: "\f797";
}

.icon-mdi-f-settings_bluetooth:before {
  content: "\f798";
}

.icon-mdi-f-settings_brightness:before {
  content: "\f799";
}

.icon-mdi-f-settings_cell:before {
  content: "\f79a";
}

.icon-mdi-f-settings_ethernet:before {
  content: "\f79b";
}

.icon-mdi-f-settings_input_antenna:before {
  content: "\f79c";
}

.icon-mdi-f-settings_input_component:before {
  content: "\f79d";
}

.icon-mdi-f-settings_input_hdmi:before {
  content: "\f79e";
}

.icon-mdi-f-settings_input_svideo:before {
  content: "\f79f";
}

.icon-mdi-f-settings_overscan:before {
  content: "\f7a0";
}

.icon-mdi-f-settings_phone:before {
  content: "\f7a1";
}

.icon-mdi-f-settings_power:before {
  content: "\f7a2";
}

.icon-mdi-f-settings_remote:before {
  content: "\f7a3";
}

.icon-mdi-f-settings_system_daydream:before {
  content: "\f7a4";
}

.icon-mdi-f-settings_voice:before {
  content: "\f7a5";
}

.icon-mdi-f-shop:before {
  content: "\f7a6";
}

.icon-mdi-f-shop_two:before {
  content: "\f7a7";
}

.icon-mdi-f-shopping_basket:before {
  content: "\f7a8";
}

.icon-mdi-f-shopping_cart:before {
  content: "\f7a9";
}

.icon-mdi-f-short_text:before {
  content: "\f7aa";
}

.icon-mdi-f-show_chart:before {
  content: "\f7ab";
}

.icon-mdi-f-shuffle:before {
  content: "\f7ac";
}

.icon-mdi-f-signal_cellular_0_bar:before {
  content: "\f7ad";
}

.icon-mdi-f-signal_cellular_1_bar:before {
  content: "\f7ae";
}

.icon-mdi-f-signal_cellular_2_bar:before {
  content: "\f7b0";
}

.icon-mdi-f-signal_cellular_3_bar:before {
  content: "\f7b2";
}

.icon-mdi-f-signal_cellular_4_bar:before {
  content: "\f7b4";
}

.icon-mdi-f-signal_cellular_connected_no_internet_0_bar:before {
  content: "\f7b5";
}

.icon-mdi-f-signal_cellular_connected_no_internet_1_bar:before {
  content: "\f7b7";
}

.icon-mdi-f-signal_cellular_connected_no_internet_2_bar:before {
  content: "\f7b9";
}

.icon-mdi-f-signal_cellular_connected_no_internet_3_bar:before {
  content: "\f7bb";
}

.icon-mdi-f-signal_cellular_connected_no_internet_4_bar:before {
  content: "\f7bd";
}

.icon-mdi-f-signal_cellular_no_sim:before {
  content: "\f7be";
}

.icon-mdi-f-signal_cellular_null:before {
  content: "\f7bf";
}

.icon-mdi-f-signal_cellular_off:before {
  content: "\f7c0";
}

.icon-mdi-f-signal_wifi_0_bar:before {
  content: "\f7c1";
}

.icon-mdi-f-signal_wifi_1_bar:before {
  content: "\f7c2";
}

.icon-mdi-f-signal_wifi_1_bar_lock:before {
  content: "\f7c4";
}

.icon-mdi-f-signal_wifi_2_bar:before {
  content: "\f7c6";
}

.icon-mdi-f-signal_wifi_2_bar_lock:before {
  content: "\f7c8";
}

.icon-mdi-f-signal_wifi_3_bar:before {
  content: "\f7ca";
}

.icon-mdi-f-signal_wifi_3_bar_lock:before {
  content: "\f7cc";
}

.icon-mdi-f-signal_wifi_4_bar_lock:before {
  content: "\f7ce";
}

.icon-mdi-f-signal_wifi_off:before {
  content: "\f7cf";
}

.icon-mdi-f-signal_wifi_statusbar_1_bar:before {
  content: "\f7d0";
}

.icon-mdi-f-signal_wifi_statusbar_2_bar:before {
  content: "\f7d2";
}

.icon-mdi-f-signal_wifi_statusbar_3_bar:before {
  content: "\f7d4";
}

.icon-mdi-f-signal_wifi_statusbar_4_bar:before {
  content: "\f7d6";
}

.icon-mdi-f-signal_wifi_statusbar_connected_no_internet:before {
  content: "\f7d7";
}

.icon-mdi-f-signal_wifi_statusbar_connected_no_internet_1:before {
  content: "\f7d9";
}

.icon-mdi-f-signal_wifi_statusbar_connected_no_internet_2:before {
  content: "\f7db";
}

.icon-mdi-f-signal_wifi_statusbar_connected_no_internet_3:before {
  content: "\f7dd";
}

.icon-mdi-f-signal_wifi_statusbar_connected_no_internet_4:before {
  content: "\f7df";
}

.icon-mdi-f-signal_wifi_statusbar_not_connected:before {
  content: "\f7e0";
}

.icon-mdi-f-signal_wifi_statusbar_null:before {
  content: "\f7e2";
}

.icon-mdi-f-sim_card:before {
  content: "\f7e3";
}

.icon-mdi-f-sim_card_alert:before {
  content: "\f7e4";
}

.icon-mdi-f-skip_next:before {
  content: "\f7e5";
}

.icon-mdi-f-skip_previous:before {
  content: "\f7e6";
}

.icon-mdi-f-slideshow:before {
  content: "\f7e7";
}

.icon-mdi-f-slow_motion_video:before {
  content: "\f7e8";
}

.icon-mdi-f-smartphone:before {
  content: "\f7e9";
}

.icon-mdi-f-smoke_free:before {
  content: "\f7ea";
}

.icon-mdi-f-smoking_rooms:before {
  content: "\f7eb";
}

.icon-mdi-f-sms:before {
  content: "\f7ec";
}

.icon-mdi-f-sms_failed:before {
  content: "\f7ed";
}

.icon-mdi-f-snooze:before {
  content: "\f7ee";
}

.icon-mdi-f-sort:before {
  content: "\f7ef";
}

.icon-mdi-f-sort_by_alpha:before {
  content: "\f7f0";
}

.icon-mdi-f-spa:before {
  content: "\f7f1";
}

.icon-mdi-f-space_bar:before {
  content: "\f7f2";
}

.icon-mdi-f-speaker:before {
  content: "\f7f3";
}

.icon-mdi-f-speaker_group:before {
  content: "\f7f4";
}

.icon-mdi-f-speaker_notes:before {
  content: "\f7f5";
}

.icon-mdi-f-speaker_notes_off:before {
  content: "\f7f6";
}

.icon-mdi-f-speaker_phone:before {
  content: "\f7f7";
}

.icon-mdi-f-spellcheck:before {
  content: "\f7f8";
}

.icon-mdi-f-star_rate:before {
  content: "\f7f9";
}

.icon-mdi-f-stars:before {
  content: "\f7fa";
}

.icon-mdi-f-stay_current_landscape:before {
  content: "\f7fb";
}

.icon-mdi-f-stay_current_portrait:before {
  content: "\f7fc";
}

.icon-mdi-f-stay_primary_landscape:before {
  content: "\f7fd";
}

.icon-mdi-f-stay_primary_portrait:before {
  content: "\f7fe";
}

.icon-mdi-f-stop:before {
  content: "\f7ff";
}

.icon-mdi-f-stop_screen_share:before {
  content: "\f800";
}

.icon-mdi-f-storage:before {
  content: "\f801";
}

.icon-mdi-f-store:before {
  content: "\f802";
}

.icon-mdi-f-straighten:before {
  content: "\f803";
}

.icon-mdi-f-streetview:before {
  content: "\f804";
}

.icon-mdi-f-strikethrough_s:before {
  content: "\f805";
}

.icon-mdi-f-style:before {
  content: "\f806";
}

.icon-mdi-f-subdirectory_arrow_left:before {
  content: "\f807";
}

.icon-mdi-f-subdirectory_arrow_right:before {
  content: "\f808";
}

.icon-mdi-f-subject:before {
  content: "\f809";
}

.icon-mdi-f-subscriptions:before {
  content: "\f80a";
}

.icon-mdi-f-subtitles:before {
  content: "\f80b";
}

.icon-mdi-f-subway:before {
  content: "\f80c";
}

.icon-mdi-f-supervisor_account:before {
  content: "\f80d";
}

.icon-mdi-f-surround_sound:before {
  content: "\f80e";
}

.icon-mdi-f-swap_calls:before {
  content: "\f80f";
}

.icon-mdi-f-swap_horiz:before {
  content: "\f810";
}

.icon-mdi-f-swap_vert:before {
  content: "\f811";
}

.icon-mdi-f-swap_vertical_circle:before {
  content: "\f812";
}

.icon-mdi-f-switch_camera:before {
  content: "\f813";
}

.icon-mdi-f-switch_video:before {
  content: "\f814";
}

.icon-mdi-f-sync:before {
  content: "\f815";
}

.icon-mdi-f-sync_disabled:before {
  content: "\f816";
}

.icon-mdi-f-sync_problem:before {
  content: "\f817";
}

.icon-mdi-f-system_update:before {
  content: "\f818";
}

.icon-mdi-f-system_update_alt:before {
  content: "\f819";
}

.icon-mdi-f-tab:before {
  content: "\f81a";
}

.icon-mdi-f-tab_unselected:before {
  content: "\f81b";
}

.icon-mdi-f-tablet:before {
  content: "\f81c";
}

.icon-mdi-f-tablet_android:before {
  content: "\f81d";
}

.icon-mdi-f-tablet_mac:before {
  content: "\f81e";
}

.icon-mdi-f-tap_and_play:before {
  content: "\f81f";
}

.icon-mdi-f-terrain:before {
  content: "\f820";
}

.icon-mdi-f-text_fields:before {
  content: "\f821";
}

.icon-mdi-f-text_format:before {
  content: "\f822";
}

.icon-mdi-f-textsms:before {
  content: "\f823";
}

.icon-mdi-f-texture:before {
  content: "\f824";
}

.icon-mdi-f-theaters:before {
  content: "\f825";
}

.icon-mdi-f-thumb_down:before {
  content: "\f826";
}

.icon-mdi-f-thumb_up:before {
  content: "\f827";
}

.icon-mdi-f-thumbs_up_down:before {
  content: "\f828";
}

.icon-mdi-f-time_to_leave:before {
  content: "\f829";
}

.icon-mdi-f-timelapse:before {
  content: "\f82a";
}

.icon-mdi-f-timeline:before {
  content: "\f82b";
}

.icon-mdi-f-timer:before {
  content: "\f82c";
}

.icon-mdi-f-timer_10:before {
  content: "\f82d";
}

.icon-mdi-f-timer_3:before {
  content: "\f82e";
}

.icon-mdi-f-timer_off:before {
  content: "\f82f";
}

.icon-mdi-f-title:before {
  content: "\f830";
}

.icon-mdi-f-toc:before {
  content: "\f831";
}

.icon-mdi-f-today:before {
  content: "\f832";
}

.icon-mdi-f-toll:before {
  content: "\f833";
}

.icon-mdi-f-tonality:before {
  content: "\f834";
}

.icon-mdi-f-touch_app:before {
  content: "\f835";
}

.icon-mdi-f-toys:before {
  content: "\f836";
}

.icon-mdi-f-track_changes:before {
  content: "\f837";
}

.icon-mdi-f-traffic:before {
  content: "\f838";
}

.icon-mdi-f-train:before {
  content: "\f839";
}

.icon-mdi-f-tram:before {
  content: "\f83a";
}

.icon-mdi-f-transfer_within_a_station:before {
  content: "\f83b";
}

.icon-mdi-f-transform:before {
  content: "\f83c";
}

.icon-mdi-f-translate:before {
  content: "\f83d";
}

.icon-mdi-f-trending_down:before {
  content: "\f83e";
}

.icon-mdi-f-trending_flat:before {
  content: "\f83f";
}

.icon-mdi-f-trending_up:before {
  content: "\f840";
}

.icon-mdi-f-tune:before {
  content: "\f841";
}

.icon-mdi-f-turned_in:before {
  content: "\f842";
}

.icon-mdi-f-turned_in_not:before {
  content: "\f843";
}

.icon-mdi-f-tv:before {
  content: "\f844";
}

.icon-mdi-f-unarchive:before {
  content: "\f845";
}

.icon-mdi-f-undo:before {
  content: "\f846";
}

.icon-mdi-f-unfold_less:before {
  content: "\f847";
}

.icon-mdi-f-unfold_more:before {
  content: "\f848";
}

.icon-mdi-f-update:before {
  content: "\f849";
}

.icon-mdi-f-usb:before {
  content: "\f84a";
}

.icon-mdi-f-verified_user:before {
  content: "\f84b";
}

.icon-mdi-f-vertical_align_bottom:before {
  content: "\f84c";
}

.icon-mdi-f-vertical_align_center:before {
  content: "\f84d";
}

.icon-mdi-f-vertical_align_top:before {
  content: "\f84e";
}

.icon-mdi-f-vibration:before {
  content: "\f84f";
}

.icon-mdi-f-video_call:before {
  content: "\f850";
}

.icon-mdi-f-video_label:before {
  content: "\f851";
}

.icon-mdi-f-video_library:before {
  content: "\f852";
}

.icon-mdi-f-videocam:before {
  content: "\f853";
}

.icon-mdi-f-videocam_off:before {
  content: "\f854";
}

.icon-mdi-f-videogame_asset:before {
  content: "\f855";
}

.icon-mdi-f-view_agenda:before {
  content: "\f856";
}

.icon-mdi-f-view_array:before {
  content: "\f857";
}

.icon-mdi-f-view_carousel:before {
  content: "\f858";
}

.icon-mdi-f-view_column:before {
  content: "\f859";
}

.icon-mdi-f-view_comfy:before {
  content: "\f85a";
}

.icon-mdi-f-view_compact:before {
  content: "\f85b";
}

.icon-mdi-f-view_day:before {
  content: "\f85c";
}

.icon-mdi-f-view_headline:before {
  content: "\f85d";
}

.icon-mdi-f-view_list:before {
  content: "\f85e";
}

.icon-mdi-f-view_module:before {
  content: "\f85f";
}

.icon-mdi-f-view_quilt:before {
  content: "\f860";
}

.icon-mdi-f-view_stream:before {
  content: "\f861";
}

.icon-mdi-f-view_week:before {
  content: "\f862";
}

.icon-mdi-f-vignette:before {
  content: "\f863";
}

.icon-mdi-f-visibility:before {
  content: "\f864";
}

.icon-mdi-f-visibility_off:before {
  content: "\f865";
}

.icon-mdi-f-voice_chat:before {
  content: "\f866";
}

.icon-mdi-f-voicemail:before {
  content: "\f867";
}

.icon-mdi-f-volume_down:before {
  content: "\f868";
}

.icon-mdi-f-volume_mute:before {
  content: "\f869";
}

.icon-mdi-f-volume_off:before {
  content: "\f86a";
}

.icon-mdi-f-volume_up:before {
  content: "\f86b";
}

.icon-mdi-f-vpn_key:before {
  content: "\f86c";
}

.icon-mdi-f-vpn_lock:before {
  content: "\f86d";
}

.icon-mdi-f-wallpaper:before {
  content: "\f86e";
}

.icon-mdi-f-watch:before {
  content: "\f86f";
}

.icon-mdi-f-watch_later:before {
  content: "\f870";
}

.icon-mdi-f-wb_auto:before {
  content: "\f871";
}

.icon-mdi-f-wb_cloudy:before {
  content: "\f872";
}

.icon-mdi-f-wb_incandescent:before {
  content: "\f873";
}

.icon-mdi-f-wb_iridescent:before {
  content: "\f874";
}

.icon-mdi-f-wb_sunny:before {
  content: "\f875";
}

.icon-mdi-f-wc:before {
  content: "\f876";
}

.icon-mdi-f-web:before {
  content: "\f877";
}

.icon-mdi-f-web_asset:before {
  content: "\f878";
}

.icon-mdi-f-weekend:before {
  content: "\f879";
}

.icon-mdi-f-widgets:before {
  content: "\f87a";
}

.icon-mdi-f-wifi:before {
  content: "\f87b";
}

.icon-mdi-f-wifi_lock:before {
  content: "\f87c";
}

.icon-mdi-f-wifi_tethering:before {
  content: "\f87d";
}

.icon-mdi-f-work:before {
  content: "\f87e";
}

.icon-mdi-f-wrap_text:before {
  content: "\f87f";
}

.icon-mdi-f-youtube_searched_for:before {
  content: "\f880";
}

.icon-mdi-f-zoom_in:before {
  content: "\f881";
}

.icon-mdi-f-zoom_out:before {
  content: "\f882";
}

.icon-mdi-f-zoom_out_map:before {
  content: "\f883";
}

.icon-mdi-o-360:before {
  content: "\f884";
}

.icon-mdi-o-3d_rotation:before {
  content: "\f885";
}

.icon-mdi-o-4k:before {
  content: "\f886";
}

.icon-mdi-o-5g:before {
  content: "\f887";
}

.icon-mdi-o-ac_unit:before {
  content: "\f888";
}

.icon-mdi-o-access_alarm:before {
  content: "\f889";
}

.icon-mdi-o-access_alarms:before {
  content: "\f88a";
}

.icon-mdi-o-access_time:before {
  content: "\f88b";
}

.icon-mdi-o-accessibility:before {
  content: "\f88c";
}

.icon-mdi-o-accessibility_new:before {
  content: "\f88d";
}

.icon-mdi-o-accessible:before {
  content: "\f88e";
}

.icon-mdi-o-accessible_forward:before {
  content: "\f88f";
}

.icon-mdi-o-account_balance:before {
  content: "\f890";
}

.icon-mdi-o-account_balance_wallet:before {
  content: "\f891";
}

.icon-mdi-o-account_circle:before {
  content: "\f892";
}

.icon-mdi-o-account_tree:before {
  content: "\f893";
}

.icon-mdi-o-ad_units:before {
  content: "\f894";
}

.icon-mdi-o-adb:before {
  content: "\f895";
}

.icon-mdi-o-add:before {
  content: "\f896";
}

.icon-mdi-o-add_a_photo:before {
  content: "\f897";
}

.icon-mdi-o-add_alarm:before {
  content: "\f898";
}

.icon-mdi-o-add_alert:before {
  content: "\f899";
}

.icon-mdi-o-add_box:before {
  content: "\f89a";
}

.icon-mdi-o-add_business:before {
  content: "\f89b";
}

.icon-mdi-o-add_circle:before {
  content: "\f89c";
}

.icon-mdi-o-add_circle_outline:before {
  content: "\f89d";
}

.icon-mdi-o-add_comment:before {
  content: "\f89e";
}

.icon-mdi-o-add_ic_call:before {
  content: "\f89f";
}

.icon-mdi-o-add_location:before {
  content: "\f8a0";
}

.icon-mdi-o-add_location_alt:before {
  content: "\f8a1";
}

.icon-mdi-o-add_photo_alternate:before {
  content: "\f8a2";
}

.icon-mdi-o-add_road:before {
  content: "\f8a3";
}

.icon-mdi-o-add_shopping_cart:before {
  content: "\f8a4";
}

.icon-mdi-o-add_to_home_screen:before {
  content: "\f8a5";
}

.icon-mdi-o-add_to_photos:before {
  content: "\f8a6";
}

.icon-mdi-o-add_to_queue:before {
  content: "\f8a7";
}

.icon-mdi-o-addchart:before {
  content: "\f8a8";
}

.icon-mdi-o-adjust:before {
  content: "\f8a9";
}

.icon-mdi-o-admin_panel_settings:before {
  content: "\f8aa";
}

.icon-mdi-o-agriculture:before {
  content: "\f8ab";
}

.icon-mdi-o-airline_seat_flat:before {
  content: "\f8ac";
}

.icon-mdi-o-airline_seat_flat_angled:before {
  content: "\f8ad";
}

.icon-mdi-o-airline_seat_individual_suite:before {
  content: "\f8ae";
}

.icon-mdi-o-airline_seat_legroom_extra:before {
  content: "\f8af";
}

.icon-mdi-o-airline_seat_legroom_normal:before {
  content: "\f8b0";
}

.icon-mdi-o-airline_seat_legroom_reduced:before {
  content: "\f8b1";
}

.icon-mdi-o-airline_seat_recline_extra:before {
  content: "\f8b2";
}

.icon-mdi-o-airline_seat_recline_normal:before {
  content: "\f8b3";
}

.icon-mdi-o-airplanemode_active:before {
  content: "\f8b4";
}

.icon-mdi-o-airplanemode_inactive:before {
  content: "\f8b5";
}

.icon-mdi-o-airplay:before {
  content: "\f8b6";
}

.icon-mdi-o-airport_shuttle:before {
  content: "\f8b7";
}

.icon-mdi-o-alarm:before {
  content: "\f8b8";
}

.icon-mdi-o-alarm_add:before {
  content: "\f8b9";
}

.icon-mdi-o-alarm_off:before {
  content: "\f8ba";
}

.icon-mdi-o-alarm_on:before {
  content: "\f8bb";
}

.icon-mdi-o-album:before {
  content: "\f8bc";
}

.icon-mdi-o-all_inbox:before {
  content: "\f8bd";
}

.icon-mdi-o-all_inclusive:before {
  content: "\f8be";
}

.icon-mdi-o-all_out:before {
  content: "\f8bf";
}

.icon-mdi-o-alt_route:before {
  content: "\f8c0";
}

.icon-mdi-o-alternate_email:before {
  content: "\f8c1";
}

.icon-mdi-o-amp_stories:before {
  content: "\f8c2";
}

.icon-mdi-o-analytics:before {
  content: "\f8c3";
}

.icon-mdi-o-anchor:before {
  content: "\f8c4";
}

.icon-mdi-o-android:before {
  content: "\f8c5";
}

.icon-mdi-o-announcement:before {
  content: "\f8c6";
}

.icon-mdi-o-apartment:before {
  content: "\f8c7";
}

.icon-mdi-o-api:before {
  content: "\f8c8";
}

.icon-mdi-o-app_blocking:before {
  content: "\f8c9";
}

.icon-mdi-o-app_settings_alt:before {
  content: "\f8ca";
}

.icon-mdi-o-apps:before {
  content: "\f8cb";
}

.icon-mdi-o-architecture:before {
  content: "\f8cc";
}

.icon-mdi-o-archive:before {
  content: "\f8cd";
}

.icon-mdi-o-arrow_back:before {
  content: "\f8ce";
}

.icon-mdi-o-arrow_back_ios:before {
  content: "\f8cf";
}

.icon-mdi-o-arrow_circle_down:before {
  content: "\f8d0";
}

.icon-mdi-o-arrow_circle_up:before {
  content: "\f8d1";
}

.icon-mdi-o-arrow_downward:before {
  content: "\f8d2";
}

.icon-mdi-o-arrow_drop_down:before {
  content: "\f8d3";
}

.icon-mdi-o-arrow_drop_down_circle:before {
  content: "\f8d4";
}

.icon-mdi-o-arrow_drop_up:before {
  content: "\f8d5";
}

.icon-mdi-o-arrow_forward:before {
  content: "\f8d6";
}

.icon-mdi-o-arrow_forward_ios:before {
  content: "\f8d7";
}

.icon-mdi-o-arrow_left:before {
  content: "\f8d8";
}

.icon-mdi-o-arrow_right:before {
  content: "\f8d9";
}

.icon-mdi-o-arrow_right_alt:before {
  content: "\f8da";
}

.icon-mdi-o-arrow_upward:before {
  content: "\f8db";
}

.icon-mdi-o-art_track:before {
  content: "\f8dc";
}

.icon-mdi-o-article:before {
  content: "\f8dd";
}

.icon-mdi-o-aspect_ratio:before {
  content: "\f8de";
}

.icon-mdi-o-assessment:before {
  content: "\f8df";
}

.icon-mdi-o-assignment:before {
  content: "\f8e0";
}

.icon-mdi-o-assignment_ind:before {
  content: "\f8e1";
}

.icon-mdi-o-assignment_late:before {
  content: "\f8e2";
}

.icon-mdi-o-assignment_return:before {
  content: "\f8e3";
}

.icon-mdi-o-assignment_returned:before {
  content: "\f8e4";
}

.icon-mdi-o-assignment_turned_in:before {
  content: "\f8e5";
}

.icon-mdi-o-assistant:before {
  content: "\f8e6";
}

.icon-mdi-o-assistant_photo:before {
  content: "\f8e7";
}

.icon-mdi-o-atm:before {
  content: "\f8e8";
}

.icon-mdi-o-attach_email:before {
  content: "\f8e9";
}

.icon-mdi-o-attach_file:before {
  content: "\f8ea";
}

.icon-mdi-o-attach_money:before {
  content: "\f8eb";
}

.icon-mdi-o-attachment:before {
  content: "\f8ec";
}

.icon-mdi-o-audiotrack:before {
  content: "\f8ed";
}

.icon-mdi-o-auto_delete:before {
  content: "\f8ee";
}

.icon-mdi-o-autorenew:before {
  content: "\f8ef";
}

.icon-mdi-o-av_timer:before {
  content: "\f8f0";
}

.icon-mdi-o-baby_changing_station:before {
  content: "\f8f1";
}

.icon-mdi-o-backpack:before {
  content: "\f8f2";
}

.icon-mdi-o-backspace:before {
  content: "\f8f3";
}

.icon-mdi-o-backup:before {
  content: "\f8f4";
}

.icon-mdi-o-backup_table:before {
  content: "\f8f5";
}

.icon-mdi-o-ballot:before {
  content: "\f8f6";
}

.icon-mdi-o-bar_chart:before {
  content: "\f8f7";
}

.icon-mdi-o-batch_prediction:before {
  content: "\f8f8";
}

.icon-mdi-o-bathtub:before {
  content: "\f8f9";
}

.icon-mdi-o-battery_alert:before {
  content: "\f8fa";
}

.icon-mdi-o-battery_charging_full:before {
  content: "\f8fb";
}

.icon-mdi-o-battery_full:before {
  content: "\f8fc";
}

.icon-mdi-o-battery_std:before {
  content: "\f8fd";
}

.icon-mdi-o-battery_unknown:before {
  content: "\f8fe";
}

.icon-mdi-o-beach_access:before {
  content: "\f8ff";
}

.icon-mdi-o-bedtime:before {
  content: "豈";
}

.icon-mdi-o-beenhere:before {
  content: "更";
}

.icon-mdi-o-bento:before {
  content: "車";
}

.icon-mdi-o-bike_scooter:before {
  content: "賈";
}

.icon-mdi-o-biotech:before {
  content: "滑";
}

.icon-mdi-o-block:before {
  content: "串";
}

.icon-mdi-o-bluetooth:before {
  content: "句";
}

.icon-mdi-o-bluetooth_audio:before {
  content: "龜";
}

.icon-mdi-o-bluetooth_connected:before {
  content: "龜";
}

.icon-mdi-o-bluetooth_disabled:before {
  content: "契";
}

.icon-mdi-o-bluetooth_searching:before {
  content: "金";
}

.icon-mdi-o-blur_circular:before {
  content: "喇";
}

.icon-mdi-o-blur_linear:before {
  content: "奈";
}

.icon-mdi-o-blur_off:before {
  content: "懶";
}

.icon-mdi-o-blur_on:before {
  content: "癩";
}

.icon-mdi-o-book:before {
  content: "羅";
}

.icon-mdi-o-bookmark:before {
  content: "蘿";
}

.icon-mdi-o-bookmark_border:before {
  content: "螺";
}

.icon-mdi-o-bookmarks:before {
  content: "裸";
}

.icon-mdi-o-border_all:before {
  content: "邏";
}

.icon-mdi-o-border_bottom:before {
  content: "樂";
}

.icon-mdi-o-border_clear:before {
  content: "洛";
}

.icon-mdi-o-border_horizontal:before {
  content: "烙";
}

.icon-mdi-o-border_inner:before {
  content: "珞";
}

.icon-mdi-o-border_left:before {
  content: "落";
}

.icon-mdi-o-border_outer:before {
  content: "酪";
}

.icon-mdi-o-border_right:before {
  content: "駱";
}

.icon-mdi-o-border_style:before {
  content: "亂";
}

.icon-mdi-o-border_top:before {
  content: "卵";
}

.icon-mdi-o-border_vertical:before {
  content: "欄";
}

.icon-mdi-o-branding_watermark:before {
  content: "爛";
}

.icon-mdi-o-brightness_1:before {
  content: "蘭";
}

.icon-mdi-o-brightness_2:before {
  content: "鸞";
}

.icon-mdi-o-brightness_3:before {
  content: "嵐";
}

.icon-mdi-o-brightness_4:before {
  content: "濫";
}

.icon-mdi-o-brightness_5:before {
  content: "藍";
}

.icon-mdi-o-brightness_6:before {
  content: "襤";
}

.icon-mdi-o-brightness_7:before {
  content: "拉";
}

.icon-mdi-o-brightness_auto:before {
  content: "臘";
}

.icon-mdi-o-brightness_high:before {
  content: "蠟";
}

.icon-mdi-o-brightness_low:before {
  content: "廊";
}

.icon-mdi-o-brightness_medium:before {
  content: "朗";
}

.icon-mdi-o-broken_image:before {
  content: "浪";
}

.icon-mdi-o-browser_not_supported:before {
  content: "狼";
}

.icon-mdi-o-brush:before {
  content: "郎";
}

.icon-mdi-o-bubble_chart:before {
  content: "來";
}

.icon-mdi-o-bug_report:before {
  content: "冷";
}

.icon-mdi-o-build:before {
  content: "勞";
}

.icon-mdi-o-build_circle:before {
  content: "擄";
}

.icon-mdi-o-burst_mode:before {
  content: "櫓";
}

.icon-mdi-o-business:before {
  content: "爐";
}

.icon-mdi-o-business_center:before {
  content: "盧";
}

.icon-mdi-o-cake:before {
  content: "老";
}

.icon-mdi-o-calculate:before {
  content: "蘆";
}

.icon-mdi-o-calendar_today:before {
  content: "虜";
}

.icon-mdi-o-calendar_view_day:before {
  content: "路";
}

.icon-mdi-o-call:before {
  content: "露";
}

.icon-mdi-o-call_end:before {
  content: "魯";
}

.icon-mdi-o-call_made:before {
  content: "鷺";
}

.icon-mdi-o-call_merge:before {
  content: "碌";
}

.icon-mdi-o-call_missed:before {
  content: "祿";
}

.icon-mdi-o-call_missed_outgoing:before {
  content: "綠";
}

.icon-mdi-o-call_received:before {
  content: "菉";
}

.icon-mdi-o-call_split:before {
  content: "錄";
}

.icon-mdi-o-call_to_action:before {
  content: "鹿";
}

.icon-mdi-o-camera:before {
  content: "論";
}

.icon-mdi-o-camera_alt:before {
  content: "壟";
}

.icon-mdi-o-camera_enhance:before {
  content: "弄";
}

.icon-mdi-o-camera_front:before {
  content: "籠";
}

.icon-mdi-o-camera_rear:before {
  content: "聾";
}

.icon-mdi-o-camera_roll:before {
  content: "牢";
}

.icon-mdi-o-campaign:before {
  content: "磊";
}

.icon-mdi-o-cancel:before {
  content: "賂";
}

.icon-mdi-o-cancel_presentation:before {
  content: "雷";
}

.icon-mdi-o-cancel_schedule_send:before {
  content: "壘";
}

.icon-mdi-o-card_giftcard:before {
  content: "屢";
}

.icon-mdi-o-card_membership:before {
  content: "樓";
}

.icon-mdi-o-card_travel:before {
  content: "淚";
}

.icon-mdi-o-carpenter:before {
  content: "漏";
}

.icon-mdi-o-casino:before {
  content: "累";
}

.icon-mdi-o-cast:before {
  content: "縷";
}

.icon-mdi-o-cast_connected:before {
  content: "陋";
}

.icon-mdi-o-cast_for_education:before {
  content: "勒";
}

.icon-mdi-o-category:before {
  content: "肋";
}

.icon-mdi-o-center_focus_strong:before {
  content: "凜";
}

.icon-mdi-o-center_focus_weak:before {
  content: "凌";
}

.icon-mdi-o-change_history:before {
  content: "稜";
}

.icon-mdi-o-charging_station:before {
  content: "綾";
}

.icon-mdi-o-chat:before {
  content: "菱";
}

.icon-mdi-o-chat_bubble:before {
  content: "陵";
}

.icon-mdi-o-chat_bubble_outline:before {
  content: "讀";
}

.icon-mdi-o-check:before {
  content: "拏";
}

.icon-mdi-o-check_box:before {
  content: "樂";
}

.icon-mdi-o-check_box_outline_blank:before {
  content: "諾";
}

.icon-mdi-o-check_circle:before {
  content: "丹";
}

.icon-mdi-o-check_circle_outline:before {
  content: "寧";
}

.icon-mdi-o-checkroom:before {
  content: "怒";
}

.icon-mdi-o-chevron_left:before {
  content: "率";
}

.icon-mdi-o-chevron_right:before {
  content: "異";
}

.icon-mdi-o-child_care:before {
  content: "北";
}

.icon-mdi-o-child_friendly:before {
  content: "磻";
}

.icon-mdi-o-chrome_reader_mode:before {
  content: "便";
}

.icon-mdi-o-class:before {
  content: "復";
}

.icon-mdi-o-cleaning_services:before {
  content: "不";
}

.icon-mdi-o-clear:before {
  content: "泌";
}

.icon-mdi-o-clear_all:before {
  content: "數";
}

.icon-mdi-o-close:before {
  content: "索";
}

.icon-mdi-o-close_fullscreen:before {
  content: "參";
}

.icon-mdi-o-closed_caption:before {
  content: "塞";
}

.icon-mdi-o-closed_caption_disabled:before {
  content: "省";
}

.icon-mdi-o-cloud:before {
  content: "葉";
}

.icon-mdi-o-cloud_circle:before {
  content: "說";
}

.icon-mdi-o-cloud_done:before {
  content: "殺";
}

.icon-mdi-o-cloud_download:before {
  content: "辰";
}

.icon-mdi-o-cloud_off:before {
  content: "沈";
}

.icon-mdi-o-cloud_queue:before {
  content: "拾";
}

.icon-mdi-o-cloud_upload:before {
  content: "若";
}

.icon-mdi-o-code:before {
  content: "掠";
}

.icon-mdi-o-collections:before {
  content: "略";
}

.icon-mdi-o-collections_bookmark:before {
  content: "亮";
}

.icon-mdi-o-color_lens:before {
  content: "兩";
}

.icon-mdi-o-colorize:before {
  content: "凉";
}

.icon-mdi-o-comment:before {
  content: "梁";
}

.icon-mdi-o-comment_bank:before {
  content: "糧";
}

.icon-mdi-o-commute:before {
  content: "良";
}

.icon-mdi-o-compare:before {
  content: "諒";
}

.icon-mdi-o-compare_arrows:before {
  content: "量";
}

.icon-mdi-o-compass_calibration:before {
  content: "勵";
}

.icon-mdi-o-computer:before {
  content: "呂";
}

.icon-mdi-o-confirmation_number:before {
  content: "女";
}

.icon-mdi-o-construction:before {
  content: "廬";
}

.icon-mdi-o-contact_mail:before {
  content: "旅";
}

.icon-mdi-o-contact_phone:before {
  content: "濾";
}

.icon-mdi-o-contact_support:before {
  content: "礪";
}

.icon-mdi-o-contactless:before {
  content: "閭";
}

.icon-mdi-o-contacts:before {
  content: "驪";
}

.icon-mdi-o-content_copy:before {
  content: "麗";
}

.icon-mdi-o-content_cut:before {
  content: "黎";
}

.icon-mdi-o-content_paste:before {
  content: "力";
}

.icon-mdi-o-control_camera:before {
  content: "曆";
}

.icon-mdi-o-control_point:before {
  content: "歷";
}

.icon-mdi-o-control_point_duplicate:before {
  content: "轢";
}

.icon-mdi-o-copyright:before {
  content: "年";
}

.icon-mdi-o-corporate_fare:before {
  content: "憐";
}

.icon-mdi-o-create:before {
  content: "戀";
}

.icon-mdi-o-create_new_folder:before {
  content: "撚";
}

.icon-mdi-o-credit_card:before {
  content: "漣";
}

.icon-mdi-o-crop:before {
  content: "煉";
}

.icon-mdi-o-crop_16_9:before {
  content: "璉";
}

.icon-mdi-o-crop_3_2:before {
  content: "秊";
}

.icon-mdi-o-crop_5_4:before {
  content: "練";
}

.icon-mdi-o-crop_7_5:before {
  content: "聯";
}

.icon-mdi-o-crop_din:before {
  content: "輦";
}

.icon-mdi-o-crop_free:before {
  content: "蓮";
}

.icon-mdi-o-crop_landscape:before {
  content: "連";
}

.icon-mdi-o-crop_original:before {
  content: "鍊";
}

.icon-mdi-o-crop_portrait:before {
  content: "列";
}

.icon-mdi-o-crop_rotate:before {
  content: "劣";
}

.icon-mdi-o-crop_square:before {
  content: "咽";
}

.icon-mdi-o-dashboard:before {
  content: "烈";
}

.icon-mdi-o-data_usage:before {
  content: "裂";
}

.icon-mdi-o-date_range:before {
  content: "說";
}

.icon-mdi-o-deck:before {
  content: "廉";
}

.icon-mdi-o-dehaze:before {
  content: "念";
}

.icon-mdi-o-delete:before {
  content: "捻";
}

.icon-mdi-o-delete_forever:before {
  content: "殮";
}

.icon-mdi-o-delete_outline:before {
  content: "簾";
}

.icon-mdi-o-delete_sweep:before {
  content: "獵";
}

.icon-mdi-o-departure_board:before {
  content: "令";
}

.icon-mdi-o-description:before {
  content: "囹";
}

.icon-mdi-o-design_services:before {
  content: "寧";
}

.icon-mdi-o-desktop_access_disabled:before {
  content: "嶺";
}

.icon-mdi-o-desktop_mac:before {
  content: "怜";
}

.icon-mdi-o-desktop_windows:before {
  content: "玲";
}

.icon-mdi-o-details:before {
  content: "瑩";
}

.icon-mdi-o-developer_board:before {
  content: "羚";
}

.icon-mdi-o-developer_mode:before {
  content: "聆";
}

.icon-mdi-o-device_hub:before {
  content: "鈴";
}

.icon-mdi-o-device_unknown:before {
  content: "零";
}

.icon-mdi-o-devices:before {
  content: "靈";
}

.icon-mdi-o-devices_other:before {
  content: "領";
}

.icon-mdi-o-dialer_sip:before {
  content: "例";
}

.icon-mdi-o-dialpad:before {
  content: "禮";
}

.icon-mdi-o-directions:before {
  content: "醴";
}

.icon-mdi-o-directions_bike:before {
  content: "隸";
}

.icon-mdi-o-directions_boat:before {
  content: "惡";
}

.icon-mdi-o-directions_bus:before {
  content: "了";
}

.icon-mdi-o-directions_car:before {
  content: "僚";
}

.icon-mdi-o-directions_off:before {
  content: "寮";
}

.icon-mdi-o-directions_railway:before {
  content: "尿";
}

.icon-mdi-o-directions_run:before {
  content: "料";
}

.icon-mdi-o-directions_subway:before {
  content: "樂";
}

.icon-mdi-o-directions_transit:before {
  content: "燎";
}

.icon-mdi-o-directions_walk:before {
  content: "療";
}

.icon-mdi-o-disc_full:before {
  content: "蓼";
}

.icon-mdi-o-dns:before {
  content: "遼";
}

.icon-mdi-o-do_not_step:before {
  content: "龍";
}

.icon-mdi-o-do_not_touch:before {
  content: "暈";
}

.icon-mdi-o-dock:before {
  content: "阮";
}

.icon-mdi-o-domain:before {
  content: "劉";
}

.icon-mdi-o-domain_disabled:before {
  content: "杻";
}

.icon-mdi-o-domain_verification:before {
  content: "柳";
}

.icon-mdi-o-done:before {
  content: "流";
}

.icon-mdi-o-done_all:before {
  content: "溜";
}

.icon-mdi-o-done_outline:before {
  content: "琉";
}

.icon-mdi-o-donut_large:before {
  content: "留";
}

.icon-mdi-o-donut_small:before {
  content: "硫";
}

.icon-mdi-o-double_arrow:before {
  content: "紐";
}

.icon-mdi-o-drafts:before {
  content: "類";
}

.icon-mdi-o-drag_handle:before {
  content: "六";
}

.icon-mdi-o-drag_indicator:before {
  content: "戮";
}

.icon-mdi-o-drive_eta:before {
  content: "陸";
}

.icon-mdi-o-dry:before {
  content: "倫";
}

.icon-mdi-o-duo:before {
  content: "崙";
}

.icon-mdi-o-dvr:before {
  content: "淪";
}

.icon-mdi-o-dynamic_feed:before {
  content: "輪";
}

.icon-mdi-o-dynamic_form:before {
  content: "律";
}

.icon-mdi-o-east:before {
  content: "慄";
}

.icon-mdi-o-eco:before {
  content: "栗";
}

.icon-mdi-o-edit:before {
  content: "率";
}

.icon-mdi-o-edit_attributes:before {
  content: "隆";
}

.icon-mdi-o-edit_location:before {
  content: "利";
}

.icon-mdi-o-edit_road:before {
  content: "吏";
}

.icon-mdi-o-eject:before {
  content: "履";
}

.icon-mdi-o-electric_bike:before {
  content: "易";
}

.icon-mdi-o-electric_car:before {
  content: "李";
}

.icon-mdi-o-electric_moped:before {
  content: "梨";
}

.icon-mdi-o-electric_scooter:before {
  content: "泥";
}

.icon-mdi-o-electrical_services:before {
  content: "理";
}

.icon-mdi-o-elevator:before {
  content: "痢";
}

.icon-mdi-o-email:before {
  content: "罹";
}

.icon-mdi-o-emoji_emotions:before {
  content: "裏";
}

.icon-mdi-o-emoji_events:before {
  content: "裡";
}

.icon-mdi-o-emoji_flags:before {
  content: "里";
}

.icon-mdi-o-emoji_food_beverage:before {
  content: "離";
}

.icon-mdi-o-emoji_nature:before {
  content: "匿";
}

.icon-mdi-o-emoji_objects:before {
  content: "溺";
}

.icon-mdi-o-emoji_people:before {
  content: "吝";
}

.icon-mdi-o-emoji_symbols:before {
  content: "燐";
}

.icon-mdi-o-emoji_transportation:before {
  content: "璘";
}

.icon-mdi-o-engineering:before {
  content: "藺";
}

.icon-mdi-o-enhanced_encryption:before {
  content: "隣";
}

.icon-mdi-o-equalizer:before {
  content: "鱗";
}

.icon-mdi-o-error:before {
  content: "麟";
}

.icon-mdi-o-error_outline:before {
  content: "林";
}

.icon-mdi-o-escalator:before {
  content: "淋";
}

.icon-mdi-o-escalator_warning:before {
  content: "臨";
}

.icon-mdi-o-euro:before {
  content: "立";
}

.icon-mdi-o-euro_symbol:before {
  content: "笠";
}

.icon-mdi-o-ev_station:before {
  content: "粒";
}

.icon-mdi-o-event:before {
  content: "狀";
}

.icon-mdi-o-event_available:before {
  content: "炙";
}

.icon-mdi-o-event_busy:before {
  content: "識";
}

.icon-mdi-o-event_note:before {
  content: "什";
}

.icon-mdi-o-event_seat:before {
  content: "茶";
}

.icon-mdi-o-exit_to_app:before {
  content: "刺";
}

.icon-mdi-o-expand_less:before {
  content: "切";
}

.icon-mdi-o-expand_more:before {
  content: "度";
}

.icon-mdi-o-explicit:before {
  content: "拓";
}

.icon-mdi-o-explore:before {
  content: "糖";
}

.icon-mdi-o-explore_off:before {
  content: "宅";
}

.icon-mdi-o-exposure:before {
  content: "洞";
}

.icon-mdi-o-exposure_neg_1:before {
  content: "暴";
}

.icon-mdi-o-exposure_neg_2:before {
  content: "輻";
}

.icon-mdi-o-exposure_plus_1:before {
  content: "行";
}

.icon-mdi-o-exposure_plus_2:before {
  content: "降";
}

.icon-mdi-o-exposure_zero:before {
  content: "見";
}

.icon-mdi-o-extension:before {
  content: "廓";
}

.icon-mdi-o-face:before {
  content: "兀";
}

.icon-mdi-o-fact_check:before {
  content: "嗀";
}

.icon-mdi-o-family_restroom:before {
  content: "﨎";
}

.icon-mdi-o-fast_forward:before {
  content: "﨏";
}

.icon-mdi-o-fast_rewind:before {
  content: "塚";
}

.icon-mdi-o-fastfood:before {
  content: "﨑";
}

.icon-mdi-o-favorite:before {
  content: "晴";
}

.icon-mdi-o-favorite_border:before {
  content: "﨓";
}

.icon-mdi-o-featured_play_list:before {
  content: "﨔";
}

.icon-mdi-o-featured_video:before {
  content: "凞";
}

.icon-mdi-o-feedback:before {
  content: "猪";
}

.icon-mdi-o-fence:before {
  content: "益";
}

.icon-mdi-o-fiber_dvr:before {
  content: "礼";
}

.icon-mdi-o-fiber_manual_record:before {
  content: "神";
}

.icon-mdi-o-fiber_new:before {
  content: "祥";
}

.icon-mdi-o-fiber_pin:before {
  content: "福";
}

.icon-mdi-o-fiber_smart_record:before {
  content: "靖";
}

.icon-mdi-o-filter:before {
  content: "精";
}

.icon-mdi-o-filter_1:before {
  content: "羽";
}

.icon-mdi-o-filter_2:before {
  content: "﨟";
}

.icon-mdi-o-filter_3:before {
  content: "蘒";
}

.icon-mdi-o-filter_4:before {
  content: "﨡";
}

.icon-mdi-o-filter_5:before {
  content: "諸";
}

.icon-mdi-o-filter_6:before {
  content: "﨣";
}

.icon-mdi-o-filter_7:before {
  content: "﨤";
}

.icon-mdi-o-filter_8:before {
  content: "逸";
}

.icon-mdi-o-filter_9:before {
  content: "都";
}

.icon-mdi-o-filter_9_plus:before {
  content: "﨧";
}

.icon-mdi-o-filter_alt:before {
  content: "﨨";
}

.icon-mdi-o-filter_b_and_w:before {
  content: "﨩";
}

.icon-mdi-o-filter_center_focus:before {
  content: "飯";
}

.icon-mdi-o-filter_drama:before {
  content: "飼";
}

.icon-mdi-o-filter_frames:before {
  content: "館";
}

.icon-mdi-o-filter_hdr:before {
  content: "鶴";
}

.icon-mdi-o-filter_list:before {
  content: "郞";
}

.icon-mdi-o-filter_none:before {
  content: "隷";
}

.icon-mdi-o-filter_tilt_shift:before {
  content: "侮";
}

.icon-mdi-o-filter_vintage:before {
  content: "僧";
}

.icon-mdi-o-find_in_page:before {
  content: "免";
}

.icon-mdi-o-find_replace:before {
  content: "勉";
}

.icon-mdi-o-fingerprint:before {
  content: "勤";
}

.icon-mdi-o-fire_extinguisher:before {
  content: "卑";
}

.icon-mdi-o-fireplace:before {
  content: "喝";
}

.icon-mdi-o-first_page:before {
  content: "嘆";
}

.icon-mdi-o-fitness_center:before {
  content: "器";
}

.icon-mdi-o-flag:before {
  content: "塀";
}

.icon-mdi-o-flaky:before {
  content: "墨";
}

.icon-mdi-o-flare:before {
  content: "層";
}

.icon-mdi-o-flash_auto:before {
  content: "屮";
}

.icon-mdi-o-flash_off:before {
  content: "悔";
}

.icon-mdi-o-flash_on:before {
  content: "慨";
}

.icon-mdi-o-flight:before {
  content: "憎";
}

.icon-mdi-o-flight_land:before {
  content: "懲";
}

.icon-mdi-o-flight_takeoff:before {
  content: "敏";
}

.icon-mdi-o-flip:before {
  content: "既";
}

.icon-mdi-o-flip_camera_android:before {
  content: "暑";
}

.icon-mdi-o-flip_camera_ios:before {
  content: "梅";
}

.icon-mdi-o-flip_to_back:before {
  content: "海";
}

.icon-mdi-o-flip_to_front:before {
  content: "渚";
}

.icon-mdi-o-folder:before {
  content: "漢";
}

.icon-mdi-o-folder_open:before {
  content: "煮";
}

.icon-mdi-o-folder_shared:before {
  content: "爫";
}

.icon-mdi-o-folder_special:before {
  content: "琢";
}

.icon-mdi-o-font_download:before {
  content: "碑";
}

.icon-mdi-o-food_bank:before {
  content: "社";
}

.icon-mdi-o-format_align_center:before {
  content: "祉";
}

.icon-mdi-o-format_align_justify:before {
  content: "祈";
}

.icon-mdi-o-format_align_left:before {
  content: "祐";
}

.icon-mdi-o-format_align_right:before {
  content: "祖";
}

.icon-mdi-o-format_bold:before {
  content: "祝";
}

.icon-mdi-o-format_clear:before {
  content: "禍";
}

.icon-mdi-o-format_color_reset:before {
  content: "禎";
}

.icon-mdi-o-format_indent_decrease:before {
  content: "穀";
}

.icon-mdi-o-format_indent_increase:before {
  content: "突";
}

.icon-mdi-o-format_italic:before {
  content: "節";
}

.icon-mdi-o-format_line_spacing:before {
  content: "練";
}

.icon-mdi-o-format_list_bulleted:before {
  content: "縉";
}

.icon-mdi-o-format_list_numbered:before {
  content: "繁";
}

.icon-mdi-o-format_list_numbered_rtl:before {
  content: "署";
}

.icon-mdi-o-format_paint:before {
  content: "者";
}

.icon-mdi-o-format_quote:before {
  content: "臭";
}

.icon-mdi-o-format_shapes:before {
  content: "艹";
}

.icon-mdi-o-format_size:before {
  content: "艹";
}

.icon-mdi-o-format_strikethrough:before {
  content: "著";
}

.icon-mdi-o-format_textdirection_l_to_r:before {
  content: "褐";
}

.icon-mdi-o-format_textdirection_r_to_l:before {
  content: "視";
}

.icon-mdi-o-format_underlined:before {
  content: "謁";
}

.icon-mdi-o-forum:before {
  content: "謹";
}

.icon-mdi-o-forward:before {
  content: "賓";
}

.icon-mdi-o-forward_10:before {
  content: "贈";
}

.icon-mdi-o-forward_30:before {
  content: "辶";
}

.icon-mdi-o-forward_to_inbox:before {
  content: "逸";
}

.icon-mdi-o-foundation:before {
  content: "難";
}

.icon-mdi-o-free_breakfast:before {
  content: "響";
}

.icon-mdi-o-fullscreen:before {
  content: "頻";
}

.icon-mdi-o-fullscreen_exit:before {
  content: "恵";
}

.icon-mdi-o-functions:before {
  content: "𤋮";
}

.icon-mdi-o-g_translate:before {
  content: "舘";
}

.icon-mdi-o-gamepad:before {
  content: "﩮";
}

.icon-mdi-o-gavel:before {
  content: "﩯";
}

.icon-mdi-o-gesture:before {
  content: "並";
}

.icon-mdi-o-get_app:before {
  content: "况";
}

.icon-mdi-o-gif:before {
  content: "全";
}

.icon-mdi-o-golf_course:before {
  content: "侀";
}

.icon-mdi-o-gps_fixed:before {
  content: "充";
}

.icon-mdi-o-gps_not_fixed:before {
  content: "冀";
}

.icon-mdi-o-gps_off:before {
  content: "勇";
}

.icon-mdi-o-grade:before {
  content: "勺";
}

.icon-mdi-o-gradient:before {
  content: "喝";
}

.icon-mdi-o-grading:before {
  content: "啕";
}

.icon-mdi-o-grain:before {
  content: "喙";
}

.icon-mdi-o-graphic_eq:before {
  content: "嗢";
}

.icon-mdi-o-grass:before {
  content: "塚";
}

.icon-mdi-o-grid_off:before {
  content: "墳";
}

.icon-mdi-o-grid_on:before {
  content: "奄";
}

.icon-mdi-o-group:before {
  content: "奔";
}

.icon-mdi-o-group_add:before {
  content: "婢";
}

.icon-mdi-o-group_work:before {
  content: "嬨";
}

.icon-mdi-o-handyman:before {
  content: "廒";
}

.icon-mdi-o-hd:before {
  content: "廙";
}

.icon-mdi-o-hdr_off:before {
  content: "彩";
}

.icon-mdi-o-hdr_on:before {
  content: "徭";
}

.icon-mdi-o-hdr_strong:before {
  content: "惘";
}

.icon-mdi-o-hdr_weak:before {
  content: "慎";
}

.icon-mdi-o-headset:before {
  content: "愈";
}

.icon-mdi-o-headset_mic:before {
  content: "憎";
}

.icon-mdi-o-healing:before {
  content: "慠";
}

.icon-mdi-o-hearing:before {
  content: "懲";
}

.icon-mdi-o-hearing_disabled:before {
  content: "戴";
}

.icon-mdi-o-height:before {
  content: "揄";
}

.icon-mdi-o-help:before {
  content: "搜";
}

.icon-mdi-o-help_center:before {
  content: "摒";
}

.icon-mdi-o-help_outline:before {
  content: "敖";
}

.icon-mdi-o-high_quality:before {
  content: "晴";
}

.icon-mdi-o-highlight:before {
  content: "朗";
}

.icon-mdi-o-highlight_alt:before {
  content: "望";
}

.icon-mdi-o-highlight_off:before {
  content: "杖";
}

.icon-mdi-o-history:before {
  content: "歹";
}

.icon-mdi-o-history_edu:before {
  content: "殺";
}

.icon-mdi-o-home:before {
  content: "流";
}

.icon-mdi-o-home_repair_service:before {
  content: "滛";
}

.icon-mdi-o-home_work:before {
  content: "滋";
}

.icon-mdi-o-horizontal_rule:before {
  content: "漢";
}

.icon-mdi-o-horizontal_split:before {
  content: "瀞";
}

.icon-mdi-o-hot_tub:before {
  content: "煮";
}

.icon-mdi-o-hotel:before {
  content: "瞧";
}

.icon-mdi-o-hourglass_bottom:before {
  content: "爵";
}

.icon-mdi-o-hourglass_disabled:before {
  content: "犯";
}

.icon-mdi-o-hourglass_empty:before {
  content: "猪";
}

.icon-mdi-o-hourglass_full:before {
  content: "瑱";
}

.icon-mdi-o-hourglass_top:before {
  content: "甆";
}

.icon-mdi-o-house:before {
  content: "画";
}

.icon-mdi-o-house_siding:before {
  content: "瘝";
}

.icon-mdi-o-how_to_reg:before {
  content: "瘟";
}

.icon-mdi-o-how_to_vote:before {
  content: "益";
}

.icon-mdi-o-http:before {
  content: "盛";
}

.icon-mdi-o-https:before {
  content: "直";
}

.icon-mdi-o-hvac:before {
  content: "睊";
}

.icon-mdi-o-image:before {
  content: "着";
}

.icon-mdi-o-image_aspect_ratio:before {
  content: "磌";
}

.icon-mdi-o-image_not_supported:before {
  content: "窱";
}

.icon-mdi-o-image_search:before {
  content: "節";
}

.icon-mdi-o-import_contacts:before {
  content: "类";
}

.icon-mdi-o-import_export:before {
  content: "絛";
}

.icon-mdi-o-important_devices:before {
  content: "練";
}

.icon-mdi-o-inbox:before {
  content: "缾";
}

.icon-mdi-o-indeterminate_check_box:before {
  content: "者";
}

.icon-mdi-o-info:before {
  content: "荒";
}

.icon-mdi-o-insert_chart:before {
  content: "華";
}

.icon-mdi-o-insert_chart_outlined:before {
  content: "蝹";
}

.icon-mdi-o-insert_comment:before {
  content: "襁";
}

.icon-mdi-o-insert_drive_file:before {
  content: "覆";
}

.icon-mdi-o-insert_emoticon:before {
  content: "視";
}

.icon-mdi-o-insert_invitation:before {
  content: "調";
}

.icon-mdi-o-insert_link:before {
  content: "諸";
}

.icon-mdi-o-insert_photo:before {
  content: "請";
}

.icon-mdi-o-insights:before {
  content: "謁";
}

.icon-mdi-o-integration_instructions:before {
  content: "諾";
}

.icon-mdi-o-invert_colors:before {
  content: "諭";
}

.icon-mdi-o-invert_colors_off:before {
  content: "謹";
}

.icon-mdi-o-iso:before {
  content: "變";
}

.icon-mdi-o-keyboard:before {
  content: "贈";
}

.icon-mdi-o-keyboard_arrow_down:before {
  content: "輸";
}

.icon-mdi-o-keyboard_arrow_left:before {
  content: "遲";
}

.icon-mdi-o-keyboard_arrow_right:before {
  content: "醙";
}

.icon-mdi-o-keyboard_arrow_up:before {
  content: "鉶";
}

.icon-mdi-o-keyboard_backspace:before {
  content: "陼";
}

.icon-mdi-o-keyboard_capslock:before {
  content: "難";
}

.icon-mdi-o-keyboard_hide:before {
  content: "靖";
}

.icon-mdi-o-keyboard_return:before {
  content: "韛";
}

.icon-mdi-o-keyboard_tab:before {
  content: "響";
}

.icon-mdi-o-keyboard_voice:before {
  content: "頋";
}

.icon-mdi-o-king_bed:before {
  content: "頻";
}

.icon-mdi-o-kitchen:before {
  content: "鬒";
}

.icon-mdi-o-label:before {
  content: "龜";
}

.icon-mdi-o-label_important:before {
  content: "𢡊";
}

.icon-mdi-o-label_off:before {
  content: "𢡄";
}

.icon-mdi-o-landscape:before {
  content: "𣏕";
}

.icon-mdi-o-language:before {
  content: "㮝";
}

.icon-mdi-o-laptop:before {
  content: "䀘";
}

.icon-mdi-o-laptop_chromebook:before {
  content: "䀹";
}

.icon-mdi-o-laptop_mac:before {
  content: "𥉉";
}

.icon-mdi-o-laptop_windows:before {
  content: "𥳐";
}

.icon-mdi-o-last_page:before {
  content: "𧻓";
}

.icon-mdi-o-launch:before {
  content: "齃";
}

.icon-mdi-o-layers:before {
  content: "龎";
}

.icon-mdi-o-layers_clear:before {
  content: "﫚";
}

.icon-mdi-o-leaderboard:before {
  content: "﫛";
}

.icon-mdi-o-leak_add:before {
  content: "﫜";
}

.icon-mdi-o-leak_remove:before {
  content: "﫝";
}

.icon-mdi-o-legend_toggle:before {
  content: "﫞";
}

.icon-mdi-o-lens:before {
  content: "﫟";
}

.icon-mdi-o-library_add:before {
  content: "﫠";
}

.icon-mdi-o-library_add_check:before {
  content: "﫡";
}

.icon-mdi-o-library_books:before {
  content: "﫢";
}

.icon-mdi-o-library_music:before {
  content: "﫣";
}

.icon-mdi-o-line_style:before {
  content: "﫤";
}

.icon-mdi-o-line_weight:before {
  content: "﫥";
}

.icon-mdi-o-linear_scale:before {
  content: "﫦";
}

.icon-mdi-o-link:before {
  content: "﫧";
}

.icon-mdi-o-link_off:before {
  content: "﫨";
}

.icon-mdi-o-linked_camera:before {
  content: "﫩";
}

.icon-mdi-o-list:before {
  content: "﫪";
}

.icon-mdi-o-list_alt:before {
  content: "﫫";
}

.icon-mdi-o-live_help:before {
  content: "﫬";
}

.icon-mdi-o-live_tv:before {
  content: "﫭";
}

.icon-mdi-o-local_activity:before {
  content: "﫮";
}

.icon-mdi-o-local_airport:before {
  content: "﫯";
}

.icon-mdi-o-local_atm:before {
  content: "﫰";
}

.icon-mdi-o-local_bar:before {
  content: "﫱";
}

.icon-mdi-o-local_cafe:before {
  content: "﫲";
}

.icon-mdi-o-local_car_wash:before {
  content: "﫳";
}

.icon-mdi-o-local_convenience_store:before {
  content: "﫴";
}

.icon-mdi-o-local_dining:before {
  content: "﫵";
}

.icon-mdi-o-local_drink:before {
  content: "﫶";
}

.icon-mdi-o-local_florist:before {
  content: "﫷";
}

.icon-mdi-o-local_gas_station:before {
  content: "﫸";
}

.icon-mdi-o-local_grocery_store:before {
  content: "﫹";
}

.icon-mdi-o-local_hospital:before {
  content: "﫺";
}

.icon-mdi-o-local_hotel:before {
  content: "﫻";
}

.icon-mdi-o-local_laundry_service:before {
  content: "﫼";
}

.icon-mdi-o-local_library:before {
  content: "﫽";
}

.icon-mdi-o-local_mall:before {
  content: "﫾";
}

.icon-mdi-o-local_movies:before {
  content: "﫿";
}

.icon-mdi-o-local_offer:before {
  content: "ﬀ";
}

.icon-mdi-o-local_parking:before {
  content: "ﬁ";
}

.icon-mdi-o-local_pharmacy:before {
  content: "ﬂ";
}

.icon-mdi-o-local_phone:before {
  content: "ﬃ";
}

.icon-mdi-o-local_pizza:before {
  content: "ﬄ";
}

.icon-mdi-o-local_play:before {
  content: "ﬅ";
}

.icon-mdi-o-local_post_office:before {
  content: "ﬆ";
}

.icon-mdi-o-local_printshop:before {
  content: "﬇";
}

.icon-mdi-o-local_see:before {
  content: "﬈";
}

.icon-mdi-o-local_shipping:before {
  content: "﬉";
}

.icon-mdi-o-local_taxi:before {
  content: "﬊";
}

.icon-mdi-o-location_city:before {
  content: "﬋";
}

.icon-mdi-o-location_disabled:before {
  content: "﬌";
}

.icon-mdi-o-location_off:before {
  content: "﬍";
}

.icon-mdi-o-location_on:before {
  content: "﬎";
}

.icon-mdi-o-location_searching:before {
  content: "﬏";
}

.icon-mdi-o-lock:before {
  content: "﬐";
}

.icon-mdi-o-lock_open:before {
  content: "﬑";
}

.icon-mdi-o-login:before {
  content: "﬒";
}

.icon-mdi-o-looks:before {
  content: "ﬓ";
}

.icon-mdi-o-looks_3:before {
  content: "ﬔ";
}

.icon-mdi-o-looks_4:before {
  content: "ﬕ";
}

.icon-mdi-o-looks_5:before {
  content: "ﬖ";
}

.icon-mdi-o-looks_6:before {
  content: "ﬗ";
}

.icon-mdi-o-looks_one:before {
  content: "﬘";
}

.icon-mdi-o-looks_two:before {
  content: "﬙";
}

.icon-mdi-o-loop:before {
  content: "﬚";
}

.icon-mdi-o-loupe:before {
  content: "﬛";
}

.icon-mdi-o-low_priority:before {
  content: "﬜";
}

.icon-mdi-o-loyalty:before {
  content: "יִ";
}

.icon-mdi-o-mail:before {
  content: "ﬞ";
}

.icon-mdi-o-map:before {
  content: "ײַ";
}

.icon-mdi-o-maps_ugc:before {
  content: "ﬠ";
}

.icon-mdi-o-mark_chat_read:before {
  content: "ﬡ";
}

.icon-mdi-o-mark_chat_unread:before {
  content: "ﬢ";
}

.icon-mdi-o-mark_email_read:before {
  content: "ﬣ";
}

.icon-mdi-o-mark_email_unread:before {
  content: "ﬤ";
}

.icon-mdi-o-markunread:before {
  content: "ﬥ";
}

.icon-mdi-o-markunread_mailbox:before {
  content: "ﬦ";
}

.icon-mdi-o-maximize:before {
  content: "ﬧ";
}

.icon-mdi-o-mediation:before {
  content: "ﬨ";
}

.icon-mdi-o-medical_services:before {
  content: "﬩";
}

.icon-mdi-o-meeting_room:before {
  content: "שׁ";
}

.icon-mdi-o-memory:before {
  content: "שׂ";
}

.icon-mdi-o-menu:before {
  content: "שּׁ";
}

.icon-mdi-o-menu_book:before {
  content: "שּׂ";
}

.icon-mdi-o-menu_open:before {
  content: "אַ";
}

.icon-mdi-o-merge_type:before {
  content: "אָ";
}

.icon-mdi-o-message:before {
  content: "אּ";
}

.icon-mdi-o-mic:before {
  content: "בּ";
}

.icon-mdi-o-mic_none:before {
  content: "גּ";
}

.icon-mdi-o-mic_off:before {
  content: "דּ";
}

.icon-mdi-o-microwave:before {
  content: "הּ";
}

.icon-mdi-o-military_tech:before {
  content: "וּ";
}

.icon-mdi-o-minimize:before {
  content: "זּ";
}

.icon-mdi-o-miscellaneous_services:before {
  content: "﬷";
}

.icon-mdi-o-missed_video_call:before {
  content: "טּ";
}

.icon-mdi-o-mms:before {
  content: "יּ";
}

.icon-mdi-o-mobile_friendly:before {
  content: "ךּ";
}

.icon-mdi-o-mobile_off:before {
  content: "כּ";
}

.icon-mdi-o-mobile_screen_share:before {
  content: "לּ";
}

.icon-mdi-o-mode_comment:before {
  content: "﬽";
}

.icon-mdi-o-model_training:before {
  content: "מּ";
}

.icon-mdi-o-monetization_on:before {
  content: "﬿";
}

.icon-mdi-o-money:before {
  content: "נּ";
}

.icon-mdi-o-money_off:before {
  content: "סּ";
}

.icon-mdi-o-monochrome_photos:before {
  content: "﭂";
}

.icon-mdi-o-mood:before {
  content: "ףּ";
}

.icon-mdi-o-mood_bad:before {
  content: "פּ";
}

.icon-mdi-o-moped:before {
  content: "﭅";
}

.icon-mdi-o-more:before {
  content: "צּ";
}

.icon-mdi-o-more_horiz:before {
  content: "קּ";
}

.icon-mdi-o-more_time:before {
  content: "רּ";
}

.icon-mdi-o-more_vert:before {
  content: "שּ";
}

.icon-mdi-o-mouse:before {
  content: "תּ";
}

.icon-mdi-o-move_to_inbox:before {
  content: "וֹ";
}

.icon-mdi-o-movie:before {
  content: "בֿ";
}

.icon-mdi-o-movie_filter:before {
  content: "כֿ";
}

.icon-mdi-o-multiline_chart:before {
  content: "פֿ";
}

.icon-mdi-o-multiple_stop:before {
  content: "ﭏ";
}

.icon-mdi-o-museum:before {
  content: "ﭐ";
}

.icon-mdi-o-music_note:before {
  content: "ﭑ";
}

.icon-mdi-o-music_off:before {
  content: "ﭒ";
}

.icon-mdi-o-music_video:before {
  content: "ﭓ";
}

.icon-mdi-o-my_location:before {
  content: "ﭔ";
}

.icon-mdi-o-nat:before {
  content: "ﭕ";
}

.icon-mdi-o-nature:before {
  content: "ﭖ";
}

.icon-mdi-o-nature_people:before {
  content: "ﭗ";
}

.icon-mdi-o-navigate_before:before {
  content: "ﭘ";
}

.icon-mdi-o-navigate_next:before {
  content: "ﭙ";
}

.icon-mdi-o-navigation:before {
  content: "ﭚ";
}

.icon-mdi-o-near_me:before {
  content: "ﭛ";
}

.icon-mdi-o-near_me_disabled:before {
  content: "ﭜ";
}

.icon-mdi-o-network_check:before {
  content: "ﭝ";
}

.icon-mdi-o-network_locked:before {
  content: "ﭞ";
}

.icon-mdi-o-new_releases:before {
  content: "ﭟ";
}

.icon-mdi-o-next_plan:before {
  content: "ﭠ";
}

.icon-mdi-o-next_week:before {
  content: "ﭡ";
}

.icon-mdi-o-nfc:before {
  content: "ﭢ";
}

.icon-mdi-o-night_shelter:before {
  content: "ﭣ";
}

.icon-mdi-o-nights_stay:before {
  content: "ﭤ";
}

.icon-mdi-o-no_cell:before {
  content: "ﭥ";
}

.icon-mdi-o-no_drinks:before {
  content: "ﭦ";
}

.icon-mdi-o-no_encryption:before {
  content: "ﭧ";
}

.icon-mdi-o-no_flash:before {
  content: "ﭨ";
}

.icon-mdi-o-no_food:before {
  content: "ﭩ";
}

.icon-mdi-o-no_meals:before {
  content: "ﭪ";
}

.icon-mdi-o-no_meeting_room:before {
  content: "ﭫ";
}

.icon-mdi-o-no_photography:before {
  content: "ﭬ";
}

.icon-mdi-o-no_sim:before {
  content: "ﭭ";
}

.icon-mdi-o-no_stroller:before {
  content: "ﭮ";
}

.icon-mdi-o-no_transfer:before {
  content: "ﭯ";
}

.icon-mdi-o-north:before {
  content: "ﭰ";
}

.icon-mdi-o-north_east:before {
  content: "ﭱ";
}

.icon-mdi-o-north_west:before {
  content: "ﭲ";
}

.icon-mdi-o-not_accessible:before {
  content: "ﭳ";
}

.icon-mdi-o-not_interested:before {
  content: "ﭴ";
}

.icon-mdi-o-not_listed_location:before {
  content: "ﭵ";
}

.icon-mdi-o-not_started:before {
  content: "ﭶ";
}

.icon-mdi-o-note:before {
  content: "ﭷ";
}

.icon-mdi-o-note_add:before {
  content: "ﭸ";
}

.icon-mdi-o-notes:before {
  content: "ﭹ";
}

.icon-mdi-o-notification_important:before {
  content: "ﭺ";
}

.icon-mdi-o-notifications:before {
  content: "ﭻ";
}

.icon-mdi-o-notifications_active:before {
  content: "ﭼ";
}

.icon-mdi-o-notifications_none:before {
  content: "ﭽ";
}

.icon-mdi-o-notifications_off:before {
  content: "ﭾ";
}

.icon-mdi-o-notifications_paused:before {
  content: "ﭿ";
}

.icon-mdi-o-offline_bolt:before {
  content: "ﮀ";
}

.icon-mdi-o-offline_pin:before {
  content: "ﮁ";
}

.icon-mdi-o-ondemand_video:before {
  content: "ﮂ";
}

.icon-mdi-o-online_prediction:before {
  content: "ﮃ";
}

.icon-mdi-o-opacity:before {
  content: "ﮄ";
}

.icon-mdi-o-open_in_browser:before {
  content: "ﮅ";
}

.icon-mdi-o-open_in_full:before {
  content: "ﮆ";
}

.icon-mdi-o-open_in_new:before {
  content: "ﮇ";
}

.icon-mdi-o-open_with:before {
  content: "ﮈ";
}

.icon-mdi-o-outlet:before {
  content: "ﮉ";
}

.icon-mdi-o-outlined_flag:before {
  content: "ﮊ";
}

.icon-mdi-o-pages:before {
  content: "ﮋ";
}

.icon-mdi-o-pageview:before {
  content: "ﮌ";
}

.icon-mdi-o-palette:before {
  content: "ﮍ";
}

.icon-mdi-o-pan_tool:before {
  content: "ﮎ";
}

.icon-mdi-o-panorama:before {
  content: "ﮏ";
}

.icon-mdi-o-panorama_fish_eye:before {
  content: "ﮐ";
}

.icon-mdi-o-panorama_horizontal:before {
  content: "ﮑ";
}

.icon-mdi-o-panorama_vertical:before {
  content: "ﮒ";
}

.icon-mdi-o-panorama_wide_angle:before {
  content: "ﮓ";
}

.icon-mdi-o-party_mode:before {
  content: "ﮔ";
}

.icon-mdi-o-pause:before {
  content: "ﮕ";
}

.icon-mdi-o-pause_circle_filled:before {
  content: "ﮖ";
}

.icon-mdi-o-pause_circle_outline:before {
  content: "ﮗ";
}

.icon-mdi-o-pause_presentation:before {
  content: "ﮘ";
}

.icon-mdi-o-payments:before {
  content: "ﮙ";
}

.icon-mdi-o-pedal_bike:before {
  content: "ﮚ";
}

.icon-mdi-o-pending:before {
  content: "ﮛ";
}

.icon-mdi-o-pending_actions:before {
  content: "ﮜ";
}

.icon-mdi-o-people:before {
  content: "ﮝ";
}

.icon-mdi-o-people_alt:before {
  content: "ﮞ";
}

.icon-mdi-o-perm_camera_mic:before {
  content: "ﮟ";
}

.icon-mdi-o-perm_contact_calendar:before {
  content: "ﮠ";
}

.icon-mdi-o-perm_data_setting:before {
  content: "ﮡ";
}

.icon-mdi-o-perm_device_information:before {
  content: "ﮢ";
}

.icon-mdi-o-perm_identity:before {
  content: "ﮣ";
}

.icon-mdi-o-perm_media:before {
  content: "ﮤ";
}

.icon-mdi-o-perm_phone_msg:before {
  content: "ﮥ";
}

.icon-mdi-o-perm_scan_wifi:before {
  content: "ﮦ";
}

.icon-mdi-o-person:before {
  content: "ﮧ";
}

.icon-mdi-o-person_add:before {
  content: "ﮨ";
}

.icon-mdi-o-person_add_alt_1:before {
  content: "ﮩ";
}

.icon-mdi-o-person_add_disabled:before {
  content: "ﮪ";
}

.icon-mdi-o-person_outline:before {
  content: "ﮫ";
}

.icon-mdi-o-person_pin:before {
  content: "ﮬ";
}

.icon-mdi-o-person_pin_circle:before {
  content: "ﮭ";
}

.icon-mdi-o-person_remove:before {
  content: "ﮮ";
}

.icon-mdi-o-person_search:before {
  content: "ﮯ";
}

.icon-mdi-o-personal_video:before {
  content: "ﮰ";
}

.icon-mdi-o-pest_control:before {
  content: "ﮱ";
}

.icon-mdi-o-pest_control_rodent:before {
  content: "﮲";
}

.icon-mdi-o-pets:before {
  content: "﮳";
}

.icon-mdi-o-phone:before {
  content: "﮴";
}

.icon-mdi-o-phone_android:before {
  content: "﮵";
}

.icon-mdi-o-phone_bluetooth_speaker:before {
  content: "﮶";
}

.icon-mdi-o-phone_callback:before {
  content: "﮷";
}

.icon-mdi-o-phone_disabled:before {
  content: "﮸";
}

.icon-mdi-o-phone_enabled:before {
  content: "﮹";
}

.icon-mdi-o-phone_forwarded:before {
  content: "﮺";
}

.icon-mdi-o-phone_in_talk:before {
  content: "﮻";
}

.icon-mdi-o-phone_iphone:before {
  content: "﮼";
}

.icon-mdi-o-phone_locked:before {
  content: "﮽";
}

.icon-mdi-o-phone_missed:before {
  content: "﮾";
}

.icon-mdi-o-phone_paused:before {
  content: "﮿";
}

.icon-mdi-o-phonelink:before {
  content: "﯀";
}

.icon-mdi-o-phonelink_erase:before {
  content: "﯁";
}

.icon-mdi-o-phonelink_lock:before {
  content: "﯂";
}

.icon-mdi-o-phonelink_off:before {
  content: "﯃";
}

.icon-mdi-o-phonelink_ring:before {
  content: "﯄";
}

.icon-mdi-o-phonelink_setup:before {
  content: "﯅";
}

.icon-mdi-o-photo:before {
  content: "﯆";
}

.icon-mdi-o-photo_album:before {
  content: "﯇";
}

.icon-mdi-o-photo_camera:before {
  content: "﯈";
}

.icon-mdi-o-photo_filter:before {
  content: "﯉";
}

.icon-mdi-o-photo_library:before {
  content: "﯊";
}

.icon-mdi-o-photo_size_select_actual:before {
  content: "﯋";
}

.icon-mdi-o-photo_size_select_large:before {
  content: "﯌";
}

.icon-mdi-o-photo_size_select_small:before {
  content: "﯍";
}

.icon-mdi-o-picture_as_pdf:before {
  content: "﯎";
}

.icon-mdi-o-picture_in_picture:before {
  content: "﯏";
}

.icon-mdi-o-picture_in_picture_alt:before {
  content: "﯐";
}

.icon-mdi-o-pie_chart:before {
  content: "﯑";
}

.icon-mdi-o-pin_drop:before {
  content: "﯒";
}

.icon-mdi-o-place:before {
  content: "ﯓ";
}

.icon-mdi-o-plagiarism:before {
  content: "ﯔ";
}

.icon-mdi-o-play_arrow:before {
  content: "ﯕ";
}

.icon-mdi-o-play_circle_filled:before {
  content: "ﯖ";
}

.icon-mdi-o-play_circle_outline:before {
  content: "ﯗ";
}

.icon-mdi-o-play_for_work:before {
  content: "ﯘ";
}

.icon-mdi-o-playlist_add:before {
  content: "ﯙ";
}

.icon-mdi-o-playlist_add_check:before {
  content: "ﯚ";
}

.icon-mdi-o-playlist_play:before {
  content: "ﯛ";
}

.icon-mdi-o-plumbing:before {
  content: "ﯜ";
}

.icon-mdi-o-plus_one:before {
  content: "ﯝ";
}

.icon-mdi-o-point_of_sale:before {
  content: "ﯞ";
}

.icon-mdi-o-policy:before {
  content: "ﯟ";
}

.icon-mdi-o-poll:before {
  content: "ﯠ";
}

.icon-mdi-o-polymer:before {
  content: "ﯡ";
}

.icon-mdi-o-pool:before {
  content: "ﯢ";
}

.icon-mdi-o-portable_wifi_off:before {
  content: "ﯣ";
}

.icon-mdi-o-portrait:before {
  content: "ﯤ";
}

.icon-mdi-o-post_add:before {
  content: "ﯥ";
}

.icon-mdi-o-power:before {
  content: "ﯦ";
}

.icon-mdi-o-power_input:before {
  content: "ﯧ";
}

.icon-mdi-o-power_off:before {
  content: "ﯨ";
}

.icon-mdi-o-power_settings_new:before {
  content: "ﯩ";
}

.icon-mdi-o-pregnant_woman:before {
  content: "ﯪ";
}

.icon-mdi-o-present_to_all:before {
  content: "ﯫ";
}

.icon-mdi-o-print:before {
  content: "ﯬ";
}

.icon-mdi-o-print_disabled:before {
  content: "ﯭ";
}

.icon-mdi-o-priority_high:before {
  content: "ﯮ";
}

.icon-mdi-o-privacy_tip:before {
  content: "ﯯ";
}

.icon-mdi-o-psychology:before {
  content: "ﯰ";
}

.icon-mdi-o-public:before {
  content: "ﯱ";
}

.icon-mdi-o-public_off:before {
  content: "ﯲ";
}

.icon-mdi-o-publish:before {
  content: "ﯳ";
}

.icon-mdi-o-push_pin:before {
  content: "ﯴ";
}

.icon-mdi-o-qr_code:before {
  content: "ﯵ";
}

.icon-mdi-o-qr_code_scanner:before {
  content: "ﯶ";
}

.icon-mdi-o-query_builder:before {
  content: "ﯷ";
}

.icon-mdi-o-question_answer:before {
  content: "ﯸ";
}

.icon-mdi-o-queue:before {
  content: "ﯹ";
}

.icon-mdi-o-queue_music:before {
  content: "ﯺ";
}

.icon-mdi-o-queue_play_next:before {
  content: "ﯻ";
}

.icon-mdi-o-radio:before {
  content: "ﯼ";
}

.icon-mdi-o-radio_button_checked:before {
  content: "ﯽ";
}

.icon-mdi-o-radio_button_unchecked:before {
  content: "ﯾ";
}

.icon-mdi-o-rate_review:before {
  content: "ﯿ";
}

.icon-mdi-o-read_more:before {
  content: "ﰀ";
}

.icon-mdi-o-receipt:before {
  content: "ﰁ";
}

.icon-mdi-o-receipt_long:before {
  content: "ﰂ";
}

.icon-mdi-o-recent_actors:before {
  content: "ﰃ";
}

.icon-mdi-o-record_voice_over:before {
  content: "ﰄ";
}

.icon-mdi-o-redeem:before {
  content: "ﰅ";
}

.icon-mdi-o-redo:before {
  content: "ﰆ";
}

.icon-mdi-o-refresh:before {
  content: "ﰇ";
}

.icon-mdi-o-remove:before {
  content: "ﰈ";
}

.icon-mdi-o-remove_circle:before {
  content: "ﰉ";
}

.icon-mdi-o-remove_circle_outline:before {
  content: "ﰊ";
}

.icon-mdi-o-remove_from_queue:before {
  content: "ﰋ";
}

.icon-mdi-o-remove_red_eye:before {
  content: "ﰌ";
}

.icon-mdi-o-remove_shopping_cart:before {
  content: "ﰍ";
}

.icon-mdi-o-reorder:before {
  content: "ﰎ";
}

.icon-mdi-o-repeat:before {
  content: "ﰏ";
}

.icon-mdi-o-repeat_one:before {
  content: "ﰐ";
}

.icon-mdi-o-replay:before {
  content: "ﰑ";
}

.icon-mdi-o-replay_10:before {
  content: "ﰒ";
}

.icon-mdi-o-replay_30:before {
  content: "ﰓ";
}

.icon-mdi-o-replay_5:before {
  content: "ﰔ";
}

.icon-mdi-o-reply:before {
  content: "ﰕ";
}

.icon-mdi-o-reply_all:before {
  content: "ﰖ";
}

.icon-mdi-o-report:before {
  content: "ﰗ";
}

.icon-mdi-o-report_off:before {
  content: "ﰘ";
}

.icon-mdi-o-report_problem:before {
  content: "ﰙ";
}

.icon-mdi-o-request_quote:before {
  content: "ﰚ";
}

.icon-mdi-o-restaurant:before {
  content: "ﰛ";
}

.icon-mdi-o-restaurant_menu:before {
  content: "ﰜ";
}

.icon-mdi-o-restore:before {
  content: "ﰝ";
}

.icon-mdi-o-restore_from_trash:before {
  content: "ﰞ";
}

.icon-mdi-o-restore_page:before {
  content: "ﰟ";
}

.icon-mdi-o-rice_bowl:before {
  content: "ﰠ";
}

.icon-mdi-o-ring_volume:before {
  content: "ﰡ";
}

.icon-mdi-o-roofing:before {
  content: "ﰢ";
}

.icon-mdi-o-room:before {
  content: "ﰣ";
}

.icon-mdi-o-room_preferences:before {
  content: "ﰤ";
}

.icon-mdi-o-room_service:before {
  content: "ﰥ";
}

.icon-mdi-o-rotate_90_degrees_ccw:before {
  content: "ﰦ";
}

.icon-mdi-o-rotate_left:before {
  content: "ﰧ";
}

.icon-mdi-o-rotate_right:before {
  content: "ﰨ";
}

.icon-mdi-o-rounded_corner:before {
  content: "ﰩ";
}

.icon-mdi-o-router:before {
  content: "ﰪ";
}

.icon-mdi-o-rowing:before {
  content: "ﰫ";
}

.icon-mdi-o-rss_feed:before {
  content: "ﰬ";
}

.icon-mdi-o-rule:before {
  content: "ﰭ";
}

.icon-mdi-o-rule_folder:before {
  content: "ﰮ";
}

.icon-mdi-o-run_circle:before {
  content: "ﰯ";
}

.icon-mdi-o-rv_hookup:before {
  content: "ﰰ";
}

.icon-mdi-o-satellite:before {
  content: "ﰱ";
}

.icon-mdi-o-save:before {
  content: "ﰲ";
}

.icon-mdi-o-save_alt:before {
  content: "ﰳ";
}

.icon-mdi-o-scatter_plot:before {
  content: "ﰴ";
}

.icon-mdi-o-schedule:before {
  content: "ﰵ";
}

.icon-mdi-o-school:before {
  content: "ﰶ";
}

.icon-mdi-o-science:before {
  content: "ﰷ";
}

.icon-mdi-o-score:before {
  content: "ﰸ";
}

.icon-mdi-o-screen_lock_landscape:before {
  content: "ﰹ";
}

.icon-mdi-o-screen_lock_portrait:before {
  content: "ﰺ";
}

.icon-mdi-o-screen_lock_rotation:before {
  content: "ﰻ";
}

.icon-mdi-o-screen_rotation:before {
  content: "ﰼ";
}

.icon-mdi-o-screen_share:before {
  content: "ﰽ";
}

.icon-mdi-o-sd_card:before {
  content: "ﰾ";
}

.icon-mdi-o-sd_storage:before {
  content: "ﰿ";
}

.icon-mdi-o-search:before {
  content: "ﱀ";
}

.icon-mdi-o-search_off:before {
  content: "ﱁ";
}

.icon-mdi-o-security:before {
  content: "ﱂ";
}

.icon-mdi-o-select_all:before {
  content: "ﱃ";
}

.icon-mdi-o-self_improvement:before {
  content: "ﱄ";
}

.icon-mdi-o-send:before {
  content: "ﱅ";
}

.icon-mdi-o-sensor_door:before {
  content: "ﱆ";
}

.icon-mdi-o-sensor_window:before {
  content: "ﱇ";
}

.icon-mdi-o-sentiment_dissatisfied:before {
  content: "ﱈ";
}

.icon-mdi-o-sentiment_satisfied:before {
  content: "ﱉ";
}

.icon-mdi-o-sentiment_satisfied_alt:before {
  content: "ﱊ";
}

.icon-mdi-o-sentiment_very_dissatisfied:before {
  content: "ﱋ";
}

.icon-mdi-o-sentiment_very_satisfied:before {
  content: "ﱌ";
}

.icon-mdi-o-set_meal:before {
  content: "ﱍ";
}

.icon-mdi-o-settings:before {
  content: "ﱎ";
}

.icon-mdi-o-settings_applications:before {
  content: "ﱏ";
}

.icon-mdi-o-settings_backup_restore:before {
  content: "ﱐ";
}

.icon-mdi-o-settings_bluetooth:before {
  content: "ﱑ";
}

.icon-mdi-o-settings_brightness:before {
  content: "ﱒ";
}

.icon-mdi-o-settings_cell:before {
  content: "ﱓ";
}

.icon-mdi-o-settings_ethernet:before {
  content: "ﱔ";
}

.icon-mdi-o-settings_input_antenna:before {
  content: "ﱕ";
}

.icon-mdi-o-settings_input_component:before {
  content: "ﱖ";
}

.icon-mdi-o-settings_input_svideo:before {
  content: "ﱗ";
}

.icon-mdi-o-settings_overscan:before {
  content: "ﱘ";
}

.icon-mdi-o-settings_phone:before {
  content: "ﱙ";
}

.icon-mdi-o-settings_power:before {
  content: "ﱚ";
}

.icon-mdi-o-settings_remote:before {
  content: "ﱛ";
}

.icon-mdi-o-settings_system_daydream:before {
  content: "ﱜ";
}

.icon-mdi-o-settings_voice:before {
  content: "ﱝ";
}

.icon-mdi-o-share:before {
  content: "ﱞ";
}

.icon-mdi-o-shop:before {
  content: "ﱟ";
}

.icon-mdi-o-shopping_bag:before {
  content: "ﱠ";
}

.icon-mdi-o-shopping_basket:before {
  content: "ﱡ";
}

.icon-mdi-o-shopping_cart:before {
  content: "ﱢ";
}

.icon-mdi-o-short_text:before {
  content: "ﱣ";
}

.icon-mdi-o-show_chart:before {
  content: "ﱤ";
}

.icon-mdi-o-shuffle:before {
  content: "ﱥ";
}

.icon-mdi-o-shutter_speed:before {
  content: "ﱦ";
}

.icon-mdi-o-signal_cellular_4_bar:before {
  content: "ﱧ";
}

.icon-mdi-o-signal_cellular_alt:before {
  content: "ﱨ";
}

.icon-mdi-o-signal_cellular_connected_no_internet_4_bar:before {
  content: "ﱩ";
}

.icon-mdi-o-signal_cellular_no_sim:before {
  content: "ﱪ";
}

.icon-mdi-o-signal_cellular_null:before {
  content: "ﱫ";
}

.icon-mdi-o-signal_cellular_off:before {
  content: "ﱬ";
}

.icon-mdi-o-signal_wifi_4_bar:before {
  content: "ﱭ";
}

.icon-mdi-o-signal_wifi_4_bar_lock:before {
  content: "ﱮ";
}

.icon-mdi-o-signal_wifi_off:before {
  content: "ﱯ";
}

.icon-mdi-o-sim_card:before {
  content: "ﱰ";
}

.icon-mdi-o-single_bed:before {
  content: "ﱱ";
}

.icon-mdi-o-skip_next:before {
  content: "ﱲ";
}

.icon-mdi-o-skip_previous:before {
  content: "ﱳ";
}

.icon-mdi-o-slideshow:before {
  content: "ﱴ";
}

.icon-mdi-o-slow_motion_video:before {
  content: "ﱵ";
}

.icon-mdi-o-smart_button:before {
  content: "ﱶ";
}

.icon-mdi-o-smoke_free:before {
  content: "ﱷ";
}

.icon-mdi-o-smoking_rooms:before {
  content: "ﱸ";
}

.icon-mdi-o-sms:before {
  content: "ﱹ";
}

.icon-mdi-o-sms_failed:before {
  content: "ﱺ";
}

.icon-mdi-o-snippet_folder:before {
  content: "ﱻ";
}

.icon-mdi-o-snooze:before {
  content: "ﱼ";
}

.icon-mdi-o-soap:before {
  content: "ﱽ";
}

.icon-mdi-o-sort:before {
  content: "ﱾ";
}

.icon-mdi-o-sort_by_alpha:before {
  content: "ﱿ";
}

.icon-mdi-o-source:before {
  content: "ﲀ";
}

.icon-mdi-o-south:before {
  content: "ﲁ";
}

.icon-mdi-o-south_east:before {
  content: "ﲂ";
}

.icon-mdi-o-south_west:before {
  content: "ﲃ";
}

.icon-mdi-o-spa:before {
  content: "ﲄ";
}

.icon-mdi-o-space_bar:before {
  content: "ﲅ";
}

.icon-mdi-o-speaker:before {
  content: "ﲆ";
}

.icon-mdi-o-speaker_group:before {
  content: "ﲇ";
}

.icon-mdi-o-speaker_notes:before {
  content: "ﲈ";
}

.icon-mdi-o-speaker_notes_off:before {
  content: "ﲉ";
}

.icon-mdi-o-speaker_phone:before {
  content: "ﲊ";
}

.icon-mdi-o-speed:before {
  content: "ﲋ";
}

.icon-mdi-o-spellcheck:before {
  content: "ﲌ";
}

.icon-mdi-o-sports:before {
  content: "ﲍ";
}

.icon-mdi-o-sports_bar:before {
  content: "ﲎ";
}

.icon-mdi-o-sports_baseball:before {
  content: "ﲏ";
}

.icon-mdi-o-sports_basketball:before {
  content: "ﲐ";
}

.icon-mdi-o-sports_cricket:before {
  content: "ﲑ";
}

.icon-mdi-o-sports_esports:before {
  content: "ﲒ";
}

.icon-mdi-o-sports_football:before {
  content: "ﲓ";
}

.icon-mdi-o-sports_golf:before {
  content: "ﲔ";
}

.icon-mdi-o-sports_handball:before {
  content: "ﲕ";
}

.icon-mdi-o-sports_hockey:before {
  content: "ﲖ";
}

.icon-mdi-o-sports_kabaddi:before {
  content: "ﲗ";
}

.icon-mdi-o-sports_mma:before {
  content: "ﲘ";
}

.icon-mdi-o-sports_motorsports:before {
  content: "ﲙ";
}

.icon-mdi-o-sports_rugby:before {
  content: "ﲚ";
}

.icon-mdi-o-sports_soccer:before {
  content: "ﲛ";
}

.icon-mdi-o-sports_tennis:before {
  content: "ﲜ";
}

.icon-mdi-o-sports_volleyball:before {
  content: "ﲝ";
}

.icon-mdi-o-square_foot:before {
  content: "ﲞ";
}

.icon-mdi-o-stairs:before {
  content: "ﲟ";
}

.icon-mdi-o-star:before {
  content: "ﲠ";
}

.icon-mdi-o-star_border:before {
  content: "ﲡ";
}

.icon-mdi-o-star_half:before {
  content: "ﲢ";
}

.icon-mdi-o-star_outline:before {
  content: "ﲣ";
}

.icon-mdi-o-star_rate:before {
  content: "ﲤ";
}

.icon-mdi-o-stay_current_landscape:before {
  content: "ﲥ";
}

.icon-mdi-o-stay_current_portrait:before {
  content: "ﲦ";
}

.icon-mdi-o-stay_primary_landscape:before {
  content: "ﲧ";
}

.icon-mdi-o-stay_primary_portrait:before {
  content: "ﲨ";
}

.icon-mdi-o-sticky_note_2:before {
  content: "ﲩ";
}

.icon-mdi-o-stop:before {
  content: "ﲪ";
}

.icon-mdi-o-stop_circle:before {
  content: "ﲫ";
}

.icon-mdi-o-stop_screen_share:before {
  content: "ﲬ";
}

.icon-mdi-o-storage:before {
  content: "ﲭ";
}

.icon-mdi-o-store:before {
  content: "ﲮ";
}

.icon-mdi-o-store_mall_directory:before {
  content: "ﲯ";
}

.icon-mdi-o-storefront:before {
  content: "ﲰ";
}

.icon-mdi-o-straighten:before {
  content: "ﲱ";
}

.icon-mdi-o-streetview:before {
  content: "ﲲ";
}

.icon-mdi-o-strikethrough_s:before {
  content: "ﲳ";
}

.icon-mdi-o-stroller:before {
  content: "ﲴ";
}

.icon-mdi-o-style:before {
  content: "ﲵ";
}

.icon-mdi-o-subdirectory_arrow_left:before {
  content: "ﲶ";
}

.icon-mdi-o-subdirectory_arrow_right:before {
  content: "ﲷ";
}

.icon-mdi-o-subject:before {
  content: "ﲸ";
}

.icon-mdi-o-subscript:before {
  content: "ﲹ";
}

.icon-mdi-o-subscriptions:before {
  content: "ﲺ";
}

.icon-mdi-o-subtitles:before {
  content: "ﲻ";
}

.icon-mdi-o-subtitles_off:before {
  content: "ﲼ";
}

.icon-mdi-o-subway:before {
  content: "ﲽ";
}

.icon-mdi-o-superscript:before {
  content: "ﲾ";
}

.icon-mdi-o-supervised_user_circle:before {
  content: "ﲿ";
}

.icon-mdi-o-supervisor_account:before {
  content: "ﳀ";
}

.icon-mdi-o-support:before {
  content: "ﳁ";
}

.icon-mdi-o-support_agent:before {
  content: "ﳂ";
}

.icon-mdi-o-surround_sound:before {
  content: "ﳃ";
}

.icon-mdi-o-swap_calls:before {
  content: "ﳄ";
}

.icon-mdi-o-swap_horiz:before {
  content: "ﳅ";
}

.icon-mdi-o-swap_horizontal_circle:before {
  content: "ﳆ";
}

.icon-mdi-o-swap_vert:before {
  content: "ﳇ";
}

.icon-mdi-o-swap_vertical_circle:before {
  content: "ﳈ";
}

.icon-mdi-o-switch_camera:before {
  content: "ﳉ";
}

.icon-mdi-o-switch_left:before {
  content: "ﳊ";
}

.icon-mdi-o-switch_right:before {
  content: "ﳋ";
}

.icon-mdi-o-switch_video:before {
  content: "ﳌ";
}

.icon-mdi-o-sync:before {
  content: "ﳍ";
}

.icon-mdi-o-sync_alt:before {
  content: "ﳎ";
}

.icon-mdi-o-sync_disabled:before {
  content: "ﳏ";
}

.icon-mdi-o-sync_problem:before {
  content: "ﳐ";
}

.icon-mdi-o-system_update:before {
  content: "ﳑ";
}

.icon-mdi-o-system_update_alt:before {
  content: "ﳒ";
}

.icon-mdi-o-tab:before {
  content: "ﳓ";
}

.icon-mdi-o-tab_unselected:before {
  content: "ﳔ";
}

.icon-mdi-o-table_chart:before {
  content: "ﳕ";
}

.icon-mdi-o-table_rows:before {
  content: "ﳖ";
}

.icon-mdi-o-table_view:before {
  content: "ﳗ";
}

.icon-mdi-o-tablet:before {
  content: "ﳘ";
}

.icon-mdi-o-tablet_android:before {
  content: "ﳙ";
}

.icon-mdi-o-tablet_mac:before {
  content: "ﳚ";
}

.icon-mdi-o-tap_and_play:before {
  content: "ﳛ";
}

.icon-mdi-o-tapas:before {
  content: "ﳜ";
}

.icon-mdi-o-terrain:before {
  content: "ﳝ";
}

.icon-mdi-o-text_fields:before {
  content: "ﳞ";
}

.icon-mdi-o-text_format:before {
  content: "ﳟ";
}

.icon-mdi-o-text_rotate_up:before {
  content: "ﳠ";
}

.icon-mdi-o-text_rotate_vertical:before {
  content: "ﳡ";
}

.icon-mdi-o-text_rotation_angledown:before {
  content: "ﳢ";
}

.icon-mdi-o-text_rotation_angleup:before {
  content: "ﳣ";
}

.icon-mdi-o-text_rotation_down:before {
  content: "ﳤ";
}

.icon-mdi-o-text_rotation_none:before {
  content: "ﳥ";
}

.icon-mdi-o-text_snippet:before {
  content: "ﳦ";
}

.icon-mdi-o-textsms:before {
  content: "ﳧ";
}

.icon-mdi-o-texture:before {
  content: "ﳨ";
}

.icon-mdi-o-theaters:before {
  content: "ﳩ";
}

.icon-mdi-o-thumb_down:before {
  content: "ﳪ";
}

.icon-mdi-o-thumb_up:before {
  content: "ﳫ";
}

.icon-mdi-o-thumbs_up_down:before {
  content: "ﳬ";
}

.icon-mdi-o-time_to_leave:before {
  content: "ﳭ";
}

.icon-mdi-o-timelapse:before {
  content: "ﳮ";
}

.icon-mdi-o-timeline:before {
  content: "ﳯ";
}

.icon-mdi-o-timer:before {
  content: "ﳰ";
}

.icon-mdi-o-timer_10:before {
  content: "ﳱ";
}

.icon-mdi-o-timer_3:before {
  content: "ﳲ";
}

.icon-mdi-o-timer_off:before {
  content: "ﳳ";
}

.icon-mdi-o-title:before {
  content: "ﳴ";
}

.icon-mdi-o-toc:before {
  content: "ﳵ";
}

.icon-mdi-o-today:before {
  content: "ﳶ";
}

.icon-mdi-o-toggle_off:before {
  content: "ﳷ";
}

.icon-mdi-o-toggle_on:before {
  content: "ﳸ";
}

.icon-mdi-o-toll:before {
  content: "ﳹ";
}

.icon-mdi-o-tonality:before {
  content: "ﳺ";
}

.icon-mdi-o-topic:before {
  content: "ﳻ";
}

.icon-mdi-o-touch_app:before {
  content: "ﳼ";
}

.icon-mdi-o-tour:before {
  content: "ﳽ";
}

.icon-mdi-o-track_changes:before {
  content: "ﳾ";
}

.icon-mdi-o-traffic:before {
  content: "ﳿ";
}

.icon-mdi-o-train:before {
  content: "ﴀ";
}

.icon-mdi-o-tram:before {
  content: "ﴁ";
}

.icon-mdi-o-transfer_within_a_station:before {
  content: "ﴂ";
}

.icon-mdi-o-transform:before {
  content: "ﴃ";
}

.icon-mdi-o-transit_enterexit:before {
  content: "ﴄ";
}

.icon-mdi-o-translate:before {
  content: "ﴅ";
}

.icon-mdi-o-trending_down:before {
  content: "ﴆ";
}

.icon-mdi-o-trending_flat:before {
  content: "ﴇ";
}

.icon-mdi-o-trending_up:before {
  content: "ﴈ";
}

.icon-mdi-o-trip_origin:before {
  content: "ﴉ";
}

.icon-mdi-o-tty:before {
  content: "ﴊ";
}

.icon-mdi-o-tune:before {
  content: "ﴋ";
}

.icon-mdi-o-turned_in_not:before {
  content: "ﴌ";
}

.icon-mdi-o-tv:before {
  content: "ﴍ";
}

.icon-mdi-o-tv_off:before {
  content: "ﴎ";
}

.icon-mdi-o-two_wheeler:before {
  content: "ﴏ";
}

.icon-mdi-o-umbrella:before {
  content: "ﴐ";
}

.icon-mdi-o-unarchive:before {
  content: "ﴑ";
}

.icon-mdi-o-undo:before {
  content: "ﴒ";
}

.icon-mdi-o-unfold_less:before {
  content: "ﴓ";
}

.icon-mdi-o-unfold_more:before {
  content: "ﴔ";
}

.icon-mdi-o-unsubscribe:before {
  content: "ﴕ";
}

.icon-mdi-o-update:before {
  content: "ﴖ";
}

.icon-mdi-o-upgrade:before {
  content: "ﴗ";
}

.icon-mdi-o-usb:before {
  content: "ﴘ";
}

.icon-mdi-o-verified:before {
  content: "ﴙ";
}

.icon-mdi-o-verified_user:before {
  content: "ﴚ";
}

.icon-mdi-o-vertical_align_bottom:before {
  content: "ﴛ";
}

.icon-mdi-o-vertical_align_center:before {
  content: "ﴜ";
}

.icon-mdi-o-vertical_align_top:before {
  content: "ﴝ";
}

.icon-mdi-o-vertical_split:before {
  content: "ﴞ";
}

.icon-mdi-o-vibration:before {
  content: "ﴟ";
}

.icon-mdi-o-video_call:before {
  content: "ﴠ";
}

.icon-mdi-o-video_library:before {
  content: "ﴡ";
}

.icon-mdi-o-video_settings:before {
  content: "ﴢ";
}

.icon-mdi-o-videocam:before {
  content: "ﴣ";
}

.icon-mdi-o-videocam_off:before {
  content: "ﴤ";
}

.icon-mdi-o-videogame_asset:before {
  content: "ﴥ";
}

.icon-mdi-o-view_agenda:before {
  content: "ﴦ";
}

.icon-mdi-o-view_array:before {
  content: "ﴧ";
}

.icon-mdi-o-view_carousel:before {
  content: "ﴨ";
}

.icon-mdi-o-view_column:before {
  content: "ﴩ";
}

.icon-mdi-o-view_comfy:before {
  content: "ﴪ";
}

.icon-mdi-o-view_compact:before {
  content: "ﴫ";
}

.icon-mdi-o-view_day:before {
  content: "ﴬ";
}

.icon-mdi-o-view_headline:before {
  content: "ﴭ";
}

.icon-mdi-o-view_list:before {
  content: "ﴮ";
}

.icon-mdi-o-view_module:before {
  content: "ﴯ";
}

.icon-mdi-o-view_quilt:before {
  content: "ﴰ";
}

.icon-mdi-o-view_sidebar:before {
  content: "ﴱ";
}

.icon-mdi-o-view_stream:before {
  content: "ﴲ";
}

.icon-mdi-o-view_week:before {
  content: "ﴳ";
}

.icon-mdi-o-vignette:before {
  content: "ﴴ";
}

.icon-mdi-o-visibility:before {
  content: "ﴵ";
}

.icon-mdi-o-visibility_off:before {
  content: "ﴶ";
}

.icon-mdi-o-voice_chat:before {
  content: "ﴷ";
}

.icon-mdi-o-voice_over_off:before {
  content: "ﴸ";
}

.icon-mdi-o-voicemail:before {
  content: "ﴹ";
}

.icon-mdi-o-volume_down:before {
  content: "ﴺ";
}

.icon-mdi-o-volume_mute:before {
  content: "ﴻ";
}

.icon-mdi-o-volume_off:before {
  content: "ﴼ";
}

.icon-mdi-o-volume_up:before {
  content: "ﴽ";
}

.icon-mdi-o-vpn_key:before {
  content: "﴾";
}

.icon-mdi-o-vpn_lock:before {
  content: "﴿";
}

.icon-mdi-o-wallpaper:before {
  content: "﵀";
}

.icon-mdi-o-warning:before {
  content: "﵁";
}

.icon-mdi-o-wash:before {
  content: "﵂";
}

.icon-mdi-o-watch:before {
  content: "﵃";
}

.icon-mdi-o-watch_later:before {
  content: "﵄";
}

.icon-mdi-o-water_damage:before {
  content: "﵅";
}

.icon-mdi-o-waves:before {
  content: "﵆";
}

.icon-mdi-o-wb_auto:before {
  content: "﵇";
}

.icon-mdi-o-wb_cloudy:before {
  content: "﵈";
}

.icon-mdi-o-wb_incandescent:before {
  content: "﵉";
}

.icon-mdi-o-wb_iridescent:before {
  content: "﵊";
}

.icon-mdi-o-wb_sunny:before {
  content: "﵋";
}

.icon-mdi-o-wc:before {
  content: "﵌";
}

.icon-mdi-o-web:before {
  content: "﵍";
}

.icon-mdi-o-web_asset:before {
  content: "﵎";
}

.icon-mdi-o-weekend:before {
  content: "﵏";
}

.icon-mdi-o-west:before {
  content: "ﵐ";
}

.icon-mdi-o-whatshot:before {
  content: "ﵑ";
}

.icon-mdi-o-wheelchair_pickup:before {
  content: "ﵒ";
}

.icon-mdi-o-where_to_vote:before {
  content: "ﵓ";
}

.icon-mdi-o-widgets:before {
  content: "ﵔ";
}

.icon-mdi-o-wifi:before {
  content: "ﵕ";
}

.icon-mdi-o-wifi_calling:before {
  content: "ﵖ";
}

.icon-mdi-o-wifi_lock:before {
  content: "ﵗ";
}

.icon-mdi-o-wifi_off:before {
  content: "ﵘ";
}

.icon-mdi-o-wifi_protected_setup:before {
  content: "ﵙ";
}

.icon-mdi-o-wifi_tethering:before {
  content: "ﵚ";
}

.icon-mdi-o-wine_bar:before {
  content: "ﵛ";
}

.icon-mdi-o-work:before {
  content: "ﵜ";
}

.icon-mdi-o-work_off:before {
  content: "ﵝ";
}

.icon-mdi-o-work_outline:before {
  content: "ﵞ";
}

.icon-mdi-o-wrap_text:before {
  content: "ﵟ";
}

.icon-mdi-o-wrong_location:before {
  content: "ﵠ";
}

.icon-mdi-o-wysiwyg:before {
  content: "ﵡ";
}

.icon-mdi-o-youtube_searched_for:before {
  content: "ﵢ";
}

.icon-mdi-o-zoom_in:before {
  content: "ﵣ";
}

.icon-mdi-o-zoom_out:before {
  content: "ﵤ";
}

.icon-mdi-o-zoom_out_map:before {
  content: "ﵥ";
}

.icon-mdi-r-360:before {
  content: "ﵦ";
}

.icon-mdi-r-3d_rotation:before {
  content: "ﵧ";
}

.icon-mdi-r-4k:before {
  content: "ﵨ";
}

.icon-mdi-r-5g:before {
  content: "ﵩ";
}

.icon-mdi-r-ac_unit:before {
  content: "ﵪ";
}

.icon-mdi-r-access_alarm:before {
  content: "ﵫ";
}

.icon-mdi-r-access_alarms:before {
  content: "ﵬ";
}

.icon-mdi-r-access_time:before {
  content: "ﵭ";
}

.icon-mdi-r-accessibility:before {
  content: "ﵮ";
}

.icon-mdi-r-accessibility_new:before {
  content: "ﵯ";
}

.icon-mdi-r-accessible:before {
  content: "ﵰ";
}

.icon-mdi-r-accessible_forward:before {
  content: "ﵱ";
}

.icon-mdi-r-account_balance:before {
  content: "ﵲ";
}

.icon-mdi-r-account_balance_wallet:before {
  content: "ﵳ";
}

.icon-mdi-r-account_box:before {
  content: "ﵴ";
}

.icon-mdi-r-account_circle:before {
  content: "ﵵ";
}

.icon-mdi-r-account_tree:before {
  content: "ﵶ";
}

.icon-mdi-r-ad_units:before {
  content: "ﵷ";
}

.icon-mdi-r-adb:before {
  content: "ﵸ";
}

.icon-mdi-r-add:before {
  content: "ﵹ";
}

.icon-mdi-r-add_a_photo:before {
  content: "ﵺ";
}

.icon-mdi-r-add_alarm:before {
  content: "ﵻ";
}

.icon-mdi-r-add_alert:before {
  content: "ﵼ";
}

.icon-mdi-r-add_box:before {
  content: "ﵽ";
}

.icon-mdi-r-add_business:before {
  content: "ﵾ";
}

.icon-mdi-r-add_circle:before {
  content: "ﵿ";
}

.icon-mdi-r-add_circle_outline:before {
  content: "ﶀ";
}

.icon-mdi-r-add_comment:before {
  content: "ﶁ";
}

.icon-mdi-r-add_ic_call:before {
  content: "ﶂ";
}

.icon-mdi-r-add_location:before {
  content: "ﶃ";
}

.icon-mdi-r-add_location_alt:before {
  content: "ﶄ";
}

.icon-mdi-r-add_photo_alternate:before {
  content: "ﶅ";
}

.icon-mdi-r-add_road:before {
  content: "ﶆ";
}

.icon-mdi-r-add_shopping_cart:before {
  content: "ﶇ";
}

.icon-mdi-r-add_to_home_screen:before {
  content: "ﶈ";
}

.icon-mdi-r-add_to_photos:before {
  content: "ﶉ";
}

.icon-mdi-r-add_to_queue:before {
  content: "ﶊ";
}

.icon-mdi-r-addchart:before {
  content: "ﶋ";
}

.icon-mdi-r-adjust:before {
  content: "ﶌ";
}

.icon-mdi-r-admin_panel_settings:before {
  content: "ﶍ";
}

.icon-mdi-r-agriculture:before {
  content: "ﶎ";
}

.icon-mdi-r-airline_seat_flat:before {
  content: "ﶏ";
}

.icon-mdi-r-airline_seat_flat_angled:before {
  content: "﶐";
}

.icon-mdi-r-airline_seat_individual_suite:before {
  content: "﶑";
}

.icon-mdi-r-airline_seat_legroom_extra:before {
  content: "ﶒ";
}

.icon-mdi-r-airline_seat_legroom_normal:before {
  content: "ﶓ";
}

.icon-mdi-r-airline_seat_legroom_reduced:before {
  content: "ﶔ";
}

.icon-mdi-r-airline_seat_recline_extra:before {
  content: "ﶕ";
}

.icon-mdi-r-airline_seat_recline_normal:before {
  content: "ﶖ";
}

.icon-mdi-r-airplanemode_active:before {
  content: "ﶗ";
}

.icon-mdi-r-airplanemode_inactive:before {
  content: "ﶘ";
}

.icon-mdi-r-airplay:before {
  content: "ﶙ";
}

.icon-mdi-r-airport_shuttle:before {
  content: "ﶚ";
}

.icon-mdi-r-alarm:before {
  content: "ﶛ";
}

.icon-mdi-r-alarm_add:before {
  content: "ﶜ";
}

.icon-mdi-r-alarm_off:before {
  content: "ﶝ";
}

.icon-mdi-r-alarm_on:before {
  content: "ﶞ";
}

.icon-mdi-r-album:before {
  content: "ﶟ";
}

.icon-mdi-r-all_inbox:before {
  content: "ﶠ";
}

.icon-mdi-r-all_inclusive:before {
  content: "ﶡ";
}

.icon-mdi-r-all_out:before {
  content: "ﶢ";
}

.icon-mdi-r-alt_route:before {
  content: "ﶣ";
}

.icon-mdi-r-alternate_email:before {
  content: "ﶤ";
}

.icon-mdi-r-amp_stories:before {
  content: "ﶥ";
}

.icon-mdi-r-analytics:before {
  content: "ﶦ";
}

.icon-mdi-r-anchor:before {
  content: "ﶧ";
}

.icon-mdi-r-android:before {
  content: "ﶨ";
}

.icon-mdi-r-announcement:before {
  content: "ﶩ";
}

.icon-mdi-r-apartment:before {
  content: "ﶪ";
}

.icon-mdi-r-api:before {
  content: "ﶫ";
}

.icon-mdi-r-app_blocking:before {
  content: "ﶬ";
}

.icon-mdi-r-app_settings_alt:before {
  content: "ﶭ";
}

.icon-mdi-r-apps:before {
  content: "ﶮ";
}

.icon-mdi-r-architecture:before {
  content: "ﶯ";
}

.icon-mdi-r-archive:before {
  content: "ﶰ";
}

.icon-mdi-r-arrow_back:before {
  content: "ﶱ";
}

.icon-mdi-r-arrow_back_ios:before {
  content: "ﶲ";
}

.icon-mdi-r-arrow_circle_down:before {
  content: "ﶳ";
}

.icon-mdi-r-arrow_circle_up:before {
  content: "ﶴ";
}

.icon-mdi-r-arrow_downward:before {
  content: "ﶵ";
}

.icon-mdi-r-arrow_drop_down:before {
  content: "ﶶ";
}

.icon-mdi-r-arrow_drop_down_circle:before {
  content: "ﶷ";
}

.icon-mdi-r-arrow_drop_left:before {
  content: "ﶸ";
}

.icon-mdi-r-arrow_drop_right:before {
  content: "ﶹ";
}

.icon-mdi-r-arrow_drop_up:before {
  content: "ﶺ";
}

.icon-mdi-r-arrow_forward:before {
  content: "ﶻ";
}

.icon-mdi-r-arrow_forward_ios:before {
  content: "ﶼ";
}

.icon-mdi-r-arrow_right_alt:before {
  content: "ﶽ";
}

.icon-mdi-r-arrow_upward:before {
  content: "ﶾ";
}

.icon-mdi-r-art_track:before {
  content: "ﶿ";
}

.icon-mdi-r-article:before {
  content: "ﷀ";
}

.icon-mdi-r-aspect_ratio:before {
  content: "ﷁ";
}

.icon-mdi-r-assessment:before {
  content: "ﷂ";
}

.icon-mdi-r-assignment:before {
  content: "ﷃ";
}

.icon-mdi-r-assignment_ind:before {
  content: "ﷄ";
}

.icon-mdi-r-assignment_late:before {
  content: "ﷅ";
}

.icon-mdi-r-assignment_return:before {
  content: "ﷆ";
}

.icon-mdi-r-assignment_returned:before {
  content: "ﷇ";
}

.icon-mdi-r-assignment_turned_in:before {
  content: "﷈";
}

.icon-mdi-r-assistant:before {
  content: "﷉";
}

.icon-mdi-r-assistant_photo:before {
  content: "﷊";
}

.icon-mdi-r-atm:before {
  content: "﷋";
}

.icon-mdi-r-attach_email:before {
  content: "﷌";
}

.icon-mdi-r-attach_file:before {
  content: "﷍";
}

.icon-mdi-r-attach_money:before {
  content: "﷎";
}

.icon-mdi-r-attachment:before {
  content: "﷏";
}

.icon-mdi-r-audiotrack:before {
  content: "﷐";
}

.icon-mdi-r-auto_delete:before {
  content: "﷑";
}

.icon-mdi-r-autorenew:before {
  content: "﷒";
}

.icon-mdi-r-av_timer:before {
  content: "﷓";
}

.icon-mdi-r-baby_changing_station:before {
  content: "﷔";
}

.icon-mdi-r-backpack:before {
  content: "﷕";
}

.icon-mdi-r-backspace:before {
  content: "﷖";
}

.icon-mdi-r-backup:before {
  content: "﷗";
}

.icon-mdi-r-backup_table:before {
  content: "﷘";
}

.icon-mdi-r-ballot:before {
  content: "﷙";
}

.icon-mdi-r-bar_chart:before {
  content: "﷚";
}

.icon-mdi-r-batch_prediction:before {
  content: "﷛";
}

.icon-mdi-r-bathtub:before {
  content: "﷜";
}

.icon-mdi-r-battery_alert:before {
  content: "﷝";
}

.icon-mdi-r-battery_charging_full:before {
  content: "﷞";
}

.icon-mdi-r-battery_std:before {
  content: "﷟";
}

.icon-mdi-r-battery_unknown:before {
  content: "﷠";
}

.icon-mdi-r-beach_access:before {
  content: "﷡";
}

.icon-mdi-r-bedtime:before {
  content: "﷢";
}

.icon-mdi-r-beenhere:before {
  content: "﷣";
}

.icon-mdi-r-bento:before {
  content: "﷤";
}

.icon-mdi-r-bike_scooter:before {
  content: "﷥";
}

.icon-mdi-r-biotech:before {
  content: "﷦";
}

.icon-mdi-r-block:before {
  content: "﷧";
}

.icon-mdi-r-bluetooth:before {
  content: "﷨";
}

.icon-mdi-r-bluetooth_audio:before {
  content: "﷩";
}

.icon-mdi-r-bluetooth_connected:before {
  content: "﷪";
}

.icon-mdi-r-bluetooth_disabled:before {
  content: "﷫";
}

.icon-mdi-r-bluetooth_searching:before {
  content: "﷬";
}

.icon-mdi-r-blur_circular:before {
  content: "﷭";
}

.icon-mdi-r-blur_linear:before {
  content: "﷮";
}

.icon-mdi-r-blur_off:before {
  content: "﷯";
}

.icon-mdi-r-blur_on:before {
  content: "ﷰ";
}

.icon-mdi-r-book:before {
  content: "ﷱ";
}

.icon-mdi-r-bookmark:before {
  content: "ﷲ";
}

.icon-mdi-r-bookmark_border:before {
  content: "ﷳ";
}

.icon-mdi-r-bookmarks:before {
  content: "ﷴ";
}

.icon-mdi-r-border_all:before {
  content: "ﷵ";
}

.icon-mdi-r-border_bottom:before {
  content: "ﷶ";
}

.icon-mdi-r-border_clear:before {
  content: "ﷷ";
}

.icon-mdi-r-border_horizontal:before {
  content: "ﷸ";
}

.icon-mdi-r-border_inner:before {
  content: "ﷹ";
}

.icon-mdi-r-border_left:before {
  content: "ﷺ";
}

.icon-mdi-r-border_outer:before {
  content: "ﷻ";
}

.icon-mdi-r-border_right:before {
  content: "﷼";
}

.icon-mdi-r-border_style:before {
  content: "﷽";
}

.icon-mdi-r-border_top:before {
  content: "﷾";
}

.icon-mdi-r-border_vertical:before {
  content: "﷿";
}

.icon-mdi-r-branding_watermark:before {
  content: "︀";
}

.icon-mdi-r-brightness_1:before {
  content: "︁";
}

.icon-mdi-r-brightness_2:before {
  content: "︂";
}

.icon-mdi-r-brightness_3:before {
  content: "︃";
}

.icon-mdi-r-brightness_4:before {
  content: "︄";
}

.icon-mdi-r-brightness_5:before {
  content: "︅";
}

.icon-mdi-r-brightness_6:before {
  content: "︆";
}

.icon-mdi-r-brightness_7:before {
  content: "︇";
}

.icon-mdi-r-brightness_auto:before {
  content: "︈";
}

.icon-mdi-r-brightness_high:before {
  content: "︉";
}

.icon-mdi-r-brightness_low:before {
  content: "︊";
}

.icon-mdi-r-brightness_medium:before {
  content: "︋";
}

.icon-mdi-r-broken_image:before {
  content: "︌";
}

.icon-mdi-r-browser_not_supported:before {
  content: "︍";
}

.icon-mdi-r-brush:before {
  content: "︎";
}

.icon-mdi-r-bubble_chart:before {
  content: "️";
}

.icon-mdi-r-bug_report:before {
  content: "︐";
}

.icon-mdi-r-build:before {
  content: "︑";
}

.icon-mdi-r-build_circle:before {
  content: "︒";
}

.icon-mdi-r-burst_mode:before {
  content: "︓";
}

.icon-mdi-r-business:before {
  content: "︔";
}

.icon-mdi-r-business_center:before {
  content: "︕";
}

.icon-mdi-r-cached:before {
  content: "︖";
}

.icon-mdi-r-cake:before {
  content: "︗";
}

.icon-mdi-r-calculate:before {
  content: "︘";
}

.icon-mdi-r-calendar_today:before {
  content: "︙";
}

.icon-mdi-r-calendar_view_day:before {
  content: "︚";
}

.icon-mdi-r-call:before {
  content: "︛";
}

.icon-mdi-r-call_end:before {
  content: "︜";
}

.icon-mdi-r-call_made:before {
  content: "︝";
}

.icon-mdi-r-call_merge:before {
  content: "︞";
}

.icon-mdi-r-call_missed:before {
  content: "︟";
}

.icon-mdi-r-call_missed_outgoing:before {
  content: "︠";
}

.icon-mdi-r-call_received:before {
  content: "︡";
}

.icon-mdi-r-call_split:before {
  content: "︢";
}

.icon-mdi-r-call_to_action:before {
  content: "︣";
}

.icon-mdi-r-camera:before {
  content: "︤";
}

.icon-mdi-r-camera_alt:before {
  content: "︥";
}

.icon-mdi-r-camera_enhance:before {
  content: "︦";
}

.icon-mdi-r-camera_front:before {
  content: "︧";
}

.icon-mdi-r-camera_rear:before {
  content: "︨";
}

.icon-mdi-r-camera_roll:before {
  content: "︩";
}

.icon-mdi-r-campaign:before {
  content: "︪";
}

.icon-mdi-r-cancel:before {
  content: "︫";
}

.icon-mdi-r-cancel_presentation:before {
  content: "︬";
}

.icon-mdi-r-cancel_schedule_send:before {
  content: "︭";
}

.icon-mdi-r-card_giftcard:before {
  content: "︮";
}

.icon-mdi-r-card_membership:before {
  content: "︯";
}

.icon-mdi-r-card_travel:before {
  content: "︰";
}

.icon-mdi-r-carpenter:before {
  content: "︱";
}

.icon-mdi-r-casino:before {
  content: "︲";
}

.icon-mdi-r-cast:before {
  content: "︳";
}

.icon-mdi-r-cast_connected:before {
  content: "︴";
}

.icon-mdi-r-cast_for_education:before {
  content: "︵";
}

.icon-mdi-r-category:before {
  content: "︶";
}

.icon-mdi-r-center_focus_strong:before {
  content: "︷";
}

.icon-mdi-r-center_focus_weak:before {
  content: "︸";
}

.icon-mdi-r-change_history:before {
  content: "︹";
}

.icon-mdi-r-charging_station:before {
  content: "︺";
}

.icon-mdi-r-chat:before {
  content: "︻";
}

.icon-mdi-r-chat_bubble:before {
  content: "︼";
}

.icon-mdi-r-chat_bubble_outline:before {
  content: "︽";
}

.icon-mdi-r-check:before {
  content: "︾";
}

.icon-mdi-r-check_box:before {
  content: "︿";
}

.icon-mdi-r-check_box_outline_blank:before {
  content: "﹀";
}

.icon-mdi-r-check_circle:before {
  content: "﹁";
}

.icon-mdi-r-check_circle_outline:before {
  content: "﹂";
}

.icon-mdi-r-checkroom:before {
  content: "﹃";
}

.icon-mdi-r-chevron_left:before {
  content: "﹄";
}

.icon-mdi-r-chevron_right:before {
  content: "﹅";
}

.icon-mdi-r-child_care:before {
  content: "﹆";
}

.icon-mdi-r-child_friendly:before {
  content: "﹇";
}

.icon-mdi-r-chrome_reader_mode:before {
  content: "﹈";
}

.icon-mdi-r-class:before {
  content: "﹉";
}

.icon-mdi-r-cleaning_services:before {
  content: "﹊";
}

.icon-mdi-r-clear:before {
  content: "﹋";
}

.icon-mdi-r-clear_all:before {
  content: "﹌";
}

.icon-mdi-r-close:before {
  content: "﹍";
}

.icon-mdi-r-close_fullscreen:before {
  content: "﹎";
}

.icon-mdi-r-closed_caption:before {
  content: "﹏";
}

.icon-mdi-r-closed_caption_disabled:before {
  content: "﹐";
}

.icon-mdi-r-cloud:before {
  content: "﹑";
}

.icon-mdi-r-cloud_circle:before {
  content: "﹒";
}

.icon-mdi-r-cloud_done:before {
  content: "﹓";
}

.icon-mdi-r-cloud_download:before {
  content: "﹔";
}

.icon-mdi-r-cloud_off:before {
  content: "﹕";
}

.icon-mdi-r-cloud_queue:before {
  content: "﹖";
}

.icon-mdi-r-cloud_upload:before {
  content: "﹗";
}

.icon-mdi-r-code:before {
  content: "﹘";
}

.icon-mdi-r-collections:before {
  content: "﹙";
}

.icon-mdi-r-collections_bookmark:before {
  content: "﹚";
}

.icon-mdi-r-color_lens:before {
  content: "﹛";
}

.icon-mdi-r-colorize:before {
  content: "﹜";
}

.icon-mdi-r-comment:before {
  content: "﹝";
}

.icon-mdi-r-comment_bank:before {
  content: "﹞";
}

.icon-mdi-r-commute:before {
  content: "﹟";
}

.icon-mdi-r-compare:before {
  content: "﹠";
}

.icon-mdi-r-compare_arrows:before {
  content: "﹡";
}

.icon-mdi-r-compass_calibration:before {
  content: "﹢";
}

.icon-mdi-r-computer:before {
  content: "﹣";
}

.icon-mdi-r-confirmation_number:before {
  content: "﹤";
}

.icon-mdi-r-construction:before {
  content: "﹥";
}

.icon-mdi-r-contact_mail:before {
  content: "﹦";
}

.icon-mdi-r-contact_phone:before {
  content: "﹧";
}

.icon-mdi-r-contact_support:before {
  content: "﹨";
}

.icon-mdi-r-contactless:before {
  content: "﹩";
}

.icon-mdi-r-contacts:before {
  content: "﹪";
}

.icon-mdi-r-content_copy:before {
  content: "﹫";
}

.icon-mdi-r-content_cut:before {
  content: "﹬";
}

.icon-mdi-r-content_paste:before {
  content: "﹭";
}

.icon-mdi-r-control_camera:before {
  content: "﹮";
}

.icon-mdi-r-control_point:before {
  content: "﹯";
}

.icon-mdi-r-control_point_duplicate:before {
  content: "ﹰ";
}

.icon-mdi-r-copyright:before {
  content: "ﹱ";
}

.icon-mdi-r-corporate_fare:before {
  content: "ﹲ";
}

.icon-mdi-r-countertops:before {
  content: "ﹳ";
}

.icon-mdi-r-create:before {
  content: "ﹴ";
}

.icon-mdi-r-create_new_folder:before {
  content: "﹵";
}

.icon-mdi-r-credit_card:before {
  content: "ﹶ";
}

.icon-mdi-r-crop:before {
  content: "ﹷ";
}

.icon-mdi-r-crop_16_9:before {
  content: "ﹸ";
}

.icon-mdi-r-crop_3_2:before {
  content: "ﹹ";
}

.icon-mdi-r-crop_5_4:before {
  content: "ﹺ";
}

.icon-mdi-r-crop_7_5:before {
  content: "ﹻ";
}

.icon-mdi-r-crop_din:before {
  content: "ﹼ";
}

.icon-mdi-r-crop_free:before {
  content: "ﹽ";
}

.icon-mdi-r-crop_landscape:before {
  content: "ﹾ";
}

.icon-mdi-r-crop_original:before {
  content: "ﹿ";
}

.icon-mdi-r-crop_portrait:before {
  content: "ﺀ";
}

.icon-mdi-r-crop_rotate:before {
  content: "ﺁ";
}

.icon-mdi-r-crop_square:before {
  content: "ﺂ";
}

.icon-mdi-r-dashboard:before {
  content: "ﺃ";
}

.icon-mdi-r-data_usage:before {
  content: "ﺄ";
}

.icon-mdi-r-date_range:before {
  content: "ﺅ";
}

.icon-mdi-r-deck:before {
  content: "ﺆ";
}

.icon-mdi-r-dehaze:before {
  content: "ﺇ";
}

.icon-mdi-r-delete:before {
  content: "ﺈ";
}

.icon-mdi-r-delete_forever:before {
  content: "ﺉ";
}

.icon-mdi-r-delete_outline:before {
  content: "ﺊ";
}

.icon-mdi-r-delete_sweep:before {
  content: "ﺋ";
}

.icon-mdi-r-departure_board:before {
  content: "ﺌ";
}

.icon-mdi-r-description:before {
  content: "ﺍ";
}

.icon-mdi-r-design_services:before {
  content: "ﺎ";
}

.icon-mdi-r-desktop_access_disabled:before {
  content: "ﺏ";
}

.icon-mdi-r-desktop_mac:before {
  content: "ﺐ";
}

.icon-mdi-r-desktop_windows:before {
  content: "ﺑ";
}

.icon-mdi-r-details:before {
  content: "ﺒ";
}

.icon-mdi-r-developer_board:before {
  content: "ﺓ";
}

.icon-mdi-r-developer_mode:before {
  content: "ﺔ";
}

.icon-mdi-r-device_hub:before {
  content: "ﺕ";
}

.icon-mdi-r-device_unknown:before {
  content: "ﺖ";
}

.icon-mdi-r-devices:before {
  content: "ﺗ";
}

.icon-mdi-r-devices_other:before {
  content: "ﺘ";
}

.icon-mdi-r-dialer_sip:before {
  content: "ﺙ";
}

.icon-mdi-r-dialpad:before {
  content: "ﺚ";
}

.icon-mdi-r-directions:before {
  content: "ﺛ";
}

.icon-mdi-r-directions_bike:before {
  content: "ﺜ";
}

.icon-mdi-r-directions_boat:before {
  content: "ﺝ";
}

.icon-mdi-r-directions_bus:before {
  content: "ﺞ";
}

.icon-mdi-r-directions_car:before {
  content: "ﺟ";
}

.icon-mdi-r-directions_off:before {
  content: "ﺠ";
}

.icon-mdi-r-directions_railway:before {
  content: "ﺡ";
}

.icon-mdi-r-directions_run:before {
  content: "ﺢ";
}

.icon-mdi-r-directions_subway:before {
  content: "ﺣ";
}

.icon-mdi-r-directions_transit:before {
  content: "ﺤ";
}

.icon-mdi-r-directions_walk:before {
  content: "ﺥ";
}

.icon-mdi-r-disc_full:before {
  content: "ﺦ";
}

.icon-mdi-r-dns:before {
  content: "ﺧ";
}

.icon-mdi-r-do_not_step:before {
  content: "ﺨ";
}

.icon-mdi-r-do_not_touch:before {
  content: "ﺩ";
}

.icon-mdi-r-dock:before {
  content: "ﺪ";
}

.icon-mdi-r-domain:before {
  content: "ﺫ";
}

.icon-mdi-r-domain_disabled:before {
  content: "ﺬ";
}

.icon-mdi-r-domain_verification:before {
  content: "ﺭ";
}

.icon-mdi-r-done:before {
  content: "ﺮ";
}

.icon-mdi-r-done_all:before {
  content: "ﺯ";
}

.icon-mdi-r-done_outline:before {
  content: "ﺰ";
}

.icon-mdi-r-donut_large:before {
  content: "ﺱ";
}

.icon-mdi-r-donut_small:before {
  content: "ﺲ";
}

.icon-mdi-r-double_arrow:before {
  content: "ﺳ";
}

.icon-mdi-r-drafts:before {
  content: "ﺴ";
}

.icon-mdi-r-drag_handle:before {
  content: "ﺵ";
}

.icon-mdi-r-drag_indicator:before {
  content: "ﺶ";
}

.icon-mdi-r-drive_eta:before {
  content: "ﺷ";
}

.icon-mdi-r-dry:before {
  content: "ﺸ";
}

.icon-mdi-r-duo:before {
  content: "ﺹ";
}

.icon-mdi-r-dvr:before {
  content: "ﺺ";
}

.icon-mdi-r-dynamic_feed:before {
  content: "ﺻ";
}

.icon-mdi-r-dynamic_form:before {
  content: "ﺼ";
}

.icon-mdi-r-east:before {
  content: "ﺽ";
}

.icon-mdi-r-eco:before {
  content: "ﺾ";
}

.icon-mdi-r-edit:before {
  content: "ﺿ";
}

.icon-mdi-r-edit_attributes:before {
  content: "ﻀ";
}

.icon-mdi-r-edit_location:before {
  content: "ﻁ";
}

.icon-mdi-r-edit_road:before {
  content: "ﻂ";
}

.icon-mdi-r-eject:before {
  content: "ﻃ";
}

.icon-mdi-r-electric_bike:before {
  content: "ﻄ";
}

.icon-mdi-r-electric_car:before {
  content: "ﻅ";
}

.icon-mdi-r-electric_moped:before {
  content: "ﻆ";
}

.icon-mdi-r-electric_scooter:before {
  content: "ﻇ";
}

.icon-mdi-r-electrical_services:before {
  content: "ﻈ";
}

.icon-mdi-r-elevator:before {
  content: "ﻉ";
}

.icon-mdi-r-email:before {
  content: "ﻊ";
}

.icon-mdi-r-emoji_emotions:before {
  content: "ﻋ";
}

.icon-mdi-r-emoji_events:before {
  content: "ﻌ";
}

.icon-mdi-r-emoji_flags:before {
  content: "ﻍ";
}

.icon-mdi-r-emoji_food_beverage:before {
  content: "ﻎ";
}

.icon-mdi-r-emoji_nature:before {
  content: "ﻏ";
}

.icon-mdi-r-emoji_objects:before {
  content: "ﻐ";
}

.icon-mdi-r-emoji_people:before {
  content: "ﻑ";
}

.icon-mdi-r-emoji_symbols:before {
  content: "ﻒ";
}

.icon-mdi-r-emoji_transportation:before {
  content: "ﻓ";
}

.icon-mdi-r-engineering:before {
  content: "ﻔ";
}

.icon-mdi-r-enhanced_encryption:before {
  content: "ﻕ";
}

.icon-mdi-r-equalizer:before {
  content: "ﻖ";
}

.icon-mdi-r-error:before {
  content: "ﻗ";
}

.icon-mdi-r-error_outline:before {
  content: "ﻘ";
}

.icon-mdi-r-escalator:before {
  content: "ﻙ";
}

.icon-mdi-r-escalator_warning:before {
  content: "ﻚ";
}

.icon-mdi-r-euro:before {
  content: "ﻛ";
}

.icon-mdi-r-euro_symbol:before {
  content: "ﻜ";
}

.icon-mdi-r-ev_station:before {
  content: "ﻝ";
}

.icon-mdi-r-event:before {
  content: "ﻞ";
}

.icon-mdi-r-event_available:before {
  content: "ﻟ";
}

.icon-mdi-r-event_busy:before {
  content: "ﻠ";
}

.icon-mdi-r-event_note:before {
  content: "ﻡ";
}

.icon-mdi-r-event_seat:before {
  content: "ﻢ";
}

.icon-mdi-r-exit_to_app:before {
  content: "ﻣ";
}

.icon-mdi-r-expand_less:before {
  content: "ﻤ";
}

.icon-mdi-r-expand_more:before {
  content: "ﻥ";
}

.icon-mdi-r-explicit:before {
  content: "ﻦ";
}

.icon-mdi-r-explore:before {
  content: "ﻧ";
}

.icon-mdi-r-explore_off:before {
  content: "ﻨ";
}

.icon-mdi-r-exposure:before {
  content: "ﻩ";
}

.icon-mdi-r-exposure_neg_1:before {
  content: "ﻪ";
}

.icon-mdi-r-exposure_neg_2:before {
  content: "ﻫ";
}

.icon-mdi-r-exposure_plus_1:before {
  content: "ﻬ";
}

.icon-mdi-r-exposure_plus_2:before {
  content: "ﻭ";
}

.icon-mdi-r-exposure_zero:before {
  content: "ﻮ";
}

.icon-mdi-r-extension:before {
  content: "ﻯ";
}

.icon-mdi-r-face:before {
  content: "ﻰ";
}

.icon-mdi-r-fact_check:before {
  content: "ﻱ";
}

.icon-mdi-r-family_restroom:before {
  content: "ﻲ";
}

.icon-mdi-r-fast_forward:before {
  content: "ﻳ";
}

.icon-mdi-r-fast_rewind:before {
  content: "ﻴ";
}

.icon-mdi-r-fastfood:before {
  content: "ﻵ";
}

.icon-mdi-r-favorite:before {
  content: "ﻶ";
}

.icon-mdi-r-favorite_border:before {
  content: "ﻷ";
}

.icon-mdi-r-featured_play_list:before {
  content: "ﻸ";
}

.icon-mdi-r-featured_video:before {
  content: "ﻹ";
}

.icon-mdi-r-feedback:before {
  content: "ﻺ";
}

.icon-mdi-r-fence:before {
  content: "ﻻ";
}

.icon-mdi-r-fiber_dvr:before {
  content: "ﻼ";
}

.icon-mdi-r-fiber_manual_record:before {
  content: "﻽";
}

.icon-mdi-r-fiber_new:before {
  content: "﻾";
}

.icon-mdi-r-fiber_pin:before {
  content: "﻿";
}

.icon-mdi-r-fiber_smart_record:before {
  content: "＀";
}

.icon-mdi-r-file_copy:before {
  content: "！";
}

.icon-mdi-r-filter:before {
  content: "＂";
}

.icon-mdi-r-filter_1:before {
  content: "＃";
}

.icon-mdi-r-filter_2:before {
  content: "＄";
}

.icon-mdi-r-filter_3:before {
  content: "％";
}

.icon-mdi-r-filter_4:before {
  content: "＆";
}

.icon-mdi-r-filter_5:before {
  content: "＇";
}

.icon-mdi-r-filter_6:before {
  content: "（";
}

.icon-mdi-r-filter_7:before {
  content: "）";
}

.icon-mdi-r-filter_8:before {
  content: "＊";
}

.icon-mdi-r-filter_9:before {
  content: "＋";
}

.icon-mdi-r-filter_9_plus:before {
  content: "，";
}

.icon-mdi-r-filter_alt:before {
  content: "－";
}

.icon-mdi-r-filter_b_and_w:before {
  content: "．";
}

.icon-mdi-r-filter_center_focus:before {
  content: "／";
}

.icon-mdi-r-filter_drama:before {
  content: "０";
}

.icon-mdi-r-filter_frames:before {
  content: "１";
}

.icon-mdi-r-filter_hdr:before {
  content: "２";
}

.icon-mdi-r-filter_list:before {
  content: "３";
}

.icon-mdi-r-filter_none:before {
  content: "４";
}

.icon-mdi-r-filter_tilt_shift:before {
  content: "５";
}

.icon-mdi-r-filter_vintage:before {
  content: "６";
}

.icon-mdi-r-find_in_page:before {
  content: "７";
}

.icon-mdi-r-find_replace:before {
  content: "８";
}

.icon-mdi-r-fingerprint:before {
  content: "９";
}

.icon-mdi-r-fire_extinguisher:before {
  content: "：";
}

.icon-mdi-r-fireplace:before {
  content: "；";
}

.icon-mdi-r-first_page:before {
  content: "＜";
}

.icon-mdi-r-fitness_center:before {
  content: "＝";
}

.icon-mdi-r-flag:before {
  content: "＞";
}

.icon-mdi-r-flaky:before {
  content: "？";
}

.icon-mdi-r-flare:before {
  content: "＠";
}

.icon-mdi-r-flash_auto:before {
  content: "Ａ";
}

.icon-mdi-r-flash_off:before {
  content: "Ｂ";
}

.icon-mdi-r-flash_on:before {
  content: "Ｃ";
}

.icon-mdi-r-flight:before {
  content: "Ｄ";
}

.icon-mdi-r-flight_land:before {
  content: "Ｅ";
}

.icon-mdi-r-flight_takeoff:before {
  content: "Ｆ";
}

.icon-mdi-r-flip:before {
  content: "Ｇ";
}

.icon-mdi-r-flip_camera_android:before {
  content: "Ｈ";
}

.icon-mdi-r-flip_camera_ios:before {
  content: "Ｉ";
}

.icon-mdi-r-flip_to_back:before {
  content: "Ｊ";
}

.icon-mdi-r-flip_to_front:before {
  content: "Ｋ";
}

.icon-mdi-r-folder:before {
  content: "Ｌ";
}

.icon-mdi-r-folder_open:before {
  content: "Ｍ";
}

.icon-mdi-r-folder_shared:before {
  content: "Ｎ";
}

.icon-mdi-r-folder_special:before {
  content: "Ｏ";
}

.icon-mdi-r-font_download:before {
  content: "Ｐ";
}

.icon-mdi-r-food_bank:before {
  content: "Ｑ";
}

.icon-mdi-r-format_align_center:before {
  content: "Ｒ";
}

.icon-mdi-r-format_align_justify:before {
  content: "Ｓ";
}

.icon-mdi-r-format_align_left:before {
  content: "Ｔ";
}

.icon-mdi-r-format_align_right:before {
  content: "Ｕ";
}

.icon-mdi-r-format_bold:before {
  content: "Ｖ";
}

.icon-mdi-r-format_clear:before {
  content: "Ｗ";
}

.icon-mdi-r-format_color_reset:before {
  content: "Ｘ";
}

.icon-mdi-r-format_indent_decrease:before {
  content: "Ｙ";
}

.icon-mdi-r-format_indent_increase:before {
  content: "Ｚ";
}

.icon-mdi-r-format_italic:before {
  content: "［";
}

.icon-mdi-r-format_line_spacing:before {
  content: "＼";
}

.icon-mdi-r-format_list_bulleted:before {
  content: "］";
}

.icon-mdi-r-format_list_numbered:before {
  content: "＾";
}

.icon-mdi-r-format_list_numbered_rtl:before {
  content: "＿";
}

.icon-mdi-r-format_paint:before {
  content: "｀";
}

.icon-mdi-r-format_quote:before {
  content: "ａ";
}

.icon-mdi-r-format_shapes:before {
  content: "ｂ";
}

.icon-mdi-r-format_size:before {
  content: "ｃ";
}

.icon-mdi-r-format_strikethrough:before {
  content: "ｄ";
}

.icon-mdi-r-format_textdirection_l_to_r:before {
  content: "ｅ";
}

.icon-mdi-r-format_textdirection_r_to_l:before {
  content: "ｆ";
}

.icon-mdi-r-format_underlined:before {
  content: "ｇ";
}

.icon-mdi-r-forum:before {
  content: "ｈ";
}

.icon-mdi-r-forward:before {
  content: "ｉ";
}

.icon-mdi-r-forward_10:before {
  content: "ｊ";
}

.icon-mdi-r-forward_30:before {
  content: "ｋ";
}

.icon-mdi-r-forward_5:before {
  content: "ｌ";
}

.icon-mdi-r-forward_to_inbox:before {
  content: "ｍ";
}

.icon-mdi-r-foundation:before {
  content: "ｎ";
}

.icon-mdi-r-free_breakfast:before {
  content: "ｏ";
}

.icon-mdi-r-fullscreen:before {
  content: "ｐ";
}

.icon-mdi-r-fullscreen_exit:before {
  content: "ｑ";
}

.icon-mdi-r-functions:before {
  content: "ｒ";
}

.icon-mdi-r-g_translate:before {
  content: "ｓ";
}

.icon-mdi-r-gamepad:before {
  content: "ｔ";
}

.icon-mdi-r-gavel:before {
  content: "ｕ";
}

.icon-mdi-r-gesture:before {
  content: "ｖ";
}

.icon-mdi-r-get_app:before {
  content: "ｗ";
}

.icon-mdi-r-gif:before {
  content: "ｘ";
}

.icon-mdi-r-golf_course:before {
  content: "ｙ";
}

.icon-mdi-r-gps_fixed:before {
  content: "ｚ";
}

.icon-mdi-r-gps_not_fixed:before {
  content: "｛";
}

.icon-mdi-r-gps_off:before {
  content: "｜";
}

.icon-mdi-r-grade:before {
  content: "｝";
}

.icon-mdi-r-gradient:before {
  content: "～";
}

.icon-mdi-r-grading:before {
  content: "｟";
}

.icon-mdi-r-grain:before {
  content: "｠";
}

.icon-mdi-r-graphic_eq:before {
  content: "｡";
}

.icon-mdi-r-grass:before {
  content: "｢";
}

.icon-mdi-r-grid_off:before {
  content: "｣";
}

.icon-mdi-r-grid_on:before {
  content: "､";
}

.icon-mdi-r-group:before {
  content: "･";
}

.icon-mdi-r-group_add:before {
  content: "ｦ";
}

.icon-mdi-r-group_work:before {
  content: "ｧ";
}

.icon-mdi-r-handyman:before {
  content: "ｨ";
}

.icon-mdi-r-hd:before {
  content: "ｩ";
}

.icon-mdi-r-hdr_off:before {
  content: "ｪ";
}

.icon-mdi-r-hdr_on:before {
  content: "ｫ";
}

.icon-mdi-r-hdr_strong:before {
  content: "ｬ";
}

.icon-mdi-r-hdr_weak:before {
  content: "ｭ";
}

.icon-mdi-r-headset:before {
  content: "ｮ";
}

.icon-mdi-r-headset_mic:before {
  content: "ｯ";
}

.icon-mdi-r-healing:before {
  content: "ｰ";
}

.icon-mdi-r-hearing:before {
  content: "ｱ";
}

.icon-mdi-r-hearing_disabled:before {
  content: "ｲ";
}

.icon-mdi-r-height:before {
  content: "ｳ";
}

.icon-mdi-r-help:before {
  content: "ｴ";
}

.icon-mdi-r-help_center:before {
  content: "ｵ";
}

.icon-mdi-r-help_outline:before {
  content: "ｶ";
}

.icon-mdi-r-high_quality:before {
  content: "ｷ";
}

.icon-mdi-r-highlight:before {
  content: "ｸ";
}

.icon-mdi-r-highlight_alt:before {
  content: "ｹ";
}

.icon-mdi-r-highlight_off:before {
  content: "ｺ";
}

.icon-mdi-r-history:before {
  content: "ｻ";
}

.icon-mdi-r-history_edu:before {
  content: "ｼ";
}

.icon-mdi-r-history_toggle_off:before {
  content: "ｽ";
}

.icon-mdi-r-home:before {
  content: "ｾ";
}

.icon-mdi-r-home_repair_service:before {
  content: "ｿ";
}

.icon-mdi-r-home_work:before {
  content: "ﾀ";
}

.icon-mdi-r-horizontal_rule:before {
  content: "ﾁ";
}

.icon-mdi-r-horizontal_split:before {
  content: "ﾂ";
}

.icon-mdi-r-hot_tub:before {
  content: "ﾃ";
}

.icon-mdi-r-hotel:before {
  content: "ﾄ";
}

.icon-mdi-r-hourglass_bottom:before {
  content: "ﾅ";
}

.icon-mdi-r-hourglass_disabled:before {
  content: "ﾆ";
}

.icon-mdi-r-hourglass_empty:before {
  content: "ﾇ";
}

.icon-mdi-r-hourglass_full:before {
  content: "ﾈ";
}

.icon-mdi-r-hourglass_top:before {
  content: "ﾉ";
}

.icon-mdi-r-house:before {
  content: "ﾊ";
}

.icon-mdi-r-house_siding:before {
  content: "ﾋ";
}

.icon-mdi-r-how_to_reg:before {
  content: "ﾌ";
}

.icon-mdi-r-how_to_vote:before {
  content: "ﾍ";
}

.icon-mdi-r-http:before {
  content: "ﾎ";
}

.icon-mdi-r-https:before {
  content: "ﾏ";
}

.icon-mdi-r-hvac:before {
  content: "ﾐ";
}

.icon-mdi-r-image:before {
  content: "ﾑ";
}

.icon-mdi-r-image_aspect_ratio:before {
  content: "ﾒ";
}

.icon-mdi-r-image_not_supported:before {
  content: "ﾓ";
}

.icon-mdi-r-image_search:before {
  content: "ﾔ";
}

.icon-mdi-r-import_contacts:before {
  content: "ﾕ";
}

.icon-mdi-r-import_export:before {
  content: "ﾖ";
}

.icon-mdi-r-important_devices:before {
  content: "ﾗ";
}

.icon-mdi-r-inbox:before {
  content: "ﾘ";
}

.icon-mdi-r-indeterminate_check_box:before {
  content: "ﾙ";
}

.icon-mdi-r-info:before {
  content: "ﾚ";
}

.icon-mdi-r-input:before {
  content: "ﾛ";
}

.icon-mdi-r-insert_chart:before {
  content: "ﾜ";
}

.icon-mdi-r-insert_chart_outlined:before {
  content: "ﾝ";
}

.icon-mdi-r-insert_comment:before {
  content: "ﾞ";
}

.icon-mdi-r-insert_drive_file:before {
  content: "ﾟ";
}

.icon-mdi-r-insert_emoticon:before {
  content: "ﾠ";
}

.icon-mdi-r-insert_invitation:before {
  content: "ﾡ";
}

.icon-mdi-r-insert_link:before {
  content: "ﾢ";
}

.icon-mdi-r-insert_photo:before {
  content: "ﾣ";
}

.icon-mdi-r-insights:before {
  content: "ﾤ";
}

.icon-mdi-r-integration_instructions:before {
  content: "ﾥ";
}

.icon-mdi-r-invert_colors:before {
  content: "ﾦ";
}

.icon-mdi-r-invert_colors_off:before {
  content: "ﾧ";
}

.icon-mdi-r-iso:before {
  content: "ﾨ";
}

.icon-mdi-r-keyboard:before {
  content: "ﾩ";
}

.icon-mdi-r-keyboard_arrow_down:before {
  content: "ﾪ";
}

.icon-mdi-r-keyboard_arrow_left:before {
  content: "ﾫ";
}

.icon-mdi-r-keyboard_arrow_right:before {
  content: "ﾬ";
}

.icon-mdi-r-keyboard_arrow_up:before {
  content: "ﾭ";
}

.icon-mdi-r-keyboard_backspace:before {
  content: "ﾮ";
}

.icon-mdi-r-keyboard_capslock:before {
  content: "ﾯ";
}

.icon-mdi-r-keyboard_hide:before {
  content: "ﾰ";
}

.icon-mdi-r-keyboard_return:before {
  content: "ﾱ";
}

.icon-mdi-r-keyboard_tab:before {
  content: "ﾲ";
}

.icon-mdi-r-keyboard_voice:before {
  content: "ﾳ";
}

.icon-mdi-r-king_bed:before {
  content: "ﾴ";
}

.icon-mdi-r-kitchen:before {
  content: "ﾵ";
}

.icon-mdi-r-label:before {
  content: "ﾶ";
}

.icon-mdi-r-label_important:before {
  content: "ﾷ";
}

.icon-mdi-r-label_off:before {
  content: "ﾸ";
}

.icon-mdi-r-landscape:before {
  content: "ﾹ";
}

.icon-mdi-r-language:before {
  content: "ﾺ";
}

.icon-mdi-r-laptop:before {
  content: "ﾻ";
}

.icon-mdi-r-laptop_chromebook:before {
  content: "ﾼ";
}

.icon-mdi-r-laptop_mac:before {
  content: "ﾽ";
}

.icon-mdi-r-laptop_windows:before {
  content: "ﾾ";
}

.icon-mdi-r-last_page:before {
  content: "﾿";
}

.icon-mdi-r-launch:before {
  content: "￀";
}

.icon-mdi-r-layers:before {
  content: "￁";
}

.icon-mdi-r-layers_clear:before {
  content: "ￂ";
}

.icon-mdi-r-leaderboard:before {
  content: "ￃ";
}

.icon-mdi-r-leak_add:before {
  content: "ￄ";
}

.icon-mdi-r-leak_remove:before {
  content: "ￅ";
}

.icon-mdi-r-legend_toggle:before {
  content: "ￆ";
}

.icon-mdi-r-lens:before {
  content: "ￇ";
}

.icon-mdi-r-library_add:before {
  content: "￈";
}

.icon-mdi-r-library_add_check:before {
  content: "￉";
}

.icon-mdi-r-library_books:before {
  content: "ￊ";
}

.icon-mdi-r-library_music:before {
  content: "ￋ";
}

.icon-mdi-r-line_style:before {
  content: "ￌ";
}

.icon-mdi-r-line_weight:before {
  content: "ￍ";
}

.icon-mdi-r-linear_scale:before {
  content: "ￎ";
}

.icon-mdi-r-link:before {
  content: "ￏ";
}

.icon-mdi-r-link_off:before {
  content: "￐";
}

.icon-mdi-r-linked_camera:before {
  content: "￑";
}

.icon-mdi-r-list:before {
  content: "ￒ";
}

.icon-mdi-r-list_alt:before {
  content: "ￓ";
}

.icon-mdi-r-live_help:before {
  content: "ￔ";
}

.icon-mdi-r-live_tv:before {
  content: "ￕ";
}

.icon-mdi-r-local_activity:before {
  content: "ￖ";
}

.icon-mdi-r-local_airport:before {
  content: "ￗ";
}

.icon-mdi-r-local_atm:before {
  content: "￘";
}

.icon-mdi-r-local_bar:before {
  content: "￙";
}

.icon-mdi-r-local_cafe:before {
  content: "ￚ";
}

.icon-mdi-r-local_car_wash:before {
  content: "ￛ";
}

.icon-mdi-r-local_convenience_store:before {
  content: "ￜ";
}

.icon-mdi-r-local_dining:before {
  content: "￝";
}

.icon-mdi-r-local_drink:before {
  content: "￞";
}

.icon-mdi-r-local_florist:before {
  content: "￟";
}

.icon-mdi-r-local_gas_station:before {
  content: "￠";
}

.icon-mdi-r-local_grocery_store:before {
  content: "￡";
}

.icon-mdi-r-local_hospital:before {
  content: "￢";
}

.icon-mdi-r-local_hotel:before {
  content: "￣";
}

.icon-mdi-r-local_laundry_service:before {
  content: "￤";
}

.icon-mdi-r-local_library:before {
  content: "￥";
}

.icon-mdi-r-local_mall:before {
  content: "￦";
}

.icon-mdi-r-local_movies:before {
  content: "￧";
}

.icon-mdi-r-local_offer:before {
  content: "￨";
}

.icon-mdi-r-local_parking:before {
  content: "￩";
}

.icon-mdi-r-local_pharmacy:before {
  content: "￪";
}

.icon-mdi-r-local_phone:before {
  content: "￫";
}

.icon-mdi-r-local_pizza:before {
  content: "￬";
}

.icon-mdi-r-local_play:before {
  content: "￭";
}

.icon-mdi-r-local_post_office:before {
  content: "￮";
}

.icon-mdi-r-local_printshop:before {
  content: "￯";
}

.icon-mdi-r-local_see:before {
  content: "￰";
}

.icon-mdi-r-local_shipping:before {
  content: "￱";
}

.icon-mdi-r-local_taxi:before {
  content: "￲";
}

.icon-mdi-r-location_city:before {
  content: "￳";
}

.icon-mdi-r-location_disabled:before {
  content: "￴";
}

.icon-mdi-r-location_off:before {
  content: "￵";
}

.icon-mdi-r-location_on:before {
  content: "￶";
}

.icon-mdi-r-location_searching:before {
  content: "￷";
}

.icon-mdi-r-lock:before {
  content: "￸";
}

.icon-mdi-r-lock_open:before {
  content: "￹";
}

.icon-mdi-r-login:before {
  content: "￺";
}

.icon-mdi-r-looks:before {
  content: "￻";
}

.icon-mdi-r-looks_3:before {
  content: "￼";
}

.icon-mdi-r-looks_4:before {
  content: "�";
}

.icon-mdi-r-looks_5:before {
  content: "￾";
}

.icon-mdi-r-looks_6:before {
  content: "ɚ";
}

.icon-mdi-r-looks_one:before {
  content: "ə";
}

.icon-mdi-r-looks_two:before {
  content: "ɘ";
}

.icon-mdi-r-loop:before {
  content: "ɗ";
}

.icon-mdi-r-loupe:before {
  content: "ɖ";
}

.icon-mdi-r-low_priority:before {
  content: "ɕ";
}

.icon-mdi-r-loyalty:before {
  content: "ɔ";
}

.icon-mdi-r-mail:before {
  content: "ɒ";
}

.icon-mdi-r-mail_outline:before {
  content: "ɓ";
}

.icon-mdi-r-map:before {
  content: "ɑ";
}

.icon-mdi-r-maps_ugc:before {
  content: "ɐ";
}

.icon-mdi-r-mark_chat_read:before {
  content: "ɏ";
}

.icon-mdi-r-mark_chat_unread:before {
  content: "Ɏ";
}

.icon-mdi-r-mark_email_read:before {
  content: "ɍ";
}

.icon-mdi-r-mark_email_unread:before {
  content: "Ɍ";
}

.icon-mdi-r-markunread:before {
  content: "Ɋ";
}

.icon-mdi-r-markunread_mailbox:before {
  content: "ɋ";
}

.icon-mdi-r-maximize:before {
  content: "ɉ";
}

.icon-mdi-r-mediation:before {
  content: "Ɉ";
}

.icon-mdi-r-medical_services:before {
  content: "ɇ";
}

.icon-mdi-r-meeting_room:before {
  content: "Ɇ";
}

.icon-mdi-r-menu:before {
  content: "Ƀ";
}

.icon-mdi-r-menu_book:before {
  content: "Ʌ";
}

.icon-mdi-r-menu_open:before {
  content: "Ʉ";
}

.icon-mdi-r-merge_type:before {
  content: "ɂ";
}

.icon-mdi-r-message:before {
  content: "Ɂ";
}

.icon-mdi-r-mic:before {
  content: "Ⱦ";
}

.icon-mdi-r-mic_none:before {
  content: "ɀ";
}

.icon-mdi-r-mic_off:before {
  content: "ȿ";
}

.icon-mdi-r-microwave:before {
  content: "Ƚ";
}

.icon-mdi-r-military_tech:before {
  content: "ȼ";
}

.icon-mdi-r-minimize:before {
  content: "Ȼ";
}

.icon-mdi-r-miscellaneous_services:before {
  content: "Ⱥ";
}

.icon-mdi-r-missed_video_call:before {
  content: "ȹ";
}

.icon-mdi-r-mms:before {
  content: "ȸ";
}

.icon-mdi-r-mobile_friendly:before {
  content: "ȷ";
}

.icon-mdi-r-mobile_off:before {
  content: "ȶ";
}

.icon-mdi-r-mobile_screen_share:before {
  content: "ȵ";
}

.icon-mdi-r-mode_comment:before {
  content: "ȴ";
}

.icon-mdi-r-model_training:before {
  content: "ȳ";
}

.icon-mdi-r-monetization_on:before {
  content: "Ȳ";
}

.icon-mdi-r-money:before {
  content: "Ȱ";
}

.icon-mdi-r-money_off:before {
  content: "ȱ";
}

.icon-mdi-r-monochrome_photos:before {
  content: "ȯ";
}

.icon-mdi-r-mood:before {
  content: "ȭ";
}

.icon-mdi-r-mood_bad:before {
  content: "Ȯ";
}

.icon-mdi-r-moped:before {
  content: "Ȭ";
}

.icon-mdi-r-more:before {
  content: "Ȩ";
}

.icon-mdi-r-more_horiz:before {
  content: "ȫ";
}

.icon-mdi-r-more_time:before {
  content: "Ȫ";
}

.icon-mdi-r-more_vert:before {
  content: "ȩ";
}

.icon-mdi-r-mouse:before {
  content: "ȧ";
}

.icon-mdi-r-move_to_inbox:before {
  content: "Ȧ";
}

.icon-mdi-r-movie:before {
  content: "Ȥ";
}

.icon-mdi-r-movie_filter:before {
  content: "ȥ";
}

.icon-mdi-r-multiline_chart:before {
  content: "ȣ";
}

.icon-mdi-r-multiple_stop:before {
  content: "Ȣ";
}

.icon-mdi-r-museum:before {
  content: "ȡ";
}

.icon-mdi-r-music_note:before {
  content: "Ƞ";
}

.icon-mdi-r-music_off:before {
  content: "ȟ";
}

.icon-mdi-r-music_video:before {
  content: "Ȟ";
}

.icon-mdi-r-my_location:before {
  content: "ȝ";
}

.icon-mdi-r-nat:before {
  content: "Ȝ";
}

.icon-mdi-r-nature:before {
  content: "Ț";
}

.icon-mdi-r-nature_people:before {
  content: "ț";
}

.icon-mdi-r-navigate_before:before {
  content: "ș";
}

.icon-mdi-r-navigate_next:before {
  content: "Ș";
}

.icon-mdi-r-navigation:before {
  content: "ȗ";
}

.icon-mdi-r-near_me:before {
  content: "ȕ";
}

.icon-mdi-r-near_me_disabled:before {
  content: "Ȗ";
}

.icon-mdi-r-network_check:before {
  content: "Ȕ";
}

.icon-mdi-r-network_locked:before {
  content: "ȓ";
}

.icon-mdi-r-new_releases:before {
  content: "Ȓ";
}

.icon-mdi-r-next_plan:before {
  content: "ȑ";
}

.icon-mdi-r-next_week:before {
  content: "Ȑ";
}

.icon-mdi-r-nfc:before {
  content: "ȏ";
}

.icon-mdi-r-night_shelter:before {
  content: "Ȏ";
}

.icon-mdi-r-nights_stay:before {
  content: "ȍ";
}

.icon-mdi-r-no_cell:before {
  content: "Ȍ";
}

.icon-mdi-r-no_drinks:before {
  content: "ȋ";
}

.icon-mdi-r-no_encryption:before {
  content: "Ȋ";
}

.icon-mdi-r-no_flash:before {
  content: "ȉ";
}

.icon-mdi-r-no_food:before {
  content: "Ȉ";
}

.icon-mdi-r-no_meals:before {
  content: "ȇ";
}

.icon-mdi-r-no_meeting_room:before {
  content: "Ȇ";
}

.icon-mdi-r-no_photography:before {
  content: "ȅ";
}

.icon-mdi-r-no_sim:before {
  content: "Ȅ";
}

.icon-mdi-r-no_stroller:before {
  content: "ȃ";
}

.icon-mdi-r-no_transfer:before {
  content: "Ȃ";
}

.icon-mdi-r-north:before {
  content: "ǿ";
}

.icon-mdi-r-north_east:before {
  content: "ȁ";
}

.icon-mdi-r-north_west:before {
  content: "Ȁ";
}

.icon-mdi-r-not_accessible:before {
  content: "Ǿ";
}

.icon-mdi-r-not_interested:before {
  content: "ǽ";
}

.icon-mdi-r-not_listed_location:before {
  content: "Ǽ";
}

.icon-mdi-r-not_started:before {
  content: "ǻ";
}

.icon-mdi-r-note:before {
  content: "ǹ";
}

.icon-mdi-r-note_add:before {
  content: "Ǻ";
}

.icon-mdi-r-notes:before {
  content: "Ǹ";
}

.icon-mdi-r-notification_important:before {
  content: "Ƿ";
}

.icon-mdi-r-notifications:before {
  content: "ǲ";
}

.icon-mdi-r-notifications_active:before {
  content: "Ƕ";
}

.icon-mdi-r-notifications_none:before {
  content: "ǵ";
}

.icon-mdi-r-notifications_off:before {
  content: "Ǵ";
}

.icon-mdi-r-notifications_paused:before {
  content: "ǳ";
}

.icon-mdi-r-offline_bolt:before {
  content: "Ǳ";
}

.icon-mdi-r-offline_pin:before {
  content: "ǰ";
}

.icon-mdi-r-ondemand_video:before {
  content: "ǯ";
}

.icon-mdi-r-online_prediction:before {
  content: "Ǯ";
}

.icon-mdi-r-opacity:before {
  content: "ǭ";
}

.icon-mdi-r-open_in_browser:before {
  content: "Ǭ";
}

.icon-mdi-r-open_in_full:before {
  content: "ǫ";
}

.icon-mdi-r-open_in_new:before {
  content: "Ǫ";
}

.icon-mdi-r-open_with:before {
  content: "ǩ";
}

.icon-mdi-r-outdoor_grill:before {
  content: "Ǩ";
}

.icon-mdi-r-outlet:before {
  content: "ǧ";
}

.icon-mdi-r-outlined_flag:before {
  content: "Ǧ";
}

.icon-mdi-r-pages:before {
  content: "ǥ";
}

.icon-mdi-r-pageview:before {
  content: "Ǥ";
}

.icon-mdi-r-palette:before {
  content: "ǣ";
}

.icon-mdi-r-pan_tool:before {
  content: "Ǣ";
}

.icon-mdi-r-panorama:before {
  content: "ǝ";
}

.icon-mdi-r-panorama_fish_eye:before {
  content: "ǡ";
}

.icon-mdi-r-panorama_horizontal:before {
  content: "Ǡ";
}

.icon-mdi-r-panorama_vertical:before {
  content: "ǟ";
}

.icon-mdi-r-panorama_wide_angle:before {
  content: "Ǟ";
}

.icon-mdi-r-party_mode:before {
  content: "ǜ";
}

.icon-mdi-r-pause:before {
  content: "ǘ";
}

.icon-mdi-r-pause_circle_filled:before {
  content: "Ǜ";
}

.icon-mdi-r-pause_circle_outline:before {
  content: "ǚ";
}

.icon-mdi-r-pause_presentation:before {
  content: "Ǚ";
}

.icon-mdi-r-payment:before {
  content: "Ǘ";
}

.icon-mdi-r-payments:before {
  content: "ǖ";
}

.icon-mdi-r-pedal_bike:before {
  content: "Ǖ";
}

.icon-mdi-r-pending:before {
  content: "Ǔ";
}

.icon-mdi-r-pending_actions:before {
  content: "ǔ";
}

.icon-mdi-r-people:before {
  content: "ǐ";
}

.icon-mdi-r-people_alt:before {
  content: "ǒ";
}

.icon-mdi-r-people_outline:before {
  content: "Ǒ";
}

.icon-mdi-r-perm_camera_mic:before {
  content: "Ǐ";
}

.icon-mdi-r-perm_contact_calendar:before {
  content: "ǎ";
}

.icon-mdi-r-perm_data_setting:before {
  content: "Ǎ";
}

.icon-mdi-r-perm_device_information:before {
  content: "ǌ";
}

.icon-mdi-r-perm_identity:before {
  content: "ǋ";
}

.icon-mdi-r-perm_media:before {
  content: "Ǌ";
}

.icon-mdi-r-perm_phone_msg:before {
  content: "ǉ";
}

.icon-mdi-r-perm_scan_wifi:before {
  content: "ǈ";
}

.icon-mdi-r-person:before {
  content: "ƿ";
}

.icon-mdi-r-person_add:before {
  content: "ǅ";
}

.icon-mdi-r-person_add_alt_1:before {
  content: "Ǉ";
}

.icon-mdi-r-person_add_disabled:before {
  content: "ǆ";
}

.icon-mdi-r-person_outline:before {
  content: "Ǆ";
}

.icon-mdi-r-person_pin:before {
  content: "ǂ";
}

.icon-mdi-r-person_pin_circle:before {
  content: "ǃ";
}

.icon-mdi-r-person_remove:before {
  content: "ǁ";
}

.icon-mdi-r-person_search:before {
  content: "ǀ";
}

.icon-mdi-r-personal_video:before {
  content: "ƾ";
}

.icon-mdi-r-pest_control:before {
  content: "Ƽ";
}

.icon-mdi-r-pest_control_rodent:before {
  content: "ƽ";
}

.icon-mdi-r-pets:before {
  content: "ƻ";
}

.icon-mdi-r-phone:before {
  content: "Ư";
}

.icon-mdi-r-phone_android:before {
  content: "ƺ";
}

.icon-mdi-r-phone_bluetooth_speaker:before {
  content: "ƹ";
}

.icon-mdi-r-phone_callback:before {
  content: "Ƹ";
}

.icon-mdi-r-phone_disabled:before {
  content: "Ʒ";
}

.icon-mdi-r-phone_enabled:before {
  content: "ƶ";
}

.icon-mdi-r-phone_forwarded:before {
  content: "Ƶ";
}

.icon-mdi-r-phone_in_talk:before {
  content: "ƴ";
}

.icon-mdi-r-phone_iphone:before {
  content: "Ƴ";
}

.icon-mdi-r-phone_locked:before {
  content: "Ʋ";
}

.icon-mdi-r-phone_missed:before {
  content: "Ʊ";
}

.icon-mdi-r-phone_paused:before {
  content: "ư";
}

.icon-mdi-r-phonelink:before {
  content: "Ʃ";
}

.icon-mdi-r-phonelink_erase:before {
  content: "Ʈ";
}

.icon-mdi-r-phonelink_lock:before {
  content: "ƭ";
}

.icon-mdi-r-phonelink_off:before {
  content: "Ƭ";
}

.icon-mdi-r-phonelink_ring:before {
  content: "ƫ";
}

.icon-mdi-r-phonelink_setup:before {
  content: "ƪ";
}

.icon-mdi-r-photo:before {
  content: "ơ";
}

.icon-mdi-r-photo_album:before {
  content: "ƨ";
}

.icon-mdi-r-photo_camera:before {
  content: "Ƨ";
}

.icon-mdi-r-photo_filter:before {
  content: "Ʀ";
}

.icon-mdi-r-photo_library:before {
  content: "ƥ";
}

.icon-mdi-r-photo_size_select_actual:before {
  content: "Ƥ";
}

.icon-mdi-r-photo_size_select_large:before {
  content: "ƣ";
}

.icon-mdi-r-photo_size_select_small:before {
  content: "Ƣ";
}

.icon-mdi-r-picture_as_pdf:before {
  content: "Ơ";
}

.icon-mdi-r-picture_in_picture:before {
  content: "ƞ";
}

.icon-mdi-r-picture_in_picture_alt:before {
  content: "Ɵ";
}

.icon-mdi-r-pie_chart:before {
  content: "Ɲ";
}

.icon-mdi-r-pin_drop:before {
  content: "Ɯ";
}

.icon-mdi-r-place:before {
  content: "ƛ";
}

.icon-mdi-r-plagiarism:before {
  content: "ƚ";
}

.icon-mdi-r-play_arrow:before {
  content: "ƙ";
}

.icon-mdi-r-play_circle_filled:before {
  content: "Ƙ";
}

.icon-mdi-r-play_circle_outline:before {
  content: "Ɨ";
}

.icon-mdi-r-play_for_work:before {
  content: "Ɩ";
}

.icon-mdi-r-playlist_add:before {
  content: "Ɣ";
}

.icon-mdi-r-playlist_add_check:before {
  content: "ƕ";
}

.icon-mdi-r-playlist_play:before {
  content: "Ɠ";
}

.icon-mdi-r-plumbing:before {
  content: "ƒ";
}

.icon-mdi-r-plus_one:before {
  content: "Ƒ";
}

.icon-mdi-r-point_of_sale:before {
  content: "Ɛ";
}

.icon-mdi-r-policy:before {
  content: "Ə";
}

.icon-mdi-r-poll:before {
  content: "Ǝ";
}

.icon-mdi-r-polymer:before {
  content: "ƍ";
}

.icon-mdi-r-pool:before {
  content: "ƌ";
}

.icon-mdi-r-portable_wifi_off:before {
  content: "Ƌ";
}

.icon-mdi-r-portrait:before {
  content: "Ɗ";
}

.icon-mdi-r-post_add:before {
  content: "Ɖ";
}

.icon-mdi-r-power:before {
  content: "ƅ";
}

.icon-mdi-r-power_input:before {
  content: "ƈ";
}

.icon-mdi-r-power_off:before {
  content: "Ƈ";
}

.icon-mdi-r-power_settings_new:before {
  content: "Ɔ";
}

.icon-mdi-r-pregnant_woman:before {
  content: "Ƅ";
}

.icon-mdi-r-present_to_all:before {
  content: "ƃ";
}

.icon-mdi-r-preview:before {
  content: "Ƃ";
}

.icon-mdi-r-print:before {
  content: "ƀ";
}

.icon-mdi-r-print_disabled:before {
  content: "Ɓ";
}

.icon-mdi-r-priority_high:before {
  content: "ſ";
}

.icon-mdi-r-privacy_tip:before {
  content: "ž";
}

.icon-mdi-r-psychology:before {
  content: "Ž";
}

.icon-mdi-r-public:before {
  content: "Ż";
}

.icon-mdi-r-public_off:before {
  content: "ż";
}

.icon-mdi-r-publish:before {
  content: "ź";
}

.icon-mdi-r-push_pin:before {
  content: "Ź";
}

.icon-mdi-r-qr_code:before {
  content: "ŷ";
}

.icon-mdi-r-qr_code_scanner:before {
  content: "Ÿ";
}

.icon-mdi-r-query_builder:before {
  content: "Ŷ";
}

.icon-mdi-r-question_answer:before {
  content: "ŵ";
}

.icon-mdi-r-queue:before {
  content: "Ų";
}

.icon-mdi-r-queue_music:before {
  content: "Ŵ";
}

.icon-mdi-r-queue_play_next:before {
  content: "ų";
}

.icon-mdi-r-quickreply:before {
  content: "ű";
}

.icon-mdi-r-radio:before {
  content: "Ů";
}

.icon-mdi-r-radio_button_checked:before {
  content: "Ű";
}

.icon-mdi-r-radio_button_unchecked:before {
  content: "ů";
}

.icon-mdi-r-rate_review:before {
  content: "ŭ";
}

.icon-mdi-r-read_more:before {
  content: "Ŭ";
}

.icon-mdi-r-receipt:before {
  content: "Ū";
}

.icon-mdi-r-receipt_long:before {
  content: "ū";
}

.icon-mdi-r-recent_actors:before {
  content: "ũ";
}

.icon-mdi-r-record_voice_over:before {
  content: "Ũ";
}

.icon-mdi-r-redeem:before {
  content: "ŧ";
}

.icon-mdi-r-redo:before {
  content: "Ŧ";
}

.icon-mdi-r-refresh:before {
  content: "ť";
}

.icon-mdi-r-remove:before {
  content: "ş";
}

.icon-mdi-r-remove_circle:before {
  content: "ţ";
}

.icon-mdi-r-remove_circle_outline:before {
  content: "Ť";
}

.icon-mdi-r-remove_from_queue:before {
  content: "Ţ";
}

.icon-mdi-r-remove_red_eye:before {
  content: "š";
}

.icon-mdi-r-remove_shopping_cart:before {
  content: "Š";
}

.icon-mdi-r-reorder:before {
  content: "Ş";
}

.icon-mdi-r-repeat:before {
  content: "Ŝ";
}

.icon-mdi-r-repeat_one:before {
  content: "ŝ";
}

.icon-mdi-r-replay:before {
  content: "Ř";
}

.icon-mdi-r-replay_10:before {
  content: "Ś";
}

.icon-mdi-r-replay_30:before {
  content: "ř";
}

.icon-mdi-r-replay_5:before {
  content: "ś";
}

.icon-mdi-r-reply:before {
  content: "Ŗ";
}

.icon-mdi-r-reply_all:before {
  content: "ŗ";
}

.icon-mdi-r-report:before {
  content: "œ";
}

.icon-mdi-r-report_off:before {
  content: "ŕ";
}

.icon-mdi-r-report_problem:before {
  content: "Ŕ";
}

.icon-mdi-r-request_quote:before {
  content: "Œ";
}

.icon-mdi-r-restaurant:before {
  content: "Ő";
}

.icon-mdi-r-restaurant_menu:before {
  content: "ő";
}

.icon-mdi-r-restore:before {
  content: "ō";
}

.icon-mdi-r-restore_from_trash:before {
  content: "ŏ";
}

.icon-mdi-r-restore_page:before {
  content: "Ŏ";
}

.icon-mdi-r-rice_bowl:before {
  content: "Ō";
}

.icon-mdi-r-ring_volume:before {
  content: "ŋ";
}

.icon-mdi-r-roofing:before {
  content: "Ŋ";
}

.icon-mdi-r-room:before {
  content: "Ň";
}

.icon-mdi-r-room_preferences:before {
  content: "ŉ";
}

.icon-mdi-r-room_service:before {
  content: "ň";
}

.icon-mdi-r-rotate_90_degrees_ccw:before {
  content: "ņ";
}

.icon-mdi-r-rotate_left:before {
  content: "Ņ";
}

.icon-mdi-r-rotate_right:before {
  content: "ń";
}

.icon-mdi-r-rounded_corner:before {
  content: "Ń";
}

.icon-mdi-r-router:before {
  content: "ł";
}

.icon-mdi-r-rowing:before {
  content: "Ł";
}

.icon-mdi-r-rss_feed:before {
  content: "ŀ";
}

.icon-mdi-r-rule:before {
  content: "ľ";
}

.icon-mdi-r-rule_folder:before {
  content: "Ŀ";
}

.icon-mdi-r-run_circle:before {
  content: "Ľ";
}

.icon-mdi-r-rv_hookup:before {
  content: "ļ";
}

.icon-mdi-r-satellite:before {
  content: "Ļ";
}

.icon-mdi-r-save:before {
  content: "Ĺ";
}

.icon-mdi-r-save_alt:before {
  content: "ĺ";
}

.icon-mdi-r-scanner:before {
  content: "ĸ";
}

.icon-mdi-r-scatter_plot:before {
  content: "ķ";
}

.icon-mdi-r-schedule:before {
  content: "Ķ";
}

.icon-mdi-r-school:before {
  content: "ĵ";
}

.icon-mdi-r-science:before {
  content: "Ĵ";
}

.icon-mdi-r-score:before {
  content: "ĳ";
}

.icon-mdi-r-screen_lock_landscape:before {
  content: "Ĳ";
}

.icon-mdi-r-screen_lock_portrait:before {
  content: "ı";
}

.icon-mdi-r-screen_lock_rotation:before {
  content: "İ";
}

.icon-mdi-r-screen_rotation:before {
  content: "į";
}

.icon-mdi-r-screen_share:before {
  content: "Į";
}

.icon-mdi-r-sd_card:before {
  content: "ĭ";
}

.icon-mdi-r-search:before {
  content: "ī";
}

.icon-mdi-r-search_off:before {
  content: "Ĭ";
}

.icon-mdi-r-security:before {
  content: "Ī";
}

.icon-mdi-r-select_all:before {
  content: "ĩ";
}

.icon-mdi-r-self_improvement:before {
  content: "Ĩ";
}

.icon-mdi-r-send:before {
  content: "ħ";
}

.icon-mdi-r-sensor_door:before {
  content: "Ħ";
}

.icon-mdi-r-sensor_window:before {
  content: "ĥ";
}

.icon-mdi-r-sentiment_dissatisfied:before {
  content: "Ĥ";
}

.icon-mdi-r-sentiment_satisfied:before {
  content: "Ģ";
}

.icon-mdi-r-sentiment_satisfied_alt:before {
  content: "ģ";
}

.icon-mdi-r-sentiment_very_dissatisfied:before {
  content: "ġ";
}

.icon-mdi-r-sentiment_very_satisfied:before {
  content: "Ġ";
}

.icon-mdi-r-set_meal:before {
  content: "ğ";
}

.icon-mdi-r-settings:before {
  content: "Ď";
}

.icon-mdi-r-settings_applications:before {
  content: "Ğ";
}

.icon-mdi-r-settings_backup_restore:before {
  content: "ĝ";
}

.icon-mdi-r-settings_bluetooth:before {
  content: "Ĝ";
}

.icon-mdi-r-settings_brightness:before {
  content: "ě";
}

.icon-mdi-r-settings_cell:before {
  content: "Ě";
}

.icon-mdi-r-settings_ethernet:before {
  content: "ę";
}

.icon-mdi-r-settings_input_antenna:before {
  content: "Ę";
}

.icon-mdi-r-settings_input_component:before {
  content: "ė";
}

.icon-mdi-r-settings_input_hdmi:before {
  content: "Ė";
}

.icon-mdi-r-settings_input_svideo:before {
  content: "ĕ";
}

.icon-mdi-r-settings_overscan:before {
  content: "Ĕ";
}

.icon-mdi-r-settings_phone:before {
  content: "ē";
}

.icon-mdi-r-settings_power:before {
  content: "Ē";
}

.icon-mdi-r-settings_remote:before {
  content: "đ";
}

.icon-mdi-r-settings_system_daydream:before {
  content: "Đ";
}

.icon-mdi-r-settings_voice:before {
  content: "ď";
}

.icon-mdi-r-share:before {
  content: "č";
}

.icon-mdi-r-shop:before {
  content: "ċ";
}

.icon-mdi-r-shop_two:before {
  content: "Č";
}

.icon-mdi-r-shopping_bag:before {
  content: "Ċ";
}

.icon-mdi-r-shopping_basket:before {
  content: "ĉ";
}

.icon-mdi-r-shopping_cart:before {
  content: "Ĉ";
}

.icon-mdi-r-short_text:before {
  content: "ć";
}

.icon-mdi-r-show_chart:before {
  content: "Ć";
}

.icon-mdi-r-shuffle:before {
  content: "ą";
}

.icon-mdi-r-shutter_speed:before {
  content: "Ą";
}

.icon-mdi-r-signal_cellular_4_bar:before {
  content: "ă";
}

.icon-mdi-r-signal_cellular_alt:before {
  content: "Ă";
}

.icon-mdi-r-signal_cellular_connected_no_internet_4_bar:before {
  content: "ā";
}

.icon-mdi-r-signal_cellular_no_sim:before {
  content: "Ā";
}

.icon-mdi-r-signal_cellular_null:before {
  content: "ÿ";
}

.icon-mdi-r-signal_cellular_off:before {
  content: "þ";
}

.icon-mdi-r-signal_wifi_4_bar:before {
  content: "ü";
}

.icon-mdi-r-signal_wifi_4_bar_lock:before {
  content: "ý";
}

.icon-mdi-r-signal_wifi_off:before {
  content: "û";
}

.icon-mdi-r-sim_card:before {
  content: "ú";
}

.icon-mdi-r-single_bed:before {
  content: "ù";
}

.icon-mdi-r-skip_next:before {
  content: "ø";
}

.icon-mdi-r-skip_previous:before {
  content: "÷";
}

.icon-mdi-r-slideshow:before {
  content: "ö";
}

.icon-mdi-r-slow_motion_video:before {
  content: "õ";
}

.icon-mdi-r-smart_button:before {
  content: "ô";
}

.icon-mdi-r-smartphone:before {
  content: "ó";
}

.icon-mdi-r-smoke_free:before {
  content: "ò";
}

.icon-mdi-r-smoking_rooms:before {
  content: "ñ";
}

.icon-mdi-r-sms:before {
  content: "ï";
}

.icon-mdi-r-sms_failed:before {
  content: "ð";
}

.icon-mdi-r-snippet_folder:before {
  content: "î";
}

.icon-mdi-r-snooze:before {
  content: "í";
}

.icon-mdi-r-soap:before {
  content: "ì";
}

.icon-mdi-r-sort:before {
  content: "ê";
}

.icon-mdi-r-sort_by_alpha:before {
  content: "ë";
}

.icon-mdi-r-source:before {
  content: "é";
}

.icon-mdi-r-south:before {
  content: "æ";
}

.icon-mdi-r-south_east:before {
  content: "è";
}

.icon-mdi-r-south_west:before {
  content: "ç";
}

.icon-mdi-r-spa:before {
  content: "å";
}

.icon-mdi-r-space_bar:before {
  content: "ä";
}

.icon-mdi-r-speaker:before {
  content: "ß";
}

.icon-mdi-r-speaker_group:before {
  content: "ã";
}

.icon-mdi-r-speaker_notes:before {
  content: "á";
}

.icon-mdi-r-speaker_notes_off:before {
  content: "â";
}

.icon-mdi-r-speaker_phone:before {
  content: "à";
}

.icon-mdi-r-speed:before {
  content: "Þ";
}

.icon-mdi-r-spellcheck:before {
  content: "Ý";
}

.icon-mdi-r-sports:before {
  content: "Ì";
}

.icon-mdi-r-sports_bar:before {
  content: "Ü";
}

.icon-mdi-r-sports_baseball:before {
  content: "Û";
}

.icon-mdi-r-sports_basketball:before {
  content: "Ú";
}

.icon-mdi-r-sports_cricket:before {
  content: "Ù";
}

.icon-mdi-r-sports_esports:before {
  content: "Ø";
}

.icon-mdi-r-sports_football:before {
  content: "×";
}

.icon-mdi-r-sports_golf:before {
  content: "Ö";
}

.icon-mdi-r-sports_handball:before {
  content: "Õ";
}

.icon-mdi-r-sports_hockey:before {
  content: "Ô";
}

.icon-mdi-r-sports_kabaddi:before {
  content: "Ó";
}

.icon-mdi-r-sports_mma:before {
  content: "Ò";
}

.icon-mdi-r-sports_motorsports:before {
  content: "Ñ";
}

.icon-mdi-r-sports_rugby:before {
  content: "Ð";
}

.icon-mdi-r-sports_soccer:before {
  content: "Ï";
}

.icon-mdi-r-sports_tennis:before {
  content: "Î";
}

.icon-mdi-r-sports_volleyball:before {
  content: "Í";
}

.icon-mdi-r-square_foot:before {
  content: "Ë";
}

.icon-mdi-r-stairs:before {
  content: "Ê";
}

.icon-mdi-r-star:before {
  content: "Å";
}

.icon-mdi-r-star_border:before {
  content: "É";
}

.icon-mdi-r-star_half:before {
  content: "È";
}

.icon-mdi-r-star_outline:before {
  content: "Ç";
}

.icon-mdi-r-star_rate:before {
  content: "Æ";
}

.icon-mdi-r-stars:before {
  content: "Ä";
}

.icon-mdi-r-stay_current_landscape:before {
  content: "Ã";
}

.icon-mdi-r-stay_current_portrait:before {
  content: "Â";
}

.icon-mdi-r-stay_primary_landscape:before {
  content: "Á";
}

.icon-mdi-r-stay_primary_portrait:before {
  content: "À";
}

.icon-mdi-r-sticky_note_2:before {
  content: "¿";
}

.icon-mdi-r-stop:before {
  content: "¼";
}

.icon-mdi-r-stop_circle:before {
  content: "¾";
}

.icon-mdi-r-stop_screen_share:before {
  content: "½";
}

.icon-mdi-r-storage:before {
  content: "»";
}

.icon-mdi-r-store:before {
  content: "¹";
}

.icon-mdi-r-store_mall_directory:before {
  content: "º";
}

.icon-mdi-r-storefront:before {
  content: "¸";
}

.icon-mdi-r-straighten:before {
  content: "·";
}

.icon-mdi-r-streetview:before {
  content: "¶";
}

.icon-mdi-r-strikethrough_s:before {
  content: "µ";
}

.icon-mdi-r-stroller:before {
  content: "´";
}

.icon-mdi-r-style:before {
  content: "³";
}

.icon-mdi-r-subdirectory_arrow_left:before {
  content: "²";
}

.icon-mdi-r-subdirectory_arrow_right:before {
  content: "±";
}

.icon-mdi-r-subject:before {
  content: "°";
}

.icon-mdi-r-subscript:before {
  content: "¯";
}

.icon-mdi-r-subscriptions:before {
  content: "®";
}

.icon-mdi-r-subtitles:before {
  content: "¬";
}

.icon-mdi-r-subtitles_off:before {
  content: "­";
}

.icon-mdi-r-subway:before {
  content: "«";
}

.icon-mdi-r-superscript:before {
  content: "ª";
}

.icon-mdi-r-supervised_user_circle:before {
  content: "©";
}

.icon-mdi-r-supervisor_account:before {
  content: "¨";
}

.icon-mdi-r-support:before {
  content: "¦";
}

.icon-mdi-r-support_agent:before {
  content: "§";
}

.icon-mdi-r-surround_sound:before {
  content: "¥";
}

.icon-mdi-r-swap_calls:before {
  content: "¤";
}

.icon-mdi-r-swap_horiz:before {
  content: "£";
}

.icon-mdi-r-swap_horizontal_circle:before {
  content: "¢";
}

.icon-mdi-r-swap_vert:before {
  content: "¡";
}

.icon-mdi-r-swap_vertical_circle:before {
  content: " ";
}

.icon-mdi-r-switch_camera:before {
  content: "";
}

.icon-mdi-r-switch_left:before {
  content: "";
}

.icon-mdi-r-switch_right:before {
  content: "";
}

.icon-mdi-r-switch_video:before {
  content: "";
}

.icon-mdi-r-sync:before {
  content: "";
}

.icon-mdi-r-sync_alt:before {
  content: "";
}

.icon-mdi-r-sync_disabled:before {
  content: "";
}

.icon-mdi-r-sync_problem:before {
  content: "";
}

.icon-mdi-r-system_update:before {
  content: "";
}

.icon-mdi-r-system_update_alt:before {
  content: "";
}

.icon-mdi-r-tab:before {
  content: "";
}

.icon-mdi-r-tab_unselected:before {
  content: "";
}

.icon-mdi-r-table_chart:before {
  content: "";
}

.icon-mdi-r-table_rows:before {
  content: "";
}

.icon-mdi-r-table_view:before {
  content: "";
}

.icon-mdi-r-tablet:before {
  content: "";
}

.icon-mdi-r-tablet_android:before {
  content: "";
}

.icon-mdi-r-tablet_mac:before {
  content: "";
}

.icon-mdi-r-tap_and_play:before {
  content: "";
}

.icon-mdi-r-tapas:before {
  content: "";
}

.icon-mdi-r-terrain:before {
  content: "";
}

.icon-mdi-r-text_fields:before {
  content: "";
}

.icon-mdi-r-text_format:before {
  content: "";
}

.icon-mdi-r-text_rotate_up:before {
  content: "";
}

.icon-mdi-r-text_rotate_vertical:before {
  content: "";
}

.icon-mdi-r-text_rotation_angledown:before {
  content: "";
}

.icon-mdi-r-text_rotation_angleup:before {
  content: "";
}

.icon-mdi-r-text_rotation_down:before {
  content: "";
}

.icon-mdi-r-text_rotation_none:before {
  content: "";
}

.icon-mdi-r-text_snippet:before {
  content: "";
}

.icon-mdi-r-textsms:before {
  content: "";
}

.icon-mdi-r-texture:before {
  content: "";
}

.icon-mdi-r-theaters:before {
  content: "";
}

.icon-mdi-r-thumb_down:before {
  content: "~";
}

.icon-mdi-r-thumb_up:before {
  content: "}";
}

.icon-mdi-r-thumbs_up_down:before {
  content: "|";
}

.icon-mdi-r-time_to_leave:before {
  content: "{";
}

.icon-mdi-r-timelapse:before {
  content: "z";
}

.icon-mdi-r-timeline:before {
  content: "y";
}

.icon-mdi-r-timer:before {
  content: "u";
}

.icon-mdi-r-timer_10:before {
  content: "w";
}

.icon-mdi-r-timer_3:before {
  content: "x";
}

.icon-mdi-r-timer_off:before {
  content: "v";
}

.icon-mdi-r-title:before {
  content: "t";
}

.icon-mdi-r-toc:before {
  content: "s";
}

.icon-mdi-r-today:before {
  content: "r";
}

.icon-mdi-r-toggle_off:before {
  content: "q";
}

.icon-mdi-r-toggle_on:before {
  content: "p";
}

.icon-mdi-r-toll:before {
  content: "o";
}

.icon-mdi-r-tonality:before {
  content: "n";
}

.icon-mdi-r-topic:before {
  content: "m";
}

.icon-mdi-r-touch_app:before {
  content: "l";
}

.icon-mdi-r-tour:before {
  content: "k";
}

.icon-mdi-r-toys:before {
  content: "j";
}

.icon-mdi-r-track_changes:before {
  content: "i";
}

.icon-mdi-r-traffic:before {
  content: "h";
}

.icon-mdi-r-train:before {
  content: "g";
}

.icon-mdi-r-tram:before {
  content: "f";
}

.icon-mdi-r-transfer_within_a_station:before {
  content: "e";
}

.icon-mdi-r-transform:before {
  content: "d";
}

.icon-mdi-r-transit_enterexit:before {
  content: "c";
}

.icon-mdi-r-translate:before {
  content: "b";
}

.icon-mdi-r-trending_down:before {
  content: "a";
}

.icon-mdi-r-trending_flat:before {
  content: "`";
}

.icon-mdi-r-trending_up:before {
  content: "_";
}

.icon-mdi-r-trip_origin:before {
  content: "^";
}

.icon-mdi-r-tty:before {
  content: "]";
}

.icon-mdi-r-tune:before {
  content: "\\";
}

.icon-mdi-r-turned_in:before {
  content: "Z";
}

.icon-mdi-r-turned_in_not:before {
  content: "[";
}

.icon-mdi-r-tv:before {
  content: "X";
}

.icon-mdi-r-tv_off:before {
  content: "Y";
}

.icon-mdi-r-two_wheeler:before {
  content: "W";
}

.icon-mdi-r-umbrella:before {
  content: "V";
}

.icon-mdi-r-unarchive:before {
  content: "U";
}

.icon-mdi-r-undo:before {
  content: "T";
}

.icon-mdi-r-unfold_less:before {
  content: "S";
}

.icon-mdi-r-unfold_more:before {
  content: "R";
}

.icon-mdi-r-unsubscribe:before {
  content: "Q";
}

.icon-mdi-r-update:before {
  content: "P";
}

.icon-mdi-r-upgrade:before {
  content: "O";
}

.icon-mdi-r-usb:before {
  content: "N";
}

.icon-mdi-r-verified:before {
  content: "L";
}

.icon-mdi-r-verified_user:before {
  content: "M";
}

.icon-mdi-r-vertical_align_bottom:before {
  content: "K";
}

.icon-mdi-r-vertical_align_center:before {
  content: "J";
}

.icon-mdi-r-vertical_align_top:before {
  content: "I";
}

.icon-mdi-r-vertical_split:before {
  content: "H";
}

.icon-mdi-r-vibration:before {
  content: "G";
}

.icon-mdi-r-video_call:before {
  content: "F";
}

.icon-mdi-r-video_label:before {
  content: "E";
}

.icon-mdi-r-video_library:before {
  content: "D";
}

.icon-mdi-r-video_settings:before {
  content: "C";
}

.icon-mdi-r-videocam:before {
  content: "A";
}

.icon-mdi-r-videocam_off:before {
  content: "B";
}

.icon-mdi-r-videogame_asset:before {
  content: "@";
}

.icon-mdi-r-view_agenda:before {
  content: "?";
}

.icon-mdi-r-view_array:before {
  content: ">";
}

.icon-mdi-r-view_carousel:before {
  content: "=";
}

.icon-mdi-r-view_column:before {
  content: "<";
}

.icon-mdi-r-view_comfy:before {
  content: ";";
}

.icon-mdi-r-view_compact:before {
  content: ":";
}

.icon-mdi-r-view_day:before {
  content: "9";
}

.icon-mdi-r-view_headline:before {
  content: "8";
}

.icon-mdi-r-view_list:before {
  content: "7";
}

.icon-mdi-r-view_module:before {
  content: "6";
}

.icon-mdi-r-view_quilt:before {
  content: "5";
}

.icon-mdi-r-view_sidebar:before {
  content: "4";
}

.icon-mdi-r-view_stream:before {
  content: "3";
}

.icon-mdi-r-view_week:before {
  content: "2";
}

.icon-mdi-r-vignette:before {
  content: "1";
}

.icon-mdi-r-visibility:before {
  content: "/";
}

.icon-mdi-r-visibility_off:before {
  content: "0";
}

.icon-mdi-r-voice_chat:before {
  content: ".";
}

.icon-mdi-r-voice_over_off:before {
  content: "-";
}

.icon-mdi-r-voicemail:before {
  content: ",";
}

.icon-mdi-r-volume_down:before {
  content: "+";
}

.icon-mdi-r-volume_mute:before {
  content: "*";
}

.icon-mdi-r-volume_off:before {
  content: ")";
}

.icon-mdi-r-volume_up:before {
  content: "(";
}

.icon-mdi-r-vpn_key:before {
  content: "'";
}

.icon-mdi-r-vpn_lock:before {
  content: "&";
}

.icon-mdi-r-wallpaper:before {
  content: "%";
}

.icon-mdi-r-warning:before {
  content: "$";
}

.icon-mdi-r-wash:before {
  content: "#";
}

.icon-mdi-r-watch:before {
  content: "!";
}

.icon-mdi-r-watch_later:before {
  content: '"';
}

.icon-mdi-r-water_damage:before {
  content: " ";
}

.icon-mdi-r-waves:before {
  content: "\1f";
}

.icon-mdi-r-wb_auto:before {
  content: "\1e";
}

.icon-mdi-r-wb_cloudy:before {
  content: "\1d";
}

.icon-mdi-r-wb_incandescent:before {
  content: "\1c";
}

.icon-mdi-r-wb_iridescent:before {
  content: "\1b";
}

.icon-mdi-r-wb_sunny:before {
  content: "\1a";
}

.icon-mdi-r-wc:before {
  content: "\19";
}

.icon-mdi-r-web:before {
  content: "\17";
}

.icon-mdi-r-web_asset:before {
  content: "\18";
}

.icon-mdi-r-weekend:before {
  content: "\16";
}

.icon-mdi-r-west:before {
  content: "\15";
}

.icon-mdi-r-whatshot:before {
  content: "\14";
}

.icon-mdi-r-wheelchair_pickup:before {
  content: "\13";
}

.icon-mdi-r-where_to_vote:before {
  content: "\12";
}

.icon-mdi-r-widgets:before {
  content: "\11";
}

.icon-mdi-r-wifi:before {
  content: "\b";
}

.icon-mdi-r-wifi_calling:before {
  content: "\10";
}

.icon-mdi-r-wifi_lock:before {
  content: "\f";
}

.icon-mdi-r-wifi_off:before {
  content: "\e";
}

.icon-mdi-r-wifi_protected_setup:before {
  content: "\d";
}

.icon-mdi-r-wifi_tethering:before {
  content: "\c";
}

.icon-mdi-r-wine_bar:before {
  content: "\a";
}

.icon-mdi-r-work:before {
  content: "\7";
}

.icon-mdi-r-work_off:before {
  content: "	";
}

.icon-mdi-r-work_outline:before {
  content: "\8";
}

.icon-mdi-r-wrap_text:before {
  content: "\6";
}

.icon-mdi-r-wrong_location:before {
  content: "\5";
}

.icon-mdi-r-wysiwyg:before {
  content: "\4";
}

.icon-mdi-r-youtube_searched_for:before {
  content: "\3";
}

.icon-mdi-r-zoom_in:before {
  content: "\2";
}

.icon-mdi-r-zoom_out:before {
  content: "�";
}

.icon-mdi-r-zoom_out_map:before {
  content: "\1";
}

a {
  color: #00253d;
  cursor: pointer;
  text-decoration: none;
}
a:focus {
  color: #335164;
}
a:hover {
  color: #004b7d;
}

.lnk-primary {
  color: #004b7d;
}
.lnk-primary:focus {
  color: #336f97;
}
.lnk-primary:hover {
  color: #6693b1;
}

.lnk-secondary {
  color: #00253d;
}
.lnk-secondary:focus {
  color: #335164;
}
.lnk-secondary:hover {
  color: #667c8b;
}

.lnk-tertiary {
  color: #3090c8;
}
.lnk-tertiary:focus {
  color: #59a6d3;
}
.lnk-tertiary:hover {
  color: #83bcde;
}

.lnk-black {
  color: #00253d;
}
.lnk-black:focus {
  color: #335164;
}
.lnk-black:hover {
  color: #667c8b;
}

.lnk-grey4 {
  color: #495057;
}
.lnk-grey4:focus {
  color: #6d7379;
}
.lnk-grey4:hover {
  color: #92969a;
}

.lnk-grey3 {
  color: #ACB5BD;
}
.lnk-grey3:focus {
  color: #bdc4ca;
}
.lnk-grey3:hover {
  color: #cdd3d7;
}

.lnk-grey2 {
  color: #DDE2E5;
}
.lnk-grey2:focus {
  color: #e4e8ea;
}
.lnk-grey2:hover {
  color: #ebeeef;
}

.lnk-grey1 {
  color: #F8F9FA;
}
.lnk-grey1:focus {
  color: #f9fafb;
}
.lnk-grey1:hover {
  color: #fbfbfc;
}

.lnk-white {
  color: #FFFFFF;
}
.lnk-white:focus {
  color: white;
}
.lnk-white:hover {
  color: white;
}

.lnk-icon {
  display: inline-flex;
  align-items: center;
}
.lnk-icon > * + * {
  margin-left: 1.25rem;
}

.lnk-icon-circle {
  display: inline-flex;
  align-items: center;
  font-size: 4rem;
  line-height: 6rem;
}
.lnk-icon-circle > * + * {
  margin-left: 1.25rem;
}
.lnk-icon-circle > * + * {
  margin-left: 2rem;
}
.lnk-icon-circle [class^=icon-] {
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  background-color: #6693b1;
  color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn {
  width: auto;
  height: 10rem;
  padding: 0 5rem;
  border: 0.25rem solid;
  border-radius: 5rem;
  font-size: 3.5rem;
  line-height: 5rem;
  font-weight: 500;
  white-space: nowrap;
  cursor: pointer;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn[disabled] {
  opacity: 0.2;
  pointer-events: none;
}
.btn > * + * {
  margin-left: 1.25rem;
}
.btn.btn-block {
  width: 100%;
  display: flex;
}
.btn.btn-icon {
  width: 10rem;
  padding: 0;
}
.btn.btn-n1 {
  border-color: #004b7d;
  background-color: #004b7d;
  color: #FFFFFF;
}
.btn.btn-n1:focus:after {
  content: "";
  border: 0.25rem solid #FFFFFF;
  border-radius: inherit;
  position: absolute;
  top: 0.25rem;
  bottom: 0.25rem;
  left: 0.25rem;
  right: 0.25rem;
}
.btn.btn-n1:hover {
  border-color: #004b7d;
  background-color: transparent;
  color: #004b7d;
}
.btn.btn-n2 {
  border-color: #3090c8;
  background-color: #3090c8;
  color: #FFFFFF;
}
.btn.btn-n2:focus:after {
  content: "";
  border: 0.25rem solid #FFFFFF;
  border-radius: inherit;
  position: absolute;
  top: 0.25rem;
  bottom: 0.25rem;
  left: 0.25rem;
  right: 0.25rem;
}
.btn.btn-n2:hover {
  border-color: #3090c8;
  background-color: transparent;
  color: #3090c8;
}
.btn.btn-primary {
  border-color: #004b7d;
  background-color: #004b7d;
  color: #FFFFFF;
}
.btn.btn-primary:focus:after {
  content: "";
  border: 0.25rem solid #FFFFFF;
  border-radius: inherit;
  position: absolute;
  top: 0.25rem;
  bottom: 0.25rem;
  left: 0.25rem;
  right: 0.25rem;
}
.btn.btn-primary:hover {
  border-color: #004b7d;
  background-color: transparent;
  color: #004b7d;
}
.btn.btn-primary-outlined {
  border-color: #004b7d;
  background-color: transparent;
  color: #004b7d;
}
.btn.btn-primary-outlined:focus:after {
  content: "";
  border: 0.25rem solid #004b7d;
  border-radius: inherit;
  position: absolute;
  top: 0.25rem;
  bottom: 0.25rem;
  left: 0.25rem;
  right: 0.25rem;
}
.btn.btn-primary-outlined:hover {
  border-color: #004b7d;
  background-color: #004b7d;
  color: #FFFFFF;
}
.btn.btn-primary-invisible {
  padding-left: 0;
  padding-right: 0;
  border-color: transparent;
  background-color: transparent;
  color: #004b7d;
  box-shadow: none !important;
  outline: none !important;
}
.btn.btn-primary-invisible:focus, .btn.btn-primary-invisible:hover {
  color: #004b7d;
}
.btn.btn-primary-invisible:focus span, .btn.btn-primary-invisible:hover span {
  text-decoration: underline;
}
.btn.btn-secondary {
  border-color: #00253d;
  background-color: #00253d;
  color: #FFFFFF;
}
.btn.btn-secondary:focus:after {
  content: "";
  border: 0.25rem solid #FFFFFF;
  border-radius: inherit;
  position: absolute;
  top: 0.25rem;
  bottom: 0.25rem;
  left: 0.25rem;
  right: 0.25rem;
}
.btn.btn-secondary:hover {
  border-color: #00253d;
  background-color: transparent;
  color: #00253d;
}
.btn.btn-secondary-outlined {
  border-color: #00253d;
  background-color: transparent;
  color: #00253d;
}
.btn.btn-secondary-outlined:focus:after {
  content: "";
  border: 0.25rem solid #00253d;
  border-radius: inherit;
  position: absolute;
  top: 0.25rem;
  bottom: 0.25rem;
  left: 0.25rem;
  right: 0.25rem;
}
.btn.btn-secondary-outlined:hover {
  border-color: #00253d;
  background-color: #00253d;
  color: #FFFFFF;
}
.btn.btn-secondary-invisible {
  padding-left: 0;
  padding-right: 0;
  border-color: transparent;
  background-color: transparent;
  color: #00253d;
  box-shadow: none !important;
  outline: none !important;
}
.btn.btn-secondary-invisible:focus, .btn.btn-secondary-invisible:hover {
  color: #00253d;
}
.btn.btn-secondary-invisible:focus span, .btn.btn-secondary-invisible:hover span {
  text-decoration: underline;
}
.btn.btn-tertiary {
  border-color: #3090c8;
  background-color: #3090c8;
  color: #FFFFFF;
}
.btn.btn-tertiary:focus:after {
  content: "";
  border: 0.25rem solid #FFFFFF;
  border-radius: inherit;
  position: absolute;
  top: 0.25rem;
  bottom: 0.25rem;
  left: 0.25rem;
  right: 0.25rem;
}
.btn.btn-tertiary:hover {
  border-color: #3090c8;
  background-color: transparent;
  color: #3090c8;
}
.btn.btn-tertiary-outlined {
  border-color: #3090c8;
  background-color: transparent;
  color: #3090c8;
}
.btn.btn-tertiary-outlined:focus:after {
  content: "";
  border: 0.25rem solid #3090c8;
  border-radius: inherit;
  position: absolute;
  top: 0.25rem;
  bottom: 0.25rem;
  left: 0.25rem;
  right: 0.25rem;
}
.btn.btn-tertiary-outlined:hover {
  border-color: #3090c8;
  background-color: #3090c8;
  color: #FFFFFF;
}
.btn.btn-tertiary-invisible {
  padding-left: 0;
  padding-right: 0;
  border-color: transparent;
  background-color: transparent;
  color: #3090c8;
  box-shadow: none !important;
  outline: none !important;
}
.btn.btn-tertiary-invisible:focus, .btn.btn-tertiary-invisible:hover {
  color: #3090c8;
}
.btn.btn-tertiary-invisible:focus span, .btn.btn-tertiary-invisible:hover span {
  text-decoration: underline;
}
.btn.btn-black {
  border-color: #00253d;
  background-color: #00253d;
  color: #FFFFFF;
}
.btn.btn-black:focus:after {
  content: "";
  border: 0.25rem solid #FFFFFF;
  border-radius: inherit;
  position: absolute;
  top: 0.25rem;
  bottom: 0.25rem;
  left: 0.25rem;
  right: 0.25rem;
}
.btn.btn-black:hover {
  border-color: #00253d;
  background-color: transparent;
  color: #00253d;
}
.btn.btn-black-outlined {
  border-color: #00253d;
  background-color: transparent;
  color: #00253d;
}
.btn.btn-black-outlined:focus:after {
  content: "";
  border: 0.25rem solid #00253d;
  border-radius: inherit;
  position: absolute;
  top: 0.25rem;
  bottom: 0.25rem;
  left: 0.25rem;
  right: 0.25rem;
}
.btn.btn-black-outlined:hover {
  border-color: #00253d;
  background-color: #00253d;
  color: #FFFFFF;
}
.btn.btn-black-invisible {
  padding-left: 0;
  padding-right: 0;
  border-color: transparent;
  background-color: transparent;
  color: #00253d;
  box-shadow: none !important;
  outline: none !important;
}
.btn.btn-black-invisible:focus, .btn.btn-black-invisible:hover {
  color: #00253d;
}
.btn.btn-black-invisible:focus span, .btn.btn-black-invisible:hover span {
  text-decoration: underline;
}
.btn.btn-white {
  border-color: #FFFFFF;
  background-color: #FFFFFF;
  color: #00253d;
}
.btn.btn-white:focus:after {
  content: "";
  border: 0.25rem solid #00253d;
  border-radius: inherit;
  position: absolute;
  top: 0.25rem;
  bottom: 0.25rem;
  left: 0.25rem;
  right: 0.25rem;
}
.btn.btn-white:hover {
  border-color: #00253d;
  background-color: transparent;
  color: #00253d;
}
.btn.btn-white-outlined {
  border-color: #FFFFFF;
  background-color: transparent;
  color: #FFFFFF;
}
.btn.btn-white-outlined:focus:after {
  content: "";
  border: 0.25rem solid #FFFFFF;
  border-radius: inherit;
  position: absolute;
  top: 0.25rem;
  bottom: 0.25rem;
  left: 0.25rem;
  right: 0.25rem;
}
.btn.btn-white-outlined:hover {
  border-color: #FFFFFF;
  background-color: #FFFFFF;
  color: #00253d;
}
.btn.btn-white-invisible {
  padding-left: 0;
  padding-right: 0;
  border-color: transparent;
  background-color: transparent;
  color: #FFFFFF;
  box-shadow: none !important;
  outline: none !important;
}
.btn.btn-white-invisible:focus, .btn.btn-white-invisible:hover {
  color: #FFFFFF;
}
.btn.btn-white-invisible:focus span, .btn.btn-white-invisible:hover span {
  text-decoration: underline;
}

.btn-lnk {
  padding: 0;
  border: 0;
  outline: none;
  box-shadow: none;
  background-color: transparent;
  cursor: pointer;
}

.btn-pulse {
  position: relative;
  overflow: visible;
}
.btn-pulse:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background-color: inherit;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  transition: opacity 0.3s, transform 0.3s;
  animation: pulse-animation 1s cubic-bezier(0.24, 0, 0.38, 1) infinite;
}
.btn-pulse:after {
  display: none;
}
@keyframes pulse-animation {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0;
    transform: scale(1.333333);
  }
  100% {
    opacity: 0;
    transform: scale(1.333333);
  }
}
.control-label {
  margin-bottom: 0.5rem;
  color: #00253d;
  font-size: 3rem;
  line-height: 4em;
  font-weight: 400;
  text-align: left;
  display: block;
}
.control-label span {
  color: #ACB5BD;
}

.form-control {
  width: 100%;
  min-width: 0;
  height: 10rem;
  padding: 1.75rem 3rem;
  border: 0.25rem solid #ACB5BD;
  border-radius: 0;
  color: #00253d;
  font-size: 4rem;
  line-height: 6rem;
  font-weight: 400;
  resize: none;
  display: block;
}
.form-control:hover {
  border-color: #004b7d;
}
.form-control::-moz-placeholder {
  color: #ACB5BD;
  opacity: 1;
}
.form-control::placeholder {
  color: #ACB5BD;
  opacity: 1;
}

textarea.form-control {
  height: 29rem;
}

.form-select {
  position: relative;
}
.form-select:before {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "icomoon" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  font-size: 5rem;
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
}
.form-select:before:before {
  display: block;
}
.form-select:before {
  content: "ﶶ";
}

.help-block {
  margin-top: 0.5rem;
  color: #00253d;
  font-size: 3rem;
  line-height: 4em;
  font-weight: 300;
  font-style: italic;
}

.form-checkbox,
.form-radio {
  display: flex;
  align-items: center;
}
.form-checkbox > * + *,
.form-radio > * + * {
  margin-left: 1rem;
}
.form-checkbox input,
.form-radio input {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "icomoon" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  font-size: 5rem;
  cursor: pointer;
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: auto;
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  appearance: none;
}
.form-checkbox input:before,
.form-radio input:before {
  display: block;
}
.form-checkbox input[type=checkbox]:before,
.form-radio input[type=checkbox]:before {
  content: "\ee57";
}
.form-checkbox input[type=checkbox]:checked:before,
.form-radio input[type=checkbox]:checked:before {
  content: "\ee59";
}
.form-checkbox input[type=radio]:before,
.form-radio input[type=radio]:before {
  content: "\ee82";
}
.form-checkbox input[type=radio]:checked:before,
.form-radio input[type=radio]:checked:before {
  content: "\ee83";
}
.form-checkbox label,
.form-radio label {
  font-size: 3rem;
  line-height: 4em;
  font-weight: 400;
  cursor: pointer;
}
.form-checkbox + .help-block,
.form-radio + .help-block {
  display: none !important;
}

.form-multiple .form-group:nth-last-child(n+2) {
  margin-bottom: 0;
}

.input-group {
  display: flex;
}
.input-group > * {
  border-radius: 0 !important;
}
.input-group > *:first-child {
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}
.input-group > *:last-child {
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}
.input-group .form-control {
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: auto;
}
.input-group .btn {
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: auto;
}
.input-group .input-group-addon {
  min-width: 10rem;
  padding: 0 2.25rem;
  border: 0.25rem solid #ACB5BD;
  flex-grow: 0;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
}
.input-group .input-group-addon.input-group-addon-black {
  border-color: transparent;
  background-color: #00253d;
  color: #FFFFFF;
}

.form-group {
  margin-bottom: 7rem;
}
.form-group:not(.form-group-static) {
  position: relative;
}
.form-group:not(.form-group-static) .control-label {
  margin-left: 3.25rem;
  margin-bottom: 0;
  pointer-events: none;
  position: absolute;
  z-index: 5;
  transition: all 0.2s;
}
.form-group:not(.form-group-static) .help-block {
  position: absolute;
  z-index: 5;
  top: 100%;
  left: 0;
}
.form-group:not(.form-group-static):not(.form-group-focused):not(.form-group-filled) .control-label {
  font-size: 4rem;
  line-height: 6rem;
  line-height: 10rem;
}
.form-group:not(.form-group-static).form-group-focused .control-label, .form-group:not(.form-group-static).form-group-filled .control-label {
  max-width: calc(100% - 6rem);
  margin-left: 2rem;
  padding: 0 1rem;
  background-color: white;
  transform: translateY(-50%);
}
.form-group:not(.form-group-static).form-group-filled .control-label {
  color: #ACB5BD;
}
.form-group.form-group-focused .control-label {
  color: #004b7d;
}
.form-group.form-group-focused .form-control {
  border-color: #004b7d;
  box-shadow: 0 0 0 0.25rem #004b7d inset;
}
.form-group.has-error .control-label,
.form-group.has-error .form-checkbox,
.form-group.has-error .form-radio,
.form-group.has-error .form-checkbox a,
.form-group.has-error .form-radio a,
.form-group.has-error .help-block {
  color: #F44336 !important;
}
.form-group.has-error .form-control {
  border-color: #F44336 !important;
}
.form-group.has-error.form-group-focused .form-control {
  box-shadow: 0 0 0 0.25rem #F44336 inset !important;
}

picture,
picture img,
.img-responsive {
  display: block;
}

picture img,
.img-responsive {
  max-width: 100%;
}

.img-cover {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.embed-responsive {
  height: 0;
  padding-bottom: 56.25%;
  position: relative;
}
.embed-responsive > * {
  width: 100%;
  height: 100%;
  position: absolute;
}/*# sourceMappingURL=theme.css.map */