﻿#panorama {
  width: 600px;
  height: 400px;
}

/* #ControlWrapper {

  color: #fff;
} */

#ControlWrapperLeftBottom {
  /*  background: #ffffffb5;*/
  color: #fff;
  display: flex;
  border: 1px solid white;
}
/* loading screen css for photo album start */

#loading-screen {
  position: fixed; /* Cover the entire viewport */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(50, 50, 50, 0.8); /* Darker semi-transparent background */
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column; /* Stack spinner and text vertically */
  z-index: -1;
  backdrop-filter: blur(5px); /* Add a blur effect to the background */
}

/* Spinner */
.spinner {
  border: 8px solid rgba(255, 255, 255, 0.3); /* Light border */
  border-top: 8px solid #3498db; /* Blue border for animation */
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 1.5s linear infinite;
  box-shadow: 0 0 20px rgba(52, 152, 219, 0.5); /* Add a glow effect */
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Loading Text */
#loading-screen p {
  margin-top: 20px;
  font-size: 18px;
  color: #fff;
  font-family: Arial, sans-serif;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.8); /* Add a subtle glow */
}

/* Smooth transition for hiding the loading screen */
#loading-screen.hide {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.box_1 {
  width: 100%;
  height: 600px; /* Set a fixed height */
  overflow: hidden; /* Prevent content from affecting size */
  position: relative;
}

.image-slider {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.slide:first-child {
  opacity: 1;
  position: relative;
  animation: zoomInSmooth 0s ease-in-out forwards;
}


.slide {
  opacity: 0;
  position: absolute;
  transition: opacity 0.5s ease-in-out;
  transform: scale(1);
  -webkit-transition: opacity 0.5s ease-in-out;
  -moz-transition: opacity 0.5s ease-in-out;
  -ms-transition: opacity 0.5s ease-in-out;
  -o-transition: opacity 0.5s ease-in-out;
}

.slide.active {
  opacity: 1;
  display: block;
  position: relative;
  animation: zoomInSmooth 2s ease-in-out forwards;
  -webkit-animation: zoomInSmooth 2s ease-in-out forwards;
}

@keyframes zoomInSmooth {
  0% {
      transform: scale(1.2);
      opacity: 0.7;
      -webkit-transform: scale(1.2);
      -moz-transform: scale(1.2);
      -ms-transform: scale(1.2);
      -o-transform: scale(1.2);
}
  100% {
      transform: scale(1.60);
      opacity: 1;
      -webkit-transform: scale(1.60);
      -moz-transform: scale(1.60);
      -ms-transform: scale(1.60);
      -o-transform: scale(1.60);
}
}


.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 0.8px solid black;
  color: white;
  border: none;
  width: 30px; /* Set equal width and height */
  height: 30px; /* Set equal width and height */
  border-radius: 50%; /* Makes it a perfect circle */
  display: flex; /* Center content horizontally and vertically */
  align-items: center;
  justify-content: center;
  font-size: 24px;
  cursor: pointer;
  z-index: 1000;
  transition: background-color 0.3s ease; /* Smooth hover effect */
}
#prev-btn {
  left: 10px;
}

#next-btn {
  right: 10px;
}

.nav-btn:hover {
  background-color: rgba(255, 255, 255, 0.6);
}


/* loading screen css for photo album end */

#leftcontrols {
  position: absolute;
  bottom: 30px;
  left: 10px;
  z-index: 2;
  text-align: center;
  box-shadow: 0 1px 2px rgba(60, 64, 67, 0.3),
    0 1px 3px 1px rgba(60, 64, 67, 0.15);
}

#rightcontrols {
  position: absolute;
  bottom: 30px;
  z-index: 2;
  text-align: center;
  right: 15px;
  box-shadow: 0 1px 2px rgba(60, 64, 67, 0.3),
    0 1px 3px 1px rgba(60, 64, 67, 0.15);
}

#rightLogocontrols {
  position: absolute;
  bottom: 10px;
  z-index: 2;
  text-align: center;
  right: 85px;
  /*box-shadow: 0 1px 2px rgba(60,64,67,0.3), 0 1px 3px 1px rgba(60,64,67,0.15);*/
}

#topRightcontrols {
  position: absolute;
  top: 10px;
  z-index: 2;
  text-align: center;
  right: 15px;
  box-shadow: 0 1px 2px rgba(60, 64, 67, 0.3),
    0 1px 3px 1px rgba(60, 64, 67, 0.15);
}

#topLeftcontrols {
  position: absolute;
  top: 10px;
  z-index: 2;
  text-align: center;
  left: 10px;
  box-shadow: 0 1px 2px rgba(60, 64, 67, 0.3),
    0 1px 3px 1px rgba(60, 64, 67, 0.15);
}
/* #gyroEnabledContent {
  position: absolute;
  top: 70px;
  z-index: 2;
  text-align: center;
  left: 10px;
  box-shadow: 0 1px 2px rgba(60, 64, 67, 0.3),
    0 1px 3px 1px rgba(60, 64, 67, 0.15);
} */
.ctrl {
  padding: 8px 5px;
  width: 30px;
  text-align: center;
  display: inline-block;
  cursor: pointer;
}

/* .ctrlrightTop {
  padding: 5px 10px;
  width: 30px;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
  border: 1px solid white;
}

.ctrlrightTop:hover {
  background: #44444469;
  color: #fff;
  cursor: pointer;
} */

.ctrlleftTop {
  padding: 5px 10px;
  width: 30px;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
  border: 1px solid white;
}

.ctrlleftTop:hover {
  background: #444;
  cursor: pointer;
}

.ctrlrightBottom {
  padding: 5px 10px;
  width: 30px;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
  border: 1px solid white;
}

.ctrlrightBottom:hover {
  background: #44444469;
  color: #fff;
}

.ctrlrightLogoBottom {
  padding: 5px 10px;
  width: 30px;
  text-align: center;
  cursor: pointer;
}

.ctrlrightLogoBottom:hover {
  /* background: #44444469;
          color: #fff;*/
}

.ctrlrightBottomZoomIn {
  padding: 5px 10px;
  width: 30px;
  font-size: 20px;
  text-align: center;
  cursor: pointer;
  border-right: 1px solid white;
}

.ctrlrightBottomZoomIn:hover {
  background: #44444469;
  color: #fff;
}

.ctrlrightBottomZoomOut {
  padding: 5px 10px;
  width: 30px;
  font-size: 20px;
  font-weight: 100;
  text-align: center;
  cursor: pointer;
}

.ctrlrightBottomZoomOut:hover {
  background: #44444469;
  color: #fff;
}

.ctrl:hover {
  background: rgba(200, 200, 200, 1);
}

#statusBottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 2000;
}

#statusBottomwrapper {
  text-align: center;
  font-size: 12px;
  padding: 2px;
}

.linkBottom {
  margin: 0px;
  text-decoration: none;
  /*color: rgb(0, 171, 85);*/
  color: white;
  cursor: pointer !important;
}

.leftSideMenuWrapper {
  /*  width: 350px;
              background: #fffffffa;*/
  color: #666;
  position: absolute;
  z-index: 5;
  top: 100px;
  height: 50%;
  left: 5px;
  display: none;
  animation: 0.3s cubic-bezier(0, 0, 0, 0) wipe-in-bottom-right both;
}

@keyframes wipe-in-bottom-right {
  from {
    clip-path: polygon(0 0, 0 0, 0 0, 0 50%);
  }

  to {
    clip-path: polygon(-50% 0%, 500% 0, 0 500%, 0 500%);
  }
}

[transition-style="in:wipe:bottom-right"] {
  animation: 2.5s cubic-bezier(0.25, 1, 0.3, 1) wipe-in-bottom-right both;
}

[transition-style="in:wipe:right"] {
  animation: 2.5s cubic-bezier(0.25, 1, 0.3, 1) wipe-in-right both;
}

.menuHeader {
  display: flex;
  padding: 10px 0px;
  flex-direction: row;
  height: 30px;
  border-bottom: 1px solid grey;
  justify-content: flex-end;
  align-items: center;
}

.imageListView {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.imageListViewWrapper {
  overflow-x: auto;
  /* height:calc(80vh);*/
  height: calc(75vh);
}

.imageListItem {
  display: flex;
  justify-content: center;
  align-content: center;
  padding: 10px;
  position: relative;
  /*  width:200px;
              height:150px;*/
}

.imageListItem:hover {
  cursor: pointer;
}

.menuItem {
  padding-right: 15px;
  font-size: 20px;
}

.tooltip-container {
  position: relative;
  margin: 50px;
}

.tooltip-trigger {
  display: inline-block;
  cursor: pointer;
  padding: 5px 10px;
  border: 1px solid #fff;
  border-radius: 5px;
}

.tooltip {
  display: none;
  position: absolute;
  margin-top: 2px;
  background-color: #444;
  color: white;
  padding: 5px;
  font-size: 12px;
  z-index: 5;
}

.tooltip-trigger:hover {
  border: 1px solid grey;
  border-radius: 5px;
}

.HeaderItem {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1px;
}

.ImgClass {
  border: 1px solid #ddd;
  border-radius: 4px;
  height: 150px;
  width: 250px;
}

/* /* To style the document scrollbar, remove `.custom-scrollbar` */
.custom-scrollbar::-webkit-scrollbar {
  width: 8px;
}

.custom-scrollbar::-webkit-scrollbar-track {
  background: #00000066;
  border-radius: 10px;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.5);
}

.bottom-right {
  position: absolute;
  bottom: 0px;
  width: 250px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background: #444;
  color: #fff;
}

.ImageItemNew {
  position: relative;
  height: 100px;
  min-width: 140px;
  margin: 5px;
  box-sizing: border-box;
  transition: border 0.5s ease 0s, filter 0.3s ease 0s, margin 0.3s ease 0s;
  opacity: 1;
  font-size: 0px;
  cursor: pointer;
  border: 3px solid rgb(255, 255, 255);
  border-radius: 8px;
  box-shadow: rgba(0, 0, 0, 0.7) 0px 1px 5px;
  background-color: rgba(0, 0, 0, 0.3);
  background-position: center center;
  background-size: 196px 96px;
  background-repeat: no-repeat;
}

@media only screen and (max-width: 430px),
  only screen and (max-device-width: 430px) {
  .ImageItemNew {
    height: 70px;
    min-width: 120px;
  }
}

.ImageItemNew:hover {
  border: 3px solid lightgreen;
  border-radius: 8px;
  cursor: pointer;
}

.tooltiptext {
  visibility: hidden;
  background-color: black;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
}

.tooltiptext:hover {
  visibility: visible;
}

.rightSideMenuWrapper {
  color: #666;
  position: absolute;
  z-index: 5;
  top: 50px;
  /*  height: 200px;*/
  right: 1px;
  display: none;
  width: 200px;
  padding: 2px;
  /*  background: #fff;*/
  transition: opacity 0.1s ease 0.02s;
  border-radius: 5px;
  border: 1px solid white;
}

.buttonRadio {
  float: left;
  margin: 0 5px 0 0;
  width: 100px;
  height: 40px;
  position: relative;
  width: 100%;
  text-align: left;
  overflow: hidden;
  font-size: 12px;
  border: 1px solid #ffffff3b;
}
.buttonRadio:hover {
  cursor: pointer;
  border: 1px solid #fff;
  color: #fff;
  background: #44444469;
}

.buttonRadio label,
.buttonRadio input {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.buttonRadio input[type="button"] {
  opacity: 0.011;
  z-index: 100;
}

.buttonRadio input[type="button"]:checked + label {
  background: #44444469;
  color: #fff;
  border-radius: 2px;
}

.buttonRadio label {
  cursor: pointer;
  z-index: 90;
  line-height: 1.8em;
  text-align: left;
  overflow: hidden;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
}
.labelRadio {
  width: 100%;
  text-align: left;
}
.labelRadio:hover {
  color: #fff;
  cursor: pointer;
}
.Imagedetails {
  visibility: visible;
  bottom: 0;
  width: 100%;
  padding: 8px;
  color: #fff;
  font-size: 12px;
  bottom: 0px;
  position: absolute;
  text-align: center;
  background: #44444469;
  overflow: hidden;
  left: 0px;
}
.Imagedetails:hover {
  background: #444;
  color: #fff;
}

.custom-hotspot-dark {
  color: #444;
  /*background-image: url("img/direction-top.svg");*/
  background-repeat: round;
  width: 35px;
  height: 35px;
  visibility: visible;
  transform-style: preserve-3d;
}

/* Base style for the tooltip */
div.custom-tooltip-dark span {
  visibility: hidden; /* Initially hidden */
  opacity: 0;         /* Initially transparent */
  position: absolute;
  border-radius: 5px;
  text-align: center;
  max-width: 300px;
  padding: 5px 5px;
  margin-left: -220px;
  cursor: default;
  border: 1px solid #444;
  color: #fff;
  background: #44444469;
  font-size: 14px;
  font-weight: bolder;
  transition: visibility 0s, opacity 0.3s ease; /* Transition effect */
}

/* Show the tooltip on hover */
div.custom-tooltip-dark:hover span {
  visibility: visible; /* Show the tooltip */
  opacity: 1;          /* Make it fully opaque */
}

/* Forward-Backward */
/* Base style for the tooltip */
div.custom-tooltip-dark-img span {
  visibility: visible; /* Initially hidden */
  opacity: 1;         /* Initially transparent */
  position: absolute;
  margin-top: 5px;
  border-radius: 5px;
  text-align: center;
  max-width: 200px;
  padding: 5px 5px;
  margin-left: -220px;
  cursor: default;
  border: 1px solid #444;
  color: #fff;
  background: #44444469;
  font-size: 12px;
  font-weight: bolder;
  transition: visibility 0s, opacity 0.3s ease; /* Transition effect */
}

/* Show the tooltip on hover */
div.custom-tooltip-dark-img:hover span {
  visibility: visible; /* Show the tooltip */
  opacity: 1;          /* Make it fully opaque */
}

div.custom-tooltip-dark span:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-width: 10px;
  border-style: solid;
  border-color: #444 transparent transparent transparent;
  bottom: -20px;
  left: -10px;
  margin: 0 50%;
}


div.custom-tooltip-light span {
  position: absolute;
  border-radius: 5px;
  text-align: center;
  max-width: 300px;
  padding: 5px 5px;
  margin-left: -220px;
  cursor: default;
  border: 1px solid #fff;
  background-color: #ffffff3b;
  color: #fff;
  font-size: 14px;
  font-weight: bolder;
}

div.custom-tooltip-light span:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-width: 10px;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
  bottom: -20px;
  left: -10px;
  margin: 0 50%;
}

div.custom-tooltip-light:hover span:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-width: 10px;
  border-style: solid;
  border-color: #444 transparent transparent transparent;
  bottom: -20px;
  left: -10px;
  margin: 0 50%;
}

div.custom-tooltip-light span:hover {
  color: #fff;
  background: #44444469;
  border: 1px solid #444;
  cursor: pointer;
}

a.custom-url {
  color: #fff;
}
/* 
a.custom-url {
  color: #444;
} */
#leftcontrolsLogo {
  position: absolute;
  bottom: 10px;
  z-index: 2;
  text-align: center;
  right: 90px;
  box-shadow: 0 1px 2px rgba(60, 64, 67, 0.3),
    0 1px 3px 1px rgba(60, 64, 67, 0.15);
}

.ctrlleftTopLogo {
  /* padding: 5px 10px;
    width: 30px;*/
  /* font-size: 20px;
    font-weight: bold;*/

  cursor: pointer;
  margin-top: 5px;
  /* border: 1px solid; */
  /*background:#fff;*/
}

.ctrlleftTopLogo:hover .hoverLogo:hover {
  display: block;
  position: absolute;
  /* background: #44444469;
        color: #fff;*/
}

.hoverLogo {
  display: none;
}
#controlsLogo {
  position: absolute;
  left: 10px;
  top: -5px;
}

#droneViewClose {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 10px;
  background: #44444469;
  border: 1px solid #444;
  border-radius: 10px;
  color: #fff;
  text-align: center;
  font-size: 12px;
}

#droneViewClose:hover {
  cursor: pointer;
}

.custom-play {
  text-decoration: none;
  color: red;
  animation: blinker 1s linear infinite;
}

.play-cancel {
  position: absolute;
  right: -13px;
  top: -20px;
  height: 25px;
  width: 25px;
  border-radius: 50%;
  /* padding: 5px; */
  background: #fff;
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: 700;
}

.whatsapp-wrpper {
  transform: rotate(-90deg);
  position: absolute;
  top: 50%;
  right: -62px;
  z-index: 2;
  text-align: center;
  background: #0009;
  padding: 15px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-top-right-radius: 20%;
  border-top-left-radius: 20%;
}

@keyframes blinker {
  50% {
    color: orange;
  }
}

.center-controls-wrapper {
  height: 100px;
  position: absolute;
  width: 100%;
  color: #fff;
  font-size: 20px;
  flex-direction: row;
  cursor: inherit;
  z-index: 2;
  bottom: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.center-controls-div {
  margin: 5px;
  padding: 3px;
}

.center-controls-div:hover {
  cursor: pointer;
}

.control-wrapper {
  background: #0009;
  display: flex;
  flex-direction: row;
  padding: 0px 5px;
  border-radius: 10%;
  padding-left: 30px;
  padding-right: 30px;
}
._hide {
  transition: opacity 0.1s ease 0.02s;
}

.scene-description {
  position: absolute;
  right: 5px;
  top: 10px;
  background: #0009;
  border-left: 10px solid black;
  font-size: 15px;
  color: #fff;
  z-index: 100;
  padding: 15px;
  transition: opacity 0.1s ease 0.02s;
  /*min-height:0px;*/
}

.scene-description:hover {
  cursor: pointer;
}

.gallary-wrapper {
  position: absolute;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 90%;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  bottom: 90px;
  z-index: 2500;
  width: auto;
  background-color: #0009;
  border-radius: 2rem;
  justify-self: center;
  left: 30px;
  right: 30px;
}

@media only screen and (max-width: 430px),
  only screen and (max-device-width: 430px) {
  .gallary-wrapper {
    padding: 0.5rem;
    border-radius: 1rem;
  }
}

::-webkit-scrollbar {
  display: none;
}

.image_wrapper {
  display: flex;
  width: auto;
  justify-content: flex-start;
  align-items: center;
  overflow-x: auto;
  scroll-behavior: smooth;
  max-width: 1300px;
}

.gallary-item {
  padding: 10px;
  height: 80px;
  width: 140px;
  flex-wrap: wrap;
  color: #fff;
  background: #0009;
  border-radius: 5px;
  border: 4px solid black;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 5px;
  text-align: center;
  z-index: 2000;
}

@media only screen and (max-width: 430px),
  only screen and (max-device-width: 430px) {
  .gallary-item {
    padding: 6px;
    width: 180px;
  }
}

.gallary-item:hover {
  color: #0009;
  background: #fff;
  cursor: pointer;
  border: 4px solid grey;
  transition: opacity 0.1s ease 0.02s;
}

.leftside-submenu-wrapper {
  position: absolute;
  left: 0;
  top: 40%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.leftside-submenu-item {
  display: flex;
}

.leftside-submenu-arrow {
  position: absolute;
  left: 0;
  top: 50%;
  height: 100px;
  font-size: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #0009;
  color: #fff;
  padding: 5px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

.simplebar-content-wrapper {
  scrollbar-width: auto;
  -ms-overflow-style: auto;
}

.simplebar-content-wrapper::-webkit-scrollbar,
.simplebar-hide-scrollbar::-webkit-scrollbar {
  display: initial;
  width: initial;
  height: initial;
}

/**/

.prevBtn_Wrapper,
.nextBtn_Wrapper {
  /*flex: 0.1;*/
  display: flex;
  /*background-color: rgba(255, 255, 255, 0.5);*/
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  visibility: hidden;

  height: 100%;
  justify-content: center;
  align-items: center;
  width: 35px;
}

.nextBtn,
.prevBtn {
  background-color: #0009;
  color: #fff;
  border: 0px;
  height: 120px;
  font-weight: 900;
  padding: 6px;
}
.nextBtn {
  border-radius: 0px 8px 8px 0px;
}

.prevBtn {
  border-radius: 8px 0px 0px 8px;
}

@media only screen and (max-width: 430px),
  only screen and (max-device-width: 430px) {
  .nextBtn,
  .prevBtn {
    height: 90px;
  }
}

.prevBtn_Wrapper {
  left: 10px;
}

.nextBtn_Wrapper {
  right: 10px;
}

:root {
  --white: #ffffff;
  --light-grey: #edf0f1;
  --violet: #655be1;
  --dark-violet: #5146e1;
  --black: #21232a;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ul {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

body {
  font-family: "Inter", sans-serif;
  text-align: center;
  padding: 0 20px;
  background: var(--light-grey);
  color: var(--white);
}

.notification {
  position: absolute;
  top: 0;
  right: 0;
  padding: 10px;
  background: var(--violet);
}

/* MAIN STYLES
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.socialmedia_submenu {
  position: absolute;
  bottom: 90px;
  left: 53.2%;
  display: flex;
  flex-direction: column;
  transition: all ease-in 2s;
}

.social_item {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  height: 50px;
  width: 50px;
  margin: 5px;
  background: #0009;
  color: #fff;
  /*animation: animate_items 0.5s initial;*/
  animation: close 0.3s ease both; /* closing list */
  transform: scale(0);
}

.animate_social_item {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  height: 50px;
  width: 50px;
  margin: 5px;
  background: #0009;
  color: #fff;
  /*animation: animate_items 0.5s initial;*/
  animation: open 0.3s ease both; /* opening list */
  transform: scale(0);
}

/*-------------------------------------*/

@keyframes open {
  0% {
    transform: scale(0);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes close {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(0);
  }
}
/* -------------------------------- close animation------------------------------*/

.socialmedia_submenu .social_item:nth-child(0) {
  animation-delay: 0s;
}

.socialmedia_submenu .social_item:nth-child(1) {
  animation-delay: 0.1s;
}

.socialmedia_submenu .social_item:nth-child(2) {
  animation-delay: 0.2s;
}

.socialmedia_submenu .social_item:nth-child(3) {
  animation-delay: 0.3s;
}

.socialmedia_submenu .social_item:nth-child(4) {
  animation-delay: 0.4s;
}

/* ----------------  open  animation ---------------------------------*/

.socialmedia_submenu .animate_social_item:nth-child(4) {
  animation-delay: 0s;
}

.socialmedia_submenu .animate_social_item:nth-child(3) {
  animation-delay: 0.1s;
}

.socialmedia_submenu .animate_social_item:nth-child(2) {
  animation-delay: 0.2s;
}

.socialmedia_submenu .animate_social_item:nth-child(1) {
  animation-delay: 0.3s;
}

.socialmedia_submenu .animate_social_item:nth-child(0) {
  animation-delay: 0.4s;
}

.social_item:hover {
  cursor: pointer;
}

.modal {
  z-index: 4000 !important;
}

/* --------------------------------------------Side Menu ----------------------------------------------------------------------------*/

.backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1600;
  display: none;
}

.side_menu {
  display: none;
}

.menu_wrapper {
  position: absolute;
  right: 0%;
  top: 0%;
  border-left: 2px solid black;
  color: #fff;
  z-index: 6500;
  height: 100%;
  width: 250px;
  display: flex;
  align-items: center;
  transition: 0.5s;
  background: linear-gradient(to bottom, #b3b6b4, #e9e9e9, #b3b6b4);
  padding: 0.5rem;
  flex-direction: column;
  gap: 2rem;
  padding-bottom: 1rem;
  transition: animation 0.5s ease-in-out;
  animation: animate_sidebar 0.3s linear;
}

@keyframes animate_sidebar {
  0% {
    width: 0px;
  }

  100% {
    width: 250px;
  }
}

@media only screen and (max-width: 430px),
  only screen and (max-device-width: 430px) {
  .menu_wrapper {
    padding: 0px;
    gap: 0.5rem;
  }
}

.icon_wrapper {
  height: 100px;
  width: 100%;
  padding: 1rem;
}

.icon_wrapper img {
  mix-blend-mode: darken;
  border-bottom: 2px solid red;
  padding-bottom: 0.5rem;
  /* margin-bottom: 2rem; */
}

@media only screen and (max-width: 430px),
  only screen and (max-device-width: 430px) {
  .icon_wrapper {
    width: 75%;
    height: 90px;
  }
}

.category_list_wrapper {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3rem;
}

.menu_singleitem {
  width: 100%;
  padding: 10px 0px;
  border-radius: 25px;
  text-align: center;
  cursor: pointer;
  transition: border-bottom 0.2s ease-in-out;
}

.Image_List_wrapper {
  width: 100%;
  height: auto;
  overflow-y: auto;
  margin-top: 1rem;
  max-height: 70%;
}

.Image_list {
  height: 100%;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  display: flex;
}

.Images_content_wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  display: none;
  height: 100%;
}

.ImageItem {
  position: relative;
  height: 100px;
  min-width: 170px;
  margin: 5px;
  box-sizing: border-box;
  transition: border 0.5s ease 0s, filter 0.3s ease 0s, margin 0.3s ease 0s;
  opacity: 1;
  font-size: 0px;
  cursor: pointer;
  border: 3px solid rgb(255, 255, 255);
  border-radius: 8px;
  box-shadow: rgba(0, 0, 0, 0.7) 0px 1px 5px;
  background-color: rgba(0, 0, 0, 0.3);
  background-position: center center;
  background-size: 196px 96px;
  background-repeat: no-repeat;
}

.MenuContianer {
  display: flex;
  width: 100%;
  transition: 0.5s;
  display: flex;
  flex-direction: column;
  /*justify-content: center;*/
  align-items: center;
  height: auto;
  max-height: 90%;
  overflow-y: auto;
}

.MenuContianer > div > ul {
  list-style-type: none;
  width: 80%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: auto;
  gap: 1.5rem;
  padding-left: 0px !important;
  margin-inline: auto !important;
}

.MenuContianer > div > ul li {
  text-align: center;
  cursor: pointer;
  transition: border-bottom 0.5s ease-in-out;
  color: black;
  border-radius: 25px;
  width: 80%;
  border: 1px solid black;
  padding: 0.5rem;
  position: relative;
  background-color: aliceblue;
  animation: animate_list 0.3s 0.7s linear ease-in;
  transition: animation 0.5s ease-in;
  animation-delay: 0.6s;
}

@keyframes animate_list {
  0% {
    transform: scale(0);
  }

  100% {
    transform: scale(1);
  }
}

.MenuContianer > div > ul li .border {
  position: absolute;
  width: 100%;
  border-radius: 25px;
  background-color: black;
  top: 0%;
  height: 100%;
  left: 3px;
  top: 5px;
  z-index: -10;
}

@media only screen and (max-width: 430px),
  only screen and (max-device-width: 430px) {
  .MenuContianer > div > ul li {
    font-size: 0.8rem;
  }
}

/*.MenuContianer > div > ul li:hover {
   border-bottom: 5px solid #0b613c;
}*/

.ImagedetailsText {
  visibility: visible;
  bottom: 0;
  width: 90%;
  padding: 8px;
  color: #fff;
  font-size: 12px;
  bottom: 0px;
  position: absolute;
  text-align: center;
  background: #44444469;
  overflow: hidden;
  left: 0px;
}

.ImagedetailsText:hover {
  background: #444;
  color: #fff;
}

.back_category_wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 10px;
  text-align: center;
  cursor: pointer;
  transition: border-bottom 0.5s ease-in-out;
  color: black;
  border-radius: 25px;
  border: 1px solid black;
  padding: 0.5rem;
  position: relative;
  background-color: aliceblue;
}

.back_category_wrapper::after {
  content: '""';
  position: absolute;
  top: 4px;
  left: 3px;
  background-color: black;
  border-radius: 25px;
  width: 100%;
  z-index: -10;
  height: 35px;
}

.back-button {
  text-align: center;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  /*margin-bottom: 30px;*/
  color: black;
  z-index: 3000;
  font-weight: 800;
  padding-right: 20px;
}

@media only screen and (max-width: 430px),
  only screen and (max-device-width: 430px) {
  .back-button {
    font-size: 0.9rem;
    padding-right: 10px;
  }
}

.category_name h3 {
  /*font-weight: 600;*/
  color: black;
  width: 100%;
  text-align: center;
  font-size: 1rem;
  margin: 0px;
}

@media only screen and (max-width: 430px),
  only screen and (max-device-width: 430px) {
  .menu_wrapper {
    font-size: 1.2rem;
  }
}

/*---------------------------------------------------------------- Close Sidebar btn -------------------------------------------------------------------*/

.close_btn_wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: -13px;
  top: 2rem;
}

@media only screen and (max-width: 430px),
  only screen and (max-device-width: 430px) {
  .close_btn_wrapper {
    top: 6rem;
  }
}

.close_btn {
  text-align: center;
  cursor: pointer;
  transition: border-bottom 0.5s ease-in-out;
  color: black;
  border-radius: 50%;
  border: 1px solid black;
  padding: 0.5rem;
  position: relative;
  animation: animate_list 0.3s 0.7s linear ease-in;
  transition: animation 0.5s ease-in;
  animation-delay: 0.6s;
  background-color: aliceblue;
  /*    width:2rem*/
}

/* ------------------------------------------------------------------------ Scrollbar - Style ---------------------------------------------- */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.tg-dialog {
  /* border-radius: 12px !important;
  animation-delay: 100ms !important;
  min-height: 120px !important; */
  background: rgba(0,0,0,0.9) !important;
  color: #fff !important;
  /* max-width: 340px !important;
  width: max-content !important; */
  z-index: 12500 !important;
  /* display: none !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  padding: 0 !important;
  font-size: .9rem !important;
  -webkit-border-radius: 12px !important;
  -moz-border-radius: 12px !important;
  -ms-border-radius: 12px !important;
  -o-border-radius: 12px !important; */
}

.tg-dialog .tg-dialog-footer button.tg-dialog-btn {
  color: white !important;
}

.tg-dialog-close-btn svg{
  height: 15px !important;
  width: 15px !important;
  border-radius: 5px !important;
  background-color: #fff !important;
  /*padding: 5px !important;
  */color: #fff !important;
  -webkit-border-radius: 5px !important;
  -moz-border-radius: 5px !important;
  -ms-border-radius: 5px !important;
  -o-border-radius: 5px !important;
}



.custom-hotspot-blinker {
  position: absolute;
/*    top: 50%;
  left: 50%;*/
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 2.125em;
  height: 2.125em;
  background-color: #444;
  border-radius: 50%;
  z-index:3000;
  
}

.custom-hotspot-blinker:after {
  content: '';
  position: absolute;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  border: 0px solid white;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-animation: loading 1000ms ease-out forwards infinite;
  animation: loading 1000ms ease-out forwards infinite;
}

@-webkit-keyframes loading {
  0% {
      border: 0px solid white;
  }

  20% {
      border: 8px solid white;
      width: 0%;
      height: 0%;
  }

  100% {
      border: 8px solid white;
      width: 100%;
      height: 100%;
  }
}

@keyframes loading {
  0% {
      border: 0px solid white;
  }

  20% {
      border: 8px solid white;
      width: 0%;
      height: 0%;
  }

  100% {
      border: 8px solid white;
      width: 100%;
      height: 100%;
  }
}

:root {
  --scene-description-height: 50px; /* Initial default value */
}

.scene-description {
  position: absolute;
  right: 5px;
  top: 10px;
  background: #0009;
  border-left: 10px solid black;
  font-size: 15px;
  color: #fff;
  z-index: 100;
  padding: 15px;
  transition: opacity 0.1s ease 0.02s;
}

.categorImg {
    position: fixed;
    right: 20px;
    top: calc(10px + var(--scene-description-height) + 15px); /* Added 20px for spacing */
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1;
}

.scene-description:hover {
  cursor: pointer;
}

.categorImg img{
  object-fit: cover;
  height: 50px;
  width: 50px;
  transition: transform 0.3s ease;
  margin-top: 3.7em;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.thumb-nail-img {
  display: block;
}

.thumb-nail-img.visible {
  display: block; /* Reveal when in view */
}


.categoryName {
  /* display: block; */
  position: fixed !important;
  font-family: var(--font-family-mono);
  font-size: 16px;
  position: absolute;
  top: 93px;
  text-decoration: underline;
  text-underline-offset: 4px;
  color: #6920a9;
  right: -19px;
  margin-bottom: 8px; /* Space between category name and images */
  width: 175px;
}

.image_wrapper {
  display: flex;
  gap: 15px; /* Space between images */
  flex-wrap: nowrap; /* Keeps images in a single line */
}

.gallery-item img:hover {
  transform: scale(1.05); /* Subtle zoom effect on hover */
}


@keyframes blink-border {
  0% {
      border-color: white;
  }
  50% {
      border-color: transparent;
  }
  100% {
      border-color: white;
  }
}

.active-thumbnail {
  border: 5px solid white;
  border-radius: 50%; /* Keeps the rounded shape */
  object-fit: cover;
  animation: blink-border 1s infinite; /* Apply blinking animation */
  transition: transform 0.3s ease; /* Smooth effect for other state changes */
}

.pro360-container {
  margin: 0;
  padding: 0;
  overflow: hidden;
  position: relative;
  cursor: default;
  width: 100%;
  height: 100%;
  font-family: Helvetica, "Nimbus Sans L", "Liberation Sans", Arial, sans-serif;
  background: #f4f4f4 url('../css/img/_background.svg') repeat;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  -ms-user-select: none;
  user-select: none;
  outline: 0;
  line-height: 1.4;
  
}

  .pro360-container * {
      box-sizing: content-box;
  }

.pro360-ui {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.pro360-grab {
  cursor: grab;
  /* cursor: url('./img/') 12 8, default; */
}


.pro360-grabbing {
  cursor: grabbing;
  cursor: url('img/grabbing.svg') 12 8, default;
}

/* .pro360-fullscreen-toggle-button {
  background-image: url('img/fullscreen.svg');
} */

.pro360-zoom-in {
  background-image: url('img/zoomin.svg');
}

.pro360-zoom-out {
  background-image: url('img/zoomout.svg');
}

.pro360-orientation-button {
  background-image: url('img/active.svg');
}

.pro360-circle {
  /* background-image: url('img/blinkingspot.svg');*/
  /*background-image: url('img/direction-top.svg');
  background-repeat: round;
  width:100px;
  height:100px;*/
}

.pro360-info {
  background-image: url('img/pin32.png');
  background-repeat: no-repeat;
}

.pro360-compass {
  background-image: url('img/compass.svg');
}

.pro360-container:-moz-full-screen {
  height: 100% !important;
  width: 100% !important;
  position: static !important;
}

.pro360-container:-webkit-full-screen {
  height: 100% !important;
  width: 100% !important;
  position: static !important;
}

.pro360-container:-ms-fullscreen {
  height: 100% !important;
  width: 100% !important;
  position: static !important;
}

.pro360-container:fullscreen {
  height: 100% !important;
  width: 100% !important;
  position: static !important;
}

.pro360-render-container {
  cursor: inherit;
  /* Fix display bug in Safari 7 */
  position: absolute;
  height: 100%;
  width: 100%;
}

.pro360-controls {
  margin-top: 4px;
  background-color: #444;
  opacity:8;
  /* border: 1px solid #999;
  border-color: rgba(0,0,0,0.4);
  border-radius: 3px;*/
  cursor: pointer;
  z-index: 2;
  /* Fix Safari fullscreen bug */
  -webkit-transform: translateZ(9999px);
  transform: translateZ(9999px);
}

.pro360-control:hover {
  background-color: #f8f8f8;
}

/* .pro360-controls-container {
  position: absolute;
  left: 4px;
  bottom: 4px;
  z-index: 1;
  display:none;
  flex-direction:row;
} */

.pro360-zoom-controls {
  width: 26px;
  height: 52px;
}

.pro360-zoom-in {
  width: 100%;
  height: 50%;
  position: absolute;
  top: 0;
  border-radius: 3px 3px 0 0;
}

.pro360-zoom-out {
  width: 100%;
  height: 50%;
  position: absolute;
  bottom: 0;
  background-position: 0 -26px;
  border-top: 1px solid #ddd;
  border-top-color: rgba(0,0,0,0.10);
  border-radius: 0 0 3px 3px;
}

/* .pro360-fullscreen-toggle-button, .pro360-orientation-button, .pro360-hot-spot-debug-indicator {
  width: 26px;
  height: 26px;
} */

.pro360-hot-spot-debug-indicator {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 26px;
  height: 26px;
  margin: -13px 0 0 -13px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 13px;
  display: none;
}

.pro360-orientation-button-inactive {
  background-position: 0 -156px;
}

.pro360-orientation-button-active {
  background-position: 0 -182px;
}

/* .pro360-fullscreen-toggle-button-inactive {
  background-position: 0 -52px;
} */

/* .pro360-fullscreen-toggle-button-active {
  background-position: 0 -78px;
} */

.pro360-panorama-info {
  position: absolute;
  bottom: 4px;
  background-color: rgba(0,0,0,0.7);
  border-radius: 0 3px 3px 0;
  padding-right: 10px;
  color: #fff;
  text-align: right;
  display: none;
  z-index: 2;
  /* Fix Safari fullscreen bug */
  -webkit-transform: translateZ(9999px);
  transform: translateZ(9999px);
}

.pro360-title-box {
  position: relative;
  font-size: 20px;
  display: table;
  padding-left: 5px;
  margin-bottom: 3px;
}

.pro360-author-box {
  position: relative;
  font-size: 12px;
  display: table;
  padding-left: 5px;
}

.pro360-load-box {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 150px;
  margin: -75px 0 0 -100px;
  background-color: rgba(0,0,0,0.7);
  border-radius: 3px;
  text-align: center;
  font-size: 20px;
  display: none;
  color: #fff;
}

  .pro360-load-box p {
      margin: 20px 0;
  }

.pro360-lbox {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  display: none;
}

.pro360-loading {
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-name: pro360-mv;
  -webkit-animation-name: pro360-mv;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
  animation-timing-function: linear;
  -webkit-animation-timing-function: linear;
  height: 10px;
  width: 10px;
  background-color: #fff;
  position: relative;
}

@keyframes pro360-mv {
  from {
      left: 0;
      top: 0;
  }

  25% {
      left: 10px;
      top: 0;
  }

  50% {
      left: 10px;
      top: 10px;
  }

  75% {
      left: 0;
      top: 10px;
  }

  to {
      left: 0;
      top: 0;
  }
}

@-webkit-keyframes pro360-mv {
  from {
      left: 0;
      top: 0;
  }

  25% {
      left: 10px;
      top: 0;
  }

  50% {
      left: 10px;
      top: 10px;
  }

  75% {
      left: 0;
      top: 10px;
  }

  to {
      left: 0;
      top: 0;
  }
}

.pro360-load-button {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 100px;
  margin: -50px 0 0 -100px;
  background-color: rgba(0,0,0,.7);
  border-radius: 3px;
  text-align: center;
  font-size: 20px;
  display: table;
  color: #fff;
  cursor: pointer;
}

  .pro360-load-button:hover {
      background-color: rgba(0,0,0,.8);
  }

  .pro360-load-button p {
      display: table-cell;
      vertical-align: middle;
  }

.pro360-info-box {
  font-size: 35px;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 150px;
  margin: -75px 0 0 -100px;
  background-color: #000;
  border-radius: 3px;
  display: table;
  text-align: center;
  color: #fff;
  table-layout: fixed;
}

  .pro360-info-box a, .pro360-author-box a {
      color: #fff;
      word-wrap: break-word;
      overflow-wrap: break-word;
  }

  .pro360-info-box p {
      display: table-cell;
      vertical-align: middle;
      padding: 0 5px 0 5px;
  }

.pro360-error-msg {
  display: none;
}

.pro360-about-msg {
  font-size: 11px;
  line-height: 11px;
  color: #fff;
  padding: 5px 8px 5px 8px;
  background: rgba(0,0,0,0.7);
  border-radius: 3px;
  position: absolute;
  top: 50px;
  left: 50px;
  display: none;
  opacity: 0;
  -moz-transition: opacity .3s ease-in-out;
  -webkit-transition: opacity .3s ease-in-out;
  -o-transition: opacity .3s ease-in-out;
  -ms-transition: opacity .3s ease-in-out;
  transition: opacity .3s ease-in-out;
  z-index: 1;
}

  .pro360-about-msg a:link, .pro360-about-msg a:visited {
      color: #fff;
  }

  .pro360-about-msg a:hover, .pro360-about-msg a:active {
      color: #eee;
  }

.pro360-hotspot-base {
  position: absolute;
  visibility: hidden;
  cursor: default;
  vertical-align: middle;
  top: 0;
  z-index: 1;
}

.pro360-hotspot {
  height: 35px;
  width: 35px;
  border-radius: 18px;
}

.pro360-info {
  height: 40px;
  width: 40px;
  border-radius: 18px;
}

.pro360-hotspot:hover {
  /*background-color: rgba(255,255,255,0.2);*/
}


.pro360-hotspot.pro360-scene {
  background-position: 0 -130px;
}

div.pro360-tooltip span {
  
  visibility: visible;
  position: absolute;
  border-radius: 5px;
  background-color: #ffffff3b;
  color: #fff;
  text-align: center;
  max-width: 200px;
  padding: 5px 5px;
  margin-left: -220px;
  cursor: default;
  border:1px solid #fff;
}

  div.pro360-tooltip span:after {
      content: '';
      position: absolute;
      width: 0;
      height: 0;
      border-width: 10px;
      border-style: solid;
      border-color: #fff transparent transparent transparent;
      bottom: -20px;
      left: -10px;
      margin: 0 50%;
  }

  div.pro360-tooltip:hover span:after {
      content: '';
      position: absolute;
      width: 0;
      height: 0;
      border-width: 10px;
      border-style: solid;
      border-color: #444 transparent transparent transparent;
      bottom: -20px;
      left: -10px;
      margin: 0 50%;
  }

div.pro360-tooltip span:hover {
  /*visibility: hidden;*/
  color: #fff;
  background: #44444469;
  border: 1px solid #444;
  cursor: pointer;
}

div.pro360-tooltip:hover span {
  visibility: visible;
}



.pro360-compass {
  position: absolute;
  width: 50px;
  height: 50px;
  right: 4px;
  bottom: 4px;
  border-radius: 25px;
  background-image: url('img/compass.svg');
  cursor: default;
  display: none;
}

.pro360-world {
  position: absolute;
  left: 50%;
  top: 50%;
}

.pro360-face {
  position: absolute;
  -webkit-transform-origin: 0 0 0;
  transform-origin: 0 0 0;
}

.pro360-dragfix, .pro360-preview-img {
  position: absolute;
  height: 100%;
  width: 100%;
}

.pro360-preview-img {
  background-size: cover;
  background-position: center;
}

.pro360-lbar {
  width: 150px;
  margin: 0 auto;
  border: #fff 1px solid;
  height: 6px;
}

.pro360-lbar-fill {
  background: #fff;
  height: 100%;
  width: 0;
}

.pro360-lmsg {
  font-size: 12px;
}

.pro360-fade-img {
  position: absolute;
  top: 0;
  left: 0;
}

.pro360-pointer {
  cursor: pointer;
}


.pro360-blinkcircle {
  height: 30px;
  width: 30px;
  position: absolute;
  visibility: visible;
  cursor: default;
  vertical-align: middle;
  top: 0;
  z-index: 19999;
}
/* Transparent overlay with logo */
.overlay {
  /*pointer-events: none;*/ /* Makes the overlay non-interactive */
  /*position: fixed;
  bottom: 10px;*/ /* Adjust the distance from the bottom as needed */
  /*right: 10px;*/ /* Adjust the distance from the right as needed */
  /*width: auto;*/ /* Allow content to determine width */
  /*height: auto;*/ /* Allow content to determine height */
  /*background-color: rgba(0,0,0,0.7);*/ /* Semi-transparent background */
  /*display: flex;
  justify-content: flex-end;*/ /* Align content to the end (right) */
  /*align-items: flex-end;*/ /* Align content to the end (bottom) */
  /*z-index: 9999;
  padding: 5px;*/ /* Add some padding to the right-bottom corner */

  background-color: rgba(0,0,0,0.7); /* Semi-transparent background */
  position: fixed;
  margin: 10px;
  bottom: 10px;
  right: 10px;
  padding: 5px;
}

/* Company logo */
.company-logo {
  width: 40px; /* Adjust the size as needed */
  height: auto; /* Maintains aspect ratio */
}


#toast {
  visibility: hidden;
  max-width: 50px;
  height: 50px;
  /*margin-left: -125px;*/
  margin: auto;
  background-color: #333;
  color: #fff;
  text-align: center;
  border-radius: 2px;
  position: fixed;
  z-index: 1;
  left: 0;
  right: 0;
  bottom: 50%;
  font-size: 17px;
  white-space: nowrap;
}

  #toast #img {
      width: 50px;
      height: 50px;
      float: left;
      /* padding-top: 16px;
      padding-bottom: 16px;*/
      box-sizing: border-box;
      background-color: #111;
      color: #fff;
  }

  #toast #desc {
      color: #fff;
      /*padding: 16px;*/
      margin-top: 15px;
      text-align: center;
      overflow: hidden;
      white-space: nowrap;
  }

  #toast.show {
      visibility: visible;
      -webkit-animation: fadein 0.5s, expand 0.5s 0.5s,stay 3s 1s, shrink 0.5s 2s, fadeout 0.5s 2.5s;
      animation: fadein 0.5s, expand 0.5s 0.5s,stay 3s 1s, shrink 0.5s 4s, fadeout 0.5s 4.5s;
  }


@-webkit-keyframes fadein {
  from {
      bottom: 0;
      opacity: 0;
  }

  to {
      bottom: 30px;
      opacity: 1;
  }
}

@keyframes fadein {
  from {
      bottom: 0;
      opacity: 0;
  }

  to {
      bottom: 30px;
      opacity: 1;
  }
}

@-webkit-keyframes expand {
  from {
      min-width: 50px
  }

  to {
      min-width: 350px
  }
}

@keyframes expand {
  from {
      min-width: 50px
  }

  to {
      min-width: 350px
  }
}

@-webkit-keyframes stay {
  from {
      min-width: 350px
  }

  to {
      min-width: 350px
  }
}

@keyframes stay {
  from {
      min-width: 350px
  }

  to {
      min-width: 350px
  }
}

@-webkit-keyframes shrink {
  from {
      min-width: 350px;
  }

  to {
      min-width: 50px;
  }
}

@keyframes shrink {
  from {
      min-width: 350px;
  }

  to {
      min-width: 50px;
  }
}

@-webkit-keyframes fadeout {
  from {
      bottom: 30px;
      opacity: 1;
  }

  to {
      bottom: 60px;
      opacity: 0;
  }
}

@keyframes fadeout {
  from {
      bottom: 30px;
      opacity: 1;
  }

  to {
      bottom: 60px;
      opacity: 0;
  }
}

.custom-tooltip {
  background: rgba(0,0,0,0.7);
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
}