:root {
  --skin-hover: rgba(0, 0, 0, 0.1);
  --skin-color: rgba(255, 255, 255, 0.7);
}

.default-skin {
  font-family: "Questrial", sans-serif;
  font-weight: 300;
  font-size: 12px;
  font-smooth: antialiased;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  --skin: #2a2a2e;
  --skin-hover: #cda45e;
  --skin-color: rgb(255, 255, 255);
}

.light-skin {
  --skin: #f0f0f0;
  --skin-hover: #ddd;
  --skin-color: #232323;
}



.menubar {
  height: 48px;
  display: block;
  color: var(--skin-color);
  line-height: 48px;
}

.menu-trigger {
  position: absolute;
  -webkit-appearance: none;
  border: 0;
  outline: 0;
  background-color: white;
  top: 10px;
  padding: 10px 20px;
  color: var(--skin-color);
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.2);
}
.menu-trigger:hover {
  opacity: 1;
  -webkit-opacity: 1;
}
.menu-trigger.left {
  left: 10px;
}
.menu-trigger.right {
  right: 20px;
}
.menu-trigger i {
  color: rgb(0, 0, 0);
}

.menu-close {
  position: absolute;
  -webkit-appearance: none;
  border: 0;
  outline: 0;
  background-color: white;
  top: 9px;
  left: 310px;
  padding: 7px 12px;
  color: var(--skin-color);
  cursor: pointer;
  -webkit-tap-highlight-color: rgb(0, 0, 0);
  z-index: 9999;
  display: none;
}
.menu-close:hover {
  opacity: 1;
  -webkit-opacity: 1;
}
.menu-close i {
  color: rgb(0, 0, 0);
}
.menu-close.visibility {
  display: block;
}

.mobile-menu {
  position: absolute;
  top: 17px;
  right: 10px;
  width: auto;
  height: auto;
  justify-content: center;
  z-index: 9999;
  display: none;
}
.mobile-menu i {
  padding: 0px 5px;
  color: rgba(255, 255, 255, 0.8);
}

.pano-title {
  position: absolute;
  top: 0px;
  left: 50%;
  height: 45px;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.8);
  z-index: 9999;
  display: none;
  justify-content: center;
  align-items: center;
}

.sticky {
  position: relative;
  top: 0;
  left: 0;
  width: 300px;
}

.menu-container {
  font-family: "Questrial", sans-serif;
  overflow: auto;
  display: block;
  bottom: 0px;
  position: absolute;
  height: calc(100% - 150px);
-webkit-overflow-scrolling: touch;

}
.menu-container::-webkit-scrollbar {
  width: 4px;
}
.menu-container::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.2);
}
.menu-container::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.11);
}
.menu-container::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.position-left {
  left: -300px;
  opacity: 1;
}
.position-left.open {
  left: 0;
  opacity: 1;
}

.position-right {
  right: -300px;
}
.position-right.open {
  right: 0;
}

.menu-container,
.menu-head,
.menu-left,
.menu-left.open .menu-right,
.menu-right.open {
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
}

.menu-container,
.menu-head {
  background: var(--skin);
  position: fixed;
  z-index: 1000;
  width: 300px;
}

.menu-head {
  height: 150px;
  box-sizing: border-box;
  margin: 0px;
  top: 0;
}
.menu-head .layer {
  background: rgba(0, 0, 0, 0.2);
  display: block;
  padding: 0px 15px 15px 15px;
}
.menu-head h3 {
  top: -35px;
  font-size: 13pt;
  font-weight: 400;
}

.menu-items {
  list-style: none;
  font-size: 14px;
}
.menu-items li i {
  font-size: 16px;
  margin-right: 10px;
  width: 20px;
}
.menu-items li.active {
  background: var(--skin-hover);
}

.dropdown-heading,
.menu-items li a {
  text-decoration: none;
  padding: 13px;
  display: block;
  color: var(--skin-color);
  border-bottom: 1px dotted rgba(255, 255, 255, 0.15);
  margin: 0;
  cursor: pointer;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}

.dropdown-heading {
  -webkit-tap-highlight-color: transparent;
}

.dropdown-heading:hover, .dropdown-heading.active,
.menu-items li a:hover {
  background: var(--skin-hover);
}

.active {
  color: white !important;
}

.has-sub.sub span {
  color: #444;
  padding-left: 33px;
}

span.lang {
  padding-left: 0px !important;
}
.has-sub.sub span:hover {
  color: white !important;
}
.has-sub.sub ul li a {
  padding-left: 65px;
}
.has-sub ul li a {
  display: flex;
  padding: 12px 33px;
  border-bottom: 0;
  font-size: 14px;
  color: #000;
  transition: 0.1s;
  -webkit-transition: 0.1s;
  border-bottom: 1px dotted #373675;
}
.has-sub ul li a:hover {
  background: #dedede;
  transition: 0.1s;
  -webkit-transition: 0.1s;
}
.has-sub ul li a.active {
  background: #dedede;
  color: #000 !important;
}
.has-sub span {
  display: flex;
  box-sizing: border-box;
}
.has-sub i.d-arrow {
  float: right;
  margin-right: 10px;
  transition: 0.36s;
  font-size: 16px;
  width: auto;
}
.has-sub .d-arrow {
  position: absolute;
  right: 0;
}
.has-sub .d-arrow.d-down {
  transform: rotateZ(180deg);
  -webkit-transform: rotateZ(180deg);
  -moz-transform: rotateZ(180deg);
  transition: 0.36s;
  -webkit-transition: 0.36s;
  -moz-transition: 0.36s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-opacity: 0;
  }
  to {
    opacity: 1;
    -webkit-opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-opacity: 0;
  }
  to {
    opacity: 1;
    -webkit-opacity: 1;
  }
}
.has-sub ul {
  list-style: none;
  overflow: hidden;
  display: none;
  background: #f2f9f9;
}

.col {
  display: flex;
  justify-content: center;
  align-items: center;
}

.row {
  display: table-cell;
}

.for-name {
  max-width: 140px;
  padding: 10px;
  color: var(--skin-color);
}

.for-pic {
  max-width: 50%;
}

.profile-pic img {
  width: 300px;
  /*height: auto;*/
  max-height: 150px;
  /*border: 1px solid rgba(255, 255, 255, 0.01); */
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

.tagline,
.menu-head h3 {
  display: block;
  position: relative;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tagline {
  font-size: 11px;
  bottom: 32px;
  display: block;
}

.dim-overlay {
  display: none;
}
.dim-overlay:before {
  content: "";
  background-color: rgba(0, 0, 0, 0.4);
  height: 100vh;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  overflow: hidden;
  z-index: 2;
}

.logo {
  display: block;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  font-size: 22px;
}
.logo img {
  width: 130px;
  margin-top: 10px;
  height: auto;
}
.logo a {
  text-decoration: none;
  color: var(--skin-color);
}
.logo a:hover {
  color: var(--skin-hover);
}

.node-img {
  position: absolute;
  top: 100px;
  left: 310px;
  width: 200px;
  height: 125px;
  border: 2px solid white;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  z-index: 99999;
}
.node-img img {
  width: 100%;
  height: 100%;
}
.node-img::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 50%;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  transform: translateY(-50%);
  border-right: 8px solid white;
}
.node-img.active {
  opacity: 1;
  visibility: visible;
}

@media only screen and (max-width: 600px) {
  .menu-container, .menu-head, .sticky {
    width: 100%;
  }

  .node-img, .profile-pic {
    display: none !important;
  }

  .menu-head {
    height: auto;
  }
  .menu-head .layer {
    padding: 15px 15px 30px;
  }

  .menu-container {
    top: 45px;
    height: calc(100% - 45px) !important;
    overflow: auto !important;
  }

  .mobile-menu {
    display: flex;
  }

  .pano-title {
    display: flex;
  }

  .position-left {
    left: -600px;
  }

  .menu-close {
    left: 5px;
  }
}

#loader {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: white;
  margin: auto;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
}


.hide {
  position: absolute;
  left: -300px !important;  
  /*display: none !important;*/
}


.langbar {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  
}

.langbar div {
  position: relative !important;
  margin: 0px 4px !important;
}

.langbar div div {
  background-color: #fff !important;
  border-radius: 4px !important;
  padding: 4px 6px !important;
  cursor: pointer !important;
}

.dropdown-heading.active span {
  color: white !important;
}

.dropdown-heading:hover span {
  color: white !important;
}

.side {
  left: 0px;
  opacity: 1; 
  transition: none !important;
}
