 /**
 * Sitewide CSS variables
**/
/* Mixins */
/* HELPER CLASSES



/**
* @file mob.scss
* @author: barry.mcgee@othermedia.com 
*
* @description: Stylesheet used for devices generally grouped as "mobile". This is the base responsive layout that tablet/main stylesheets will extend from. Media query dimensions can be found in ps.info
*/
/* Hide lazy load images if no js */
.no-js img.lazy {
  display: none;
}

.dark #search-block-form,
.dark nav ul.links li, .dark nav ul.menu li {
  border-top: 1px solid rgba(255, 255, 255, 0.9);
}

/* maxvoltar.com/archive/-webkit-font-smoothing */
html {
  -webkit-font-smoothing: antialiased;
}

/**
* !Development Helper to display current breakpoint
*/
#res-helper {
  position: fixed;
  bottom: 40px;
  right: 0px;
  background: #ff7979;
  padding: 2px;
  width: 45px;
  z-index: 1000;
  color: #000;
}
#res-helper h4 {
  padding: 0;
  margin: 0;
}

/**
* Fallback to ensure Translations dot com logo is never shown 
*/
.OneLinkPoweredBy {
  display: none;
}

hgroup + .region-header {
  display: none;
}

/*
* !Page layout
*/
.node-type-page #page #content #inner-content {
  padding: 10px;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  /* Safari/Chrome, other WebKit */
  -moz-box-sizing: border-box;
  /* Firefox, other Gecko */
  box-sizing: border-box;
  /* Opera/IE 8+ */
  width: 100%;
}
.node-type-page #page #content h1 {
  padding-bottom: 0;
}

ul, ol {
  list-style: none;
}

input, select, textarea {
  -webkit-appearance: none;
  border-radius: 0;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

body {
  position: relative;
  min-width: 280px;
}

a:hover {
  text-decoration: underline;
}

.landing #content {
  max-width: 100%;
  /* Allow landing pages to span full width of the screen */
}

/*
* !Center the page.
*/
#page,
.region-bottom {
  margin-left: auto;
  margin-right: auto;
  min-width: 282px;
}

#menu-icon {
  height: 32px;
  width: 30px;
  background: url("../assets/icons-low.png") no-repeat -845px -20px;
  position: absolute;
  top: 12px;
  right: 12px;
  cursor: pointer;
}
#menu-icon:hover {
  cursor: hand;
}

/* !Logo for header nav */
header {
  padding-top: 14px;
}
.light header {
  border-bottom: 1px solid #e0e0e0;
}
header #name-and-logo a {
  display: block;
  position: relative;
  z-index: 1;
}
header #name-and-logo a span {
  text-indent: -9999px;
  background: url("../assets/icons-low.png") no-repeat 0 0;
  width: 164px;
  height: 30px;
  display: block;
  padding-bottom: 12px;
}

/* Hide all H1 headers on landing pages */
.node-type-landing-page #inner-content h1 {
  display: none;
}

/* Styling for bold elements; bold is applied by font-family:'Univers Next W01 Bold'; so shouldn't bold again */
h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

strong, li a.active, a.active-trail {
  font-family: 'Univers Next W01 Bold', sans-serif;
  font-weight: normal;
}

.light #name-and-logo a span {
  background-position: 1px 0;
  padding-bottom: 16px;
}
.light #menu-icon {
  background-position: -845px 9px;
}
.light footer ul.menu:first-child li a {
  color: white;
}

footer .menu .menu {
  padding: 0;
  display: none;
  top: 18px;
}
footer .menu .menu li {
  background: rgba(102, 102, 102, 0.95);
}
.light footer .menu .menu li {
  background: rgba(224, 224, 224, 0.95);
}
footer .sub-nav-toggle {
  height: 30px;
  width: 40px;
  background: url("../assets/icons-low.png") no-repeat -170px -30px;
  position: absolute;
  top: 15px;
  right: 10px;
  cursor: pointer;
}
.light footer .sub-nav-toggle {
  background-position: -171px 0;
}
footer .sub-nav-toggle-active {
  background-position: -200px -30px;
}
.light footer .sub-nav-toggle-active {
  background-position: -200px 0;
}

#content {
  margin-top: 10px;
  clear: both;
}
#content > .view {
  padding: 4%;
}

.page-collections #content {
  margin-top: 30px;
}

#search-block-form {
  text-align: center;
  padding: 9px 0;
  margin: 0;
}
#search-block-form .form-text {
  width: 80%;
}

/* 
* !Navigation 
*/
.block-block.first,
#block-ps-magento-elements-magento-account,
#block-ps-magento-elements-magento-basket,
#block-ps-magento-elements-magento-logout,
#main-menu {
  display: none;
}

#main-menu ul.menu ul.menu {
  display: none;
}

nav {
  position: absolute;
  z-index: 999999 !important;
  left: 0;
  width: 100%;
  z-index: 9;
}
nav ul.menu {
  /* Menu block links */
  margin: 0;
  padding: 0;
  z-index: 10;
  position: relative;
}
nav ul.menu li {
  float: none;
  margin: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.95);
  position: relative;
  clear: both;
  text-align: center;
  font-weight: bold;
  border-bottom: 1px #e0e0e0 solid;
  border-top: none;
}
nav ul.menu li:first-child {
  border-top: 1px #e0e0e0 solid;
}
nav ul.menu li .active-trail, nav ul.menu li .active {
  text-decoration: underline;
}
nav ul.menu li .sub-nav-toggle {
  height: 30px;
  width: 40px;
  background: url("../assets/icons-low.png") no-repeat -172px -4px;
  position: absolute;
  top: 15px;
  right: 10px;
  cursor: pointer;
}
nav ul.menu li .sub-nav-toggle-active {
  background-position: -201px -4px;
}
nav ul.menu li a {
  color: black;
  text-transform: uppercase;
  display: block;
  padding: 9px 0;
}
nav ul.menu li > .menu {
  /* !Primary Navigation sub-menu */
}
nav ul.menu li > .menu > li {
  background-color: rgba(102, 102, 102, 0.5);
}
nav ul.menu li > .menu > li a {
  text-transform: capitalize;
}

/* 
* !Footer 
*/
footer #social-links a span {
  background-color: transparent;
  border: 0;
  overflow: hidden;
}
footer #social-links a span:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
}


.light footer div > ul.menu li {
  background: white;
  border-top: 1px solid #e0e0e0;
}
.light footer div > ul.menu li:last-child {
  border-bottom: 1px solid #e0e0e0;
}
footer #block-ps-core-footer-links {
  padding-bottom: 0;
}
footer #block-ps-core-footer-links > span {
  bottom: 17px;
}


/* 
* !Paul Smith World 
*/
.section-paul-smith-world article ul {
  list-style: inherit;
}
.section-paul-smith-world article ol {
  list-style: decimal;
}

.item-row a:hover {
  text-decoration: none;
}

#main {
  padding: 0;
}

.view-world .view-content {
  height: 100%;
  /* For Isotope plugin to work */
  margin: auto;
  padding-bottom: 20px;
}

.item-row {
  width: 99%;
  float: left;
  margin-bottom: 9px;
}
.item-row video {
  width: 100%;
  height: auto;
}
.item-row a {
  clear: both;
  display: block;
  height: 100%;
}
.item-row a img {
  width: 100%;
  /* TEMP FIX UNTIL ADAPTIVE IMAGES IS IMPLEMENTED */
}
.item-row a span {
  display: block;
  text-align: center;
  text-transform: uppercase;
  color: #666666;
  font-size: 0.75em;
}
.item-row a p {
  text-align: center;
  margin: 0;
}

.section-paul-smith-world article a {
  text-decoration: underline;
}
.section-paul-smith-world #inner-content {
  padding: 18px;
}

.vjs-big-play-button {
  outline: none;
}

/* PS World Page Item Pages */
#page #content {
  padding: 0;
  position: relative;
}

.page-node h1 {
  font-size: 1.275em;
  line-height: 1.5;
  margin: 24px 0 10px;
}
.page-node .field-sub-title {
  font-size: 1.4em;
  line-height: 1.4em;
  margin-bottom: 18px;
  margin-top: 9px;
}
.page-node .field-preposition {
  clear: both;
}
.page-node .date {
  clear: both;
  margin: 18px 0;
}
.page-node p {
  margin-bottom: 18px;
}

/* !Get the look */
h3 {
  font-size: 1.4em;
  margin: 12.5px 0 9px;
}

.field-sku ul {
  list-style: none;
}
.field-sku .products {
  margin: 0;
  padding: 0;
  list-style: none;
}
.field-sku .products li {
  float: left;
}
@media all and (max-width: 499px) {
  .field-sku .products li {
    width: 100%;
  }
}
@media (min-width: 500px) and (max-width: 699px) {
  .field-sku .products li {
    width: 48%;
    margin-right: 1%;
  }
}
@media (min-width: 700px) {
  .field-sku .products li {
    width: 30%;
    margin-right: 2%;
  }
}
.field-sku .products p {
  margin: 4.5px 0 9px;
}
.field-sku .products img {
  width: 96%;
}
.field-sku .products span {
  display: block;
  margin: 9px 0;
}
@media (min-width: 490px) and (max-width: 799px) {
  .field-sku .products-count-1 li {
    margin-left: 20% !important;
  }
  .field-sku .products-count-3 li {
    width: 30.5%;
    margin-right: 1.5%;
  }
  .field-sku .products-count-4 li {
    width: 22%;
    margin-right: 1%;
  }
}

.date {
  clear: both;
  display: block;
}

.field-logo {
  display: none;
  /* TEMP */
}

/* !Previous/Next Links */
#block-ps-world-prev-next-links {
  display: block;
  position: absolute;
  top: 3px;
  right: 5px;
  text-align: right;
  width: 100%;
  position: relative;
}
#block-ps-world-prev-next-links a.next:only-child {
  padding-right: 14px !important;
}
#block-ps-world-prev-next-links a.prev:only-child {
  padding-right: 0px !important;
}
#block-ps-world-prev-next-links a.prev:only-child:before {
  right: 72px !important;
}
#block-ps-world-prev-next-links .prev:before, #block-ps-world-prev-next-links .next:after {
  height: 9px;
  width: 5px;
  position: absolute;
  top: -1.5px;
}
#block-ps-world-prev-next-links .prev:before:hover, #block-ps-world-prev-next-links .next:after:hover {
  text-decoration: none;
}
#block-ps-world-prev-next-links .prev {
  padding-left: 12px !important;
  padding-right: 3px !important;
}
#block-ps-world-prev-next-links .prev:before {
  content: "<";
  right: 145px;
}
#block-ps-world-prev-next-links .next {
  padding-right: 16px;
  padding-left: 3px;
}
#block-ps-world-prev-next-links .next:after {
  content: " > ";
  right: 5px;
}

.main-column p {
  padding-top: 0;
  margin-top: 0 !important;
}
.main-column span {
  font-size: 1em;
  margin-top: -10px;
}
.main-column .addthis_toolbox {
  margin: 18px 0;
  clear: both;
}

/* FB Comment Box */
.fb-comments {
  margin-bottom: 20px;
}
.fb-comments span {
  width: 100% !important;
}
.fb-comments iframe[style] {
  width: 100% !important;
  margin-top: 20px !important;
}

.fb_iframe_widget span {
  position: inherit;
}

.fb_iframe_widget {
  display: block !important;
}

/* END Facebook Overide */
h1 {
  font-size: 1.8em;
}

/* !Related Articles */
.section-paul-smith-world h1#page-title {
  padding-bottom: 9px;
  margin-bottom: 9px;
  border-bottom: none !important;
}
.section-paul-smith-world article .related-articles {
  padding: 0;
  list-style: none;
}
.section-paul-smith-world article .related-articles span {
  font-size: 0.75em;
}
.section-paul-smith-world article .related-articles a {
  text-decoration: none;
}

.view-header {
  clear: both;
}
.view-header h2 {
  margin: 9px 0;
}

.views-row {
  width: 100%;
  float: left;
}
@media all and (min-width: 400px) {
  .views-row {
    width: 48%;
    margin-left: 1%;
  }
  /*.views-row:first-child {
    margin-left: 0;
  }*/
}
@media all and (min-width: 600px) {
  .views-row {
    width: 206px;
    min-height: 210px;
  }
}
.views-row img {
  width: 100%;
  border:1px solid #7b7565;
}

.views-row a:hover img {
  width: 100%;
  border:1px solid #FFF;
}
.views-row span {
  display: block;
  text-align: center;
  text-transform: uppercase;
  color: #666;
}
.views-row p {
  text-align: center;
  margin-top: 2px;
}

/* Figure Caption */
figure figcaption {
  width: 100%;
  display: inline-block;
  margin-bottom: 14px;
  text-align: left;
  font-size: 13px;
}
figure figcaption a {
  background: none !important;
}

/* !Image Carousel */
.list_carousel {
  margin: 0;
  width: 100%;
  position: relative;
  margin-bottom: 0;
  text-align: center;
}
.list_carousel ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: block;
}
.list_carousel ul li {
  font-size: 40px;
  color: #999;
  text-align: center;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  display: block;
  float: left;
}
.list_carousel ul li img {
  width: 100%;
}
.list_carousel ul li video {
  width: 100%;
}
.list_carousel ul > a {
  position: absolute;
  top: 48%;
  background: url("../assets/icons-low.png") no-repeat -1047px -52px;
  width: 27px;
  height: 27px;
  z-index: 9999;
}
.list_carousel #prev, .list_carousel #next {
  position: absolute;
  top: 45%;
}
@media all and (min-width: 800px) {
  .list_carousel #prev, .list_carousel #next {
    top: 40%;
    top: calc(50% - 54px);
  }
}
.list_carousel #prev {
  float: left;
  margin-left: 10px;
  left: -10px;
  background-position: -995px -52px;
}
.list_carousel #next {
  float: right;
  margin-right: 10px;
  right: -10px;
}
.list_carousel .pager {
  position: relative;
  text-align: center;
  bottom: -20px;
  display: none !important;
}
.touch .list_carousel .pager {
  display: inline-block !important;
}
.list_carousel .pager a {
  background-image: none;
  background-color: #CCC;
  width: 10px;
  height: 10px;
  margin: 0 5px;
  text-decoration: none;
  position: static;
  float: left;
}
.list_carousel .pager a span {
  display: none;
}
.list_carousel .pager .selected {
  background-color: #000;
}

/* Blog articles */
.node-blog #prev, .node-blog #next {
  display: none;
}
.node-blog #hero-carousel li {
  margin-bottom: 9px;
}
.node-blog .date {
  border-bottom: 1px solid #666666;
  padding-bottom: 9px;
}

.section-paul-smith-world .video-js {
  margin-bottom: 5px;
}
.section-paul-smith-world h1 {
  padding-top: 18px;
}

#social_buttons {
  display: none;
  position: relative;
  clear: both;
}
#social_buttons .fb-like iframe {
  position: absolute;
  right: 0;
  left: auto;
  top: 0;
}
#social_buttons .twitter-share-button {
  position: absolute;
  top: -4px;
  left: 81px;
}
#social_buttons #___plusone_0 {
  position: absolute;
  top: -5px;
  left: 165px;
}
#social_buttons iframe {
  position: absolute;
  right: auto;
  left: 160px;
  top: -4px;
}
#social_buttons iframe[data-twttr-rendered=true] {
  position: absolute;
  left: 90px;
}

.sidebar #PinItButton {
  right: 0;
  z-index: 999;
}
.sidebar #social_buttons {
  margin-top: 20px;
  margin-bottom: 20px;
  left: 60px;
}
.sidebar #social_buttons iframe.fb_ltr {
  position: absolute;
  top: -3px;
}

#social_buttons [data-pin-log=button_pinit] {
  left: 70px;
  top: -4px;
}

div.fb-like {
  width: 95px;
  float: left;
  padding-top: 3px;
}

.sidebar div.fb-like {
  padding-top: 0;
}

div.twitter-share-button {
  margin-right: 20px;
}

/* !Higher end of mobile devices */
@media all and (max-width: 680px) and (min-width: 321px) {
  /* Breakpoint Indicator */
  #res-helper {
    background: #a5a5f1;
  }

  /* Items in PS World Landing pages */
  .item-row {
    /* 		width:48%!important; */
    margin-right: 18px;
    min-height: 160px;
  }
}
@media all and (max-width: 680px) and (min-width: 321px) and (max-width: 319px) {
  .item-row {
    min-height: 250px;
  }
}
@media all and (max-width: 680px) and (min-width: 321px) and (max-width: 480px) and (min-width: 430px) {
  .item-row {
    min-height: 180px;
  }
}
@media all and (max-width: 680px) and (min-width: 321px) and (max-width: 570px) and (min-width: 481px) {
  .item-row {
    min-height: 200px;
  }
}
@media all and (max-width: 680px) and (min-width: 321px) and (max-width: 570px) and (min-width: 481px) {
  .item-row {
    min-height: 200px;
  }
}
@media all and (max-width: 680px) and (min-width: 321px) and (max-width: 650px) and (min-width: 571px) {
  .item-row {
    min-height: 220px;
  }
}
@media all and (max-width: 680px) and (min-width: 321px) and (max-width: 680px) and (min-width: 651px) {
  .item-row {
    min-height: 230px;
  }
}

.ie9 .caroufredsel_wrapper {
  max-height: 518px;
  overflow: hidden;
}

/* Isotope filtering */
.isotope-item {
  z-index: 2;
}

.isotope-hidden.isotope-item {
  pointer-events: none;
  z-index: 1;
}

.isotope,
.isotope .isotope-item {
  /* change duration value to whatever you like */
  -webkit-transition-duration: 0.5s;
  -moz-transition-duration: 0.5s;
  transition-duration: 0.5s;
}

.isotope {
  -webkit-transition-property: height, width;
  -moz-transition-property: height, width;
  transition-property: height, width;
}

.isotope .isotope-item {
  -webkit-transition-property: -webkit-transform, opacity;
  -moz-transition-property: -moz-transform, opacity;
  transition-property: transform, opacity;
}

/* Error page */
.landing #content #inner-content.error-page {
  margin: 0 auto;
  max-width: 920px;
  width: 97%;
}
.landing #content #inner-content.error-page h1 {
  border-bottom: 1px solid #f3f3f3;
  margin: 0 0 30px;
  padding: 0 0 8px 0;
}
.landing #content #inner-content.error-page p {
  margin: 0 0 10px;
}
.landing #content #inner-content.error-page ul {
  list-style: disc;
  margin: 0 0 10px;
}
.landing #content #inner-content.error-page a {
  text-decoration: underline;
}

.section-paul-smith-world.page-node li.world > a {
  font-family: "Univers Next W01 Bold", sans-serif;
}
.section-paul-smith-world.page-node .active-trail .active-trail {
  font-family: "Univers Next W01 Bold", sans-serif;
}
.section-paul-smith-world.page-node #content #inner-content {
  padding-top: 0;
}
.section-paul-smith-world.page-node #content #inner-content h1 {
  padding-top: 0;
}

body.logged-in #content {
  padding-bottom: 100px !important;
}

.no-js #prev, .no-js #next {
  display: none;
}

ul.menu ul.menu ul.menu {
  visibility: hidden;
}
ul.menu ul.menu ul.menu li a {
  text-transform: none !important;
}

.admin-blocks ul.menu ul.menu ul.menu {
  visibility: visible;
}

/* Sitemap */
body.section-sitemap #page #inner-content {
  padding: 10px;
}
body.section-sitemap .site-map-menus h2 {
  display: none;
}
body.section-sitemap #site-map .site-map-box ul {
  padding: 0;
}
body.section-sitemap #site-map .site-map-box .content .site-map-menu {
  margin-bottom: 20px;
}
body.section-sitemap #site-map .site-map-box .content .site-map-menu li {
  padding-bottom: 5px;
}
body.section-sitemap #site-map .site-map-box .content .site-map-menu li a {
  font-family: "Univers Next W01 Bold", sans-serif;
  display: block;
  padding: 0 10px 5px 0;
}
body.section-sitemap #site-map .site-map-box .content .site-map-menu li li a {
  font-family: "UniversNextW01-Regular", sans-serif;
  padding: 0;
}

.hide-for-mobile {
  display: none !important;
}

.media-youtube-video {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.media-youtube-video iframe, .media-youtube-video object, .media-youtube-video embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.no_carousel #prev, .no_carousel #next {
  display: none !important;
}

#visionplayer_1153 {
  width: 100% !important;
  min-height: 170px;
}

#vision_visionplayer_1153_wrapper {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 25px;
  height: 0 !important;
  width: 100% !important;
}

#vision_visionplayer_1153_wrapper object,
#vision_visionplayer_1153_wrapper embed,
#visionplayer_1153_vc,
#visionplayer_1153_vc a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}

img#vision_visionplayer_1153_img {
  height: auto !important;
  width: 100% !important;
}
@media all and (max-width: 767px) {
  img#vision_visionplayer_1153_img {
    max-height: 175px;
  }
}

@media screen and (max-width: 512px) {
  #vision_visionplayer_1153_img1 {
    padding-top: 10% !important;
    display: block !important;
  }

  #vision_embed_video_container {
    height: auto !important;
    width: 100% !important;
    display: relative !important;
    z-index: 9999;
  }
}
@media (max-width: 568px) and (orientation: landscape) {
  #vision_visionplayer_1153_img1 {
    padding-top: 5% !important;
    display: block !important;
  }
}
@media screen and (min-width: 1024px) {
  #visionplayer_1153 {
    width: 100% !important;
    min-height: 500px;
    overflow: hidden !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  #visionplayer_1153 {
    min-height: 360px;
    overflow: hidden;
  }
}
#vision_embed_video_container {
  width: 96% !important;
}

#vision_embed_video_container video {
  width: 100% !important;
}

@media (min-width: 960px) and (orientation: landscape) {
  #vision_embed_video_container {
    width: 92% !important;
  }

  #vision_embed_video_container video {
    width: 100% !important;
  }
}
@media (max-width: 768px) and (orientation: landscape) {
  #vision_embed_video_overlay_bitrates, #vision_embed_video_overlay_play {
    display: none !important;
  }
}


.disable {
  visibility: hidden;
}

/**
* @file main.scss
* @author: barry.mcgee@othermedia.com
*
* @description: Stylesheet used for devices generally grouped as desktop & above. Media query dimensions can be found in ps.info
*/
/*
* Development Helper to display current breakpoint
*/
#res-helper {
  background: #8cf888;
}

/* HTML5 Element reset for older browsers */
article, aside, figure, footer, header, hgroup,
menu, nav, section {
  display: block;
}

/* 
* !Page Layout
*/
.dark #search-block-form {
  border-top: none;
}

.block-block.first {
  display: inline-block;
  position: relative;
}

hgroup + .region-header {
  display: block;
}

footer .sub-nav-toggle {
  display: none;
}

.hasBasketInfo .region-header {
  max-width: 550px;
}
.hasBasketInfo #block-ps-magento-elements-magento-logout {
  padding-left: 55px;
}
.hasBasketInfo #m_logout {
  padding-right: 10px;
}
.hasBasketInfo #m_logout, .hasBasketInfo #m_language {
  background: url("../assets/top-links-white.png") no-repeat center right;
}
.hasBasketInfo #m_language:hover {
  height: 22px;
  overflow: visible;
}

.hasBasketInfo.eu-fr #block-ps-magento-elements-magento-logout {
  padding-left: 88px;
}
.hasBasketInfo.eu-fr #m_language {
  right: 228px;
}

.lang_top {
  position: absolute;
  top: 27px;
  right: 70px;
  z-index: 9;
  width: 140px;
}
.lang_top h4 {
  position: relative !important;
  right: -70px;
  font-weight: 100;
  font-size: 1em;
  margin: 2px 0;
  font-family: 'UniversNextW01-Regular', sans-serif;
  padding-right: 15px;
  width: 115px;
  /* 	background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABcAAAAECAMAAABStlSnAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDozNkE1MTM4NjdFOTExMUUyQjM3RUZBNkQ2RDZGMjc3MCIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDozNkE1MTM4NzdFOTExMUUyQjM3RUZBNkQ2RDZGMjc3MCI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOkEwMEFGODA5N0U5MDExRTJCMzdFRkE2RDZENkYyNzcwIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkEwMEFGODBBN0U5MDExRTJCMzdFRkE2RDZENkYyNzcwIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+CSbqcgAAAwBQTFRFVVVV////AgICAwMDBAQEBQUFBgYGBwcHCAgICQkJCgoKCwsLDAwMDQ0NDg4ODw8PEBAQEREREhISExMTFBQUFRUVFhYWFxcXGBgYGRkZGhoaGxsbHBwcHR0dHh4eHx8fICAgISEhIiIiIyMjJCQkJSUlJiYmJycnKCgoKSkpKioqKysrLCwsLS0tLi4uLy8vMDAwMTExMjIyMzMzNDQ0NTU1NjY2Nzc3ODg4OTk5Ojo6Ozs7PDw8PT09Pj4+Pz8/QEBAQUFBQkJCQ0NDRERERUVFRkZGR0dHSEhISUlJSkpKS0tLTExMTU1NTk5OT09PUFBQUVFRUlJSU1NTVFRUVVVVVlZWV1dXWFhYWVlZWlpaW1tbXFxcXV1dXl5eX19fYGBgYWFhYmJiY2NjZGRkZWVlZmZmZ2dnaGhoaWlpampqa2trbGxsbW1tbm5ub29vcHBwcXFxcnJyc3NzdHR0dXV1dnZ2d3d3eHh4eXl5enp6e3t7fHx8fX19fn5+f39/gICAgYGBgoKCg4ODhISEhYWFhoaGh4eHiIiIiYmJioqKi4uLjIyMjY2Njo6Oj4+PkJCQkZGRkpKSk5OTlJSUlZWVlpaWl5eXmJiYmZmZmpqam5ubnJycnZ2dnp6en5+foKCgoaGhoqKio6OjpKSkpaWlpqamp6enqKioqampqqqqq6urrKysra2trq6ur6+vsLCwsbGxsrKys7OztLS0tbW1tra2t7e3uLi4ubm5urq6u7u7vLy8vb29vr6+v7+/wMDAwcHBwsLCw8PDxMTExcXFxsbGx8fHyMjIycnJysrKy8vLzMzMzc3Nzs7Oz8/P0NDQ0dHR0tLS09PT1NTU1dXV1tbW19fX2NjY2dnZ2tra29vb3Nzc3d3d3t7e39/f4ODg4eHh4uLi4+Pj5OTk5eXl5ubm5+fn6Ojo6enp6urq6+vr7Ozs7e3t7u7u7+/v8PDw8fHx8vLy8/Pz9PT09fX19vb29/f3+Pj4+fn5+vr6+/v7/Pz8/f39/v7+////kSp4+wAAAAJ0Uk5T/wDltzBKAAAAI0lEQVR42mJghIJQJBIIGBiRJeDCSOJAQYQwsjiyMCNAgAEAi7ACqdFGuiEAAAAASUVORK5CYII=) no-repeat center right; */
  background: url("../assets/language_arrow_down.png") no-repeat 113px 2px;
}
.hasBasketInfo .lang_top h4 {
  position: static !important;
}
.light .lang_top h4 {
  background: url("../assets/language_arrow_down_dark.png") no-repeat 111px 4px;
}
.lang_top ul {
  display: none;
  background: rgba(0, 0, 0, 0.3);
  right: -70px;
  position: relative;
  margin: 2px 0;
  padding: 0;
}
.light .lang_top ul {
  background: rgba(255, 255, 255, 0.3);
  color: black;
}
.lang_top ul li {
  border-top: none;
  padding-left: 5px;
}
.lang_top ul li:first-child {
  border-bottom: 1px solid rgba(224, 224, 224, 0.5);
}
.hasBasketInfo .lang_top ul {
  right: 0;
}
.lang_top:hover {
  cursor: pointer;
}
.lang_top:hover ul {
  display: block;
}

.node-type-page #page #content {
  padding-top: 20px;
  margin-bottom: 60px;
}
.node-type-page #page #content #inner-content {
  padding: 0;
}
.node-type-page #page #content h1 {
  padding-bottom: 0;
}

#page {
  position: relative;
}
#page > header {
  padding: 17px 0 0;
  border-bottom: 1px solid #e0e0e0;
}
#page > header .region-header {
  position: absolute;
  top: -20px;
  right: 18px;
  width: 600px !important;
  font-size: 0.75em;
}
.hasBasketInfo #page > header .region-header {
  top: 10px;
}
#page > header .region-header #block-ps-magento-elements-magento-account, #page > header .region-header #block-ps-magento-elements-magento-basket {
  float: right;
}
#page > header .region-header #block-ps-magento-elements-magento-account #m_account, #page > header .region-header #block-ps-magento-elements-magento-basket #m_account {
  margin-right: 7px;
  padding-right: 9px;
  background: url("../assets/top-links.png") no-repeat center right;
}

#block-ps-magento-elements-magento-language-switcher {
  display: inline-block;
  float: left;
}

#block-ps-magento-elements-magento-logout {
  float: left;
}

.hasBasketInfo #m_language {
  position: absolute;
  right: 290px;
  top: 1px;
}

#m_language ul li a {
  width: 100%;
  display: block;
}

.section-collections #page > header {
  padding: 17px 0 28px;
}

/* Figure Caption */
figure {
  position: relative;
}
figure figcaption {
  position: absolute;
  bottom: 2px;
  -webkit-box-sizing: border-box;
  /* Safari/Chrome, other WebKit */
  -moz-box-sizing: border-box;
  /* Firefox, other Gecko */
  box-sizing: border-box;
  /* Opera/IE 8+ */
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  padding: 8px;
  color: #fff;
}
.lt-ie9 figure figcaption {
  background: #000;
}
figure figcaption a {
  color: white !important;
}

html body #main-menu ul.menu li.shop, html body #main-menu ul.menu li.collections {
  position: relative;
}
html body #main-menu ul.menu li.shop ul.menu, html body #main-menu ul.menu li.collections ul.menu {
  top: 43px;
  left: -20px;
  background-color: white;
  z-index: 99999;
}
html body #main-menu ul.menu li.shop ul.menu li, html body #main-menu ul.menu li.collections ul.menu li {
  width: 100%;
  float: left;
  background-image: none;
  border-bottom: none;
  cursor: pointer;
}

#main-menu ul.menu > li.shop ul,
#main-menu ul.menu > li.collections ul {
  display: none;
  visibility: hidden;
  width: 150px;
  top: 0;
  right: 0;
}

#menu-icon, #mob-basket {
  display: none;
}

.light #block-search-form, .dark #block-search-form {
  border: none;
}
.light #search-block-form, .dark #search-block-form {
  padding: 0;
}

#name-and-logo {
  margin-top: 12px;
}
#name-and-logo h1 {
  padding: 0;
}
#name-and-logo h1 a span {
  background-position: 0 0 !important;
}

/* Magento Cart Info */
#block-ps-magento-elements-magento-account,
#block-ps-magento-elements-magento-basket,
#block-ps-magento-elements-magento-logout {
  display: inline-block;
  margin: 0;
}

#block-ps-magento-elements-magento-logout {
  padding-left: 60px;
}

/* !Navigation */
#main-menu {
  line-height: 0;
  display: block;
  padding-top: 0;
  font-size: 0.75em;
  display: block !important;
  position: static;
  margin: -3px auto 0;
  max-width: 100%;
}
#main-menu ul.menu {
  display: block;
  margin: auto;
}
#main-menu ul.menu ul.menu {
  display: block;
}
#main-menu ul.menu ul.menu li {
  position: relative;
}
#main-menu .container-inline {
  width: 100%;
}
#main-menu #block-search-form {
  height: 21px;
  overflow: hidden;
  position: absolute;
  top: 3.83333em;
  right: 18px;
  padding: 0;
}
#main-menu #block-search-form .form-text, #main-menu #block-search-form input[type="submit"] {
  font-size: 12px;
  line-height: 13px;
  float: left;
  border: none;
}
#main-menu #block-search-form .form-text {
  width: 132px;
  background: #f3f3f3;
  padding: 4px 6px;
  display: block;
  border: none;
  float: left;
}
#main-menu #block-search-form input[type="submit"] {
  display: inline-block;
  font-size: 1em;
  line-height: 1.3;
  background-color: #191919;
  color: white;
  padding: 6px 12px 6px 12px;
  border: 1px solid #191919;
  border-radius: 0;
  -webkit-appearance: none;
  text-decoration: none;
  font-size: 9px;
  line-height: 13px;
  padding: 4px 7px;
  text-transform: uppercase;
  border: none;
  display: block;
}
#main-menu #block-search-form input[type="submit"]:hover, #main-menu #block-search-form input[type="submit"]:focus, #main-menu #block-search-form input[type="submit"]:active {
  text-decoration: underline;
}
#main-menu ul.menu {
  /* Menu block links */
  text-align: center;
}
#main-menu ul.menu > li {
  font-size: 100%;
  clear: none;
  text-align: center;
  background: none;
  font-weight: normal;
  display: inline-block;
  margin: 0;
  padding: 0;
  border: none;
  position: static;
}
#main-menu ul.menu > li .sub-nav-toggle {
  display: none;
}
#main-menu ul.menu > li a {
  display: block;
  color: black;
  padding: 0 9px;
  line-height: 3.5em;
}
#main-menu ul.menu > li > .menu {
  /* Primary Navigation sub-menu */
  display: none;
  background: none;
  position: absolute;
  width: 100%;
  left: 0;
  letter-spacing: 1px;
  line-height: 0;
}
#main-menu ul.menu > li > .menu .menu {
  padding-top: 12px;
}
#main-menu ul.menu > li > .menu > li {
  background: url(../assets/main-nav.png) no-repeat;
  background-position: center left;
}
#main-menu ul.menu > li > .menu > li:first-child {
  background: none;
}
#main-menu ul.menu > li > .menu a {
  line-height: 27px;
  padding: 0 14px 0 15px;
}
#main-menu ul.menu .active-trail .menu {
  display: block;
  border-bottom: 1px solid #e0e0e0;
}

.view-world .view-content {
  padding-bottom: 0;
}

/* Main article header */
@media all and (min-width: 840px) {
  h1.title {
    margin-top: 0px;
  }
}

/* Previous/Next Link */
#block-ps-world-prev-next-links {
  top: 40px;
  right: 20px;
  box-sizing: border-box;
}
@media all and (min-width: 840px) {
  #block-ps-world-prev-next-links {
    top: 50px;
  }
}
@media all and (min-width: 990px) {
  #block-ps-world-prev-next-links {
    right: 0;
  }
}
#block-ps-world-prev-next-links a.prev:only-child:before {
  right: 58px !important;
}

#page #content {
  max-width: 100%;
  font-size: 0.75em;
  line-height: 1.5;
  margin: 0 auto;
  padding-top: 60px;
}
@media all and (min-width: 990px) {
  #page #content {
    padding-left: 0;
    padding-right: 0;
  }
}
#page #inner-content {
  max-width: 920px;
  margin: 0 auto 0;
  position: relative;
}

.landing #content #inner-content {
  max-width: 100%;
  margin-top: 17px;
}

.page-collections #content #inner-content {
  margin-top: 55px;
}

.landing #content #inner-content.error-page {
  max-width: 920px;
  margin-top: 0;
}

/* 
* !Footer 
*/
/* Hide Change Language */
#block-ps-core-footer-links {
  width: 550px;
}

.region-footer #block-ps-magento-elements-magento-mobile-language-switcher {
  display: none;
}

body footer ul.links li a {
  color: black;
}

.light footer div > ul.menu li,
.dark footer div > ul.menu li {
  border-top: none;
}


.dark #page footer .menu a {
  color: white !important;
}
.light #page footer .menu a {
  color: black !important;
}
footer ul.menu:first-child {
  display: none;
}
footer #social_links {
  position: absolute;
  right: 0;
  bottom: 20px;
}
footer a {
  color: black;
}
footer #fat_footer {
  max-width: 920px;
  margin: auto;
  border-top: 1px solid #e0e0e0;
  padding-top: 18px;
}
footer #fat_footer aside {
  float: left;
  width: 23%;
  margin-left: 1.5%;
}
footer #fat_footer aside:first-child {
  margin-left: 0;
}
footer #social-links {
  background: none !important;
  float: right;
  position: static;
  margin: 4px 18px 0 0;
  width: auto;
  height: auto;
  padding-bottom: 5px;
}
footer #social-links a {
  width: 21px;
  margin-left: 9px;
  padding-top: 5px;
}
footer #block-ps-core-footer-links {
  position: static;
  float: left;
  margin-left: 18px;
}
footer #block-ps-core-footer-links > span {
  position: static;
  display: block;
  float: left;
  margin-right: 9px;
  line-height: 38px;
}
footer #block-ps-core-footer-links > ul.menu {
  float: left;
  margin: 0;
  top: 0;
}
footer #block-ps-core-footer-links > ul.menu li {
  border-bottom: none;
  padding: 0;
  float: left;
  width: auto;
  background: none;
}
footer #block-ps-core-footer-links > ul.menu li a {
  color: black;
  background: url("../assets/h-list.gif") no-repeat scroll 0 50% transparent;
  display: block;
  line-height: 38px;
  padding: 0 13px;
  width: auto;
}
footer #block-ps-core-footer-links > ul.menu li a:hover {
  text-decoration: underline;
}

/* 
* Paul Smith World 
*/
.field-body {
  padding-top: 10px;
}

.main-column {
  width: 67%;
  margin-right: 3%;
  float: left;
}
.main-column .field-sku {
  /* !Get The Look */
  width: 100%;
  clear: both;
  margin-top: 10px;
}
.main-column .field-sku .products {
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-column .field-sku .products li {
  float: left;
  width: 100%;
  margin-right: 2%;
}
.main-column p {
  padding-top: 0;
  margin-top: 0 !important;
}
.main-column span {
  font-size: 0.9em;
}
.main-column .addthis_toolbox {
  margin: 9px 0;
}

.sidebar {
  width: 29%;
  float: right;
}
.sidebar .addthis_toolbox {
  width: 256px;
  float: right;
}
.sidebar .addthis_toolbox .addthis_button_facebook_like at300b {
  width: 50px;
}
.sidebar .field-sku {
  width: 100%;
}
.sidebar .field-sku li {
  width: 100%;
}
.sidebar .field-logo {
  display: block;
  margin-bottom: 18px;
  padding-top: 9px;
  clear: both;
}
.sidebar .ref-prod {
  margin-top: 36px;
}

.item-row {
  width: 206px;
  margin-left: 18px;
  margin-right: 18px;
  height: 180px;
}
.item-row .video-js {
  width: 206px !important;
  height: 116px !important;
}

/* !Image-led Article */
@media all and (min-width: 550px) {
  .carousel {
    width: 50%;
    float: left;
    margin-right: 2%;
  }
}
/* Image Carousel */
.list_carousel a {
  background: url("../assets/icons-low.png") no-repeat -1150px 0;
  width: 36px;
  height: 108px;
  top: 42%;
}
.list_carousel #prev {
  background-position: -1094px 0;
}

.list_carousel.no_carousel {
  margin-bottom: 20px !important;
}

.page-node h1 {
  font-size: 1.4em;
  margin-bottom: 10px;
}
.page-node .field-sub-title {
  font-size: 1.25em;
  line-height: 1.4em;
  margin: 40px 0 18px;
  clear: both;
}
.page-node .field-body {
  padding: 0;
}
.page-node .view-header {
  border-top: 1px solid #E0E0E0;
}
.page-node .field-sub-title, .page-node .field-body {
  clear: both;
}
.page-node .field-sub-title {
  font-size: 1.65em;
}
.page-node #page-title {
  border-bottom: none;
}

#block-ps-world-prev-next-links {
  max-width: 920px;
  right: auto !important;
  display: block;
}
#block-ps-world-prev-next-links :after {
  display: block;
}
#block-ps-world-prev-next-links .prev:before {
  display: block;
}
#block-ps-world-prev-next-links a {
  padding: 0 0 0 9px;
}
#block-ps-world-prev-next-links a:first-child {
  padding: 0 9px 0 0;
}

/* News Node */
.node-type-news #block-ps-world-prev-next-links {
  position: absolute;
  top: 9px;
  right: 0;
}

/* Image-led Node */
.page-node #content {
  position: relative;
}
.page-node #block-ps-world-prev-next-links {
  position: absolute;
  top: 4.5px;
  right: 0;
}
.page-node .image-led .main-column {
  width: 70% !important;
}
.page-node .image-led .sidebar {
  width: 26%;
  float: left;
}
.touch .page-node .text-led .list_carousel {
  margin-bottom: 36px;
}
.page-node .text-led .main-column {
  margin-right: 18px;
  width: 71%;
}
@media all and (max-width: 970px) {
  .page-node .text-led .main-column {
    width: 100%;
  }
}
@media all and (max-width: 970px) {
  .page-node .text-led .side-bar {
    width: 100%;
    margin-top: 18px;
  }
}
.page-node .text-led .side-bar ul li {
  /* Get the look */
  width: 100%;
}
@media all and (max-width: 970px) {
  .page-node .text-led .side-bar ul li {
    width: 30%;
  }
}
.page-node #page-title {
  padding-bottom: 0px;
}
.page-node .field-sub-title {
  padding-top: 18px;
  margin-top: 0;
}
.page-node .list_carousel {
  float: left;
  margin-bottom: 12px;
}
.page-node .text-content {
  margin-left: 2%;
  width: 25%;
  float: left;
  padding-bottom: 18px;
  margin-bottom: 9px;
}
.page-node .addthis_toolbox {
  clear: both;
  margin-bottom: 3px !important;
}

#social_buttons {
  display: block;
}

/* Collaborations 1 */
.node-type-collaboration .views-row, .node-type-focus .views-row {
  width: 100%;
}
.node-type-collaboration .main-column .product-container, .node-type-focus .main-column .product-container {
  /* Related Products within Collab */
}
.node-type-collaboration .main-column .product-container .products, .node-type-focus .main-column .product-container .products {
  width: 100%;
  padding-top: 18px;
  margin-bottom: 18px;
}
.node-type-collaboration .main-column .product-container .products li, .node-type-focus .main-column .product-container .products li {
  width: 44%;
  margin-left: 9px;
  float: left;
}
.node-type-collaboration .main-column .product-container .products li:first-child, .node-type-focus .main-column .product-container .products li:first-child {
  margin-left: 0;
}
.node-type-collaboration .main-column .product-container .products-count-1 li, .node-type-focus .main-column .product-container .products-count-1 li {
  width: 60%;
  margin-left: 20% !important;
}
.node-type-collaboration .main-column .product-container .products-count-2 li, .node-type-focus .main-column .product-container .products-count-2 li {
  width: 46.5%;
  margin-right: 2%;
}
.node-type-collaboration .main-column .product-container .products-count-3 li, .node-type-focus .main-column .product-container .products-count-3 li {
  width: 30.5%;
  margin-right: 1.5%;
}
.node-type-collaboration .main-column .product-container .products-count-4 li, .node-type-focus .main-column .product-container .products-count-4 li {
  width: 22%;
  margin-right: 1%;
}

.section-paul-smith-world h1 {
  padding-top: 0;
}
.section-paul-smith-world #page #content {
  padding-top: 20px;
  margin-bottom: 40px;
}
.section-paul-smith-world #block-ps-world-prev-next-links {
  top: 33px;
}
.section-paul-smith-world .addthis_toolbox {
  display: none;
}



/* FB Comment Box */
.fb-comments {
  max-width: 535px;
}

.fb-comments iframe, #fb-root iframe {
  width: 100% !important;
  margin: 20px auto;
}

.page-user #inner-content {
  width: 920px;
  margin: auto;
}

#social_links {
  position: absolute;
  right: 0;
  bottom: 20px;
}

.section-paul-smith-world.page-node #content #inner-content {
  padding-top: 24px;
}

a[data-pin-aha="button_pinit"] {
  right: -70px;
  top: -4px;
}

/* Sitemap */
body.section-sitemap #page #inner-content {
  max-width: 920px;
  padding: 0;
}
body.section-sitemap #page #inner-content h1 {
  border-bottom: 1px solid #f3f3f3;
  padding-bottom: 8px;
  margin-bottom: 20px;
  text-transform: capitalize;
  font-size: 1.636363636em;
}
body.section-sitemap #site-map .site-map-box .content .site-map-menu li {
  font-size: 0.91666667em;
  text-align: left;
  float: left;
  width: 19.130435%;
}
body.section-sitemap #site-map .site-map-box .content .site-map-menu li li {
  width: auto;
  font-size: 100%;
  float: none;
}

.hide-for-mobile {
  display: block !important;
}

.caroufredsel_wrapper {
  max-height: 518px;
}

#block-ps-world-prev-next-links .prev:before {
  right: 115px !important;
}
