.opacity-1 {
  opacity: 0.1;
}

.opacity-2 {
  opacity: 0.2;
}

.opacity-3 {
  opacity: 0.3;
}

.opacity-4 {
  opacity: 0.4;
}

.opacity-5 {
  opacity: 0.5;
}

.opacity-6 {
  opacity: 0.6;
}

.opacity-7 {
  opacity: 0.7;
}

.opacity-8 {
  opacity: 0.8;
}

.opacity-9 {
  opacity: 0.9;
}

.opacity-full {
  opacity: 1;
}

.page-header {
  background-color: #1C90B6;
}

.main-heading h6 {
  color: #ffffff;
  text-transform: uppercase;
}
.main-heading h3 {
  color: #ffffff;
}
.main-heading p {
  color: #ffffff;
}

.member-dates-card {
  color: #444;
  font-size: 0.875rem;
  font-family: "DejaWeb";
}

.members-only-label {
  color: #1C90B6;
}

/* --- switch styling --- */
.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}

.switch input {
  opacity: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

input:checked + .slider {
  background-color: #1C90B6;
}

input:focus + .slider {
  -webkit-box-shadow: 0 0 1px #1C90B6;
          box-shadow: 0 0 1px #1C90B6;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

/* --- end switch styling --- */
.custom-border {
  border: 1px solid #9A9A9A; /* Change the border properties as needed */
  border-radius: 4px; /* Optional: Rounded corners */
  position: relative;
}

.top-center {
  position: absolute;
  top: -16px; /* Adjust this value to properly position the text */
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: white; /* Ensure text is readable regardless of background */
  padding: 0 10px; /* Optional: Add padding to text */
  color: #444;
  font-family: "DejaWeb";
  font-weight: 700;
  font-size: 15px;
}

.shadow {
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.35);
          box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.35);
}

.link {
  color: #0000EE !important;
  text-transform: uppercase;
  font-family: "Fira Sans";
  text-decoration: underline !important;
  font-size: 0.85rem;
}