@charset "UTF-8";

/* src/assets/fonts/roboto-v48-latin/roboto-font.css */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url("./media/roboto-v48-latin-100.woff2") format("woff2");
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url("./media/roboto-v48-latin-200.woff2") format("woff2");
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("./media/roboto-v48-latin-300.woff2") format("woff2");
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("./media/roboto-v48-latin-regular.woff2") format("woff2");
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("./media/roboto-v48-latin-500.woff2") format("woff2");
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("./media/roboto-v48-latin-600.woff2") format("woff2");
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("./media/roboto-v48-latin-700.woff2") format("woff2");
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("./media/roboto-v48-latin-800.woff2") format("woff2");
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("./media/roboto-v48-latin-900.woff2") format("woff2");
}

/* src/styles.scss */
.m-0 {
  margin: 0 !important;
}
.m-t-10 {
  margin-top: 10px;
}
.m-t-20 {
  margin-top: 20px;
}
.m-t-30 {
  margin-top: 30px;
}
.m-t-40 {
  margin-top: 40px;
}
.m-t-50 {
  margin-top: 50px;
}
.m-10-0 {
  margin: 10px 0px !important;
}
.m-l-10 {
  margin-left: 10px !important;
}
.p-0 {
  padding: 0 !important;
}
.p-20 {
  padding: 20px !important;
}
.p-30 {
  padding: 30px !important;
}
.p-0-5 {
  padding: 0px 5px !important;
}
.text-center {
  text-align: center !important;
}
.d-flex {
  display: flex !important;
}
.d-flex.column {
  flex-direction: column;
}
.d-flex.row {
  flex-direction: row;
}
.d-flex.right {
  justify-content: right;
}
.d-flex.center {
  align-items: center;
}
.d-flex.space-between {
  justify-content: space-between;
}
.d-flex.gap-10 {
  gap: 10px;
}
.flex-1 {
  flex: 1;
}
.p-relative {
  position: relative;
}
.bg-primary {
  background-color: #007bff !important;
}
.line {
  height: 1px;
  background-color: #dedede;
  width: 90%;
  margin: auto;
}
a {
  cursor: pointer;
}
.red {
  color: #ff5b5b !important;
}
.red::before {
  background-color: #ff5b5b !important;
}
.yellow {
  color: #f79f18 !important;
}
.yellow::before {
  background-color: #f79f18 !important;
}
.green {
  color: #18ab93 !important;
}
.green::before {
  background-color: #18ab93 !important;
}
.blue {
  color: #aadade !important;
}
.blue::before {
  background-color: #aadade !important;
}
.gray {
  color: #717171 !important;
}
.gray::before {
  background-color: #717171 !important;
}
.dark {
  color: #495b69 !important;
}
.dark::before {
  background-color: #495b69 !important;
}
.btn {
  cursor: pointer;
  border-radius: 20px;
  align-items: center;
  display: flex;
  justify-content: center;
  position: relative;
  transition: 0.3s;
  font-size: 14px;
  padding: 10px 20px;
  min-width: 100px;
  font-weight: 400;
  border: none;
  width: fit-content;
  text-decoration: none;
  height: 3em;
  box-sizing: border-box;
}
.btn.fit {
  width: fit-content;
}
.btn:disabled {
  opacity: 0.2;
  cursor: not-allowed;
}
.btn.border {
  border: 1px solid;
}
.icon-btn {
  cursor: pointer;
  width: 35px;
  height: 35px;
  border-radius: 8px;
  align-items: center;
  display: flex;
  justify-content: center;
  color: #000000;
  position: relative;
  background: #fff;
  transition: 0.3s;
}
.icon-btn:hover {
  background: var(--gray-bg-color);
}
.small-btn {
  cursor: pointer;
  border-radius: 8px;
  align-items: center;
  display: flex;
  justify-content: center;
  position: relative;
  transition: 0.3s;
  padding: 5px 10px;
}
.link {
  cursor: pointer;
  text-decoration: none;
  font-size: 14px;
}
.secondary-color {
  color: var(--dark-btn-color);
  background: var(--light-bg-color);
}
.secondary-color:hover {
  color: var(--theme-color);
  background: var(--light-bg-hover-color);
}
.primary-color {
  color: #ffffff;
  background: var(--theme-color);
}
.primary-color:hover {
  background: var(--dark-btn-color);
  color: #ffffff;
}
.transparent-color {
  color: var(--title-color);
}
.transparent-color:hover {
  background: #ffffff;
  color: var(--theme-color);
}
.vertical-border-line {
  height: 20px;
  border-right: 1px solid var(--theme-color);
}
.color-0::before {
  background-color: #ffcdd2;
}
.color-1::before {
  background-color: #f8bbd0;
}
.color-2::before {
  background-color: #e1bee7;
}
.color-3::before {
  background-color: #d1c4e9;
}
.color-4::before {
  background-color: #c5cae9;
}
.color-5::before {
  background-color: #bbdefb;
}
.color-6::before {
  background-color: #b3e5fc;
}
.color-7::before {
  background-color: #b2ebf2;
}
.color-8::before {
  background-color: #b2dfdb;
}
.color-9::before {
  background-color: #c8e6c9;
}
.splide__arrow {
  width: 30px !important;
  height: 60px !important;
  background: rgba(255, 255, 255, 0.631372549) !important;
  border-radius: 5px !important;
}
.splide__slide {
  height: fit-content !important;
}
a {
  text-decoration: none;
  color: var(--theme-color);
}
a:hover {
  color: var(--dark-btn-color);
}
.full-width {
  width: 100%;
}
.spin {
  animation: spin 1s linear infinite;
}
@keyframes spin {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
.popup-window {
  display: flex;
  flex-direction: column;
  position: absolute;
  inset: 0px 0px auto auto;
  margin: 0px;
  transform: translate(0px, 42px);
  padding: 10px 0px;
  min-width: 140px;
  background: #fff;
  border-radius: 10px;
  box-shadow: rgba(30, 32, 37, 0.12) 0px 5px 10px 0px;
  z-index: 10;
}
.popup-window.left {
  left: 0px;
}
.popup-window .item {
  padding: 8px 20px;
  font-size: 14px;
  color: var(--title-color);
  display: flex;
  align-items: center;
  column-gap: 10px;
  text-decoration: none;
}
.popup-window .item.dotted::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  background-color: var(--icon-hover-color);
  border-radius: 0px;
  margin-right: 5px;
  position: relative;
  top: -2px;
}
.popup-window .item:hover {
  background: var(--theme-color);
  color: #fff;
}
.popup-window .item:hover::before {
  background-color: #fff;
}
.popup-window .item:hover .material-symbols-outlined {
  font-variation-settings: "FILL" 1;
  color: #fff !important;
}
.popup-window .item .material-symbols-outlined {
  font-variation-settings: "wght" 200;
  font-size: 20px;
}
.card {
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 2px 2px 4px 0px #dfdfdf;
}
.card__title {
  font-family: "Ubuntu", serif;
  font-weight: 500;
  font-size: 19px;
  color: var(--title-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.card__title.medium-size {
  font-size: 15px;
}
.card__title.small-size {
  font-size: 14px;
}
.card__content {
  margin-top: 20px;
}
.card__tools {
  display: flex;
  align-items: center;
  gap: 10px;
}
.table-content__user-content {
  display: flex;
  column-gap: 15px;
}
.table-content__user-image {
  width: 50px;
  height: 50px;
  border-radius: 13px;
  background-position: center;
  background-size: cover;
  flex: 0 0 auto;
}
.table-content__user-details {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}
.table-content__user-details .title {
  font-size: 15px;
  font-weight: 500;
  color: var(--theme-color);
}
.table-content__user-details .title span {
  color: var(--title-color);
  font-size: 12px;
  font-weight: 400;
}
.table-content__user-details .sub-title {
  font-size: 14px;
  font-weight: 400;
  color: var(--sub-title-color);
}
.table-content__search-bar {
  display: flex;
  align-items: center;
  gap: 5px;
}
.table-content__search-icon {
  color: #969696;
  margin-right: -37px;
  z-index: 1;
  height: 22px;
}
.table-content__search-icon .material-symbols-outlined {
  font-size: 20px;
}
.table-content__search-icon .material-symbols-outlined {
  font-variation-settings: "wght" 300;
}
.table-content__search-input {
  width: 100%;
  height: 25px;
  border-radius: 12px;
  padding: 5px 5px 5px 40px;
  border: none;
  background: #f5f5f5;
  color: #828282;
}
.table-content__search-input:focus,
.table-content__search-input:active {
  outline: none;
  border: none;
}
.table-content table {
  width: 100%;
  border-collapse: collapse;
}
.table-content table th {
  text-align: left;
  font-weight: 500;
  font-size: 14px;
  color: var(--title-color);
}
.table-content table th,
.table-content table td {
  padding: 12px;
  font-size: 15px;
  transition: 0.3s;
}
.table-content table th .btn,
.table-content table td .btn {
  transition: 0.3s;
  cursor: pointer;
}
.table-content table th .material-symbols-outlined,
.table-content table td .material-symbols-outlined {
  transition: 0.3s;
}
.table-content table tr.group-header:hover td {
  background: #c2e2e6;
  color: #ffffff;
}
.table-content table tr.group-header td {
  background: #c2e2e6;
  color: #ffffff;
  font-weight: 500;
}
.table-content table tr.active td {
  background: var(--gray-bg-color);
}
.table-content table tr.active td .icon-btn {
  background: var(--gray-bg-color);
}
.table-content table tr.active td .icon-btn:hover {
  background: #fff;
  font-variation-settings:
    "FILL" 1,
    "wght" 100,
    "GRAD" 0,
    "opsz" 24;
  color: var(--icon-hover-color);
}
.table-content table tr:hover td {
  background: var(--gray-bg-color);
}
.table-content table tr:hover td .icon-btn {
  background: var(--gray-bg-color);
}
.table-content table tr:hover td .icon-btn:hover {
  background: #fff;
  font-variation-settings:
    "FILL" 1,
    "wght" 100,
    "GRAD" 0,
    "opsz" 24;
  color: var(--icon-hover-color);
}
.table-content table tr td {
  cursor: pointer;
}
.table-content table tr td:first-child {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}
.table-content table tr td:last-child {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  white-space: nowrap;
  width: 80px;
}
.table-content table tr td .actions {
  column-gap: 10px;
  justify-content: flex-end;
}
.table-content table .material-symbols-outlined {
  font-variation-settings:
    "FILL" 0,
    "wght" 300,
    "GRAD" 0,
    "opsz" 24;
}
.rotating {
  animation: rotate 2s linear infinite;
}
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
form {
}
form .input-group {
  position: relative;
  width: 100%;
  margin: 20px 0;
}
form .input-group.icon-wrapper .icon {
  position: absolute;
  top: 15px;
  left: 15px;
  font-size: 18px;
  font-variation-settings:
    "FILL" 0,
    "wght" 300,
    "GRAD" 0,
    "opsz" 24;
}
form .input-group.icon-wrapper input {
  padding-left: 33px;
  width: calc(100% - 55px);
}
form .input-group.icon-wrapper label {
  left: 22px;
}
form .input-group.icon-wrapper input:focus + label,
form .input-group.icon-wrapper input:not(:placeholder-shown) + label {
  font-size: 12px;
  left: 10px;
}
form .input-group textarea {
  font-size: 14px;
  outline: none;
  background: transparent;
  transition: all 0.2s ease;
  min-width: 230px;
  color: var(--text-color);
  width: 230px;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #d6d6d6;
  margin: 5px;
  width: calc(100% - 30px);
}
form .input-group textarea:focus {
  border-color: #3f51b5;
}
form .input-group textarea:focus + label,
form .input-group textarea:not(:placeholder-shown) + label {
  top: 5px;
  color: #3f51b5;
  padding: 0px 3px;
  background: #ffffff;
  margin-left: 10px;
  font-size: 12px;
}
form .input-group textarea:disabled {
  background: #e4e4e4;
  border-color: #e4e4e4;
}
form .input-group .input-image {
  width: 20px;
  height: 20px;
  position: absolute;
  left: 10px;
  top: 15px;
  background-color: rgb(178, 235, 242);
  border-radius: 5px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
form .input-group input {
  font-size: 14px;
  outline: none;
  background: transparent;
  transition: all 0.2s ease;
  min-width: 230px;
  color: var(--text-color);
  width: 230px;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid rgba(214, 214, 214, 0.6196078431);
  margin: 5px;
  width: calc(100% - 30px);
}
form .input-group input:focus {
  border-color: #3f51b5;
}
form .input-group input:focus + label,
form .input-group input:not(:placeholder-shown) + label {
  top: 5px;
  color: #3f51b5;
  padding: 0px 3px;
  background: #ffffff;
  margin-left: 10px;
  font-size: 12px;
}
form .input-group input:disabled {
  background: #e4e4e4;
  border-color: #e4e4e4;
}
form .input-group input.image-included {
  padding-left: 30px;
  width: calc(100% - 50px);
}
form .input-group select {
  padding: 10px;
  font-size: 14px;
  outline: none;
  background: transparent;
  transition: all 0.2s ease;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  cursor: pointer;
  min-width: 252px;
  margin: 5px;
  width: calc(100% - 10px);
}
form .input-group select:focus {
  border-color: #3f51b5;
}
form .input-group select:focus + label,
form .input-group select:not(:has(option:checked[value=""])) + label {
  top: 5px;
  color: #3f51b5;
  padding: 0px 3px;
  background: #ffffff;
  margin-left: 10px;
  font-size: 12px;
}
form .input-group label {
  position: absolute;
  font-size: 14px;
  font-weight: 400;
  top: 50%;
  left: 5px;
  transform: translateY(-50%);
  color: #777;
  transition: all 0.3s ease;
  pointer-events: none;
  margin-left: 10px;
  padding: 0px 3px;
}
form .input-group.select-wrapper::after {
  content: "\25bc";
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  font-size: 12px;
  color: #777;
  pointer-events: none;
}
form .form-common-message {
  font-size: 13px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
form .form-common-message .error {
  color: #ffacac;
}
form .form-message {
  position: absolute;
  font-size: 12px;
  padding: 0px 10px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: -22px;
}
form .form-message .error {
  color: #ffacac;
}
.autocomplete {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: white;
  z-index: 15;
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 200px;
  overflow-y: auto;
  border-radius: 9px;
  cursor: pointer;
  font-size: 14px;
  box-shadow: 3px 2px 8px -3px #959595;
}
.autocomplete li {
  padding: 10px;
  margin: 5px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.autocomplete li:hover {
  background: var(--theme-color);
  color: #fff;
  font-weight: 400;
}
.autocomplete li img {
  width: 50px;
  border-radius: 10px;
}
.autocomplete::-webkit-scrollbar {
  width: 12px;
}
.autocomplete::-webkit-scrollbar-track {
  background: #f9f9f9;
  border-radius: 8px;
}
.autocomplete::-webkit-scrollbar-thumb {
  background-color: var(--theme-color);
  border-radius: 8px;
  border: 2px solid transparent;
  background-clip: content-box;
}
.autocomplete::-webkit-scrollbar-thumb:hover {
  background-color: var(--dark-btn-color);
}
.tab {
  border-radius: 9px;
  background: var(--gray-bg-color);
  justify-content: flex-start;
}
.tab .tab-item {
  padding: 9px 10px;
  margin: 4px;
  border-radius: 10px;
  font-weight: 300;
  cursor: pointer;
}
.tab .tab-item:not(.disabled):hover {
  color: #91c0c6;
}
.tab .tab-item.active {
  font-weight: 400;
  background: #91c0c6;
  color: #ffffff;
}
.tab .tab-item.active:hover {
  color: #ffffff;
}
.tab .tab-item.disabled {
  cursor: not-allowed;
  opacity: 0.2;
}
.tags-group .tags-wrapper {
  margin: 10px;
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}
.tags-group .tags-wrapper .tag {
  padding: 3px 5px;
  font-size: 12px;
  font-weight: 400;
  border: 1px solid var(--theme-color);
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 5px;
  width: fit-content;
  text-transform: capitalize;
  background: var(--theme-color);
  color: #fff;
}
.tags-group .tags-wrapper .tag .close-btn {
  display: flex;
}
.tags-group .tags-wrapper .tag .close-btn .material-symbols-outlined {
  font-size: 18px;
}
select {
  padding: 6px 10px;
  border-radius: 6px;
  border: 1px solid #f4f4f4;
  font-size: 14px;
  background: #f4f4f4;
  color: #656565;
  cursor: pointer;
  outline: none;
  box-shadow: none;
}
.custom-hr {
  border: none;
  border-top: 1px solid #dcdcdc;
  margin: 20px 0;
}
.input-wrapper {
  margin-top: -20px;
  margin-bottom: -20px;
}
.input-wrapper > div {
  width: 50%;
  flex: 1;
}
.switch-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 5px;
}
.switch-wrapper I .label {
  font-size: 14px;
  cursor: pointer;
  font-weight: 400;
}
.switch-wrapper .switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 21px;
}
.switch-wrapper .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.switch-wrapper .switch .slider {
  position: absolute;
  cursor: pointer;
  background-color: #ccc;
  border-radius: 20px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: 0.4s;
}
.switch-wrapper .switch .slider::before {
  position: absolute;
  content: "";
  height: 15px;
  width: 15px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  border-radius: 50%;
  transition: 0.4s;
}
.switch-wrapper .switch input:checked + .slider {
  background-color: var(--theme-color);
}
.switch-wrapper .switch input:checked + .slider::before {
  transform: translateX(18px);
}
.switch-wrapper .switch .slider.round {
  border-radius: 18px;
}
@media (max-width: 1024px) {
  .input-wrapper {
    flex-direction: column;
  }
  .input-wrapper .input-group {
    margin: 10px 0;
  }
  .input-wrapper > div {
    width: 100%;
  }
  .autocomplete {
    position: fixed;
    top: 7rem;
    width: calc(100% - 1em);
    background: #fff;
    height: auto;
    overflow: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
    max-height: calc(100% - 12rem);
    margin: 0.5em;
    box-sizing: border-box;
  }
  .autocomplete::-webkit-scrollbar {
    display: none;
  }
}
.is-native-app .fixed-nav__content {
  padding-bottom: 1rem !important;
}
.is-native-app .mega-menu-sidebar {
  height: calc(100% - 12rem) !important;
}
.is-native-app .account-container {
  height: calc(100% - 12rem) !important;
}
.is-native-app .mega-menu-sidebar {
  height: calc(100% - 12rem) !important;
}
.is-native-app .account-container {
  height: calc(100% - 12rem) !important;
}
.is-native-app .page-content-container {
  height: calc(100% - 12rem) !important;
}
:root {
  --theme-color: #0ab4ea;
  --icon-hover-color: #1298b4;
  --light-bg-color: aliceblue;
  --light-bg-hover-color: #dcebf7;
  --title-color: #495b69;
  --light-title-color: #828282 --sub-title-color: #aeaeae;
  --icon-bg-color: #495b69;
  --gray-bg-color: #f5f5f5;
  --dark-btn-color: #1298b4;
  --input-color: #495b69;
  --body-bg-color:#f1f3f7;
}
body {
  margin: 0px;
  background: #fff;
  color: var(--title-color);
  line-height: normal;
  background-color: var(--body-bg-color);
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}
body.modal-open {
  overflow: hidden;
  touch-action: none;
}
.material-symbols-outlined {
  font-variation-settings:
    "FILL" 0,
    "wght" 400,
    "GRAD" 0,
    "opsz" 24;
}
@media (min-width: 1025px) {
  .for-compact-view {
    display: none !important;
  }
}
@media (max-width: 1024px) {
  .for-web {
    display: none !important;
  }
}

/* ../../node_modules/.pnpm/@splidejs+splide@4.1.4/node_modules/@splidejs/splide/dist/css/splide.min.css */
.splide__container {
  box-sizing: border-box;
  position: relative;
}
.splide__list {
  backface-visibility: hidden;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;
}
.splide.is-initialized:not(.is-active) .splide__list {
  display: block;
}
.splide__pagination {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0;
  pointer-events: none;
}
.splide__pagination li {
  display: inline-block;
  line-height: 1;
  list-style-type: none;
  margin: 0;
  pointer-events: auto;
}
.splide:not(.is-overflow) .splide__pagination {
  display: none;
}
.splide__progress__bar {
  width: 0;
}
.splide {
  position: relative;
  visibility: hidden;
}
.splide.is-initialized,
.splide.is-rendered {
  visibility: visible;
}
.splide__slide {
  backface-visibility: hidden;
  box-sizing: border-box;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  list-style-type: none !important;
  margin: 0;
  position: relative;
}
.splide__slide img {
  vertical-align: bottom;
}
.splide__spinner {
  animation: splide-loading 1s linear infinite;
  border: 2px solid #999;
  border-left-color: transparent;
  border-radius: 50%;
  bottom: 0;
  contain: strict;
  display: inline-block;
  height: 20px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
}
.splide__sr {
  clip: rect(0 0 0 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.splide__toggle.is-active .splide__toggle__play,
.splide__toggle__pause {
  display: none;
}
.splide__toggle.is-active .splide__toggle__pause {
  display: inline;
}
.splide__track {
  overflow: hidden;
  position: relative;
  z-index: 0;
}
@keyframes splide-loading {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(1turn);
  }
}
.splide__track--draggable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.splide__track--fade > .splide__list > .splide__slide {
  margin: 0 !important;
  opacity: 0;
  z-index: 0;
}
.splide__track--fade > .splide__list > .splide__slide.is-active {
  opacity: 1;
  z-index: 1;
}
.splide--rtl {
  direction: rtl;
}
.splide__track--ttb > .splide__list {
  display: block;
}
.splide__arrow {
  -ms-flex-align: center;
  align-items: center;
  background: #ccc;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  display: -ms-flexbox;
  display: flex;
  height: 2em;
  -ms-flex-pack: center;
  justify-content: center;
  opacity: .7;
  padding: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2em;
  z-index: 1;
}
.splide__arrow svg {
  fill: #000;
  height: 1.2em;
  width: 1.2em;
}
.splide__arrow:hover:not(:disabled) {
  opacity: .9;
}
.splide__arrow:disabled {
  opacity: .3;
}
.splide__arrow:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}
.splide__arrow--prev {
  left: 1em;
}
.splide__arrow--prev svg {
  transform: scaleX(-1);
}
.splide__arrow--next {
  right: 1em;
}
.splide.is-focus-in .splide__arrow:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}
.splide__pagination {
  bottom: .5em;
  left: 0;
  padding: 0 1em;
  position: absolute;
  right: 0;
  z-index: 1;
}
.splide__pagination__page {
  background: #ccc;
  border: 0;
  border-radius: 50%;
  display: inline-block;
  height: 8px;
  margin: 3px;
  opacity: .7;
  padding: 0;
  position: relative;
  transition: transform .2s linear;
  width: 8px;
}
.splide__pagination__page.is-active {
  background: #fff;
  transform: scale(1.4);
  z-index: 1;
}
.splide__pagination__page:hover {
  cursor: pointer;
  opacity: .9;
}
.splide__pagination__page:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}
.splide.is-focus-in .splide__pagination__page:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}
.splide__progress__bar {
  background: #ccc;
  height: 3px;
}
.splide__slide {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.splide__slide:focus {
  outline: 0;
}
@supports (outline-offset:-3px) {
  .splide__slide:focus-visible {
    outline: 3px solid #0bf;
    outline-offset: -3px;
  }
}
@media screen and (-ms-high-contrast:none) {
  .splide__slide:focus-visible {
    border: 3px solid #0bf;
  }
}
@supports (outline-offset:-3px) {
  .splide.is-focus-in .splide__slide:focus {
    outline: 3px solid #0bf;
    outline-offset: -3px;
  }
}
@media screen and (-ms-high-contrast:none) {
  .splide.is-focus-in .splide__slide:focus {
    border: 3px solid #0bf;
  }
  .splide.is-focus-in .splide__track > .splide__list > .splide__slide:focus {
    border-color: #0bf;
  }
}
.splide__toggle {
  cursor: pointer;
}
.splide__toggle:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}
.splide.is-focus-in .splide__toggle:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}
.splide__track--nav > .splide__list > .splide__slide {
  border: 3px solid transparent;
  cursor: pointer;
}
.splide__track--nav > .splide__list > .splide__slide.is-active {
  border: 3px solid #000;
}
.splide__arrows--rtl .splide__arrow--prev {
  left: auto;
  right: 1em;
}
.splide__arrows--rtl .splide__arrow--prev svg {
  transform: scaleX(1);
}
.splide__arrows--rtl .splide__arrow--next {
  left: 1em;
  right: auto;
}
.splide__arrows--rtl .splide__arrow--next svg {
  transform: scaleX(-1);
}
.splide__arrows--ttb .splide__arrow {
  left: 50%;
  transform: translate(-50%);
}
.splide__arrows--ttb .splide__arrow--prev {
  top: 1em;
}
.splide__arrows--ttb .splide__arrow--prev svg {
  transform: rotate(-90deg);
}
.splide__arrows--ttb .splide__arrow--next {
  bottom: 1em;
  top: auto;
}
.splide__arrows--ttb .splide__arrow--next svg {
  transform: rotate(90deg);
}
.splide__pagination--ttb {
  bottom: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  left: auto;
  padding: 1em 0;
  right: .5em;
  top: 0;
}

/* ../../node_modules/.pnpm/@splidejs+splide@4.1.4/node_modules/@splidejs/splide/dist/css/themes/splide-default.min.css */
.splide__container {
  box-sizing: border-box;
  position: relative;
}
.splide__list {
  backface-visibility: hidden;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;
}
.splide.is-initialized:not(.is-active) .splide__list {
  display: block;
}
.splide__pagination {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0;
  pointer-events: none;
}
.splide__pagination li {
  display: inline-block;
  line-height: 1;
  list-style-type: none;
  margin: 0;
  pointer-events: auto;
}
.splide:not(.is-overflow) .splide__pagination {
  display: none;
}
.splide__progress__bar {
  width: 0;
}
.splide {
  position: relative;
  visibility: hidden;
}
.splide.is-initialized,
.splide.is-rendered {
  visibility: visible;
}
.splide__slide {
  backface-visibility: hidden;
  box-sizing: border-box;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  list-style-type: none !important;
  margin: 0;
  position: relative;
}
.splide__slide img {
  vertical-align: bottom;
}
.splide__spinner {
  animation: splide-loading 1s linear infinite;
  border: 2px solid #999;
  border-left-color: transparent;
  border-radius: 50%;
  bottom: 0;
  contain: strict;
  display: inline-block;
  height: 20px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
}
.splide__sr {
  clip: rect(0 0 0 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.splide__toggle.is-active .splide__toggle__play,
.splide__toggle__pause {
  display: none;
}
.splide__toggle.is-active .splide__toggle__pause {
  display: inline;
}
.splide__track {
  overflow: hidden;
  position: relative;
  z-index: 0;
}
@keyframes splide-loading {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(1turn);
  }
}
.splide__track--draggable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.splide__track--fade > .splide__list > .splide__slide {
  margin: 0 !important;
  opacity: 0;
  z-index: 0;
}
.splide__track--fade > .splide__list > .splide__slide.is-active {
  opacity: 1;
  z-index: 1;
}
.splide--rtl {
  direction: rtl;
}
.splide__track--ttb > .splide__list {
  display: block;
}
.splide__arrow {
  -ms-flex-align: center;
  align-items: center;
  background: #ccc;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  display: -ms-flexbox;
  display: flex;
  height: 2em;
  -ms-flex-pack: center;
  justify-content: center;
  opacity: .7;
  padding: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2em;
  z-index: 1;
}
.splide__arrow svg {
  fill: #000;
  height: 1.2em;
  width: 1.2em;
}
.splide__arrow:hover:not(:disabled) {
  opacity: .9;
}
.splide__arrow:disabled {
  opacity: .3;
}
.splide__arrow:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}
.splide__arrow--prev {
  left: 1em;
}
.splide__arrow--prev svg {
  transform: scaleX(-1);
}
.splide__arrow--next {
  right: 1em;
}
.splide.is-focus-in .splide__arrow:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}
.splide__pagination {
  bottom: .5em;
  left: 0;
  padding: 0 1em;
  position: absolute;
  right: 0;
  z-index: 1;
}
.splide__pagination__page {
  background: #ccc;
  border: 0;
  border-radius: 50%;
  display: inline-block;
  height: 8px;
  margin: 3px;
  opacity: .7;
  padding: 0;
  position: relative;
  transition: transform .2s linear;
  width: 8px;
}
.splide__pagination__page.is-active {
  background: #fff;
  transform: scale(1.4);
  z-index: 1;
}
.splide__pagination__page:hover {
  cursor: pointer;
  opacity: .9;
}
.splide__pagination__page:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}
.splide.is-focus-in .splide__pagination__page:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}
.splide__progress__bar {
  background: #ccc;
  height: 3px;
}
.splide__slide {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.splide__slide:focus {
  outline: 0;
}
@supports (outline-offset:-3px) {
  .splide__slide:focus-visible {
    outline: 3px solid #0bf;
    outline-offset: -3px;
  }
}
@media screen and (-ms-high-contrast:none) {
  .splide__slide:focus-visible {
    border: 3px solid #0bf;
  }
}
@supports (outline-offset:-3px) {
  .splide.is-focus-in .splide__slide:focus {
    outline: 3px solid #0bf;
    outline-offset: -3px;
  }
}
@media screen and (-ms-high-contrast:none) {
  .splide.is-focus-in .splide__slide:focus {
    border: 3px solid #0bf;
  }
  .splide.is-focus-in .splide__track > .splide__list > .splide__slide:focus {
    border-color: #0bf;
  }
}
.splide__toggle {
  cursor: pointer;
}
.splide__toggle:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}
.splide.is-focus-in .splide__toggle:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}
.splide__track--nav > .splide__list > .splide__slide {
  border: 3px solid transparent;
  cursor: pointer;
}
.splide__track--nav > .splide__list > .splide__slide.is-active {
  border: 3px solid #000;
}
.splide__arrows--rtl .splide__arrow--prev {
  left: auto;
  right: 1em;
}
.splide__arrows--rtl .splide__arrow--prev svg {
  transform: scaleX(1);
}
.splide__arrows--rtl .splide__arrow--next {
  left: 1em;
  right: auto;
}
.splide__arrows--rtl .splide__arrow--next svg {
  transform: scaleX(-1);
}
.splide__arrows--ttb .splide__arrow {
  left: 50%;
  transform: translate(-50%);
}
.splide__arrows--ttb .splide__arrow--prev {
  top: 1em;
}
.splide__arrows--ttb .splide__arrow--prev svg {
  transform: rotate(-90deg);
}
.splide__arrows--ttb .splide__arrow--next {
  bottom: 1em;
  top: auto;
}
.splide__arrows--ttb .splide__arrow--next svg {
  transform: rotate(90deg);
}
.splide__pagination--ttb {
  bottom: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  left: auto;
  padding: 1em 0;
  right: .5em;
  top: 0;
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
