@layer threejs;
* {
  font-family: "Sora", sans-serif;
}

.gridCont {
  width: 90%;
  max-width: 1559px;
  margin: 0 auto;
  display: grid;
}

.simpleTitle {
  color: #AD1F24;
  font-family: inherit;
  font-size: 40px;
  line-height: 100%;
  font-weight: 700;
  margin: 0 auto 50px auto;
  display: table;
}

@layer threejs {
  .common--modal-body .threejsContainer {
    padding: 0px 8.5px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(228px, 100%), 1fr));
    grid-gap: 20px;
    max-height: 475px;
    overflow-y: auto;
  }
  .common--modal-body .threejsContainer::-webkit-scrollbar {
    width: 6px;
  }
  .common--modal-body .threejsContainer::-webkit-scrollbar-track {
    background: rgb(247, 247, 247);
  }
  .common--modal-body .threejsContainer::-webkit-scrollbar-thumb {
    background: black;
    border-radius: 3px;
  }
  .common--modal-body .threejsContainer::-webkit-scrollbar-thumb:hover {
    background: #333;
  }
  .common--modal-body .threejsContainer {
    scrollbar-width: thin;
    scrollbar-color: black rgb(247, 247, 247);
  }
  .common--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;
  }
  .common--modal-body .threejsContainer .threejsItem {
    width: -webkit-fill-available;
    background: #fff;
    border-radius: 8px;
    display: grid;
    grid-gap: 12.5px;
    padding: 10px;
  }
  .common--modal-body .threejsContainer .threejsItem .imgCont {
    aspect-ratio: 200/82;
    overflow: hidden;
  }
  .common--modal-body .threejsContainer .threejsItem .imgCont img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 6px;
  }
  .common--modal-body .threejsContainer .threejsItem span {
    text-align: center;
    color: inherit;
    font-family: inherit;
    font-size: 14px;
    line-height: 28px;
    font-weight: 300;
  }
  #nav .threejsContainer {
    display: flex;
    flex-direction: column;
    height: -webkit-fill-available;
    align-self: center;
    background: rgb(242, 242, 242);
    border: 1px solid rgb(242, 135, 27);
    border-left: 0px !important;
  }
  #nav .threejsContainer::-webkit-scrollbar {
    width: 7px;
  }
  #nav .threejsContainer::-webkit-scrollbar-track {
    background: rgb(208, 208, 208);
  }
  #nav .threejsContainer::-webkit-scrollbar-thumb {
    background: rgb(107, 107, 107);
  }
  #nav .threejsContainer::-webkit-scrollbar-thumb:hover {
    background: rgb(242, 135, 27);
  }
  #nav .threejsContainer .threejsItem {
    display: grid;
    padding: 10px;
    grid-column-gap: 8px;
    align-items: center;
    grid-template-columns: 99px 1fr;
  }
  #nav .threejsContainer .threejsItem:not(:last-child) {
    border-bottom: 1px solid rgb(208, 208, 208);
  }
  #nav .threejsContainer .threejsItem .imgCont {
    width: 100%;
    display: block;
    overflow: hidden;
    aspect-ratio: 99/40;
  }
  #nav .threejsContainer .threejsItem .imgCont img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 4px;
  }
  #nav .threejsContainer .threejsItem span {
    color: inherit;
    font-family: inherit;
    font-size: 17px;
    line-height: 20px;
    font-weight: 400;
  }
  .threejsWrapper {
    display: grid;
    grid-template-columns: min-content 1fr;
    height: 100svh;
    overflow: hidden;
  }
  .threejsWrapper > * {
    grid-row: 1;
  }
  .threejsWrapper .threejsDisplay {
    display: grid;
    transition: transform 0.3s ease;
    grid-column: 1/-1;
    width: -webkit-fill-available;
    height: -webkit-fill-available;
  }
  .threejsWrapper .threejsDisplay canvas {
    grid-column: 1;
    grid-row: 1;
  }
  .threejsWrapper .threejsDisplay canvas:nth-child(2) {
    z-index: 10;
    width: 100% !important;
  }
  #fuga_display {
    position: relative;
    grid-column: 2;
    width: calc(100svw - 458px);
    height: 100svh;
    display: grid;
  }
  #fuga_display .threejsFugaDisplay {
    position: relative;
    width: calc(100svw - 458px);
    height: 100svh;
    display: grid;
    align-items: center;
    justify-content: center;
  }
  #fuga_display .threejsFugaDisplay canvas {
    width: -webkit-fill-available;
    height: -webkit-fill-available;
  }
  body.fuga .threejsDisplay {
    position: absolute;
    opacity: 0;
    z-index: -1;
    pointer-events: none;
    display: none !important;
  }
  body.fuga .threejs3dLink {
    display: none !important;
  }
  body.fuga .threejsControlls {
    position: relative !important;
  }
  body:not(.fuga) .threejsFugaDisplay {
    position: absolute;
    opacity: 0;
    z-index: -1;
    pointer-events: none;
    display: none !important;
  }
  body:not(.fuga) .generatorInput {
    display: none !important;
  }
  body:not(.fuga) .threejsControlls:not(.open) .sunSlider {
    display: none !important;
  }
  body:has(.threejsControlls.open) .threejsDisplay {
    justify-self: end;
    transform: translate(265px, 0px);
  }
  .threejsControlls {
    position: absolute;
    left: 0px;
    top: 0px;
    z-index: 100;
    height: -webkit-fill-available;
    display: grid;
    grid-column: 1;
    grid-row-gap: 18px;
    background-color: #fff;
    border-right: 1px solid rgb(208, 208, 208);
    grid-template-rows: min-content 1fr;
    grid-row-gap: 0px;
    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.open .typeChange {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .threejsControlls:not(.threejsControlls.open) .generatorInput {
    display: none !important;
  }
  .threejsControlls:not(.threejsControlls.open) .typeChange a span {
    display: none;
  }
  .threejsControlls:not(.threejsControlls.open) .typeChange a.fuga {
    display: none;
  }
  .threejsControlls.openList .hiddenNavOpen {
    width: 50px;
  }
  .threejsControlls.openList .threejsNav {
    height: 61px;
    grid-column: 1/3;
  }
  .threejsControlls .menuOpen {
    margin-top: 50px;
    background: #AD1F24;
  }
  .threejsControlls .menuOpen span {
    color: #fff !important;
  }
  .threejsControlls .menuOpen * {
    grid-row: 1;
  }
  .threejsControlls .menuOpen svg {
    grid-column: 1;
  }
  .threejsControlls .menuOpen span {
    grid-column: 2;
  }
  .threejsControlls .download {
    margin-top: 50px;
    background: #6B6B6B;
    box-shadow: 0px 4px 4px 0px rgba(249, 247, 243, 0.25) inset;
    box-shadow: 0px -4px 4px 0px rgba(0, 0, 0, 0.25) inset;
  }
  .threejsControlls .download span {
    color: #fff !important;
  }
  .threejsControlls.open > nav .threejsNavList > a:has(.active) {
    grid-template-columns: 50px 1fr 66px 136px;
  }
  .threejsControlls.open > nav .threejsNavList > a:not(:has(.active)) {
    grid-template-columns: 50px 1fr;
  }
  .threejsControlls.open > nav .threejsNavList > a {
    grid-column-gap: 10px;
  }
  .threejsControlls.open .menuOpen .open {
    opacity: 0;
    z-index: -10;
    pointer-events: none;
  }
  .threejsControlls:not(.open) > nav .threejsNavList > a {
    grid-template-columns: 50px;
    grid-column-gap: 0px;
  }
  .threejsControlls:not(.open) .menuOpen .close {
    opacity: 0;
    z-index: -10;
    pointer-events: none;
  }
  .threejsControlls .threejsNav {
    grid-row: 1;
    display: grid;
    align-items: center;
    height: -moz-fit-content;
    height: fit-content;
    border-bottom: 1px solid rgb(208, 208, 208);
    grid-template-columns: min-content 1fr min-content;
    height: 20px;
    padding: 0px 20px;
  }
  .threejsControlls .threejsNav button {
    background-color: transparent;
    border: 0;
    padding: 0;
    margin: 0;
    cursor: pointer;
    display: grid;
  }
  .threejsControlls .threejsNav button:nth-child(1) {
    grid-template-columns: min-content 1fr;
  }
  .threejsControlls .threejsNav button:last-child {
    justify-self: end;
  }
  .threejsControlls .threejsNav button {
    grid-column-gap: 10px;
    height: -moz-fit-content;
    height: fit-content;
  }
  .threejsControlls .threejsNav button svg {
    font-size: 20px;
  }
  .threejsControlls .threejsNav button span {
    font-size: 16px;
  }
  .threejsControlls nav {
    display: grid;
    width: inherit;
    grid-column: 1;
    grid-row: 2;
  }
  .threejsControlls nav .threejsNavList {
    align-self: start;
  }
  .threejsControlls nav .threejsNavList .typeChange a {
    display: block;
    width: -webkit-fill-available;
    text-align: center;
    color: inherit;
    font-family: inherit;
    font-size: 16px;
    line-height: 50px;
    font-weight: 400;
  }
  .threejsControlls nav .threejsNavList .typeChange a * {
    color: inherit;
    font-family: inherit;
    font-size: 16px;
    line-height: 50px;
  }
  .threejsControlls nav .threejsNavList .typeChange a.tervezo {
    background: linear-gradient(180deg, #F2871B 0%, #EF851A 100%);
    color: #fff !important;
    box-shadow: 4px 4px 6px 0px rgba(0, 0, 0, 0.11) inset;
    box-shadow: -4px -4px 6px 0px rgba(0, 0, 0, 0.25) inset;
  }
  .threejsControlls nav .threejsNavList .typeChange a.fuga {
    background: linear-gradient(180deg, #F3F3F3 0%, #EDEDED 100%);
    box-shadow: 4px 4px 6px 0px rgba(0, 0, 0, 0.11) inset;
    box-shadow: -4px -4px 6px 0px rgba(0, 0, 0, 0.25) inset;
  }
  .threejsControlls nav .threejsNavList > a {
    display: grid;
    align-items: center;
    padding: 0px;
    height: 50px;
    align-items: center;
  }
  .threejsControlls nav .threejsNavList > a.disabled {
    pointer-events: none;
    background: rgb(121, 121, 121);
  }
  .threejsControlls nav .threejsNavList > a.disabled span {
    opacity: 0.5;
    color: #fff;
  }
  .threejsControlls nav .threejsNavList > a.disabled svg {
    opacity: 0.5;
    stroke: #fff;
    fill: #fff;
  }
  .threejsControlls nav .threejsNavList > a img, .threejsControlls nav .threejsNavList > a div {
    aspect-ratio: 66/27;
    width: -webkit-fill-available;
    border-radius: 4px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .threejsControlls nav .threejsNavList > a:not(:has(.active)) img, .threejsControlls nav .threejsNavList > a:not(:has(.active)) strong, .threejsControlls nav .threejsNavList > a:not(:has(.active)) div {
    display: none;
  }
  .threejsControlls nav .threejsNavList > a strong {
    color: inherit;
    font-family: inherit;
    font-size: 17px;
    line-height: 100%;
    font-weight: 400;
    padding-right: 10px;
  }
  .threejsControlls nav .threejsNavList > a.active {
    background: rgb(242, 242, 242) !important;
  }
  .threejsControlls nav .threejsNavList > a.active span {
    color: rgb(242, 135, 27) !important;
  }
  .threejsControlls nav .threejsNavList > a * {
    grid-row: 1;
  }
  .threejsControlls nav .threejsNavList > a:not(:last-child) {
    border-bottom: 1px solid rgb(208, 208, 208);
  }
  .threejsControlls nav .threejsNavList > a span {
    transition: width 0.3s ease-in-out;
    overflow: hidden;
    display: block;
    text-align: left;
    font-size: 18px;
    grid-column: 2;
  }
  .threejsControlls nav .threejsNavList > a svg {
    grid-column: 1;
    font-size: 40px;
    justify-self: center;
  }
  .threejsControlls turbo-frame {
    display: flex;
    grid-column: 2;
    grid-row: 2;
  }
  .threejsControlls:has(.threejsContainer) {
    grid-column-gap: 0px;
  }
  .threejsControlls:has(.threejsContainer) nav .threejsNavList > a span {
    width: 0;
    padding: 0;
  }
  .threejsControlls:not(.open):not(.openList) .threejsNav {
    opacity: 0;
    width: 0px;
  }
  .threejsControlls:not(.open) nav .threejsNavList > a img, .threejsControlls:not(.open) nav .threejsNavList > a div, .threejsControlls:not(.open) nav .threejsNavList > a strong {
    display: none;
  }
  .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 nav .threejsNavList > a span {
    width: initial !important;
  }
  .threejsControlls.open:not(:has(.threejsContainer)) nav .threejsNavList > a span {
    width: initial;
    padding-left: 16px;
  }
  .pagination-wrapper {
    padding: 0px !important;
  }
  .pagination-wrapper nav ul {
    display: flex;
    background: #fff;
    padding: 10px;
    border-radius: 10px;
    grid-gap: 10px;
    width: -moz-fit-content;
    width: fit-content;
    margin: 20px auto 0 auto;
  }
  .pagination-wrapper nav ul li {
    padding-bottom: 0px;
  }
  .pagination-wrapper nav ul li:first-child span, .pagination-wrapper nav ul li:first-child a, .pagination-wrapper nav ul li:last-child span, .pagination-wrapper nav ul li:last-child a {
    color: rgb(242, 135, 27);
  }
  .pagination-wrapper nav ul li:not(.active) {
    border-bottom: 1px solid transparent;
  }
  .pagination-wrapper nav ul li.active {
    border-bottom: 1px solid rgb(242, 135, 27);
  }
  .pagination-wrapper nav ul li.active span, .pagination-wrapper nav ul li.active a {
    color: rgb(242, 135, 27);
  }
  .pagination-wrapper nav ul li span, .pagination-wrapper nav ul li a {
    color: inherit;
    font-family: inherit;
    font-size: 16px;
    line-height: 100%;
    font-weight: 400;
  }
  footer {
    background: rgb(235, 235, 235);
    display: grid;
    grid-template-columns: min-content min-content;
    justify-items: center;
    align-items: center;
    padding: 12px 0px;
    grid-gap: 20px;
    grid-column: 2;
    grid-row: 1;
    width: -webkit-fill-available;
    height: -moz-fit-content;
    height: fit-content;
    align-self: end;
    z-index: 10;
    white-space: nowrap;
    justify-content: center;
    margin-bottom: 0px;
  }
  footer ul {
    display: flex;
    grid-gap: 20px;
  }
  footer ul li:not(:last-child) {
    border-right: 1px solid rgba(32, 27, 27, 0.3);
    padding-right: 20px;
  }
  footer ul li {
    display: grid;
    grid-template-columns: 34px min-content;
    align-items: center;
  }
  footer ul li svg {
    justify-self: center;
  }
  footer ul li svg path {
    stroke: rgb(242, 135, 27);
  }
  footer ul li a, footer ul li span {
    color: inherit;
    font-family: inherit;
    font-size: 16px;
    line-height: 30px;
    font-weight: 300;
  }
  .pagination-wrapper {
    padding: 0px !important;
  }
  .pagination-wrapper nav ul {
    display: flex;
    background: #fff;
    padding: 10px;
    border-radius: 10px;
    grid-gap: 10px;
    width: -moz-fit-content;
    width: fit-content;
    margin: 20px auto 0 auto;
  }
  .pagination-wrapper nav ul li {
    padding-bottom: 0px;
  }
  .pagination-wrapper nav ul li:first-child span, .pagination-wrapper nav ul li:first-child a, .pagination-wrapper nav ul li:last-child span, .pagination-wrapper nav ul li:last-child a {
    color: rgb(242, 135, 27);
  }
  .pagination-wrapper nav ul li:not(.active) {
    border-bottom: 1px solid transparent;
  }
  .pagination-wrapper nav ul li.active {
    border-bottom: 1px solid rgb(242, 135, 27);
  }
  .pagination-wrapper nav ul li.active span, .pagination-wrapper nav ul li.active a {
    color: rgb(242, 135, 27);
  }
  .pagination-wrapper nav ul li span, .pagination-wrapper nav ul li a {
    color: inherit;
    font-family: inherit;
    font-size: 16px;
    line-height: 100%;
    font-weight: 400;
  }
  .sunSlider {
    display: grid;
    grid-gap: 6px;
    padding: 30px 16px 0px;
  }
  .sunSlider label {
    color: inherit;
    font-family: inherit;
    font-size: 17px;
    line-height: 100%;
    font-weight: 400;
  }
  .sunSlider label * {
    color: inherit;
    font-family: inherit;
    font-size: 17px;
    line-height: 100%;
  }
  .sunSlider input[type=range] {
    -webkit-appearance: none;
    -moz-appearance: none;
         appearance: none;
    width: 100%;
    height: 16px;
    border-radius: 0px;
    outline: none;
  }
  .sunSlider {
    /* Chrome, Safari, Edge */
  }
  .sunSlider input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgb(242, 135, 27);
    cursor: pointer;
    border: none;
  }
  .sunSlider {
    /* Firefox */
  }
  .sunSlider input[type=range]::-moz-range-thumb {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgb(242, 135, 27);
    cursor: pointer;
    border: none;
  }
  .sunSlider input[type=range]::-webkit-slider-runnable-track {
    height: 16px;
    background: rgb(121, 121, 121);
    border-radius: 999px;
  }
  .sunSlider input[type=range]::-moz-range-progress {
    background: rgb(242, 135, 27);
    height: 16px;
  }
  .common--modal-body:has(.common--modal-content) {
    grid-column: 2;
    grid-row: 1;
    position: relative;
    z-index: 10;
    align-items: center;
    display: grid;
    justify-items: center;
  }
  .common--modal-body:not(:has(.common--modal-content)) {
    opacity: 0;
    z-index: -10;
    pointer-events: none;
  }
  .common--modal-body .common--modal .common--modal-dialog .common--modal-content {
    display: grid;
    grid-row-gap: 20px;
    background: rgb(235, 235, 235);
    padding: 20px;
    max-width: 1260px;
    width: 95%;
    border-radius: 10px;
  }
  .common--modal-body .common--modal .common--modal-dialog .common--modal-content #filter {
    background: #fff;
    display: table;
    width: -webkit-fill-available;
  }
  .generatorInput {
    display: grid;
    padding: 10px 40px;
    white-space: nowrap;
  }
  .generatorInput:not(.sunSlider) label {
    color: inherit;
    font-family: inherit;
    font-size: 14px;
    line-height: 100%;
    font-weight: 400;
  }
  .generatorInput:not(.sunSlider) label * {
    color: inherit;
    font-family: inherit;
    font-size: 14px;
    line-height: 100%;
  }
  .generatorInput.sunSlider {
    padding-top: 30px !important;
  }
  .generatorInput.last {
    padding-bottom: 30px !important;
  }
  .generatorInput.radio, .generatorInput .radio {
    display: grid;
    grid-template-columns: 20px min-content;
    grid-gap: 8px;
    align-items: center;
  }
  .generatorInput.radio input, .generatorInput .radio input {
    width: 20px;
    height: 20px;
    border-radius: 20px;
    border: 1px solid rgb(208, 208, 208);
  }
  .generatorInput .checkbox input, .generatorInput.checkbox input {
    border-radius: 0px;
    justify-self: end;
  }
  .generatorInput .checkbox, .generatorInput.checkbox {
    grid-template-columns: min-content 1fr;
    justify-content: space-between;
  }
  .generatorInput.radioInput {
    grid-template-columns: repeat(2, min-content);
    grid-gap: 32px;
    align-items: center;
    justify-content: space-between;
  }
  .generatorInput.number {
    grid-template-columns: repeat(2, min-content);
    grid-gap: 32px;
    align-items: center;
    justify-content: space-between;
  }
  .generatorInput.number input {
    height: 30px;
    max-width: 100%;
    width: 170px;
    border: 1px solid rgb(208, 208, 208);
    color: inherit;
    font-family: inherit;
    font-size: 14px;
    line-height: 100%;
    font-weight: 400;
  }
  .generatorInput.number input * {
    color: inherit;
    font-family: inherit;
    font-size: 14px;
    line-height: 100%;
  }
}/*# sourceMappingURL=threejs.css.map */