﻿/* Helpers */
/* Standard Colors */
/* Dimensions */
/* Debug */
/* Font Weight */
/* Mixins */
/* Utilities */
.card {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
}

.card-body {
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding-top: 15px;
}

.card-title {
  font-weight: 600;
  font-size: 1.1rem;
}

.card-subtitle {
  display: block;
  font-size: 0.95em;
}

.card p {
  margin-top: 15px;
}

.card-footer {
  padding-top: 25px;
}

.pagination {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pagination li:not(:last-of-type) {
  margin-right: 5px;
}

.pagination a,
.pagination span {
  display: block;
  padding: 0.3rem 0.95rem;
  background: rgba(0, 0, 0, 0.1);
  font-weight: 600;
}

.pagination li:not(.current) span {
  opacity: 0.3;
}

.pagination .current span {
  background: #0f2d2c;
  color: #fff;
}

.table {
  width: 100%;
  max-width: 100%;
  border: 1px solid rgba(38, 64, 63, 1);
}
.table th,
.table td {
  padding: 10px;
  vertical-align: top;
  border-top: 1px solid rgba(38, 64, 63, 1);
  border-right: 1px solid rgba(38, 64, 63, 1);
}
.table thead th {
  vertical-align: bottom;
  font-weight: 600;
  text-align: left;
}

.table thead,
.table tfoot {
  font-family: "Noto Serif", serif;
  font-style: italic;
}

input,
select,
textarea {
  -webkit-appearance: none;
  width: 100%;
  padding: 14px 16px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 3px;
  background: transparent;
  font: inherit;
  line-height: 1.5em;
  color: #fff;
  transition: border-color 0.3s ease;
}

textarea {
  height: 137px;
  resize: none;
}

select {
  padding: 8px 47px 8px 10px;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: #735e4c;
}

.select-wrap {
  position: relative;
}

.select-wrap:before,
.select-wrap:after {
  content: "";
  position: absolute;
}

.select-wrap:before {
  top: 25%;
  right: 37px;
  width: 1px;
  height: 50%;
  background: #e0e0e0;
}

.select-wrap:after {
  top: 17px;
  right: 12px;
  width: 0;
  height: 0;
  margin-left: -7px;
  border: 7px solid transparent;
  border-top-color: #000000;
  pointer-events: none;
}

.form-field label {
  display: inline-block;
  margin-bottom: 10px;
  font-family: "Noto Serif", serif;
  font-style: italic;
  font-size: 1.2em;
  color: #735e4c;
}

.field-validation-error {
  display: block;
  margin-top: 8px;
  font-weight: 600;
  font-size: 0.95em;
  color: #ff4242;
}

.input-validation-error,
.input-validation-error:focus {
  border-color: #ff4242;
}

.input-validation-valid,
.input-validation-valid:focus {
  border-color: rgba(0, 255, 110, 0.5);
}

::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
}

::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
}

@media (min-width: 768px) {
  input,
  select,
  textarea {
    padding: 18px 20px;
  }
  textarea {
    height: 146px;
  }
}
/* Global */
.navbar.fixed {
  height: 66px;
  background: rgba(9, 29, 28, 0.9);
}

.navbar.fixed .navbar-inner {
  height: 66px;
  padding: 0;
}

.navbar .nav-item.active > a {
  background: #00ff90;
}

body:after {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: -1;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  transition: opacity 0.2s ease, z-index 0s ease 0.2s;
}

.navbar-active .navbar {
  background: #0c2322;
}

.navbar-active:after {
  z-index: 90;
  opacity: 1;
  transition: opacity 0.2s ease;
}

.navbar-collapse {
  background: #0f2d2c;
}

.navbar-collapse.active {
  right: 0;
}

.navbar.fixed .navbar-collapse {
  top: 66px;
}

/* Animated Burger Icon */
.navbar-toggler.active .navbar-toggler__burger,
.navbar-toggler.active .navbar-toggler__burger:before,
.navbar-toggler.active .navbar-toggler__burger:after {
  width: 0;
}

.navbar-toggler.active .navbar-toggler__burger {
  transition-delay: 0s;
}

.navbar-toggler.active .navbar-toggler__burger:before {
  transition-delay: 0.125s;
}

.navbar-toggler.active .navbar-toggler__burger:after {
  transition-delay: 0.25s;
}

/* Cross */
.navbar-toggler__cross {
  width: 100%;
  height: 100%;
  transform: rotate(45deg);
}

.navbar-toggler__cross:before,
.navbar-toggler__cross:after {
  content: "";
  position: absolute;
  display: block;
  border-radius: 2px;
  background: #fff;
  transition: 0.25s ease-in-out;
}

.navbar-toggler__cross:before {
  top: 13px;
  width: 0;
  height: 4px;
  transition-delay: 0.25s;
}

.navbar-toggler__cross:after {
  left: 13px;
  height: 0;
  width: 4px;
  transition-delay: 0s;
}

.navbar-toggler.active .navbar-toggler__cross:before {
  width: 100%;
  transition-delay: 0.375s;
}

.navbar-toggler.active .navbar-toggler__cross:after {
  height: 100%;
  transition-delay: 0.625s;
}

@media (min-width: 992px) {
  body:after,
  .navbar-active:after {
    display: none;
  }
  .navbar-active .navbar {
    background: none;
  }
  .navbar-active .navbar.fixed {
    background: rgba(9, 29, 28, 0.9);
  }
  .navbar-collapse {
    background: none;
  }
  .nav-item a {
    position: relative;
  }
  .nav-item a:before {
    content: "";
    position: absolute;
    bottom: 20px;
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
    opacity: 0;
    transition: all 0.3s ease;
  }
  .nav-item a:hover:before {
    bottom: 17px;
    opacity: 1;
  }
}
@media (max-width: 991px) {
  .navbar .btn-primary {
    width: 100%;
    padding: 12px 15px;
    border-radius: 0;
    background: none;
    text-align: left;
    line-height: 2.5em;
  }
  .navbar-collapse > div {
    width: 100%;
  }
}
@font-face {
  font-family: "OneComoreRow";
  src: url("/fonts/OneComoreRow.eot?uubifn");
  src: url("/fonts/OneComoreRow.eot?uubifn#iefix") format("embedded-opentype"), url("/fonts/OneComoreRow.ttf?uubifn") format("truetype"), url("/fonts/OneComoreRow.woff?uubifn") format("woff"), url("/fonts/OneComoreRow.svg?uubifn#OneComoreRow") format("svg");
  font-weight: normal;
  font-style: normal;
}
[class^=icon-], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "OneComoreRow" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-logo-line:before {
  content: "\e90d";
}

.icon-logo:before {
  content: "\e912";
}

.icon-cross:before {
  content: "\e913";
}

.icon-catella:before {
  content: "\e911";
}

.icon-up:before {
  content: "\e90f";
}

.icon-down:before {
  content: "\e910";
}

.icon-food:before {
  content: "\e90e";
}

.icon-apam:before {
  content: "\e90c";
}

.icon-knight-frank:before {
  content: "\e90a";
}

.icon-cushman-wakefield:before {
  content: "\e90b";
}

.icon-reception:before {
  content: "\e900";
}

.icon-lifts:before {
  content: "\e901";
}

.icon-parking:before {
  content: "\e902";
}

.icon-fan:before {
  content: "\e903";
}

.icon-access:before {
  content: "\e904";
}

.icon-flooring:before {
  content: "\e905";
}

.icon-showers:before {
  content: "\e906";
}

.icon-lighting:before {
  content: "\e907";
}

.icon-aircon:before {
  content: "\e908";
}

.icon-train:before {
  content: "\e909";
}

.icon-bed:before {
  content: "\e918";
}

/* Modules */
.carousel-controls__container {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}

.carousel-controls__container > div {
  width: 100%;
}

.carousel-controls {
  position: relative;
  z-index: 20;
  float: right;
  background: rgba(9, 29, 28, 0.9);
  width: 37px;
  margin-right: 15px;
  padding: 32px 0;
  border-radius: 35px;
}

.carousel-controls button {
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.carousel-controls button:focus {
  outline: none;
}

.carousel-controls__direction button {
  position: absolute;
  height: 32px;
  color: #735e4c;
  font-size: 1.1em;
  transition: all 0.3s ease;
}

.carousel-controls__direction button:hover {
  color: #fff;
}

.carousel-controls__direction button:first-child {
  top: 0;
  border-top-left-radius: 35px;
  border-top-right-radius: 35px;
}

.carousel-controls__direction button:last-child {
  bottom: 0;
  border-bottom-left-radius: 35px;
  border-bottom-right-radius: 35px;
}

.carousel-controls__nav button {
  height: 21px;
  border: none;
}

.carousel-controls__nav button:before {
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  margin: 0 auto;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
}

.carousel-controls__nav button:hover:before {
  border-color: #fff;
}

.carousel-controls__nav button.tns-nav-active:before {
  border-color: #735e4c;
  background: #735e4c;
}

.carousel-controls-horizontal {
  float: none;
  margin: 30px 0 0 0;
  padding: 0 32px;
  width: auto;
  height: 37px;
  display: inline-flex;
}
.carousel-controls-horizontal.carousel-controls-small {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
}
.carousel-controls-horizontal.carousel-controls-small .carousel-controls__nav button {
  width: 16px;
}
.carousel-controls-horizontal .carousel-controls__nav button {
  height: 37px;
  width: 21px;
}
.carousel-controls-horizontal .carousel-controls__direction button {
  width: 32px;
  height: 37px;
}
.carousel-controls-horizontal .carousel-controls__direction button:first-child {
  left: 0;
}
.carousel-controls-horizontal .carousel-controls__direction button:first-child span {
  display: block;
  transform: rotate(270deg);
}
.carousel-controls-horizontal .carousel-controls__direction button:last-child {
  right: 0;
}
.carousel-controls-horizontal .carousel-controls__direction button:last-child span {
  display: block;
  transform: rotate(-90deg);
}
.carousel-controls-horizontal .carousel-controls__nav {
  display: flex;
}

.carousel-info {
  position: absolute;
  bottom: 15px;
  left: 15px;
  z-index: 10;
  width: auto;
  height: auto;
  padding: 10px 15px;
  border-radius: 4px;
  background: rgba(9, 29, 28, 0.9);
  font-size: 0.9em;
}

.carousel-info__name {
  display: block;
}

@media (min-width: 576px) {
  .carousel-controls-horizontal.carousel-controls-small .carousel-controls__nav button {
    width: 21px;
  }
}
@media (min-width: 768px) {
  .carousel-controls {
    width: 63px;
    margin-right: 30px;
    padding: 60px 0;
  }
  .carousel-controls__direction button {
    height: 63px;
    font-size: 1.5em;
  }
  .carousel-controls__nav button {
    height: 30px;
  }
  .carousel-controls__nav button:before {
    width: 11px;
    height: 11px;
  }
  .carousel-info {
    font-size: 1em;
  }
  .carousel-controls-horizontal {
    width: auto;
    height: 63px;
    margin: 30px 0 0 0;
    padding: 0 60px;
  }
  .carousel-controls-horizontal .carousel-controls__nav button {
    width: 30px;
    height: 63px;
  }
  .carousel-controls-horizontal .carousel-controls__direction button {
    width: 63px;
    height: 63px;
  }
  .carousel-controls-horizontal.carousel-controls-small .carousel-controls__nav button {
    width: 30px;
  }
}
@media (min-width: 1200px) {
  .carousel-info {
    bottom: 30px;
    left: initial;
    right: 30px;
  }
}
.spec span {
  width: 42px;
  margin-right: 10px;
  font-size: 2em;
  text-align: center;
}

.spec strong {
  flex: 1;
}

@media (min-width: 992px) {
  .spec span {
    width: 70px;
    margin-right: 20px;
    font-size: 3.3em;
  }
}
#location {
  -ms-flex-wrap: wrap !important;
  flex-wrap: wrap !important;
  -ms-flex-direction: row-reverse !important;
  flex-direction: row-reverse !important;
}

#location aside,
.map-container {
  width: 100%;
}

.map-carousel .amenities {
  padding: 0 0 30px 0;
}

.map-carousel ol {
  padding: 0;
  counter-reset: item;
}

.map-carousel li {
  display: block;
}

.map-carousel li:before {
  content: counter(item, upper-alpha) ".";
  counter-increment: item;
  width: 2em;
  display: inline-block;
}

.map-carousel__controls {
  padding: 30px 0;
}

.map-carousel__controls button {
  display: inline-block;
  width: 40px;
  height: 40px;
  margin-right: 10px;
  padding: 0;
  border-radius: 50%;
  font-size: 1.6em;
  line-height: 0.9em;
  cursor: pointer;
  transition: all 0.3s ease;
}

.map-carousel__controls button:focus {
  outline: none;
}

.map-carousel__controls button.tns-nav-active {
  color: #fff;
}

.cat-trains {
  border: 2px solid #dd052b;
  background: #dd052b;
}

.cat-food {
  border: 2px solid #f19e35;
  background: #f19e35;
}

.cat-sleep {
  border: 2px solid #64bc2f;
  background: #64bc2f;
}

.map-carousel__controls button:not(.tns-nav-active) {
  border: 2px solid rgba(255, 255, 255, 0.6);
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
}

.map-carousel__controls button:not(.tns-nav-active):hover {
  border-color: #fff;
  color: #fff;
}

/* Popup */
.map-container .map-popup {
  position: absolute;
  bottom: 15px;
  right: -350px;
  top: auto;
  left: auto;
  z-index: 10;
  width: 300px;
  height: auto;
  padding: 15px 45px 15px 15px;
  border-radius: 4px;
  background: rgba(9, 29, 28, 0.9);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.75);
  transition: all 0.3s ease;
}

.map-container .map-popup.active {
  right: 50%;
  margin-right: -150px;
}

.map-popup__image {
  position: relative;
  width: 55px;
  height: 55px;
  margin-right: 15px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
}

.map-popup__image.no-image {
  width: 20px;
  height: 20px;
  background: none;
}

.map-popup__image.no-image img {
  display: none;
}

.map-popup__image img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.map-popup__details {
  flex: 1;
}

.map-popup__label {
  position: absolute;
  right: 0;
  display: block;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  text-align: center;
  line-height: 1.2em;
}

.map-popup__close {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all 0.3s ease;
}

.map-popup__close:focus {
  outline: none;
}

.map-popup__close:hover {
  color: #fff;
}

@media (min-width: 768px) {
  /* Popup */
  .map-container .map-popup {
    bottom: 50px;
  }
  .map-container .map-popup.active {
    right: 50px;
    margin: 0;
  }
  .map-popup__image {
    width: 70px;
    height: 70px;
  }
}
@media (min-width: 992px) {
  #location aside {
    width: 420px;
  }
  .map-container {
    width: auto;
    flex: 1;
  }
  .map-carousel__controls {
    padding: 60px 30px 30px 30px;
  }
  .map-carousel .amenities {
    padding: 30px 30px 60px 30px;
  }
}
.tour iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.tour-frame.collapse,
.tour-preview.collapse {
  display: none;
}
.tour-frame.collapse .tour-frame__close,
.tour-preview.collapse .tour-frame__close {
  display: none;
}

.tour-frame__close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 1;
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  background: rgba(9, 29, 28, 0.9);
  font-size: 1.5em;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all 0.3s ease;
}

.tour-frame__close:hover {
  color: #fff;
}

.tour-preview__overlay {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
}

.vh-100 {
  position: relative;
  height: calc(100vh - 66px);
}
.vh-100 .tour-preview picture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.vh-100 .tour-preview picture img {
  object-fit: cover;
  object-position: center top;
  width: 100%;
  height: 100%;
}

#sustainability {
  background: #091d1c;
  overflow: hidden;
}

.tabs {
  list-style: none;
  margin: 0;
  padding: 0;
}
.tabs li:not(:last-child) {
  margin-bottom: 15px;
}
.tabs button {
  margin: 0;
  border: 0;
  background: none;
  font-family: inherit;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.3s ease-in-out;
  padding: 0;
}
.tabs button:hover {
  color: #fff;
}
.tabs button[disabled] {
  cursor: default;
  color: #fff;
}

.list {
  list-style: none;
  margin: 0;
  padding: 0.6em 0 0 0;
}
.list li:not(:first-child) {
  padding-top: 1em;
}
.list li:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 1em;
}
