﻿@charset "UTF-8";
.js #page-wrapper {
    opacity: 0;
    transition: opacity 0.25s;
}
.js #page-wrapper.mobile-loaded {
    opacity: 1;
}
.js #page-wrapper.tablet-loaded {
    opacity: 1;
}
.js #page-wrapper.wide-loaded {
    opacity: 1;
}
.home {
    min-width: 320px;
}
#top-measure {
    position: fixed;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
}
#bottom-measure {
    position: fixed;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;  
}

/* -- Mobile ------------------------------------------------------------------------------ */
/* ---------------------------------------------------------------------------------------- */


/* -- Mobile - Header ------------------ */

#main-header {
    position: absolute;
    width: 100%;
    height: 150px;
    overflow: hidden;
    min-width: 320px;
    top: 0;
    z-index: 20;
}
#main-header.sticky {
    position: fixed;
    top: -90px;
}
#main-header .bg {
    width: 100%;
    height: 150px;
    background-color: #ffffff;
    position: absolute;
    top: 0;
}
#main-header .left {
    right: 50%;
    margin-right: 64px;
}
#main-header .right {
    left: 50%;
    margin-left: 64px;
}
#main-header .upper-left {
    width: 50%;
    height: 150px;
    position: absolute;
    left: 0;
    top: 0;
    overflow: hidden;
    margin-left: -60px;
}
#main-header .upper-left .inner {
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    position: absolute;
    top: 0;
    left: 0;
    transition: left 0.25s;
}
#main-header .upper-left .inner.shift {
    left: 100%;
}
#main-header .logo {
    width: 130px;
    height: 60px;
    position: absolute;
    left: 50%;
    bottom: -60px;
    margin-left: -65px;
    transition: bottom 0.25s;
}
#main-header .logo .black-tint {
    width: 100%;
    height: 100%;
    background: #000;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0.4;
}
#main-header .logo .logo-img {
    width: 100%;
    height: 100%;
    background: url(../images/rs-logo.png);
    position: absolute;
    left: 0;
    top: 0;
}
#main-header.sticky .logo {
    bottom: 0;
}
#main-header .home-logo {
    width: 130px;
    height: 150px;
    position: absolute;
    left: 50%;
    bottom: 0;
    margin-left: -65px;
    transition: bottom 0.25s;
}
#main-header .home-logo .black-tint {
    width: 130px;
    height: 150px;
    background: #000;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0.4;
}
#main-header .home-logo .logo-img {
    width: 130px;
    height: 150px;
    background: url(../images/rs-home-logo.png);
    position: absolute;
    left: 0;
    top: 0;
}
#main-header.sticky .home-logo {
    bottom: 60px;
}
#main-header .button {
    opacity: 1;
    transition: opacity 0.25s;
    cursor: pointer;
}
#main-header .button.fade {
    opacity: 0.1;
}
#main-header .button.fade-completely {
    opacity: 0;
}
#main-header .button.active {
    opacity: 1 !important;
}
#main-header .menu-btn {   
    background: url(../images/menu-icon.png);
    width: 24px;
    height: 24px;
    position: absolute;
    left: 18px;
    bottom: 18px;
}
#main-header .menu-btn:hover {   
    opacity:0.4;
}
#main-header .search-btn {
    background: url(../images/search-icon.png);
    width: 25px;
    height: 25px;
    position: absolute;
    right: 17px;
    bottom: 18px;
}
#main-header .search-btn.active {
    opacity: 1 !important;
}
#main-header .az-btn {
    background: url(../images/azlogo.png);
    width: 24px;
    height: 24px;
    bottom: 18px;
    right: 17px;
    right: 60px;
    position: absolute;
} 

/* -- Mobile - Main Menu --------------- */

#primary-nav {
    position: fixed;
    width: 100%;
    height: 100%;
    min-width: 320px;
    top: 0;
    left: -120%;
    z-index: 50;
    transition: left 0.25s;
}
#primary-nav.active {
    left: -60px;
}
#primary-nav.no-transition {
    transition: none;
}
#primary-nav .shadow {
    width: 10px;
    position: absolute;
    top: -60px;
    bottom: 0;
    right: -10px;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0) 100%);
}
#primary-nav > .inner {
    position: absolute;
    top: 0;
    left: 60px;
    bottom: 0;
    right: 0;
    overflow: hidden;
}
#primary-nav .main-menu {
    background-color: rgba(242, 240, 236, 0.95);
    position: absolute;
    width: 100%;
    top: 60px;
    bottom: 0;
    left: 0;
    transition: left 0.25s;
}
#primary-nav .main-menu.shift {
    left: -100%;
}
#primary-nav .main-menu .header {
    width: 100%;
    height: 60px;
    position: absolute;
    overflow: hidden;
    left: 0;
    top: -60px;
}
#primary-nav .header .bg {
    width: 100%;
    height: 60px;
    background-color: #ffffff;
    position: absolute;
}
#primary-nav .main-menu .header .left {
    right: 100%;
    margin-right: -8px;
}
#primary-nav .main-menu .header .right {
    left: 137px;
}
#primary-nav .main-menu .header .logo {
    width: 130px;
    height: 60px;
    position: absolute;
    left: 7px;
    top: 0;
}
#primary-nav .main-menu .header .logo .black-tint {
    width: 130px;
    height: 60px;
    background: #000;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0.4;
}
#primary-nav .main-menu .header .logo .logo-img {
    width: 130px;
    height: 60px;
    background: url(../images/rs-logo.png);
    position: absolute;
    left: 0;
    top: 0;
}
#primary-nav .header .close-cross {
    width: 25px;
    height: 25px;
    background: url(../images/menu-close-cross.png);
    position: absolute;
    top: 17px;
    right: 18px;
    cursor: pointer;
}
#primary-nav .main-menu .links {
    margin: 10px 18px;
    padding: 0;
    list-style: none; 
}
#primary-nav .main-menu .links li {
    height: 30px;
    margin: 0;
    position: relative;
    cursor: pointer;
    font-weight:500;
    font-family:'Brandon Grotesque W01'; 
    font-style:normal; 
    font-size:17px;
    color:#000; 
    padding:3px 0 0 0;
    text-transform:uppercase;  
}
#primary-nav .main-menu .links li:hover {  
        opacity:0.6;
}
#primary-nav .main-menu .links .chevron {
    width: 9px;
    height: 100%;
    background: url(../images/chevron-right-menu.png) right center no-repeat;
    background-size: 8px 14px;
    position: absolute;
    right: 0;
    top:0;
}
/*#primary-nav .main-menu .links .link-women {
    background: url(../images/women-txt.png) left center no-repeat;
    background-size: 66px 12px;
}
#primary-nav .main-menu .links .link-men {
    background: url(../images/men-txt.png) left center no-repeat;
    background-size: 37px 12px;
}
#primary-nav .main-menu .links .link-children {
    background: url(../images/children-txt.png) left center no-repeat;
    background-size: 84px 12px;
}
#primary-nav .main-menu .links .link-hometech {
    background: url(../images/hometech-txt.png) left center no-repeat;
    background-size: 185px 12px;
}
#primary-nav .main-menu .links .link-beauty {
    background: url(../images/beauty-txt.png) left center no-repeat;
    background-size: 62px 12px;
}
#primary-nav .main-menu .links .link-eatdrink {
    background: url(../images/eatdrink-txt.png) left center no-repeat;
    background-size: 99px 12px;
}
#primary-nav .main-menu .links .link-hotels {
    background: url(../images/hotels-txt.png) left center no-repeat;
    background-size: 159px 12px;
}*/
@media (min-width: 375px) {
     
    #primary-nav .main-menu .links li {
        height: 30px;   
        font-size:18px;
        padding:2px 0 0 0;
    }
    #primary-nav .main-menu .links li .chevron {
        background-size: 9px 16px;
    }
    /*#primary-nav .main-menu .links .link-women {
        background-size: 77px 14px;
    }
    #primary-nav .main-menu .links .link-men {
        background-size: 43px 14px;
    }
    #primary-nav .main-menu .links .link-children {
        background-size: 98px 14px;
    }
    #primary-nav .main-menu .links .link-hometech {
        background-size: 216px 14px;
    }
    #primary-nav .main-menu .links .link-beauty {
        background-size: 72px 14px;
    }
    #primary-nav .main-menu .links .link-eatdrink {
        background-size: 116px 14px;
    }
    #primary-nav .main-menu .links .link-hotels {
        background-size: 186px 14px;
    }*/
}

/* -- Mobile - Menu Women -------------- */

#primary-nav .menu-sub {
    background-color: rgba(242, 240, 236, 0.95);
    position: absolute;
    width: 100%;
    top: 60px;
    bottom: 0;
    left: 100%;
    transition: left 0.25s; 
}
#primary-nav .menu-sub.shift {
    left: 0;   
}
#primary-nav .menu-sub .header {
    width: 100%;
    height: 60px;
    position: absolute;
    overflow: hidden;
    left: 0;
    top: -60px;
    background-color: #ffffff;
}
#primary-nav .header .return-btn {
    cursor: pointer;
    width: 14px;
    height: 25px;
    background: url(../images/chevron-left-subnav.png);
    position: absolute;
    left: 18px;
    top: 17px;
}
#primary-nav .menu-sub .header .header-women {
    width: 170px;
    height: auto;  
    position: absolute;
    left: 50%;
    top: 18px;
    margin-left: -85px; 
    font-family: "Brandon Grotesque W01";
    font-size: 15px;
    font-style: normal;
    font-weight: 700;  
    text-align:center; 
}
#primary-nav .menu-sub .links {
    margin: 10px 18px;
    padding: 0;
    list-style: none;
}
#primary-nav .menu-sub .links li {
    height: 30px;
    margin: 0;
    position: relative;
    cursor: pointer;
    font-weight:500;
    font-family:'Brandon Grotesque W01'; 
    font-style:normal; 
    font-size:17px;
    color:#000; 
    padding:3px 0 0 0;
    text-transform:uppercase; 
}
#primary-nav .menu-sub .links li:hover {  
        opacity:0.6;
}
#primary-nav .menu-sub .links li a{
    width:100%;
    height:100%;
    text-decoration:none;
    display:block; 
}
#primary-nav .menu-sub .links li .chevron {
    width: 9px;
    height: 100%;
    background: url(../images/chevron-right-menu.png) right center no-repeat;
    background-size: 8px 14px;
    position: absolute;
    right: 0;  
    top:0;
}
/*#primary-nav .menu-sub .links .link-fashion {
    background: url(../images/fashion-txt.png) left center no-repeat;
    background-size: 72px 12px;
}
#primary-nav .menu-sub .links .link-accessories {
    background: url(../images/accessories-txt.png) left center no-repeat;
    background-size: 113px 12px;
}
#primary-nav .menu-sub .links .link-footwear {
    background: url(../images/footwear-txt.png) left center no-repeat;
    background-size: 92px 12px;
}
#primary-nav .menu-sub .links .link-jewellery {
    background: url(../images/jewellery-txt.png) left center no-repeat;
    background-size: 92px 12px;
}
#primary-nav .menu-sub .links .link-bags {
    background: url(../images/bags-txt.png) left center no-repeat;
    background-size: 41px 12px;
}
#primary-nav .menu-sub .links .link-watches {
    background: url(../images/watches-txt.png) left center no-repeat;
    background-size: 78px 12px;
}
#primary-nav .menu-sub .links .link-sportswear {
    background: url(../images/sportswear-txt.png) left center no-repeat;
    background-size: 110px 12px;
}
#primary-nav .menu-sub .links .link-outdoors {
    background: url(../images/outdoors-txt.png) left center no-repeat;
    background-size: 94px 12px;
}*/
@media (min-width: 375px) {
    #primary-nav .menu-sub .header .header-women {
        width: 201px;
        height: auto; 
        top: 16px;
        margin-left: -100px; 
        text-align:center;
        font-size:18px;
    }
    #primary-nav .menu-sub .links li {
        height: 30px;
        font-size:18px;
        padding:2px 0 0 0;
    } 
    #primary-nav .menu-sub .links li .chevron {
        background-size: 9px 16px;
    }
    /*#primary-nav .menu-sub .links .link-fashion {
        background-size: 84px 14px;
    }
    #primary-nav .menu-sub .links .link-accessories {
        background-size: 132px 14px;
    }
    #primary-nav .menu-sub .links .link-footwear {
        background-size: 107px 14px;
    }
    #primary-nav .menu-sub .links .link-jewellery {
        background-size: 107px 14px;
    }
    #primary-nav .menu-sub .links .link-bags {
        background-size: 48px 14px;
    }
    #primary-nav .menu-sub .links .link-watches {
        background-size: 91px 14px;
    }
    #primary-nav .menu-sub .links .link-sportswear {
        background-size: 128px 14px;
    }
    #primary-nav .menu-sub .links .link-outdoors {
        background-size: 110px 14px;
    }*/
}
#primary-nav .menu-sub .brand-links {
	width: 100%;
	padding: 18px 14px;   
}
#primary-nav .menu-sub .brand-links ul {
	margin: 0;
	padding: 0;
	list-style: none;
	width: 100%;
}
#primary-nav .menu-sub .brand-links li {
	margin: 0 0 8px;
	width: 33.33%;
	padding: 0 4px;
	float: left;
}
#primary-nav .menu-sub .brand-links ul li a {
	position: relative;
	width: 100%;
	height: 0;
	display: block;
	padding-bottom: 74%;
	background-color: #fff;
}
#primary-nav .menu-sub .brand-links li img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
}
#primary-nav .menu-sub .brand-links li:hover span {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
    background:#000;
    opacity: 0.1;
}
#primary-nav .menu-sub .article-links {
    display: none;
}

/* -- Mobile - Secondary Nav --------- */

#secondary-nav {
    width: 100%;
    min-width: 320px;
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 60;
    left: -120%;
    z-index: 60;
    transition: left 0.25s;
    -webkit-transform: translate3d(0, 0, 0);
}
#secondary-nav.lheight {
    top: 260px; 
    bottom: auto;
}
#secondary-nav.no-transition {
    transition: none;
}
#secondary-nav.active {
    left: -60px;
}
#secondary-nav .inner {
    position: absolute;
    bottom: 0;
    left: 60px;
    right: 0;
}
#secondary-nav .menu-global {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: #fff;
    transition: left 0.25s;
}
#secondary-nav .menu-global.shift {
    left: -100%;
}
#secondary-nav .links {
    margin: 0;
    padding: 10px 18px;
    list-style: none; 
}
#secondary-nav .links li {
    height: 30px;
    margin: 0;
    position: relative; 
    font-weight:400;
    font-family:'Brandon Grotesque W01'; 
    font-style:normal; 
    font-size:17px;
    color:#000; 
    padding:3px 0 0 0;
    text-transform:uppercase;
    box-sizing:border-box;
}
#secondary-nav .links li a {
    text-decoration: none;
    float:left;
    width:100%;
    height:100%;
}
#secondary-nav .links li .chevron {
    width: 9px;
    height: 100%;
    background: url(../images/chevron-right-secondary-nav.png) left center no-repeat;
    background-size: 8px 14px;
    position: absolute;
    right: 0;
    top:0;
}
/*#secondary-nav .links .link-events {
    background: url(../images/events-txt.png) left center no-repeat;
    background-size: 60px 12px;
}
#secondary-nav .links .link-articles {
    background: url(../images/articles-txt.png) left center no-repeat;
    background-size: 75px 12px;
}
#secondary-nav .links .link-about {
    background: url(../images/about-txt.png) left center no-repeat;
    background-size: 188px 12px;
}
#secondary-nav .links .link-gethere {
    background: url(../images/gethere-txt.png) left center no-repeat;
    background-size: 149px 12px;
}*/
#secondary-nav .social-icons {
    padding: 0 18px 14px;
    margin: 0;
    list-style: none;
    text-align: justify;
    font-size: 0.1px;
}
#secondary-nav .social-icons li {
    height: 20px;
    display: inline-block;
}
#secondary-nav .social-icons li a{
    height: 20px;
    display: inline-block;
}
#secondary-nav .social-icons:after {
    content: '';
    width: 100%; /* Ensures there are at least 2 lines of text, so justification works */
    display: inline-block;
}
#secondary-nav .social-icons .facebook-icon {
    width: 15px;
    background: url(../images/facebook-icon-lh.png) center center no-repeat;
    background-size: contain;
}
#secondary-nav .social-icons .twitter-icon {
    width: 29px;
    background: url(../images/twitter-icon-lh.png) center center no-repeat;
    background-size: contain;
}
#secondary-nav .social-icons .instagram-icon {
    width: 24px;
    background: url(../images/instagram-icon-lh.png) center center no-repeat;
    background-size: contain;
}
#secondary-nav .social-icons .pinterest-icon {
    width: 27px;
    background: url(../images/pinterest-icon-lh.png) center center no-repeat;
    background-size: contain;
}
#secondary-nav .social-icons .youtube-icon {
    width: 25px;
    background: url(../images/youtube-icon-lh.png) center center no-repeat;
    background-size: contain;
}
#secondary-nav .social-icons .googleplus-icon {
    width: 27px;
    background: url(../images/googleplus-icon-lh.png) center center no-repeat;
    background-size: contain;
}
#secondary-nav .social-icons .weibo-icon {
    width: 33px;
    background: url(../images/weibo-icon-lh.png) center center no-repeat;
    background-size: contain;
}
#secondary-nav .social-icons .wechat-icon {
    width: 33px;
    background: url(../images/wechat-icon-lh.png) center center no-repeat;
    background-size: contain;
}
@media (min-width: 375px) {
    #secondary-nav .links li {
        height: 30px; 
        font-size:18px;
        padding:2px 0 0 0;
    } 
    #secondary-nav .links li .chevron {
        background-size: 9px 16px;
    }
    /*#secondary-nav .links .link-events {
        background-size: 70px 14px;
    }
    #secondary-nav .links .link-articles {
        background-size: 87px 14px;
    }
    #secondary-nav .links .link-about {
        background-size: 219px 14px;
    }
    #secondary-nav .links .link-gethere {
        background-size: 174px 14px;
    }*/
    #secondary-nav .social-icons {
        padding: 0 18px 18px;
    }
    #secondary-nav .social-icons li {
        height: 30px;
    }
    #secondary-nav .social-icons li a{
        height: 30px; 
    }
}

/* -- Mobile - Search Bar ------------ */

#search-bar {
    height: 0;
    position: absolute;
    left: 0;
    right: 0;
    top: 150px;
    z-index: 40;
    overflow: hidden;
    transition: height 0.25s;
}
#search-bar .inner {
    width: 100%;
    height: 100%;
    background-color: rgba(241, 238, 234, 0.95);
}
#search-bar.active {
    height: 60px;
}
#search-bar.sticky {
    position: fixed;
    top: 60px;
}
#search-bar .search-text {
    width: 100%;
    height: 60px; 
    position: absolute;
    left: 0;
    border:0px;
    top: auto; 
    bottom: 0; 
    background:transparent;
    font-family:'Brandon Grotesque W01'; 
    font-weight:300; 
    font-style:normal;
    font-size:22px;
    padding:0 20px 0 20px;
    outline:none;
}
#search-bar .chevron {
    width: 9px;
    height: 16px;
    background: url(../images/chevron-right-search.png);
    position: absolute;
    right: 18px;
    bottom: 22px; 
    z-index:99;
}

/* -- Mobile - Scroll Down Button ----- */

#scroll-down-btn {
    width: 100px;
    height: 44px;
    position: fixed;
    left: 50%;
    bottom: -44px;
    margin-left: -50px;
    background: url(../images/scroll-down-btn.png);
    transition: bottom 0.25s;
    z-index: 40;
    cursor: pointer;
}
@media (min-width: 375px) {
    #scroll-down-btn.sticky {
        bottom: 0;
    }
}

/* -- Mobile - Page Nav ---------------- */

#page-nav {
    display: none;
}
 
/* -- Mobile - Features ---------------- */

.feature {
    width: 100%;
    height: 560px;
    margin-bottom: 4px;
    position: relative; 
    float:left;
}
.feature > .inner {
        height: 100%;
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
    }
.feature .bgImage {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
.feature .bgImage.wide {
    display: none;
}
.feature .wide {
    display: none;
} 
.feature .overlay-box {
    width: 285px;
    height: 285px;
    position: absolute;
    left: 50%;
    margin-left: -143px;
    border-radius: 100%; display: table; text-align: center;cursor:pointer;
}
.nlayout-top .overlay-box {
    top: 30px;
}
.nlayout-bottom .overlay-box {
    bottom: 30px;
}
.nlayout-middle .overlay-box {
    bottom: 138px;
} 

/* -- Mobile - Social Feed ------------- */

#social-feed h3 {
    margin: 0;
    width: 100%;
    height: 80px;
    background: url(../images/rs-social-title.png) center center no-repeat;
    background-color: #f7f6f4;
}
#social-feed {
    margin-top: -5px;
}
#social-feed .social-post {
    width: 50%;
    padding-bottom: 50%;
    height: 0;
    overflow: hidden;
    float: left;
    position: relative;
    background-color: #ffffff;
}
#social-feed .social-post.image-post {
    background-size: cover;
}
#social-feed .social-post.tweet {
    background-size: 160px 160px;
}
#social-feed .social-post:nth-of-type(4n-2) {
    background-color: #f2f0ec;
}
#social-feed .social-post:nth-of-type(4n-1) {
    background-color: #f2f0ec;
}
#social-feed .social-post.layout4Col {
    display: none;
}
#social-feed .see-more {
    width: 50%;
    height: 0;
    padding-bottom: 50%;
    float: left;
    background: url(../images/see-more-btn.png) center center no-repeat;
    background-color: #305d76;
}
#social-feed .social-post .text {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    padding: 10px;
    z-index:15;
}
#social-feed .social-post .text .center-v {
    display: table;
    width: 100%;
    height: 100%;
}
#social-feed .social-post .text .center-v .inner {
    display: table-cell;
    vertical-align: middle;
}
#social-feed .social-post .text h4 {
    font-size: 12px;
    margin: 0 0 1em;
}
#social-feed .social-post .text p {
    font-size: 11px;
    margin: 0 0 1em;
    line-height: 1.3
}
#social-feed .social-post .text p a {
    text-decoration: none;
    color: #4482a6;
}
#social-feed .social-post .icon {
    width: 30px;
    height: 30px;
    position: absolute;
    top: 10px;
    right: 10px;
    z-index:15;
}
#social-feed .social-post .actions {
    width: 69px;
    height: 14px; 
    position: absolute;
    left: 10px;
    bottom: 10px;
}
#social-feed .social-post .time {
    width: auto;
    height: 13px; 
    position: absolute;
    right: 10px;
    bottom: 10px;
}
#social-feed .tweet .icon {
    background: url(../images/twitter-icon.png);
}
/*#social-feed .instagram {
    background: url(../images/instagram.png);
}*/
#social-feed .instagram .icon {
    background:url(../images/instagram-icon.png);
}
/*#social-feed .youtube {
    background:url(../images/youtube-img.png);
}*/
#social-feed .youtube .icon {
    background: url(../images/youtube-icon.png);
}
/*#social-feed .facebook {
    background:url(../images/facebook-img.png);
}*/
#social-feed .facebook .icon {
    background: url(../images/facebook-icon.png);
}


@media (min-width: 400px) {
    #social-feed .social-post .text {
        padding: 15px;
    }
    #social-feed .social-post .text h4 {
        font-size: 14px;
    }
    #social-feed .social-post .text p {
        font-size: 13px;
    }
    #social-feed .social-post .icon {
        top: 15px;
        right: 15px;
    }
    #social-feed .social-post .actions {
        left: 15px;
        bottom: 15px;
    }
    #social-feed .social-post .time {
        right: 15px;
        bottom: 15px;
    }

}
@media (min-width: 560px) {
    #social-feed .social-post {
        width: 33.33%;
        padding-bottom: 33.33%;
    }
    #social-feed .social-post:nth-of-type(2n) {
        background-color: #f2f0ec;
    }
    #social-feed .social-post:nth-of-type(4n-1) {
        background-color: #ffffff;
    }
    /*#social-feed .social-post:nth-of-type(4n-2) {
        background-color: #ffffff;
    }
    #social-feed .social-post:nth-of-type(4n-1) {
        background-color: #ffffff;
    }
    #social-feed .social-post:nth-of-type(6n-4) {
        background-color: #f2f0ec;
    }
    #social-feed .social-post:nth-of-type(6n-2) {
        background-color: #f2f0ec;
    }
    #social-feed .social-post:nth-of-type(6n) {
        background-color: #f2f0ec;
    }*/
    #social-feed .see-more {
        width: 33.33%;
        padding-bottom: 33.33%;
    }

}
 
/* -- Tablet ------------------------------------------------------------------------------ */
/* ---------------------------------------------------------------------------------------- */


@media (min-width: 760px) {
    #top-measure, #bottom-measure {
        display: none;
    }
    
    /* -- Tablet - Header ------------------ */
    
    #main-header {
        position: absolute;
        overflow: visible;
        height: auto;
        z-index: 70;
    }
    #main-header.sticky {
        position: fixed;
        top: -25px;
    }
    #main-header .upper-left, #main-header .bg {
        display: none;
    }
    #main-header .logo {
        position: fixed;
        left:0;
        margin-left: 0;
        top: 0px;
        width: 105px;
        height: 151px;
    }
    #main-header .logo .logo-img {
        background: url(../images/rs-logo-tablet.png);
        background-size: cover;
        transition: none;
    }
    #main-header .home-logo {
        display: none;
    }
    #main-header .menu-btn {
        display: none;
    }
    #main-header .search-btn {
        top: 38px;
    }
    #main-header .search-btn.fade {
        opacity: 0.3;
    }
    #main-header .az-btn {
        top: 38px;
    }
    #main-header .az-btn.fade {
        opacity: 0.3;
    }
    
    /* -- Tablet - Main Menu ------------------ */
    
    #primary-nav {
        width: 100%;
        height: auto;
        position: absolute;
        left: 0;
        top: 25px;
        min-width: 0;
        bottom: auto;
        z-index: 50;
        transition: none;
    }
    #primary-nav.sticky {
        position: fixed;
        top: 0;
    }
    #primary-nav .shadow {
        display: none;
    }
    #primary-nav > .inner {
        position: absolute;
        top: 0;
        left: 105px;
        height: 50px;
        right: 0;
        bottom: auto;
        overflow: visible;
    }
    #primary-nav .main-menu {
        background-color: #ffffff;
        position: relative;
        width: 100%;
        height: 100%;
        top: 0;
        bottom: auto;
        left: 0;
        transition: none;
    }
    #primary-nav .main-menu .header {
        display: none;   
    }
    #primary-nav .main-menu .links {
        width: 100%;
        position: absolute;
        left: 0;
        margin: 0;
        padding: 0 100px 0 20px;
        /*padding: 0 105px 0 20px;*/
        font-size: 1px;
        text-align: justify;
    }
    #primary-nav .main-menu .links li {
        display: inline-block;
        position: relative;
        height: 50px;
        transition: opacity 0.25s;
        font-size: 10.5px;  
        padding: 19px 0 0 0;  
        width:auto;
    } 
    #primary-nav .main-menu .links:after {
        content: '';
        width: 100%;
        display: inline-block;
    }
    #primary-nav .main-menu .links li.fade {
        opacity: 0.3;
    }
    #primary-nav .main-menu .links li .chevron {
        display: none;
    }
    /*#primary-nav .main-menu .links .link-women {
        width: 40px;
        background-size: contain;
    }
    #primary-nav .main-menu .links .link-men {
        width: 22px;
        background-size: contain;
    }
    #primary-nav .main-menu .links .link-children {
        width: 51px;
        background-size: contain;
    }
    #primary-nav .main-menu .links .link-hometech {
        width: 111px;
        background-size: contain;
    }
    #primary-nav .main-menu .links .link-beauty {
        width: 37px;
        background-size: contain;
    }
    #primary-nav .main-menu .links .link-eatdrink {
        width: 60px;
        background-size: contain;
    }
    #primary-nav .main-menu .links .link-hotels {
        width: 97px;
        background-size: contain;
    }*/
    
    /* -- Tablet - Menu Women ------------------ */
    
    #primary-nav .menu-sub {
        background: transparent;
        top: 50px;
        height: 0;
        bottom: auto;
        left: -105px;
        right: 0;
        width: auto;
        transition: height 0.25s;
        overflow: hidden;
    }
    #primary-nav .menu-sub.active {
        height: 101px;
    }
    #primary-nav .menu-sub > .inner {
        background-color: rgba(242, 240, 236, 0.95);
        position: absolute;
        left: 105px;
        top: 0;
        height: 100%;
        right: 0;
    }
    #primary-nav .menu-sub .header {
        display: none;
    }
    #primary-nav .menu-sub .bg-left {
        background-color: rgba(242, 240, 236, 0.95);
        width: 105px;
        position: absolute;
        left: 0;
        top: 42px;
        bottom: 0;
    }
    #primary-nav .menu-sub .links {
        margin: 0;
        position: absolute;
        left: 20px;
        bottom: 6px;
    }
    #primary-nav .menu-sub .links .column {
        float: left;
        width: 90px;
    }
    #primary-nav .menu-sub .links li {
        height: auto;
        width: 70px;
        margin: 0 20px 9.5px 0; 
        font-size: 10px;
        padding: 0 0 0;
        line-height:1;
    }
    /*#primary-nav .menu-sub .links .link-fashion {
        background-size: 44px 7px;
    }
    #primary-nav .menu-sub .links .link-accessories {
        background-size: 68px 7px;
    }
    #primary-nav .menu-sub .links .link-footwear {
        background-size: 55px 7px;
    }
    #primary-nav .menu-sub .links .link-jewellery {
        background-size: 55px 7px;
    }
    #primary-nav .menu-sub .links .link-bags {
        background-size: 24px 7px;
    }
    #primary-nav .menu-sub .links .link-watches {
        background-size: 46px 7px;
    }
    #primary-nav .menu-sub .links .link-sportswear {
        background-size: 64px 7px;
    }
    #primary-nav .menu-sub .links .link-outdoors {
        background-size: 55px 7px;
    }*/
    #primary-nav .menu-sub .links li .chevron {
        display: none;
    }
    #primary-nav .menu-sub .thumb-links {
        position: absolute;
        height: 84px;
        bottom: 12px;
        right: 18px;
    }
    #primary-nav .menu-sub .brand-links {
        width: 162px;
        float: left;
        padding: 0;
    }
    #primary-nav .menu-sub .brand-links ul {
        margin: 0;
        padding: 0;
        list-style: none;
        width: auto;
    }
    #primary-nav .menu-sub .brand-links li {
        margin: 8px 0 0 8px;
        width: 46px;
        height: 34px;
        padding: 0;
        float: left;
    }
    #primary-nav .menu-sub .brand-links ul li a {
        position: relative;
        width: 100%;
        height: 100%;
        display: block;
        padding-bottom: 0;
        background-color: #fff;
    }
    #primary-nav .menu-sub .brand-links li img {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
    }
    #primary-nav .menu-sub .article-links {
        display: block;
        position: relative;
        width: auto;
        float: left;
    }
    #primary-nav .menu-sub .article-links ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    #primary-nav .menu-sub .article-links li {
        width: 109px;
        height: 76px;
        margin: 8px 0 0 12px;
        float: left;
    }
    #primary-nav .menu-sub .article-links li:nth-of-type(3) {
        display: none;
    }
    #primary-nav .menu-sub .article-links li img {
        width: 100%;
    }
    
    /* -- Tablet - Secondary Nav ------------------ */
    
    #secondary-nav {
        width: 100%;
        position: absolute;
        left: 0;
        bottom: auto;
        top: 0;
        height: 25px;
        transition: none;
    }
    #secondary-nav .inner {
        left: 105px;
        height: 100%;
        right: 0;
        top: 0;
        bottom: auto;
        overflow: hidden;
    }
    #secondary-nav .menu-global {
        background-color: rgba(10,10,10, 0.4);
        transition: none;
        width: 100%;
        height: 100%;
        top: 0;
        bottom: auto;
        left: 0;
        transition: none;
    }
    #secondary-nav .menu-global .links {
        width: 100%;
        position: absolute;
        left: 0;
        margin: 0;
        padding: 5px 180px 5px 0;
        font-size: 1px;
        text-align: right;
    }
    #secondary-nav .menu-global .links li {
        display: inline-block;
        position: relative;
        height: auto;
        margin-left: 6%;
        transition: opacity 0.25s; 
        font-size:10px;
        color:#fff;
        padding: 0 0 0;
    }
    #secondary-nav .menu-global .links li:hover {
        opacity:0.6;
    }
    #secondary-nav .menu-global .links li a{ 
        color:#fff;
    }
    #secondary-nav .menu-global .links li.fade {
        opacity: 0.3;
    }
    #secondary-nav .menu-global .links:after {
        content: '';
        width: 100%;
        display: inline-block;
    }
    /*#secondary-nav .menu-global .links .link-events {
        width: 34px;
        background: url(../images/events-txt-white.png) left top no-repeat;
        background-size: contain;
    }
    #secondary-nav .menu-global .links .link-articles {
        width: 42px;
        background: url(../images/articles-txt-white.png) left top no-repeat;
        background-size: contain;
    }
    #secondary-nav .menu-global .links .link-about {
        width: 109px;
        background: url(../images/about-txt-white.png) left top no-repeat;
        background-size: contain;
    }
    #secondary-nav .menu-global .links .link-gethere {
        width: 84px;
        background: url(../images/gethere-txt-white.png) left top no-repeat;
        background-size: contain;
    }*/
    #secondary-nav .menu-global .links li .chevron {
        display: none;
    }
    #secondary-nav .menu-global .social-icons {
        width: 140px;
        position: absolute;
        top: 0;
        right: 18px;
        height: 100%;
        padding: 5px 0;
    }
    #secondary-nav .social-icons li {
        height: 13px;
        transition: opacity 0.25s;
    }
    #secondary-nav .social-icons li a{
        height: 13px;
        transition: opacity 0.25s;
    }
    #secondary-nav .social-icons li.fade {
        opacity: 0.5;
    }
    #secondary-nav .social-icons .facebook-icon {
        width: 7px;
        background: url(../images/facebook-white.png) center center no-repeat;
        background-size: contain;
    }
    #secondary-nav .social-icons .twitter-icon {
        width: 12px;
        background: url(../images/twitter-white.png) center center no-repeat;
        background-size: contain;
    }
    #secondary-nav .social-icons .instagram-icon {
        width: 11px;
        background: url(../images/instagram-white.png) center center no-repeat;
        background-size: contain;
    }
    #secondary-nav .social-icons .pinterest-icon {
        width: 12px;
        background: url(../images/pinterest-white.png) center center no-repeat;
        background-size: contain;
    }
    #secondary-nav .social-icons .youtube-icon {
        width: 11px;
        background: url(../images/youtube-white.png) center center no-repeat;
        background-size: contain;
    }
    #secondary-nav .social-icons .googleplus-icon {
        width: 12px;
        background: url(../images/googleplus-white.png) center center no-repeat;
        background-size: contain;
    }
    #secondary-nav .social-icons .weibo-icon {
        width: 14px;
        background: url(../images/weibo-white.png) center center no-repeat;
        background-size: contain;
    }
    #secondary-nav .social-icons .wechat-icon {
        width: 14px;
        background: url(../images/wechat-white.png) center center no-repeat;
        background-size: contain;
    }
    
    /* -- Tablet - Search Bar ------------------ */
    
    #search-bar {
        top: 75px;
        left: 105px;
        cursor: text;
        z-index: 30;
    }
    #search-bar.sticky {
        position: fixed;
        top: 50px;
    }
    #search-bar.active {
        height: 50px;
    }
    #search-bar .search-text {
        width: 100%;
        height: 50px;
        background-size: contain; 
    }
    #search-bar .chevron {
        width: 8px;
        height: 14px;
        background-size: contain;
        bottom: 18px;
    }
    
    /* -- Tablet - Page Nav ------------------ */
    
    #page-nav {
        display: block;
        width: 10px;
        position: fixed;
        top: 0;
        right: -10px;
        bottom: 0;
        transform-style: preserve-3d;
        z-index: 50;
        transition: right 0.25s;
    }
    #page-nav.active {
        right: 20px;
    }
    #page-nav .inner {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
    }
    #page-nav .inner .circle {
        float: left;
        margin: 5px 0;
        width: 10px;
        height: 10px;
        border: 1px solid #f2f0ec;
        border-radius: 5px;
        cursor: pointer;
    }
    #page-nav .inner .circle.active {
        background-color: #f2f0ec;
    }
     
    /* -- Tablet - Features ------------------ */
    
    .feature {
        height: 0;
        padding-bottom: 71%
    }
    .feature .bgImage.narrow {
        display: none;
    }
    .feature .bgImage.wide {
        display: block;
    }
    .feature .narrow {
        display: none;
    }
    .feature .wide {
        display: block;
    }
    .feature .overlay-box {
        width: 316px;
        height: 316px;
        position: absolute;
        left: 50%;
        top: 50%;
        margin-left: -158px;
        margin-top: -158px;
    }
    .feature:first-of-type .overlay-box {
        margin-top: -120px;
    }
    .nlayout-bottom .overlay-box {
        bottom: auto;
    }
    .nlayout-middle .overlay-box {
        bottom: auto;
    }
    .wlayout-right .overlay-box {
        margin-left: -15px;
    }
    .wlayout-left .overlay-box {
        margin-left: -301px;
    } 
    
    /* -- Tablet - Social Feed ------------------ */
    
    #social-feed h3 { 
        background: url(../images/rs-social-title-desktop.png) center center no-repeat;
        background-size: 254px 16px;
        background-color: #f7f6f4;
    }
    #social-feed .social-post {
        width: 25%;
        padding-bottom: 25%;
    }
    #social-feed .social-post.layout4Col {
        display: block;
    }
    #social-feed .see-more {
        width: 25%;
        padding-bottom: 25%;
    }
     
}

/* -- Desktop ----------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------- */

@media (min-width: 960px) {
    
    /* -- Desktop - Header ------------------ */
    
    #main-header .logo {
        width: 132px;
        height: 190px;
    }
    #main-header .search-btn {
        top: 47px;
    }
    #main-header .az-btn {
        top: 47px;
    }
    #main-header.sticky {
        top: -30px;
    }
    
    /* -- Desktop - Main Menu ------------------ */
    
    #primary-nav {
        top: 30px;   
    }
    #primary-nav.sticky {
        position: fixed;
        top: 0;
    }
    #primary-nav > .inner {
        top: 0;
        left: 132px;
        height: 60px;
    }
    #primary-nav .main-menu .links {
        padding: 0 100px 0 20px;
        /*padding: 0 105px 0 20px;*/
    }
    #primary-nav .main-menu .links li {
        display: inline-block;
        position: relative;
        height: 60px; 
        font-size: 13.5px;  
        padding: 21px 0 0 0;  
    }
    /*#primary-nav .main-menu .links .link-women {
        width: auto;
        background-size: contain;
    }
    #primary-nav .main-menu .links .link-men {
        width: auto;
        background-size: contain;
    }
    #primary-nav .main-menu .links .link-children {
        width: auto;
        background-size: contain;
    }
    #primary-nav .main-menu .links .link-hometech {
        width: auto;
        background-size: contain;
    }
    #primary-nav .main-menu .links .link-beauty {
        width: auto;
        background-size: contain;
    }
    #primary-nav .main-menu .links .link-eatdrink {
        width: auto;
        background-size: contain;
    }
    #primary-nav .main-menu .links .link-hotels {
        width: auto;
        background-size: contain;
    }*/
    
    /* -- Desktop - Menu Women ------------------ */
    
    #primary-nav .menu-sub {
        top: 60px;
        left: -132px;
    }
    #primary-nav .menu-sub.active {
        height: 130px;
    }
    #primary-nav .menu-sub > .inner {
        left: 132px;
    }
    #primary-nav .menu-sub .bg-left {
        width: 132px;
        top: 55px;
    }
    #primary-nav .menu-sub .links {
        bottom: 10px;
    }
    #primary-nav .menu-sub .links .column {
        width: 160px;
    }
    #primary-nav .menu-sub .links li {
        height: auto;
        width: 140px;
        margin: 0 20px 12px 0;
        font-size: 13px;
        padding: 0 0 0;
        line-height:1;
    }
    /*#primary-nav .menu-sub .links .link-fashion {
        background-size: 55px 9px;
    }
    #primary-nav .menu-sub .links .link-accessories {
        background-size: 86px 9px;
    }
    #primary-nav .menu-sub .links .link-footwear {
        background-size: 69px 9px;
    }
    #primary-nav .menu-sub .links .link-jewellery {
        background-size: 69px 9px;
    }
    #primary-nav .menu-sub .links .link-bags {
        background-size: 32px 9px;
    }
    #primary-nav .menu-sub .links .link-watches {
        background-size: 59px 9px;
    }
    #primary-nav .menu-sub .links .link-sportswear {
        background-size: 82px 9px;
    }
    #primary-nav .menu-sub .links .link-outdoors {
        background-size: 71px 9px;
    }*/
    #primary-nav .menu-sub .thumb-links {
        bottom: 16px;
        height: 108px;
    }
    #primary-nav .menu-sub .brand-links {
        width: 207px;
    }
    #primary-nav .menu-sub .brand-links ul {
        margin: 0;
        padding: 0;
        list-style: none;
        width: auto;
    }
    #primary-nav .menu-sub .brand-links li {
        margin: 10px 0 0 10px;
        width: 59px;
        height: 44px;
    }
    #primary-nav .menu-sub .article-links {
        width: auto;
    }
    #primary-nav .menu-sub .article-links li {
        width: 140px;
        height: 98px;
        margin: 10px 0 0 20px;
        float: left;
    }
    #primary-nav .menu-sub .article-links li img {
        width: 100%;
    }
    
    /* -- Desktop - Secondary Nav ------------------ */
    
    #secondary-nav .inner {
        left: 132px;
        height: 30px;
    }
    #secondary-nav .menu-global .links {
        padding: 6px 225px 6px 0;
    }
    #secondary-nav .menu-global .links li {
        height: auto;
    }
    #secondary-nav .menu-global .links li { 
        font-size:13px; 
    }
    #secondary-nav .menu-global .links li a{ 
        color:#fff;
    }
    /*#secondary-nav .menu-global .links .link-events {
        width: 45px;
    }
    #secondary-nav .menu-global .links .link-articles {
        width: 57px;
    }
    #secondary-nav .menu-global .links .link-about {
        width: 140px;
    }
    #secondary-nav .menu-global .links .link-gethere {
        width: 112px;
    }*/
    #secondary-nav .menu-global .social-icons {
        width: 177px;
        padding: 7px 0;
    }
    #secondary-nav .menu-global .social-icons li {
        height: 16px;
    }
    #secondary-nav .menu-global .social-icons li:hover {
        opacity:0.6;
    }
    #secondary-nav .menu-global .social-icons .facebook-icon {
        width: 9px;
    }
    #secondary-nav .menu-global .social-icons .twitter-icon {
        width: 15px;
    }
    #secondary-nav .menu-global .social-icons .instagram-icon {
        width: 13px;
    }
    #secondary-nav .menu-global .social-icons .pinterest-icon {
        width: 14px;
    }
    #secondary-nav .menu-global .social-icons .youtube-icon {
        width: 13px;
    }
    #secondary-nav .menu-global .social-icons .googleplus-icon {
        width: 15px;
    }
    #secondary-nav .menu-global .social-icons .weibo-icon {
        width: 17px; 
    }
    #secondary-nav .menu-global .social-icons .wechat-icon {
        width: 17px; 
    }
    
    /* -- Desktop - Search Bar ------------------ */
    
    #search-bar {
        top: 90px;
        left: 132px;
    }
    #search-bar.sticky {
        top: 60px;
    }
    #search-bar.active {
        height: 60px;
    }
    #search-bar .search-text {
        width: 100%;
        height: 60px;
    }
    #search-bar .chevron {
        width: 9px;
        height: 16px;
        background-size: contain;
        bottom: 22px;
    }
     
    /* -- Desktop - Features ------------------ */
    
    .feature .overlay-box {
        width: 400px;
        height: 400px;
        margin-left: -200px;
        margin-top: -200px;
    }
    .feature:first-of-type .overlay-box {
        margin-top: -155px;
    }
    .wlayout-right .overlay-box {
        margin-left: -18px;
    }
    .wlayout-left .overlay-box {
        margin-left: -382px;
    } 
    /* -- Desktop - Social Feed ------------------ */
    
    #social-feed .social-post:nth-of-type(4n-2) {
        background-color: #ffffff;
    }
    #social-feed .social-post:nth-of-type(4n-1) {
        background-color: #ffffff;
    }
    #social-feed .social-post:nth-of-type(8n-6) {
        background-color: #f2f0ec;
    }
    #social-feed .social-post:nth-of-type(8n-4) {
        background-color: #f2f0ec;
    }
    #social-feed .social-post:nth-of-type(8n-3) {
        background-color: #f2f0ec;
    }
    #social-feed .social-post:nth-of-type(8n-1) {
        background-color: #f2f0ec;
    }
    #social-feed h3 {
        height: 100px; 
        background-size: 324px 20px;
    }
     
}

/* -- Widescreen ------------------------------------------------------------------------------ */
/* ---------------------------------------------------------------------------------------- */


@media (min-width: 1120px) {
   
    #page-wrapper {
        padding-left: 230px;
    }
    
    
    /* -- Widescreen - Header ------------------ */
    
    #main-header .logo {
        width: 230px;
        height: 220px;
    }
    #main-header .logo .logo-img {
        background: url(../images/rs-logo-wide.png) left top no-repeat;
    }
    #main-header .search-btn {
        width: 60px;
        height: 60px;
        background: url(../images/search-icon.png) center center no-repeat;
        background-color: #ffffff;
        position: fixed;
        right: 0;
        bottom: auto;
        top: 0;
    }
    #main-header .search-btn:hover {  
        background: url(../images/search-icon-hover.png) center center no-repeat; 
        background-color: #ffffff; 
    }
    #main-header .az-btn {
        width: 60px;
        height: 60px;
        background: url(../images/azlogo.png) center center no-repeat;
        background-color: #ffffff;
        bottom: auto;
        right: 0;
        right: 42px;
        top: 0;
        position: fixed;
        transition: right 0.25s;
    }
    #main-header .az-btn:hover {  
        background: url(../images/azlogo-hover.png) center center no-repeat;
        background-color: #ffffff; 
    }
    #main-header .az-btn.shift {
        right: 560px;
    }
    
    /* -- Widescreen - Main Menu ------------------ */
    
    #primary-nav {
        position: fixed;
        width: 230px;
        height: 100%;
        top: 0;
        left: 0;
        transition: none;
    }
    #primary-nav > .inner {
        top: 220px;
        left: 0;
        bottom: 0;
        height: auto;
    }
    #primary-nav .main-menu {
        background-color: #ffffff;
        top: 0;
    }
    #primary-nav .main-menu .links {
        padding: 0;
        text-align: left;
    }
    #primary-nav .main-menu .links li {
        display: block;
        height: 35px;
        width: 100%;
        transition: none;
    }
    #primary-nav .main-menu .links li.active, #primary-nav .main-menu .links li:hover.active {
        background-color: #000000;
        color:#ffffff;
        opacity:1;
    }
    #primary-nav .main-menu .links li .chevron {
        background-size: 7px 13px;
        display: block;
        right: 15px;
    }
    #primary-nav .main-menu .links li.active .chevron {
        background-image: url(../images/chevron-right-menu-white.png);
    }
    /*#primary-nav .main-menu .links .link-women {
        background-size: 62px 11px;
        background-position: 15px center;
        width: 100%;
    }
    #primary-nav .main-menu .links .link-women.active {
        background-image: url(../images/women-txt-white.png);
    }
    #primary-nav .main-menu .links .link-men {
        background-size: 35px 11px;
        background-position: 15px center;
        width: 100%;
    }
    #primary-nav .main-menu .links .link-men.active {
        background-image: url(../images/men-txt-white.png);
    }
    #primary-nav .main-menu .links .link-children {
        background-size: 78px 11px;
        background-position: 15px center;
        width: 100%;
    }
    #primary-nav .main-menu .links .link-children.active {
        background-image: url(../images/children-txt-white.png);
    }
    #primary-nav .main-menu .links .link-hometech {
        background-size: 172px 11px;
        background-position: 15px center;
        width: 100%;
    }
    #primary-nav .main-menu .links .link-hometech.active {
        background-image: url(../images/hometech-txt-white.png);
    }
    #primary-nav .main-menu .links .link-beauty {
        background-size: 57px 11px;
        background-position: 15px center;
        width: 100%;
    }
    #primary-nav .main-menu .links .link-beauty.active {
        background-image: url(../images/beauty-txt-white.png);
    }
    #primary-nav .main-menu .links .link-eatdrink {
        background-size: 92px 11px;
        background-position: 15px center;
        width: 100%;
    }
    #primary-nav .main-menu .links .link-eatdrink.active {
        background-image: url(../images/eatdrink-txt-white.png);
    }
    #primary-nav .main-menu .links .link-hotels {
        background-size: 147px 11px;
        background-position: 15px center;
        width: 100%;
    }
    #primary-nav .main-menu .links .link-hotels.active {
        background-image: url(../images/hotels-txt-white.png);
    }*/
    
    /* -- Widescreen - Menu Women -------------- */
    
    #primary-nav .menu-sub {
        position: fixed;
        width: 0;
        top: 0;
        bottom: 0;
        left: 230px;
        height: auto;
        transition: width 0.25s;
    }
    #primary-nav .menu-sub.active {
        width: 230px;
        left: 230px;
        height: auto;
    }
    #primary-nav .menu-sub .inner {
        position: absolute;
        left: auto;
        right: 0;
        width: 230px;
    }
    #primary-nav .menu-sub .header {
        display: none;
    }
    #primary-nav .menu-sub .bg-left {
        display: none;
    }
    #primary-nav .menu-sub .links {
        padding: 10px 15px;
        list-style: none;
        position: relative;
        left: 0;
        bottom: 0;
    }
    #primary-nav .menu-sub .links .column {
        width: auto;
        float: none
    }
    #primary-nav .menu-sub .links li {
        height: 35px;
        width: 100%;
        margin: 0;
        position: relative;
        cursor: pointer;
    }
    #primary-nav .menu-sub .links li .chevron {
        width: 7px;
        display: block;
        background-size: 7px 13px;
    }
    /*#primary-nav .menu-sub .links .link-fashion {
        background: url(../images/fashion-txt.png) left center no-repeat;
        background-size: 67px 11px;
    }
    #primary-nav .menu-sub .links .link-accessories {
        background: url(../images/accessories-txt.png) left center no-repeat;
        background-size: 105px 11px;
    }
    #primary-nav .menu-sub .links .link-footwear {
        background: url(../images/footwear-txt.png) left center no-repeat;
        background-size: 85px 11px;
    }
    #primary-nav .menu-sub .links .link-jewellery {
        background: url(../images/jewellery-txt.png) left center no-repeat;
        background-size: 85px 11px;
    }
    #primary-nav .menu-sub .links .link-bags {
        background: url(../images/bags-txt.png) left center no-repeat;
        background-size: 39px 11px;
    }
    #primary-nav .menu-sub .links .link-watches {
        background: url(../images/watches-txt.png) left center no-repeat;
        background-size: 73px 11px;
    }
    #primary-nav .menu-sub .links .link-sportswear {
        background: url(../images/sportswear-txt.png) left center no-repeat;
        background-size: 101px 11px;
    }
    #primary-nav .menu-sub .links .link-outdoors {
        background: url(../images/outdoors-txt.png) left center no-repeat;
        background-size: 88px 11px;
    }*/
    #primary-nav .menu-sub .thumb-links {
        position: static;
        height: auto;
        bottom: auto;
        right: auto;
    }
    #primary-nav .menu-sub .brand-links {
        width: 100%;
        padding: 0 11px;   
    }
    #primary-nav .menu-sub .brand-links ul {
        margin: 0;
        padding: 0;
        list-style: none;
        width: 100%;
    }
    #primary-nav .menu-sub .brand-links li {
        margin: 0 0 8px;
        width: 50%;
        height: auto;
        padding: 0 4px;
        float: left;
    }
    #primary-nav .menu-sub .brand-links ul li a {
        position: relative;
        width: 100%;
        height: 0;
        display: block;
        padding-bottom: 74%;
        background-color: #fff;
    }
    #primary-nav .menu-sub .brand-links li img {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
    }
    #primary-nav .menu-sub .article-links {
        position: relative;
        width: 100%;
        float: none;
        left: 0;
        padding: 0 11px;
        clear: both;
    }
    #primary-nav .menu-sub .article-links ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    #primary-nav .menu-sub .article-links li {
        width: 200px;
        height: 140px;
        margin: 7px 4px 15px;
        float: none;
    }
    #primary-nav .menu-sub .article-links li img {
        width: 100%;
    }

    
    /* -- Widescreen - Secondary Nav ------------------ */

    #secondary-nav {
        width: 230px;
        min-width: 0;
        bottom: 0;
        top: auto;
        height: auto;
        position: fixed;
    }
    #secondary-nav .inner {
        left: 0;
        width: 100%;
        height: auto;
        overflow: visible;
        right: auto;
        top: auto;
        position: static;
    }
    #secondary-nav .menu-global {
        top: auto;
        position: static;
        background-color: #ffffff;
    }
    #secondary-nav .menu-global .links {
        padding: 0 15px;
        text-align: left;
        position: relative
    }
    #secondary-nav .menu-global .links li {
        display: block;
        height: 30px;
        margin: 0;
        transition: none;
    }
    /*#secondary-nav .menu-global .links .link-events {
        width: 100%;
        background: url(../images/events-txt.png) left center no-repeat;
        background-size: 56px 11px;
    }
    #secondary-nav .menu-global .links .link-articles {
        width: 100%;
        background: url(../images/articles-txt.png) left center no-repeat;
        background-size: 71px 11px;
    }
    #secondary-nav .menu-global .links .link-about {
        width: 100%;
        background: url(../images/about-txt.png) left center no-repeat;
        background-size: 175px 11px;
    }
    #secondary-nav .menu-global .links .link-gethere {
        width: 100%;
        background: url(../images/gethere-txt.png) left center no-repeat;
        background-size: 138px 11px;
    }*/
    #secondary-nav .menu-global .links li .chevron {
        display: block;
        background-size: 7px 12px;
    }
    
    #secondary-nav .menu-global .social-icons {
        width: 100%;
        position: relative;
        top: auto;
        right: auto;
        height: auto;
        padding: 15px;
    }
    #secondary-nav .menu-global .social-icons li {
        height: 20px;
        transition: none;
    }
    #secondary-nav .menu-global .social-icons li a{
        height: 20px;
        transition: none;
    }
    #secondary-nav .menu-global .social-icons .facebook-icon {
        width: 12px;
        background: url(../images/facebook-icon-lh.png) center center no-repeat;
        background-size: contain;
    }
    #secondary-nav .menu-global .social-icons .twitter-icon {
        width: 22px;
        background: url(../images/twitter-icon-lh.png) center center no-repeat;
        background-size: contain;
    }
    #secondary-nav .menu-global .social-icons .instagram-icon {
        width: 18px;
        background: url(../images/instagram-icon-lh.png) center center no-repeat;
        background-size: contain;
    }
    #secondary-nav .menu-global .social-icons .pinterest-icon {
        width: 20px;
        background: url(../images/pinterest-icon-lh.png) center center no-repeat;
        background-size: contain;
    }
    #secondary-nav .menu-global .social-icons .youtube-icon {
        width: 20px;
        background: url(../images/youtube-icon-lh.png) center center no-repeat;
        background-size: contain;
    }
    #secondary-nav .menu-global .social-icons .googleplus-icon {
        width: 20px;
        background: url(../images/googleplus-icon-lh.png) center center no-repeat;
        background-size: contain;
    }
    #secondary-nav .menu-global .social-icons .weibo-icon {
        width: 22px;
        background: url(../images/weibo-icon-lh.png) center center no-repeat;
        background-size: contain;
    }
    #secondary-nav .menu-global .social-icons .wechat-icon {
        width: 22px;
        background: url(../images/wechat-icon-lh.png) center center no-repeat;
        background-size: contain;
    }
    
    /* -- Mobile - Scroll Down Button ----- */

    #scroll-down-btn {
        margin-left: 65px;
    }
    
    /* -- Widescreen - Search Bar ------------------ */
    
    #search-bar {
        top: 0;
        left: auto;
        right: -458px;
        width: 500px;
        height: 60px;
        position: fixed;
        transition: right 0.25s;
    }
    #search-bar.active {
        right: 60px;
    }
     
    /* -- Widescreen - Features ---------------- */
    

    .feature {
        padding-bottom: 47.14%;
        float: left
    }
    
    .feature .overlay-box {
        width: 286px;
        height: 286px;
        position: absolute;
        left: 50%;
        top: 50%;
        margin-left: -143px;
        margin-top: -143px;
    }
    .feature:first-of-type .overlay-box {
        margin-top: -143px;
    } 
    
    .feature:nth-of-type(4n-3) {
        width: 66.66%;
    }
    .feature:nth-of-type(4n-3) > .inner {
        right: 2px;
    }
    .feature:nth-of-type(4n-3) .narrow {
        display: none;
    }
    .feature:nth-of-type(4n-3) .wide {
        display: block;
    } 
    .feature:nth-of-type(4n-3) .bgImage.clone {
        left: -100%;
    }
    .feature:nth-of-type(4n-3) .bgImage.clone {
        width: 100%;
    }
    .feature:nth-of-type(4n-3).wlayout-right .overlay-box {
        margin-left: -11px;
    }
    .feature:nth-of-type(4n-3).wlayout-left .overlay-box {
        margin-left: -275px;
    }
    
    .feature:nth-of-type(4n-2) {
        width: 33.33%;
    }
    .feature:nth-of-type(4n-2) > .inner {
        left: 2px;
    }
    .feature:nth-of-type(4n-2) .narrow {
        display: block;
    }
    .feature:nth-of-type(4n-2) .wide {
        display: none;
    } 
    .feature:nth-of-type(4n-2).nlayout-bottom .overlay-box {
        bottom: 5%;
        top: auto;
        margin-top: 0;
    }
    .feature:nth-of-type(4n-2).nlayout-top .overlay-box {
        bottom: auto;
        top: 5%;
        margin-top: 0;
    }
    
    .feature:nth-of-type(4n-1) {
        width: 33.33%;
    }
    .feature:nth-of-type(4n-1) > .inner {
        right: 2px;
    }
    .feature:nth-of-type(4n-1) .narrow {
        display: block;
    }
    .feature:nth-of-type(4n-1) .wide {
        display: none;
    } 
    .feature:nth-of-type(4n-1) .bgImage.clone {
        left: -140%;
    }
    .feature:nth-of-type(4n-1) .bgImage.clone {
        width: 140%;
    }
    .feature:nth-of-type(4n-1).nlayout-bottom .overlay-box {
        bottom: 5%;
        top: auto;
        margin-top: 0;
    }
    .feature:nth-of-type(4n-1).nlayout-top .overlay-box {
        bottom: auto;
        top: 5%;
        margin-top: 0;
    }
    
    .feature:nth-of-type(4n) {
        width: 66.66%;
    }
    .feature:nth-of-type(4n) > .inner {
        left: 2px;
    }
    .feature:nth-of-type(4n) .narrow {
        display: none;
    }
    .feature:nth-of-type(4n) .wide {
        display: block;
    } 
    .feature:nth-of-type(4n).wlayout-right .overlay-box {
        margin-left: -11px;
    }
    .feature:nth-of-type(4n).wlayout-left .overlay-box {
        margin-left: -275px;
    }
    
    #primary-nav .main-menu .links li {
        height: 35px; 
        font-size:15px; 
        padding:8px 0 0 15px; 
    }
    
    #primary-nav .menu-sub .links li {
        height: 35px; 
        font-size:15px; 
        padding:8px 0 0 0; 
    }
    
    #secondary-nav .menu-global .links li {
        height: 35px;  
        font-size:15px; 
        padding:8px 0 0 0;  
    }
    #secondary-nav .menu-global .links li a{ 
        color:#000;
    }
    
}

@media (min-width: 1400px) {
    
    .feature .overlay-box {
        width: 316px;
        height: 316px;
        margin-left: -158px;
        margin-top: -158px;
    }
    .feature:first-of-type .overlay-box {
        margin-top: -158px;
    }  
    
    .feature:nth-of-type(4n-3).wlayout-right .overlay-box {
        margin-left: -15px;
    }
    .feature:nth-of-type(4n-3).wlayout-left .overlay-box {
        margin-left: -301px;
    }
    
    .feature:nth-of-type(4n).wlayout-right .overlay-box {
        margin-left: -15px;
    }
    .feature:nth-of-type(4n).wlayout-left .overlay-box {
        margin-left: -301px;
    } 
    /*#social-feed .social-post:nth-of-type(4n-2) {
        background-color: #f2f0ec;
    }
    #social-feed .social-post:nth-of-type(4n-1) {
        background-color: #f2f0ec;
    }*/
    #social-feed .social-post .text {
        padding: 20px;
    }
    #social-feed .social-post .text h4 {
        font-size: 18px;
    }
    #social-feed .social-post .text p {
        font-size: 16px;
    }
    #social-feed .social-post .icon {
        top: 20px;
        right: 20px;
    }
    #social-feed .social-post .actions {
        left: 20px;
        bottom: 20px;
    }
    #social-feed .social-post .time {
        right: 20px;
        bottom: 20px;
    }

}

@media (min-width: 1600px) {
    
    .feature .overlay-box {
        width: 400px;
        height: 400px;
        margin-left: -200px;
        margin-top: -200px;
    }
    .feature:first-of-type .overlay-box {
        margin-top: -200px;
    } 


    
} 