.brs-app .st-app-logo {
  --st-logo-width: 200px;
  --st-logo-height: auto;
}
.brs-app .st-header-logo-link {
  --st-header-logo-height: 32px;
}

.st-light-theme {
  --st-logo-path: url(./assets/logo.png);
}
.st-dark-theme {
  --st-logo-path: url(./assets/dark_logo.png) !important;
}

.brs-app--loading div.st-app-logo {
	content: url("fxp_loading_icon.png") !important;
	--st-logo-width: 160px;
    --st-logo-height: 150px;
	animation: pulse 1.5s infinite !important;
	background-size: 100% 100%;
    background-color: transparent !important;
	}
	  @keyframes pulse {
      0% {
        transform: scale(0.8);
      }
      50% {
        transform: scale(1);
      }
      100% {
        transform: scale(0.8);
      }
    }

:root {
    --st-light-primary-color: #0C644D !important;
    --st-dark-primary-color: #0C644D !important;
    --st-light-secondary-color: #ffee00 !important;
    --st-dark-secondary-color: #ffee00 !important;
    --st-success-message-color: #51A351 !important;
    --st-error-message-color: #BD362F !important;
    --st-positive-color: #51A351 !important;
    --st-negative-color: #BD362F !important;
}


