/*
IOH - Custom CSS layer on top of Elementor
*/
/* this is now global within the theme */
.form-group {
  display: block;
  margin-bottom: 1rem;
}
.form-group label, .form-group input {
  display: block;
}

.ioh-add-coupon-button {
  display: block;
  padding: 1rem 0;
  margin: 1rem 0;
}

.ioh-membership-coupon {
  margin-bottom: 1.5rem;
}
.ioh-membership-coupon .ioh-membership-apply-code {
  margin-top: 0.5rem;
}

.ioh-membership-purchase-flow {
  color: #fff;
}
.ioh-membership-purchase-flow .ioh-membership-purchase-options {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-direction: column;
}
.ioh-membership-purchase-flow .ioh-membership-purchase-options label {
  border-radius: 0.25rem;
  border: 1px solid #3b3b77;
  padding: 1rem;
  display: grid;
  grid-template-columns: auto max-content;
  align-items: center;
}
.ioh-membership-purchase-flow .ioh-membership-purchase-options label > * {
  grid-column: 1;
}
.ioh-membership-purchase-flow .ioh-membership-purchase-options label .payment .amount {
  color: var(--purple);
  font-size: 2rem;
  font-weight: bold;
  display: block;
  margin-bottom: 0.5rem;
}
.ioh-membership-purchase-flow .ioh-membership-purchase-options label:has(input:checked) {
  border-color: #fff;
}
.ioh-membership-purchase-flow .ioh-membership-purchase-options label input {
  display: none;
}
.ioh-membership-purchase-flow .ioh-membership-purchase-options label .installments_info {
  margin-top: 0.75rem;
  font-size: 90%;
}
.ioh-membership-purchase-flow .ioh-membership-purchase-options .ioh-membership-direct-debit {
  filter: invert(1);
  width: 4.5rem;
  height: auto;
  grid-column: 2;
}

.ioh-membership-card-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  z-index: 100;
}
.ioh-membership-card-overlay canvas {
  position: fixed;
  left: -1000px;
  top: -1000px;
}
.ioh-membership-card-overlay img {
  max-height: 70vh;
  width: auto;
}

.ioh-cpd-calculating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.oomi-attachment-list {
  padding-left: 0;
}
.oomi-attachment-list li {
  list-style-type: none;
}
.oomi-attachment-list a {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.oomi-attach-icon {
  width: 22px;
  filter: invert(1);
}

.table.table-striped {
  width: 100%;
  color: var(--variable-text-color);
  font-family: var(--body-font);
  border-spacing: 0;
}
.table.table-striped thead {
  background-color: var(--purple);
}
.table.table-striped th {
  text-align: left;
}
.table.table-striped td, .table.table-striped th {
  padding: 5px 10px;
}
.table.table-striped tbody tr.even-row {
  background-color: var(--deep-blue);
}
.table.table-striped tbody tr.odd-row {
  background-color: var(--deep-blue-dark);
}
.table.table-striped tbody td, .table.table-striped tbody th {
  border-bottom: 1px solid var(--deep-blue-dark);
}

.ioh-interests-panel {
  color: var(--variable-text-color);
}
.ioh-interests-panel select {
  width: 100%;
}
.ioh-interests-panel h3 {
  text-transform: uppercase;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-weight: 600;
}
.ioh-interests-panel h3 button {
  padding: 0.25rem;
  margin: 0;
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  cursor: pointer;
}
.ioh-interests-panel h3 button img {
  width: 22px;
  height: 22px;
  filter: invert(1);
}
.ioh-interests-panel .ioh-interests-list {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.ioh-interests-panel .ioh-interests-list .ioh-interest {
  display: flex;
  background: #835AFF;
  padding: 0.5rem 1rem;
  color: #fff;
  align-items: center;
  border-radius: 2.5rem;
  flex-wrap: nowrap;
  gap: 0.5rem;
}
.ioh-interests-panel .ioh-interests-list .ioh-interest button {
  color: #fff;
  padding: 0.25rem;
  margin: 0;
  border: 0;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  cursor: pointer;
}

.ioh-interests-add-interest h4 {
  text-transform: uppercase;
  font-size: 1rem;
}
.ioh-interests-add-interest form {
  display: flex;
  gap: 0.5rem;
}
.ioh-interests-add-interest {
  margin-bottom: 1rem;
}

.ioh-personal-feed-grid {
  display: grid;
}
@media (min-width: 700px) {
  .ioh-personal-feed-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1180px) {
  .ioh-personal-feed-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.alert {
  padding: 2rem;
  margin: 1rem 0;
  background-color: var(--purple);
  color: #fff;
  border-radius: 2rem;
}
.alert.alert-warning {
  background-color: var(--pastel-yellow);
  color: #000;
}

.fellowship-grid {
  grid-column: span 2;
  display: grid;
  gap: 25px;
  font-family: var(--body-font);
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 600px) {
  .fellowship-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1000px) {
  .fellowship-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.fellowship-grid img.avatar {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}
.fellowship-grid p {
  color: var(--variable-text-color);
  margin: 5px 0;
}
.fellowship-grid .type {
  color: var(--purple);
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 0;
}
.fellowship-grid h2 {
  margin-top: 0;
  margin-bottom: 5px;
  color: var(--variable-text-color);
}

.btn {
  padding-block-start: var(--btn-padding-y);
  padding-block-end: var(--btn-padding-y);
  padding-inline-start: var(--btn-padding-x);
  padding-inline-end: var(--btn-padding-x);
  border-radius: 2rem;
  font-family: var(--btn-font);
  font-weight: 500;
  font-size: var(--btn-font-size);
  cursor: pointer;
}
.btn.btn-primary {
  background-color: var(--purple);
  color: #fff !important;
  border: 1px solid var(--purple);
}
.btn.btn-primary:hover {
  background-color: transparent;
  color: var(--purple);
}
.btn.btn-link {
  border: 1px solid transparent;
}
.btn.btn-link:hover {
  background-color: var(--purple);
  border-color: var(--purple);
  color: #fff !important;
}

.select2-container {
  font-family: var(--body-font);
}

.select2-container--default .select2-selection--single,
.form-control {
  border: 1px solid var(--variable-border-color, var(--variable-text-color)) !important;
  border-radius: 2rem !important;
  background-color: #fff !important;
  color: #000;
  padding: 10px 15px;
  height: auto !important;
}
.select2-container--default .select2-selection--single:focus,
.form-control:focus {
  outline: 3px var(--purple) solid;
}

select.form-control {
  appearance: none;
  --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-image: var(--bs-form-select-bg-img), var(--bs-form-select-bg-icon, none);
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
}

body.logged-in select.form-control {
  --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23dee2e6' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #000 !important;
  font-size: 14px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 100% !important;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #000 transparent transparent transparent !important;
}

.ioh-fellowship-directory {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  font-family: var(--body-font);
}
.ioh-fellowship-directory table, .ioh-fellowship-directory nav {
  grid-column: span 2;
}

.ioh-fellowship-directory-filters {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  font-family: var(--body-font);
}
.ioh-fellowship-directory-filters input, .ioh-fellowship-directory-filters .select2 {
  width: 100%;
}
.ioh-fellowship-directory-filters {
  grid-column: span 2;
}

.ioh-fellowship-directory-search {
  text-align: end;
}

.ioh-subpanel {
  background-color: var(--pastel-purple, #bcabff);
  border-radius: var(--border-radius);
  --variable-text-color: #000;
  --variable-border-color: var(--purple, var(--purple));
  padding: 1rem;
}

.oomi-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.oomi-nav img {
  width: 32px;
  height: 32px;
  display: block;
}
.oomi-nav ul {
  padding: 0.2rem 0.5rem;
  border: 1px solid #fff;
  display: inline-flex;
  border-radius: 2rem;
  gap: 0.5rem;
  font-size: 12px;
  font-family: var(--body-font);
}
.oomi-nav ul li {
  list-style-type: none;
}
.oomi-nav ul li a {
  padding: 0.05rem;
  color: #fff;
  display: inline-block;
}
.oomi-nav ul li.current {
  background: #fff;
  color: #000;
  border-radius: 0.25rem;
  padding: 0.05rem 0.25rem;
}
.oomi-nav ul li.gap {
  padding: 0.05rem 0.25rem;
  color: #fff;
}

#eventbookingarea {
  font-family: var(--body-font);
}

.card .alert-warning {
  margin: 0;
  outline: 0px;
  background-color: #FF4136;
  padding: 0.75rem 1rem;
  --variable-text-color: #fff;
  color: var(--variable-text-color);
}
.card .alert-warning a {
  color: var(--variable-text-color);
  text-decoration: underline;
}

.event-booking-delegate h3 {
  font-size: 20px;
  font-weight: bold;
}

.event-booking-card h3 {
  font-size: 14px;
  margin: 0;
}

.event-booking-upcoming-delegate,
.event-booking-completed-delegate {
  margin: 2rem 0;
  border-radius: 10px;
  background-image: linear-gradient(180deg, #12124f 0%, #010134 100%);
  border: 2px solid #12124f;
  color: #fff;
  padding: 2rem;
}

.event-booking-card,
.event-booking-delegate {
  margin: 2rem 0;
  border-radius: 2rem;
  font-family: var(--body-font);
  background: var(--deep-blue-lighter);
  color: #fff;
  --variable-text-color: #fff;
}
.event-booking-card h2:first-child,
.event-booking-delegate h2:first-child {
  margin-top: 0;
}
.event-booking-card > .card-body,
.event-booking-delegate > .card-body {
  padding: 2rem;
}
.event-booking-card .table-booking-card,
.event-booking-delegate .table-booking-card {
  background: #fff;
  color: #000;
  --variable-text-color: #000;
  border: 2px solid #1E1E84;
  margin: 1rem 0;
  border-radius: 10px;
  overflow: hidden;
}
.event-booking-card .table-booking-card .form-control,
.event-booking-delegate .table-booking-card .form-control {
  border-color: var(--purple) !important;
}
.event-booking-card .table-booking-card.card-table-edit-seat .card-body,
.event-booking-delegate .table-booking-card.card-table-edit-seat .card-body {
  display: block;
}
.event-booking-card .table-booking-card.card-table-edit-seat,
.event-booking-delegate .table-booking-card.card-table-edit-seat {
  background-color: #101066;
  color: #fff;
  --variable-text-color: #fff;
}
.event-booking-card .table-booking-card.card-table-seat,
.event-booking-delegate .table-booking-card.card-table-seat {
  margin: 0;
  border-radius: 0;
}
.event-booking-card .table-booking-card.card-table-seat .card-body,
.event-booking-delegate .table-booking-card.card-table-seat .card-body {
  padding: 0.75rem 1rem;
}
.event-booking-card .table-booking-card.card-table-seat:first-child,
.event-booking-delegate .table-booking-card.card-table-seat:first-child {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.event-booking-card .table-booking-card.card-table-seat:last-child,
.event-booking-delegate .table-booking-card.card-table-seat:last-child {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.event-booking-card .table-booking-card.card-table-seat:not(:first-child),
.event-booking-delegate .table-booking-card.card-table-seat:not(:first-child) {
  border-top-width: 0;
}
.event-booking-card .table-booking-card .card-body,
.event-booking-delegate .table-booking-card .card-body {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  padding: 1rem;
}
@media (max-width: 800px) {
  .event-booking-card .table-booking-card .card-body,
  .event-booking-delegate .table-booking-card .card-body {
    flex-direction: column;
  }
}
.event-booking-card .table-booking-card p,
.event-booking-delegate .table-booking-card p {
  margin: 0;
}
@media (min-width: 800px) {
  .event-booking-card .table-booking-card p,
  .event-booking-delegate .table-booking-card p {
    flex-grow: 1;
  }
}
@media (min-width: 800px) {
  .event-booking-card .table-booking-card input,
  .event-booking-delegate .table-booking-card input {
    width: auto;
  }
}
.event-booking-card .table-booking-card .table-of-seats,
.event-booking-delegate .table-booking-card .table-of-seats {
  font-weight: bold;
  font-size: 18px;
  color: var(--purple);
  display: flex;
  align-items: center;
  gap: 5px;
}
.event-booking-card .table-booking-card .table-of-seats:before,
.event-booking-delegate .table-booking-card .table-of-seats:before {
  content: url(images/seat.svg);
  width: 22px;
  height: 22px;
}
.event-booking-card .table-booking-card .alert,
.event-booking-delegate .table-booking-card .alert {
  border-radius: 0;
}

.line-or {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 14px;
  font-weight: 600;
  margin: 1rem 0;
}
.line-or:before, .line-or:after {
  height: 1px;
  content: "";
  width: auto;
  flex-grow: 1;
  border-top: 1px solid #fff;
}

.event-booking-selected-self {
  margin-top: 1rem;
}

.oomi-badge {
  padding: 7.5px 10px;
  border-radius: 5px;
  font-size: 12px;
  text-transform: uppercase;
  color: #000;
}
.oomi-badge.badge-success {
  background: #b9f7ad;
}
.oomi-badge.badge-warning {
  background: #ffe263;
}

/* we don't want to rely upon elementor only styling so we recreate here */
a.oomi-primary-button, button.oomi-primary-button {
  background-color: #835AFF;
  color: #fff !important;
  border-radius: 100px;
  padding: 7.5px 15px;
  transition: 0.2s linear all;
  border-width: 0;
}
a.oomi-primary-button:hover, button.oomi-primary-button:hover {
  background-color: #010132;
  color: #fff;
}

.event-booking-select-self {
  margin-bottom: 1rem;
}

.wc-block-components-express-payment-continue-rule,
.wc-block-cart__empty-cart__title,
.wp-block-woocommerce-empty-cart-block .wp-block-heading {
  color: #fff;
}

.ioh-member-messages {
  background-color: var(--purple);
  color: var(--white);
  padding: 2rem 1rem;
  display: flex;
  justify-content: center;
}
.ioh-member-messages ul {
  width: var(--container-width);
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 0;
  padding: 0;
  font-family: var(--body-font);
}
.ioh-member-messages ul li {
  padding-left: 0;
  list-style-type: none;
}

.ioh-donation-buttons {
  display: flex;
}

.oomi-mailing-preferences {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: var(--variable-text-color);
  font-family: var(--body-font);
}
.oomi-mailing-preferences .mailing-preference {
  display: grid;
  grid-template-columns: 5rem auto;
  align-items: center;
}

.select2-container {
  box-sizing: border-box;
  display: inline-block;
  margin: 0;
  position: relative;
  vertical-align: middle;
}
.select2-container .select2-selection--single {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  height: 28px;
  user-select: none;
  -webkit-user-select: none;
}
.select2-container .select2-selection--single .select2-selection__rendered {
  display: block;
  padding-left: 8px;
  padding-right: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.select2-container .select2-selection--single .select2-selection__clear {
  background-color: transparent;
  border: none;
  font-size: 1em;
}
.select2-container[dir=rtl] .select2-selection--single .select2-selection__rendered {
  padding-right: 8px;
  padding-left: 20px;
}
.select2-container .select2-selection--multiple {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  min-height: 32px;
  user-select: none;
  -webkit-user-select: none;
}
.select2-container .select2-selection--multiple .select2-selection__rendered {
  display: inline;
  list-style: none;
  padding: 0;
}
.select2-container .select2-selection--multiple .select2-selection__clear {
  background-color: transparent;
  border: none;
  font-size: 1em;
}
.select2-container .select2-search--inline .select2-search__field {
  box-sizing: border-box;
  border: none;
  font-size: 100%;
  margin-top: 5px;
  margin-left: 5px;
  padding: 0;
  max-width: 100%;
  resize: none;
  height: 18px;
  vertical-align: bottom;
  font-family: sans-serif;
  overflow: hidden;
  word-break: keep-all;
}
.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.select2-dropdown {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  box-sizing: border-box;
  display: block;
  position: absolute;
  left: -100000px;
  width: 100%;
  z-index: 1051;
}

.select2-results {
  display: block;
}

.select2-results__options {
  list-style: none;
  margin: 0;
  padding: 0;
}

.select2-results__option {
  padding: 6px;
  user-select: none;
  -webkit-user-select: none;
}

.select2-results__option--selectable {
  cursor: pointer;
}

.select2-container--open .select2-dropdown {
  left: 0;
}

.select2-container--open .select2-dropdown--above {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--open .select2-dropdown--below {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-search--dropdown {
  display: block;
  padding: 4px;
}
.select2-search--dropdown .select2-search__field {
  padding: 4px;
  width: 100%;
  box-sizing: border-box;
}
.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}
.select2-search--dropdown.select2-search--hide {
  display: none;
}

.select2-close-mask {
  border: 0;
  margin: 0;
  padding: 0;
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  min-height: 100%;
  min-width: 100%;
  height: auto;
  width: auto;
  opacity: 0;
  z-index: 99;
  background-color: #fff;
  filter: alpha(opacity=0);
}

.select2-hidden-accessible {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
}

.select2-container--default .select2-selection--single {
  background-color: #fff;
  border: 1px solid #aaa;
  border-radius: 4px;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 28px;
}
.select2-container--default .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  height: 26px;
  margin-right: 20px;
  padding-right: 0px;
}
.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #999;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
}
.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__clear {
  float: left;
}
.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__arrow {
  left: 1px;
  right: auto;
}
.select2-container--default.select2-container--disabled .select2-selection--single {
  background-color: #eee;
  cursor: default;
}
.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
  display: none;
}
.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px;
}
.select2-container--default .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
  padding-bottom: 5px;
  padding-right: 5px;
  position: relative;
}
.select2-container--default .select2-selection--multiple.select2-selection--clearable {
  padding-right: 25px;
}
.select2-container--default .select2-selection--multiple .select2-selection__clear {
  cursor: pointer;
  font-weight: bold;
  height: 20px;
  margin-right: 10px;
  margin-top: 5px;
  position: absolute;
  right: 0;
  padding: 1px;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 4px;
  box-sizing: border-box;
  display: inline-block;
  margin-left: 5px;
  margin-top: 5px;
  padding: 0;
  padding-left: 20px;
  position: relative;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: bottom;
  white-space: nowrap;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice__display {
  cursor: default;
  padding-left: 2px;
  padding-right: 5px;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  background-color: transparent;
  border: none;
  border-right: 1px solid #aaa;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  color: #999;
  cursor: pointer;
  font-size: 1em;
  font-weight: bold;
  padding: 0 4px;
  position: absolute;
  left: 0;
  top: 0;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover, .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:focus {
  background-color: #f1f1f1;
  color: #333;
  outline: none;
}
.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto;
}
.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice__display {
  padding-left: 5px;
  padding-right: 2px;
}
.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove {
  border-left: 1px solid #aaa;
  border-right: none;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__clear {
  float: left;
  margin-left: 10px;
  margin-right: auto;
}
.select2-container--default.select2-container--focus .select2-selection--multiple {
  border: solid black 1px;
  outline: 0;
}
.select2-container--default.select2-container--disabled .select2-selection--multiple {
  background-color: #eee;
  cursor: default;
}
.select2-container--default.select2-container--disabled .select2-selection__choice__remove {
  display: none;
}
.select2-container--default.select2-container--open.select2-container--above .select2-selection--single, .select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.select2-container--default.select2-container--open.select2-container--below .select2-selection--single, .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
}
.select2-container--default .select2-search--inline .select2-search__field {
  background: transparent;
  border: none;
  outline: 0;
  box-shadow: none;
  -webkit-appearance: textfield;
}
.select2-container--default .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}
.select2-container--default .select2-results__option .select2-results__option {
  padding-left: 1em;
}
.select2-container--default .select2-results__option .select2-results__option .select2-results__group {
  padding-left: 0;
}
.select2-container--default .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -1em;
  padding-left: 2em;
}
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -2em;
  padding-left: 3em;
}
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -3em;
  padding-left: 4em;
}
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -4em;
  padding-left: 5em;
}
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -5em;
  padding-left: 6em;
}
.select2-container--default .select2-results__option--group {
  padding: 0;
}
.select2-container--default .select2-results__option--disabled {
  color: #999;
}
.select2-container--default .select2-results__option--selected {
  background-color: #ddd;
}
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #5897fb;
  color: white;
}
.select2-container--default .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px;
}

.select2-container--classic .select2-selection--single {
  background-color: rgb(246.5, 246.5, 246.5);
  border: 1px solid #aaa;
  border-radius: 4px;
  outline: 0;
  background-image: -webkit-linear-gradient(top, white 50%, #eeeeee 100%);
  background-image: -o-linear-gradient(top, white 50%, #eeeeee 100%);
  background-image: linear-gradient(to bottom, white 50%, #eeeeee 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0);
}
.select2-container--classic .select2-selection--single:focus {
  border: 1px solid #5897fb;
}
.select2-container--classic .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 28px;
}
.select2-container--classic .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  height: 26px;
  margin-right: 20px;
}
.select2-container--classic .select2-selection--single .select2-selection__placeholder {
  color: #999;
}
.select2-container--classic .select2-selection--single .select2-selection__arrow {
  background-color: #ddd;
  border: none;
  border-left: 1px solid #aaa;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px;
  background-image: -webkit-linear-gradient(top, #eeeeee 50%, #cccccc 100%);
  background-image: -o-linear-gradient(top, #eeeeee 50%, #cccccc 100%);
  background-image: linear-gradient(to bottom, #eeeeee 50%, #cccccc 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFCCCCCC', GradientType=0);
}
.select2-container--classic .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
}
.select2-container--classic[dir=rtl] .select2-selection--single .select2-selection__clear {
  float: left;
}
.select2-container--classic[dir=rtl] .select2-selection--single .select2-selection__arrow {
  border: none;
  border-right: 1px solid #aaa;
  border-radius: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  left: 1px;
  right: auto;
}
.select2-container--classic.select2-container--open .select2-selection--single {
  border: 1px solid #5897fb;
}
.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow {
  background: transparent;
  border: none;
}
.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px;
}
.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  background-image: -webkit-linear-gradient(top, white 0%, #eeeeee 50%);
  background-image: -o-linear-gradient(top, white 0%, #eeeeee 50%);
  background-image: linear-gradient(to bottom, white 0%, #eeeeee 50%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0);
}
.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background-image: -webkit-linear-gradient(top, #eeeeee 50%, white 100%);
  background-image: -o-linear-gradient(top, #eeeeee 50%, white 100%);
  background-image: linear-gradient(to bottom, #eeeeee 50%, white 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFFFFFFF', GradientType=0);
}
.select2-container--classic .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
  outline: 0;
  padding-bottom: 5px;
  padding-right: 5px;
}
.select2-container--classic .select2-selection--multiple:focus {
  border: 1px solid #5897fb;
}
.select2-container--classic .select2-selection--multiple .select2-selection__clear {
  display: none;
}
.select2-container--classic .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 4px;
  display: inline-block;
  margin-left: 5px;
  margin-top: 5px;
  padding: 0;
}
.select2-container--classic .select2-selection--multiple .select2-selection__choice__display {
  cursor: default;
  padding-left: 2px;
  padding-right: 5px;
}
.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove {
  background-color: transparent;
  border: none;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  color: #888;
  cursor: pointer;
  font-size: 1em;
  font-weight: bold;
  padding: 0 4px;
}
.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #555;
  outline: none;
}
.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto;
}
.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice__display {
  padding-left: 5px;
  padding-right: 2px;
}
.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
.select2-container--classic.select2-container--open .select2-selection--multiple {
  border: 1px solid #5897fb;
}
.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.select2-container--classic .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
  outline: 0;
}
.select2-container--classic .select2-search--inline .select2-search__field {
  outline: 0;
  box-shadow: none;
}
.select2-container--classic .select2-dropdown {
  background-color: white;
  border: 1px solid transparent;
}
.select2-container--classic .select2-dropdown--above {
  border-bottom: none;
}
.select2-container--classic .select2-dropdown--below {
  border-top: none;
}
.select2-container--classic .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}
.select2-container--classic .select2-results__option--group {
  padding: 0;
}
.select2-container--classic .select2-results__option--disabled {
  color: grey;
}
.select2-container--classic .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #3875d7;
  color: white;
}
.select2-container--classic .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px;
}
.select2-container--classic.select2-container--open .select2-dropdown {
  border-color: #5897fb;
}

/* HTML: <div class="loader"></div> */
.loader, *[aria-busy]::after {
  width: 60px;
  aspect-ratio: 2;
  --_g: no-repeat radial-gradient(circle closest-side, var(--purple) 90%, #0000);
  background: var(--_g) 0% 50%, var(--_g) 50% 50%, var(--_g) 100% 50%;
  background-size: 33.3333333333% 50%;
  animation: l3 1s infinite linear;
}

@keyframes l3 {
  20% {
    background-position: 0% 0%, 50% 50%, 100% 50%;
  }
  40% {
    background-position: 0% 100%, 50% 0%, 100% 50%;
  }
  60% {
    background-position: 0% 50%, 50% 100%, 100% 0%;
  }
  80% {
    background-position: 0% 50%, 50% 50%, 100% 100%;
  }
}
@keyframes spinIcon {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.spin-icon svg {
  animation: spinIcon 1.5s linear infinite;
}

.spin {
  animation: spinIcon 1.5s linear infinite;
  width: 22px;
  height: 22px;
}

*[aria-busy] {
  position: relative;
  overflow: hidden;
}
*[aria-busy]:after, *[aria-busy]::before {
  content: "";
  position: absolute;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}
*[aria-busy]::before {
  background-color: rgba(0, 0, 0, 0.6);
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
*[aria-busy]::after {
  /*background-image: url(images/spinner-solid.svg);
  background-size: 2rem 2rem;
  animation: spinIcon 1.5s linear infinite;*/
  pointer-events: none;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}

body[aria-busy]:after, body[aria-busy]::before {
  position: fixed;
}

.visually-hidden {
  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;
}
.visually-hidden:not(caption) {
  position: absolute !important;
}
.visually-hidden * {
  overflow: hidden !important;
}

/* From Uiverse.io by arghyaBiswasDev */
/* The switch - the box around the slider */
.ioh-switch {
  font-size: 17px;
  position: relative;
  display: inline-block;
  width: 3.5em;
  height: 2em;
}

/* Hide default HTML checkbox */
.ioh-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.ioh-switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  border: 1px solid #adb5bd;
  transition: 0.4s;
  border-radius: 30px;
}

.ioh-switch .slider:before {
  position: absolute;
  content: "";
  height: 1.4em;
  width: 1.4em;
  border-radius: 20px;
  left: 0.27em;
  bottom: 0.25em;
  background-color: #adb5bd;
  transition: 0.4s;
}

.ioh-switch input:checked + .slider {
  background-color: var(--purple);
  border: 1px solid var(--purple);
}

.ioh-switch input:focus + .slider {
  box-shadow: 0 0 1px var(--purple);
}

.ioh-switch input:checked + .slider:before {
  transform: translateX(1.4em);
  background-color: #fff;
}

/*# sourceMappingURL=style.css.map */
