html, body {
  min-height: 100%;
}

.vtour-menuitem {
  backface-visibility: hidden;
  transform: translateZ(0);
  -webkit-font-smoothing: subpixel-antialiased;
}

.vtour-menuitem {
  transition: transform .5s ease;
}

.vtour-menuitem:hover {
  transform: scale(1.05);
}

.projects-enter {
	transform: scale(0.5) translatey(-80px);
	opacity:0;
}

.projects-leave-to{
	transform: translatey(30px);
	opacity:0;
}

.projects-leave-active {
	position: absolute;
	z-index:-1;
}

::-webkit-scrollbar {
	height: 5px !important;
	width: 7px !important;
}
::-webkit-scrollbar-track {
	background: transparent !important;
	border-radius: 10px !important;
}
::-webkit-scrollbar-thumb {
	background: #888 !important;
	border-radius: 10px !important;
	background-clip: padding-box !important;
}
::-webkit-scrollbar-thumb:hover {
	background: #555 !important;
}

.vtour-search-bar {
  display: flex;
  height: 30px;
  width: 75%;
  position: absolute;
  overflow: auto;
  top: 35px;
}

.vtour-search-bar input {
  border-radius: 20px;
  width: 100%;
  border: 1px solid var(--aui-pale-border, #D6D6D6);
  background-color: var(--aui-pale-background, #F9F9F9);
  color: var(--aui-main-colour, #9DA9AE);
  padding: 5px;
  padding-left: 30px;
}

.vtour-search-bar input:active {
  border: 1px solid var(--theme-colour);
}

.vtour-search-active {
  border: 1px solid var(--theme-colour) !important;
}

.vtour-search-bar svg {
  width: 15px;
  height: 15px;
  z-index: 100;
  position: absolute;
  margin: 7px 0 0 9px;
}

.vtour-search-bar svg path {
  stroke: var(--aui-main-colour, #9DA9AE);
}

.vtour-search-bar svg circle {
  stroke: var(--aui-main-colour, #9DA9AE);
}

.tour-preview {
  position: fixed;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 10px;
  -webkit-box-shadow: -1px 0px 12px 3px rgb(0 0 0 / 18%);
  box-shadow: -1px 0px 12px 3px rgb(0 0 0 / 18%);
  z-index: 2010;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
@media screen and (min-width: 768px) {
  .tour-preview {
    width: 432px;
    height: 525px;
    right: 15px;
    bottom: 15px;
  }
}
.tour-preview.is-scaled {
  height: 100vh;
  height: calc(var(--vh, 1vh) * 90);
  width: 90%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  max-height: 800px;
}
.title {
  height: 40px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.tour-preview.is-scaled .title {
  height: unset;
  max-height: 50px !important;
  font-size: 22px !important;
  white-space:normal !important;
}
.tour-preview.is-scaled .vtour-content {
  height: 35% !important;
  box-sizing: border-box !important;
}
.tour-preview.is-scaled .teaser {
  height: 65% !important;
  padding-top: 40px !important;
  box-sizing: border-box !important;
}
.tour-preview.is-scaled .popup-media-container {
  height: 100%;
  margin-top: 0px;
}
.popup-media-container {
  height: 90%;
  /* margin-top: 25px; */
}
.tour-preview .vtour-content {
  height: 45% !important;
  box-sizing: border-box !important;
  justify-content: space-between;
}
.tour-preview .teaser {
  height: 55% !important;
}
@media screen and (min-width: 768px) {
  .tour-preview.is-scaled {
    height: 80vh;
    height: calc(var(--vh, 1vh) * 90);
    width: 695px;
  }
}
.tour-preview .tour-close,
.tour-preview .tour-scale {
  position: absolute;
  top: 12px;
  width: 15px;
  height: 15px;
  z-index: 100;
  cursor: pointer;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.tour-preview .tour-close:hover,
.tour-preview .tour-scale:hover {
  opacity: 0.7;
}
.tour-preview .tour-close {
  right: 12px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.tour-preview .tour-scale {
  right: 34px;
  display: none;
}
@media screen and (min-width: 768px) {
  .tour-preview .tour-scale {
    display: block;
  }
}
.tour-preview .step {
  height: 100%;
  background-color: var(--aui-main-background,#fff);
  border-radius: 5px;
}
.tour-preview .vtour-content,
.tour-preview .teaser {
  height: 45%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
}
.tour-preview .teaser {
  background-color: var(--aui-pale-background);
  padding: 35px 10px 10px 10px;
  box-sizing: border-box;
}
.tour-preview .teaser img {
  width: 100% !important;
  max-width: 675px !important;
  height: 100%;
  -o-object-fit: scale-down;
  object-fit: scale-down;
}
.tour-preview .teaser iframe {
  width: 100%;
  max-width: 675px !important;
  height: 100%;
  -o-object-fit: scale-down;
  object-fit: scale-down;
}
.tour-preview .vtour-content {
  padding: 20px;
  border-radius: 0px 0px 5px 5px;
}
@media screen and (min-width: 768px) {
  .tour-preview .vtour-content {
    padding: 18px 40px 20px 40px;
    box-sizing: unset;
  }
  .tour-preview.is-scaled .vtour-content {
    padding: 32px 40px 20px 40px;
    box-sizing: unset;
  }
}

.vtour-content {
  background-color: var(--aui-main-background,#fff);
  position: relative;
}

.vtour-menu {
  display: flex !important;
  flex-wrap: wrap !important;
  position: relative;
  justify-content: center;
  align-items: center;
  padding: 54px;
  padding-top: 100px;
  gap: 30px;
  overflow-y: scroll;
  box-sizing: border-box;
}

.vtour-menuitem {
  display: flex;
  flex-direction: column;
  border-radius: 6px;
  width: calc(50% - 15px);
  height: 275px;
  background-color: var(--aui-pale-background);
  cursor: pointer;
}

.vtour-menuitemimg {
  padding: 10px;
  height: 200px;
}

.vtour-menuitem img {
  width: 100%;
  height: 200px;
  object-fit: contain;
}

.vtour-menuitemtitle {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: bold;
  background-color: var(--aui-pale-border);
  border-radius: 0px 0px 6px 6px;
  padding: 5px;
  flex: 1 1 auto;
}

.vtour-menuitemtitle p {
  margin: auto;
  text-align: center;
}

.tour-close path {
  fill: var(--aui-main-colour, #333333);
}

.tour-scale path {
  fill: var(--aui-main-colour, #333333);
}

.tour-preview .vtour-content .title {
  font-family: inherit;
  font-size: 20px;
  font-weight: 700;
  line-height: 40px;
  margin-bottom: 10px;
  margin-top: 0;
  height: 20%;
  max-height: 50px;
}
.tour-preview .vtour-content .description {
  height: 65%;
  color: var(--aui-main-colour,#333);
  opacity: 0.8;
  font-family: inherit;
  font-size: 15px;
  font-weight: 400;
  line-height: 22px;
  /* max-height: 88px; */
  margin-bottom: 0;
  margin-top: 0;
  max-width: 352px;
  /* word-break: break-word; */
  /* text-overflow: ellipsis; */
  /* overflow: hidden; */
  overflow-y: scroll;
}
.tour-preview .vtour-content.is-scaled-desc {
  position: absolute;
  top: 0;
  height: 100% !important;
  width: 100%;
}

.tour-preview .vtour-content .description.is-scaled-desc {
  flex: 1 1 auto;
  max-height: unset !important;
}
.tour-preview.is-scaled .description {
  max-height: 130px !important;
  max-width: 100%;
  height: 65%;
  overflow-y: scroll;
}
.description p {
  margin: 0px;
}
.tour-preview .vtour-content .footer {
  /* margin-top: auto; */
  bottom: 15px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  /* position: absolute; */
  padding-bottom: 10px;
  height: 15%;
  margin-top: 10px;
  max-height: 30px;
}
.tour-preview .vtour-content .footer .footer-dots {
  margin: auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  max-width: 170px;
  overflow: hidden;
}
.tour-preview .vtour-content .footer .footer-dots .dot {
  border-radius: 50%;
  min-width: 6px;
  height: 6px;
  margin-right: 7px;
}
.tour-preview .vtour-content .footer .footer-link {
  color: var(--aui-main-colour,#333);
  opacity: 0.7;
  margin: auto 15px auto auto;
  cursor: pointer;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.tour-preview .vtour-content .footer .footer-link:hover {
  opacity: 0.5;
}
.tour-preview .vtour-content .footer .footer-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  /* width: 66px; */
  height: 30px;
  box-sizing: border-box;
  color: #fff;
  padding: 10px 15px;
  cursor: pointer;
  background-color: var(--aui-main-background);
  color: var(--theme-colour, #FFFFFF);
  border: 2px solid var(--theme-colour);
  /* display: inline-block; */
  border-radius: 30px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.tour-preview .vtour-content .footer .footer-btn-theme {
  display: flex;
  justify-content: center;
  align-items: center;
  /* width: 66px; */
  height: 30px;
  box-sizing: border-box;
  color: #fff;
  padding: 10px 15px;
  cursor: pointer;
  border: 2px solid var(--theme-colour);
  /* display: inline-block; */
  border-radius: 30px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: var(--theme-colour,#2C46CC);
  color: #fff;
}

.tour-preview .vtour-content .footer  .footer-btn-theme:hover {
  background-color: var(--aui-main-background) !important;
  color: var(--theme-colour) !important;
}

.tour-preview .vtour-content .footer .footer-btn:hover {
  /* opacity: 0.7; */
  color: #fff;
	background-color: var(--theme-colour,#2C46CC)!important;
}
.tour-preview .vtour-content .footer .footer-btn.ml-auto {
  margin-left: auto;
  background-color: var(--aui-main-background);
}
.tour-preview .vtour-content .footer .footer-btn-theme.ml-auto {
  margin-left: auto;
}
.tour-popover {
  position: fixed;
  z-index: 2005;
  background: var(--aui-main-colour,#fff);
  opacity: 0.7;
  /* backdrop-filter: blur(25px); */
  height: 100vh;
  width: 100vw;
  left: 0;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
}
.tour-blurred {
  -webkit-filter: blur(4px);
  filter: blur(4px);
  overflow: hidden;
}

@media screen and (max-width: 768px) {

  .popup-media-container {
    max-height: 235px;
  }

  .tour-preview .teaser img {
    max-height: 235px;
  }

  .tour-preview {
    background:none !important;
  }
  .tour-preview.is-scaled .teaser {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40% !important;
    min-height: 235px !important;
    max-height: 325px !important;
  }

  .tour-preview .step {
    /* min-height: 20vh; */
    height: auto !important;
    position: relative;
    background: #fff;
  }

  .tour-preview.is-scaled .vtour-content {
    height: 35% !important;
    box-sizing: border-box !important;
  }

  .tour-preview .vtour-content .footer {
    width: 100%;
    flex-grow: 1;
    position: unset;
  }

  .tour-preview.is-scaled {
    /* height: calc(var(--vh, 1vh) * 75); */
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    box-shadow: unset !important;
    -webkit-box-shadow: unset !important;
    /* position: absolute; */
    /* overflow: hidden; */
  }

  .tour-preview.is-scaled .description {
    flex-grow: 30;
    min-height: calc(100% - 135px) !important;
    /* max-height: calc(100% - 95px) !important; */
    overflow: auto;
    margin-bottom: 18px;
    word-break: break-word;
  }
}