a {
  word-wrap: break-word;
}

.instructor-modal a.large-button h4 {
  width: auto;
}

.error-message {
  margin-top: -12px;
  font-size: 16px;
  color: red;
}

.success-message {
  font-size: 16px;
  color: green;
}

.required-asterisk {
    color: red;
}

.text-uppercase {
  text-transform: uppercase;
}

.form-group {
  margin-bottom: 24px;
}

.position-relative {
  position: relative;
}

.d-flex {
  display: flex;
}

.flex-container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.items-center {
  align-items: center;
}

.content-between {
  justify-content: space-between;
}

.content-center {
  justify-content: center;
}

.mr-3 {
  margin-right: 12px;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-1 {
  margin-bottom: 4px;
}

.mt-1 {
  margin-top: 4px;
}

.mt-3 {
  margin-top: 12px;
}

.mt-5 {
  margin-top: 20px;
}

.tooltip-icon {
  margin-left: 4px;
  font-size: 16px;
  color: #7c7c7c;
  cursor: pointer;
}

/* Tooltip container */
.tooltip {
  position: relative;
  display: inline-block;
}

/* Tooltip text */
.tooltip .tooltiptext {
  visibility: hidden;
  width: 250px;
  background-color: #d9eef7;
  color: #24375a;
  text-align: center;
  padding: 10px;
  border-radius: 8px;
  bottom: 100%;
  left: 50%;

  /* Position the tooltip text - see examples below! */
  position: absolute;
  z-index: 51;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
  visibility: visible;
}

.textarea .ql-editor {
  min-height: 100px !important;
}


/* recertify-modal */
.recertify-modal .container {
  padding: 16px 0;
}

/* modal */
.basic-modal .modal-header {
  height: 110px;
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 2rem;
  cursor: pointer;
}

/* Maze login */
.mazelogin-title {
  color: #62181e;
  font-weight: 500;
  font-size: 30px;
  margin-bottom: 30px;
}

.mazelogin-description {
  font-style: italic;
  font-weight: 400;
  color: #24375a;
  font-size: 24px;
  margin-bottom: 24px;
}

.maze-header {
  border-bottom: 8px solid #ff6600;
}


/*************** Start UI Modal *****************/

.ui-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1000;
}

.ui-modal-overlay.show {
    display: block;
}

.ui-modal {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-height: 90%;
    overflow: hidden;
    border-radius: 10px;
    padding: 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    background-color: #f8fafc;
    display: flex;
    flex-direction: column;
}

.ui-modal-close {
  background: #efefef;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;              
  align-items: center;        
  justify-content: center;    
}


.ui-modal.ui-modal-md {
  width: 400px !important;
  min-height: auto !important;
  height: auto !important;
}

.ui-modal-lg {
  width: 700px !important;
}

.ui-modal.ui-modal-xl {
  width: 1000px !important;
}

.ui-modal-body {
  position: relative;
  padding: 24px 32px;
  overflow-y: auto;
  flex-grow: 1;
  min-height: 150px;
}

.ui-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-bottom: 1px solid #c5cbd1;
  border-top-left-radius: calc(.3rem - 1px);
  border-top-right-radius: calc(.3rem - 1px);
  height: 15%;
}

.ui-modal-title {
  font-size: 24px;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  font-weight: 600;
}

.ui-modal-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: .75rem;
  border-top: 1px solid #c5cbd1;
  border-bottom-right-radius: calc(.3rem - 1px);
  border-bottom-left-radius: calc(.3rem - 1px);
  height: 15%;
}

.ui-modal-body-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 767px) {
    .ui-modal {
        width: 100% !important;
        height: 100%;
        top: 20px;
        left: 0;
        transform: none; 
        border-radius: 0;
    }

    .ui-modal-lg, .ui-modal-md, .ui-modal-xl {
        width: 100% !important;
    }

    .ui-modal-body {
        padding: 15px; 
    }

    .ui-modal-header {
        padding: 10px 15px; 
    }
}

/*************** End UI Modal *****************/

#recertModal .ql-editor {
  font-size: 16px;
}

@media (max-width: 767px) {
  #recertModal .ql-editor {
    font-size: 14px;
  }

  #recertModal .ql-editor p,
  #recertModal .ql-editor li {
    font-size: 14px !important;
  }
}

/*************** Start UI Maze Organization *****************/

.org-list {
  max-height: 260px;
  overflow-y: auto;
  margin-bottom: 10px;
}

.org-note {
  font-size: 12px;
  color: #777777;
  border-radius: 5px;
  padding: 20px 12px 0 12px;
  margin: 10px 0 0 0;
  text-align: left;
}

.org-link {
  color: #FF6600;
  text-decoration: underline;
}


/*************** Start UI Maze Organization *****************/


/* jQuery error css  */
label.error {
  color: red;
  font-size: 16px;
  font-weight: normal;
  text-transform: none;
}

:disabled,
.disabled {
	cursor: not-allowed !important;
	opacity: 0.7;
}

/* Prompt modal */
.prompt-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: rgba(0, 0, 0, 0.4);
}
.prompt-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
}
.prompt-modal-content {
  background: #fff;
  margin: 10% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 90%;
  max-width: 540px;
  border-radius: 8px;
  position: relative;
}
.prompt-close {
  position: absolute;
  right: 12px;
  top: 14px;
  font-size: 30px;
  font-weight: bold;
  cursor: pointer;
}

@media screen and (max-width: 690px) {
  .prompt-title {
    font-size: 20px;
  }
  .prompt-close {
    right: 16px;
    top: 16px;
    font-size: 24px;
  }
}

/* dropdown */
div.trigger.open {
  border-bottom-right-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}

ul.options {
  margin-top: 0 !important;
  z-index: 52 !important;
}

@media (max-width: 690px) {
  .fancy-select {
    margin-bottom: 1rem !important;
  }
}

/* Connect to Mazetec */
.organization-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  margin-bottom: 8px;
  background: #f8fafc;
  border-radius: 6px;
  box-shadow: 0 1px 2px rgba(36,55,90,0.04);
  transition: background-color 0.2s;
}

.organization-list:hover {
  background: #e6eef7;
}

.organization-list span {
  font-weight: 600;
  font-size: 18px;
  color: #24375a;
}

/* Toast notification */
.toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  color: #fff;
  padding: 16px 24px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  font-size: 16px;
  transition: opacity 0.3s;
}

.toast-body {
  margin: 0;
}

/* Fancy select */
/* Search container - positioned absolutely within the dropdown */
div.fancy-select .search-container {
  position: absolute;
  width: fill-available;
  width: -webkit-fill-available;
  width: -moz-fill-available;
  width: 100%;
  background: #fff;
  border: 3px solid #24375a;
  border-top: 0;
  border-bottom: 0;
  padding: 8px;
  z-index: 52;
  display: none; /* Hidden by default, no space taken */
}

/* Show search container when dropdown is open */
div.fancy-select .trigger.open + .search-container {
  display: block; /* Show when open */
}

/* Search input styling to match your design */
div.fancy-select .search-input {
  width: 100%;
  padding: 8px;
  border: 2px solid #24375a;
  border-radius: 4px;
  font-size: 16px;
  outline: none;
  color: #24375a;
  background: #fff;
  font-family: inherit;
  box-sizing: border-box;
  transition: all 0.24s ease-out;
  -webkit-transition: all 0.24s ease-out;
  -moz-transition: all 0.24s ease-out;
  -ms-transition: all 0.24s ease-out;
  -o-transition: all 0.24s ease-out;
}

div.fancy-select .search-input:focus {
  border-color: #a4c9d8;
  box-shadow: 0 0 0 2px rgba(164, 201, 216, 0.3);
}

div.fancy-select .search-input::placeholder {
  color: #7a8498;
  font-style: italic;
}

/* Adjust options position when search is enabled */
div.fancy-select.has-search ul.options {
  top: 90px; /* Position below search container */
}
div.fancy-select.has-search ul.options li {
  white-space: break-spaces;
}

/* No results styling */
div.fancy-select ul.options li.no-results {
  color: #7a8498;
  font-style: italic;
  pointer-events: none;
  background: #f9f9f9;
}

/* Icons */
.icon-warning {
  content: url("/assets/icons/warning.svg");
}

.icon-copy {
  content: url("/assets/icons/copy.svg");
}

.icon-qr-code {
  content: url("/assets/icons/qr-code.svg");
}

.icon-analytic-bars {
  content: url("/assets/icons/analytic-bars.svg");
}

.icon-download {
  content: url("/assets/icons/download.svg");
}

.icon-analytics {
  content: url("/assets/icons/analytics.svg");
}

.icon-display {
  content: url("/assets/icons/display.svg");
}

.icon-chart {
  content: url("/assets/icons/chart.svg");
}

.icon-meter {
  content: url("/assets/icons/meter.svg");
}

.icon-information {
  content: url("/assets/icons/information.svg");
}

.qpr_card-wrapper {
  display: grid;
  /* two column */
  grid-template-columns: repeat(auto-fill, minmax(375px, 1fr));
  gap: 20px;
  justify-content: center;
  align-items: stretch;
  margin-top: 36px;
}

@media screen and (max-width: 690px) {
  .qpr_card-wrapper {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  }
}

.qpr_card {
  border: 3px solid #e0e0e0;
  border-radius: 8px;
  padding: 24px;
  vertical-align: top;
  /* margin: 10px 10px !important; */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  top: 0;
  transform: scale(1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.qpr_card:hover {
  transform: translateY(-4px);
  background-color: #f8f8f8;
}

.card-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1 1 0%;
}

.qpr_card-body {
  flex: 1 1 0%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.qpr_card-footer {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.qpr_card-title {
  font-size: 18px !important;
  font-weight: 600;
  color: #24375a;
  margin-bottom: 0 !important;
}

.qpr_card-description {
  margin-bottom: 0 !important;
  color: #24375a;
  font-weight: 300;
  font-size: 16px;
}

.qpr_card-content-content {
  flex: 1 1 0%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.qpr_card-link-group {
  position: relative;
}

.qpr_card-input {
  width: 100%;
  padding: 10px 94px 10px 12px !important;
  border: 1px solid #e0e0e0 !important;
  border-radius: 0.375rem;
  color: #24375a;
  background-color: #f8f8f8 !important;
  font-size: 0.875rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 0 !important;
  box-shadow: none !important;
  height: 44px;
}

.qpr_card-input:focus {
  outline: none;
  border-color: #24375a !important;
}

.qpr_card-copy-button {
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  padding: 8px 16px;
  height: calc(100% - 8px);
  border: none;
  color: #ffffff;
  background-color: #24375a;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 0.25rem;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: none;
  letter-spacing: 0.2px;
}

.qpr_card-copy-button:hover {
  background-color: #1a294a;
}

.qpr_card-copy-button i {
  height: 12px;
  width: 12px;
}

.qpr_card-actions {
  display: flex;
  gap: 0.5rem;
  width: 100%;
  padding-top: 0.25rem;
}

.qpr_card-action-button {
  flex: 1;
  padding: 10px 16px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #ffffff;
  background-color: #24375a;
  border: none;
  border-radius: 0.375rem;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s ease-in-out;
  text-decoration: none;
  margin: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.2px;
}

.qpr_card-action-button:hover {
  background-color: #1a294a;
  color: #ffffff;
  transform: translateY(-1px);
}

/* QR Code button specific styles */
.qpr_card-action-button.qr-button {
  background-color: #ffffff;
  color: #24375a;
  border: 2px solid #24375a;
}

.qpr_card-action-button.qr-button:hover {
  background-color: #f8f8f8;
  color: #24375a;
  border-color: #24375a;
}

.qpr_card-action-button i {
  color: #24375a;
  margin-right: 8px;
  height: 14px;
  width: 14px;
  font-size: 12px;
}

/* Analytics button specific styles */
.qpr_card-action-button.analytics-button {
  background-color: #24375a;
  color: #ffffff;
  border: none;
}

.qpr_card-action-button.analytics-button:hover {
  background-color: #1a294a;
  transform: translateY(-1px);
}

/* Card tags styling based on reference image */
.qpr_card-tags {
  display: flex;
  flex-direction: row !important;
  gap: 8px !important;
}

.qpr_card-tag {
  display: inline-block;
  padding: 8px 12px;
  font-size: 11px;
  line-height: 1;
  font-weight: 600;
  border-radius: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.qpr_card-tag.secondary {
  background-color: #c9d9f4;
  color: #25385a;
}

.qpr_card-tag.primary {
  background-color: #efe7e8;
  color: #62181e;
}

.qpr_card-tag.success {
  background-color: #e3eff4;
  color: #447486;
}

.qpr_card-tag.warning {
  background-color: #fff6b2;
  color: #854d0e;
}

.qpr_card-tag.info {
  background-color: #ccf6fa;
  color: #0e7490;
}

.qpr_card-tag.danger {
  background-color: #f7d9d9;
  color: #b91c1c;
}

/* Icon support in buttons */
.qpr_card-action-button i,
.qpr_card-action-button svg {
  margin-right: 8px;
  vertical-align: middle;
}

.qpr_card-copy-button i,
.qpr_card-copy-button svg {
  margin-right: 6px;
  font-size: 15px;
}

/* QR Card with image styles */
.qpr_card-with-image {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 20px;
  min-height: 295px;
}

.qpr_card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.qpr_card-content-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.qpr_card-image {
  width: 130px;
  background-color: #e6f2fa;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  overflow: hidden;
  align-self: center;
  margin: 0 !important;
  height: 100%;
}

.qpr_card-image.analytics {
  /* background: linear-gradient(135deg, #e0f2fe, #a5f3fc); */
  background: #24375a0d;
}

.qpr_card-image.dashboard {
  /* background: linear-gradient(135deg, #ccfbf1, #d1fae5); */
  background: #24375a0d;
}

.qpr_card-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.placeholder-chart {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.placeholder-chart i {
  color: #4a90e2;
  opacity: 0.8;
  width: 48px;
}

/* Enhanced icon styling for the new layout */
.qpr_card-with-image .placeholder-chart i {
  font-size: 56px;
  color: #24375a;
  opacity: 0.9;
}

.icon-chart:before {
  content: "\e906";
}

/* Make sure cards are responsive */
@media (max-width: 768px) {
  .qpr_card-title {
    margin-bottom: 0 !important;
  }

  .qpr_card-with-image {
    flex-direction: column;
  }

  .qpr_card-image {
    flex: 0 0 auto;
    max-width: 100%;
    height: 100px;
    /* margin-top: 15px !important; */
    margin-bottom: 0 !important;
    width: 100%;
  }

  .qpr_card-content > div {
    flex-direction: column;
  }
}

/* Find an Instructor */
.find-instructor-form .btn-util {
  border: 3px solid #24375a;
}

.find-instructor-form {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 12px;
}

@media (max-width: 768px) {
  .find-instructor-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
  }

  .find-instructor-form div {
    width: 100%;
    max-width: 300px;
  }

  .find-instructor-form label {
    margin-bottom: 5px;
  }

  .find-instructor-form button {
    padding: 10px;
    font-size: 16px;
    line-height: 1rem;
  }
}

@media (min-width: 460px) {
  .find-instructors-language div.trigger {
    width: 250px !important;
  }
}

@media (max-width: 460px) {
  .find-instructor-form{
		display: flex !important;
		align-items: center;
		justify-content: space-evenly;
		flex-wrap: wrap;
	}

  .instructor-near-me-zip,
  .instructor-near-me-country {
    max-width: 100% !important;
  }
}

.instructor-near-me {
  display: block;
  padding-bottom: 20px;
  padding-top: 20px;
  position: relative;
  text-align: center;
  z-index: 5;
}

.instructor-near-me div {
  text-align: left;
}

.instructor-near-me .pretty {
  white-space: normal;
}

.instructor-near-me-steps {
  margin-bottom: 10px;
  margin-right: 40px;
}

.instructor-near-me-steps span {
  vertical-align: middle;
}

.instructor-near-me-steps--two,
.instructor-near-me-steps--three {
  margin-top: 1px;
}

.instructor-near-me-steps--three a {
  cursor: default;
  pointer-events: none;
}

.instructor-near-me-steps--three--active a {
  cursor: pointer;
  pointer-events: auto;
}

.instructor-near-me-steps-number {
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.3);
  color: #fff;
  display: inline-block;
  font-weight: bold;
  height: 30px;
  padding-top: 5px;
  text-align: center;
  width: 30px;
}

.instructor-near-me-steps-number--one {
  background-color: #24375a;
}

.instructor-near-me-steps-number--two {
  background-color: #498eaa;
}

.instructor-near-me-steps-number--three {
  background-color: #62181E;
}

.instructor-near-me-zip {
  max-width: 250px;
  margin: 0 !important;
}

.instructor-near-me-find {
  bottom: 1px;
  position: relative;
}

.instructor-near-me-country {
  max-width: 220px;
}

.instructor-near-me-list {
  position: relative;
  min-height: 50px;
  max-height: 350px;
  overflow-y: auto;
  scroll-behavior: smooth;
}

.instructor-near-me__grid {
  margin: 0 20px;
}

.instructor-near-me__grid .grid-item,
.grid-sizer {
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.6);
  margin: 2px;
  padding: 6px 12px;
  width: 99%;
}

@media only screen and (min-width:480px) {

  .instructor-near-me__grid .grid-item,
  .grid-sizer {
    width: 49%;
  }
}

@media only screen and (min-width:736px) {

  .instructor-near-me__grid .grid-item,
  .grid-sizer {
    width: 32%;
  }
}

.grid-sizer {
  visibility: hidden;
}

.fade-out {
  opacity: 1;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

.fade-out--active {
  opacity: 0;
}

#messagemodal .message__input {
  border: 1px solid;
  display: inline-block;
  font-size: 14px;
  margin-bottom: 0;
  max-width: 160px;
  padding: 2px 6px;
}

/*
* Flat bar top (effect 13)
* https://tympanus.net/codrops/2013/09/18/creative-loading-effects/
*/

.instructor-near-me .loading-progress {
  height: 80px;
  max-height: 0;
  overflow: hidden;
  text-align: center;
  transition: max-height 0.3s;
}

.instructor-near-me .loading-progress--loading {
  max-height: 80px;
}

.loading-spinner {
  animation: rotator 1.4s linear infinite;
  opacity: 1;
  margin-left: 20px;
  margin-right: 20px;
  transition: opacity 0.4s, visibility 0.4s;
  visibility: visible;
  -webkit-animation: rotator 1.4s linear infinite;
}

@-webkit-keyframes rotator {
  0% {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
  }

  100% {
    transform: rotate(270deg);
    -webkit-transform: rotate(270deg);
  }
}

@keyframes rotator {
  0% {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
  }

  100% {
    transform: rotate(270deg);
    -webkit-transform: rotate(270deg);
  }
}

.loading-spinner-path {
  animation: dash 1.4s ease-in-out infinite, colors 5.6s ease-in-out infinite;
  stroke-dasharray: 187;
  stroke-dashoffset: 0;
  transform-origin: center;
  -webkit-transform-origin: center;
  -webkit-animation: dash 1.4s ease-in-out infinite, colors 5.6s ease-in-out infinite;
}

@-webkit-keyframes colors {
  0% {
    stroke: #4285F4;
  }

  25% {
    stroke: #DE3E35;
  }

  50% {
    stroke: #F7C223;
  }

  75% {
    stroke: #1B9A59;
  }

  100% {
    stroke: #4285F4;
  }
}

@keyframes colors {
  0% {
    stroke: #4285F4;
  }

  25% {
    stroke: #DE3E35;
  }

  50% {
    stroke: #F7C223;
  }

  75% {
    stroke: #1B9A59;
  }

  100% {
    stroke: #4285F4;
  }
}

@-webkit-keyframes dash {
  0% {
    stroke-dashoffset: 187;
  }

  50% {
    stroke-dashoffset: 46.75;
    transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
  }

  100% {
    stroke-dashoffset: 187;
    transform: rotate(450deg);
    -webkit-transform: rotate(450deg);
  }
}

@keyframes dash {
  0% {
    stroke-dashoffset: 187;
  }

  50% {
    stroke-dashoffset: 46.75;
    transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
  }

  100% {
    stroke-dashoffset: 187;
    transform: rotate(450deg);
    -webkit-transform: rotate(450deg);
  }
}

.message-description-char-counter {
  text-align: right;
}

.instructor-near-me-error {
  text-align: center;
  color: #62181E;
}

/*
* Utilities
*/
.inline-block {
  display: inline-block;
}

.block-center {
  display: block;
  margin: auto;
}

/*
* Overrides
*/
.grid-item label {
  font-weight: bold !important;
  padding: 0;
  text-transform: none;
}

.grid-item .pretty {
  margin: 0;
}

.grid-item .pretty .state label::after,
.grid-item .pretty .state label::before,
.grid-item .pretty.p-svg .state .svg {
  top: 2px;
}

.instructor-list--messaged {
  pointer-events: none;
}

.instructor-list-message-sent {
  background-image: radial-gradient(#fff, rgba(255, 255, 255, 0));
  font-size: 12px;
  opacity: 0;
  padding: 1px;
  position: absolute;
  top: 0px;
  text-align: center !important;
  transition: opacity 0.5s, transform 0.5s;
  width: 100%;
  z-index: 0;
}

.instructor-list--messaged .instructor-list-message-sent {
  opacity: 1;
  transform: translateY(-6px);
  z-index: 1;
}

.message-error {
  font-size: 12px;
  text-align: center;
}

.message-modal-error--email .message-error {
  color: #62181E;
  font-weight: bold;
}

.blocker {
  z-index: 1111 !important;
}

#message-description {
  margin-bottom: 2px;
}

.progress-button button {
  width: 220px;
}

.progress-button .checkmark,
.progress-button .cross {
  top: -10px;
}

.gridjs-td input[type="checkbox"],
.gridjs-th input[type="checkbox"] {
      cursor: pointer !important;
}

/** International Banner **/
#intlBanner {
  background:#631919;
  color:#fff;
  padding:18px 24px;
  text-align:center;
  font-size:1.2rem;
  position:relative;
}

.intlBannerImg {
  width:32px;
  height:32px;
  vertical-align:middle;
  margin-right:10px;
}

.intlBannerLink {
  color:#ffe082;
  text-decoration:underline;
  font-weight:bold;
}

.intlBannerButton {
  margin-left:18px;
  color:#fff;
  background:#c78388;
  padding:6px 16px;
  border-radius:4px;
  font-weight:bold;
  text-decoration:none;
  display:inline-block;
}

/* Switch Toggle */
.switch-toggle-input {
  width: 40px;
  height: 20px;
  position: relative;
  appearance: none;
  background: #c6c6c6;
  outline: none;
  border-radius: 20px;
  box-shadow: inset 0 0 5px rgba(0,0,0,.2);
  transition: .5s;
  cursor: pointer;
  margin-bottom: 0 !important;
}

.switch-toggle-input:checked {
  background: #4cd137;
}

.switch-toggle-input:before {
  content: '';
  width: 18px;
  height: 18px;
  position: absolute;
  top: 1px;
  left: 1px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 5px rgba(0,0,0,.2);
  transition: .5s;
}

.switch-toggle-input:checked:before {
  left: 21px;
}

/* QPR to Mazetec Organization modal notifications */
.notification {
  display: flex;
  align-items: flex-start;
  gap: 10px;

  padding: 16px;
  border-radius: 6px;
  font-size: 14px;
  margin-bottom: 16px;
  line-height: 1.5;
}

.notification-info {
  border: 1px solid #bee3f8;
  background-color: #ebf8ff;
  color: #2c5282;
}

.notification-warning {
  border: 1px solid #fbd38d;
  background-color: #fffff0;
  color: #744210;
}

.notification-icon {
  display: inline-block;
  width: 18px;
  height: 18px;
  flex-shrink: 0;

}

.notification-text {
  flex: 1;
}