/* mobile first */

body {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 200;
  font-size: 14.5px;
}


h1,h2,h3,h4,h5,h6 {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 400;
  color: #7a796e;
}

h3 a,
h3 a:hover,
h3 a:visited {
  color: #7a796e;
  text-decoration: underline;
}

@media (max-width:768px) {
  .home-page-slider-text {
    width: calc(100% -30px);
  }
  .home-page-slider-text h3 {
    font-size: 14px;
  }
}



#promo-popup-overlay,
#newsletter-popup-overlay {
  display: none;
  position: fixed;
  top:0;
  left:0;
  right:0;
  bottom:0;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.85);
  z-index: 499;
  cursor: pointer;
}
#promo-popup,
#newsletter-popup {
  display: none;
  width: 500px;
  min-height: 200px;
  max-width: calc(100% - 4em);
  position: fixed;
  top: 50%;
  left: 0;
  right:0;
  margin: 0 auto;
  transform: translateY(-50%);
  background: #fff;
  border-radius: 30px;
  box-shadow: rgba(122, 121, 110, 0.33) 0px 7px 29px 0px;
  /* border: 1px solid #000; */
  overflow: hidden;
  z-index: 500;
}

#promo-popup .flex,
#newsletter-popup .flex {
  display: flex;
  gap: 0;
}
#promo-popup .flex div,
#newsletter-popup .flex div {
   flex: 1; 
   /* box-sizing: border-box;  */
}
#promo-popup img,
#newsletter-popup img {
  width: 100%;
  height: auto;
  display: block;
}
#promo-popup .image,
#newsletter-popup .image {
}
#promo-popup .text,
#newsletter-popup .text {
padding: 30px;
}

#promo-popup-close,
#newsletter-popup-close {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 501;
}

#promo-popup-close .close-button,
#newsletter-popup-close .close-button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

#promo-popup-close .close-button:hover,
#newsletter-popup-close .close-button:hover {
  transform: scale(1.1);
}

.close-icon {
  width: 36px;
  height: 36px;
  color: #7a796e; /* You can change this */
}
.close-icon svg {
  background: #fff;
}

/* Remove default input styles */
#newsletter-popup input,
#newsletter-popup button {
  all: unset; /* removes all browser styles */
  box-sizing: border-box; /* ensures padding/border don’t break layouts */
}

/* Then add your own custom styles */
#newsletter-popup input[type="email"] {
  padding: 10px 20px;
  border: 1px solid #7a796e;
  border-radius: 15px;
  width: 100%;
  font-size: 16px;
}

#newsletter-popup button.mc {
  display: flex; /* acts like flex, but sizes like inline elements */
  width: fit-content; 
  align-items: center;
  height: 51px;
  background: #7a796e;
  color: #fff;
  /* margin: 10px 0 0; */
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 15px;
  transition: 150ms background ease-in-out;
  cursor: pointer;
  border: none;
}

#newsletter-popup button.mc:hover {
  background: #6e6d63;
  color: #fff;
  transition: 150ms background ease-in-out;
}

.button {
  display: inline-flex; /* acts like flex, but sizes like inline elements */
  width: fit-content; 
  align-items: center;
  height: 51px;
  background: #7a796e;
  color: #fff;
  margin: 10px 0 0;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 15px;
  transition: 150ms background ease-in-out;
}

.button.outline {
  border: 1px solid #7a796e;
  background: #fff;
  color: #7a796e;
}

.button:hover {
  cursor: pointer;
  background: #6e6d63;
  color: #fff;
  transition: 150ms background ease-in-out;
}

.button.outline:hover {
  border: 1px solid #7a796e;
  background: #7a796e;
  color: #fff;
  transition: 150ms background ease-in-out;
}



.bold {
  font-weight: 500;
}

.news-content-area p strong {
  font-weight: 500;
} 

.ui.form input:not([type]):focus, .ui.form input[type=date]:focus, .ui.form input[type=datetime-local]:focus, .ui.form input[type=email]:focus, .ui.form input[type=file]:focus, .ui.form input[type=number]:focus, .ui.form input[type=password]:focus, .ui.form input[type=search]:focus, .ui.form input[type=tel]:focus, .ui.form input[type=text]:focus, .ui.form input[type=time]:focus, .ui.form input[type=url]:focus, .ui.form textarea:focus {
  border-color: rgba(34,36,37,.15);
}

.landscape-slider {
  display: none !important;
}

.portrait-slider {
  display: block !important;
}

.search-form-container {
  background: white;
  position: relative;
}

.close-search-trig {
  font-size: 1.4em;
  cursor: pointer;
}

.close-search-trig i {
  padding-top: 0.5em;
  color: #7a796e;
}

#search-form-header {
  position: absolute;
  top:0;
  display: none;
  padding: 0.5em;
  background: transparent;
  z-index: 5555555;
}

.search-trig {
  position: absolute;
  right: 0;
  top:1em;
  cursor: pointer;
}

.search-trig i {
  color: #7a796e;
}

.mobile-select select {
  border: 1px solid #7a796e;
  border-radius: none;
  padding:0.5em;
  background: white;
  width: 100%;
  color: #7a796e;
}

.ui.input input:focus, .ui.input.focus input {
  border-color:rgba(34,36,38,.15);
}


p.roomsnotactive {
  margin: 2em auto;
}

.sidebar{
    will-change: min-height;
}

.sidebar__inner{
    transform: translate(0, 0); /* For browsers don't support translate3d. */
    transform: translate3d(0, 0, 0);
    will-change: position, transform;
    left: auto !important;
}

#white-cover {
  width: 100%;
  height: 100%;
  display: block;
  background: rgba(255,255,255,0.8);
  position: absolute;
  top:0;
  left: 0;
  z-index: 10051;
  display: none;
}

.about-page-slider .slick-slide {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9; /* Modern way */
  overflow: hidden;
}

/* Make the image cover */
.about-page-slider .slick-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.home-page-slider {
position: absolute;
top:0;
left:0;
right:0;
bottom:0;
width: 100vw;
height: 100vh;
overflow: hidden;
margin:0;
padding:0;
}

.home-page-slider .slick-initialized.slick-slider, 
.home-page-slider .slick-list.draggable, 
.home-page-slider .slick-track,
.home-page-slider .slick-slide {
height: 100vh!important;
}

.home-page-slider img.bordered {
    width: 100%;
    height: 33.33vh;
    margin: 33.33vh auto;
    padding: 0 15px;
}

.home-page-slider img {
width: 100vw;
height: 100vh;
object-fit:cover;	
margin:0;
padding: 0;
}

.home-page-slider-text {
position: absolute;
left:2em;
bottom:2em;
width: 600px;
margin:0;
padding:0;
z-index: 100;
}

.news-page-parent {
  width:100%;
  max-width: 564px;
  margin: auto;
  text-align: center;
}

.new-img-top {
  width: 100%;
  height: auto;
}

/* SHOP */

.shopify-buy__btn-wrapper {
  margin-top: 1em;
}

.shopify-buy__btn {
  display:flex!important;
}

@media (max-width:768px) {
.ui.stackable.grid>.wide.column.news-page-parent {
  padding: 0 !important;
  margin: 2em 0 !important;
}
}

.news-content-area {
  width:100%;
  max-width: 700px;
}

.two-images {
  display: flex;
  width:100%;
  gap: 1em;
}

.two-image .one-image-child {
  
}

.news-content-area img {
  width:100%;
  height: auto;
  margin: 0;
}

h1.news-page-title {
  font-size: 1.6em;
}

h4.news-page-date {
  margin-top:0;
}

/*
.mobile-select select {
  background-image:
    linear-gradient(45deg, transparent 50%, gray 50%),
    linear-gradient(135deg, gray 50%, transparent 50%);
  background-position:
    calc(100% - 20px) calc(1em + 2px),
    calc(100% - 15px) calc(1em + 2px),
    calc(100% - 2.5em) 0.5em;
  background-size:
    5px 5px,
    5px 5px,
    1px 1.5em;
  background-repeat: no-repeat;
}
*/

p.extra-space {
  margin-bottom: 0.5em;
}

.inner {
  margin: 2em;
  position: relative;
}

.sub-inner {
  margin: 0 auto;
  padding: 0;
  position: relative;
  /* max-width: 1100px; */
  max-width: 100%;
}

header#header {
  width: 100%;
  position: fixed;
  top:0;
  left: 0;
  background: rgba(255,255,255,0.85);
  z-index: 10050;
  padding: 0 2em;
}

body.home header#header {
  background: rgba(255,255,255,0.15);
}

.related-link {
  margin: 0;
}

.related-link.tear-sheet {
  margin-bottom: 0.5em;
}

.related-link a {
  font-weight: bold;
}

.video-div {
  margin: 1em 0;
}

.video-div a {
  font-weight: bold;
}

h2.related-title {
    font-size: 1em;
    margin-bottom: 1em;
    margin-top: 1.5em;
    font-weight: bold;
    display: inline-block;
    padding-left: 1em;
}

.ui.stackable.grid.product-cat-grid .column {
  padding: 0 0 !important;
}

/* .ui.stackable.grid>.column:not(.row) {
  padding-left: 0!important;
  padding-right: 0!important;
} */

@media (max-width:768px) {
  

    .ui.stackable.grid.product-cat-grid.designers-grid .column {
      padding: 0 1em !important;
    }
    
  }

section.related-products {
  margin: 3em auto 2em auto;
  padding: 0 1em;
}

.ui.stackable.grid.product-cat-grid.contact-grid .column {
  padding: 0 0 2em 0 !important;
}

header#header .inner {
  /* max-width: 1100px; */
  max-width: 100%;
  margin: 2em auto;  
}

p.social-icons {
  font-size: 1.5em;
}

p.social-icons a {
  color: #84BC4A;
  border: none;
}

p.social-icons a:hover {
  border:none;
  
}

.logo {
  width: 100px;
  height: auto;
}

span#menu-trig {
  position: absolute;
  top: 0;
  right: 0;
  color: #7a796e;
  padding: 0.4em 0.4em; 
  cursor: pointer;
  font-weight: bold;
  font-size: 1.5em;
}

#search-trig-mobile {
  display: block;
  position: absolute;
  top:0.45em;
  right: 2.6em;
  color: #7a796e;
  font-size: 1.4em;
  cursor: pointer;
}

#mobile-menu-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgb(255, 255, 255);
  background: rgba(255, 255, 255, 0.95);
  z-index: 1010;
  text-align: center;
  display: none;
}

#search-menu-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgb(255,255,255);
  background: rgba(255, 255, 255, 0.95);
  z-index: 1010;
  text-align: center;
  display: none;
  padding-top:6em;
  top:0;
  z-index: 999999999; 
}

#search-menu-overlay .search-form {
  width: 85%;
  margin: 0 auto;
  max-width: 600px;
  padding-top: 1em;
}

#search-menu-overlay .ui.input input::-webkit-input-placeholder {
  color: #7a796e;
}

#search-menu-overlay .search-form .ui.input input {
  background: transparent;
}

img.full-width {
  width: 100%;
  height: auto;
}

.quote {
  margin-top: 2em;
  margin-bottom: 2em;
}

.quote p {
  font-size: 1em;
  font-weight: bold;
}

#mobile-menu-overlay nav {
  padding-top: 120px;
  font-size: 1.2em;
}

#mobile-menu-overlay nav ul  {
  padding-top: 3em;
  margin: 0;
  padding-left: 0;
}

#mobile-menu-overlay nav ul li  {
  margin-bottom: 0.75em;
  list-style-type: none;
}

#mobile-menu-overlay nav ul li a  {
  color: #7a796e;
}

#site-content {
  background-color: transparent;
  min-height: 100%;
  position: relative;
  margin: auto;
  padding: 100px 1em 0 1em;
}

#site-content-full {
  background-color: transparent;
  min-height: 100%;
  position: relative;
  margin: auto;
  padding: 100px 2em 0 2em;
}



.search-form {
  position: relative;
  margin-top:1em;
  width: 100%;
  max-width: 280px;
  font-size: 0.9em;
}

.search-form .ui.input {
  width: 100%;
}

.search-form .ui.input input {
  border-radius: 0;
  border:none;
  border-bottom: 1px solid #7a796e;
  padding-left: 0;
}


.additional-pad {
  margin-bottom: 1.5em;
}

.full-bleed {
  width: 100%;
  height: calc(100vh - 90px);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

/* #product-spec {
  display: none;
} */

#product-spec {
  margin-top: 2em;
}

.product-head {
  position: relative;
}
.product-head.margin-top {
  margin-top: 2em;
}

.sm-absolute {
  position: absolute;
  top:0;
  right: 0;
}

.product-head ul {
  margin: 0;
  padding: 0;
  border-bottom: 1px solid #cdcdcd;
  color: #7a796e;
  margin-bottom: 1.5em;
  padding-bottom: 3px;
}

.product-head ul li.desc { 
  border-left: 1px solid #cdcdcd;
  border-right: 1px solid #cdcdcd;
  border-top: 1px solid #cdcdcd;
  background: white;
}

.product-head ul li {
  display: inline;
  padding: 0.1em 0.5em;
  padding-bottom: 5px;
  cursor: pointer;
}

body.home footer .inner {
  margin: 0;
}

#site-content.full-bleed {
  max-width: 100%;
}

h1.page-title {
  font-size: 1em;
  margin-bottom: 1em;
  margin-top:1.5em;
  font-weight: bold;
  display: inline-block;
}

.social-share {
  margin: 1em 0;
}

.sm-absolute .social-share {
  margin: 0;
}

.social-share p {
  margin:0;
}

a.underline {
  text-decoration: underline;
}

h1.search-result {
  font-size: 1em;
  margin-bottom: 1em;
  margin-top:1.5em;
  font-weight: bold;
  display: inline-block;
}

h1.search-result span {
  font-weight: normal;
}

  h1#product-title {
    margin-top: 1em;
  }

a.bold {
  font-weight: bold;
}

h2.item-title {
  font-size: 1em;
  margin-top: 0.5em;
  margin-bottom: 1.5em;
  font-weight: bold;
}

body.exhibitions h2.item-title {
  margin-bottom: 0;
}

.exhibitions-grid h2.item-title {
  font-size: 1em;
  margin-bottom: 0.25em;
}

ul.side-cat-list {
  padding: 0;
  margin-top: 0;
}

ul.side-cat-list li {
  list-style-type: none;
}

p#enquiryerror {
  color: #9f3a38;
  font-size: 0.9em;
  width: 100%;
  max-width: 360px;
  display: none;
  margin-bottom: 2em !important;
  font-weight: bold;
}

ul.side-cat-list li a {
  color: #7a796e;
  font-weight: normal;
}

ul.side-cat-list li ul.children li a {
  font-weight: normal;
}

ul.side-cat-list li {
  margin-bottom: 0em;
}

ul.side-cat-list li ul.children {
  margin: 0.5em 0 1.25em 0;
  display: none;
  padding-left: 20px;
}

ul.side-cat-list li ul.children li {
  margin-bottom: 0;
}

ul.side-cat-list li.current-cat-parent ul.children {
  display: block;
}

ul.side-cat-list li.current-cat ul.children {
  display: block;
}

h2.item-title a {
  color: #7a796e;
  font-weight: normal;
  font-size: 1em;
}

.enquiry-trig {
  text-decoration: none;
  cursor: pointer;
  font-weight: bold;
}

.enquiry-trig i {
  transition:all 0.3s ease;
}

.enquiry-content {
  width: 100%;
  max-width: 600px;
  display: none;
}

.center {
  text-align: center;
}

p {
  color: #7a796e;
  font-size: 1em;
  line-height: 1.5em;
}

p.description {
  max-width: 100%;
  margin-left: -1em;
  margin-right: -1em;
}

p.legal {
  font-size:0.75em;
  margin-top: 1.5em;
}

.product-images.mobile {
  margin-top: 1em;
}

.ui.stackable.grid.product-cat-grid {
  padding: 2em 0;
}

.ui.stackable.grid.product-cat-grid.contact-grid {
  padding: 1em 0 2em 0;
}


.ui.stackable.grid.product-cat-grid .column img {
  width: 100%;
  vertical-align: bottom;
} 

/*
.additional-pad {
  padding: 0 2em;
}
*/

/*

.ui.stackable.grid.product-cat-grid .column:nth-child(3n + 4), 
.ui.stackable.grid.product-cat-grid .column:first-child {
  padding-left: 0 !important;
}
*/

body.tax-product-category li.menu-item-29 a, body.single-product-type li.menu-item-29 a {
  font-weight: bold;
}

body.single-interior-type li.menu-item-31 a {
  font-weight: bold;
}

body.single-exhibition-type li.menu-item-28 a {
  font-weight: bold;
}

h2.cat-title {
  font-size: 1em;
  text-align: center;
  margin-top: 0.5em;
}

.cat-title.no-margin-bottom {
  margin-bottom: 0; 
}

.no-margin-bottom {
  margin-bottom: 0;
}



.ui.stackable.grid.product-cat-grid .column img.newnews {
  object-fit: cover;
  object-position: top;
  height: 320px;
}

h4.desinger {
  font-weight: lighter;
  text-align: center;
  font-size: 1em;
  margin-top: 3px;
}

h4.desinger-single {
  font-weight: lighter;
  text-align: left;
  font-size: 1em;
  margin-top: 3px;
  margin-bottom: 1.5em;
}

h4.desinger-single a {
  text-decoration: none;
  color:#7a796e;
}

h4.desinger-single a:hover {
  font-weight: bold;
}

p.product-price {
  font-weight: lighter;
  text-align: left;
  font-size: 1em;
  margin-top: 3px;
}

p.product-price.text-align-center {
  text-align: center;
  margin-bottom: 1.5em;
}


h2.cat-title a {
  color: #7a796e;
  font-size: 1em;
  font-weight: normal;
}

.additional-pad:hover h2.cat-title a, .product-item:hover h2.cat-title a, .room-item:hover h2.item-title a, .grid-item:hover h2.item-title a {
  font-weight: bold;
}

p.item-desc,
.bodyCopy p {
  max-width: 600px;
  margin: 0;
  font-size: 1em;
  margin-bottom: 1em;
}

.grid-content {
  margin: 4em 0;
}

img.category-thumb {
  border: 1px solid #dddccf;
}

footer .inner {
  padding-top: 2em;
  border-top: 1px solid #dddccf;
  text-align: center;
  /* max-width: 1100px; */
  max-width: 100%;
  margin: 2em 0em 0 0em;
}

footer .inner .ui.stackable.grid .column {
  margin-bottom: 0 !important;
}

#about-gallery-left, #about-gallery-right { 
    margin: 0 auto; 
    position: relative; 
    padding: 0; 
    margin-bottom: 0;
}

#about-gallery-left > div, #about-gallery-right > div { 
    position: absolute; 
    top: 0; 
    left: 0; 
    right: 0; 
    bottom: 0;
    width: 100%;
    height: auto;
}

#about-gallery-left > div > img, #about-gallery-right > div > img {
  width: 100%;
  height: auto;
}

.ui.stackable.grid .eight.wide.column#gallery-no-padd-left {
  padding-right: 0;
  padding-top: 0 !important;
}

.ui.stackable.grid .eight.wide.column#gallery-no-padd-right {
  padding-left: 0;
  padding-top: 0 !important;
}

/*
.ui.stackable.grid > .row > .wide.column, .ui.stackable.grid > .wide.column, .ui.stackable.grid > .column.grid > .column, .ui.stackable.grid > .column.row > .column, .ui.stackable.grid > .row > .column, .ui.stackable.grid > .column:not(.row), .ui.grid > .stackable.stackable.row > .column {
  padding: 0 !important;
}
*/

.ui.stackable.grid > .row > .sixteen.wide.column.grid-item.divider-item {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

hr.divider {
  background:#ccc;
  border:none;
  height: 1px;   
}

.column.grid-item img {
  width: 100%;
  height: auto;
}

.ui.stackable.grid.exhibitions-grid .column.grid-item img {
  width: auto;
  max-height: 400px;
}

footer {
  display:block;
  margin: 2em 0;
  font-size: 0.9em;
  padding: 0 2em;
}

body.archive footer, body.single footer, body.contact footer  {
  padding: 0 2em;
}

footer p {
  width: 100%;
}

body.home footer {
  position: absolute;
  bottom: 1em; 
  z-index: 1009;
  margin: 0;
  width: 100%;
  color: white;
}

body.home footer p {
  color: white;
}

.call-to-action {
  font-size: 1.2em;
  width: 80%;
  margin: auto;
  color: white;
  padding: 2em;
  text-align: center;
  max-width: 500px;
  background: rgba(255,255,255,0.75);
  position: relative;
  top: 45%;
  transform: translateY(-50%);
}

.call-to-action p {
  color: #555;
  text-shadow: 0 0 4px rgba(255,255,255,0.75);
}

p.restrict-width {
  width: 90%;
  margin-bottom: 2em;
}

section.mobile .about-accordian {
  margin-top: 12em;
}

p.mobile-only {
  background: rgb(238,238,238);
  padding: 1.5em;
  margin: 1em 0;
}

.call-to-action .ui.fluid.button {
  background: white;
 
}

.ui.fluid.button.white-reverse {
  background: #ccc;
  color: white;
  font-weight: normal;
   max-width: 200px;
   margin: auto;
}




.desktop {
  display: none;
}
.desktop-important {
  display: none!important;
}

.mobile {
  display: block;
}

nav.desktop {
  position: absolute;
  top:0;
  right: 0;
}

nav.desktop ul {
  float: right;
  margin-top: 0.7em;
}

nav.desktop ul li {
  display: inline-block;
  list-style-type: none;
  margin-left: 0.75em;
}

nav.desktop ul li a {
  color: #7a796e;
  font-weight: normal;
}

nav ul li.current-menu-item a {
/*   border-bottom: 2px solid #7a796e; */
  display: inline-block;
  line-height: 1em;
  font-weight: bold;
}

nav.desktop ul li:hover a {
/*   border-bottom: 2px solid #7a796e; */
  display: inline-block;
  line-height: 1em;
  font-weight: bold;

}

body.tax-product-category nav ul li.menu-item-29 a, body.single-product-type nav ul li.menu-item-29 a, body.single-interior-type nav ul li.menu-item-31 a, body.single-exhibition-type nav ul li.menu-item-28 a {
  display: inline-block;
  line-height: 1em;
  font-weight: bold;
}

nav ul li.menu-item-84 a:after {
  font-family: Icons;
  content: "\f08e";
  font-size: 0.65em;
  margin-left: 0.25em;
}

img.img-loading {
  width: 24px;
  height: auto;
}

img.img {
  width: 100%;
  height: auto;
}

p a {
  color: #7a796e;
/*   border-bottom: 1px solid #7a796e; */
  display: inline-block;
  line-height: 1.1em;
}

p a:hover {
  color: #7a796e;
/*   border-bottom: 1px solid #7a796e; */
  
}

#map {
  margin-top: 2em;
  height: 400px;
}


#rooms-template {
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100000;
}

#rooms-template img {
  position: absolute;
}

body.page-template-template-rooms header#header {
  background: transparent;
}

#rooms-template .v {
  width: 100%;
  height: 1px;
  position: absolute;
  top: 0;
  background: blue;
}

#rooms-template .h {
  width: 1px;
  height: 100%;
  position: absolute;
  left: 0;
  background: blue;
}

#rooms-template .h-0 {
  left: 0;
}

#rooms-template .h-1 {
  left: 1.25%;
}

#rooms-template .h-2 {
  left: 2.50%;
}

#rooms-template .h-3 {
  left: 3.75%;
}

#rooms-template .h-4 {
  left: 5%;
}

#rooms-template .h-5 {
  left: 6.25%;
}

#rooms-template .h-6 {
  left: 7.5%;
}

#rooms-template .h-7 {
  left: 8.75%;
}

#rooms-template .h-8 {
  left: 10%;
}

#rooms-template .h-9 {
  left: 11.25%;
}

#rooms-template .h-10 {
  left: 12.5%;
}

#rooms-template .h-11 {
  left: 13.75%;
}

#rooms-template .h-12 {
  left: 15%;
}

#rooms-template .h-13 {
  left: 16.25%;
}

#rooms-template .h-14 {
  left: 17.50%;
}

#rooms-template .h-15 {
  left: 18.75%;
}

#rooms-template .h-16 {
  left: 20%;
}

#rooms-template .h-17 {
  left: 21.25%;
}

#rooms-template .h-18 {
  left: 22.50%;
}

#rooms-template .h-19 {
  left: 23.75%;
}

#rooms-template .h-20 {
  left: 25%;
}

#rooms-template .h-21 {
  left: 26.25%;
}

#rooms-template .h-22 {
  left: 27.50%;
}
#rooms-template .h-23 {
  left: 28.75%;
}
#rooms-template .h-24 {
  left: 30%;
}
#rooms-template .h-25 {
  left: 31.25%;
}
#rooms-template .h-26 {
  left: 32.50%;
}
#rooms-template .h-27 {
  left: 33.75%;
}
#rooms-template .h-28 {
  left: 35%;
}
#rooms-template .h-29 {
  left: 36.25%;
}
#rooms-template .h-30 {
  left: 37.50%;
}
#rooms-template .h-31 {
  left: 38.75%;
}
#rooms-template .h-32 {
  left: 40%;
}
#rooms-template .h-33 {
  left: 41.25%;
}
#rooms-template .h-34 {
  left: 42.50%;
}
#rooms-template .h-35 {
  left: 43.75%;
}
#rooms-template .h-36 {
  left: 45%;
}
#rooms-template .h-37 {
  left: 46.25%;
}
#rooms-template .h-38 {
  left: 47.50%;
}
#rooms-template .h-39 {
  left: 48.75%;
}

#rooms-template .h-40 {
  left: 50%;
}

#rooms-template .h-41 {
  left: 51.25%;
}

#rooms-template .h-42 {
  left: 52.5%;
}

#rooms-template .h-43 {
  left: 53.75%;
}

#rooms-template .h-44 {
  left: 55%;
}

#rooms-template .h-45 {
  left: 56.25%;
}

#rooms-template .h-46 {
  left: 57.50%;
}

#rooms-template .h-47 {
  left: 58.75%;
}

#rooms-template .h-48 {
  left: 60%;
}

#rooms-template .h-49 {
  left: 61.25%;
}

#rooms-template .h-50 {
  left: 62.50%;
}

#rooms-template .h-51 {
  left: 63.75%;
}

#rooms-template .h-52 {
  left: 65%;
}

#rooms-template .h-53 {
  left: 66.25%;
}

#rooms-template .h-54 {
  left: 67.50%;
}


#rooms-template .h-55 {
  left: 68.75%;
}


#rooms-template .h-56 {
  left: 70%;
}

#rooms-template .h-57 {
  left: 71.25%;
}

#rooms-template .h-58 {
  left: 72.50%;
}

#rooms-template .h-59 {
  left: 73.75%;
}

#rooms-template .h-60 {
  left: 75%;
}

#rooms-template .h-61 {
  left: 76.25%;
}

#rooms-template .h-62 {
  left: 77.50%;
}

#rooms-template .h-63 {
  left: 78.75%;
}

#rooms-template .h-64 {
  left: 80%;
}

#rooms-template .h-65 {
  left: 81.25%;
}

#rooms-template .h-66 {
  left: 82.50%;
}

#rooms-template .h-67 {
  left: 83.75%;
}

#rooms-template .h-68 {
  left: 85%;
}

#rooms-template .h-69 {
  left: 86.25%;
}

#rooms-template .h-70 {
  left: 87.50%;
}

#rooms-template .h-71 {
  left: 88.75%;
}

#rooms-template .h-72 {
  left: 90%;
}
#rooms-template .h-73 {
  left: 91.25%;
}

#rooms-template .h-74 {
  left: 92.50%;
}

#rooms-template .h-75 {
  left: 93.75%;
}

#rooms-template .h-76 {
  left: 95%;
}

#rooms-template .h-77 {
  left: 96.25%;
}

#rooms-template .h-78 {
  left: 97.5%;
}

#rooms-template .h-79 {
  left: 98.75%;
}

#rooms-template .h-80 {
  left: 100%;
}

#rooms-template .v-0 {
  top: 0;
}

#rooms-template .v-1 {
  top: 2.5%;
}

#rooms-template .v-2 {
  top: 5%;
}

#rooms-template .v-3 {
  top: 7.5%;
}

#rooms-template .v-4 {
  top: 10%;
}

#rooms-template .v-5 {
  top: 12.50%;
}

#rooms-template .v-6 {
  top: 15%;
}

#rooms-template .v-7 {
  top: 17.50%;
}

#rooms-template .v-8 {
  top: 20%;
}

#rooms-template .v-9 {
  top: 22.50%;
}

#rooms-template .v-10 {
  top: 25%;
}

#rooms-template .v-11 {
  top: 27.50%;
}

#rooms-template .v-12 {
  top: 30%;
}

#rooms-template .v-13 {
  top: 32.50%;
}
#rooms-template .v-14 {
  top: 35%;
}
#rooms-template .v-15 {
  top: 37.50%;
}
#rooms-template .v-16 {
  top: 40%;
}
#rooms-template .v-17 {
  top: 42.50%;
}
#rooms-template .v-18 {
  top: 45%;
}
#rooms-template .v-19 {
  top: 47.50%;
}

#rooms-template .v-20 {
  top: 50%;
}

#rooms-template .v-21 {
  top: 52.50%;
}

#rooms-template .v-22 {
  top: 55%;
}

#rooms-template .v-23 {
  top: 57.50%;
}

#rooms-template .v-24 {
  top: 60%;
}

#rooms-template .v-25 {
  top: 62.50%;
}

#rooms-template .v-26 {
  top: 65%;
}

#rooms-template .v-27 {
  top: 67.50%;
}

#rooms-template .v-28 {
  top: 70%;
}

#rooms-template .v-29 {
  top: 72.50%;
}

#rooms-template .v-30 {
  top: 75%;
}

#rooms-template .v-31 {
  top: 77.50%;
}

#rooms-template .v-32 {
  top: 80%;
}

#rooms-template .v-33 {
  top: 82.5%;
}

#rooms-template .v-34 {
  top: 85%;
}

#rooms-template .v-35 {
  top: 87.50%;
}

#rooms-template .v-36 {
  top: 90%;
}

#rooms-template .v-37 {
  top: 92.50%;
}

#rooms-template .v-38 {
  top: 95%;
}

#rooms-template .v-39 {
  top: 97.50%;
}

#rooms-template .v-40 {
  top: 100%;
}

#rooms-template .w-1 {
  width: 1.25%;
  height: auto;
}

#rooms-template .w-2 {
  width: 2.5%;
  height: auto;
}

#rooms-template .w-3 {
  width: 3.75%;
  height: auto;
}

#rooms-template .w-4 {
  width: 5%;
  height: auto;
}

#rooms-template .w-5 {
  width: 6.25%;
  height: auto;
}

#rooms-template .w-6 {
  width: 7.50%;
  height: auto;
}

#rooms-template .w-7 {
  width: 8.75%;
  height: auto;
}

#rooms-template .w-8 {
  width: 10%;
  height: auto;
}

#rooms-template .w-9 {
  width: 11.25%;
  height: auto;
}

#rooms-template .w-10 {
  width: 12.50%;
  height: auto;
}

#rooms-template .w-11 {
  width: 13.75%;
  height: auto;
}

#rooms-template .w-12 {
  width: 15%;
  height: auto;
}

#rooms-template .w-13 {
  width: 16.25%;
  height: auto;
}

#rooms-template .w-14 {
  width: 17.50%;
  height: auto;
}

#rooms-template .w-15 {
  width: 18.75%;
  height: auto;
}

#rooms-template .w-16 {
  width: 20%;
  height: auto;
}

#rooms-template .w-17 {
  width: 21.25%;
  height: auto;
}

#rooms-template .w-18 {
  width: 22.50%;
  height: auto;
}

#rooms-template .w-19 {
  width: 23.75%;
  height: auto;
}

#rooms-template .w-20 {
  width: 25%;
  height: auto;
}

#rooms-template .w-21 {
  width: 26.25%;
  height: auto;
}

#rooms-template .w-22 {
  width: 27.5%;
  height: auto;
}

#rooms-template .w-23 {
  width: 28.75%;
  height: auto;
}

#rooms-template .w-24 {
  width: 30%;
  height: auto;
}

#rooms-template .w-25 {
  width: 31.25%;
  height: auto;
}

#rooms-template .w-26 {
  width: 32.50%;
  height: auto;
}

#rooms-template .w-27 {
  width: 33.75%;
  height: auto;
}

#rooms-template .w-28 {
  width: 35%;
  height: auto;
}

#rooms-template .w-29 {
  width: 50%;
  height: auto;
}

#rooms-template .w-30 {
  width: 36.25%;
  height: auto;
}

#rooms-template .w-31 {
  width: 37.50%;
  height: auto;
}

#rooms-template .w-32 {
  width: 38.75%;
  height: auto;
}

#rooms-template .w-33 {
  width: 40%;
  height: auto;
}

#rooms-template .w-34 {
  width: 41.25%;
  height: auto;
}

#rooms-template .w-35 {
  width: 42.5%;
  height: auto;
}

#rooms-template .w-36 {
  width: 43.75%;
  height: auto;
}

#rooms-template .w-37 {
  width: 45%;
  height: auto;
}

#rooms-template .w-38 {
  width: 46.25%;
  height: auto;
}

#rooms-template .w-39 {
  width: 47.50%;
  height: auto;
}

#rooms-template .w-40 {
  width: 48.75%;
  height: auto;
}

#back-rooms {
  position: absolute;
  top:15px;
  left: 0;
  padding: 0.75em;
  background: rgba(238,238,238,0.7);
  color: #7a796e;
  z-index: 1000;
  font-size: 0.9em;
  font-weight: normal;
}

#back-rooms a {
  font-weight: normal;
  color: #7a796e;
}

#back-rooms a:hover {
  font-weight: bold;
}

#back-rooms span {
  font-weight: bold;
}


.growimg {
  overflow: hidden;
  display: inline-block;
  vertical-align: bottom;
  width:100%;
}

.growimg img {
  transition: transform 0.15s linear;
}

.growimg:hover img {
  transform: scale(1.05);
}

#next-room {
  position: absolute;
  bottom:30px;
  right: 0;
  padding: 0.75em;
  background: rgba(238,238,238,0.7);
  color: #333;
  z-index: 1000;
  font-size: 0.9em;
}

#rooms-loading {
  position: fixed;
  top: 50%;
  left: 50%;
  margin-top: -50px; 
  margin-left: -50px; 
  color: #7a796e;
  letter-spacing: 0.02em;
}

#rooms-template {
  display: none;
}

#prev-room {
  position: absolute;
  bottom:30px;
  left: 0;
  padding: 0.75em;
  background: rgba(238,238,238,0.7);
  color: #333;
  z-index: 1000;
  font-size: 0.9em;
}

ul.email-address {
  margin: 0;
  padding: 0;
}

ul.email-address li {
  list-style-type: none;
  color: #7a796e;
  margin-bottom: 1.5em;
}

ul.email-address li a {
  color: #7a796e;
}

/*
span.address-name {
  font-size: 0.9em;
}
*/

form#subscribe-form input[type="text"], form#subscribe-form input[type="email"]{
  width: 100%;
  font-family: 'Nunito Sans', sans-serif;
  padding: 0.5em;
  border: 1px solid #ccc;
  margin-bottom: 0.5em;
  max-width: 300px;
}

form#subscribe-form input[type="text"]:focus, form#subscribe-form input[type="email"]:focus {
  outline:none;
  background: #f5f5f5;
}


form#subscribe-form input[type="submit"] {
  background: #7a796e;
  color: #fff;
  padding: 0.8em 1em;
  font-family: 'Nunito Sans', sans-serif;
  border:none;
  max-width: 300px;
  border-radius: 15px;
}


h2.column-title {
  margin-top: 1.5em;
  font-weight: bold;
  font-size: 1em;
}

.product-grid {
  margin: 4em auto 2em auto;
}

/* 5 columns, percentage width */
.product-item,
.grid-sizer {
  width: 100%;
}

.product-item {
  text-align: center;
  padding: 0;
}

.product-item img {
  width: auto;
  height: auto;
  max-width: 100%;
  margin: auto;
  vertical-align: bottom;
}

.product-item.product-item--width2 img {
  width: auto;
  height: auto;
  max-width: 100%;
  margin: auto;
  margin-bottom: 1em;
}

.trigger-in-view.fade-up {
    opacity: 0;
    transition: opacity 0.8s ease-out 0.2s, -webkit-transform 0.6s ease-out 0.2s;
    transition: transform 0.6s ease-out 0.2s, opacity 0.8s ease-out 0.2s;
    transition: transform 0.6s ease-out 0.2s, opacity 0.8s ease-out 0.2s, -webkit-transform 0.6s ease-out 0.2s;
    -webkit-transform: translateY(20px);
    transform: translateY(20px)
}

.trigger-in-view.fade-up.transition-reverse {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px)
}



@media (min-width: 768px) {
  
  .landscape-slider {
    display: block !important;
  }
  
  .portrait-slider {
    display: none !important;
  }
  
    .trigger-in-view.fade-up {
        -webkit-transform: translateY(70px);
        transform: translateY(70px)
    }
    .trigger-in-view.fade-up.transition-reverse {
        -webkit-transform: translateY(-70px);
        transform: translateY(-70px)
    }
}

.trigger-in-view.fade-up.in-view {
    opacity: 1;
    -webkit-transform: translateY(0px);
    transform: translateY(0px)
}

.next-page {
  color: #7a796e;
  opacity: 0;
}

p.category-filter {
  margin-top: 2em;
}

.product-cat-selection {
  margin: 2em auto;
  width: 100%;
  text-align: center;
}

.product-images img {
  width: 100%;
  height: auto;
  margin-bottom: 0;
}

.breadcrumbs {
  color: #7a796e;
  margin-bottom: 0;
  padding: 0;
}

body.archive .breadcrumbs {
  padding: 0 1em;
}

body.single-product-type .breadcrumbs, body.single-interior-type .breadcrumbs, body.single-exhibition-type .breadcrumbs {
  padding: 0 1em;
}

body.search-results .breadcrumbs {
  padding: 0;
}

body.single-product-type .ui.stackable.grid, body.single-interior-type .ui.stackable.grid, body.single-exhibition-type .ui.stackable.grid {
/*   display: inline; */
}


.breadcrumbs a {
  color: #7a796e;
  font-weight: normal;
}

.breadcrumbs span {
  font-weight: bold;
}

.breadcrumbs a:hover {
/*   border-bottom: 2px solid #7a796e; */
  display: inline-block;
  line-height: 0.9em;
  font-weight: bold;
}

.ui.grid .row.sub-cat-title-row {
  padding-bottom: 0;
  padding-top: 1em;
}

.ui.grid .row#sub-cat-title-row:first-child {
  padding-bottom: 0;
  padding-top: 1em;
}

ul.side-cat-list li.current-cat a, ul.side-cat-list li.current-cat-parent a, h4.sub-cat-title {
  font-weight: bold;
  display: inline-block;
  line-height: 0.9em;
}

ul.side-cat-list li.current-cat ul.children a{
  border-bottom: none;
}

ul.side-cat-list li ul.children li a.boldlink {
  font-weight: bold;
}

ul.side-cat-list li.current-cat ul.children a:hover {
  font-weight: bold;
}

ul.side-cat-list li.current-cat-parent ul.children a{
  border-bottom: none;
}

.new-list ul.children {
  display: none;
}

ul.side-cat-list li a:hover {
  display: inline-block;
  line-height: 0.9em;
  font-weight: bold;
}

ul.side-cat-list li.current-cat-parent ul.children a:hover {
  font-weight: bold;
  text-decoration: none;
}


ul.side-cat-list ul.children li.current-cat a {
  font-weight:bold;
  display: inline-block;
  line-height: 0.8em;
}

.enquiry {
  margin-top:1em;
  margin-bottom: 0;
}

.ui.selection.active.dropdown, .ui.selection.active.dropdown .menu, .ui.selection.active.dropdown:hover, .ui.selection.active.dropdown:hover .menu {
  border-color: #7a796e;
}

.product-images .ui.stackable.grid.product-images-grid {
  margin: 0;
  width: 100%;
  margin-left: 0 !important;
  margin-right: 0 !important;  
}

.product-images .ui.stackable.grid.product-images-grid .row {
  padding: 0;
}

.product-images .ui.stackable.grid.product-images-grid .row .column {
  padding-top: 0 !important;
  margin-top: 0;
  padding-right: 0;
  margin-bottom: 0.5em;
  padding-left: 0 !important;
  padding-right: 0 !important;
  padding-bottom: 0 !important;
}


form.enquiry {
  width: 100%;
  max-width: 360px;
  margin-bottom: 0;
}

input.full-width, textarea.full-width {
  width: 100%;
  padding: 1em;
  margin-bottom: 0.5em;
  font-size: 0.9em;
  border: 1px solid #ccc;
  color: #7a796e;
  font-family: 'Nunito Sans', sans-serif;
}

.ui.button {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 300;
}

form.enquiry input:focus, select:focus, textarea:focus {
  outline: none;
}

input[type="submit"] {
  background: #7a796e;
  color: #fff;
  padding: 0.8em 1em;
  font-family: 'Nunito Sans', sans-serif;
  border:none;
  cursor: pointer;
  width: 100%;
  font-weight: bold;
}

#search-form-header .ui.input input::-webkit-input-placeholder {
  color: #7a796e;
}

  input:-webkit-autofill,
  input:-webkit-autofill:hover,
  input:-webkit-autofill:focus textarea:-webkit-autofill,
  textarea:-webkit-autofill:hover textarea:-webkit-autofill:focus,
  select:-webkit-autofill,
  select:-webkit-autofill:hover,
  select:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0px 1000px #ffffff inset !important;
  }

input.hidden-inp {
  display: none;
}

p#result {
  display: none;
  margin-top: 1em;
}

.prev-next-nav a {
  color: #7a796e;
  font-weight: normal;
  display: inline-block;
  margin-right: 0.25em;
}

.prev-next-nav a:hover {
  font-weight: bold;
} 

.prev-next-nav.mobile {
  margin-top: 1em;
}

.about-accordian {
  width: 90%;
  margin: 2em auto;
  max-width: 400px;
}

.accordian-item {
  background-color: white;
  margin-bottom: 0.25em;
  padding: 0.4em;
  height: 30px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 0 15px #999;
}

.accordian-item:last-child {
  font-family: serif;
}

.accordian-item:nth-child(1) {
  width: 98%;
}

.accordian-item:nth-child(3) {
  font-weight: bold;
  font-style: italic;
  width: 95%;
}

.accordian-item:nth-child(4) {
  width: 97%;
}


.accordian-item:nth-child(6) {
  width: 97%;
}

.column.grid-item.room-item h2.item-title {
  text-align: center;
}

.column.grid-item.room-item {
  text-align: center;
}

.room-img {
  box-shadow: 0 0 8px rgba(238, 238, 238, 1);
  border-radius: 100%;
  max-width: 260px;
  margin:1em 0;
}

.page-template-template-rooms header {
  display: block;
}

.row-inner {
  width: 100%;
  border-bottom: 1px solid #ccc;
}

h1.item-title.featured {
  margin-top: 0;
  font-size: 1.2em;
}

h1.item-title.featured a {
  color: #7a796e;
}

.description.featured {
  margin: 1em 0;
  color: #7a796e;
}

.page-load-status {
  text-align: center;
}

.ui.popup {
  z-index: 10000000;
}

.item-desc.italic {
  font-style: italic;
}

