.blue-title {
  color: #2a75b5;
  font-size: 24px;
}

button:focus-visible {
  outline: 1px solid black !important;
}

button,
[role="button"],
a {
  cursor: pointer;
}

button:hover {
  opacity: 0.9;
}

a:-webkit-any-link {
  color: inherit;
  text-decoration: none;
}

.icon-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

input[type="checkbox"]:disabled {
  cursor: auto;
}

input[type="checkbox"]:focus-visible {
  outline-offset: 1px;
}

[tab-index=0]:focus-visible,
[tab-index=0]:focus {
  outline-offset: 1px;
}

button.blue:focus-visible {
  outline-offset: black solid 2px !important;
}

.visually-hidden {
  position: absolute;
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* loader */

#dots #dot1 {
  animation: load 2s infinite;
}

#dots #dot2 {
  animation: load 2s infinite;
  animation-delay: 0.4s;
}

#dots #dot3 {
  animation: load 2s infinite;
  animation-delay: 0.8s;
}

#loader {
  text-align: center;
  width: 100%;
  height: 60px;
}

.offset,
span.offset {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@keyframes load {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.mat-progress-spinner circle,
.mat-spinner circle {
  stroke: #f1f9fe !important;
}

.not-allowed {
  cursor: not-allowed !important;
}

@media (max-width: 767px) {
  .blue-title {
    font-size: 16px;
    line-height: 20px;
  }
}