html {
  font-size: 62.5%;
}

.truncate {
  width: 90%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

h2.main_title {
  font-size: 1.67rem;
  color: #8e330f;
  font-family: "Lucida Sans", Arial, sans-serif;
  font-weight: bold;
  margin-top: 0px;
  margin-bottom: 15px;
}
h2.main_title img {
  display: inline;
}
h2.main_title label {
  display: inline;
  font-weight: 600 !important;
}

.design-section {
  display: block;
}

h3.design-title {
  display: block;
  padding-top: 10px;
  padding-bottom: 10px;
  font-weight: 600;
  font-size: 1.33rem;
}

h4 {
  margin: 0.5rem 0 0 0;
  color: #0d3d5a;
  text-align: left;
  font-weight: 600;
  display: inline-block;
  padding: 5px;
  line-height: 1.7;
  vertical-align: middle;
  border: 1px solid transparent;
  background: #d8dde6;
  font-size: 1.33rem;
}

h5 {
  display: block;
  margin: 1em 0 0.5em 0;
  font-weight: 600;
  line-height: 20px;
  color: #788699;
  font-size: 1.25rem;
}

.inputSmall {
  width: 20% !important;
  min-width: 50px;
  max-width: 150px;
}

.inputMedium {
  width: 50% !important;
  min-width: 175px;
  max-width: 350px;
}

.inputLarge {
  width: 100% !important;
  max-width: 500px;
}

select.form-control:not([size]):not([multiple]) {
  height: calc(2.95rem + 2px);
  padding: 0px;
}

/*** Fixes overlays not showing correct when loading internal users due to layout css ***/
.cdk-overlay-container {
  position: fixed;
  z-index: 102000 !important;
}

/********* Font Awesome Updates ***********/
.fa-increaseIcon {
  font-size: 1.8rem;
}

.fa-green {
  color: green;
}

.fa-red {
  color: #8B1A1A;
}

.fa-blue {
  color: #0D4F8B;
}

.radio, .checkbox {
  position: relative;
  display: block;
  margin-top: 5px;
  margin-bottom: 5px;
  margin-left: 20px;
}
.radio input[type=checkbox], .checkbox input[type=checkbox] {
  position: absolute !important;
  margin-left: -20px;
}

.input-group {
  padding: 10px;
  margin-left: auto;
  margin-right: auto;
}

/* Show the snackbar when clicking on a button (class added with JavaScript) */
/* Delay must match durationMs in ClientUtilities.showToast() (common.util.ts); forwards keeps
   it hidden after fade-out instead of flashing visible again if the two ever drift. */
#snackbar.show {
  visibility: visible !important; /* Show the snackbar */
  -webkit-animation: fadein 0.5s, fadeout 0.5s 7.5s forwards !important;
  animation: fadein 0.5s, fadeout 0.5s 7.5s forwards !important;
}

/* Animations to fade the snackbar in and out */
@-webkit-keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }
  to {
    bottom: 15%;
    opacity: 1;
  }
}
@keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }
  to {
    bottom: 15%;
    opacity: 1;
  }
}
@-webkit-keyframes fadeout {
  from {
    bottom: 15%;
    opacity: 1;
  }
  to {
    bottom: 0;
    opacity: 0;
  }
}
@keyframes fadeout {
  from {
    bottom: 15%;
    opacity: 1;
  }
  to {
    bottom: 0;
    opacity: 0;
  }
}
.alert-success {
  width: 550px;
  margin-left: auto;
  margin-top: 10px;
  height: 50px;
  padding-top: 15px;
  border-left: 4px solid #3c763d;
  border-top: 1px solid #3c763d;
  border-right: 1px solid #3c763d;
  border-bottom: 1px solid #3c763d;
  font-size: 1.3rem;
}

/* fix for pfm resource links showing white background instead of color of parent container */
.outer-container {
  background-image: url(../images/title-ribbon.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  min-height: 100vh;
  background-color: #193d58;
}

.panel-state {
  height: 30px;
  width: 100%;
  background-color: rgb(39, 39, 39);
  display: flex;
  justify-content: center;
}

.inner-panel-state {
  display: flex;
  align-self: center;
  width: 70%;
}

.main-container {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 70%;
  margin: auto;
}

.inner-main-container {
  display: flex;
  flex-wrap: wrap;
}

.inner-main-2 {
  display: flex;
  gap: 20px;
  flex-wrap: nowrap;
  margin-top: 33px;
  justify-content: flex-end;
}

.top-box {
  border-width: 0px;
  display: flex;
}

.ax_default {
  font-family: "Arial", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 13px;
  letter-spacing: normal;
  color: #333333;
  vertical-align: none;
  text-align: center;
  line-height: normal;
  text-transform: none;
}

.logo-section {
  display: flex;
  align-items: center;
}

.logo-box {
  border-width: 0px;
  width: 22px;
  height: 22px;
  display: flex;
}

.logo-img {
  padding-top: 2px;
}

.logo-title {
  padding-top: 5px;
  margin-left: 5px;
  font-family: "Arial", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 12px;
  color: #fffefe;
  display: flex;
}

.alert-menu {
  display: flex;
  gap: 18px;
}

.nav-item.active a div i {
  color: darkgoldenrod;
}

.nav-item.active a div span {
  color: darkgoldenrod;
}

/*Media Queries*/
@media (min-width: 800px) and (max-width: 1280px) {
  .inner-main-2 {
    margin-top: 40px;
  }
}
@media screen and (max-width: 799px) {
  .inner-main-2 {
    align-items: center;
    margin-top: 0px;
  }
}
@media screen and (max-width: 799px) {
  .alert-menu,
  .search-menu {
    margin-top: 40px;
  }
}
@media (max-width: 991px) {
  .container {
    width: 100% !important;
    max-width: 100%;
  }
}
@media (max-width: 576px) {
  .container {
    width: 100% !important;
    max-width: 100%;
  }
}
.message-body-html table {
  border: 1px double #b3b3b3;
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  margin: 0.9em 0;
}
.message-body-html td,
.message-body-html th {
  border: 1px solid #bfbfbf;
  min-width: 2em;
  padding: 0.4em;
}
.message-body-html th {
  background: rgba(0, 0, 0, 0.05);
  font-weight: 700;
}