/* Contains all custom made CSS classes, which are not part of webflow */
body {
    font-family: 'Montserrat', sans-serif;
    color: black;
}


body.content-page {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;

  background-color: #022467;
  background-image:
    url('/static/images/background_blurred.png'),
    url('/static/images/background_blurred.png');
  background-repeat: no-repeat, no-repeat;
  background-position: left center, right center;
  background-size: auto 100%, auto 100%;
  background-attachment: fixed, fixed;
}

.content-part {
  width: 700px;
  max-width: 95vw;   /* responsiv */
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);

}

.content-part .stripe {
  background-color: #4FCCF4;
  color: #022467;
  font-weight: bold;
  padding: 0.75rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.content-part .content {
  padding: 1.5rem;
  text-align: center;
}

/* Form-Elements */
.content-part input {
  width: 100%;
  padding: .5rem .75rem;
  margin: .25rem 0 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  color: #022467;
}
.content-part .submit-btn {
  width: 100%;
  padding: .75rem;
  background: #E6F200;
  color: #022467;
  font-weight: bold;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
.content-part a.simple-link {
  color: #022467;
  text-decoration: underline;
  font-size: .9rem;
}



/*********************
* modify_joboffer spinner
*
**********************/
   /* Spinner Overlay CSS */
        .spinner-overlay {
            display: none; /* Initially hidden */
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5); /* Grey out the rest of the page */
            z-index: 1000; /* Ensure it appears above other elements */
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .spinner-container {
            text-align: center;
            background: white;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
        }
        .spinner-container img {
            width: 50px;
            height: 50px;
        }
        .spinner-container p {
            margin-top: 10px;
            font-size: 20px;
            color: black;
            font-family: 'Montserrat', sans-serif;
        }

/********************************/



/* nav menu tooltips */

.navMenutooltip {
  position: relative;
  display: inline-block;


}

.navMenutooltip .navMenutooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: #e3e3e3;
  border: 1px solid #777777;
  color: #10357d;
  text-align: center;
  border-radius: 6px;
  padding: -5px 0;
  position: absolute;
  z-index: 1;
  top: 110%;
  left: 50%;
  margin-left: -60px;
}

.navMenutooltip .navMenutooltiptext::after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent black transparent;
}

.navMenutooltip:hover .navMenutooltiptext {
  visibility: visible;
}




/* Tooltips for skilltower bricks */
.tooltip-container {
  position: relative;
  display: inline-block;
}



/* Starting with all the different skilltowers styles */
.custom-skilltowergrid {
  display: -ms-grid;
  display: grid;
  grid-auto-columns: 1fr;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  grid-row-gap: 14px; /* Reduce gap between rows */
  grid-column-gap: 16px;
  grid-template-areas:
    "SkillbricksArea"
    "RolelevelArea"
    "EditButtonArea";
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: 5fr 2px 1fr 2px 1fr; /* Adjust heights of rows */
  grid-template-rows: 5fr 0.2fr 1fr; /* Reduce vertical space */
  padding: 5px; /* Add minimal padding for the grid container */
  margin: 0 auto; /* Center the grid container without extra margin */
}

ustom-skilltowergrid2 {
  display: -ms-grid;
  display: grid;
  grid-auto-columns: 1fr;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr; /* Single column layout */
  -ms-grid-rows: 6fr 1fr; /* Two rows only */
  grid-template-rows: 6fr 1fr; /* Define heights of the two rows */
  grid-row-gap: 8px; /* Adjust gap between rows */
  grid-template-areas:
    "SkillbricksArea"
    "RolelevelArea"; /* Removed the "EditButtonArea" */
  padding: 10px; /* Optional: Adjust padding */
  margin: 0 auto; /* Center the grid */
}


.custom-skilltower-EditButtonArea {
  text-align: center;
  -ms-grid-row: 5;
  -ms-grid-column: 1;
  grid-area: EditButtonArea;
  -ms-grid-row-align: center;
  align-self: center;
  -ms-grid-column-align: center;
  justify-self: center;
}

.custom-SkillbricksArea {
  margin-right: 16px;
  margin-left: 8px;
   -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: SkillbricksArea;
  -ms-grid-row-align: end;
  align-self: end;
}

.custom-RolelevelArea {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  grid-area: RolelevelArea;
  -ms-grid-row-align: center;
  align-self: center;
  -ms-grid-column-align: center;
  justify-self: center;
}


.custom-skilltower-table {
  border-spacing: 0px;
  align: center;
  line-height: 0px;
  padding-top: -5px;
}

.custom-skillbricktd {
  min-width:200px;
  max-width:200px;
  text-align: center;
}


.modern-tooltip {
  position: absolute;
  min-width: 400px;
  max-width: 400px;
  margin-left: -200px;
  max-height: 400px;
  background-color: #f2f2f2;
  color: black;
  padding: 5px;
  text-align: center;
  border: 1px solid #777777;
  border-radius: 6px;
  z-index: 1000;
  font-size: 10px;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s, visibility 0.35s;
}


/* Edit Button  */
.button-edit {
  appearance: none;
  background-color: #DDEE00;
  border: 1px solid rgba(27, 31, 35, 0.15);
  border-radius: 6px;
  box-shadow: rgba(27, 31, 35, 0.04) 0 1px 0, rgba(255, 255, 255, 0.25) 0 1px 0 inset;
  box-sizing: border-box;
  color: #24292E;
  cursor: pointer;
  display: inline-block;
  font-family: -apple-system, system-ui, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  list-style: none;
  padding: 6px 16px;
  position: relative;
  transition: background-color 0.2s cubic-bezier(0.3, 0, 0.5, 1);
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  vertical-align: middle;
  white-space: nowrap;
  word-wrap: break-word;
}

.button-edit:hover {
  background-color: #F3F4F6;
  color: black;
  text-decoration: none;
  transition-duration: 0.1s;
}

.button-edit:disabled {
  background-color: #FAFBFC;
  border-color: rgba(27, 31, 35, 0.15);
  color: #959DA5;
  cursor: default;
}

.button-edit:active {
  background-color: #EDEFF2;
  box-shadow: rgba(225, 228, 232, 0.2) 0 1px 0 inset;
  transition: none 0s;
}

.button-edit:focus {
  outline: 1px transparent;
}

.button-edit:before {
  display: none;
}

.button-edit:-webkit-details-marker {
  display: none;
}

/* NARROW Edit Button  */
.narrow-button-edit {
  appearance: none;
  background-color: #DDEE00;
  border: 1px solid rgba(27, 31, 35, 0.15);
  border-radius: 6px;
  box-shadow: rgba(27, 31, 35, 0.04) 0 1px 0, rgba(255, 255, 255, 0.25) 0 1px 0 inset;
  box-sizing: border-box;
  color: #24292E;
  cursor: pointer;
  display: inline-block;
  font-family: -apple-system, system-ui, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  list-style: none;
  padding: 0px 6px;
  position: relative;
  transition: background-color 0.2s cubic-bezier(0.3, 0, 0.5, 1);
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  vertical-align: middle;
  white-space: nowrap;
  word-wrap: break-word;
}

.narrow-button-edit:hover {
  background-color: #F3F4F6;
  color: black;
  text-decoration: none;
  transition-duration: 0.1s;
}

.narrow-button-edit:disabled {
  background-color: #FAFBFC;
  border-color: rgba(27, 31, 35, 0.15);
  color: #959DA5;
  cursor: default;
}

.narrow-button-edit:active {
  background-color: #EDEFF2;
  box-shadow: rgba(225, 228, 232, 0.2) 0 1px 0 inset;
  transition: none 0s;
}

.narrow-button-edit:focus {
  outline: 1px transparent;
}

.narrow-button-edit:before {
  display: none;
}

.narrow-button-edit:-webkit-details-marker {
  display: none;
}


/* MOVE  Button  */
.button-move {
  margin-left: 3px;
  appearance: none;
  background-color: #00CC00;
  border: 1px solid rgba(27, 31, 35, 0.15);
  border-radius: 6px;
  box-shadow: rgba(27, 31, 35, 0.04) 0 1px 0, rgba(255, 255, 255, 0.25) 0 1px 0 inset;
  box-sizing: border-box;
  color: #24292E;
  cursor: pointer;
  display: inline-block;
  font-family: -apple-system, system-ui, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  list-style: none;
  padding: 0px 16px;
  position: relative;
  transition: background-color 0.2s cubic-bezier(0.3, 0, 0.5, 1);
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  vertical-align: middle;
  white-space: nowrap;
  word-wrap: break-word;
}

.button-move:hover {
  background-color: #F3F4F6;
  color: black;
  text-decoration: none;
  transition-duration: 0.1s;
}

.button-move:disabled {
  background-color: #FAFBFC;
  border-color: rgba(27, 31, 35, 0.15);
  color: #959DA5;
  cursor: default;
}

.button-move:active {
  background-color: #EDEFF2;
  box-shadow: rgba(225, 228, 232, 0.2) 0 1px 0 inset;
  transition: none 0s;
}

.button-move:focus {
  outline: 1px transparent;
}

.button-move:before {
  display: none;
}

.button-move:-webkit-details-marker {
  display: none;
}

/* Narrow DELETE  Button  */
.narrow-button-delete {
  margin-left: 3px;
  appearance: none;
  background-color: #ff9999;
  border: 1px solid rgba(27, 31, 35, 0.15);
  border-radius: 6px;
  box-shadow: rgba(27, 31, 35, 0.04) 0 1px 0, rgba(255, 255, 255, 0.25) 0 1px 0 inset;
  box-sizing: border-box;
  color: #24292E;
  cursor: pointer;
  display: inline-block;
  font-family: -apple-system, system-ui, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  list-style: none;
  padding: 0px 16px;
  position: relative;
  transition: background-color 0.2s cubic-bezier(0.3, 0, 0.5, 1);
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  vertical-align: middle;
  white-space: nowrap;
  word-wrap: break-word;
}

.narrow-button-delete:hover {
  background-color: #F3F4F6;
  color: black;
  text-decoration: none;
  transition-duration: 0.1s;
}

.narrow-button-delete:disabled {
  background-color: #FAFBFC;
  border-color: rgba(27, 31, 35, 0.15);
  color: #959DA5;
  cursor: default;
}

.narrow-button-delete:active {
  background-color: #EDEFF2;
  box-shadow: rgba(225, 228, 232, 0.2) 0 1px 0 inset;
  transition: none 0s;
}

.narrow-button-delete:focus {
  outline: 1px transparent;
}

.narrow-button-delete:before {
  display: none;
}

.narrow-button-delete:-webkit-details-marker {
  display: none;
}


/* DELETE  Button  */
.button-delete {
  appearance: none;
  background-color: #C9927F;
  border: 1px solid rgba(27, 31, 35, 0.15);
  border-radius: 6px;
  box-shadow: rgba(27, 31, 35, 0.04) 0 1px 0, rgba(255, 255, 255, 0.25) 0 1px 0 inset;
  box-sizing: border-box;
  color: #24292E;
  cursor: pointer;
  display: inline-block;
  font-family: -apple-system, system-ui, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  list-style: none;
  padding: 4px 10px;
  position: relative;
  transition: background-color 0.2s cubic-bezier(0.3, 0, 0.5, 1);
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  vertical-align: middle;
  white-space: nowrap;
  word-wrap: break-word;
}

.button-delete:hover {
  background-color: #F3F4F6;
  color: black;
  text-decoration: none;
  transition-duration: 0.1s;
}

.button-delete:disabled {
  background-color: #FAFBFC;
  border-color: rgba(27, 31, 35, 0.15);
  color: #959DA5;
  cursor: default;
}

.button-delete:active {
  background-color: #EDEFF2;
  box-shadow: rgba(225, 228, 232, 0.2) 0 1px 0 inset;
  transition: none 0s;
}

.button-delete:focus {
  outline: 1px transparent;
}

.button-delete:before {
  display: none;
}

.button-delete:-webkit-details-marker {
  display: none;
}

/* DELETE  Cancel  */
.button-cancel {
  margin-left: 3px;
  appearance: none;
  background-color: #CCCCCC;
  border: 1px solid rgba(27, 31, 35, 0.15);
  border-radius: 6px;
  box-shadow: rgba(27, 31, 35, 0.04) 0 1px 0, rgba(255, 255, 255, 0.25) 0 1px 0 inset;
  box-sizing: border-box;
  color: #24292E;
  cursor: pointer;
  display: inline-block;
  font-family: -apple-system, system-ui, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  list-style: none;
  padding: 0px 16px;
  position: relative;
  transition: background-color 0.2s cubic-bezier(0.3, 0, 0.5, 1);
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  vertical-align: middle;
  white-space: nowrap;
  word-wrap: break-word;
}

.button-cancel:hover {
  background-color: #F3F4F6;
  color: black;
  text-decoration: none;
  transition-duration: 0.1s;
}

.button-cancel:disabled {
  background-color: #FAFBFC;
  border-color: rgba(27, 31, 35, 0.15);
  color: #959DA5;
  cursor: default;
}

.button-cancel:active {
  background-color: #EDEFF2;
  box-shadow: rgba(225, 228, 232, 0.2) 0 1px 0 inset;
  transition: none 0s;
}

.button-cancel:focus {
  outline: 1px transparent;
}

.button-cancel:before {
  display: none;
}

.button-cancel:-webkit-details-marker {
  display: none;
}

/* LINK  Button  */
.button-link {
  appearance: none;
  background-color: #6CD9FF;
  border: 1px solid rgba(27, 31, 35, 0.15);
  border-radius: 6px;
  box-shadow: rgba(27, 31, 35, 0.04) 0 1px 0, rgba(255, 255, 255, 0.25) 0 1px 0 inset;
  box-sizing: border-box;
  color: #24292E;
  cursor: pointer;
  display: inline-block;
  font-family: -apple-system, system-ui, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  list-style: none;
  padding: 4px 10px;
  position: relative;
  transition: background-color 0.2s cubic-bezier(0.3, 0, 0.5, 1);
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  vertical-align: middle;
  white-space: nowrap;
  word-wrap: break-word;
}

.button-link:hover {
  background-color: #F3F4F6;
  color: black;
  text-decoration: none;
  transition-duration: 0.1s;
}

.button-link:disabled {
  background-color: #FAFBFC;
  border-color: rgba(27, 31, 35, 0.15);
  color: #959DA5;
  cursor: default;
}

.button-link:active {
  background-color: #EDEFF2;
  box-shadow: rgba(225, 228, 232, 0.2) 0 1px 0 inset;
  transition: none 0s;
}

.button-link:focus {
  outline: 1px transparent;
}

.button-link:before {
  display: none;
}

.button-link:-webkit-details-marker {
  display: none;
}

/* NARROW LINK  Button  */
.narrow-button-link {
  appearance: none;
  background-color: #6CD9FF;
  border: 1px solid rgba(27, 31, 35, 0.15);
  border-radius: 3px;
  box-shadow: rgba(27, 31, 35, 0.04) 0 1px 0, rgba(255, 255, 255, 0.25) 0 1px 0 inset;
  box-sizing: border-box;
  color: #24292E;
  cursor: pointer;
  display: inline-block;
  font-family: -apple-system, system-ui, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
  font-size: 12px;
  font-weight: 500;
  line-height: 13px;
  list-style: none;
  padding: 2px 2px;
  position: relative;
  transition: background-color 0.2s cubic-bezier(0.3, 0, 0.5, 1);
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  vertical-align: middle;
  white-space: nowrap;
  word-wrap: break-word;
}

.narrow-button-link:hover {
  background-color: #F3F4F6;
  color: black;
  text-decoration: none;
  transition-duration: 0.1s;
}

.narrow-button-link:disabled {
  background-color: #FAFBFC;
  border-color: rgba(27, 31, 35, 0.15);
  color: #959DA5;
  cursor: default;
}

.narrow-button-link:active {
  background-color: #EDEFF2;
  box-shadow: rgba(225, 228, 232, 0.2) 0 1px 0 inset;
  transition: none 0s;
}

.narrow-button-link:focus {
  outline: 1px transparent;
}

.narrow-button-link:before {
  display: none;
}

.narrow-button-link:-webkit-details-marker {
  display: none;
}


/* add  Button  */
.button-add {
  appearance: none;
  background-color: #10357D;
  border: 1px solid rgba(27, 31, 35, 0.15);
  border-radius: 6px;
  box-shadow: rgba(27, 31, 35, 0.04) 0 1px 0, rgba(255, 255, 255, 0.25) 0 1px 0 inset;
  box-sizing: border-box;
  color: #ffffff;
  cursor: pointer;
  display: inline-block;
  font-family: -apple-system, system-ui, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  list-style: none;
  padding: 4px 10px;
  position: relative;
  transition: background-color 0.2s cubic-bezier(0.3, 0, 0.5, 1);
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  vertical-align: middle;
  white-space: nowrap;
  word-wrap: break-word;
}

.button-add:hover {
  background-color: #F3F4F6;
  color: black;
  text-decoration: none;
  transition-duration: 0.1s;
}

.button-add:disabled {
  background-color: #FAFBFC;
  border-color: rgba(27, 31, 35, 0.15);
  color: #959DA5;
  cursor: default;
}

.button-add:active {
  background-color: #EDEFF2;
  box-shadow: rgba(225, 228, 232, 0.2) 0 1px 0 inset;
  transition: none 0s;
}

.button-add:focus {
  outline: 1px transparent;
}

.button-link:before {
  display: none;
}

.button-add:-webkit-details-marker {
  display: none;
}


/* NARROW add  Button  */
.narrow-button-add {
  appearance: none;
  background-color: #10357D;
  border: 1px solid rgba(27, 31, 35, 0.15);
  border-radius: 6px;
  box-shadow: rgba(27, 31, 35, 0.04) 0 1px 0, rgba(255, 255, 255, 0.25) 0 1px 0 inset;
  box-sizing: border-box;
  color: #ffffff;
  cursor: pointer;
  display: inline-block;
  font-family: -apple-system, system-ui, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  list-style: none;
  padding: 0px 6px;
  position: relative;
  transition: background-color 0.2s cubic-bezier(0.3, 0, 0.5, 1);
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  vertical-align: middle;
  white-space: nowrap;
  word-wrap: break-word;
}

.narrow-button-add:hover {
  background-color: #F3F4F6;
  color: black;
  text-decoration: none;
  transition-duration: 0.1s;
}

.narrow-button-add:disabled {
  background-color: #FAFBFC;
  border-color: rgba(27, 31, 35, 0.15);
  color: #959DA5;
  cursor: default;
}

.narrow-button-add:active {
  background-color: #EDEFF2;
  box-shadow: rgba(225, 228, 232, 0.2) 0 1px 0 inset;
  transition: none 0s;
}

.narrow-button-add:focus {
  outline: 1px transparent;
}

.narrow-button-link:before {
  display: none;
}

.narrow-button-add:-webkit-details-marker {
  display: none;
}


/* Raise the active nav tab 20px higher */
.nav-link.active {
    margin-top: -20px !important; /* Adjust the active tab to appear higher */
    /* You might also need to adjust padding or other properties to align it perfectly */
}


.flex-grid-topnav {
  display: flex;
  justify-content: space-between;
  background-color: white;
}
.flex-grid-topnav .col {
  width: 32%;
}

@media (max-width: 400px) {
  .flex-grid-topnav {
    display: block;
    .col {
      width: 100%;
      margin: 0 0 10px 0;
    }
  }
}





.flexbox-panel {
     display: flex;
     flex-direction: row;
     flex-wrap: nowrap;
     justify-content: space-around;
     align-items: center;
     align-content: center;
     width:100%;
}

.flexbox-item {
     flex: 3 3 auto;
    padding-bottom: 5px;
    margin: 10px;
}




.topnav-link {
    font-size: 18px;
    color: #00347b;

}

 .topnav-link:link {
      text-decoration: none;
}

.topnav-link:visited {
      text-decoration: none;
}

.topnav-link:hover {
      text-decoration: underline;

}

.topnav-link:active {
      text-decoration: underline;


}

.link-button {
     background: none;
     border: none;
     color: #00347b;
     cursor: pointer;
     font-style: italic;

}


.loginout-button {
  border-style: solid;
  border-width: 0px;
  border-color: #ddee0c;
  border-radius: 1px;
  background-color: #ddee0c;
  font-family: Montserrat, sans-serif;
  color: #00347b;
  font-weight: 600;
  /* schon durch .me-2 (= margin-end) in Bootstrap, aber für Sicherheit: */
  margin-right: 0.5rem;

}



.nav-bar {
  position: -webkit-sticky;
  position: sticky;
  top: 0px;
  z-index: 200;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-style: solid;
  border-width: 1px;
  border-color: #00347b;
  border-radius: 1px;
  background-color: #fff;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

.logo-div {
  display: block;
  width: 120px;
  margin-top: 4px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 0;
  -webkit-flex: 0 auto;
  -ms-flex: 0 auto;
  flex: 0 auto;
}

.nav-logo-link {
  position: relative;
  -webkit-transition: opacity 200ms ease;
  transition: opacity 200ms ease;
}

.nav-logo-link:hover {
  opacity: 0.75;
}

.footer-logo {
  display: block;
  margin-bottom: 20px;
}

.footer-link {
  display: block;
  margin-bottom: 0px;
  padding-top: 5px;
  padding-bottom: 5px;
  -webkit-transition: color 200ms ease-in-out;
  transition: color 200ms ease-in-out;
  color: #0f0f0f;
  font-size: 15px;
  text-decoration: none;
  cursor: pointer;
}

.footer-link:hover {
  opacity: 1;
  color: #757575;
}

.footer-link.w--current {
  opacity: 1;
}

.footer-links-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.footer {
  position: relative;
  z-index: 0;
  padding-top: 64px;
  padding-bottom: 64px;
  background-color: #fbfbfb;
  color: #0f0f0f;
}


  .nav-bar {
    border: 1px none #000;
  }

  .footer-logo {
    padding-left: 0px;
  }

  .footer-links-container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .footer {
    padding-top: 40px;
    padding-bottom: 32px;
  }



label {
  display: block;
  margin-bottom: 6px;
  color: black;
  font-size: 15px;
  font-weight: 400;
}



  .nav-link {
    margin-right: 25px;
    margin-left: 25px;
    padding-top: 12px;
    padding-bottom: 12px;
    font-size: 16px;
    text-align: center;
    color: #00347b !important;
  }



.nav-link {
  margin-right: 4px;
  margin-left: 4px;
  padding: 6px 8px;
  -webkit-transition: background-color 200ms ease, color 200ms ease, -webkit-transform 200ms ease;
  transition: background-color 200ms ease, color 200ms ease, -webkit-transform 200ms ease;
  transition: background-color 200ms ease, transform 200ms ease, color 200ms ease;
  transition: background-color 200ms ease, transform 200ms ease, color 200ms ease, -webkit-transform 200ms ease;
  color: #000000;
  opacity: 1;
  font-size: 18px;
  line-height: 24px;
  font-weight: bold;
  cursor: pointer;
}

.nav-link:hover {
  color: #017cff;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}

.nav-link:active {
  color: #01658a;
}

.nav-link.w--current {
  color: #33383f;
}


/***
* login page
***/

.account-card-new {
    background-color: #00347b;
    color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    max-width: 500px; /* Set a wider max width */
    width: 80%; /* Ensure it scales well on smaller screens */
}

.account-card-new h2 {
    margin-bottom: 20px;
}

.account-card-new p {
    margin-bottom: 15px;
}

.account-card-footer {
    margin-top: 20px;
    text-align: center;
}

.simple-grey-link {
    color: gray;
    text-decoration: underline;
    font-size: 0.9em;
}

.login-submit-button {
    background-color: #007bff;
    color: white;
    margin-top: 20px;
    padding: 5px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.login-submit-button:hover {
    background-color: #0056b3;
}



/***
* Search Tags in COurses
***/
