/*
 * CUP Bootstrap icon compatibility.
 * The project contains Bootstrap 3.4.1 in /cup/libs/bootstrap. Bootstrap 3
 * ships Glyphicons rather than the later standalone Bootstrap Icons package.
 * These mappings keep the requested "bi ..." HTML classes while loading the
 * icon font only from the unchanged local Bootstrap folder.
 */
@font-face {
  font-family: 'Cup Bootstrap Icons';
  src: url('/cup/libs/bootstrap/fonts/glyphicons-halflings-regular.woff2') format('woff2'),
       url('/cup/libs/bootstrap/fonts/glyphicons-halflings-regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

.bi {
  position: relative;
  top: 1px;
  display: inline-block;
  font-family: 'Cup Bootstrap Icons';
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.bi-arrow-right-circle-fill::before { content: "\e131"; }
.bi-arrow-up-circle-fill::before    { content: "\e133"; }
.bi-arrow-down-circle-fill::before  { content: "\e134"; }
.bi-info-circle-fill::before        { content: "\e086"; }
.bi-x-circle-fill::before           { content: "\e088"; }

.cup-arrow-icon { font-size: 15px; width: 15px; height: 15px; }
.cup-info-icon  { font-size: 18px; width: 18px; height: 18px; }
