
/* ==========================================================================
   Fonts
   ========================================================================== */
   
@font-face {
  font-family: "ow-icon";
  src:url("fonts/ow.eot");
  src:url("fonts/ow.eot?#iefix") format("embedded-opentype"),
    url("fonts/ow.woff") format("woff"),
    url("fonts/ow.ttf") format("truetype"),
    url("fonts/ow.svg#ow") format("svg");
  font-weight: normal;
  font-style: normal;

}
@font-face {
    font-family: 'ibm';
    src: url('fonts/ibm-plex-mono.woff2') format('woff2'),
         url('fonts/ibm-plex-mono.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'ow-font';
    src: url('fonts/OW-font.woff2') format('woff2'),
         url('fonts/OW-font.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */
@charset "UTF-8";

html {
  color: #000;
  font-size: 11px;
  line-height: 1.4;
  font-family: 'ibm', monospace;
}

::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}


fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

textarea {
  resize: vertical;
}

ul, 
li {
	list-style: none;
	padding: 0;
	margin: 0;
}

.hide {
	opacity: 0;
}

a {
	color: #000;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}


/* ==========================================================================
   Icons
   ========================================================================== */
[class^="icon-"]:after,
[class*=" icon-"]:after {
  font-family: "ow-icon" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-burger:after {
  content: "\61";
}
.icon-close:after {
  content: "\62";
}
.icon-down:after {
  content: "\63";
}
.icon-left:after {
  content: "\64";
}
.icon-right:after {
  content: "\65";
}
.icon-up:after {
  content: "\66";
}
.icon-click:after {
  content: "\67";
}
.icon-hand:after {
  content: "\68";
}
.icon-here:after {
  content: "\69";
}
.icon-search:after {
  content: "\6a";
}
.icon-plus:after {
  content: "\6b";
}
.icon-minus:after {
  content: "\6c";
}

/* ==========================================================================
   Theme keyframes/animations
   ========================================================================== */

@keyframes blink {
  0%, 100%{
    opacity: 1;
  }
  50%{
    opacity: 0;
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* ==========================================================================
   Theme custom styles
   ========================================================================== */

body.expColour {
	background-color: #D9D1C1;
	transition: background-color ease .2s;
}
body.freeze {
  overflow: hidden;
}

.navWrapper {
	position: fixed;
	top: 20px;
	left: 20px;
  width: calc(65% - 40px);
  z-index: 101;
}
.navWrapper:hover {
  width: calc(100% - 40px);
}

.nav {
	display: block;
	float: left;
	width: 100%;
	margin: 0 0 6px;
	transition: all ease 0.5s;
}

.nav.feeds {
  
}

.nav.experience {
	display: none;
}

.subNav {
  display: none;
  float: left;
  width: 100%;
  margin: 0 0 6px;
  transition: all ease .2s;
}

.subCat {
  display: none;
  float: left;
  transition: all ease .2s;
}

.btn {
	display: block;
	float: left;
	padding: 7px 14px 8px;
	border-radius: 4px;
	color: #000;
	cursor: pointer;
	text-transform: uppercase;
	white-space: nowrap;
	-webkit-backdrop-filter: blur(30px);
  backdrop-filter: blur(30px);
  transition: background-color .2s ease, color .2s ease;
}

.subLinks .btnLink:hover {
  text-decoration: underline;
}

.btn[class*=" icon-"]:after {
	position: absolute;
    font-size: 6px;
    top: 12px;
    right: 14px;
}
.btn[class*=" icon-"] {
	padding-right: 24px;
}

.btn.icon-left:after {
  right: auto;
  left: 10px;
}
.btn.icon-left  {
  padding-right: 15px;
  padding-left: 21px;
}

.btn.primary { /* Light Grey */
	background-color: rgba(234,234,234,.5);
}
.btn.primary:hover {
	background-color: rgba(234,234,234,.6);
}
.btn.primary.selected { /* Light Black */
	background-color: rgba(0,0,0,.8);
	color: #fff;
}
.btn.primary.selected:hover {
	background-color: rgba(0,0,0,.9);
	color: #fff;
}
.btn.secondary { /* Light Sand */
	background-color: rgba(198,185,147,.5);
}
.btn.secondary:hover {
	background-color: rgba(234,234,234,.6);
}
.btn.select { /* Dark Grey */
  background-color: rgba(171,155,154,.4);
}
.btn.select:hover {
  background-color: rgba(171,155,154,.5);
}
.btn.filters { /* Green */
  background-color: rgba(205,237,211,.5);
}
.btn.filters:hover { 
  background-color: rgba(205,237,211,.6);
}
.btn.selected { /* Light Blue */
	background-color: rgba(0,68,138,.6);
	color: #fff;
}
.btn.selected:hover {
	background-color: rgba(0,68,138,.7);
}

.btn.back,
.btn.filters {
  display: none;
}
.btn:hover {
	backdrop-filter: blur(50px);
}


.nav.shop>li.on .dropDown{
   display: block;
   opacity: 1;
  }
.nav.shop>li.on .btn {
  background-color: rgba(234,234,234,.6);
  color: #000;
  backdrop-filter: blur(50px);
}
.nav.shop>li.on .btn.icon-down:after {
  content: "\66";
}
  
  
.nav.shop .dropDown {
  display: none;
  opacity: 0;
  position: absolute;
  top: 30px;
  width: 100%;
  padding-top: 6px;
  z-index: 100;
  transition: all ease .2s;
}
.dropDown > ul {
  display: flex;
  flex-direction: row;
  box-sizing: border-box;
  width: 100%;
  padding: 20px;
  border-radius: 4px;
  -webkit-backdrop-filter: blur(30px);
  backdrop-filter: blur(30px);
  background-color: rgba(234,234,234,.6);
}
.dropDown > ul > li {
  flex: 1 1;
}
.dropDown > ul > li > ul > li:first-child {
  text-transform: uppercase;
  margin-top: 0;
}
.dropDown > ul > li > ul > li {
  margin: 16px 0;
}
.dropDown > ul > li > ul > li:hover {
  text-decoration: underline;
  cursor: pointer;
}
.dropLinks li {
  position: relative;
  transition: all ease .2s;
}

.dropLinks li.selected {
  padding: 0 0 0 16px;
}
.dropLinks li.selected:after {
  position: absolute;
  top: 3px;
  left: 0;
}


/* Alexa */
.alexa {
    display: block;
    position: fixed;
    top: 15px;
    right: 20px;
    width: 373px;
    text-align: right;
    font-size: 22px;
    line-height: 1.4;
    font-family: 'ow-font', monospace;
    padding: 0 27px 0 0;
    z-index: 100;
}
.alexa:after {
  position: absolute;
  top: 8px;
  right: 0;
  font-size: 15px;
}
.alexa:hover {
  cursor: url(../media/img/hand.png), auto;

}
.alexa:active {
  cursor: url(../media/img/click.png), auto;

}
#speak {
	float: right;
}
.cursor {
  display: block;
  position: absolute;
  right: 23px;
  bottom: 0;
  width: 1px;
  margin-left: 3px;
  height: 28px;
  background-color: #000;
  animation: blink 1000ms infinite linear forwards running;
}
.cursor.fast {
  animation: blink 100ms infinite linear forwards running;
}

/* Utility Nav */

.utility {
	display: block;
	position: fixed;
	top: 90px;
	right: 20px;
	text-align: right;
	text-transform: uppercase;
  z-index: 100;
}

.utility .data {
	margin-top: 32px;
}

.utility .data ul {
  height: 45px;
  overflow: hidden;
}

.utility .data ul .link:hover {
  text-decoration: underline;
  cursor: pointer;
}

.spin {
    display: block;
    width: 8px;
    float: right;
    margin: 0 4px;
    //animation: spin 1500ms infinite linear forwards running;
}

/* Feed */
.feed {
	display: block;
	margin: 0;  /*center auto*/
	padding: 400px 20px 160px;
	box-sizing: border-box;
	width: 100%;
	//max-width: 1600px;
  min-width: 1024px;
  transition: opacity ease .3s;
}
.feed.shop {
}
.feed.experience { 
  display: none;
}
.feed .module {
	display: block;
	float: left;
	margin: 0 0 160px 0;
	box-sizing: content-box;
}
.feed .module .title {
	float: left;
	width: 100%;
}
.feed .title span {
	display: inline-block;
	float: left;
	text-transform: uppercase;
	margin: 0 0 8px;
}
.feed .title span>span {
  float: none;
}
.feed .items span {
	display: block;
	float: left;
	font-family: "ow-font";
	font-size: 21px;
	margin: 0;
}

.feed span.right {
	float: right!important;
}
.feed img {
	width: 100%;
	height: auto;
}
.feed .module .items {
  float: left;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  align-content: flex-start;
  margin: 0 -20px 0 0;
}
.feed .module .items li {
  margin: 0 20px 0 0;
  cursor: pointer;
}
.feed .module.m1 {
	width: 100%;
}
.feed .module.m2 {
	width: 86.25%;
}
.feed .module.m2 ul.items li {
	width: 60%;
}
.feed .module.m2 ul.items li:nth-child(2) {
	width: 40%;
}
.feed .module.m3 {
  width: 61.45%;
  margin: 0 0 140px 0;
}
.feed .module.m3 .items {
  flex-wrap: wrap;
}
.feed .module.m3 .items li {
  flex: 0 1 calc(50% - 20px);
  margin-bottom: 20px;
}
.feed .module.m4 {
  width: 67.777%;
}
.feed .module.m4 ul.items {
  flex-direction: column;
}
.feed .module.m4 ul.items li:nth-child(2) {
  margin: 24px 0 0;
} 
.feed .module.m5 {
  width: 100%;
}
.feed .module.m5 ul.items li {
  width: 66.666%;
}
.feed .module.m5 ul.items li:nth-child(2) {
  width: 33.333%;
}

.feed .module.mN {
  display: none;
  width: 66.666%;
}

.module[data-role='woman'] {
  background-color: pink;
}

.module.product {
  width: 72.5%;
}
.module.plp {
  display: none;
}
.module.plp .plpNav {
  position: fixed; 
  top: 400px;
  right: 20px;
  text-transform: uppercase;
  transition: opacity ease .2s;
}
.module.plp .plpNav div {
  cursor: pointer;
  margin-bottom: 32px;
  text-align: right;
  padding-right: 11px;
  position: relative;
}
.module.plp .plpNav div span:hover {
  text-decoration: underline;
}
.module.plp .plpNav div:after {
  position: absolute;
  top: 4px;
  right: 0;
  font-size: 6px;
}
.module.plp .plpNav .sortBy {
  height: 15px;
  overflow: hidden;
  transition: height ease .2s;
}
.module.plp .plpNav .sortBy.over {
  height: 60px;
}

.module.product.plp .title {
  width: 85%;
}
.module.product.plp .items > li {
  display: none;
  float: left;
  margin: 0 20px 96px 0;
  width: calc(25% - 20px);
}
.module.product.plp .items {
  display: block;
}
.module.product .items > li {
  position: relative;
}
.module.product .items > li.show {
  display: block;
}
.module.product .items > li.big {
  width: calc(42.5% - 20px);
}
.module.product .items li a img {
  transition: opacity ease .2s;
}
.module.product .items li a .img1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.module.product .items li:hover .img1 {
  opacity: 0;
}
.module.product .items li a span {
  font-size: 16px;
  width: 100%;
}
.module.product .items li .quickShop {
  opacity: 0;
  position: absolute;
  top: 12px;
  left: 12px;
  width: auto;
  font-family: 'ibm';
  text-transform: uppercase;
  font-size: 11px;
  transition: opacity ease .2s;
}
.module.product .items li .quickShop:hover {
  text-decoration: underline;
}
.module.product .items li a ul.colourSwatch {
  opacity: 0;
  position: absolute;
  bottom: 34px;
  left: 12px;
  transition: opacity ease .2s;
}
.module.product.plp .items li a ul.colourSwatch {
  bottom: 56px;
}
.module.product .items li a ul.colourSwatch li {
  float: left;
  border-radius: 2px;
  width: 14px;
  height: 14px;
  margin: 0 8px 0 0;
  padding: 0;
  background-color: #fff;
}
.module.product .items li a ul.colourSwatch li:nth-child(2) { background-color: #d8d8d8; }
.module.product .items li a ul.colourSwatch li:nth-child(3) { background-color: #21295b; }
.module.product .items li a ul.colourSwatch li:nth-child(4) { background-color: #d2bfa3; }
.module.product .items li a ul.colourSwatch li:nth-child(5) { background-color: #80a687; }
.module.product .items li a ul.colourSwatch li:nth-child(6) { background-color: #a54444; }
.module.product .items li a ul.colourSwatch li:nth-child(7) { background-color: #3d3d3d; }

.module.product .items li:hover .quickShop,
.module.product .items li:hover a .colourSwatch {
  opacity: 1;
}

@media only screen and (max-width: 1024px) {
  .feed .module.m2 ul.items li {
    width: 60%!important;
  }
}


.overlay {
  display: block;
  position: fixed;
  top: 80px; 
  right: -410px;
  width: 374px;
  opacity: 1;
  max-height: 80vh;
  padding: 16px;
  border-radius: 8px;
  -webkit-backdrop-filter: blur(30px);
  backdrop-filter: blur(30px);
  background-color: rgba(234, 234, 234, 0.5);
  z-index: 100;
  text-transform: uppercase;
  transition: right ease .2s;
  transition: max-height ease .2s;
  overflow: hidden;
}

.overlay .overHeader {
  margin: 0 0 32px;
  transition: margin-top ease .2s;
}
.overlay .overBody {
  overflow-y: scroll;
  max-height: 60vh;
}
.overlay .overBody .overContnet {
  height: 1000px;
}
.overlay .overFooter {
  margin: 8px 0 0;
  
}
.overlay .overFooter .appliedFiters {
  float: right;
  margin: 15px 0 0;
}

.overlay .control {
   display: block;
   position: absolute;
   top: 16px;
   right: 16px;
   padding: 5px 5px 3px;
   font-size: 6px;
   border-radius: 4px;
   color: #fff;
   cursor: pointer;
   background-color: rgba(0,0,0,.8);
   color: #fff;
   -webkit-backdrop-filter: blur(30px);
   backdrop-filter: blur(30px);
}

.overlay .control.minimise {
  right: 35px;
}

.overlay.quickShop .title {
  font-family: "ow-font";
  font-size: 22px;
  line-height: 20px;
  text-transform: none;
}
.overlay.quickShop {
  cursor: move;
}
.overlay.quickShop.min {
  max-height: 40px;
  padding: 12px 16px;
}
.overlay.quickShop.min .overHeader {
  margin-top: -47px;
}
.overlay.quickShop.min .title {
  font-size: 15px;
}
.overlay.quickShop.min .overBody {
  overflow: hidden;
}
.overlay.quickShop.min .minimise:after {
  content: "\6b";
}

.pdp {
  position: fixed;
  display: none;
  width: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 99;
  background-color: rgba(0,0,0,0); 
}
.pdp .pdpWindow {
  position: absolute;
  width: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow-y: scroll;
  margin-top: 100vh;
}
.pdp .pdpContent {
  display: block;
  left: 0;
  right: 0;
  height: 200vh;
  box-sizing: border-box;
  width: 100%;
  background-color: #fff;
  padding: 20px;
}
.pdp .pdpFooter {
  width: 100%;
  padding: 265px 20px 20px 20px;
  color: #fff;
  text-transform: uppercase;
  cursor: pointer;
}

.pdp .pdpFooter:hover {
  text-decoration: underline;
}

/* ==========================================================================
   Helper classes
   ========================================================================== */

.hidden,
[hidden] {
  display: none !important;
}

.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  /* 1 */
}

.sr-only.focusable:active,
.sr-only.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto;
}

.invisible {
  visibility: hidden;
}

.clearfix::before,
.clearfix::after {
  content: " ";
  display: table;
}

.clearfix::after {
  clear: both;
}