@layer default, modules, threejs;
@layer default {
  * {
    padding: 0px;
    margin: 0px;
    list-style-type: none;
    font-size: 0px;
    color: #000;
    outline: none !important;
  }
  svg path {
    color: inherit;
  }
  a {
    text-decoration: none;
    color: inherit;
  }
  a * {
    font-size: inherit;
    color: inherit;
  }
  .video-responsive iframe {
    aspect-ratio: 16/9;
    height: 100%;
    width: 100%;
  }
  picture {
    display: table;
  }
  picture img {
    max-width: 100%;
    height: auto;
  }
  #form_recaptcha {
    border: 0 !important;
  }
  body {
    min-height: 100svh;
  }
}
@layer modules {
  .modal {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1050;
    max-width: 800px;
  }
  .loader {
    position: fixed;
    z-index: 1000;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  .loader:not(.activeLoader) {
    display: none;
  }
  .loader.activeLoader {
    display: flex;
  }
  .switch-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
  }
  .switch-input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    cursor: pointer;
  }
  .switch-input:checked + .switch-slider {
    background-color: #007bff;
  }
  .switch-input:checked + .switch-slider::before {
    transform: translateX(20px);
  }
  .switch-input:disabled {
    opacity: 0.5;
    cursor: not-allowed;
  }
  .switch-input:disabled + .switch-slider {
    cursor: not-allowed;
  }
  .switch-input:focus + .switch-slider {
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.25);
  }
  .switch-slider {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
    background-color: #ccc;
    border-radius: 24px;
    transition: background-color 0.3s ease;
    pointer-events: none;
  }
  .switch-slider::before {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    background-color: white;
    border-radius: 50%;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  }
  [dir=rtl] .switch-input:checked + .switch-slider::before {
    transform: translateX(-20px);
  }
  .filter-form {
    width: 100%;
  }
  .filter-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
    padding: 15px;
    border-bottom: 1px solid #ddd;
    background-color: #f9f9f9;
  }
  .filter-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .filter-field label {
    font-weight: 500;
    font-size: 14px;
    color: #333;
    margin-bottom: 4px;
  }
  .filter-autocomplete {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    background-color: white;
    transition: border-color 0.3s ease;
  }
  .filter-autocomplete:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
  }
  .filter-switch-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .filter-switch-label {
    margin: 0;
    font-size: 14px;
    color: #333;
    cursor: pointer;
  }
  @media (max-width: 768px) {
    .filter-container {
      grid-template-columns: 1fr;
      gap: 12px;
    }
  }
  .ts-dropdown .ts-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
  }
  .ts-dropdown .ts-option .color-indicator {
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 4px;
    border: 1px solid #ddd;
    flex-shrink: 0;
  }
  .ts-dropdown .ts-option .icon-indicator {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-size: cover;
    background-position: center;
    border-radius: 4px;
    flex-shrink: 0;
  }
  .ts-dropdown-content > div {
    color: #000 !important;
    font-size: 14px !important;
  }
  .ts-control .item {
    font-size: 14px !important;
  }
  .option-text {
    font-size: 14px !important;
  }
}
@layer threejs {
  .modal-body .threejsContainer {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    border: 2px solid #000;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 8px;
    max-height: 580px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: black rgb(247, 247, 247);
  }
  .modal-body .threejsContainer::-webkit-scrollbar {
    width: 6px;
  }
  .modal-body .threejsContainer::-webkit-scrollbar-track {
    background: rgb(247, 247, 247);
  }
  .modal-body .threejsContainer::-webkit-scrollbar-thumb {
    background: black;
    border-radius: 3px;
  }
  .modal-body .threejsContainer::-webkit-scrollbar-thumb:hover {
    background: #333;
  }
  .modal-body .threejsContainer .modalClose {
    grid-column: 1/4;
    justify-self: end;
    background-color: transparent;
    border: 0;
    padding: 0;
    margin: 0;
    cursor: pointer;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    font-size: 20px;
  }
  .modal-body .threejsContainer .threejsItem {
    width: -webkit-fill-available;
  }
  .modal-body .threejsContainer .threejsItem .imgCont {
    aspect-ratio: 1/1;
    overflow: hidden;
  }
  .modal-body .threejsContainer .threejsItem .imgCont img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .modal-body .threejsContainer .threejsItem span {
    font-size: 20px;
    text-align: center;
    padding-top: 10px;
    display: table;
    width: 100%;
  }
  #nav .threejsContainer {
    display: grid;
    align-self: center;
  }
  #nav .threejsContainer .threejsItem {
    display: grid;
    padding: 10px 0px;
    grid-column-gap: 8px;
    align-items: center;
    grid-template-columns: min-content 1fr;
  }
  #nav .threejsContainer .threejsItem .imgCont {
    width: 200px;
    display: block;
    overflow: hidden;
    aspect-ratio: 1/1;
  }
  #nav .threejsContainer .threejsItem span {
    font-size: 20px;
  }
  .threejsWrapper {
    display: grid;
    grid-template-columns: min-content 1fr;
    height: 100svh;
  }
  .threejsWrapper .threejsDisplay {
    display: grid;
  }
  .threejsWrapper .threejsDisplay canvas {
    grid-column: 1;
    grid-row: 1;
  }
  .threejsWrapper .threejsDisplay canvas:nth-child(2) {
    z-index: 10;
    width: 100% !important;
  }
  .threejsWrapper .threejsTypeLinks {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translate(0, -50%);
    display: flex;
    flex-direction: row;
    z-index: 100;
    gap: 10px;
  }
  .threejsWrapper .threejsTypeLinks a {
    font-size: 16px;
  }
  .threejsFugaDisplay {
    position: relative;
  }
  .threejsFugaDisplay img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
  .threejsFugaDisplay img:nth-child(1) {
    z-index: 1;
  }
  .threejsFugaDisplay img:nth-child(2) {
    z-index: 2;
  }
  body.fuga .threejsDisplay {
    position: absolute;
    opacity: 0;
    z-index: -1;
    pointer-events: none;
  }
  body.fuga .threejs3dLink {
    display: none !important;
  }
  body:not(.fuga) .threejsFugaDisplay {
    position: absolute;
    opacity: 0;
    z-index: -1;
    pointer-events: none;
  }
  .threejsControlls {
    position: relative;
    display: grid;
    grid-row-gap: 18px;
    background-color: #fff;
    border-right: 1px solid #a1a1a1;
    grid-template-columns: min-content 1fr;
    grid-template-rows: min-content 1fr;
    grid-row-gap: 18px;
    overflow: hidden;
  }
  .threejsControlls > button {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    border: 0;
    padding: 0;
    margin: 0;
    cursor: pointer;
    z-index: 10;
  }
  .threejsControlls .threejsNav {
    grid-column: 1/3;
    grid-row: 1;
    display: grid;
    height: -moz-fit-content;
    height: fit-content;
    border-bottom: 1px solid #a1a1a1;
    grid-template-columns: min-content 1fr min-content;
    height: 20px;
  }
  .threejsControlls .threejsNav button {
    background-color: transparent;
    border: 0;
    padding: 0;
    margin: 0;
    cursor: pointer;
    display: grid;
    grid-column-gap: 10px;
    height: -moz-fit-content;
    height: fit-content;
  }
  .threejsControlls .threejsNav button:nth-child(1) {
    grid-template-columns: min-content 1fr;
  }
  .threejsControlls .threejsNav button:last-child {
    justify-self: end;
  }
  .threejsControlls .threejsNav button svg {
    font-size: 20px;
  }
  .threejsControlls .threejsNav button span {
    font-size: 16px;
  }
  .threejsControlls nav {
    display: grid;
  }
  .threejsControlls nav .threejsNavList {
    align-self: center;
  }
  .threejsControlls nav .threejsNavList a {
    display: grid;
    grid-template-columns: min-content 1fr;
    grid-column-gap: 10px;
    align-items: center;
    padding: 10px 0 10px 10px;
  }
  .threejsControlls nav .threejsNavList a:not(:last-child) {
    border-bottom: 1px solid #a1a1a1;
  }
  .threejsControlls nav .threejsNavList a span {
    transition: width 0.3s ease-in-out;
    overflow: hidden;
    display: block;
    text-align: left;
    font-size: 18px;
  }
  .threejsControlls nav .threejsNavList a svg {
    font-size: 40px;
  }
  .threejsControlls turbo-frame {
    display: flex;
  }
  .threejsControlls:has(.threejsContainer) {
    grid-column-gap: 18px;
  }
  .threejsControlls:has(.threejsContainer) nav .threejsNavList a span {
    width: 0;
    padding: 0;
  }
  .threejsControlls:not(.open) .threejsNav {
    opacity: 0;
    padding: 20px 0px;
  }
  .threejsControlls:not(.open) nav .threejsNavList a span {
    width: 0;
    padding: 0;
  }
  .threejsControlls.open {
    width: 457px;
  }
  .threejsControlls.open > button {
    display: none;
  }
  .threejsControlls.open .threejsNav {
    padding: 20px;
  }
  .threejsControlls.open:not(:has(.threejsContainer)) nav .threejsNavList a span {
    width: 380px;
    padding-left: 16px;
  }
  .page-link {
    font-size: 20px;
  }
}/*# sourceMappingURL=app.css.map */