﻿/* Bootstrap modal override - this changes the modal background from 
    a faded background to whatever color you choose.  
    In this case it's f1f1f1, but can be altered to any primary.  
    Change opacity based on your comfort as well. */
/*
.modal-backdrop {
    background-color: #f1f1f1;
    opacity: .98 !important; 
}
*/
/* Bootstrap override */
.modal-content {
  background-color: #fafafa;
}

.tab-content > .tab-pane,
.pill-content > .pill-pane {
  display: block;
  /* undo display:none */
  height: 0;
  /* height:0 is also invisible */
  overflow-y: hidden;
  /* no-overflow */
}

.tab-content > .active,
.pill-content > .active {
  height: auto;
  /* let the content decide */
}

/* This is a hidden display fix for tabs and charts/maps resizing.*/
