body {
  padding: 0;
  margin: 0;
}
div#controls {
  position: absolute;
  background: transparent;
  z-index: 999;
  right: 10px;
  top: 10px;
  padding: 10px 20px;
  /* border-radius: 5px; */
  width: 120px;
}
#panorama {
  width: 100vw;
  height: 100vh;
}
.grow-6 {
  transition: all .2s ease-in-out;
  transform-origin: top right;
  opacity: 0.95;
}
.grow-6:hover {
  transform: scale(6.5);
  opacity: 1;
}
.grow-3 {
  transition: all .2s ease-in-out;
  transform-origin: top right;
  opacity: 0.95;
}
.grow-3:hover {
  transform: scale(3.5);
  opacity: 1;
}


.floorPlanImg, .tileIcon {
  width: 100%;
}
#controls .card {
  border-radius: 0;
}
.card.grow-3 {
  z-index: 9;
}
.card.grow-6 {
  z-index: 11;
}
.tileImgContainer {
  display: flex;
  flex-wrap: wrap;
}
.pimgload {
  width: 25%;
  padding: 0.2em;
}
.pimgload p {
  display: none;
  font-size: 20px;
  color: #fff;
  font-weight: 300;
  background: #00000029;
  width: 100%;
  text-align: center;
  padding: 5px;
}
.pimgload:hover p {
  display: block;
  position: fixed;
  top: 0px;
  left: 0px;
}
.pimgload:hover img {
  transform: scale(1.3);
}
img#selectedFloorTileIcon, img#selectedWallTileIcon {
  width: 100%;
}
#cardSelectTile {
  opacity: 0.85;
}
#cardSelectTile:hover {
  opacity: 1;
}


.custom-hotspot.sceneicon {
  height: 40px;
  width: 40px;
  background-color: #161a1b;
  background-image: url(../public/arrow2.gif);
  background-position: center;
  /* background-size: cover; */
  background-repeat: no-repeat;
  border-radius: 50%;
  background-size: 65%;
  cursor: pointer;
}
.custom-hotspot.infoicon {
  height: 40px;
  width: 40px;
  background-color: #ffffff;
  background-image: url(../public/info.png);
  background-position: center;
  /* background-size: cover; */
  background-repeat: no-repeat;
  border-radius: 50%;
  background-size: 80%;
  cursor: pointer;
}
div.custom-tooltip span {
  visibility: hidden;
  position: absolute;
  border-radius: 3px;
  background-color: rgb(6 131 172);
  color: #000;
  text-align: center;
  max-width: 200px;
  padding: 5px 10px;
  margin-left: -220px;
  cursor: default;
}
div.custom-tooltip:hover span{
  visibility: visible;
}
div.custom-tooltip:hover span:after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-width: 10px;
  border-style: solid;
  border-color: rgb(6 131 172) transparent transparent transparent;
  bottom: -20px;
  left: -10px;
  margin: 0 50%;
}
div.pnlm-tooltip span {
    visibility: hidden;
    position: absolute;
    border-radius: 3px;
    background-color: rgb(1 169 224);
    color: #fff;
    text-align: center;
    max-width: 200px;
    padding: 10px 15px;
    margin-left: -220px;
    cursor: default;
}
div.pnlm-tooltip:hover span:after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-width: 10px;
    border-style: solid;
    border-color: rgb(1 169 224) transparent transparent transparent;
    bottom: -20px;
    left: -10px;
    margin: 0 50%;
}
.qrimage {
  width: 100%;
}
.footer {
    position: fixed;
    bottom: 5px;
    width: 100%;
    left: 0;
    right: 0;
    padding: 20px;
}
.footer .row {
    background: #00000096;
    color: #adadad;
}
.footer img {
    max-width: 150px;
}


/* Room points */
.rpoint a {
    text-decoration: none;
}
.rpoint.rp1 {
    position: absolute;
    top: 2px;
    left: 26px;
}
.rpoint.rp1 a {
    color: #ffd864;
}
.rpoint.rp2 {
    position: absolute;
    top: 20px;
    left: 26px;
}
.rpoint.rp2 a {
    color: #ffd864;
}
.rpoint.rp3 {
    position: absolute;
    top: 39px;
    left: 34px;
}
.rpoint.rp3 a {
    color: #b508cc;
}
.rpoint.rp4 {
    position: absolute;
    top: 14px;
    left: 60px;
}
.rpoint.rp4 a {
    color: #ffd864;
}
.rpoint a:hover {
    color: #000;
}
/* Room points END */
.pancontrols {
    text-align: center;
}
button#pan-left {
    transform: rotate(270deg);
}
button#pan-right {
    transform: rotate(90deg);
}
/* .pnlm-sprite {
background-image: url('public/hotSpots.svg');
} */


/* .bounce {
animation-name: bounce;
animation-timing-function: ease;
}
@keyframes bounce {
0%   { transform: translateY(0); }
30%  { transform: translateY(-100px); }
50%  { transform: translateY(0); }
100% { transform: translateY(0); }
} */

/* .pnlm-hotspot-base {
visibility: visible;
align-self: flex-end;
animation-duration: 2s;
animation-iteration-count: infinite;
transform-origin: bottom;
}
.pnlm-hotspot {
animation-name: pnlm-hotspot;
animation-timing-function: ease;
}
@keyframes pnlm-hotspot {
0%   { transform: translateY(0%); }
30%  { transform: translateY(10%); }
50%  { transform: translateY(0%); }
100% { transform: translateY(0%); }
} */
@media only screen and (max-width: 600px) {
  .pancontrols {
    display: none;
  }
  .col-sm-4.btn-roomandtile {
    display: flex;
    justify-content: center;
}
.col-sm-4.mt-3.logo-container {
    text-align: center;
}
.pimgload:hover p {
    display: block;
    position: fixed;
    bottom: 0px;
    top: unset;
    left: 0px;
}
.pimgload p {
    display: none;
    font-size: 30px;
    color: #fff;
    font-weight: 300;
    background: #1a1818a8;
    width: 100%;
    text-align: center;
    padding: 9px;
}
.tileImgContainer {
    min-height: 300px;
}
.footer {
    position: fixed;
    bottom: 0px;
    width: 100%;
    left: 0;
    right: 0;
    padding: 0;
}
}
