/*
-------------------------------------------------------------------------------
--- 01 TYPOGRAPHY SYSTEM
-------------------------------------------------------------------------------

  - Font sizes (px)
  10 / 12 / 14 / 16 / 18 / 20 / 24 / 30 / 36 / 44 / 52 / 62 / 74 / 86 / 98

  - Font weights
  Default: 400
  Bold: 700

  - Line heights
  Default: 1

  - Letter spacing

-------------------------------------------------------------------------------
--- 02 COLORS
-------------------------------------------------------------------------------

  - Primary:
   #004985  hsl(207, 100%, 26%);

  - Secondary:
   #672146  hsl(328, 51%, 27%);

  - Background:
   #fff

  - Tints:
  #f2f8fd   hsl(207, 73%, 97%);
  #d3e7f8   hsl(207, 73%, 90%);
  #005aa3   hsl(207, 73%, 32%);

  - Shades: 

  - Text:
  #444
  #333

  - Accents:
  Border- #ddd


  - Greys

-------------------------------------------------------------------------------
--- 05 SHADOWS
-------------------------------------------------------------------------------

  GroupBox:
  box-shadow: 0 .6rem 1.6rem #00498544;

-------------------------------------------------------------------------------
--- 06 BORDER-RADIUS
-------------------------------------------------------------------------------

  Layout Header: 
  border-bottom: .1rem solid #ddd;

  Layout Footer:
  border-top: .1rem solid #ddd;

  Layout Header Link:
  border-bottom: 0.3rem solid #004985;
  border-radius: 0.2rem;

  Button:
  border-radius: .4rem;

-------------------------------------------------------------------------------
--- 07 WHITESPACE
-------------------------------------------------------------------------------
  - Spacing system (px)
  2 / 4 / 8 / 12 / 16 / 24 / 32 / 48 / 64 / 80 / 96 / 128
*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  /* default browser size of 16px means 1rem = 16px */
  /* scale this down so that 1 rem = 10px; 10px/16px = 62.5%*/
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-weight: 400;
  line-height: 1;
  color: #333;
}

/* Main Site Layout */

.layout-container {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 5.6rem 1fr 4.8rem;
  height: 100vh;
  position: relative;
}

.layout-header-freeze-container {
  height: 5.4rem;
  width: 100%;
  grid-column: 1 / -1;
  grid-row: 1;
}

.layout-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0 2rem;
  border-bottom: 0.1rem solid #ddd;
  position: fixed;
  top: 0;
  height: 5.4rem;
  /*overflow: hidden;*/
  width: 100%;
  z-index: 999;
  background-color: #fff;
}

.header-logo {
  font-size: 2.4rem;
  letter-spacing: -0.2px;
  margin-right: 2rem;
  text-decoration: none;
}

.header-logo-link {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
}

.header-logo-img {
  height: 3.6rem;
  margin-right: 2.2rem;
}

.header-logo-text {
  color: #333;
  min-width: 18rem;
}

.menu-link {
  font-size: 1.8rem;
  text-decoration: none;
}

.nav-menu-link {
  font-size: 1.8rem;
  text-decoration: none;
  display: flex;
  align-content: flex-end;
  gap: 0.2rem;
  padding: 0.3rem 0rem;
  margin-top:0.5rem;
}

.menu-list {
  list-style: none;
}

.header-menu {
  flex: 1 0 auto;
}

  .header-menu .menu-list {
    display: flex;
    gap: 1.6rem;
  }

.menu-item{
  position: relative;
  display: inline-block;
}

.menu-carrot{
  font-size: 1.0rem;
  align-self: flex-end;
}

.sub-menu-list {
  display: none;
  width: max-content;
  position: absolute;
  top: 3.25rem;
  background-color: #fff;
  box-shadow: 0 .6rem 1.6rem #00498544;
  padding: 1rem 1.5rem;
  border-radius: 1rem;
  overflow: hidden;
  z-index: 1;
}

.sub-menu-link {
  font-size: 1.6rem;
  text-decoration: none;
  padding: 0.2rem;
  margin: 0.15rem;
  /*width setting is necessary for proper underline. browser says it doesnt have an effect but it does.*/
  width: max-content;
}

.sub-menu-indent-1{
  margin-left: 2.15rem;
}

.menu-item:hover .sub-menu-list {
  display: flex;
  flex-direction: column;
}

.header-login .menu-list {
  display: flex;
  justify-content: right;
  align-items: center;
  gap: 1rem;
}

.header-menu .menu-link:link,
.header-menu .menu-link:visited,
.header-login .menu-link:link,
.header-login .menu-link:visited {
    color: #333;
    border-bottom: 0.3rem solid #fff;
    border-radius: 0.2rem;
}

.header-menu .menu-link:hover,
.header-menu .menu-link:active,
.header-login .menu-link:hover,
.header-login .menu-link:active {
    color: #004985;
    border-bottom: 0.3rem solid #004985;
}

.header-menu .nav-menu-link:link,
.header-menu .nav-menu-link:visited,
.header-login .nav-menu-link:link,
.header-login .nav-menu-link:visited {
    color: #333;
    border-bottom: 0.3rem solid #fff;
    border-radius: 0.2rem;
}

.header-menu .nav-menu-link:hover,
.header-menu .nav-menu-link:active,
.header-login .nav-menu-link:hover,
.header-login .nav-menu-link:active {
    color: #004985;
    border-bottom: 0.3rem solid #004985;
}

.header-menu .sub-menu-link:link,
.header-menu .sub-menu-link:visited,
.header-login .sub-menu-link:link,
.header-login .sub-menu-link:visited {
    color: #333;
    border-bottom: 0.2rem solid #fff;
    border-radius: 0.2rem;
}

.header-menu .sub-menu-link:hover,
.header-menu .sub-menu-link:active,
.header-login .sub-menu-link:hover,
.header-login .sub-menu-link:active {
    color: #004985;
    border-bottom: 0.25rem solid #004985;
}

.notification-bell-container{
  display: flex;
  flex-direction: row;
}

.notification-bell-icon {
  width: 3.2rem;
  margin-right: 0.5rem;
  align-self:center;
  cursor: pointer;
}

.notification-bell-notification-count{
  background-color: #ff0000;
  color: #ffffff;
  cursor: pointer;
  font-size: 1.4rem;
  position: relative;
  left: 1.5rem;
  height: 1.7rem;
  border-radius: 1rem;
  padding: 0.15rem 0.35rem;
}

.notification-bell-notification-count.hidden {
  display: none;
}

.notification-menu-container {
  position: fixed;
  background-color: #fff;
  width: 57.6rem;
  right: 0rem;
  top: 5.4rem;
  z-index: 998;
  box-shadow: 0 0.6rem 1.6rem #00498544;
  border-top: 0.1rem solid #ddd;
  max-height: 81rem;
}

  .notification-menu-container.hidden {
    display: none;
  }

.layout-content {
  grid-column: 1 / -1;
  grid-row: 2;
  background-color: #f2f8fd;
}

.layout-footer {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  grid-column: 1 / -1;
  grid-row: 3;
  border-top: 0.1rem solid #ddd;
}

/* Mobile Header */

.mobile-header-menu {
  display: none;
}

.menu-img {
  width: 3.3rem;
  cursor: pointer;
}

.mobile-back-arrow-img {
  width: 3rem;
  cursor: pointer;
}

.mobile-menu-list-freeze-container {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1000;
}

.mobile-menu-list-container {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: #fff;
  transform: translateX(0%);
  transition: all 0.25s ease-out;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.mobile-menu-list-header {
  display: flex;
  align-items: center;
  padding: 1.2rem 1.6rem;
  gap: 1rem;
  height: 6rem;
  border-bottom: 0.1rem solid #ddd;
}

.mobile-menu-list-header-title h1 {
  font-size: 2.4rem;
  font-weight: 400;
}

.mobile-menu-list-container .menu-list {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  padding: 1.2rem 1.6rem;
}

.mobile-menu-list-container .menu-link:link,
.mobile-menu-list-container .menu-link:visited {
  color: #333;
  border-bottom: 0.3rem solid #fff;
  border-radius: 0.2rem;
}

.mobile-menu-list-container .menu-link:hover,
.mobile-menu-list-container .menu-link:active {
  color: #004985;
  border-bottom: 0.3rem solid #004985;
}

/* User Profile */
.user-profile {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #672146;
  color: #fff;
  width: 3.2rem;
  height: 3.2rem;
  font-size: 1.55rem;
  border-radius: 5rem;
  cursor: pointer;
  user-select: none;
}

.header-login {
  position: relative;
}

.user-profile-menu {
  position: fixed;
  background-color: #fff;
  width: 26rem;
  height: 100%;
  top: 5.4rem;
  right: 0rem;
  border-left: 0.1rem solid #ddd;
  z-index: 999;
  display: flex;
  flex-direction: column;
  transform: translateX(0%);
  transition: all 0.25s ease-out;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

  .user-profile-menu.show {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
  }

.mobile-user-profile-menu {
  position: fixed;
  background-color: #fff;
  width: 100%;
  height: 100%;
  top: 0rem;
  right: 0rem;
  z-index: 999;
  display: flex;
  flex-direction: column;
  transform: translateX(0%);
  transition: all 0.25s ease-out;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.user-profile-content {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  padding: 1.2rem 1.6rem;
}

.user-profile-header {
  display: flex;
  align-items: center;
  padding: 1.2rem 1.6rem;
  gap: 1rem;
  height: 6rem;
  border-bottom: 0.1rem solid #ddd;
}

.user-profile-header-title h1 {
  font-size: 2.4rem;
  font-weight: 400;
}

.back-arrow-img {
  width: 3rem;
  cursor: pointer;
}

/* Page Layout */

.page-container {
  max-width: 140rem;
  height: 100%;
  margin: 0 auto;
  background-color: #fff;
  display: flex;
  flex-direction: column;
}

.page-header-freeze-container {
  height: 6rem;
  width: 100%;
}

.page-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 1.2rem 1.6rem;
  height: 6rem;
  border-bottom: 0.1rem solid #ddd;
  z-index: 998;
}

.page-header-freeze-container .page-header {
  position: fixed;
  top: 5.4rem;
  width: 140rem;
  background-color: #fff;
}

.page-header-title {
  justify-self: flex-start;
}

  .page-header-title h1 {
    font-weight: 400;
  }

.page-title {
  font-size: 3rem;
  font-weight: 400;
  color: #444;
}

.page-header-search-box {
  justify-self: center;
  flex: 1 1 auto;
}

.page-header-button-bar {
  justify-self: flex-end;
}

.page-content {
  padding: 1.6rem 3.2rem;
}

.page-footer {
  /*background-color: #eee;*/
}

/* Group Box Component */

.group-box-container {
  box-shadow: 0 .6rem 1.6rem #00498544;
}

.group-box-header {
  padding: .8rem;
  text-align: center;
  margin-bottom: 1.6rem;
  color: #fff;
  background-color: #004985;
}

.group-box-content {
  padding: 0 3.2rem 1.6rem 3.2rem;
}

  .group-box-content .indent {
    margin-left: 2.2rem;
  }


.input-container {
  margin-bottom: 0.8rem;
}

.checkbox {
  /*placeholder*/
}

  .input-container.checkbox + .checkbox {
    margin-top: 1.2rem;
  }

  .input-container.checkbox .input-label {
    display: inline-block;
    margin-bottom: 0;
  }

  .input-container.checkbox .input-control {
    display: inline-block;
    margin-right: .4rem;
  }

.combobox {
  /*placeholder*/
}

  .input-container.combobox .input-label {
    display: inline-block;
    margin-bottom: 0;
  }

  .input-container.combobox .input-control {
    display: inline-block;
    margin-right: .4rem;
  }

.input-label {
  display: block;
  margin-bottom: 0.4rem;
}

.input-control {
  display: block;
  padding: .2rem;
  font-family: inherit;
  font-size: inherit;
}

/* Button Bar Component */

.button-bar-container {
  display: flex;
  flex-direction: row;
  gap: 0.8rem;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  font-family: inherit;
  font-size: 1.6rem;
  text-align: center;
  color: #fff;
  background-color: #004985;
  padding: 0.8rem 1.6rem;
  border: none;
  border-radius: 0.4rem;
  text-decoration: none;
  cursor: pointer;
}

  .btn:link,
  .btn:visited {
    /*placeholder*/
  }

  .btn:hover,
  .btn:active {
    background-color: #005aa3;
  }

.btn-back {
  /*placeholder*/
}

button.button-bar-btn {
  padding-top: .5rem;
  padding-bottom: .6rem;
}

.button-bar-btn {
  /*placeholder*/
}

.button-bar-link {
  /*placeholder*/
}

.button-bar-divider{
  width: 3.2rem;
}

/* Button hollow*/
.btn-hollow {
    display: inline-block;
    font-family: inherit;
    font-size: 1.6rem;
    text-align: center;
    color: #004985;
    background-color: #fff;
    padding: 0.35rem 1.6rem 0.55rem 1.6rem;
    border: 1px solid #004985; 
    border-radius: 0.4rem;
    text-decoration: none;
    cursor: pointer;
}

    .btn-hollow:hover,
    .btn-hollow:active {
        color: #fff;
        background-color: #004985;
    }

/* Button Disabled */

.btn.btn-disabled,
.btn-hollow.btn-disabled {
    color: #fff;
    background-color: #444;
}

/* Search Box Component */

.search-box-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: .8rem;
}

.search-box-search-by {
  font-size: 1.6rem;
  font-weight: 400;
  color: #444;
}

.search-box-search-string {
  font-size: 1.6rem;
  font-weight: 400;
  color: #444;
}

.search-box-search-btn {
  padding: .3rem 1.2rem .5rem 1.2rem;
}

/* Spreadsheet Component */

.spreadsheet-container {
  display: grid;
  justify-content: center;
  align-content: start;
  column-gap: 2.4rem;
  row-gap: 1rem;
}

/*
.spreadsheet-header {
  grid-column: 1 / -1;
  grid-row: 1;
}
*/

.spreadsheet-header-col {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-weight: 700;
  border-bottom: .1rem solid #ddd;
}

.spreadsheet-header-col-link {
  text-decoration: none;
  padding-bottom: .2rem;
  margin-bottom: .2rem;
  border-bottom: .2rem solid #fff;
}

  .spreadsheet-header-col-link:link,
  .spreadsheet-header-col-link:visited {
    color: #004985;
  }

  .spreadsheet-header-col-link:hover,
  .spreadsheet-header-col-link:active {
    border-bottom: .2rem solid #004985;
  }

/*
.spreadsheet-content {
  grid-column: 1 span 1;
  grid-row: 2 / -2;
}
*/

.spreadsheet-content-link {
  text-decoration: none;
  font-weight: 700;
  border-bottom: .2rem solid #fff;
}

  .spreadsheet-content-link:link,
  .spreadsheet-content-link:visited {
    color: #004985;
  }

  .spreadsheet-content-link:hover,
  .spreadsheet-content-link:active {
    border-bottom: .2rem solid #004985;
  }

/*
.spreadsheet-footer {
  grid-column: 1 / -1;
  grid-row: -1;
}
*/

/* Accordion Component */
.accordion-container{
    /*placeholder*/
}

.accordion-header {
    /*placeholder*/
}

.accordion-content {
    display: none;
}

.accordion-footer{
    /*placeholder*/
}


/* Notes Component */

.notes-container {
  /*placeholder*/
}

.notes-summary {
  /*placeholder*/
}

.notes-item-detail {
  /*placeholder*/
}

/* Card Component */

.card-container {
    display: flex;
    flex-direction: column;
    min-width: 50%;
}

.card-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  margin-right: 2.5rem;
}

.card-title {
  /*placeholder*/
}

.card-content {
    display: grid;
    grid-template-columns: max-content auto;
    align-items: center;
    column-gap: 1.2rem;
    row-gap: 0.5rem;
    margin-left: 5rem;
    margin-bottom: 0.5rem;
}

/* Tooltip Component */
/* -Modify left attribute for desired tooltip positioning*/
.tooltip-text {
    visibility: hidden;
    position: absolute;
    width: auto;
    font-size: 1.4rem;
    /*color: #fff;
    background-color: #000;*/
    color: #004985;
    background-color: #fff;
    border-radius: 0.4rem;
    border: 1px solid #004985;
    padding: 0.2rem 0.8rem;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.2s;
    top: -23px;
    left: -50%;
    white-space: nowrap;
}

.tooltip-trigger:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
    transition-delay: 0.5s;
}

.tooltip-trigger {
    position: relative;
    display: inline-block;
}

.no-overflow {
  line-height: 1.5;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Password tooltip */
.password-tooltip-text {
  visibility: hidden;
  position: absolute;
  width: auto;
  font-size: 1.4rem;
  /*color: #fff;
  background-color: #000;*/
  color: #004985;
  background-color: #fff;
  border-radius: 0.4rem;
  border: 1px solid #004985;
  padding: 0.75rem;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.2s;
  top: -100px;
  left: 7px;
  white-space: nowrap;
}

.password-tooltip-trigger:hover .password-tooltip-text {
  visibility: visible;
  opacity: 1;
  transition-delay: 0.5s;
}

.password-tooltip-trigger {
  position: relative;
  display: inline-block;
}

.password-label-row {
  display: flex;
  flex-direction: row;
  gap: 0.65rem;
}

.password-input-label{
  margin: 0.05rem 0 0.35rem 0;
}

.password-requirement-list {
  margin-left: 1.85rem;
}

/* Confirmation Page */

.confirmation-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 15rem;
}

.message {
  /*placeholder*/
}

.confirmation-page .message {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 3.2rem;
  margin-bottom: 4.8rem;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

  .confirmation-page .message .line-question {
    margin-bottom: .8rem;
  }

  .confirmation-page .message .line-details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .confirmation-page .message .line-detail {
    /*placeholder*/
  }

  .confirmation-page .button-bar-container {
    justify-content: center;
    gap: 2.4rem;
  }


/* Flexbox/Grid */

.flex-1 {
  flex: 1;
}

.flex-row {
  display: flex;
  flex-direction: row;
}

.flex-col {
  display: flex;
  flex-direction: column;
}

/* Branded simple elements */

.branded-link {
  text-decoration: none;
  font-weight: 700;
  border-bottom: .2rem solid #fff;
}

  .branded-link:link,
  .branded-link:visited {
    color: #004985;
  }

  .branded-link:hover,
  .branded-link:active {
    border-bottom: .2rem solid #004985;
  }

/* Required */
.required::after {
  position: relative;
  top: 0.3rem;
  margin-left: 0.2rem;
  content: "*";
}

/* Dialog */
dialog {
  border: none;
  border-radius: 0.8rem;
  margin: 10rem auto auto auto;
  padding: 1.5rem;
  min-width: 40rem;
}

dialog::backdrop {
  opacity: 0.5;
  background-color: black;
}

  dialog p {
    margin-bottom: 4rem;
  }

  dialog .btn-padding{
    padding: 0.3rem 1.2rem 0.5rem 1.2rem;
  }

.dialog-button {
  width: 6rem;
}

.dialog-text-button {
  width: auto;
}

.dialog-button-container {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.dialog-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

  .dialog-header h1 {
    display: flex;
    align-items: center;
    font-size: 2.4rem;
    font-weight: 400;
  }

.dialog-close-button {
  background-color: #004985;
  display: inline-block;
  text-align: center;
  padding: 0.45rem 1.35rem;
  border: none;
  border-radius: 0.4rem;
  text-decoration: none;
  cursor: pointer;
}

  .dialog-close-button:hover {
    background-color: #005aa3;
  }

  .dialog-close-button .close-img{
    width: 2.1rem;
    cursor: pointer;
    filter: invert(100%) sepia(9%) saturate(7430%) hue-rotate(239deg)
    brightness(123%) contrast(92%);
  }

/* Misc */
.bold {
  font-weight: bold;
}

.information-img {
  width: 2rem;
  cursor: pointer;
  filter: invert(13%) sepia(85%) saturate(4331%) hue-rotate(194deg) brightness(86%) contrast(104%);
}

/* WhiteSpace */



/*****************************************************************************/
/* old css - need to clear this out */
/*****************************************************************************/

/* group container */
.groupbox-container {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.row-container .group-container {
  width: 100%;
}

.group-title {
  text-align: left;
  padding: 0.5rem;
  color: white;
  border-radius: 10px 10px 0px 0px;
  background-color: #004985;
}

.group-content-container {
  display: flex;
  flex-direction: column;
  padding: 0.7rem;
  border-radius: 0px 0px 10px 10px;
  background-color: hsl(207, 80%, 15%, 5%);
  flex: 1 0 50%;
  align-items: center;
}

.flex-group-content {
  display: flex;
  flex-direction: column;
}

/* Widths */
/* Percent */
.w-100 {
  width: 100%;
}

.w-50 {
  width: 50%;
}

/* Rem */
.w-xs {
  width: 2.5rem;
}

.w-s {
  width: 5.5rem;
}

.w-m {
  width: 10rem;
}

.w-l {
  width: 15rem;
}

.w-xl {
  width: 20rem;
}

/* Min-Width */
.w-min-xs {
}

.w-min-s {
}

.w-min-m {
}

.w-min-l {
}

.w-min-xl {
}

/* Margins */
.mar-t-m {
  margin-top: 1rem;
}

.mar-r-s {
}

.mar-r-m {
  margin-right: 1rem;
}

.mar-r-l {
  margin-right: 2.5rem;
}

.mar-b-s {
  margin-bottom: 0.25rem;
}

.mar-b-m {
  margin-bottom: 0.5rem;
}

.mar-b-l {
  margin-bottom: 1rem;
}

.mar-l-s {
}

.mar-l-m {
}

.mar-l-l {
  margin-left: 2.5rem;
}

/* Padding */
.pad-r-s {
}

.pad-r-m {
}

.pad-r-l {
}

.pad-b-s {
}

.pad-b-m {
}

.pad-b-l {
}

.pad-l-s {
}

.pad-l-m {
}

.pad-l-l {
}

/* Gap */
.gap-s {
  gap: 0.5rem;
}

.gap-m {
  gap: 0.7rem;
}

.gap-l {
}

/* Justification */
.flex-j-l {
  display: flex;
  justify-content: flex-start;
}

.flex-j-c {
  display: flex;
  justify-content: center;
}

.flex-j-r {
  display: flex;
  justify-content: flex-end;
}

.flex-j-sb {
  display: flex;
  justify-content: space-between;
}

/* Alignment */
.flex-a-t {
}

.flex-a-c {
  display: flex;
  align-items: center;
}

.flex-a-b {
  display: flex;
  align-items: flex-end;
}

/* Controls */
.search-button {
  background-color: white;
  width: 2rem;
  border-width: 1px;
  cursor: pointer;
  border-left: 0px;
}

.search-icon {
  width: 14px;
}

.anchor-button {
  text-decoration: none;
  background-color: #004985;
  color: #fff;
  padding: 3px 6px;
  border: 0px;
  border-radius: 5px;
  cursor: pointer;
}

.form-button {
  background-color: #004985;
  color: #fff;
  padding: 3px 6px;
  border: 0px;
  border-radius: 5px;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  cursor: pointer;
}

.a-no-ul {
  text-decoration: none;
}

.bg-red {
  background-color: #d40d0d;
}

.text-danger {
  color: red;
}

.validation-error{
  display: flex;
  color: red;
}

/* Media Queries */

/* 280px / 16px = 17.5 */
@media(max-width: 22.5rem) {
  .header-logo-text {
    font-size: 1.6rem !important;
  }
}

/* 360px / 16px = 22.5 */
@media(max-width: 22.5rem) {
  .header-logo-img {
    width: 3rem;
    height: 3rem;
  }

  .header-logo-text {
    min-width: auto !important;
    font-size: 2.1rem;
  }
}

/* 1200px / 16px = 75 */
@media(max-width: 75rem) {
  .header-menu {
    display: none;
  }

  .mobile-header-menu {
    display: flex;
    margin-right: 1rem;
    justify-content: flex-end;
    flex: 1 0 auto;
  }

  .mobile-menu-list-container.show {
    display: flex;
    flex-direction: column;
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
  }

  .user-profile-menu.show {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
  }

  .mobile-user-profile-menu.show {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
  }
}