html{overflow-y:auto;-ms-overflow-style:none;scrollbar-width:none;-moz-osx-font-smoothing:grayscale}html::-webkit-scrollbar{display:none}@media print{.rpv-print__body-printing #root{display:none}}.nav-link:hover{color:"rgba(0, 0, 0)"}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{-webkit-appearance:none;margin:0}.branchIndicator{width:100%;background-color:#1d3557;color:#ced4da;text-align:center}.noscroll{overflow:hidden !important}
:root {
  --toastify-color-light: #fff;
  --toastify-color-dark: #121212;
  --toastify-color-info: #3498db;
  --toastify-color-success: #07bc0c;
  --toastify-color-warning: #f1c40f;
  --toastify-color-error: #e74c3c;
  --toastify-color-transparent: rgba(255, 255, 255, 0.7);
  --toastify-icon-color-info: var(--toastify-color-info);
  --toastify-icon-color-success: var(--toastify-color-success);
  --toastify-icon-color-warning: var(--toastify-color-warning);
  --toastify-icon-color-error: var(--toastify-color-error);
  --toastify-toast-width: 320px;
  --toastify-toast-background: #fff;
  --toastify-toast-min-height: 64px;
  --toastify-toast-max-height: 800px;
  --toastify-font-family: sans-serif;
  --toastify-z-index: 9999;
  --toastify-text-color-light: #757575;
  --toastify-text-color-dark: #fff;
  --toastify-text-color-info: #fff;
  --toastify-text-color-success: #fff;
  --toastify-text-color-warning: #fff;
  --toastify-text-color-error: #fff;
  --toastify-spinner-color: #616161;
  --toastify-spinner-color-empty-area: #e0e0e0;
  --toastify-color-progress-light: linear-gradient(
    to right,
    #4cd964,
    #5ac8fa,
    #007aff,
    #34aadc,
    #5856d6,
    #ff2d55
  );
  --toastify-color-progress-dark: #bb86fc;
  --toastify-color-progress-info: var(--toastify-color-info);
  --toastify-color-progress-success: var(--toastify-color-success);
  --toastify-color-progress-warning: var(--toastify-color-warning);
  --toastify-color-progress-error: var(--toastify-color-error);
}

.Toastify__toast-container {
  z-index: var(--toastify-z-index);
  -webkit-transform: translate3d(0, 0, var(--toastify-z-index) px);
  position: fixed;
  padding: 4px;
  width: var(--toastify-toast-width);
  box-sizing: border-box;
  color: #fff;
}

.Toastify__toast-container--top-left {
  top: 1em;
  left: 1em;
}

.Toastify__toast-container--top-center {
  top: 1em;
  left: 50%;
  transform: translateX(-50%);
}

.Toastify__toast-container--top-right {
  top: 1em;
  right: 1em;
}

.Toastify__toast-container--bottom-left {
  bottom: 1em;
  left: 1em;
}

.Toastify__toast-container--bottom-center {
  bottom: 1em;
  left: 50%;
  transform: translateX(-50%);
}

.Toastify__toast-container--bottom-right {
  bottom: 1em;
  right: 1em;
}

@media only screen and (max-width : 480px) {
  .Toastify__toast-container {
    width: 100vw;
    padding: 0;
    left: 0;
    margin: 0;
  }
  .Toastify__toast-container--top-left, .Toastify__toast-container--top-center, .Toastify__toast-container--top-right {
    top: 0;
    transform: translateX(0);
  }
  .Toastify__toast-container--bottom-left, .Toastify__toast-container--bottom-center, .Toastify__toast-container--bottom-right {
    bottom: 0;
    transform: translateX(0);
  }
  .Toastify__toast-container--rtl {
    right: 0;
    left: initial;
  }
}

.Toastify__toast {
  position: relative;
  min-height: var(--toastify-toast-min-height);
  box-sizing: border-box;
  margin-bottom: 1rem;
  padding: 8px;
  border-radius: 4px;
  box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.1), 0 2px 15px 0 rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: space-between;
  max-height: var(--toastify-toast-max-height);
  overflow: hidden;
  font-family: var(--toastify-font-family);
  cursor: default;
  direction: ltr;
  /* webkit only issue #791 */
  z-index: 0;
}

.Toastify__toast--rtl {
  direction: rtl;
}

.Toastify__toast--close-on-click {
  cursor: pointer;
}

.Toastify__toast-body {
  margin: auto 0;
  flex: 1 1 auto;
  padding: 6px;
  display: flex;
  align-items: center;
}

.Toastify__toast-body > div:last-child {
  word-break: break-word;
  flex: 1;
}

.Toastify__toast-icon {
  margin-inline-end: 10px;
  width: 20px;
  flex-shrink: 0;
  display: flex;
}

.Toastify--animate {
  animation-fill-mode: both;
  animation-duration: 0.7s;
}

.Toastify--animate-icon {
  animation-fill-mode: both;
  animation-duration: 0.3s;
}

@media only screen and (max-width : 480px) {
  .Toastify__toast {
    margin-bottom: 0;
    border-radius: 0;
  }
}

.Toastify__toast-theme--dark {
  background: var(--toastify-color-dark);
  color: var(--toastify-text-color-dark);
}

.Toastify__toast-theme--light {
  background: var(--toastify-color-light);
  color: var(--toastify-text-color-light);
}

.Toastify__toast-theme--colored.Toastify__toast--default {
  background: var(--toastify-color-light);
  color: var(--toastify-text-color-light);
}

.Toastify__toast-theme--colored.Toastify__toast--info {
  color: var(--toastify-text-color-info);
  background: var(--toastify-color-info);
}

.Toastify__toast-theme--colored.Toastify__toast--success {
  color: var(--toastify-text-color-success);
  background: var(--toastify-color-success);
}

.Toastify__toast-theme--colored.Toastify__toast--warning {
  color: var(--toastify-text-color-warning);
  background: var(--toastify-color-warning);
}

.Toastify__toast-theme--colored.Toastify__toast--error {
  color: var(--toastify-text-color-error);
  background: var(--toastify-color-error);
}

.Toastify__progress-bar-theme--light {
  background: var(--toastify-color-progress-light);
}

.Toastify__progress-bar-theme--dark {
  background: var(--toastify-color-progress-dark);
}

.Toastify__progress-bar--info {
  background: var(--toastify-color-progress-info);
}

.Toastify__progress-bar--success {
  background: var(--toastify-color-progress-success);
}

.Toastify__progress-bar--warning {
  background: var(--toastify-color-progress-warning);
}

.Toastify__progress-bar--error {
  background: var(--toastify-color-progress-error);
}

.Toastify__progress-bar-theme--colored.Toastify__progress-bar--info, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--success, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--warning, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--error {
  background: var(--toastify-color-transparent);
}

.Toastify__close-button {
  color: #fff;
  background: transparent;
  outline: none;
  border: none;
  padding: 0;
  cursor: pointer;
  opacity: 0.7;
  transition: 0.3s ease;
  align-self: flex-start;
}

.Toastify__close-button--light {
  color: #000;
  opacity: 0.3;
}

.Toastify__close-button > svg {
  fill: currentColor;
  height: 16px;
  width: 14px;
}

.Toastify__close-button:hover, .Toastify__close-button:focus {
  opacity: 1;
}

@keyframes Toastify__trackProgress {
  0% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0);
  }
}

.Toastify__progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  z-index: var(--toastify-z-index);
  opacity: 0.7;
  transform-origin: left;
}

.Toastify__progress-bar--animated {
  animation: Toastify__trackProgress linear 1 forwards;
}

.Toastify__progress-bar--controlled {
  transition: transform 0.2s;
}

.Toastify__progress-bar--rtl {
  right: 0;
  left: initial;
  transform-origin: right;
}

.Toastify__spinner {
  width: 20px;
  height: 20px;
  box-sizing: border-box;
  border: 2px solid;
  border-radius: 100%;
  border-color: var(--toastify-spinner-color-empty-area);
  border-right-color: var(--toastify-spinner-color);
  animation: Toastify__spin 0.65s linear infinite;
}

@keyframes Toastify__bounceInRight {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  to {
    transform: none;
  }
}

@keyframes Toastify__bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}

@keyframes Toastify__bounceInLeft {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  to {
    transform: none;
  }
}

@keyframes Toastify__bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}

@keyframes Toastify__bounceInUp {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes Toastify__bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}

@keyframes Toastify__bounceInDown {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  75% {
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
  }
  to {
    transform: none;
  }
}

@keyframes Toastify__bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}

.Toastify__bounce-enter--top-left, .Toastify__bounce-enter--bottom-left {
  animation-name: Toastify__bounceInLeft;
}

.Toastify__bounce-enter--top-right, .Toastify__bounce-enter--bottom-right {
  animation-name: Toastify__bounceInRight;
}

.Toastify__bounce-enter--top-center {
  animation-name: Toastify__bounceInDown;
}

.Toastify__bounce-enter--bottom-center {
  animation-name: Toastify__bounceInUp;
}

.Toastify__bounce-exit--top-left, .Toastify__bounce-exit--bottom-left {
  animation-name: Toastify__bounceOutLeft;
}

.Toastify__bounce-exit--top-right, .Toastify__bounce-exit--bottom-right {
  animation-name: Toastify__bounceOutRight;
}

.Toastify__bounce-exit--top-center {
  animation-name: Toastify__bounceOutUp;
}

.Toastify__bounce-exit--bottom-center {
  animation-name: Toastify__bounceOutDown;
}

@keyframes Toastify__zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}

@keyframes Toastify__zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}

.Toastify__zoom-enter {
  animation-name: Toastify__zoomIn;
}

.Toastify__zoom-exit {
  animation-name: Toastify__zoomOut;
}

@keyframes Toastify__flipIn {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}

@keyframes Toastify__flipOut {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

.Toastify__flip-enter {
  animation-name: Toastify__flipIn;
}

.Toastify__flip-exit {
  animation-name: Toastify__flipOut;
}

@keyframes Toastify__slideInRight {
  from {
    transform: translate3d(110%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes Toastify__slideInLeft {
  from {
    transform: translate3d(-110%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes Toastify__slideInUp {
  from {
    transform: translate3d(0, 110%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes Toastify__slideInDown {
  from {
    transform: translate3d(0, -110%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes Toastify__slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(110%, 0, 0);
  }
}

@keyframes Toastify__slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-110%, 0, 0);
  }
}

@keyframes Toastify__slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 500px, 0);
  }
}

@keyframes Toastify__slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -500px, 0);
  }
}

.Toastify__slide-enter--top-left, .Toastify__slide-enter--bottom-left {
  animation-name: Toastify__slideInLeft;
}

.Toastify__slide-enter--top-right, .Toastify__slide-enter--bottom-right {
  animation-name: Toastify__slideInRight;
}

.Toastify__slide-enter--top-center {
  animation-name: Toastify__slideInDown;
}

.Toastify__slide-enter--bottom-center {
  animation-name: Toastify__slideInUp;
}

.Toastify__slide-exit--top-left, .Toastify__slide-exit--bottom-left {
  animation-name: Toastify__slideOutLeft;
}

.Toastify__slide-exit--top-right, .Toastify__slide-exit--bottom-right {
  animation-name: Toastify__slideOutRight;
}

.Toastify__slide-exit--top-center {
  animation-name: Toastify__slideOutUp;
}

.Toastify__slide-exit--bottom-center {
  animation-name: Toastify__slideOutDown;
}

@keyframes Toastify__spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@font-face {
  font-family: 'fsg';
  src:
    url('fsg.880899afca2071ecdf59.ttf?mvpw1g') format('truetype'),
    url('fsg.feb2303ac00a9a8541cd.woff?mvpw1g') format('woff'),
    url('fsg.12b9d2a7b8ce80304373.svg?mvpw1g#fsg') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

.fsg-icon {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'fsg' !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;
}

.sgds-icon-add-photo:before {
  content: "\e900";
}

.sgds-icon-attachment:before {
  content: "\e901";
}

.sgds-icon-browser:before {
  content: "\e902";
}

.sgds-icon-calculator:before {
  content: "\e903";
}

.sgds-icon-camera:before {
  content: "\e904";
}

.sgds-icon-clock:before {
  content: "\e905";
}

.sgds-icon-cloud:before {
  content: "\e906";
}

.sgds-icon-cloud-download:before {
  content: "\e907";
}

.sgds-icon-cloud-success:before {
  content: "\e908";
}

.sgds-icon-cloud-upload:before {
  content: "\e909";
}

.sgds-icon-contact:before {
  content: "\e90a";
}

.sgds-icon-folder-add:before {
  content: "\e90b";
}

.sgds-icon-folder:before {
  content: "\e90c";
}

.sgds-icon-delay:before {
  content: "\e90d";
}

.sgds-icon-download:before {
  content: "\e90e";
}

.sgds-icon-upload:before {
  content: "\e90f";
}

.sgds-icon-file:before {
  content: "\e910";
}

.sgds-icon-file-add:before {
  content: "\e911";
}

.sgds-icon-file-alt:before {
  content: "\e912";
}

.sgds-icon-file-copy:before {
  content: "\e913";
}

.sgds-icon-file-pdf:before {
  content: "\e914";
}

.sgds-icon-hdd:before {
  content: "\e915";
}

.sgds-icon-link:before {
  content: "\e916";
}

.sgds-icon-lock:before {
  content: "\e917";
}

.sgds-icon-unlock:before {
  content: "\e918";
}

.sgds-icon-radar:before {
  content: "\e919";
}

.sgds-icon-save:before {
  content: "\e91a";
}

.sgds-icon-share:before {
  content: "\e91b";
}

.sgds-icon-signal:before {
  content: "\e91c";
}

.sgds-icon-phone:before {
  content: "\e91d";
}

.sgds-icon-database:before {
  content: "\e91e";
}

.sgds-icon-volume:before {
  content: "\e91f";
}

.sgds-icon-mute:before {
  content: "\e920";
}

.sgds-icon-print:before {
  content: "\e921";
}

.sgds-icon-mail:before {
  content: "\e922";
}

.sgds-icon-meter:before {
  content: "\e923";
}

.sgds-icon-arrow-down:before {
  content: "\e924";
}

.sgds-icon-arrow-left:before {
  content: "\e925";
}

.sgds-icon-arrow-right:before {
  content: "\e926";
}

.sgds-icon-arrow-up:before {
  content: "\e927";
}

.sgds-icon-arrow-top-left:before {
  content: "\e928";
}

.sgds-icon-arrow-top-right:before {
  content: "\e929";
}

.sgds-icon-chevron-down:before {
  content: "\e92a";
}

.sgds-icon-chevron-left:before {
  content: "\e92b";
}

.sgds-icon-chevron-right:before {
  content: "\e92c";
}

.sgds-icon-chevron-up:before {
  content: "\e92d";
}

.sgds-icon-cog:before {
  content: "\e92e";
}

.sgds-icon-cross:before {
  content: "\e92f";
}

.sgds-icon-ellipsis:before {
  content: "\e930";
}

.sgds-icon-home:before {
  content: "\e931";
}

.sgds-icon-image:before {
  content: "\e932";
}

.sgds-icon-menu:before {
  content: "\e933";
}

.sgds-icon-minus:before {
  content: "\e934";
}

.sgds-icon-notification:before {
  content: "\e935";
}

.sgds-icon-plus:before {
  content: "\e936";
}

.sgds-icon-check:before {
  content: "\e937";
}

.sgds-icon-circle-pending:before {
  content: "\e938";
}

.sgds-icon-add-place:before {
  content: "\e93a";
}

.sgds-icon-place:before {
  content: "\e93b";
}

.sgds-icon-my-location:before {
  content: "\e93c";
}

.sgds-icon-map:before {
  content: "\e93d";
}

.sgds-icon-layer:before {
  content: "\e93e";
}

.sgds-icon-boat:before {
  content: "\e93f";
}

.sgds-icon-bus:before {
  content: "\e940";
}

.sgds-icon-car:before {
  content: "\e941";
}

.sgds-icon-taxi:before {
  content: "\e942";
}

.sgds-icon-train:before {
  content: "\e943";
}

.sgds-icon-traffic:before {
  content: "\e944";
}

.sgds-icon-rsvp-yes:before {
  content: "\e945";
}

.sgds-icon-add-comment:before {
  content: "\e946";
}

.sgds-icon-ban:before {
  content: "\e947";
}

.sgds-icon-bookmark:before {
  content: "\e948";
}

.sgds-icon-bookmark-alt:before {
  content: "\e949";
}

.sgds-icon-calendar:before {
  content: "\e94a";
}

.sgds-icon-chat:before {
  content: "\e94b";
}

.sgds-icon-circle-info:before {
  content: "\e94c";
}

.sgds-icon-circle-question:before {
  content: "\e94d";
}

.sgds-icon-circle-warning:before {
  content: "\e94e";
}

.sgds-icon-circle-minus:before {
  content: "\e94f";
}

.sgds-icon-circle-plus:before {
  content: "\e950";
}

.sgds-icon-compress:before {
  content: "\e951";
}

.sgds-icon-compress-alt:before {
  content: "\e952";
}

.sgds-icon-expand-alt:before {
  content: "\e953";
}

.sgds-icon-edit:before {
  content: "\e954";
}

.sgds-icon-expand:before {
  content: "\e955";
}

.sgds-icon-delete:before {
  content: "\e956";
}

.sgds-icon-external:before {
  content: "\e957";
}

.sgds-icon-feedback:before {
  content: "\e958";
}

.sgds-icon-filter:before {
  content: "\e959";
}

.sgds-icon-info:before {
  content: "\e95a";
}

.sgds-icon-list:before {
  content: "\e95b";
}

.sgds-icon-pause:before {
  content: "\e95c";
}

.sgds-icon-pause-alt:before {
  content: "\e95d";
}

.sgds-icon-pencil:before {
  content: "\e95e";
}

.sgds-icon-pin:before {
  content: "\e95f";
}

.sgds-icon-play:before {
  content: "\e960";
}

.sgds-icon-play-alt:before {
  content: "\e961";
}

.sgds-icon-privacy-alt:before {
  content: "\e962";
}

.sgds-icon-privacy:before {
  content: "\e963";
}

.sgds-icon-question:before {
  content: "\e964";
}

.sgds-icon-refresh:before {
  content: "\e965";
}

.sgds-icon-rsvp-no:before {
  content: "\e966";
}

.sgds-icon-search:before {
  content: "\e967";
}

.sgds-icon-slider-horizontal:before {
  content: "\e968";
}

.sgds-icon-slider-vertical:before {
  content: "\e969";
}

.sgds-icon-star:before {
  content: "\e96a";
}

.sgds-icon-star-alt:before {
  content: "\e96b";
}

.sgds-icon-stop:before {
  content: "\e96c";
}

.sgds-icon-sync:before {
  content: "\e96d";
}

.sgds-icon-toggle-minus:before {
  content: "\e96e";
}

.sgds-icon-toggle-off:before {
  content: "\e96f";
}

.sgds-icon-toggle-on:before {
  content: "\e970";
}

.sgds-icon-toggle-plus:before {
  content: "\e971";
}

.sgds-icon-triangle-warning:before {
  content: "\e972";
}

.sgds-icon-warning:before {
  content: "\e973";
}

.sgds-icon-zoom-in:before {
  content: "\e974";
}

.sgds-icon-zoom-out:before {
  content: "\e975";
}

.sgds-icon-image-add:before {
  content: "\e976";
}

.sgds-icon-text-center:before {
  content: "\e99b";
}

.sgds-icon-text-justify:before {
  content: "\e99c";
}

.sgds-icon-text-left:before {
  content: "\e99d";
}

.sgds-icon-text-right:before {
  content: "\e99e";
}

.sgds-icon-docker:before {
  content: "\e977";
}

.sgds-icon-facebook:before {
  content: "\e978";
}

.sgds-icon-facebook-alt:before {
  content: "\e979";
}

.sgds-icon-google:before {
  content: "\e97a";
}

.sgds-icon-instagram:before {
  content: "\e97b";
}

.sgds-icon-linkedin:before {
  content: "\e97c";
}

.sgds-icon-linkedin-alt:before {
  content: "\e97d";
}

.sgds-icon-twitter:before {
  content: "\e97e";
}

.sgds-icon-person:before {
  content: "\e97f";
}

.sgds-icon-person-add:before {
  content: "\e980";
}

.sgds-icon-person-cancel:before {
  content: "\e981";
}

.sgds-icon-person-minus:before {
  content: "\e982";
}

.sgds-icon-thumbs-down:before {
  content: "\e983";
}

.sgds-icon-thumb-up:before {
  content: "\e984";
}

.sgds-icon-youtube:before {
  content: "\e985";
}

.sgds-icon-rss:before {
  content: "\e986";
}

.sgds-icon-accordion:before {
  content: "\e987";
}

.sgds-icon-breadcrumb:before {
  content: "\e988";
}

.sgds-icon-button:before {
  content: "\e989";
}

.sgds-icon-callout:before {
  content: "\e98a";
}

.sgds-icon-card:before {
  content: "\e98b";
}

.sgds-icon-container:before {
  content: "\e98c";
}

.sgds-icon-dropdown:before {
  content: "\e98d";
}

.sgds-icon-footer:before {
  content: "\e98e";
}

.sgds-icon-grid:before {
  content: "\e98f";
}

.sgds-icon-grid-alt:before {
  content: "\e990";
}

.sgds-icon-grid-hero:before {
  content: "\e991";
}

.sgds-icon-mainnav:before {
  content: "\e992";
}

.sgds-icon-masthead:before {
  content: "\e993";
}

.sgds-icon-section:before {
  content: "\e994";
}

.sgds-icon-sidenav:before {
  content: "\e995";
}

.sgds-icon-tab:before {
  content: "\e996";
}

.sgds-icon-table:before {
  content: "\e997";
}

.sgds-icon-typography:before {
  content: "\e998";
}

.sgds-icon-icon:before {
  content: "\e999";
}

.sgds-icon-guides:before {
  content: "\e9c2";
}

.sgds-icon-sentimeter:before {
  content: "\e9c3";
}

.sgds-icon-wordpress:before {
  content: "\e9c7";
}

.sgds-icon-sharepoint:before {
  content: "\e9c4";
}

.sgds-icon-sitefinity:before {
  content: "\e9c5";
}

.sgds-icon-swiit:before {
  content: "\e9c6";
}

.sgds-icon-sg-crest:before {
  content: "\e939";
  color: #db0000;
}

.fsg-icon-cert:before {
  content: "\e9c8";
}

.fsg-icon-loading:before {
  content: "\e99a";
}

.fsg-icon-circle-cross:before {
  content: "\e99f";
}

.fsg-icon-circle-check:before {
  content: "\e9a0";
}

.fsg-icon-circle-cross-solid:before {
  content: "\e9a1";
}

.fsg-icon-circle-check-solid:before {
  content: "\e9a2";
}

.fsg-icon-triangle-warning-solid:before {
  content: "\e9a3";
}

.fsg-icon-circle-info-solid:before {
  content: "\e9a4";
}

.fsg-icon-circle-warning-soild:before {
  content: "\e9a5";
}

.fsg-icon-upward-caret:before {
  content: "\e9a6";
}

.fsg-icon-downward-caret:before {
  content: "\e9a7";
}

.fsg-icon-loading-solid:before {
  content: "\e9a8";
}

.fsg-icon-coding:before {
  content: "\e9a9";
}

.fsg-icon-home-solid:before {
  content: "\e9aa";
}

.fsg-icon-home-ica:before {
  content: "\e9ab";
}

.fsg-icon-person-solid:before {
  content: "\e9ac";
}

.fsg-icon-sort:before {
  content: "\e9ad";
}

.fsg-icon-user-group:before {
  content: "\e9ae";
}

.fsg-icon-verified:before {
  content: "\e9af";
}

.fsg-icon-verified-solid:before {
  content: "\e9b0";
}

.fsg-icon-settings-solid:before {
  content: "\e9b1";
}

.fsg-icon-user-group-solid:before {
  content: "\e9b2";
}

.fsg-icon-share-arrow:before {
  content: "\e9b3";
}

.fsg-icon-countdown-solid:before {
  content: "\e9b4";
}

.fsg-icon-gridview:before {
  content: "\e9b5";
}

.fsg-icon-arrow-downright:before {
  content: "\e9b6";
}

.fsg-icon-scan-qr:before {
  content: "\e9b7";
}

.fsg-icon-notification-solid:before {
  content: "\e9b8";
}

.fsg-icon-personal-particulars:before {
  content: "\e9b9";
}

.fsg-icon-device-platform:before {
  content: "\e9ba";
}

.fsg-icon-maximise:before {
  content: "\e9bb";
}

.fsg-icon-student-pass:before {
  content: "\e9bc";
}

.fsg-icon-ltvp-pass:before {
  content: "\e9bd";
}

.fsg-icon-dependent-pass:before {
  content: "\e9be";
}

.fsg-icon-logout:before {
  content: "\e9bf";
}

.fsg-icon-business:before {
  content: "\e9c0";
}

.fsg-icon-certificate:before {
  content: "\e9c1";
}

.fsg-icon-file-recall:before {
  content: "\e9c9";
}

/*---------------------------------------------------------------------
File type
These SVGs have multiple colours, not feasible to alter.
---------------------------------------------------------------------*/

.fsg-icon-folder-outline {
  content: url('fsg-icon-folder-outline.96bfe61dcc7e980c2cb6.svg');
}

.fsg-icon-folder-solid {
  content: url('fsg-icon-folder-solid.96bfe61dcc7e980c2cb6.svg');
}

.fsg-icon-file-excel-mini {
  content: url('fsg-icon-file-excel-mini.74d6e68b51039b51f63f.svg');
}

.fsg-icon-file-excel-outline {
  content: url('fsg-icon-file-excel-outline.0c5c37f8e90e789d487b.svg');
}

.fsg-icon-file-excel-solid {
  content: url('fsg-icon-file-excel-solid.bc06f09688db189fdf74.svg');
}

.fsg-icon-file-jpg-mini {
  content: url('fsg-icon-file-jpg-mini.2ba26164b368aae9b777.svg');
}

.fsg-icon-file-jpg-outline {
  content: url('fsg-icon-file-jpg-outline.1a6211f2846d8ccc6524.svg');
}

.fsg-icon-file-jpg-solid {
  content: url('fsg-icon-file-jpg-solid.0dc40c04d0f548669bd0.svg');
}

.fsg-icon-file-opencert-mini {
  content: url('fsg-icon-file-opencert-mini.91d93d7312a7ccc5d777.svg');
}

.fsg-icon-file-opencert-outline {
  content: url('fsg-icon-file-opencert-outline.cb084f3a568badb35d5e.svg');
}

.fsg-icon-file-opencert-solid {
  content: url('fsg-icon-file-opencert-solid.6318521de0e3bf88e092.svg');
}

.fsg-icon-file-pdf-mini {
  content: url('fsg-icon-file-pdf-mini.e0ff51cfb61c33632660.svg');
}

.fsg-icon-file-pdf-outline {
  content: url('fsg-icon-file-pdf-outline.1b776264f6995a851b24.svg');
}

.fsg-icon-file-pdf-solid {
  content: url('fsg-icon-file-pdf-solid.7ebfdcd5a814c62f55a2.svg');
}

.fsg-icon-file-word-mini {
  content: url('fsg-icon-file-word-mini.2c8236dcbb58758ec0a2.svg');
}

.fsg-icon-file-word-outline {
  content: url('fsg-icon-file-word-outline.fc7de120da03d993a1ce.svg');
}

.fsg-icon-file-word-solid {
  content: url('fsg-icon-file-word-solid.55098d8514c3ad134374.svg');
}

.fsg-icon-file-unknown-outline {
  content: url('fsg-icon-file-unknown-outline.996e40cf0b2bced839ee.svg');
}

.fsg-icon-file-unknown-solid {
  content: url('fsg-icon-file-unknown-solid.1a06aada36949e733740.svg');
}

.fsg-icon-file-openattest-mini {
  content: url('fsg-icon-file-openattest-mini.677c7f445c9c70ac43e4.svg');
}

.fsg-icon-file-openattest-outline {
  content: url('fsg-icon-file-openattest-outline.b47b612942e03ab04224.svg');
}

.fsg-icon-file-openattest-solid {
  content: url('fsg-icon-file-openattest-solid.4fa2944170b6a6e7e51a.svg');
}

.fsg-icon-file-png-mini {
  content: url('fsg-icon-file-png-mini.012363a683660e6ef763.svg');
}

.fsg-icon-file-png-outline {
  content: url('fsg-icon-file-png-outline.81bfeed4a49ef1e800fd.svg');
}

.fsg-icon-file-png-solid {
  content: url('fsg-icon-file-png-solid.497d608720fe9d2dca73.svg');
}

.fsg-icon-file-zip-solid {
  content: url('fsg-icon-file-zip-solid.8cf223175fe85e0f4a86.svg');
}

.fsg-icon-file-zip-outline {
  content: url('fsg-icon-file-zip-outline.a53a83a64366a84746af.svg');
}

.fsg-icon-file-zip-mini {
  content: url('fsg-icon-file-zip-mini.87c9287d4e33718f8c34.svg');
}

.fsg-icon-file-xlsx-solid {
  content: url('fsg-icon-file-xlsx-solid.bc06f09688db189fdf74.svg');
}

.fsg-icon-file-xlsx-outline {
  content: url('fsg-icon-file-xlsx-outline.70d2c10f5236fbaad9f1.svg');
}

.fsg-icon-file-xlsx-mini {
  content: url('fsg-icon-file-xlsx-mini.8cac100709c5fe36d011.svg');
}



