* {
  padding: 0;
  margin: 0;
  list-style: none;
  border: 0;
  outline: 0;
  text-decoration: none;
  font-family: "Mulish", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
  -webkit-font-smoothing: antialiased;
}

:root {
  --animation-speed: 300ms;
}

html, body, main {
  height: 100%;
  width: 100%;
  overflow-x: hidden;
}

body {
  display: flex;
  flex-direction: column;
}



.preloader {
  position: fixed;
  display: block;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #eeeeee67;
  z-index: 99999;
  backdrop-filter: blur(8px);
  transition: opacity 1s ease-in-out;

}



.preloader .loader .loader-inner {
  display: inline-block;
  width: 100%;
  vertical-align: top;
  background-color: #fff;
  -o-animation:loader-inner 2s infinite ease-in;
  -ms-animation:loader-inner 2s infinite ease-in;
  -moz-animation:loader-inner 2s infinite ease-in;
  -webkit-animation:loader-inner 2s infinite ease-in;
  animation: loader-inner 2s infinite ease-in;
}

@keyframes fadeInFromNone {
  0% {
      display: none;
      opacity: 0;
  }

  50% {
      display: block;
      opacity: 0;
  }

  100% {
      display: block;
      opacity: 1;
  }
}

@keyframes loader-inner {
0% {
  height: 0%;
}

25% {
  height: 0%;
}

50% {
  height: 100%;
}

75% {
  height: 100%;
}

100% {
  height: 0%;
}
}

.loading{

	display: grid;
  grid-auto-flow: row;
  padding-left:0 ;
  padding-right:0 ;
  height:100vh;
  width:100vw;
  justify-content: center;
    align-content: center;
    pointer-events:none;
}
  

.loading img{
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: auto;
  margin-bottom: auto;
  width: 50%;
  pointer-events:none;
}

#Autobutton-container {
  width: fit-content;
  display:flex;
  justify-content: center;
  align-items: center;
  margin:0 20px 0 20px;
  padding: 10px;
  flex-wrap: nowrap;
  flex-direction: row;
}

#Autobutton-container :hover{
  background-color: #f0f0f000;
  box-shadow: none;
}

 
/* Change all text and icon colors in the player. */
.vjs-matrix.video-js {
  color: #57bffc;
}

/* Change the border of the big play button. */
.vjs-matrix .vjs-big-play-button {
  border-color: #00ff95;
}
.video-js .vjs-tech {
    background: none;
    background-color: #9E9E9E;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
/* Change the color of various "bars". */
.vjs-matrix .vjs-volume-level,
.vjs-matrix .vjs-play-progress,
.vjs-matrix .vjs-slider-bar {
  background: #00ff95 !important; 
  
}

#slider-container {
display: contents;
position: fixed;
  width: 100%;
  height: auto;
  background-color: #00000000;
  z-index: 3;
  backdrop-filter: blur(8px);
  transition: opacity 1s ease-in-out;
}
#sliderbox {
	position: absolute;
	width: 100%;
	height: 100%;
  background-color: #f3f3f367;
  backdrop-filter: blur(6px);
  transition: opacity 1s ease-in-out;
}

#sliderbox #close_btn {
color: #00000067;

}
.galleryItems {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  background: rgba(0, 0, 0, 0);
 
}

.galleryItems.active {
	background: rgba(0, 0, 0, 0);
  display: block;
}

.galleryImages {

  display: flex;
  justify-content: center;
    align-content: center;
    flex-wrap: nowrap;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
}

.galleryIMG {
display: flex;
  max-width: 70%;
  max-height: 80%;
  object-fit: contain;
  margin: auto;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0);
}

.btn-secondary {
  display: flex;
    position: absolute;
    color: #000000;
    border-right: 0px solid #02426d;
    padding: 14px;
    font-size: 12px;
    cursor: pointer;
    background-color: #00000000;
    margin: 2px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: nowrap;
}

.btn-secondary:hover {
  background-color: #00000000;
}




#close_btn{
	display: flex;
    /* margin: auto; */
    position: absolute;
    top: 60px;
    right: 0px;
    cursor: pointer;
    z-index: 1000;
    flex-direction: row-reverse;
    flex-wrap: wrap;
    align-content: stretch;
    justify-content: flex-start;
    align-items: flex-start;
	}
.close {
  font-size: 55px;
  font-weight: 600;
  display: inline-block;
  transform: rotate(45deg);
  color: rgb(255, 255, 255);
  z-index: 200;
  text-shadow: #E67E22;

}




main {
  display: flex;
}
.close-room{
  display: none;
}
.modal-body div {
  border-bottom: 1px solid #cecece52;
  padding: 10px 0px;
}
.modal-body div:last-child {
  border-bottom: none;
}

  

.noselect {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #888;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

:root {
  --TURQUOISE:#1ABC9C;
  --GREENSEA:#16A085;
  --EMERALD:#2ECC71;
  --NEPHRITIS:#27AE60;
  --PETERRIVER:#3498DB;
  --BELIZEHOLE:#2980B9;
  --AMETHYST:#9B59B6;
  --WISTERIA:#8E44AD;
  --WETASPHALT:#34495E;
  --MIDNIGHTBLUE:#2C3E50;
  --SUNFLOWER:#F1C40F;
  --ORANGE:#F39C12;
  --CARROT:#E67E22;
  --PUMPKIN:#D35400;
  --ALIZARIN:#E74C3C;
  --POMEGRANATE:#C0392B;
  --CLOUDS:#ECF0F1;
  --SILVER:#BDC3C7;
  --CONCRETE:#95A5A6;
  --ASBESTOS:#7F8C8D;
  --Primary:#0275d8;
  --Success:#5cb85c;
  --Info:#5bc0de;
  --Warning:#f0ad4e;
  --Danger:#d9534f;
  --Dark:#292b2c;
  --Faded:#f7f7f7;
}

header {
  height: 65px;
  background-color: #fff;
  display: flex;
  justify-self: center;
  align-items: center;
  z-index: 1000;
  border-bottom-width: 2px;
  border-bottom-style: solid;
  border-bottom-color: #003968;
}
header .logo {
  width:33%;
  height: inherit;
  display: flex;
  margin-right: auto;
  align-items: center;
}
header .logo img {
  height: 60px;
  width: auto;
  padding-left: 10px
}
header .title {

  height: 100%;
  width: auto;
  text-align: center;
  align-self: flex-end;
  background-color: #003968;
  border: 2px solid #ffffff;
  display: flex;
}
.Printbtn{
  border-right: 1px solid #ffffff;
}
header .title .btn {
  height: 100%;
  display: flex; 
    color: #ffffff;
    border-right: 1px solid #ffffff00;
    padding: 14px;
    font-size: 12px;
    cursor: pointer;
    background-color: #003968;
   
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: nowrap;
}
header .title .btn:hover {
  border-radius: 0%;
  background:#FFA40D;
}

   

header .logoc1 {
  width: 33%;
  margin-left: auto;
  height: inherit;
  display: flex;
  align-items: center;
}
header .logoc1 img {
  margin-left: auto;
  height: 30px;
  width: 240px;
  padding-right: 10px

}

header .logo2 {
  
  width:33%;
  margin-left: auto;
  height: inherit;
  display: flex;
  align-items: center;
}
header .logoNovel {
  margin-right: 10px;
  width: auto;
  margin-left: auto;
  height: inherit;
  display: flex;
  align-items: center;
}
header .logo2 img {
 width:auto;               /* Fill the 15% container */
  height: 96%;              /* Keep aspect ratio */
  display: block;            /* Remove bottom spacing */
  object-fit: contain;       /* Prevent stretching */
  max-width: 100%;
  margin-right: 10px;
}
header .logo_porch {
  width: 33%;
  margin-left: auto;
  height: inherit;
  display: flex;
  align-items: center;
 flex-direction: row-reverse;
}
header .logo_porch img {
  width: auto;               /* Fill the 15% container */
  height: 96%;              /* Keep aspect ratio */
  display: block;            /* Remove bottom spacing */
  object-fit: contain;       /* Prevent stretching */
  max-width: 100%;
  margin-right: 10px;

}
header .logo2_creeks {
  width: 33%;
  margin-left: auto;
  height: inherit;
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
}
header .logo2_creeks img {
  align-content: end;
  width: 80px;
  height: 100px;
  display: block;
  object-fit: contain;
  max-width: 100%;
  margin-right: 10px;

}

li.c-dropdown {
  position: relative;
  background-color:#8DC9F700;
}
li.c-dropdown a.c-dropdown-toggle {
  background-color:#8DC9F700;
  white-space: nowrap;
}
li.c-dropdown div.c-dropdown-menu {
  position: absolute;
  top: 0;
  left: 78px;
  z-index: 1000;
  display: none;
  min-width: 10rem;
  padding: 0;
  margin: 3px 0 0;
  font-size: 1rem;
  color: #212529;
  text-align: left;
  background-color: #fff;
  background-clip: padding-box;
  width: 333px;
}
li.c-dropdown div.c-dropdown-menu ul {
  list-style: none;
  max-height: 50vh;
  overflow-x: none;
  overflow-y: auto;
  background-color:#003968;
  color: #fff;
}

main nav {
  height: 100%;
  width: 75px;
  background-color:#003968;
  z-index: 1000;
}
main nav ul.menu > li {
  padding: 10px;
  border-bottom: 1px solid var(--CLOUDS);
  background-color: #003968;
}
main nav ul.menu > li:last-child {
  border-bottom: 0;
}
main nav ul.menu > li > a {
  display: block;
  text-align: center;
  color: var(--Faded);
}
main nav ul.menu > li > a:hover {
  color: var(--CLOUDS);
}
main nav ul.menu > li > a i {
  font-size: 38px;
}
main nav ul.menu > li > a p {
  margin-top: 10px;
  font-size: 9px;
  text-transform: uppercase;
}
/* main nav ul.menu > li div {
  width: 333px;
} */
main nav ul.menu > li div div.header {
  background-color: #003968;
  color: #FFFFFF;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  margin-bottom: 1px;
}
main nav ul.menu > li div div.header h4 {
  line-height: 40px;
  margin-bottom: 0;
  text-transform: uppercase;
}
main nav ul.menu > li div div.header i {
  display: block;
  width: 40px;
  text-align: center;
  font-size: 1.5rem;
}
main nav ul.menu > li:hover {
  background-color: #FFA40D;
}

main nav ul.menu > li.menu-active {
  background-color: #FFA40D;
}

main nav ul.menu > li.menu-normal {
  background-color: #003968;
}

main nav ul.menu > li.menu-active:hover {
  background-color: #FFA40D;
}

main nav ul.menu > li div div.header i:hover {
  color: var(--CLOUDS);
  cursor: pointer;
}
main nav ul.menu > li div div.image-viewer {
  margin-bottom: 1px;
}
main nav ul.menu > li div div.image-viewer a {
  display: block;
  position: relative;
  height: 100%;
  width: 100%;
}
main nav ul.menu > li div div.image-viewer a img {
  width: 100%;
  height: auto;
}
main nav ul.menu > li div div.image-viewer a .overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: 0.3s ease;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
}
main nav ul.menu > li div div.image-viewer a .overlay i {
  color: var(--Faded);
  font-size: 40px;
}
main nav ul.menu > li div div.image-viewer a:hover .overlay {
  opacity: 1;
}
main nav ul.menu > li div div.footer {
  background-color: #003968;
  color: var(--Faded);
  text-align: center;
  padding: 10px;
  margin-top: 1px;
}
main nav ul.menu > li div div.footer p {
  font-size: 11px;
  margin-bottom: 0;
}
main nav ul.menu > li div ul li {
  border-bottom: 1px solid var(--CLOUDS);
  display: flex;
    padding: 10px;
    justify-content: space-between;
    align-items: center;
}
main nav ul.menu > li div ul li:last-child {
  border-bottom: 0;
}
main nav ul.menu > li div ul li > span {
  display: flex;
  text-decoration: none;
  background-color: #5d7e93;
}
main nav ul.menu > li div ul li > span:hover {
  color: var(--CLOUDS);
}
main nav ul.menu > li div ul li > span a {
  z-index: 10;
}
main nav ul.menu > li div ul li > span a img {
  height: 50px;
  width: auto;
}
main nav ul.menu > li div ul li > span a img:hover {
  transform: scale(1.2);
}
main nav ul.menu > li div ul li > span input {
  position: absolute;
  visibility: collapse;
}
main nav ul.menu > li div ul li > span input:checked + label {
  background-color: var(--Faded);
  color: #5d7e93;
}
main nav ul.menu > li div ul li > span input:checked + label + i {
  display: flex;
}
main nav ul.menu > li div ul li > span label {
  position: relative;
  display: flex;
  align-items: center;
  height: 50px;
  flex: 1;
  white-space: nowrap;
  padding: 0 10px;
  margin-bottom: 0;
  text-transform: uppercase;
  color: var(--Faded);
}
main nav ul.menu > li div ul li > span i {
  display: none;
  justify-content: center;
  align-items: center;
  padding: 0 10px;
  background-color: var(--Faded);
  color: #5d7e93;
}

a[href="http://somee.com"] {
  display: none;
}

.editor {
	z-index:0;
  flex: 1;
  position: relative;
  overflow: hidden;
  background-color: #fff;
}
.editor #Estimate {
  position: absolute;
  right: 0;
  top: 0;
}
.editor .controller {
  position: absolute;
  right: 0px;
  top: 20%;
  display: flex;
  flex-direction: column;
  z-index: 4;
}
.editor .controller .btn {
  width: 54px;
  height: 50px;
  background-color: #003968;
  color: var(--Faded);
  border: 0px 0px 2px 0px  solid black;
  outline: 0;
  border-radius: 0;
}
.editor .controller .btn:hover {
 
  background-color: #FFA40D;
}
.editor .controller .btn-zoomin {
  margin-bottom: 1px;
}
.editor .controller .status {
  text-align: center;
  text-transform: uppercase;
  padding: 5px 0;
  font-size: 12px;
  color: var(--Faded);
  background-color: #003968;
}
.editor .controller .btn-measurements.active {
  color: var(--POMEGRANATE);
}
.editor .wrapper {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0%;   
  display: flex;
  /* cursor: move;    */
  z-index: 2;
  justify-content: center;
  align-items: center;
}
.editor .wrapper .floor {
  height: 90%;
  width: auto;
  min-width: 800px; 
  position: relative;
}
.editor .wrapper .floor img {
  height: 100%;
  width: auto;
}
.editor .wrapper .floor .options {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 2;
}
.editor .wrapper .floor .options .option-item {
  position: absolute;
  right: auto;
  top: auto;
  left: auto;
  bottom: auto;
  width: auto;
  height: auto;
}
.editor .wrapper .floor .options .option-item img {
  height: 100%;
  width: 100%;
}
.editor #measurements-container {
  height: 100%;
  width: 100%;
  visibility: hidden;
  z-index: 3;
  position: absolute;
  top: 0;
  left: 0;
}
.editor #measurements {
  stroke: var(--Danger);
  stroke-width: 3;
}
.editor #measurementsText {
  stroke: var(--Danger);
  font-size: 20px;
}

.project-wrap{
  display: inline-block;
  border-right: 1px solid #ffffff;
  background: #003968;
  max-width: 400px;
  min-width: 280px;
  }
.drop-down{
  /* position:absolute;
  left:42%;
  top:40%; */
  height: 100%;
  position: relative;
  z-index: 11;
  /* margin: 0 20px; */
  text-align: left;
}
.selected{
  height: 100%;
}
.drop-down .selected a{
  height: 100%;
  /* background:#fff no-repeat scroll right center; */
  display:block; 
  padding:15px 10px; 
  /* border:1px solid #d7d7d7;  */
  width:relative;
  border-radius:2px;
  text-decoration:none;
  color:#ffffff;
}

.drop-down .selected a:hover{
  border-radius: 0%;
  height: 100%;
   background:#FFA40D;
  
}

.drop-down .selected a span{
  cursor:pointer; 
  display:inline-block; 
  padding:3px;

}

.drop-down .option{
  position:relative; 
}

.drop-down .options ul{
  max-height: 800px;
  min-height: auto;
  overflow-y: scroll;
  background:#fff none repeat scroll 0 0;               
  display:none;
  list-style:none; 
  padding:0px 0px; 
  position:absolute; 
  left:0px; 
  top:54px; 
  max-width: 400px;
  min-width: 280px;
  border:1px solid #d7d7d7;
}

.drop-down .selected span.value, .drop-down .options span.value{
  display: none;
}

.drop-down .options ul li a{
  padding:5px; 
  display:block;
  text-decoration:none;
  color:#2c3e50;
}

.drop-down .options ul li a:hover{
  background:#FFA40D;
  color:#fff;
  transition:0.2s ease;
}


/* Scrollbar Width */
.options ul::-webkit-scrollbar {
  width: 10px;
}

/* Scroll Track */
.options ul::-webkit-scrollbar-track {
  background: #e7f4fb;
  border-radius: 10px;
  box-shadow: inset 0 0 6px rgba(0,0,0,0.1);
}

/* Scroll Thumb (Normal) */
.options ul::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #003968, #003968);
  border-radius: 10px;
  border: 2px solid #e7f4fb;
  transition: all 0.25s ease-in-out;
  box-shadow: 0 0 4px rgba(0,0,0,0.2);
}

/* Scroll Thumb (Hover With #8DC9F7 Glow) */
.options ul::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #8DC9F7, #6bb3e9); /* soft blend */
  box-shadow: 0 0 12px rgba(141, 201, 247, 0.9); /* your glow color */
  transform: scale(1.05);
}

/* Firefox */
.options ul {
  scrollbar-width: thin;
  scrollbar-color: #0f4e77 #e7f4fb;
}

/* Small devices (portrait tablets and large phones, 600px and up) */
/* Medium devices (landscape tablets, 768px and up) */
/* Large devices (laptops/desktops, 992px and up) */
/* Extra large devices (large laptops and desktops, 1200px and up) */

#measurements-overlay {
  position: absolute; /* Position relative to floor-wrap */
  top: 0;
  left: 0;
  width: 100%;  /* Make it cover the floor-wrap */
  height: 100%; /* Make it cover the floor-wrap */
  /* Add a high z-index to ensure it's on top */
  z-index: 100;
  /* Initially hide it, your JS will show/hide */
  visibility: hidden;
}

.switch {
  display: inline-flex;
  margin: 0 10px;
}
.switch input[type=checkbox] {
  height: 0;
  width: 0;
  visibility: hidden;
}
.switch input[type=checkbox]:checked + label {
  background: #FFA40D;
}
.switch input[type=checkbox]:checked + label::after {
  left: calc(100% - 4px);
  transform: translateX(-100%);
}
.switch label {
  cursor: pointer;
  width: 48px;
  height: 24px;
  background: rgb(58, 58, 58);
  display: block;
  border-radius: 24px;
  position: relative;
  margin-bottom: 0px;
}
.switch label::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 16px;
  height: 16px;
  background: white;
  border-radius: 16px;
  transition: 0.3s;
}
.footer li{
  display: flex;
  justify-content: space-between;
  text-align: left;
  padding: 10px 0px;
  align-items: center;
  font-size: 0.8em;
}
input[type=number]#phone::-webkit-inner-spin-button, 
    input[type=number]::-webkit-outer-spin-button { 
    -webkit-appearance: none; 
     margin: 0; 
}
.modal-body select {
  border: 1px solid #cececc;
  padding: 3px 5px;
  font-size: 0.7em;
}

#flipShow{
  /* width: 100%;
  height: 100%; */
  display: block;
}
#flipHide{
  display: none;
}
@media print {

  @page 
{
       /* auto is the initial value */
    margin: 0;  /* this affects the margin in the printer settings */
}
* {
  -webkit-print-color-adjust: exact !important;
  print-color-adjust: exact !important;
}

#planTitlePrint {
  color: #8DC9F7 !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
html
{
    background-color: #FFFFFF; 
    margin: 0;  /* this affects the margin on the html before sending to printer */
}
body
{
    padding:30px; /* margin you want for the content */
    margin: 1.6cm;
}
p {
  color: #8DC9F7 !important;
  -webkit-print-color-adjust: exact;
  print-color-adjust: exact;
}

@page :footer { 
  -webkit-display: none !important;
} 

@page :header { 
  -webkit-display: none !important;
} 
  .floor-plan{
    display: none !important;
    height: 100%;
    width: 100%;
  }
 

  img{
    print-color-adjust: exact !important;
    -webkit-print-color-adjust: exact !important;
       display: inline;
       visibility: visible !important;
  }

  
  
  
}
.floor-plan{
  /* display: none; */
  opacity: 0;
  height: 100%;
  width: 100%;
  left: -999em;
  position: absolute;
}
.floor-plan.active{
  display: block;
  opacity: 1;
  left: auto;
  position: relative;
}

/*SLIDER CSS STARTS*/
.gallery {
  position: relative;
  display: block;
  max-width: 500px;
  max-height: 200px;
  margin: auto;
  border-radius: 4px;
  overflow: hidden;
}

.gallery .slick-list {
  overflow: hidden;
}
.gallery .slick-slide {
  outline: none !important;
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  font-size: 14px;
  font-family: Helvetica, sans-serif;
  line-height: 40px;
  text-align: center;
  background-color: #FFA40D;
  z-index: 10;
  cursor: pointer;
  transition: background 0.3s ease;
}
.gallery-arrow:hover {
  background: #D0DFE6;
}
.gallery-arrow.mod-prev {
  left: 0;
  border-radius: 0 4px 4px 0;
}
.gallery-arrow.mod-next {
  right: 0;
  border-radius: 4px 0 0 4px;
}

.gallery-item {
  position: relative;
  float: left;
  vertical-align: middle;
  text-align: center;
}

.gallery-img-holder {
  display: inline-block;
  width: auto;
  height: 200px;
  max-width: 500px;
  max-height: 500px;
  position: relative;
}

.gallery-img {
  width: 100%;
  height: 100%;
}

.slick-lightbox .slick-arrow {
  z-index: 10;
}

.js-gallery-popup h1 {
  position: absolute;
  bottom: 0px;
  color: #fff;
  left: 10px;
  font-size: 1em;
}
.js-gallery-popup .imgname {
  position: absolute;
  bottom: 0px;
  color: #ffffff00;
  left: 10px;
  font-size: 1em;
}

.item-slick.slick-slide.slick-current.slick-active {
  outline: none!important;
  border: 3px solid;
}

.slider-for img {
  width: 100%;
  min-height: 100%; 
}

.slider-nav {
  margin: auto;
}
.footer .slider-nav{
  margin-bottom: 15px;
}

.slider-nav .item-slick {
  max-width: 120px;
    margin-right: 5px;
  outline: none!important;
  cursor: pointer;
}

.slider-nav .item-slick img {
  max-width: 100%;
  background-size: cover;
  background-position: center; 
}

.slick-arrow {
  position: absolute;
  top: 50%;
  z-index: 50;
  margin-top: -12px; 
}

.slick-prev {
  left: 0;
}

.slick-next {
  right: 0; 
}
.slider-nav .slick-arrow {
  font-size: 0.5em;
  color: #000000;
}
.slider-nav .gallery-arrow {
  width: auto;
  height: auto;
  line-height: 100%;
  padding: 5px;
  transform: translateY(0px);
}
/*SLIDER CSS ENDS*/


#shareLink{
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-all;
}

@media only screen and (min-width: 576px) and (max-width: 768px) {

  .preloader {
    position: fixed;
    display: block;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #eeeeee67;
    z-index: 99999;
    backdrop-filter: blur(8px);
    transition: opacity 1s ease-in-out;
  
  }
  
  
  
  .preloader .loader .loader-inner {
    display: inline-block;
    width: 100%;
    vertical-align: top;
    background-color: #fff;
    -o-animation:loader-inner 2s infinite ease-in;
    -ms-animation:loader-inner 2s infinite ease-in;
    -moz-animation:loader-inner 2s infinite ease-in;
    -webkit-animation:loader-inner 2s infinite ease-in;
    animation: loader-inner 2s infinite ease-in;
  }
  
  @keyframes fadeInFromNone {
    0% {
        display: none;
        opacity: 0;
    }
  
    50% {
        display: block;
        opacity: 0;
    }
  
    100% {
        display: block;
        opacity: 1;
    }
  }
  
  @keyframes loader-inner {
  0% {
    height: 0%;
  }
  
  25% {
    height: 0%;
  }
  
  50% {
    height: 100%;
  }
  
  75% {
    height: 100%;
  }
  
  100% {
    height: 0%;
  }
  }
  

.loading{

	display: grid;
  grid-auto-flow: row;
  padding-left:0 ;
  padding-right:0 ;
  height:100vh;
  width:100vw;
  justify-content: center;
    align-content: center;
    pointer-events:none;
}
  

.loading img{
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: auto;
  margin-bottom: auto;
  width: 100%;
  pointer-events:none;
}


.close {
  float: right;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  color: #ffffff;
  text-shadow: 0 1px 0 #fff;
  opacity: .5;
  font-size: 80px;


}

.editor .wrapper {
  transform: scale(0.75);
}

.editor .wrapper .floor {
  min-width: unset;
  width: 100%;
  height: auto;
}

.editor .wrapper .floor img,
.editor .wrapper .floor object {
  width: 100%;
  height: auto;
}

}
