.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1060;
  display: none;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none;
}
.modal.fade .modal-dialog {
  transition: transform 0.3s ease-out;
  transform: translate(0, -50px);
}
@media (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    transition: none;
  }
}
.modal.show .modal-dialog {
  transform: none;
}
.modal.modal-static .modal-dialog {
  transform: scale(1.02);
}

.modal-dialog-scrollable {
  height: calc(100% - 1rem);
}
.modal-dialog-scrollable .modal-content {
  max-height: 100%;
  overflow: hidden;
}
.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}

.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - 1rem);
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
  outline: 0;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.modal-backdrop.fade {
  opacity: 0;
}
.modal-backdrop.show {
  opacity: 0.5;
}

.modal-header {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1rem;
  border-bottom: 1px solid #dee2e6;
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}
.modal-header .btn-close {
  padding: 0.5rem 0.5rem;
  margin: -0.5rem -0.5rem -0.5rem auto;
}

.modal-title {
  margin-bottom: 0;
  line-height: 1.5;
}

.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 1rem;
}

.modal-footer {
  display: flex;
  flex-wrap: wrap;
  flex-shrink: 0;
  align-items: center;
  justify-content: flex-end;
  padding: 0.75rem;
  border-top: 1px solid #dee2e6;
  border-bottom-right-radius: calc(0.3rem - 1px);
  border-bottom-left-radius: calc(0.3rem - 1px);
}
.modal-footer > * {
  margin: 0.25rem;
}

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .modal-dialog-scrollable {
    height: calc(100% - 3.5rem);
  }
  .modal-dialog-centered {
    min-height: calc(100% - 3.5rem);
  }
  .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg,
  .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .modal-xl {
    max-width: 1140px;
  }
}
.modal-fullscreen {
  width: 100vw;
  max-width: none;
  height: 100%;
  margin: 0;
}
.modal-fullscreen .modal-content {
  height: 100%;
  border: 0;
  border-radius: 0;
}
.modal-fullscreen .modal-header {
  border-radius: 0;
}
.modal-fullscreen .modal-body {
  overflow-y: auto;
}
.modal-fullscreen .modal-footer {
  border-radius: 0;
}

@media (max-width: 575.98px) {
  .modal-fullscreen-sm-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-sm-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-sm-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-sm-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-sm-down .modal-footer {
    border-radius: 0;
  }
}
@media (max-width: 767.98px) {
  .modal-fullscreen-md-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-md-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-md-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-md-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-md-down .modal-footer {
    border-radius: 0;
  }
}
@media (max-width: 991.98px) {
  .modal-fullscreen-lg-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-lg-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-lg-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-lg-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-lg-down .modal-footer {
    border-radius: 0;
  }
}
@media (max-width: 1199.98px) {
  .modal-fullscreen-xl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-xl-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-xl-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-xl-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-xl-down .modal-footer {
    border-radius: 0;
  }
}
@media (max-width: 1399.98px) {
  .modal-fullscreen-xxl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-xxl-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-xxl-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-xxl-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-xxl-down .modal-footer {
    border-radius: 0;
  }
}
.btn-close {
  box-sizing: content-box;
  width: 1em;
  height: 1em;
  padding: 0.25em 0.25em;
  color: #000;
  background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
  border: 0;
  border-radius: 8px;
  opacity: 0.5;
}
.btn-close:hover {
  color: #000;
  text-decoration: none;
  opacity: 0.75;
}
.btn-close:focus {
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  opacity: 1;
}
.btn-close:disabled, .btn-close.disabled {
  pointer-events: none;
  user-select: none;
  opacity: 0.25;
}

.btn-close-white {
  filter: invert(1) grayscale(100%) brightness(200%);
}

.btn {
  display: inline-block;
  font-weight: 400;
  line-height: 1.2;
  color: #212529;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 12px 24px;
  font-size: clamp(16px, 2.4vw, 19px);
  border-radius: 8px;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }
}
.btn:hover {
  color: #212529;
}
.btn-check:focus + .btn, .btn:focus {
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.btn:disabled, .btn.disabled, fieldset:disabled .btn {
  pointer-events: none;
  opacity: 0.65;
}

.btn-primary, .btn-primary-alt {
  color: #fff;
  background-color: #0d6efd;
  border-color: #0d6efd;
}
.btn-primary:hover, .btn-primary-alt:hover {
  color: #fff;
  background-color: #0b5ed7;
  border-color: #0a58ca;
}
.btn-check:focus + .btn-primary, .btn-check:focus + .btn-primary-alt, .btn-primary:focus, .btn-primary-alt:focus {
  color: #fff;
  background-color: #0b5ed7;
  border-color: #0a58ca;
  box-shadow: 0 0 0 0.25rem rgba(49, 132, 253, 0.5);
}
.btn-check:checked + .btn-primary, .btn-check:checked + .btn-primary-alt, .btn-check:active + .btn-primary, .btn-check:active + .btn-primary-alt, .btn-primary:active, .btn-primary-alt:active, .btn-primary.active, .active.btn-primary-alt, .show > .btn-primary.dropdown-toggle, .show > .dropdown-toggle.btn-primary-alt {
  color: #fff;
  background-color: #0a58ca;
  border-color: #0a53be;
}
.btn-check:checked + .btn-primary:focus, .btn-check:checked + .btn-primary-alt:focus, .btn-check:active + .btn-primary:focus, .btn-check:active + .btn-primary-alt:focus, .btn-primary:active:focus, .btn-primary-alt:active:focus, .btn-primary.active:focus, .active.btn-primary-alt:focus, .show > .btn-primary.dropdown-toggle:focus, .show > .dropdown-toggle.btn-primary-alt:focus {
  box-shadow: 0 0 0 0.25rem rgba(49, 132, 253, 0.5);
}
.btn-primary:disabled, .btn-primary-alt:disabled, .btn-primary.disabled, .disabled.btn-primary-alt {
  color: #fff;
  background-color: #0d6efd;
  border-color: #0d6efd;
}

.btn-secondary {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}
.btn-secondary:hover {
  color: #fff;
  background-color: #5c636a;
  border-color: #565e64;
}
.btn-check:focus + .btn-secondary, .btn-secondary:focus {
  color: #fff;
  background-color: #5c636a;
  border-color: #565e64;
  box-shadow: 0 0 0 0.25rem rgba(130, 138, 145, 0.5);
}
.btn-check:checked + .btn-secondary, .btn-check:active + .btn-secondary, .btn-secondary:active, .btn-secondary.active, .show > .btn-secondary.dropdown-toggle {
  color: #fff;
  background-color: #565e64;
  border-color: #51585e;
}
.btn-check:checked + .btn-secondary:focus, .btn-check:active + .btn-secondary:focus, .btn-secondary:active:focus, .btn-secondary.active:focus, .show > .btn-secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(130, 138, 145, 0.5);
}
.btn-secondary:disabled, .btn-secondary.disabled {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}

.btn-success {
  color: #fff;
  background-color: #198754;
  border-color: #198754;
}
.btn-success:hover {
  color: #fff;
  background-color: #157347;
  border-color: #146c43;
}
.btn-check:focus + .btn-success, .btn-success:focus {
  color: #fff;
  background-color: #157347;
  border-color: #146c43;
  box-shadow: 0 0 0 0.25rem rgba(60, 153, 110, 0.5);
}
.btn-check:checked + .btn-success, .btn-check:active + .btn-success, .btn-success:active, .btn-success.active, .show > .btn-success.dropdown-toggle {
  color: #fff;
  background-color: #146c43;
  border-color: #13653f;
}
.btn-check:checked + .btn-success:focus, .btn-check:active + .btn-success:focus, .btn-success:active:focus, .btn-success.active:focus, .show > .btn-success.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(60, 153, 110, 0.5);
}
.btn-success:disabled, .btn-success.disabled {
  color: #fff;
  background-color: #198754;
  border-color: #198754;
}

.btn-info {
  color: #000;
  background-color: #0dcaf0;
  border-color: #0dcaf0;
}
.btn-info:hover {
  color: #000;
  background-color: #31d2f2;
  border-color: #25cff2;
}
.btn-check:focus + .btn-info, .btn-info:focus {
  color: #000;
  background-color: #31d2f2;
  border-color: #25cff2;
  box-shadow: 0 0 0 0.25rem rgba(11, 172, 204, 0.5);
}
.btn-check:checked + .btn-info, .btn-check:active + .btn-info, .btn-info:active, .btn-info.active, .show > .btn-info.dropdown-toggle {
  color: #000;
  background-color: #3dd5f3;
  border-color: #25cff2;
}
.btn-check:checked + .btn-info:focus, .btn-check:active + .btn-info:focus, .btn-info:active:focus, .btn-info.active:focus, .show > .btn-info.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(11, 172, 204, 0.5);
}
.btn-info:disabled, .btn-info.disabled {
  color: #000;
  background-color: #0dcaf0;
  border-color: #0dcaf0;
}

.btn-warning {
  color: #000;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-warning:hover {
  color: #000;
  background-color: #ffca2c;
  border-color: #ffc720;
}
.btn-check:focus + .btn-warning, .btn-warning:focus {
  color: #000;
  background-color: #ffca2c;
  border-color: #ffc720;
  box-shadow: 0 0 0 0.25rem rgba(217, 164, 6, 0.5);
}
.btn-check:checked + .btn-warning, .btn-check:active + .btn-warning, .btn-warning:active, .btn-warning.active, .show > .btn-warning.dropdown-toggle {
  color: #000;
  background-color: #ffcd39;
  border-color: #ffc720;
}
.btn-check:checked + .btn-warning:focus, .btn-check:active + .btn-warning:focus, .btn-warning:active:focus, .btn-warning.active:focus, .show > .btn-warning.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(217, 164, 6, 0.5);
}
.btn-warning:disabled, .btn-warning.disabled {
  color: #000;
  background-color: #ffc107;
  border-color: #ffc107;
}

.btn-danger {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}
.btn-danger:hover {
  color: #fff;
  background-color: #bb2d3b;
  border-color: #b02a37;
}
.btn-check:focus + .btn-danger, .btn-danger:focus {
  color: #fff;
  background-color: #bb2d3b;
  border-color: #b02a37;
  box-shadow: 0 0 0 0.25rem rgba(225, 83, 97, 0.5);
}
.btn-check:checked + .btn-danger, .btn-check:active + .btn-danger, .btn-danger:active, .btn-danger.active, .show > .btn-danger.dropdown-toggle {
  color: #fff;
  background-color: #b02a37;
  border-color: #a52834;
}
.btn-check:checked + .btn-danger:focus, .btn-check:active + .btn-danger:focus, .btn-danger:active:focus, .btn-danger.active:focus, .show > .btn-danger.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(225, 83, 97, 0.5);
}
.btn-danger:disabled, .btn-danger.disabled {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}

.btn-light {
  color: #000;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-light:hover {
  color: #000;
  background-color: #f9fafb;
  border-color: #f9fafb;
}
.btn-check:focus + .btn-light, .btn-light:focus {
  color: #000;
  background-color: #f9fafb;
  border-color: #f9fafb;
  box-shadow: 0 0 0 0.25rem rgba(211, 212, 213, 0.5);
}
.btn-check:checked + .btn-light, .btn-check:active + .btn-light, .btn-light:active, .btn-light.active, .show > .btn-light.dropdown-toggle {
  color: #000;
  background-color: #f9fafb;
  border-color: #f9fafb;
}
.btn-check:checked + .btn-light:focus, .btn-check:active + .btn-light:focus, .btn-light:active:focus, .btn-light.active:focus, .show > .btn-light.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(211, 212, 213, 0.5);
}
.btn-light:disabled, .btn-light.disabled {
  color: #000;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

.btn-dark, .btn-dark-alt {
  color: #fff;
  background-color: #212529;
  border-color: #212529;
}
.btn-dark:hover, .btn-dark-alt:hover {
  color: #fff;
  background-color: #1c1f23;
  border-color: #1a1e21;
}
.btn-check:focus + .btn-dark, .btn-check:focus + .btn-dark-alt, .btn-dark:focus, .btn-dark-alt:focus {
  color: #fff;
  background-color: #1c1f23;
  border-color: #1a1e21;
  box-shadow: 0 0 0 0.25rem rgba(66, 70, 73, 0.5);
}
.btn-check:checked + .btn-dark, .btn-check:checked + .btn-dark-alt, .btn-check:active + .btn-dark, .btn-check:active + .btn-dark-alt, .btn-dark:active, .btn-dark-alt:active, .btn-dark.active, .active.btn-dark-alt, .show > .btn-dark.dropdown-toggle, .show > .dropdown-toggle.btn-dark-alt {
  color: #fff;
  background-color: #1a1e21;
  border-color: #191c1f;
}
.btn-check:checked + .btn-dark:focus, .btn-check:checked + .btn-dark-alt:focus, .btn-check:active + .btn-dark:focus, .btn-check:active + .btn-dark-alt:focus, .btn-dark:active:focus, .btn-dark-alt:active:focus, .btn-dark.active:focus, .active.btn-dark-alt:focus, .show > .btn-dark.dropdown-toggle:focus, .show > .dropdown-toggle.btn-dark-alt:focus {
  box-shadow: 0 0 0 0.25rem rgba(66, 70, 73, 0.5);
}
.btn-dark:disabled, .btn-dark-alt:disabled, .btn-dark.disabled, .disabled.btn-dark-alt {
  color: #fff;
  background-color: #212529;
  border-color: #212529;
}

.btn-outline-primary, .btn-outline-primary-alt {
  color: #0d6efd;
  border-color: #0d6efd;
}
.btn-outline-primary:hover, .btn-outline-primary-alt:hover {
  color: #fff;
  background-color: #0d6efd;
  border-color: #0d6efd;
}
.btn-check:focus + .btn-outline-primary, .btn-check:focus + .btn-outline-primary-alt, .btn-outline-primary:focus, .btn-outline-primary-alt:focus {
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.5);
}
.btn-check:checked + .btn-outline-primary, .btn-check:checked + .btn-outline-primary-alt, .btn-check:active + .btn-outline-primary, .btn-check:active + .btn-outline-primary-alt, .btn-outline-primary:active, .btn-outline-primary-alt:active, .btn-outline-primary.active, .active.btn-outline-primary-alt, .btn-outline-primary.dropdown-toggle.show, .dropdown-toggle.show.btn-outline-primary-alt {
  color: #fff;
  background-color: #0d6efd;
  border-color: #0d6efd;
}
.btn-check:checked + .btn-outline-primary:focus, .btn-check:checked + .btn-outline-primary-alt:focus, .btn-check:active + .btn-outline-primary:focus, .btn-check:active + .btn-outline-primary-alt:focus, .btn-outline-primary:active:focus, .btn-outline-primary-alt:active:focus, .btn-outline-primary.active:focus, .active.btn-outline-primary-alt:focus, .btn-outline-primary.dropdown-toggle.show:focus, .dropdown-toggle.show.btn-outline-primary-alt:focus {
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.5);
}
.btn-outline-primary:disabled, .btn-outline-primary-alt:disabled, .btn-outline-primary.disabled, .disabled.btn-outline-primary-alt {
  color: #0d6efd;
  background-color: transparent;
}

.btn-outline-secondary, .btn-outline-secondary-alt {
  color: #6c757d;
  border-color: #6c757d;
}
.btn-outline-secondary:hover, .btn-outline-secondary-alt:hover {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}
.btn-check:focus + .btn-outline-secondary, .btn-check:focus + .btn-outline-secondary-alt, .btn-outline-secondary:focus, .btn-outline-secondary-alt:focus {
  box-shadow: 0 0 0 0.25rem rgba(108, 117, 125, 0.5);
}
.btn-check:checked + .btn-outline-secondary, .btn-check:checked + .btn-outline-secondary-alt, .btn-check:active + .btn-outline-secondary, .btn-check:active + .btn-outline-secondary-alt, .btn-outline-secondary:active, .btn-outline-secondary-alt:active, .btn-outline-secondary.active, .active.btn-outline-secondary-alt, .btn-outline-secondary.dropdown-toggle.show, .dropdown-toggle.show.btn-outline-secondary-alt {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}
.btn-check:checked + .btn-outline-secondary:focus, .btn-check:checked + .btn-outline-secondary-alt:focus, .btn-check:active + .btn-outline-secondary:focus, .btn-check:active + .btn-outline-secondary-alt:focus, .btn-outline-secondary:active:focus, .btn-outline-secondary-alt:active:focus, .btn-outline-secondary.active:focus, .active.btn-outline-secondary-alt:focus, .btn-outline-secondary.dropdown-toggle.show:focus, .dropdown-toggle.show.btn-outline-secondary-alt:focus {
  box-shadow: 0 0 0 0.25rem rgba(108, 117, 125, 0.5);
}
.btn-outline-secondary:disabled, .btn-outline-secondary-alt:disabled, .btn-outline-secondary.disabled, .disabled.btn-outline-secondary-alt {
  color: #6c757d;
  background-color: transparent;
}

.btn-outline-success {
  color: #198754;
  border-color: #198754;
}
.btn-outline-success:hover {
  color: #fff;
  background-color: #198754;
  border-color: #198754;
}
.btn-check:focus + .btn-outline-success, .btn-outline-success:focus {
  box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.5);
}
.btn-check:checked + .btn-outline-success, .btn-check:active + .btn-outline-success, .btn-outline-success:active, .btn-outline-success.active, .btn-outline-success.dropdown-toggle.show {
  color: #fff;
  background-color: #198754;
  border-color: #198754;
}
.btn-check:checked + .btn-outline-success:focus, .btn-check:active + .btn-outline-success:focus, .btn-outline-success:active:focus, .btn-outline-success.active:focus, .btn-outline-success.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.5);
}
.btn-outline-success:disabled, .btn-outline-success.disabled {
  color: #198754;
  background-color: transparent;
}

.btn-outline-info {
  color: #0dcaf0;
  border-color: #0dcaf0;
}
.btn-outline-info:hover {
  color: #000;
  background-color: #0dcaf0;
  border-color: #0dcaf0;
}
.btn-check:focus + .btn-outline-info, .btn-outline-info:focus {
  box-shadow: 0 0 0 0.25rem rgba(13, 202, 240, 0.5);
}
.btn-check:checked + .btn-outline-info, .btn-check:active + .btn-outline-info, .btn-outline-info:active, .btn-outline-info.active, .btn-outline-info.dropdown-toggle.show {
  color: #000;
  background-color: #0dcaf0;
  border-color: #0dcaf0;
}
.btn-check:checked + .btn-outline-info:focus, .btn-check:active + .btn-outline-info:focus, .btn-outline-info:active:focus, .btn-outline-info.active:focus, .btn-outline-info.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.25rem rgba(13, 202, 240, 0.5);
}
.btn-outline-info:disabled, .btn-outline-info.disabled {
  color: #0dcaf0;
  background-color: transparent;
}

.btn-outline-warning {
  color: #ffc107;
  border-color: #ffc107;
}
.btn-outline-warning:hover {
  color: #000;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-check:focus + .btn-outline-warning, .btn-outline-warning:focus {
  box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.5);
}
.btn-check:checked + .btn-outline-warning, .btn-check:active + .btn-outline-warning, .btn-outline-warning:active, .btn-outline-warning.active, .btn-outline-warning.dropdown-toggle.show {
  color: #000;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-check:checked + .btn-outline-warning:focus, .btn-check:active + .btn-outline-warning:focus, .btn-outline-warning:active:focus, .btn-outline-warning.active:focus, .btn-outline-warning.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.5);
}
.btn-outline-warning:disabled, .btn-outline-warning.disabled {
  color: #ffc107;
  background-color: transparent;
}

.btn-outline-danger {
  color: #dc3545;
  border-color: #dc3545;
}
.btn-outline-danger:hover {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}
.btn-check:focus + .btn-outline-danger, .btn-outline-danger:focus {
  box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.5);
}
.btn-check:checked + .btn-outline-danger, .btn-check:active + .btn-outline-danger, .btn-outline-danger:active, .btn-outline-danger.active, .btn-outline-danger.dropdown-toggle.show {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}
.btn-check:checked + .btn-outline-danger:focus, .btn-check:active + .btn-outline-danger:focus, .btn-outline-danger:active:focus, .btn-outline-danger.active:focus, .btn-outline-danger.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.5);
}
.btn-outline-danger:disabled, .btn-outline-danger.disabled {
  color: #dc3545;
  background-color: transparent;
}

.btn-outline-light {
  color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-outline-light:hover {
  color: #000;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-check:focus + .btn-outline-light, .btn-outline-light:focus {
  box-shadow: 0 0 0 0.25rem rgba(248, 249, 250, 0.5);
}
.btn-check:checked + .btn-outline-light, .btn-check:active + .btn-outline-light, .btn-outline-light:active, .btn-outline-light.active, .btn-outline-light.dropdown-toggle.show {
  color: #000;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-check:checked + .btn-outline-light:focus, .btn-check:active + .btn-outline-light:focus, .btn-outline-light:active:focus, .btn-outline-light.active:focus, .btn-outline-light.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.25rem rgba(248, 249, 250, 0.5);
}
.btn-outline-light:disabled, .btn-outline-light.disabled {
  color: #f8f9fa;
  background-color: transparent;
}

.btn-outline-dark, .btn-outline-dark-alt, .btn-outline-dark-reverse {
  color: #212529;
  border-color: #212529;
}
.btn-outline-dark:hover, .btn-outline-dark-alt:hover, .btn-outline-dark-reverse:hover {
  color: #fff;
  background-color: #212529;
  border-color: #212529;
}
.btn-check:focus + .btn-outline-dark, .btn-check:focus + .btn-outline-dark-alt, .btn-check:focus + .btn-outline-dark-reverse, .btn-outline-dark:focus, .btn-outline-dark-alt:focus, .btn-outline-dark-reverse:focus {
  box-shadow: 0 0 0 0.25rem rgba(33, 37, 41, 0.5);
}
.btn-check:checked + .btn-outline-dark, .btn-check:checked + .btn-outline-dark-alt, .btn-check:checked + .btn-outline-dark-reverse, .btn-check:active + .btn-outline-dark, .btn-check:active + .btn-outline-dark-alt, .btn-check:active + .btn-outline-dark-reverse, .btn-outline-dark:active, .btn-outline-dark-alt:active, .btn-outline-dark-reverse:active, .btn-outline-dark.active, .active.btn-outline-dark-alt, .active.btn-outline-dark-reverse, .btn-outline-dark.dropdown-toggle.show, .dropdown-toggle.show.btn-outline-dark-alt, .dropdown-toggle.show.btn-outline-dark-reverse {
  color: #fff;
  background-color: #212529;
  border-color: #212529;
}
.btn-check:checked + .btn-outline-dark:focus, .btn-check:checked + .btn-outline-dark-alt:focus, .btn-check:checked + .btn-outline-dark-reverse:focus, .btn-check:active + .btn-outline-dark:focus, .btn-check:active + .btn-outline-dark-alt:focus, .btn-check:active + .btn-outline-dark-reverse:focus, .btn-outline-dark:active:focus, .btn-outline-dark-alt:active:focus, .btn-outline-dark-reverse:active:focus, .btn-outline-dark.active:focus, .active.btn-outline-dark-alt:focus, .active.btn-outline-dark-reverse:focus, .btn-outline-dark.dropdown-toggle.show:focus, .dropdown-toggle.show.btn-outline-dark-alt:focus, .dropdown-toggle.show.btn-outline-dark-reverse:focus {
  box-shadow: 0 0 0 0.25rem rgba(33, 37, 41, 0.5);
}
.btn-outline-dark:disabled, .btn-outline-dark-alt:disabled, .btn-outline-dark-reverse:disabled, .btn-outline-dark.disabled, .disabled.btn-outline-dark-alt, .disabled.btn-outline-dark-reverse {
  color: #212529;
  background-color: transparent;
}

.btn-link, .btn-link-alt {
  font-weight: 400;
  color: #0d6efd;
  text-decoration: underline;
}
.btn-link:hover, .btn-link-alt:hover {
  color: #0a58ca;
}
.btn-link:disabled, .btn-link-alt:disabled, .btn-link.disabled, .disabled.btn-link-alt {
  color: #6c757d;
}

.btn-lg, .btn-group-lg > .btn {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  border-radius: 0.3rem;
}

.btn-sm, .btn-group-sm > .btn {
  padding: 8px 18px;
  font-size: clamp(14px, 2.5vw, 16px);
  border-radius: 0.2rem;
}

.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-flex;
  vertical-align: middle;
}
.btn-group > .btn,
.btn-group-vertical > .btn {
  position: relative;
  flex: 1 1 auto;
}
.btn-group > .btn-check:checked + .btn,
.btn-group > .btn-check:focus + .btn,
.btn-group > .btn:hover,
.btn-group > .btn:focus,
.btn-group > .btn:active,
.btn-group > .btn.active,
.btn-group-vertical > .btn-check:checked + .btn,
.btn-group-vertical > .btn-check:focus + .btn,
.btn-group-vertical > .btn:hover,
.btn-group-vertical > .btn:focus,
.btn-group-vertical > .btn:active,
.btn-group-vertical > .btn.active {
  z-index: 1;
}

.btn-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.btn-toolbar .input-group {
  width: auto;
}

.btn-group > .btn:not(:first-child),
.btn-group > .btn-group:not(:first-child) {
  margin-left: -1px;
}
.btn-group > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group > .btn-group:not(:last-child) > .btn {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.btn-group > .btn:nth-child(n+3),
.btn-group > :not(.btn-check) + .btn,
.btn-group > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.dropdown-toggle-split {
  padding-right: 18px;
  padding-left: 18px;
}
.dropdown-toggle-split::after, .dropup .dropdown-toggle-split::after, .dropend .dropdown-toggle-split::after {
  margin-left: 0;
}
.dropstart .dropdown-toggle-split::before {
  margin-right: 0;
}

.btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split {
  padding-right: 13.5px;
  padding-left: 13.5px;
}

.btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split {
  padding-right: 0.75rem;
  padding-left: 0.75rem;
}

.btn-group-vertical {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group {
  width: 100%;
}
.btn-group-vertical > .btn:not(:first-child),
.btn-group-vertical > .btn-group:not(:first-child) {
  margin-top: -1px;
}
.btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group-vertical > .btn-group:not(:last-child) > .btn {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn ~ .btn,
.btn-group-vertical > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.fade {
  transition: opacity 0.15s linear;
}
@media (prefers-reduced-motion: reduce) {
  .fade {
    transition: none;
  }
}
.fade:not(.show) {
  opacity: 0;
}

.collapse:not(.show) {
  display: none;
}

.collapsing {
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
  .collapsing {
    transition: none;
  }
}

.accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  color: #212529;
  text-align: left;
  background-color: #fff;
  border: 0;
  border-radius: 0;
  overflow-anchor: none;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s ease;
}
@media (prefers-reduced-motion: reduce) {
  .accordion-button {
    transition: none;
  }
}
.accordion-button:not(.collapsed) {
  color: #0c63e4;
  background-color: #e7f1ff;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);
}
.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230c63e4'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transform: rotate(-180deg);
}
.accordion-button::after {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-left: auto;
  content: "";
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-size: 1.25rem;
  transition: transform 0.2s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .accordion-button::after {
    transition: none;
  }
}
.accordion-button:hover {
  z-index: 2;
}
.accordion-button:focus {
  z-index: 3;
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.accordion-header {
  margin-bottom: 0;
}

.accordion-item {
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.125);
}
.accordion-item:first-of-type {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
.accordion-item:first-of-type .accordion-button {
  border-top-left-radius: 7px;
  border-top-right-radius: 7px;
}
.accordion-item:not(:first-of-type) {
  border-top: 0;
}
.accordion-item:last-of-type {
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
}
.accordion-item:last-of-type .accordion-button.collapsed {
  border-bottom-right-radius: 7px;
  border-bottom-left-radius: 7px;
}
.accordion-item:last-of-type .accordion-collapse {
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
}

.accordion-body {
  padding: 1rem 1.25rem;
}

.accordion-flush .accordion-collapse {
  border-width: 0;
}
.accordion-flush .accordion-item {
  border-right: 0;
  border-left: 0;
  border-radius: 0;
}
.accordion-flush .accordion-item:first-child {
  border-top: 0;
}
.accordion-flush .accordion-item:last-child {
  border-bottom: 0;
}
.accordion-flush .accordion-item .accordion-button {
  border-radius: 0;
}

.dropup,
.dropend,
.dropdown,
.dropstart {
  position: relative;
}

.dropdown-toggle {
  white-space: nowrap;
}
.dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}
.dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropdown-menu {
  position: absolute;
  z-index: 1000;
  display: none;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0;
  font-size: 1rem;
  color: #212529;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 8px;
}
.dropdown-menu[data-bs-popper] {
  top: 100%;
  left: 0;
  margin-top: 0.125rem;
}

.dropdown-menu-start {
  --bs-position: start;
}
.dropdown-menu-start[data-bs-popper] {
  right: auto;
  left: 0;
}

.dropdown-menu-end {
  --bs-position: end;
}
.dropdown-menu-end[data-bs-popper] {
  right: 0;
  left: auto;
}

@media (min-width: 576px) {
  .dropdown-menu-sm-start {
    --bs-position: start;
  }
  .dropdown-menu-sm-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-sm-end {
    --bs-position: end;
  }
  .dropdown-menu-sm-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 768px) {
  .dropdown-menu-md-start {
    --bs-position: start;
  }
  .dropdown-menu-md-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-md-end {
    --bs-position: end;
  }
  .dropdown-menu-md-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 992px) {
  .dropdown-menu-lg-start {
    --bs-position: start;
  }
  .dropdown-menu-lg-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-lg-end {
    --bs-position: end;
  }
  .dropdown-menu-lg-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 1200px) {
  .dropdown-menu-xl-start {
    --bs-position: start;
  }
  .dropdown-menu-xl-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-xl-end {
    --bs-position: end;
  }
  .dropdown-menu-xl-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 1400px) {
  .dropdown-menu-xxl-start {
    --bs-position: start;
  }
  .dropdown-menu-xxl-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-xxl-end {
    --bs-position: end;
  }
  .dropdown-menu-xxl-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
.dropup .dropdown-menu[data-bs-popper] {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: 0.125rem;
}
.dropup .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0;
  border-right: 0.3em solid transparent;
  border-bottom: 0.3em solid;
  border-left: 0.3em solid transparent;
}
.dropup .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropend .dropdown-menu[data-bs-popper] {
  top: 0;
  right: auto;
  left: 100%;
  margin-top: 0;
  margin-left: 0.125rem;
}
.dropend .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0;
  border-bottom: 0.3em solid transparent;
  border-left: 0.3em solid;
}
.dropend .dropdown-toggle:empty::after {
  margin-left: 0;
}
.dropend .dropdown-toggle::after {
  vertical-align: 0;
}

.dropstart .dropdown-menu[data-bs-popper] {
  top: 0;
  right: 100%;
  left: auto;
  margin-top: 0;
  margin-right: 0.125rem;
}
.dropstart .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
}
.dropstart .dropdown-toggle::after {
  display: none;
}
.dropstart .dropdown-toggle::before {
  display: inline-block;
  margin-right: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0.3em solid;
  border-bottom: 0.3em solid transparent;
}
.dropstart .dropdown-toggle:empty::after {
  margin-left: 0;
}
.dropstart .dropdown-toggle::before {
  vertical-align: 0;
}

.dropdown-divider {
  height: 0;
  margin: 0.5rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: 0.25rem 1rem;
  clear: both;
  font-weight: 400;
  color: #212529;
  text-align: inherit;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}
.dropdown-item:hover, .dropdown-item:focus {
  color: #1e2125;
  background-color: #e9ecef;
}
.dropdown-item.active, .dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: #0d6efd;
}
.dropdown-item.disabled, .dropdown-item:disabled {
  color: #adb5bd;
  pointer-events: none;
  background-color: transparent;
}

.dropdown-menu.show {
  display: block;
}

.dropdown-header {
  display: block;
  padding: 0.5rem 1rem;
  margin-bottom: 0;
  font-size: 0.875rem;
  color: #6c757d;
  white-space: nowrap;
}

.dropdown-item-text {
  display: block;
  padding: 0.25rem 1rem;
  color: #212529;
}

.dropdown-menu-dark {
  color: #dee2e6;
  background-color: #343a40;
  border-color: rgba(0, 0, 0, 0.15);
}
.dropdown-menu-dark .dropdown-item {
  color: #dee2e6;
}
.dropdown-menu-dark .dropdown-item:hover, .dropdown-menu-dark .dropdown-item:focus {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.15);
}
.dropdown-menu-dark .dropdown-item.active, .dropdown-menu-dark .dropdown-item:active {
  color: #fff;
  background-color: #0d6efd;
}
.dropdown-menu-dark .dropdown-item.disabled, .dropdown-menu-dark .dropdown-item:disabled {
  color: #adb5bd;
}
.dropdown-menu-dark .dropdown-divider {
  border-color: rgba(0, 0, 0, 0.15);
}
.dropdown-menu-dark .dropdown-item-text {
  color: #dee2e6;
}
.dropdown-menu-dark .dropdown-header {
  color: #adb5bd;
}

.popover {
  position: absolute;
  top: 0;
  left: 0 /* rtl:ignore */;
  z-index: 1070;
  display: block;
  max-width: 276px;
  font-family: var(--bs-font-sans-serif);
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
  font-size: 0.875rem;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
}
.popover .popover-arrow {
  position: absolute;
  display: block;
  width: 1rem;
  height: 0.5rem;
}
.popover .popover-arrow::before, .popover .popover-arrow::after {
  position: absolute;
  display: block;
  content: "";
  border-color: transparent;
  border-style: solid;
}

.bs-popover-top > .popover-arrow, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow {
  bottom: calc(-0.5rem - 1px);
}
.bs-popover-top > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::before {
  bottom: 0;
  border-width: 0.5rem 0.5rem 0;
  border-top-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-top > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::after {
  bottom: 1px;
  border-width: 0.5rem 0.5rem 0;
  border-top-color: #fff;
}

.bs-popover-end > .popover-arrow, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow {
  left: calc(-0.5rem - 1px);
  width: 0.5rem;
  height: 1rem;
}
.bs-popover-end > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::before {
  left: 0;
  border-width: 0.5rem 0.5rem 0.5rem 0;
  border-right-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-end > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::after {
  left: 1px;
  border-width: 0.5rem 0.5rem 0.5rem 0;
  border-right-color: #fff;
}

.bs-popover-bottom > .popover-arrow, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow {
  top: calc(-0.5rem - 1px);
}
.bs-popover-bottom > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::before {
  top: 0;
  border-width: 0 0.5rem 0.5rem 0.5rem;
  border-bottom-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-bottom > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::after {
  top: 1px;
  border-width: 0 0.5rem 0.5rem 0.5rem;
  border-bottom-color: #fff;
}
.bs-popover-bottom .popover-header::before, .bs-popover-auto[data-popper-placement^=bottom] .popover-header::before {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: 1rem;
  margin-left: -0.5rem;
  content: "";
  border-bottom: 1px solid #f0f0f0;
}

.bs-popover-start > .popover-arrow, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow {
  right: calc(-0.5rem - 1px);
  width: 0.5rem;
  height: 1rem;
}
.bs-popover-start > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::before {
  right: 0;
  border-width: 0.5rem 0 0.5rem 0.5rem;
  border-left-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-start > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::after {
  right: 1px;
  border-width: 0.5rem 0 0.5rem 0.5rem;
  border-left-color: #fff;
}

.popover-header {
  padding: 0.5rem 1rem;
  margin-bottom: 0;
  font-size: 1rem;
  background-color: #f0f0f0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}
.popover-header:empty {
  display: none;
}

.popover-body {
  padding: 1rem 1rem;
  color: #212529;
}

.modal .modal-dialog .modal-content {
  border: none;
  box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.25);
  border-radius: 16px;
  padding: 24px 24px;
}
.modal .modal-dialog .modal-content .modal-header {
  padding: 0 0 10px;
  border-bottom: none;
}
.modal .modal-dialog .modal-content .modal-header .modal-title {
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.1; /* 110% */
  margin: 0;
}
.modal .modal-dialog .modal-content .btn-close {
  background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='17' viewBox='0 0 18 17' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M16.5942 1.83915C16.809 1.62434 16.809 1.27607 16.5942 1.06125C16.3795 0.846444 16.0313 0.846444 15.8165 1.06125L8.99977 7.87942L2.18304 1.06125C1.96827 0.846444 1.62007 0.846444 1.4053 1.06125C1.19054 1.27607 1.19054 1.62434 1.4053 1.83915L8.22204 8.65732L1.06098 15.8199C0.846211 16.0347 0.846211 16.383 1.06098 16.5978C1.27574 16.8126 1.62395 16.8126 1.83871 16.5978L8.99977 9.43522L16.1608 16.5978C16.3756 16.8126 16.7238 16.8126 16.9386 16.5978C17.1533 16.383 17.1533 16.0347 16.9386 15.8199L9.77751 8.65732L16.5942 1.83915Z' fill='%23A0A5AB'/%3E%3C/svg%3E") center/1em auto no-repeat;
}
.modal .modal-dialog .modal-content .modal-body {
  padding: 0;
}
.modal .modal-dialog .modal-content .modal-footer {
  padding: 10px 0 0;
  border-top: none;
}

.btn-dark-alt {
  color: #FFFFFF;
  background-color: #2F2F3E;
  border: none;
}
.btn-dark-alt a {
  color: #FFFFFF;
}
.btn-dark-alt:hover, .btn-dark-alt:active, .btn-dark-alt:focus {
  background-color: rgba(47, 47, 62, 0.6);
}

.btn-primary-alt {
  background-color: #A4C3EE;
  color: #282855;
  border: none;
}
.btn-primary-alt a {
  color: #487DC7;
}
.btn-primary-alt:hover {
  color: #A4C3EE;
  background-color: #487DC7;
}
.btn-primary-alt:active, .btn-primary-alt:focus {
  color: #FFFFFF;
  background-color: #1A4D93;
  box-shadow: none;
}
.btn-primary-alt:active:focus {
  box-shadow: none;
}
.btn-primary-alt:disabled {
  background-color: #CED4DA;
  color: #F7F7F7;
  opacity: 1;
}

.btn-outline-dark-alt {
  border: 1px solid #2F2F3E;
  color: #2F2F3E;
}
.btn-outline-dark-alt:hover {
  color: #FFFFFF;
  background: #2F2F3E;
}

.btn-outline-secondary-alt {
  border: 1px solid #A0A5AB;
  color: #A0A5AB;
}
.btn-outline-secondary-alt:hover {
  color: #FFFFFF;
  background: #A0A5AB;
  border: 1px solid #A0A5AB;
}

.btn-link-alt {
  color: #2F2F3E;
  background-color: transparent;
  border: none;
  padding: 0;
  text-decoration: none;
  text-align: start;
  font-size: 16px;
}
.btn-link-alt:hover, .btn-link-alt:active, .btn-link-alt:focus {
  color: #487DC7;
  box-shadow: none;
}

.btn-outline-dark-reverse {
  border-color: transparent;
  color: #2F2F3E;
  padding: 5px;
  font-size: 24px;
}
.btn-outline-dark-reverse:hover {
  color: #2F2F3E;
  background: none;
  border: 1px solid #2F2F3E;
}
.btn-outline-dark-reverse:hover, .btn-outline-dark-reverse:active, .btn-outline-dark-reverse:focus {
  box-shadow: none;
}

.btn-outline-primary-alt {
  border: 1px solid #487DC7;
  color: #487DC7;
}
.btn-outline-primary-alt:hover {
  color: #FFFFFF;
  background: #487DC7;
  border: 1px solid #487DC7;
}

.btn-hint {
  padding: 0;
  border: 1px solid #CED4DA;
  border-radius: 50% !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  width: 12px;
  height: 12px;
  margin-bottom: 4px;
  margin-left: 4px;
}
.btn-hint:hover, .btn-hint:active, .btn-hint:focus {
  box-shadow: none;
}

.btn-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-icon:hover {
  color: #2F2F3E;
  background: none;
  border: 1px solid transparent;
}
.btn-icon:hover i {
  opacity: 0.6;
}

.btn-cart {
  position: relative;
}
.btn-cart:hover svg {
  fill: #FD6368;
}
.btn-cart .basket-count {
  height: 16px;
  min-width: 16px;
  position: absolute;
  right: 4px;
  top: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  background: #ff4c4c;
  border-radius: 50%;
  font-size: 9px;
}
.btn-cart i {
  font-size: 26px;
}

.btn-price-list {
  padding: 5px 8px;
  background: #D1E3FD;
}
.buttons-container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/*---old---*/
.link {
  cursor: pointer;
  transition: 0.3s;
}
.link.color--c-main {
  border-bottom: 0.8px solid transparent;
}

.btn--disabled {
  pointer-events: none;
  background: #CED4DA;
  color: #F7F7F7;
}

.js-add-to-cart.active {
  background: #a5d2a0 !important;
  color: #FFFFFF !important;
}
.js-add-to-cart.disabled {
  background: #CED4DA !important;
  color: #A0A5AB !important;
  pointer-events: none;
}

.favorite__button {
  position: absolute;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.favorite__button svg {
  fill: white;
  stroke: #CED4DA;
  fill-opacity: 0.3;
}
.favorite__button.added svg {
  fill: #968BE5;
  stroke: #968BE5;
  fill-opacity: 1;
}

@media (hover: hover) {
  .link:hover {
    color: #487DC7;
  }
  a:hover .link {
    color: #487DC7;
  }
  a:hover .link.color--light {
    color: #2F2F3E;
  }
  .link.color--light:hover {
    color: #2F2F3E;
  }
  .btn.btn--main:hover {
    color: #E2DDFE;
    background-color: #4E48A0;
  }
  .btn.btn--border:hover {
    color: #FFFFFF;
    background: #2F2F3E;
  }
  .btn.btn--gray:hover {
    color: #FFFFFF;
    background: #A0A5AB;
  }
  .btn.btn--black:hover {
    opacity: 0.6;
  }
}
body {
  display: flex;
  flex-direction: column;
  color: #2F2F3E;
  font-family: "Commissioner";
  letter-spacing: 0;
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
}

.body-fixed {
  overflow: hidden;
}

.container {
  width: 1320px;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.h1 {
  font-size: 40px;
  line-height: 50px;
  font-weight: 700;
}

.h2 {
  font-size: 32px;
  line-height: 42px;
  font-weight: 600;
}

.h3 {
  font-size: 24px;
  line-height: 32px;
  font-weight: 600;
}

.h4 {
  font-size: 20px;
  line-height: 22px;
  font-weight: 600;
}

.h5 {
  font-size: 15px;
  line-height: 18px;
  font-weight: 700;
}

.p1 {
  font-size: 22px;
  line-height: 30px;
}

.p2 {
  font-size: 18px;
  line-height: 26px;
}

.p3 {
  font-size: 16px;
  line-height: 22px;
}

.p4 {
  font-size: 14px;
  line-height: 16px;
}

.bold {
  font-weight: 700;
}

.color--c-main {
  color: #487DC7;
}

.color--light {
  color: #A0A5AB;
}

.color--red {
  color: #ff4c4c;
}

.col--main {
  width: 960px;
}

.col--side {
  width: 300px;
}

.row--flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}

.rating {
  width: fit-content;
  position: relative;
}

.rating-full {
  display: flex;
  column-gap: 4px;
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
}

.rating-empty {
  display: flex;
  column-gap: 4px;
}

.custom-accordion .custom-accordion-item.open .custom-accordion-button.active-color {
  color: #487DC7;
}
.custom-accordion .custom-accordion-item.open .custom-accordion-button:after {
  transform: rotate(-180deg);
}
.custom-accordion .custom-accordion-item.open .custom-accordion-collapse {
  display: flex;
  height: auto;
  opacity: 1;
}
.custom-accordion .custom-accordion-item .custom-accordion-button {
  display: flex;
  justify-content: space-between;
  position: relative;
  align-items: center;
  gap: 10px;
}
.custom-accordion .custom-accordion-item .custom-accordion-button:after {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='12' viewBox='0 0 14 12' fill='none'%3E%3Cg clip-path='url(%23clip0_1749_31621)'%3E%3Cpath d='M13.2931 2.74307C13.4687 2.58198 13.7533 2.58198 13.9288 2.74307C14.1044 2.90416 14.1044 3.16534 13.9288 3.32643L7.76718 8.98074C7.67934 9.06135 7.56419 9.10162 7.44907 9.10156C7.33394 9.10162 7.2188 9.06135 7.13096 8.98074L0.969306 3.32643C0.793761 3.16534 0.793761 2.90416 0.969306 2.74307C1.14485 2.58198 1.42947 2.58198 1.60501 2.74307L7.44907 8.10593L13.2931 2.74307Z' fill='%23CED4DA'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_1749_31621'%3E%3Crect width='13.0767' height='12' fill='white' transform='matrix(-1 -8.02245e-08 -9.52669e-08 1 14 0)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
  transition: 0.3s;
}
.custom-accordion .custom-accordion-item .custom-accordion-collapse {
  height: 0;
  opacity: 0;
  display: none;
  transition: 0.3s;
}

.custom-collapse .custom-collapse-content {
  transition: 0.8s;
  overflow: clip;
  height: 100px;
  position: relative;
}
.custom-collapse .custom-collapse-content:after {
  content: "";
  height: 20px;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), white);
}
.custom-collapse .custom-collapse-button {
  display: flex;
  align-items: center;
  column-gap: 5px;
  margin-top: 10px;
  margin-bottom: 10px;
  outline: none;
}
.custom-collapse .custom-collapse-button:before {
  content: attr(data-text-open);
  transition: 0.3s;
}
.custom-collapse .custom-collapse-button:after {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='12' viewBox='0 0 14 12' fill='none'%3E%3Cg clip-path='url(%23clip0_1749_31621)'%3E%3Cpath d='M13.2931 2.74307C13.4687 2.58198 13.7533 2.58198 13.9288 2.74307C14.1044 2.90416 14.1044 3.16534 13.9288 3.32643L7.76718 8.98074C7.67934 9.06135 7.56419 9.10162 7.44907 9.10156C7.33394 9.10162 7.2188 9.06135 7.13096 8.98074L0.969306 3.32643C0.793761 3.16534 0.793761 2.90416 0.969306 2.74307C1.14485 2.58198 1.42947 2.58198 1.60501 2.74307L7.44907 8.10593L13.2931 2.74307Z' fill='%23CED4DA'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_1749_31621'%3E%3Crect width='13.0767' height='12' fill='white' transform='matrix(-1 -8.02245e-08 -9.52669e-08 1 14 0)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
  transition: 0.3s;
}
.custom-collapse.show .custom-collapse-content {
  height: auto;
}
.custom-collapse.show .custom-collapse-content:after {
  display: none;
}
.custom-collapse.show .custom-collapse-button:before {
  content: attr(data-text-close);
}
.custom-collapse.show .custom-collapse-button:after {
  transform: rotate(-180deg);
}

.table {
  cursor: pointer;
  margin-bottom: 10px;
  margin-top: 10px;
}
.table .table-wrap {
  overflow: auto;
}
.table table {
  border-collapse: collapse;
  border: 1px solid #CED4DA;
  border-radius: 8px;
  display: block;
  width: fit-content;
  margin-bottom: 10px;
  margin-top: 10px;
}
.table table tbody tr:not(:last-child) td {
  border-bottom: 1px solid #CED4DA;
}
.table table tbody tr td:not(:last-child) {
  border-right: 1px solid #CED4DA;
}
.table table thead tr td {
  border-bottom: 1px solid #CED4DA;
}
.table table thead tr td:not(:last-child) {
  border-right: 1px solid #CED4DA;
}
.table td {
  transition: 0.3s;
  padding: 6px 12px;
}
.table thead td {
  font-size: 15px;
  line-height: 18px;
  font-weight: 700;
  text-align: center;
}
.table tbody td {
  font-size: 15px;
  line-height: 22px;
  text-align: end;
}
.table tr:hover td {
  background: #F7F7F7;
}

.captcha-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  margin-left: 118px;
}
@media (max-width: 420px) {
  .captcha-container {
    justify-content: center;
    margin: 0;
  }
}

.form-errors {
  color: #ff4c4c;
  margin: 10px 0;
}

ul.custom {
  padding-left: 5px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
ul.custom li {
  display: flex;
  align-items: center;
}
ul.custom li:before {
  content: "";
  margin-right: 10px;
  background: #2F2F3E;
  border-radius: 50%;
  width: 4px;
  height: 4px;
}

@media screen and (max-width: 1409px) {
  .container {
    width: 1140px;
    padding-right: 21px;
    padding-left: 21px;
  }
  .h1 {
    font-size: 38px;
    line-height: 46px;
  }
  .h2 {
    font-size: 32px;
    line-height: 40px;
  }
  .h3 {
    font-size: 22px;
    line-height: 30px;
  }
  .h4 {
    font-size: 18px;
    line-height: 20px;
  }
  .h5 {
    font-size: 14px;
    line-height: 18px;
    font-weight: 600;
  }
  .p1 {
    font-size: 20px;
    line-height: 28px;
  }
  .p2 {
    font-size: 16px;
    line-height: 24px;
  }
  .p3 {
    font-size: 15px;
    line-height: 20px;
  }
  .p4 {
    font-size: 13px;
    line-height: 15px;
  }
  .col--main {
    width: 816px;
  }
  .col--side {
    width: 252px;
  }
}
@media screen and (max-width: 1199px) {
  .container {
    width: 100%;
  }
  .h1 {
    font-size: 26px;
    line-height: 32px;
  }
  .h2 {
    font-size: 22px;
    line-height: 26px;
  }
  .h3 {
    font-size: 20px;
    line-height: 24px;
  }
  .h4 {
    font-size: 18px;
    line-height: 22px;
  }
  .h5 {
    font-size: 14px;
    line-height: 18px;
  }
  .p1 {
    font-size: 18px;
    line-height: 22px;
  }
  .p2 {
    font-size: 16px;
    line-height: 24px;
  }
  .p3 {
    font-size: 15px;
    line-height: 20px;
  }
  .p4 {
    font-size: 13px;
    line-height: 16px;
  }
  .col--main {
    width: 324px;
  }
  .col--side {
    width: 324px;
  }
  .rating-full {
    column-gap: 8px;
  }
  .rating-full img {
    width: 16px;
  }
  .rating-empty {
    column-gap: 8px;
  }
  .rating-empty img {
    width: 16px;
  }
}
@media screen and (max-width: 767px) {
  .container {
    width: 100%;
    padding-left: 18px;
    padding-right: 18px;
  }
  .h1 {
    font-size: 24px;
    line-height: 32px;
  }
  .h2 {
    font-size: 22px;
    line-height: 26px;
  }
  .h3 {
    font-size: 20px;
    line-height: 24px;
  }
  .h4 {
    font-size: 18px;
    line-height: 22px;
  }
  .h5 {
    font-size: 14px;
    line-height: 18px;
  }
  .p1 {
    font-size: 16px;
    line-height: 22px;
  }
  .p2 {
    font-size: 15px;
    line-height: 20px;
  }
  .p3 {
    font-size: 14px;
    line-height: 20px;
  }
  .p4 {
    font-size: 12px;
    line-height: 15px;
  }
  .col--main {
    width: 100%;
  }
  .col--side {
    width: 100%;
  }
}
body div.bx-session-message {
  z-index: 1010 !important;
}

@media (max-width: 1199px) {
  .grecaptcha-badge {
    transform: scale(0.5) translate(-58px, -80px);
    z-index: 100000;
  }
}

.popover .popover-header {
  padding: 8px 10px;
  margin: 0;
  border-radius: 8px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.popover .popover-body {
  padding: 5px 10px;
}

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