@import 'about.css';
@import 'annotationUI.css';
@import 'attributeTableWidget.css';

@import 'bookmarks.css';

@import 'carousel.css';
@import 'checkboxTree.css';

@import 'editorComponent.css';

@import 'errorBoundary.css';

@import 'feedback.css';

@import 'header.css';

@import 'identifyComponent.css';

@import 'layerList.css';

@import 'measureTool.css';

@import 'navbar.css';

@import 'profile-menu.css';

@import 'resizer.css';

@import 'sidebar.css';
@import 'spinner.css';
@import 'swipeTool.css';

@import 'themeWidget.css';
@import 'toasts.css';

@import 'userProfile.css';

@import 'warning.css';

/* hide the webpack-dev-server overlay, it was showing for benign issues with button resizes */
iframe#webpack-dev-server-client-overlay {
  display: none !important;
}

/* Font Smoothing */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul,
a,
td,
button,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
.display-1,
.display-2,
.display-3,
.display-4,
.navbar {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-family: Montserrat, Arial, sans-serif;
  color: #464646;
}

body {
  height: 100%;
  margin: 0px;
  padding: 0px;
}

#mainContainer {
  display: flex;
  flex-direction: column;
  height: 100vh;
}

.mainPageContent {
  flex-grow: 1;
  display: flex;
  overflow: hidden;
  z-index: 0;
}

#root {
  /* padding-bottom: env(safe-area-inset-bottom) */
  height: 100%;
  margin: 0px;
  padding: 0px;
}

.map-wrapper {
  position: relative;
  /* establishes positioning context */
  width: 100%;
  height: 100%;
}

.map-loading-overlay {
  position: absolute;
  top: 50%;
  /* center vertically */
  left: 50%;
  /* center horizontally */
  transform: translate(-50%, -50%);
  z-index: 9999;
  /* ensure it's above the map */
  pointer-events: none;
  /* do not block map interactions if desired */
}

.map-loading-overlay .spinner-border {
  width: 3rem;
  height: 3rem;
}

#desktopLayoutResultsContainer {
  width: 100%;
  /* Full width within its parent */
  max-width: 100%;
  /* Prevent overflow */
  overflow-x: overlay !important;
  /* Hide horizontal overflow */
  display: flex;
  flex-wrap: wrap;
  /* Wrap content if needed */
}


.mapLoadingProgressIndicator {
  position: relative;
  top: 150px;
}

.mapLoadingProgressIndicatorAlert {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  width: 65%;
  display: flex;
  /* Use flexbox for centering */
  justify-content: center;
  /* Center the text horizontally */
  align-items: center;
  /* Center the text vertically */
}

.identifyResultsCardTitle {
  width: 50%;
}

.loading-indicator-widget {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -20%);
  z-index: 1000;
  /* Ensure it appears above other content */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.8);
  /* Optional: semi-transparent background */
  padding: 20px;
  border-radius: 8px;
}

.identifyLoaderDisabled {
  display: none;
}

.forceFont {
  font-family: 'Open Sans', sans-serif !important;
  font-size: 14px !important;
}

/* text color when basicDisplay text is 'prohibited */
.text-prohibited {
  color: red;
}

.colorRed {
  color: red;
}

.italic-text {
  font-style: italic;
}

.fontWeightBolder {
  font-weight: bolder;
}

.cursorPointer {
  cursor: pointer;
}

.textAlignLeft {
  text-align: left;
}

.overflow-hidden {
  overflow: hidden;
}

.rowPaddingNone {
  margin: 0 !important;
  padding: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.labelPaddingNone {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.button-outline {
  border: 1px solid black;
  outline-style: solid;
  outline-color: black;
  outline-width: thin;
}

.paginate-disable {
  pointer-events: none;
  opacity: 0.2;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  /* Prevent text wrap */
  border: 0;
}

.nav-tabs {
  font-size: smaller;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-menu {
  position: absolute;
  z-index: 10;
  background-color: #fff;
  border: 1px solid #ccc;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.3);
}

.dropdown-item {
  padding: 5px;
  cursor: pointer;
}

.dropdown-item:hover {
  background-color: #f5f5f5;
}

.dropdown-toggle::after {
  display: none;
}

.table-responsive {
  overflow-y: auto;

}

.accordion-body {
  font-size: 13px;
  width: 100%;
  width: -moz-available;
  /* WebKit-based browsers will ignore this. */
  width: -webkit-fill-available;
  /* Mozilla-based browsers will ignore this. */
  width: fill-available;
}

.accordion-buttonPadded {
    padding: 8px !important;
}

.card-subheader {
  font-size: smaller;
  font-style: italic;
  color: red;
}

.resultsCardOverride {
  margin-bottom: 0px !important;
  padding: 0px !important;
  font-weight: bolder !important;
  background-color: rgb(235, 235, 235) !important;

}

.p-3-Override {
  padding: 0px !important;
}

.mb-5-Override {
  padding: 0px !important;
}

.pagination-icons {
  width: 1.5rem;
  height: 1.5rem;
}

.btn.btn-secondary:disabled {
  background-color: #ebebeb;
  color: #464646;
}

.nav-item {
  font-family: 'Open Sans', sans-serif;
}

.nav-item .nav-link {
  display: flex;
  align-items: center;
}

.nav-item .nav-link.active {
  color: #000;
  opacity: 1;
  font-weight: bolder;
}

/* Keep modal above Esri widgets / other UI */
.modal.show {
  z-index: 2000;
}

/* Prevent BS4’s default center animation when .fade sneaks in */
.modal .modal-dialog {
  transform: none !important;
}

/* Make sure content gets clicks even if parent uses pointer-events:none */
.modal .modal-dialog .modal-content {
  pointer-events: auto;
}

.modal-content {
  height: auto;
}

.modal-header {
  background-color: #ebebeb;
  color: #464646;
}

.modal-title {
  margin-left: 10px !important;
  color: #464646;
  max-height: 250px;
  overflow-y: auto;
}

button.close {
  color: #464646;
}

.badge:empty {
  display: inline-block;
}

.custom-esri-legend__service-label {
  flex: 1 100%;
  margin-bottom: 0.5em;
}

.esri-search__submit-button {
  display: none !important;
}

.esri-swipe--horizontal .esri-swipe__container {
  outline: none;
}

.esri-layer-list .esri-widget .esri-widget--panel {
  margin-left: 12px;
}

.esri-layer-list-panel__content--string {
  text-align: justify;
}

.esri-view-width-xsmall .esri-expand--auto .esri-expand__mask--expanded {
  background-color: transparent !important;
}

.esri-legend__layer-table .esri-legend__layer-table--size-ramp {
  visibility: hidden !important;
  height: 0px;
}

.esri-legend__layer-caption {
  visibility: hidden !important;
  height: 0px;
}

div.esri-legend__message:after {
  content: 'No layers are currently visible on the map. Turn on a layer and/or change the zoom to view the legend for scale-dependent layers.';
  margin-left: -70px;
  background-color: #fff;
}

/* for smaller screens */
@media (max-width: 100px) {
  .esri-view-height-xsmall .esri-expand .esri-widget--panel,
  .esri-view-height-xsmall .esri-expand .esri-widget--panel-height-only,
  .esri-view-height-xsmall .esri-ui-corner .esri-component.esri-widget--panel,
  .esri-view-height-xsmall .esri-ui-corner .esri-component.esri-widget--panel-height-only {
    max-height: 240px;
  }

  .esri-view-height-xsmall .esri-ui-corner .esri-component .esri-expand__content {
    box-shadow: none;
  }
}

/* set the z-index of the scale bar negative or else it shows over top of other widgets */
.esri-component .esri-scale-bar .esri-widget .esri-scale-bar__line {
  z-index: -1 !important;
}

.esri-widget--panel {
  padding-left: 10px;
}

.esri-legend__service {
  /* //display: flex; */
  flex-direction: row-reverse;
  /* //float: left; */
  align-items: flex-end;
}

.esri-legend__service>h3 {
  font-weight: normal;
  margin-left: 10px;
  margin-bottom: 0px;
}

span.esri-icon-locate {
  margin-top: 1px;
}

/* fix for esri map expand buttons on phones */
@media (max-width: 1400px) {
  .esri-expand__container.esri-expand__container--expanded {
    position: relative !important;
    width: auto !important;
  }

}

/* //fix for esri map expand buttons on small screen phones */
@media (max-width: 500px) {
  .esri-view-width-xsmall .esri-expand--auto .esri-expand__container--expanded {
    position: relative;
    /* width: 255px !important; */
    /* height: 175px !important; */
  }

  .esri-view-width-xsmall .esri-expand--auto .esri-expand__container--expanded .esri-expand__panel {
    width: unset;
  }

  .react-toast-notifications__container {
    overflow: visible;
  }

  /* //make toast fit small screens */
  .react-toast-notifications__toast {
    width: unset !important;
  }

  .esri-distance-measurement-2d .esri-widget .esri-widget--panel {
    width: min-content;
  }
}

.esri-widget--button.active,
.esri-widget--button.active:hover,
.esri-widget--button.active:focus {
  cursor: default;
  background-color: #999696;
}

.esri-widget--button.active path,
.esri-widget--button.active:hover path,
.esri-widget--button.active:focus path {
  fill: #e4e4e4;
}

/* on mobile, there is an odd shadow showing up on the expand contents, this removes it */
.esri-expand__content {
  box-shadow: none;
}

/* Fix for some calcite styles */
.esri-widget h3 {
  font-size: 1rem;
}

.esri-widget li {
  margin: 0;
}

.esri-elevation-profile {
  display: grid !important;
  width: 100%;
}

.esri-elevation-profile__footer {
  display: inline-flex !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  justify-content: center;
  margin-top: 5px !important;
}

button.esri-elevation-profile-legend__checkbox {
  display: none !important;
}

.esri-elevation-profile-statistics__statistic--hidden {
  display: block;
}

.esri-elevation-profile__prompt-container p {
  display: none;
}

.esri-elevation-profile__prompt-container:after {
  content: 'Select "New Profile" below, then draw a line to generate an elevation profile.';
}

.esri-elevation-profile-statistics {
  /* width: 220px !important; */
  overflow: hidden;
}

button.esri-elevation-profile-settings {
  width: 40px !important;
}

.esri-elevation-profile__actions-container {
  justify-content: unset !important;
}

.esri-elevation-profile__action-button {
  width: unset;
  max-width: max-content;
}

.esri-expand__content .esri-expand__content--expanded {
  overflow: auto !important;
}

.esri-view-height-medium .esri-ui-corner .esri-component .esri-expand__content {
  overflow: auto !important;
}

.esri-view-height-small .esri-ui-corner .esri-component .esri-expand__content {
  overflow: auto !important;
}

.spinnerMarginTop {
  margin-top: 1rem;
  font-size: larger;
  font-weight: bolder;
}

.ParentChildCombo_Form {
  width: 100%;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.pagwisSearchForm_downloadToast {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.searchCustomDiv {
  flex: 1 100%;
  margin-bottom: 10px;
  margin-top: 10px;
  text-align: center;
}

.simTextWidgetH6 {
  margin-left: 15px;
  line-height: 1.6;
}

.centeredSliderLegend {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
}

.radarIntensityImage {
  padding-left: 10px;
  padding-right: 10px;
}

.hidetimeSliderContainer {
  display: none;
}

.showtimeSliderContainer {
  display: block;
}

.searchWidget_td {
  margin-top: 20%;
  text-align: center;
}

.searchWidget_table {
  width: 90%;
  margin-left: 8%;
  margin-top: 2%;
}

.searchWidget_select {
  max-width: 250;
}

.singleTextSearchWidget_div {
  height: 250;
}

.intentToDrill_CardImg {
  width: fit-content;
  align-self: center;
}

.nuclearFacilities_BottomUnset {
  margin-bottom: unset;
}

.nuclearFacilities_pieLabelStyle {
  width: 15%;
}

.nuclearFacilities_div1 {
  text-align: center;
}

.plumeModel_ul {
  font-size: smaller;
}

.plumeModel_InputGroupText {
  width: 30%;
}

.plumeModel_InputGroupButton {
  width: 90%;
}

.plumeModel_div1 {
  text-align: center;
}

.plumeModel_Input {
  width: 25%;
}

.prt_list_ul {
  list-style: none;
  margin-left: -20px;
}

.prt_list_li {
  text-align: initial;
}

.prt_InputGroup {
  display: flex;
  flex-wrap: nowrap;
}

.prt_customFormikFieldAddon {
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: auto;
}

.traceDownstream_list_ul {
  list-style: none;
  margin-left: -20px;
}

.traceDownstream_list_li {
  text-align: initial;
}

.traceDownstream_customConnectingLine {
  width: 77%;
}

.traceDownstream_customNavTabs {
  flex-wrap: unset;
}

.traceDownstream_InputGroup {
  display: flex;
  flex-wrap: nowrap;
}

.traceDownstream_customFormikFieldAddon {
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: auto;
}

.traceDownstream_AlignCenter {
  text-align: center;
}

.orphanedWells_customNavTabs {
  flex-wrap: unset;
}

.orphanedWell_redText {
  color: red !important;
}

.orphanedWell_specialRowHeight {
  max-height: 10px;
}

.orphanedWells_connecting-line {
  height: 2px;
  background: #e0e0e0;
  position: absolute;
  width: 75%;
  margin: 0 auto;
  left: 5px;
  right: 0;
  top: 22px;
  z-index: 1;
}

.orphanedWells_alignLeft {
  text-align: left;
}

.nhd_locatorWizard {
  word-wrap: unset;
}

.card {
  word-wrap: unset;
}

.trackGPS_InlineFlex {
  display: inline-flex;
}

.detailsComponents_Capitalize {
  text-transform: capitalize;
}

.detailsComponents_td1 {
  text-transform: none;
  vertical-align: text-top;
}

.detailsComponents_a {
  text-transform: none;
  cursor: pointer;
  color: #531fff;
}

.displayComponents_yes-class {
  height: 32px;
  width: 32px;
  cursor: pointer;
}

.displayComponents_no-class {
  height: 32px;
  width: 32px;
  cursor: default;
}

.displayComponents_Flex {
  display: flex;
}

.brcChartMainDiv {
  margin-left: 25px;
}

.identifyResults_PagingContainer {
  align-items: center;
}

.identifyResultsCustomCardBody {
  width: 90%;
  padding: 0px;
}

.identifyCardBodyPadding {
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.identifyResultsComponent_div3 {
  padding-left: 5px;
  padding-right: 5px;
  display: flex;
  width: 100%;
  text-align: center;
  color: black;
  /* Changed to black from gray for better visibility */
  align-items: center;
  /* vertically aligns content in the center */
  justify-content: center;
  /* horizontally aligns content in the center */
}

.identifyResultsComponent_button2 {
  border: none;
  outline: none;
  padding: 4px;
  /* background-color: #ebebeb; */
  color: black;
  vertical-align: middle;
}

.identifyResultsComponent_CardButtonHeader {
  /* max-width: 200px; */
  word-wrap: break-word;
  text-align: left;
}

.identifyResultsComponent_PaginationBaseline {
  align-items: center;
}

.identifyResultsComponent_PagingArrowPointingLeft {
  transform: rotate(90deg);
}

.identifyResultsComponent_PagingArrowPointingRight {
  transform: rotate(-90deg);
}

.identifyResultsComponent_DetailsComponent {
  padding: 0px !important;
  width: 100% !important;
}

.tertiaryDetailInfo_div4_pointer {
  cursor: pointer;
}

.pagwisSearch_div1 {
  flex: 1 100%;
}

.pagwisSearch_div2 {
  flex-flow: row-reverse;
}

.pagwisSearch_colorRed {
  color: red;
}

.clearMapTool_div {
  background-color: #fff;
  border-width: 0px;
  height: 32px;
  width: 32px;
  cursor: pointer;
  padding: 5px;
}

.govsec a {
  text-decoration: none;
  color: inherit;
  font-size: small;
}

.govsec a:hover {
  text-decoration: none;
  /* still no underline on hover */
}

@media only screen and (max-width: 767px) {
  .table-responsive {
    overflow-y: auto;
    height: unset;
    height: 200px;
  }
}

.react-date-picker__wrapper {
  border: none !important;
}


@media (max-width: 768px) {
  .react-datepicker-wrapper {
    width: 100%;
  }

  .react-datepicker__input-container {
    width: 100%;
  }
}

#QueryResultsDiv {
  padding-right: 5px;
}

@media (max-width: 1400px) {
  #QueryResultsDiv {
    padding-left: 10px;
  }
}
.tertiaryCardHeader {
  margin-left: 30px;
  text-transform: none;
}

.QuickIdContainer {
  /* display: flex;
  flex-direction: column;
  padding-left: 10px; */
  position: relative;
  /* padding: 20px; */
  /* Adjust as needed */
}

.QuickIdEmpty {
  margin-top: 5px;
  text-align: center;
}

.QuickIdComponent_button {
  height: 30px;
}

.QuickIdComponent_VscGlobe {
  font-size: 16px;
  vertical-align: unset;
}

.quickIdTable {
  font-size: 14px !important;
}

.flexLayout {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  display: inline-block;
  margin-left: -5px;
  margin-right: 5px;
  min-width: -webkit-fill-available;
}

.flexLayoutSpatialSearches {
  display: flex;
  flex-wrap: wrap;
  margin: 10px;
}

#tabContent::-webkit-scrollbar {
  height: 12px;
  width: 12px;
  /* width of the entire scrollbar */
}

#tabContent::-webkit-scrollbar-button:vertical {
  background-color: transparent;
  background-size: 10px 9px;
  background-repeat: no-repeat;
  background-position: center center;
  height: 12px;
  width: 1em;
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAAFiUAABYlAUlSJPAAAACXSURBVDhPnY9BEoAgCEXRTuBRPKF5QoeTuHVXwURjik72NqTA+2aOCxjgveeaUuKqMRTEGEFaxhgIIfB3i71rR+2dPFIXUHqLdkeoAi1x9IpOMEoitF4nmP2v1nsJZulCO/MSzNKFduYRfEkX6tlH8CVdqGdZsJIuyA4LVtIF2dmcc3sphQ+rICLYnPN9XId2LVn+gohwAkeUVKDDXfM/AAAAAElFTkSuQmCC');
}

#tabContent::-webkit-scrollbar-button:end:increment:vertical {
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAAFiUAABYlAUlSJPAAAACTSURBVDhPnZDREQARDETRgUqMTnSiBCUaFd3dZjDu5Ix4PxGymx06hHA559QJpRRlTsUAWmOtra0caE2MsbZyoDU4aK3pQkLTkEFKiRoJTUMGQJJinO0GkhTjbDcAOym+My+DnRTfmZcBWKXg3iaDVQrubTIA3Ka/ZKwBt+kvGWsAxo3Lf7ke6nnCe08150x1Rqkbg2QfKlY89aEAAAAASUVORK5CYII=');
  cursor: pointer;
}

#tabContent::-webkit-scrollbar-button:horizontal {
  background-color: transparent;
  background-size: 10px 9px;
  background-repeat: no-repeat;
  background-position: center center;
  height: 12px;
  width: 1em;
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAAFiUAABYlAUlSJPAAAAB0SURBVDhPrdPbDYAgDIXhlo0YkRGYjHQSRvAWDkZCmrbxe1ETz/+AkY8LOdVaqfdOIkKuQCmF1tdNgd0Q1IA2hG3AMoRPwDOEJxAZQso5h8e3NK5hqbVGzDwe/f45xHE/hT/jyhJSA6CFTAHYhVwBeH9noRPjP3lGfgup0wAAAABJRU5ErkJggg==');
}

#tabContent::-webkit-scrollbar-button:end:increment:horizontal {
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAAFiUAABYlAUlSJPAAAAB2SURBVDhPvdPbCcAgDIXhk27gJOImbuIIjuhI6QXPSyVELfR/agr5oEol56wxRoQQUErBalJr1f78JCK43vXJbwDYLGQCzINcgFnQNMDe0DLACB19Xk5VkVLaB9g2cH9Ca+3HQ9y+RmuRmYC3yAZgdpF9/J2BE3VdOeDQe3TsAAAAAElFTkSuQmCC');
  cursor: pointer;
}

#tabContent::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #f5f5f5;
  border-radius: 10px;
}

#tabContent::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-image: -webkit-gradient(linear,
      left bottom,
      left top,
      color-stop(0.44, rgba(0, 0, 0, 0.4)),
      color-stop(0.72, grey),
      color-stop(0.86, rgba(0, 0, 0, 0.3)));
}

.show {
  display: flex;
}

.LODWidget {
  padding: 5px;
  font-weight: 700;
  background-color: white;
  opacity: .75;
}

.splitterSidebar_ArrowClassRotate0 {
  transform: rotate(0deg);
}

.splitterSidebar_ArrowClassRotate90 {
  transform: rotate(-90deg);
}

.authenticationApp_div1 {
  background-color: #f8d7da;
  border: 1px solid #d6d6d6;
  border-radius: 5px;
  padding: 10px;
}

.authenticationApp_p {
  font-weight: bold;
  color: #721c24;
  margin-bottom: 10px;
}

.authenticationApp_div2 {
  font-size: 24px;
  color: #1e90ff;
  text-align: center;
}

.formikSignin_container {
  height: 100vh;
}



.createLayerList_PennEviroScreen_a {
  color: slateblue;
  text-decoration: underline;
}

div.BrcchartWin {
  padding-right: 0 !important;
  padding-left: 0 !important;
}

/* Wizard Style ------------------------------------------------------------------------------*/

.d-flex {
  display: flex;
}

.justify-content-center {
  justify-content: center;
}

.align-items-center {
  align-items: center;
}

.wizard .nav-tabs {
  position: relative;
  margin-bottom: 0;
  border-bottom-color: transparent;
}

.wizard>div.wizard-inner {
  position: relative;
  margin-bottom: 50px;
  text-align: center;
  padding: 8px;
}

.connecting-line {
  height: 2px;
  background: #e0e0e0;
  position: absolute;
  width: 78%;
  margin: 0 auto;
  left: 5px;
  right: 0;
  top: 22px;
  z-index: 1;
}

.wizard .nav-tabs>li.active>a,
.wizard .nav-tabs>li.active>a:hover,
.wizard .nav-tabs>li.active>a:focus {
  color: #555555;
  cursor: default;
  border: 0;
  border-bottom-color: transparent;
}

.wizard .nav-tabs>li a i {
  display: none;
}

span.round-tab {
  width: 30px;
  height: 30px;
  line-height: 30px;
  display: inline-block;
  border-radius: 50%;
  background: #fff;
  z-index: 2;
  position: absolute;
  left: 0;
  text-align: center;
  font-size: 16px;
  color: #0e214b;
  font-weight: 500;
  border: 1px solid #ddd;
}

span.round-tab i {
  color: #555555;
}

.wizard li.active span.round-tab {
  background: #0db02b;
  color: #fff;
  border-color: #0db02b;
}

.wizard li.active span.round-tab i {
  color: #5bc0de;
}

.wizard .nav-tabs>li.active>a i {
  color: #0db02b;
}

.wizard .nav-tabs>li {
  width: 25%;
}

.nuclearWizard {
  width: 20% !important;
}

.wizard li:after {
  content: ' ';
  position: absolute;
  left: 46%;
  opacity: 0;
  margin: 0 auto;
  bottom: 0px;
  border: 5px solid transparent;
  border-bottom-color: red;
  transition: 0.1s ease-in-out;
}

.wizard .nav-tabs>li a {
  width: 30px;
  height: 30px;
  margin: 20px auto;
  border-radius: 100%;
  padding: 0;
  background-color: transparent;
  position: relative;
  top: 0;
}

.wizard .nav-tabs>li a i {
  position: absolute;
  top: -15px;
  font-style: normal;
  font-weight: 400;
  white-space: nowrap;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 12px;
  font-weight: 700;
  color: #000;
}

.wizard .nav-tabs>li a:hover {
  background: transparent;
}

.wizard .tab-pane {
  position: relative;
  /* padding-top: 20px; */
}

.wizard h3 {
  margin-top: 0;
}

.form-control[disabled],
.form-control[readonly] {
  background-color: #fdfdfd;
}

.huntingHoursWidget_Hyperlink {
  color: #0056b3;
}

.SeasonBagLimits_filterCheckbox {
  padding-left: 25px;
}

.TrackGPS_latitudeSection {
  display: inline-flex;
  margin-top: 5px;
}

.TrackGPS_SampleCSVLink {
  color: #531fff;
  text-decoration: underline;
}

.TrackGPS_csvUploader {
  align-items: center;
  border: 2px dashed #ccc;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  padding: 20px;
  border-color: #686868;
}

.TrackGPS_csvUploader_file {
  background: linear-gradient(to bottom, #eee, #ddd);
  border-radius: 20px;
  display: flex;
  height: 120px;
  width: 120px;
  position: relative;
  z-index: 10;
  flex-direction: column;
  justify-content: center;
}

.TrackGPS_csvUploader_info {
  align-items: center;
  display: flex;
  flex-direction: column;
  padding-left: 10px;
  padding-right: 10px;
}

.TrackGPS_csvUploader_size {
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 3px;
  margin-bottom: 0.5em;
  justify-content: center;
  display: flex;
}

.TrackGPS_csvUploader_name {
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 3px;
  margin-bottom: 0.5em;
  font-size: 12px;
}

.TrackGPS_csvUploader_progressBar {
  position: absolute;
  bottom: 14px;
  width: 100%;
  padding-left: 10px;
  padding-right: 10px;
}

.TrackGPS_csvUploader_remove {
  height: 23px;
  position: absolute;
  right: 6px;
  top: 6px;
  width: 23px;
}

.AntlerRestriction_btnDiv {
  text-align: center;
}

/* Make the dialog nearly full width on desktop */
.authDocsModal.modal-dialog {
  max-width: 95vw;
  width: 95vw;
}

/* Optional: tighten content padding a bit */
.authDocsModalContent .modal-body {
  padding: 0.75rem 1rem;
}

/* Table tweaks so everything fits without horizontal panning */
.authDocsTableWrap {
  width: 100%;
}

.authDocsTable th,
.authDocsTable td {
  white-space: nowrap;
  /* keep dates on one line */
  padding: .4rem .5rem;
  /* compact cells to fit more columns */
  vertical-align: middle;
}

.authDocsTable thead th {
  position: sticky;
  top: 0;
  /* header sticks if body scrolls vertically */
  background: #fff;
  z-index: 1;
}