:root {
    color-scheme: light dark;
}

body {
    font-family: "Lato", sans-serif;
    font-size: 14px;
    margin: 0;
    overflow: hidden;
    background-color: #000;
}

button {
    color: #555;
    background-color: #ddd;
    border: 0px;
    margin: 0px;
    padding: 5px 8px;
    text-transform: uppercase;
    cursor: pointer;
    outline: none;
    z-index: 2;
}

.clickable {
    cursor: pointer;
}

button:hover {
    background-color: #fff;
}

button.selected {
    background-color: #fff;
}

input,
textarea {
    border: 1px solid transparent;
    color: #444;
}

input[type="text"] {
    padding: 5px;
    height: 14px;
}

hr {
    border: 0;
    border-top: 1px solid #ccc;
}

button {
    position: relative;
}

button.active {
    border: 2px solid #dd8888;
}

input {
    vertical-align: middle;
}

input[type="color"]::-webkit-color-swatch-wrapper {
    padding: 0;
}

input[type="color"]::-webkit-color-swatch {
    border: none;
}

input[type="checkbox"] {
    height: 20px;
    width: 20px;
}

input:disabled {
    color: #ffffff73;
}

input.Number {
    color: #08f !important;
    font-size: 12px;
    border: 0px;
    padding: 2px;
}

select {
    color: #000;
    background-color: #ddd;
    border: 0px;
    text-transform: uppercase;
    cursor: pointer;
    outline: none;
    padding: 4px;
}

select:hover {
    background-color: #fff;
}

#overlay {
    position: absolute;
    display: none;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9;
    margin: 0 auto;
}

#overlay > div.center {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    font-size: xx-large;
    color: white;
    width: 95%;
    height: 95%;
}

.mfp-wrap {
    z-index: 9;
}

#overlay > div.center > span {
    margin-right: 10px;
}

#overlay > div.center > button {
    margin-bottom: 3px;
}

#viewport {
    position: absolute;
    top: 40px;
    left: 0;
    right: 350px;
    bottom: 0;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

#theLoader {
    z-index: 11;
    position: absolute;
    width: 100%;
    height: 100%;
    text-align: center;
    align-items: center;
    justify-content: center;
    background-color: #000000bf;
}

#theLoader img {
    width: 40px;
}

#loaderForSnowflake {
    z-index: 11;
    position: absolute;
    width: 100%;
    height: 100%;
    text-align: center;
    display: grid;
    align-items: center;
    justify-content: center;
    background-color: #000000bf;
    display: none;
}

#loaderForSnowflake p {
    color: white;
}

#loaderContainer {
    margin: 20px;
    width: 200px;
    height: 200px;
}

#menubar {
    position: absolute;
    width: 100%;
    height: 40px;
    background: #2b2a2b;
    padding: 0;
    margin: 0;
    right: 0;
    top: 0;

    display: flex;
    align-items: center;
}

#menubar .menu {
    float: left;
    cursor: pointer;
    padding-right: 8px;
}

#menubar #indication {
    margin-left: auto;
}

#menubar #indication .title {
    font-size: 12px;
}

#menubar #information {
    margin-left: auto;
    color: #2b2a2b;
}

#menubar .menu.right {
    float: right;
    cursor: auto;
    padding-right: 0;
    text-align: right;
}

#menubar .menu .title {
    display: inline-block;
    color: #fff;
    margin: 0;
    padding: 8px;
    line-height: 16px;
}

#menubar .menu .title-name {
    display: inline-block;
    color: #fff;
    margin: 0;
    padding: 8px;
    line-height: 16px;
    cursor: default;
}

#menubar .menu .options {
    position: fixed;
    display: none;
    padding: 5px 0;
    background: #444444;
    width: 150px;
    max-height: calc(100% - 80px);
    overflow: auto;
    z-index: 2;
}

#menubar .menu:hover .options {
    display: block;
}

#menubar .menu .options hr {
    border-color: #ddd;
}

#menubar .menu .options .option {
    color: #fff;
    background-color: transparent;
    padding: 5px 10px;
    margin: 0 !important;
    z-index: 2;
}

#menubar .menu .options .option:hover {
    color: #fff;
    background-color: #08f;
}

#menubar .menu .options .option:active {
    color: #fff;
    background: transparent;
}

#menubar .menu .options .inactive {
    color: #bbb;
    background-color: transparent;
    padding: 5px 10px;
    margin: 0 !important;
}

.TabbedPanel {
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
    position: relative;
    display: block;
    width: 100%;
    background-color: #000;
}

.TabbedPanel .Tabs {
    display: flex;
    justify-content: center;
}

.TabbedPanel .Tabs .Tab {
    height: 33px;
    flex-grow: 1;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid #595959;
    background: #3e3e3e;
    color: #595959;

    display: flex !important;
    justify-content: center;
    align-items: center;
    cursor: pointer !important;
}

.TabbedPanel .Tab.selected {
    color: #fff;
    background-color: #2b2a2b;
}

.TabbedPanel .Tabs .Panels {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}

#furnitureCatalogMenuItem {
    pointer-events: none;
    opacity: 0.3;
}

#furnitureCatalogMenuItem:after {
    content: "";
    background-image: url(../images/loader.gif);
    background-size: contain;
    width: 20px;
    height: 20px;
    position: absolute;
    margin-left: 5px;
    margin-top: -1px;
}

#furnitureCatalogMenuItem.enabled {
    pointer-events: all;
    opacity: 1;
}

#furnitureCatalogMenuItem.enabled:after {
    background-image: none;
}

#sceneCatalogMenuItem {
    pointer-events: none;
    opacity: 0.3;
}

#sceneCatalogMenuItem:after {
    content: "";
    background-image: url(../images/loader.gif);
    background-size: contain;
    width: 20px;
    height: 20px;
    position: absolute;
    margin-left: 5px;
    margin-top: -1px;
}

#sceneCatalogMenuItem.enabled {
    pointer-events: all;
    opacity: 1;
}

#sceneCatalogMenuItem.enabled:after {
    background-image: none;
}

#templateCatalogMenuItem {
    pointer-events: none;
    opacity: 0.3;
}

#templateCatalogMenuItem:after {
    content: "";
    background-image: url(../images/loader.gif);
    background-size: contain;
    width: 20px;
    height: 20px;
    position: absolute;
    margin-left: 5px;
    margin-top: -1px;
}

#templateCatalogMenuItem.enabled {
    pointer-events: all;
    opacity: 1;
}

#templateCatalogMenuItem.enabled:after {
    background-image: none;
}

.materialEditor,
.materialCatalog,
.wallMaterialCatalog,
.floorMaterialCatalog,
.wallChangeMaterialCatalog,
.furnitureCatalog,
.sceneCatalog,
.templateCatalog,
.textureCatalog,
.loadSceneModal,
.previewsModal,
.previewModal {
    width: 100%;
    height: 100%;
    background-color: #000000b8;
    z-index: 5;
    position: fixed;
    display: none;
}

.previewModal {
    z-index: 10 !important;
}

.materialEditor .TabbedPanel .Tabs,
.materialCatalog .TabbedPanel .Tabs,
.wallMaterialCatalog .TabbedPanel .Tabs,
.floorMaterialCatalog .TabbedPanel .Tabs,
.wallChangeMaterialCatalog .TabbedPanel .Tabs,
.furnitureCatalog .TabbedPanel .Tabs,
.sceneCatalog .TabbedPanel .Tabs,
.templateCatalog .TabbedPanel .Tabs,
.textureCatalog .TabbedPanel .Tabs,
.previewsModal .TabbedPanel .Tabs,
.loadSceneModal .TabbedPanel .Tabs {
    display: none;
}

.materialEditor .Row,
.materialCatalog .Row,
.wallMaterialCatalog .Row,
.floorMaterialCatalog .Row,
.wallChangeMaterialCatalog .Row,
.furnitureCatalog .Row,
.sceneCatalog .Row,
.templateCatalog .Row,
.textureCatalog .Row,
.previewsModal .Row,
.loadSceneModal .Row {
    padding: 8px 0px;
    display: flex;
}

.materialEditor .Row > *,
.materialCatalog .Row > *,
.wallMaterialCatalog .Row > *,
.floorMaterialCatalog .Row > *,
.wallChangeMaterialCatalog .Row > *,
.furnitureCatalog .Row > *,
.sceneCatalog .Row > *,
.templateCatalog .Row > *,
.textureCatalog .Row > *,
.previewsModal .Row > *,
.loadSceneModal .Row > * {
    margin: auto 0;
}

.materialEditor .main,
.materialCatalog .main,
.wallMaterialCatalog .main,
.floorMaterialCatalog .main,
.wallChangeMaterialCatalog .main,
.furnitureCatalog .main,
.sceneCatalog .main,
.templateCatalog .main,
.textureCatalog .main,
.previewsModal .main,
.loadSceneModal .main {
    width: calc(100% - 100px);
    height: calc(100vh - 100px);
    box-sizing: content-box;
    background-color: #fbfafe;
    border-radius: 4px;
    overflow: hidden;
    margin: 50px;
    z-index: 5;
    position: absolute;
    box-sizing: border-box;
}

.materialEditor .main {
    width: 700px;
}

.furnitureCatalog .loop,
.sceneCatalog .loop,
.materialCatalog .loop,
.wallMaterialCatalog .loop,
.floorMaterialCatalog .loop,
.wallChangeMaterialCatalog .loop,
.textureCatalog .loop,
.previewsModal .loop,
.templateCatalog .loop,
.loadSceneModal .loop {
    height: calc(100% - 197px) !important;
    overflow: auto;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-direction: row;
    flex-wrap: wrap;
    padding-left: 30px;
    padding-right: 10px;
}

.previewsModal .loop {
    height: calc(100% - 50px) !important;
}

.previewModal .loop {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-direction: row;
    flex-wrap: wrap;
}

.materialCatalog .details {
    display: none;
}

.materialCatalog .title {
    font-size: 20px;
    text-align: center;
    padding: 15px 0;
}

.wallMaterialCatalog .details,
.floorMaterialCatalog .details,
.wallChangeMaterialCatalog .details {
    display: none;
}

.wallMaterialCatalog .title,
.floorMaterialCatalog .title,
.wallChangeMaterialCatalog .title {
    font-size: 20px;
    text-align: center;
    padding: 15px 0;
}

#sidebar {
    position: absolute;
    right: 0;
    top: 40px;
    bottom: 0;
    width: 350px;
    background: #2b2a2b;
    border-top: 1px solid #4b4b4b;
    overflow-x: hidden;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer 10+ */
}

#sidebar::-webkit-scrollbar {
    /* WebKit */
    width: 0;
    height: 0;
}

#sidebar .Panels {
    padding: 10px 20px 0 20px;
}

#sidebar .Tabs {
    background: #2b2a2b;
    padding: 10px 20px;
}

#sidebar .Panels {
    border-top: 1px solid #4b4b4b;
    background: #1c1b1c;
}

#sidebar .Panel {
    color: #fff;
}

#sidebar .Panel.collapsed {
    margin-bottom: 0;
}

#sidebar .Row {
    min-height: 20px;
    margin-bottom: 10px;
}

#sidebar canvas {
    vertical-align: middle;
}

#sidebar .viewport-controls-container {
    display: flex;
    padding-bottom: 5px;
}

#sidebar .viewport-controls-container Button {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 38px;
    height: 38px;

    flex-grow: 1;

    background: #fff;
    border-radius: 2px;
    margin-right: 7px;
}

#sidebar .viewport-controls-container Button:last-of-type {
    margin-right: 0;
}

#sidebar .viewport-controls-container Button.active {
    border: 0;
    background: #28a745;
}

#sidebar .viewport-controls-container Button.active img {
    opacity: 1;
    filter: invert(1);
}

#sidebar .input-block {
    position: relative;
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 3px;
    margin-right: 30px;
    margin-bottom: 20px;
}

#sidebar .input-block input {
    background: transparent;
    font-size: 13px;
    color: #8c8c8c;
    padding-left: 10px !important;
}

#sidebar .input-block input:focus {
    outline: none;
    box-shadow: none;
    border: 0;
}

#sidebar .button-container {
    display: flex;
}

#sidebar .button-container button,
#sidebar button.rounded-button {
    flex-grow: 1;
    border: 1px solid #fff;
    border-radius: 4px;
    background: transparent;
    color: #fff;
}

#sidebar .instructions-list > div {
    padding-left: 15px;
    padding-top: 3px;
    padding-bottom: 3px;
    position: relative;
}

#sidebar .instructions-list > div:before {
    content: "●";
    color: #8888ee;
    position: absolute;
    left: 0;
}

#sidebar .instructions-list label {
    font-size: 13px;
    font-weight: 600;
    color: #d9d9d9;
    margin-right: 13px;
}

#sidebar .instructions-list span,
#sidebar .instructions-list .full-width {
    font-size: 13px;
    color: #b4b6ca;
}

#sidebar .instructions-list .full-width {
    margin-top: 5px;
    overflow-wrap: break-word;
}

#sidebar #object input.Number {
    flex-grow: 1;
}

#sidebar #edit .button-container {
    flex-direction: column;
}

#sidebar #edit .button-container button {
    margin-bottom: 10px;
}

#sidebar #material .change-material-button {
    position: relative;
    background: url("../images/change.webp") no-repeat;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 80%;
    border: 1px solid #fff;
    width: 24px;
    height: 24px;
    border-radius: 4px;
}

#sidebar #material #materialSlotSelect {
    color: #ffffff73;
    font-size: 12px;
    height: 25px;
    width: 100%;
    background: rgba(59, 59, 59, 0.3);
    border-radius: 4px;
    background: #1c1b1c;
}

#sidebar #material .Text {
    min-width: 80px;
}

#toolbar {
    position: absolute;
    left: 0px;
    top: 40px;
    width: 50px;
    height: 100vh;

    background: #2b2a2b;
    text-align: center;

    z-index: 1;
}

#toolbar button {
    background: #2b2a2b;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: -1px;
    border-top: 1px solid #4b4b4b;
    border-bottom: 1px solid #4b4b4b;
}

#toolbar button,
#toolbar input {
    width: 50px;
    height: 50px;
}

#toolbar button img {
    width: 22px;
    opacity: 0.5;
    filter: brightness(0) invert(1);
}

#toolbar button.selected img {
    filter: invert(1);
    opacity: 1;
}

.Outliner {
    color: #444;
    background-color: #1c1b1c;
    padding: 0;
    width: 100%;
    height: 300px;
    min-height: 300px;
    font-size: 13px;
    cursor: default;
    overflow: auto;
    resize: vertical;
    outline: none !important;
}

.Outliner .option {
    padding: 1px 4px;
    border-radius: 5px;
    color: #fff;
    white-space: nowrap;
    border: 1px solid transparent;
    text-overflow: ellipsis;
    overflow: hidden;
}

.Outliner .option:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.Outliner .option.active {
    background-color: rgba(255, 255, 255, 0.3);
}

.codeInput {
    margin: 5px;
    width: 240px;
    margin-left: 20px;
}

.online {
    background: rgb(0, 255, 0) !important;
    pointer-events: none;
    opacity: 0.5;
    margin-left: 20px !important;
}

.offline {
    background: rgb(255, 0, 0) !important;
    pointer-events: none;
    opacity: 0.5;
    margin-left: 20px !important;
}

#outliner .opener {
    display: inline-block;
    width: 14px;
    height: 14px;
    margin: 0px 4px;
    vertical-align: top;
    text-align: center;
}

#outliner .opener.open:after {
    content: "−";
}

#outliner .opener.closed:after {
    content: "+";
}

#outliner .option {
    border: 1px solid transparent;
    position: relative;
}

#outliner .type {
    display: inline-block;
    width: 14px;
    height: 14px;
    color: #ddd;
    text-align: center;
}

#outliner .type:after {
    content: "●";
}

#outliner .Object3D {
    color: #aaaaee;
}

#outliner .Mesh {
    color: #8888ee;
}

#outliner .Material {
    color: #eeaaee;
}

#scene .input-block .removeFromFolder {
    background-image: url(../images/delete.png);
    background-size: 80%;
    background-position: center;

    cursor: pointer;
    background-repeat: no-repeat;
    width: 20px;
    height: 20px;
    background-color: transparent;

    position: absolute;
    right: -27px;
}

#scene .input-block .addFolder {
    background-image: url(../images/add.png);
    cursor: pointer;
    background-repeat: no-repeat;

    width: 38px;
    height: 30px;
    background-color: #fff;
    background-size: auto;
    background-position: center center;
    border-right: 1px solid #e5e5e5;
}

#outliner .option .hideObject {
    background-image: url(../images/btn_hide_off.png);
    background-size: 70%;
    background-position: center;
    background-repeat: no-repeat;
    width: 22px;
    height: 22px;
    float: right;
    z-index: 50;
    position: relative;
}

#outliner .option .hideObject.hidden {
    background-image: url(../images/btn_hide_on.png);
    opacity: 50%;
    z-index: 50;
    position: relative;
}

#outliner .option .loadObject {
    background-image: url(../images/download.png);
    background-size: 70%;
    background-position: center;
    background-repeat: no-repeat;
    width: 22px;
    height: 22px;
    float: right;
    z-index: 50;
    position: relative;
}

#outliner .option .lockObject {
    background-image: url(../images/unlock.ico);
    background-size: 70%;
    background-position: center;
    background-repeat: no-repeat;
    width: 18px;
    height: 18px;
    float: right;
    margin-left: 5px;
    z-index: 50;
    position: relative;
}

#outliner .option .lockObject.locked {
    background-image: url(../images/lock.ico);
    z-index: 50;
}

#outliner .option .render {
    background-image: url(../images/remove_render.png);
    background-size: 70%;
    background-position: center;
    background-repeat: no-repeat;
    width: 18px;
    height: 18px;
    float: right;
    margin-left: 5px;
    z-index: 50;
    position: relative;
}

#outliner .option .render.render_hidden {
    background-image: url(../images/add_render.png);
    z-index: 50;
}

#outliner .option .reportModel {
    background-image: url(../images/flag.png);
    background-size: 70%;
    background-position: center;
    background-repeat: no-repeat;
    width: 18px;
    height: 18px;
    float: right;
    margin-left: 5px;
    z-index: 50;
    position: relative;
}

img.ResetNumberButton {
    width: 15px;
    margin-right: 10px;
    cursor: pointer;
}

.Button img {
    width: 100%;
}

#properties .Tabs {
    padding-bottom: 0;
}

#properties .Panels {
    border-top: 0;
    background: #2b2a2b;
    padding-top: 0;
}

#properties .Row {
    display: flex;
    align-items: center;
}

#properties .Row .Text {
    width: 80px !important;
    font-size: 13px;
    flex-grow: 0;
}

#properties .Row .Input {
    flex-grow: 1;
    padding: 5px 4px !important;
    border-radius: 4px;
}

#properties .Row .ResetNumberButton {
    width: 8px;
    height: 8px;
}

/* catalog */
.filters-container {
    display: flex;
    padding-top: 45px;
    padding-left: 40px;
    padding-right: 40px;
}

.filters-container .filters {
    display: flex;
    flex-grow: 1;
}

.filters-container .filters:first-of-type {
    margin-right: 30px;
}

.filters-container .filters .searchHolder {
    flex-grow: 1;
    padding: 0;
    margin-right: 5px;
    border-radius: 6px;
    overflow: hidden;
    min-height: 42px;
}

.filters-container .filters .searchHolder input {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    padding-left: 10px !important;
}

.filters-container .filters .searchHolder input:focus {
    border: 0;
    outline: 0;
    box-shadow: none;
}

.filters-container .filters .searchHolder .tagsinput {
    width: 100% !important;
    height: 100% !important;
    padding: 0;
    border: 0;
    padding-left: 5px;
}

.filters-container .filters .searchHolder .tagsinput .tag {
    margin: 7px 3px;
    padding: 5px 28px 0px 10px;
    border-radius: 6px;
    background-color: #dff2e3;
    color: #28a745;
    height: auto;
}

.filters-container .filters button {
    background-color: #28a745;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    border-radius: 6px;
    padding: 12px 18px;
}

.pagination-container {
    display: flex;
    justify-content: center;
    margin-top: 25px;
    margin-bottom: 5px;
}

.pagination-container .button-prev,
.pagination-container .button-next {
    background: transparent;
    font-size: 18px;
    font-weight: 600;
}

.disabled-button,
.disabled-button:hover {
    background: transparent;
    cursor: default;
    font-size: 18px;
}

.pagination-container select {
    margin: 0 18px;
    background: transparent;
}

.shadow {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.closeButton {
    color: #fff;
    text-decoration: none;
    position: absolute;
    z-index: 6;
    font-size: 25px;
    font-weight: bold;
    top: 0;
    right: 0;
    background-color: #cccccc;
    text-align: center;
    width: 40px;
    height: 40px;
    line-height: 40px;
    margin-right: -2px;
    margin-top: -2px;
}

.closeButton.closeButton-modal {
    margin-right: 0;
    margin-top: 0;
}

.searchHolder {
    padding: 5px 5px 0;
    background: #fff;
    width: calc(50% - 10px);
    min-height: auto;
    height: auto;
}

.searchByAll {
    background: 0 0;
    display: block;
    width: 100%;
    font-size: 14px;
    line-height: 20px;
    padding: 5px;
    border: 0;
    margin: 0 5px 5px 0;
}

.searchByAll::placeholder {
    opacity: 0.5;
}

.image-item {
    height: 12vw !important;
    position: relative;
}

.image-item.container {
    width: 100%;
    height: 12vw;
    position: relative;
    float: left;
    padding-top: 10px;
    padding-bottom: 10px;
    overflow: hidden;
    cursor: pointer;
    border-radius: 4px;
    border: 0;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
    cursor: not-allowed;
}

.image-item .zoom {
    background: url(../images/eye.png);
    background-repeat: no-repeat;
    background-position: center;
    background-color: #e6e6e6;
    background-size: auto;
    width: 30px;
    height: 30px;
    position: absolute;
    z-index: 3;
    top: 3px;
    right: 3px;
    cursor: pointer;
    border-radius: 4px;
}

.slick-dots {
    top: 18vw;
}

.slick-prev {
    left: 5px !important;
}

.slick-next {
    right: 5px !important;
}

.slick-prev,
.slick-next {
    z-index: 9;
    top: 47% ​ !important;
}

.slick-prev:before,
.slick-next:before {
    color: #b8b8b8 !important;
}

.furniture-item,
.scene-item,
.template-item,
.texture-item,
.material-item {
    width: 18%;
    height: 12vw;
    position: relative;
    float: left;
    margin: 10px;
    overflow: hidden;
    cursor: pointer;
    border-radius: 4px;
    border: 1px solid #fff;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.image-item .zoom {
    cursor: zoom-in;
}

.image-item .merge {
    cursor: pointer;
}

.furniture-item--width2,
.scene-item--width2,
.template-item--width2,
.texture-item--width2,
.image-item--width2,
.material-item--width2 {
    width: 50%;
}

.furniture-item img,
.scene-item img,
.template-item img,
.texture-item img,
.image-item img,
.material-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.furniture-item span,
.scene-item span,
.template-item span,
.texture-item span,
.material-item span {
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
    background-color: #0000009c;
    padding: 5px;
    color: #fff;
    z-index: 6;
}

.image-item span {
    position: absolute;
    bottom: 10px;
    width: 100%;
    text-align: center;
    background-color: #0000009c;
    padding: 5px;
    color: #fff;
    z-index: 2;
}

.tempMessage {
    position: absolute;
    z-index: 11;
    background-color: #ffffffbb;
    color: #000 !important;
    padding: 10px;
    border-radius: 10px;
    pointer-events: none;
    text-align: center;
    width: 200px;
    height: 20px;
    top: 50%;
    margin-top: -10px;
    left: 50%;
    margin-left: -100px;
    box-shadow: 0 0 10px #00000014;
}

#addToTheSceneButton {
    position: absolute;
    right: 10px;
    bottom: 0px;
    margin-bottom: 20px;
}

#closeWall {
    right: 0;
}

.row {
    overflow: auto;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
}

#sceneThumbnailsDiv,
#sceneReferencesDiv {
    display: flex;
    flex-direction: column;
}

#images .Panels {
    padding-top: 0px;
}

.annotation.submited {
    opacity: 1;
}

.annotation {
    display: block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 1rem;
    border-radius: 50%;
    text-align: center;
    box-shadow: 1px 1px 1px 1px rgb(61 61 61 / 20%);
    z-index: 4;
    background-image: -webkit-gradient(
        linear,
        left top,
        right top,
        from(#1e9fd0),
        to(#254691)
    );
    background-image: linear-gradient(90deg, #1e9fd0, #254691);
    opacity: 0.7;
}

.annotation,
.overlay {
    color: #fff;
    position: absolute;
}

.bug-report {
    position: absolute;
    bottom: 40px;
}

.reportModal {
    background-color: #000000b8;
    z-index: 5;
    position: fixed;
    width: 100%;
    height: 100%;
    display: none;
}

.reportModal .main {
    height: 70%;
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: space-around;
    align-items: center;
}

.modal-content {
    width: 50%;
    height: 30%;
    background-color: #ddd;
    border-radius: 4px;
    position: relative;
}

.modal-content h3 {
    position: absolute;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    top: 20px;
    text-align: center;
}

.filters-container.bigger-padding-top {
    padding-top: 100px;
}
.annotation.submited {
    opacity: 1;
}

.annotation {
    display: block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 1rem;
    border-radius: 50%;
    text-align: center;
    box-shadow: 1px 1px 1px 1px rgb(61 61 61 / 20%);
    z-index: 4;
    background-image: -webkit-gradient(
        linear,
        left top,
        right top,
        from(#1e9fd0),
        to(#254691)
    );
    background-image: linear-gradient(90deg, #1e9fd0, #254691);
    opacity: 0.7;
}

.annotation,
.overlay {
    color: #fff;
    position: absolute;
}

.dot {
    height: 0px;
    width: 0px;
    border-radius: 50%;
    display: inline-block;
}

#materialReflectSelect {
    border-radius: 4px;
    padding: 5px 4px !important;
    background: rgba(239, 239, 239, 0.3);
    color: #ffffff73;
    width: 175px;
}

#materialReflectSelect > option {
    background: rgb(84, 84, 84);
    border-radius: 4px;
}

#missing-link {
    position: absolute;
    top: 117px;
    left: 50px;
    text-decoration: none;
    color: black;
    cursor: pointer;
}

#context-menu {
    position: fixed;
    z-index: 50;
    width: 150px;
    background: #1b1a1a;
    border-radius: 5px;
    height: 50px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
}

#context-menu .item {
    padding: 8px 10px;
    font-size: 15px;
    color: #eee;
    cursor: pointer;
    width: 100%;
}

#cameraMatch {
    position: absolute;
    opacity: 0.9;
    z-index: 50;
    width: 100%;
    height: 100%;
    background-color: #00000088;
    display: none;
    align-items: center;
}

#cameraMatch .closeButton {
    top: 10px;
    right: 20px;
}

#cameraMatchCanvas {
    margin-top: 40px;
    margin-left: 50px;
}

#cameraMatch #setReference {
    position: absolute;
    bottom: 10px;
    right: 20px;
}

#region {
    z-index: 50;
    position: absolute;
    top: 40px;
    left: 50px;
    right: 350px;
    bottom: 0;
    text-align: center;
    display: none;
    justify-content: center;
    align-items: center;
}

#region .closeButton {
    z-index: 50;
    top: 10px;
    right: 20px;
    pointer-events: auto;
}

#region #regionOk {
    z-index: 50;
    position: absolute;
    bottom: 10px;
    right: 20px;
    pointer-events: auto;
}

.cameras-holder {
    position: absolute;
    background: transparent;
    flex-direction: column;
    z-index: 12;
    max-height: 500px;
    overflow-y: scroll;
    top: 0;
}

.cameras {
    margin: 0;
    padding: 2px;
    width: 80px !important;
    height: 20px !important;
    background: #2b2a2b !important;
    color: white;
    z-index: 12;
}

.img-fluid {
    width: 100%;
}

#smallRenderer3DCanvas {
    position: absolute;
    bottom: 0;
    right: 0;
}

#colorPickerContainer {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    width: 10vw;
    height: 20vh;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border: 1px solid #000;
    border-radius: 5px;
}

#colorPicker {
    width: 80%;
    height: 100%;
    border-radius: 5px;
    border: 1px solid #000;
}

#setColorButton {
    border-radius: 2px;
    border: 1px solid #000;
    margin-top: 10px;
    margin-bottom: 10px;
}

#closeButton {
    position: absolute;
    top: 0px;
    right: 2px;
    cursor: pointer;
    color: black !important;
}

.pick-a-color {
    position: absolute;
    bottom: 89px;
}

.pictures {
    position: absolute;
    bottom: 138px;
}