@use "sass:meta";

@use "./bootstrap-mixin.module" as styleVars;

.bootstrapFvComponentScope {

  @include styleVars.bootstrapRoot;
  @include meta.load-css("bootstrap/dist/css/bootstrap.min");

  * {
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
  }
  *:before,
  *:after {
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
  }
  .nav > a {
    font-size: 12px;
  }
  .tab-pane{
    padding-top: 25px;
  }
  .show {
    opacity: 1;
  }
  .rcsbSvg {
    vertical-align: baseline;
  }
  .rcsbFvRowTitleText a {
    text-decoration-line: none;
  }
  .rcsbFvRowTitleText a:hover {
    text-decoration-line: underline;
  }

}