.pceDisplay[style*="visibility:hidden"] {
    display: none !important;
}

/* Rolex Framing */

.rolexBeigeBackground {
    background-color: #f4efea;
}

.rolexLightGrayBackground {
    background-color: #f9f7f4;
}

.rolexOuterContainer {
    width: 100%;
    max-width: 1920px;
    margin: auto auto 90px;
    padding: 90px 8%;
    font-family: "Inter", sans-serif;
}

.rolexContainer-S,
.rolexContainer-M,
.rolexContainer-L,
.rolexCategoryContainer {
    margin: 20px auto;
}

.rolexContainer-S {
    width: calc(50% - 8px);
}

.rolexContainer-M {
    width: calc(83.3% - 8px);
}

.rolexContainer-L {
    width: 100%;
}

.rolexHeadline50 {
    font-weight: bold;
    font-size: 50px;
    line-height: 1.1em;
    color: #452C1E;
}

.rolexBody24 {
    font-weight: bold;
    font-size: 24px;
    line-height: 1.2em;
    color: #452C1E;
}

.rolexBody20,
.rolexInfoContent span {
    font-weight: lighter;
    font-size: 20px;
    line-height: 1.6em;
    color: #212121;
}

.rolexBody20Bold,
.rolexInfoContent div {
    font-weight: bold;
    font-size: 20px;
    line-height: 1.6em;
}

.rolexBody20Bold{
    color: #452C1E;
}

.rolexLegend16 {
    font-weight: lighter;
    font-size: 16px;
    line-height: 1.1em;
    color: #212121;
}

.rolexLegend16Bold {
    font-weight: bold;
    font-size: 16px;
    line-height: 1.1em;
    color: #452C1E;
}

.rolexFixed14 {
    font-size: 14px;
    line-height: 1.1em;
}

.rolexPrimaryCTA,
.rolexPrimaryCTA:focus {
    background-color: #127749;
    line-height: 44px;
    width: auto;
    display: inline-block;
    padding: 0 30px;
    border-radius: 22px;
    color: white;
    font-weight: bold;
    font-size: 14px;
}

.rolexPrimaryCTA:hover {
    background-color: #006039;
    text-decoration: none;
}

.rolexSecondaryCTA,
.rolexSecondaryCTA:focus{
    color: #127749;
    font-weight: bold;
    font-size: 14px;
    text-decoration: none;
}

.rolexSecondaryCTA:hover {
    color: #212121;
    text-decoration: none;
}

.rolexSecondaryCTA .svg {
    height: 14px;
    vertical-align: baseline;
}

.rolexSecondaryCTA .svg.noHover {
    display: initial;
}

.rolexSecondaryCTA .svg.hover {
    display: none;
}

.rolexSecondaryCTA:hover .svg.noHover {
    display: none;
}

.rolexSecondaryCTA:hover .svg.hover {
    display: initial;
}

.rolexCategoryContainer {
    width: 75%;
    margin: 50px auto;
    -webkit-flex-wrap: wrap;
    display: flex;
    flex-wrap: wrap;
    -webkit-align-content: flex-start;
    align-content: flex-start;
}

.categoryContainerProductTile {
    width: calc(33.3% - 6px);
    margin-right: 8px;
    margin-bottom: 8px;
    padding-top: 5px;
}

.categoryContainerProductTile:hover,
.categoryContainerProductTile:focus {
    text-decoration: none;
}

.categoryContainerProductTile-hidden {
    display: none;
}

.categoryContainerProductTile img {
    width: 100%;
}

.categoryContainerProductTileDetails {
    padding: 5px 50px 50px;
}

.categoryContainerProductTileDetails > * {
    display: block;
    text-align: left;
}

.categoryContainerProductTileDetails .rolexBody24 {
    margin-bottom: 5px;
}

.rolexCategoryContainerShowMore {
    margin: 40px auto 0;
    cursor: pointer;
}

.rolexBreadcrumbs.rolexBreadcrumbs2024 {
    font-family: "Inter", sans-serif;
    border: none;
    padding: 0;
    background-image: linear-gradient(to right, #0b3e27, #197149);
    max-width: 100%;
    padding-bottom: 15px;
}

.rolexBreadcrumbs.rolexBreadcrumbs2024 > ul {
    max-width: 1920px;
    padding: 0 8%;
    margin: auto;
}

.rolexBreadcrumbs.rolexBreadcrumbs2024 > ul > li > a,
.rolexBreadcrumbs.rolexBreadcrumbs2024 > ul > li > span {
    color: white;
}

.rolexBreadcrumbs.rolexBreadcrumbs2024 > ul > li.active > span {
    color: #61BD93;
}

.rolexBreadcrumbs.rolexBreadcrumbs2024 .svg {
    height: 10px;
}

/* Price Hover */
.rolexPriceInfo {
    display: inline-block;
}

.rolexPriceInfoButton {
    border-color: #fff;
    color: #fff;
    background-color: transparent;
    position: relative;
}

.rolexPriceInfoText {
    pointer-events: none;
    opacity: 0;
    position: absolute;
    left: 0;
    width:  100%;
    bottom: -16px;
    background: #006039;
    border-radius: 5px;
    transition: opacity .2s .2s;
}

.rolexPriceInfo:hover .rolexPriceInfoText,
.rolexPriceInfo:focus .rolexPriceInfoText {
    pointer-events: all;
    opacity: 1;
}
.rolexPriceInfo .rolexPriceInfoButton:before {
    pointer-events: none;
    opacity: 0;
    content: "";
    background: #006039;
    width: 8px;
    height: 8px;
    position: absolute;
    bottom: -3px;
    left: 4px;
    transform: rotate(45deg);
    transition: opacity .2s .2s;
}

.rolexPriceInfo:hover .rolexPriceInfoButton:before,
.rolexPriceInfo:focus .rolexPriceInfoButton:before{
    pointer-events: all;
    opacity: 1;
}

.rolexPriceInfoTextInner {
    color: #fff;
    padding: 10px;
}

.rolexPriceInfoButton .svg {
    width: 15px;
    height: 15px;
}


@media (max-width: 1024px) {

    .rolexContainer-S {
        width: calc(66.6% - 8px);
    }

    .categoryContainerProductTileDetails {
        padding: 5px 30px 50px;
    }

    .rolexCategoryContainer {
        width: 100%;
    }

}
@media (min-width: 768px) {

    .categoryContainerProductTile:nth-child(3n) {
        margin-right: 0;
    }
}

@media (max-width: 767px) {
    .rolexContainer-S,
    .rolexContainer-M {
        width: 100%;
    }

    .rolexHeadline50 {
        font-size: 30px;
        line-height: 1.2em;
    }

    .rolexBody24,
    .rolexBody20,
    .rolexInfoContent span,
    .rolexBody20Bold,
    .rolexInfoContent div {
        font-size: 18px;
    }

    .rolexLegend16,
    .rolexLegend16Bold{
        font-size: 12px;
    }

    .rolexBreadcrumbs > ul > li.mobileBreadcrumb > a {
        padding: 0;
    }

    li.mobileBreadcrumb .svg {
        transform: rotate(180deg);
    }

    .categoryContainerProductTileDetails {
        padding: 5px 20px 30px;
    }

    .categoryContainerProductTile {
        width: calc(50% - 4px);
    }

    .categoryContainerProductTile:nth-child(2n) {
        margin-right: 0;
    }

    .rolexCategoryContainerShowMore {
        margin: 30px auto 0;
    }
}

.rolexBreadcrumbs {
    width: 100%;
    max-width: 1430px;
    margin: auto;
    font-size: 12px;
    color: #818181;
}

.rolexBreadcrumbs > ul{
    margin: 0 0 0 40px;
    padding:0;
    font-size: 0.9em;
    line-height: 20px;
}

.rolexBreadcrumbs > ul > li {
    padding-right: 10px;
    display: inline-block;
}

.rolexBreadcrumbs > ul > li:not(:first-child) > a, .rolexBreadcrumbs > ul > li:not(:first-child) > span {

    padding-left: 10px;
}

.rolexBreadcrumbs > ul > li > a{
    text-decoration: none;
}

.rolexProductRow{
    position: relative;
    clear: both;
    width:100%;
    margin: auto;
    color: #212121;
}

.rolexProductDetailsRow {
    height: 90vh;
}

.rolexProductRow .rolexOuterContainer {
    display: flex;
    padding: 0 8%;
    align-items: center;
    height: 100%;
    margin: auto;
}

.rolexProductDetailsBlock {
    width: calc(25% - 8px);
}

.rolexProductTitleBlock {
    margin-bottom: 5px;
}

.rolexProductTitleBlock > * {
    display: block;
    margin-top: 10px;
}

.rolexProductTitleBlock > *:first-child {
    margin-top: 0;
}

.rolexProductDetailsImage {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 80%;
}

.rolexProductDescriptionContainer {
    justify-content: center;
    flex-direction: row-reverse;
}

.rolexProductDescriptionImage {
    width: 41.6%;
    text-align: center;
}

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

.rolexProductDescriptionBlock {
    width: 60%;
    text-align: left;
    margin-top: 90px;
    margin-bottom: 10vh;
    display: flex;
    flex-wrap: wrap;
}

.rolexInfoContent {
    width: 50%;
    margin-bottom: 20px;
    padding-right: 12.5%;
}

.rolexProductBrochureLink {
    width: 100%;
    margin-top: 20px;
}

.rolexProductBrochureLink:before {
    content: "";
    display: block;
    height: 1px;
    width: 100%;
    background-color: #452C1E;
    opacity: 0.2;
    margin-bottom: 40px;
}

.rolexProductRow .rolexOuterContainer.rolexFeatures {
    flex-direction: column;
    flex-wrap: wrap;
    padding-top: 90px;
    padding-bottom: 90px;
}

.featureRow {
    width: 100%;
    margin-top: 45px;
}

.featureRow:not(.featureRowFullWidthImage),
.featureRow.featureRowFullWidthImage .featureText {
    width: 50%;
}

.featureRowBrandAvailability {
    width: 100%;
    margin-top: 90px;
    padding: 100px 0;
    background-color: white;
    text-align: center;
}

.featureRowBrandAvailability .featureRow {
    margin: auto;
}

.featureRow.featureRowFullWidthImage .featureText {
    margin: auto;
    margin-bottom: 90px;
}

.featureRow:first-child {
    margin-top: 0;
}

.featureRow h2 {
    margin-bottom: 20px;
}

.featureImage img {
    width: 100%;
}

.featureRolexCrown {
    width: 60px;
    margin: auto;
    margin-bottom: 40px;
}

.rolexProductBrochureLink .svg {
    margin-right: 6px;
}

.rolexSecondaryCTA.rolexModelAvailability {
    display: block;
    margin-top: 10px;
}

.rolexSecondaryCTA.rolexModelAvailability .svg {
    height: 10px;
}

.rolexProductDetailsBlock .productDetails {
    margin-bottom: 0;
    position: relative;
}

.rolexInfoContent div{
    text-transform: lowercase;
}

.rolexInfoContent div:first-letter {
    text-transform: uppercase;
}


.featureRow h2 {
    text-transform: initial;
}

@media (max-width: 1024px) {

    .rolexProductDescriptionContainer {
        flex-direction: column;
    }

    .rolexProductDescriptionBlock {
        margin-top: 0;
    }

    .rolexProductDetailsBlock {
        width: calc(33.3% - 8px);
    }

    .rolexProductDescriptionImage {
        width: 100%;
        max-width: 550px;
    }

    .rolexProductDescriptionBlock {
        width: 100%;
    }

    .rolexInfoContent {
        padding-right: 6.25%;
    }

    .featureRow:not(.featureRowFullWidthImage),
    .featureRow.featureRowFullWidthImage .featureText {
        width: 75%;
    }

}

@media (max-width: 767px) {

    .rolexProductDescriptionImage {
        max-width: 100%;
    }

    .rolexProductDetailsImage {
        position: initial;
        transform: unset;
        height: auto;
        width: 100%;
    }

    .rolexProductDetailsBlock {
        width: 100%;
    }

    .rolexOuterContainer {
        flex-direction: column;
    }

    .rolexProductDetailsRow {
        height: auto;
    }

    .rolexProductRow .rolexOuterContainer:not(.rolexProductDescriptionContainer) {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .rolexProductRow.rolexProductDetailsRow .rolexOuterContainer {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .featureRowBrandAvailability {
        margin-top: 60px;
        padding: 60px 20px;
    }

    .rolexInfoContent {
        width: calc(50% - 4px);
        padding-right: 0;
        margin-right: 8px
    }

    .rolexInfoContent:nth-child(2n) {
        margin-right: 0;
    }

    .rolexProductBrochureLink {
        margin-top: 10px;
    }

    .rolexProductBrochureLink:before {
        margin-bottom: 30px;
    }

    .featureRow {
        margin-top: 40px;
    }

    .featureRow:not(.featureRowFullWidthImage),
    .featureRow.featureRowFullWidthImage .featureText {
        width: 100%;
    }

    .featureRow.featureRowFullWidthImage .featureText {
        margin-bottom: 60px;
    }

}

#rolexProductImageGallery {
    max-height: 550px;
    margin: auto;
    overflow: hidden;
}

#rolexProductImageGallery.owl-carousel .owl-item{
    text-align: center;
}

#rolexProductImageGallery.owl-carousel .owl-item img{
    max-height: 550px;
    width: auto;
    max-width:100%;
    display: inline-block;
}

.rolexProductRow .rolexProductHalfRow .rolexProductTitleBlock{
    -webkit-align-self: center; /* Safari 7.0+ */
    align-self: center;
    width: 80%;
    max-width: 520px;
    margin: auto;
    padding: 15px 0;
}

.rolexProductTitle, .rolexProductDescBlock h2 {
    font-size: 30px;
    text-transform: uppercase;
    margin-bottom: 30px;
    margin-top: 0;
}

.rolexProductTitle span {
    font-size: 18px;
    margin-bottom: 12px;
    display: block;
}

.rolexProductTitle .rolexProductBriefDesc, .rolexProductDescBlock p {
    display: block;
    font-size: 14px;
    line-height: 24px;
    margin-top: 30px;
    text-transform: none;
}

.rolexProductColourInvert .rolexButton {
    display: inline-block;
    padding:14px 17.5px;
    border: 1px solid white;
    background: white;
    color: #212121;
    text-decoration: none;
    text-transform: uppercase;
}

.rolexProductColourInvert .rolexButton:hover {
    color: #212121;
    text-decoration: none;
}

.rolexButton {
    display: inline-block;
    padding:14px 17.5px;
    border: 1px solid #212121;
    background: #212121;
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 12px;
    line-height: 1em;
    -moz-transition: opacity .6s cubic-bezier(0.23,1,0.32,1),background-color .6s cubic-bezier(0.23,1,0.32,1),color .6s cubic-bezier(0.23,1,0.32,1),border-color .6s cubic-bezier(0.23,1,0.32,1);
    -o-transition: opacity .6s cubic-bezier(0.23,1,0.32,1),background-color .6s cubic-bezier(0.23,1,0.32,1),color .6s cubic-bezier(0.23,1,0.32,1),border-color .6s cubic-bezier(0.23,1,0.32,1);
    -webkit-transition: opacity .6s cubic-bezier(0.23,1,0.32,1),background-color .6s cubic-bezier(0.23,1,0.32,1),color .6s cubic-bezier(0.23,1,0.32,1),border-color .6s cubic-bezier(0.23,1,0.32,1);
    transition: opacity .6s cubic-bezier(0.23,1,0.32,1),background-color .6s cubic-bezier(0.23,1,0.32,1),color .6s cubic-bezier(0.23,1,0.32,1),border-color .6s cubic-bezier(0.23,1,0.32,1);
}

.rolexButton:hover, .rolexButton:focus{
    background-color: transparent;
    color: #212121;
}

.rolexButton:hover {
    color: white;
    text-decoration: none;
}

.rolexContactUs.rolexButton{
    margin-bottom: 20px;
}

#rolexProductImageGalleryThumbs {
    margin-right: -10%;
}

.rolexProductImageGalleryThumbs button {
    width: 90px;
    height: 90px;
    padding: 0;
    margin-left: 6px;
    border: 1px solid #e6e6e6;
    outline: none;
    background-color: white;
}

.rolexProductImageGalleryThumbs button img {
    width: 100%;
}

.rolexProductImageGalleryThumbs button:first-child {
    margin-left: 0;
}

.rolexProductImageGalleryThumbs button.active {
    opacity: 0.5;
}

.rolexProductPageImage {
    max-width: 100%;
    height: 550px;
    margin: auto;
    -webkit-align-self: center; /* Safari 7.0+ */
    align-self: center;
}

.rolexProductDescBlock {
    -webkit-align-self: center; /* Safari 7.0+ */
    align-self: center;
    width: 80%;
    max-width: 520px;
    margin: auto;
}

.rolexProductColourInvert{
    color: #e6e6e6;
    background: #212121;
}

.youMayAlsoLike {
    clear: both;
    width: 100%;
    max-width: 1430px;
    margin: auto;
    font-size: 12px;
    color: #212121;
    background-color: white;
    border-top: 1px solid #e6e6e6;
    margin-top: 10px;
    padding: 60px 0 0;
}

.youMayAlsoLike .youMayAlsoLikeHeader {
    line-height: 1em;
    text-align: center;
    font-size: 30px;
    text-transform: uppercase;
}

.youMayAlsoLike .youMayAlsoLikeHeader:after {
    content: "";
    display: block;
    width: 50px;
    height: 2px;
    margin: 20px auto 30px;
    background-color: #212121;
}

.rolexYouMayAlsoLikeCarousel{
    max-width: 1152px;
    margin: auto;
}

.youMayAlsoLikeBlock {
    margin: 0;
}

.youMayAlsoLikeBlock img {
    -moz-transition: opacity .3s ease-out;
    -o-transition: opacity .3s ease-out;
    -webkit-transition: opacity .3s ease-out;
    transition: opacity .3s ease-out;
    margin-bottom: 0;
}

.youMayAlsoLikeBlock img:hover {
    opacity : 0.7;
}

.youMayAlsoLike img.productPageAltImage {
    display: none;
}

.youMayAlsoLikeBlock a {
    border: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

.youMayAlsoLikeBlock .youMayAlsoLikeBrandName {
    line-height: 1em;
    text-transform: uppercase;
    font-weight: normal;
}

.youMayAlsoLikeBlock .youMayAlsoLikeProductName {
    font-size: 0.9em;
    line-height: 1.6em;
    margin: 8px 0 20px;
    color: #818181;
}

.youMayAlsoLikeBlock a > h4 {
    text-align: center;
}

.rolexYouMayAlsoLikeCarousel .owl-dots, #rolexProductImageGallery .owl-dots {
    text-align: center;
    height: 20px;
    margin-top: 10px;
}

.rolexYouMayAlsoLikeCarousel .owl-dots button.owl-dot, #rolexProductImageGallery .owl-dots button.owl-dot {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: 0 3px;
    position: relative;
    opacity: .5;
    cursor: pointer;
    -moz-transition: opacity .3s ease-out;
    -o-transition: opacity .3s ease-out;
    -webkit-transition: opacity .3s ease-out;
    transition: opacity .3s ease-out;
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.rolexYouMayAlsoLikeCarousel .owl-dots button.owl-dot.active, #rolexProductImageGallery .owl-dots button.owl-dot.active {
    cursor: default;
    opacity: 1;
}

.rolexYouMayAlsoLikeCarousel .owl-dots button.owl-dot::before, #rolexProductImageGallery .owl-dots button.owl-dot::before {
    background-color: #818181;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    content: "";
    display: block;
    height: 10px;
    margin: 5px;
    width: 10px
}

.rolexYouMayAlsoLikeCarousel .owl-dots button.owl-dot::after, #rolexProductImageGallery .owl-dots button.owl-dot::after {
    border: 1px solid #818181;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    -moz-transform: scale(0.5,0.5);
    -ms-transform: scale(0.5,0.5);
    -webkit-transform: scale(0.5,0.5);
    transform: scale(0.5,0.5);
    -moz-transition: -moz-transform 1.4s cubic-bezier(0.23,1,0.32,1);
    -o-transition: -o-transform 1.4s cubic-bezier(0.23,1,0.32,1);
    -webkit-transition: -webkit-transform 1.4s cubic-bezier(0.23,1,0.32,1);
    transition: transform 1.4s cubic-bezier(0.23,1,0.32,1);
}

.rolexYouMayAlsoLikeCarousel .owl-dots button.owl-dot.active::after, #rolexProductImageGallery .owl-dots button.owl-dot.active::after {
    -moz-transform: scale(1,1);
    -ms-transform: scale(1,1);
    -webkit-transform: scale(1,1);
    transform: scale(1,1);
}

.rolexProductRow *:focus{
    outline-color: transparent !important;
}



.rolexYouMayAlsoLikeCarousel .owl-nav {
    height: 0px;
    width: 100%;
    margin-top: 0;
    position: absolute;
    top: calc(50% - 30px);
}
.rolexYouMayAlsoLikeCarousel.owl-carousel .owl-nav button {
    background: url(https://www.mayors.com/_ui/responsive/common/images/rolex/CarouselArrows.svg);
    display: block;
    width: 25px;
    height: 50px;
    margin-top: -25px;
    overflow: hidden;
    position: absolute;
    z-index: 101;
    top: 50%;
    text-indent: -9999px;
    text-decoration: none;
    opacity: 1;
    -moz-transition: opacity .3s ease-in;
    -o-transition: opacity .3s ease-in;
    -webkit-transition: opacity .3s ease-in;
    transition: opacity .3s ease-in;
}

.rolexYouMayAlsoLikeCarousel.owl-carousel .owl-nav button.owl-prev {
    left: -45px;
    right: auto;
    background-position: left top;
}

.rolexYouMayAlsoLikeCarousel.owl-carousel .owl-nav button.owl-next {
    left: auto;
    right: -45px;
    background-position: right bottom;
}

.rolexYouMayAlsoLikeCarousel.owl-carousel .owl-nav button:hover {
    opacity: .7;
}

.rolexYouMayAlsoLikeCarousel.owl-carousel .owl-nav button.disabled {
    display: none;
}

.rolexHeader.rolexProductRow {
    border-bottom: 1px solid #e6e6e6;
    margin-top: 0;
    position: relative;
}

.rolexHeaderPlaque {
    display: inline-block;
}

.rolexHeaderPlaque h1 {
    padding: 20px 40px;
    margin: 0;
}

.rolexHeaderPlaque img {
    width: 120px;
    height: auto;
}

nav.rolexHeaderNav {margin-left: auto;-webkit-align-self: center;align-self: center;}

nav.rolexHeaderNav ul {
    padding: 0;
    margin: 0;
}

nav.rolexHeaderNav ul > li, nav.rolexFooterNav ul > li {
    display: inline-block;
    margin-right: 30px;
    color: #818181;
    text-transform: uppercase;
}
nav.rolexHeaderNav ul > li > a:hover, nav.rolexFooterNav ul > li > a:hover, nav.rolexHeaderNav ul > li > .active, nav.rolexFooterNav ul > li > .active {
    color: #212121;
    text-decoration: none;
}

nav.rolexHeaderNav ul > li > #rolexContactUsNav {
    margin-right: 40px;
}

.rolexFooterImg img {
    width: 100%;
}

.rolexFooterImg {
    margin: 0 auto 20px;
    width: 104px;
    display: block;
}

.rolexFooter.rolexProductRow {
    display: block;
}

nav.rolexFooterNav {
    text-align: center;
    line-height: 1em;
    border-top: 1px solid #e6e6e6;
    border-bottom: 1px solid #e6e6e6;
    padding: 20px 0;
}

nav.rolexFooterNav ul {
    margin: 0;
    padding: 0;
    display: inline-block;
}

.rolexFooterBackToTop {
    display: block;
    width: 50px;
    margin: 40px auto;
}

.rolexFooterPriceMsg {
    display: block;
    width: 80%;
    max-width: 560px;
    margin: 30px auto 0;
    text-align: center;
    font-size: 0.9em;
    line-height: 1.6em;
    color: #818181;
}

button#rolexFooterBackToTopButton {
    display: inline-block;
    text-decoration: none;
    border-radius: 50%;
    height: 50px;
    width: 50px;
    background-color: #212121;
    border: 1px solid;
    border-color: rgba(33,33,33,0.5);
    position: relative;
    font-size: 0;
    -moz-transition: background-color .3s ease-out;
    -o-transition: background-color .3s ease-out;
    -webkit-transition: background-color .3s ease-out;
    transition: background-color .3s ease-out;
}

button#rolexFooterBackToTopButton:before {
    border-style: solid;
    border-color: #e6e6e6;
    border-width: 1px 1px 0 0;
    content: "";
    height: 12px;
    width: 12px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -6px;
    margin-top: -5px;
    -moz-transition: border-color .3s ease-out;
    -o-transition: border-color .3s ease-out;
    -webkit-transition: border-color .3s ease-out;
    transition: border-color .3s ease-out;
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}


button#rolexFooterBackToTopButton:hover {
    background-color: rgba(255,255,255,0);
}

button#rolexFooterBackToTopButton:hover::before {
    border-color: #212121;
}

#rolexProductImageGallery .owl-nav {
    height: 0px;
    width: 100%;
    margin-top: 0;
    position: absolute;
    top: calc(50% - 30px);
}

#rolexProductImageGallery .owl-nav button {
    background: url(https://www.mayors.com/_ui/responsive/common/images/rolex/CarouselArrows.svg);
    display: block;
    width: 25px;
    height: 50px;
    margin-top: -25px;
    overflow: hidden;
    position: absolute;
    z-index: 101;
    top: 50%;
    text-indent: -9999px;
    text-decoration: none;
    opacity: 1;
    -moz-transition: opacity .3s ease-in;
    -o-transition: opacity .3s ease-in;
    -webkit-transition: opacity .3s ease-in;
    transition: opacity .3s ease-in;
}

#rolexProductImageGallery .owl-nav button.owl-prev {
    left: 38px;
    right: auto;
    background-position: left top;
}

#rolexProductImageGallery .owl-nav button.owl-next {
    left: auto;
    right: 38px;
    background-position: right bottom;
}


#rolexProductImageGallery .owl-nav button:hover {
    opacity: .7;
}

#rolexProductImageGallery .owl-nav button.disabled {
    display: none;
}

.rolexProductTitleBlock .productDetails .pceDisplay {
    font-size: 28px;
    margin-top: 0;
}

.rolexProductTitleBlock h1.rolexProductTitle span.rolexBrandTitle {
    display: block;
}

.pceDisplay {
    visibility: hidden;
}

.pceDisplay .rolexVatText {
    font-size: 12px;
    text-transform: initial;
}

.page-rolexProductDetails .rolexProductTitle .collectionName {
    color: #828282;
    margin-bottom: 0px;
    font-size: 0.6em;
    line-height: 18px;
}

/* PLP */

.plpContainer .productSort {
    display: none;
}

.plpContainer .productTile {
    width: 33.3333333%;
    margin-bottom: 30px;
    background-color:transparent;
    -moz-transition: background-color ease-out 0.3s;
    -o-transition: background-color ease-out 0.3s;
    -webkit-transition: background-color ease-out 0.3s;
    transition: background-color ease-out 0.3s;
}

.plpContainer .productTile:hover {
    background-color: #f7f7f7;
}

.productListerSecondary {
    display: none !important;
}

.productTile .productListerPrimary {
    max-height: 164px;
    width: auto;
    max-width: 290px;
    margin: 0 25px;
}

.productTile a {
    text-align: center;
}

.productTile .productTileBrand {
    text-transform: uppercase;
    color: #212121;
    margin-bottom: 6px;
}

.productTile .productTileText {
    font-size: 12px;
}

.productTile .productTileName {
    font-size: 0.9em;
    line-height: 1.6em;
    color: #818181;
}

.productTile .productTilePrice, .productTile .productTileIfc { display: none;}


.rolexVatText {
    font-size: 12px;
    text-transform: initial;
}
.appliedFiltersContainer {
    display: block !important;
    margin-bottom: 40px;
    height: 45px;
}

.appliedFilters {
    display: none;
}

.appliedFiltersContainer:before {
    content: "Filter Your Search";
    display: block;
    text-align: center;
    margin: 10px 0;
}

.appliedFiltersHeader span:first-child {
    display: none;
}

.appliedFiltersHeader .clearFacets:before, .mobileFacetsFooter .clearFacets:before {
    content: '';
    background-image: url(https://www.mayors.com/_ui/responsive/common/fa-svgs/arrow-rotate-right-light.svg);
    background-repeat: no-repeat;
    background-position: center;
    height: 10px;
    padding-left: 20px;
    position: relative;
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
    transform: rotate(315deg);
    display: inline-block;
}

.appliedFiltersHeader .clearFacets:after, .mobileFacetsFooter .clearFacets:after  {
    content: "Reset Filter";
    font-size: 12px;
    text-transform: uppercase;
    margin-left: 2px;
}

.clearFacets {
    position: relative;
    font-size: 0;
    width: 100%;
    text-align: center;
    height: 16px;
    color: #818181;
}

.appliedFiltersContainer[style*="display: none"] .clearFacets {
    opacity: 0.5;
}

.facetItem.facetOpen .facetOptions {
    max-height: none;
    margin: 0 0 14px;
}

.facetItem {
    border-bottom: 1px solid rgba(129,129,129,0.2);
}

.facetItems {
    border-top: 1px solid rgba(129,129,129,0.2);
}

.facetTitle {
    padding: 10px 0 20px;
    font-size: 12px;
    color: #212121;
}

.facetItem .facetOptions li {
    padding: 0;
    margin-bottom: 6px;
    font-size: 12px;
    color: #212121;
}

.facetItem .facetOptions li:hover{
    text-decoration: none;
    color: #A37E2C;
}

.facetOptions li:before {
    content: '';
    width: 17px;
    height: 17px;
    margin-top: 1px;
    border: 1px solid #cdcdcd;
    background-color: white;
    display: block;
    float: left;
    margin-right: 8px;
}

.facetOptions li.filterSelected:before {
    background-color: #212121;
}

.facetItem .facetTitle:after {
    content: '';
    background-image: url(https://www.mayors.com/_ui/responsive/common/fa-svgs/plus-light.svg);
    background-position: center;
    background-repeat: no-repeat;
    top: 0;
    margin-top: 10px;
}

.facetItem.facetOpen .facetTitle:after {
    content: '';
    background-image: url(https://www.mayors.com/_ui/responsive/common/fa-svgs/minus-light.svg);
    background-position: center;
    background-repeat: no-repeat;
    top: 0;
    margin-top: 10px;
}

.plpContainer .facetItems-priceSlider {
    display: none !important;
}

.facetItem.facet-rolexFamily .facetOptions{
    overflow: visible;
    max-height: none;
}

.facetItem.facet-rolexFamily .facetOptions a {
    white-space: nowrap;
    padding: 4px 0;
    cursor: pointer;
    outline: none;
    width: 100%;
    display: inline-block;
    text-decoration: none !important;
    font-size: 12px;
}
.facetItem.facet-rolexFamily .facetOptions a:hover {
    color: #a37e2c;
}

.facetItem.facet-rolexFamily .facetOptions a.activeRolexFamily {
    color: #b4b4b4 !important;
}

.page-rolexProductGrid .productListPaypalCreditBlock {
    display: none;
}

@media (min-width: 901px){

    .rolexMobileOnly,
    .rolexProductRow .rolexProductHalfRow.rolexMobileOnly,
    #rolexProductImageGallery .owl-dots {
        display: none;
    }

}

@media (max-width: 900px) {

    .appliedFiltersHeader .clearFacets:before, .mobileFacetsFooter .clearFacets:before {
        top: 12px;
    }

    .rolexListingContainer div.closeFacets {
        position: absolute;
        right: 10px;
    }

    .rolexDesktopOnly { display: none !important; }

    .rolexProductRow {
        flex-direction: column;
    }

    .rolexProductRow .rolexProductHalfRow{
        width: 100%;
    }

    .rolexProductRow .rolexProductHalfRow.rolexProductTitleDetails{
        order: 1;
        margin-top: 40px;
    }

    .rolexProductRow .rolexProductHalfRow .rolexProductTitleBlock, .rolexProductDescBlock{
        max-width: 90%;
        width: 90%;
        padding: 0;
    }

    .rolexYouMayAlsoLikeCarousel .owl-nav, #rolexProductImageGallery .owl-nav { display: none; }

    .rolexProductTitle {
        text-align: center;
        font-size: 18px;
        color: #212121;
        line-height: 1.3em;
    }

    .rolexProductRow.rolexProductRowGrey {
        background: transparent;
    }

    #rolexProductImageGallery .owl-stage {
        background: #f7f7f7;
    }

    .rolexProductTitle span {
        font-size: 14px;
        margin-bottom: 8px;
        color: #A37E2C;
    }

    .rolexProductTitle .rolexProductBriefDesc {
        margin-top: 16px;
        color: #212121;
        font-size: 14px;
        line-height: 1.8;
    }

    .rolexContactUs.rolexContactUsMobile.rolexButton {
        display: flex;
        margin: 25px auto 10px;
    }

    .rolexYouMayAlsoLikeCarousel .owl-dots, #rolexProductImageGallery .owl-dots {
        margin-top: 20px;
    }

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


    .rolexProductHalfRow.rolexProductColourInvert {
        order: 6;
    }


    .rolexProductHalfRow.rolexProductColourInvert .rolexProductDescBlock {
        padding: 40px 0;
        width: 90%;
    }

    .rolexProductDescBlock h2 {
        font-size: 18px;
    }

    .youMayAlsoLike .youMayAlsoLikeHeader {
        font-size: 17px;
        line-height: 1.3;
        letter-spacing: .05em;
    }

    .youMayAlsoLike {
        margin-top: 0;
        padding: 40px 0;
    }

    .youMayAlsoLikeBlock .youMayAlsoLikeProductName {
        margin: 6px auto;
    }

    .youMayAlsoLike .youMayAlsoLikeHeader:after {
        margin: 16px auto 20px;
    }

    .rolexFooter.rolexProductRow {
        display: flex;
    }

    .rolexFooter.rolexProductRow > * {
        display: flex;
    }

    .rolexFooter.rolexProductRow .rolexFooterPriceMsg {
        order: 1;
        margin: 0 auto 30px;
    }

    .rolexFooter.rolexProductRow .rolexFooterNav {
        order: 2;
        padding: 0;
        border: none;
        color: #818181;
    }

    .rolexFooter.rolexProductRow .rolexFooterImg {
        order: 3
    }

    .rolexFooter.rolexProductRow .rolexFooterBackToTop {
        order: 4;
        margin: 0 auto 20px;
    }

    nav.rolexHeaderNav ul > li, nav.rolexFooterNav ul > li {
        display: block;
        width: 100%;
        text-align: center;
        line-height: 40px;
        border-bottom: 1px solid #e6e6e6;
    }

    nav.rolexHeaderNav ul, nav.rolexFooterNav ul {
        display: block;
        width: 100%;
    }

    nav.rolexHeaderNav ul > li:first-child, nav.rolexFooterNav ul > li:first-child {
        border-top: 1px solid #e6e6e6;
    }

    .rolexFooterImg {
        width: 50px;
        height: 28px;
        margin: 30px auto 20px;
    }


    .rolexNavMenu {
        display: flex;
        margin-left: auto;
        align-self: center;
    }

    .rolexHeaderPlaque h1 {
        width: 120px;
        padding: 0;
        margin: 10px 20px;
        display: flex;
    }

    .rolexHeaderPlaque {
        display: flex;
        background-color: white;
        z-index: 4;
    }

    .rolexNavMenu:after {
        content: "\f078";
        font-family: Font Awesome\ 5 Pro;
        margin-right: 20px;
        margin-left: 6px;
        color: #c1c1c1;
        font-size: 0.8em;
    }

    .rolexNavMenu.navOpen:after {
        content: "\f077";
    }

    nav.rolexHeaderNav {
        width: 100%;
        margin-right: auto;
        box-shadow: 0 5px 8px rgba(129,129,129,0.3);
        position: absolute;
        background: white;
        top: 85px;
        height:auto;
        -moz-transition: -moz-transform .3s;
        -o-transition: -o-transform .3s;
        -webkit-transition: -webkit-transform .3s;
        transition: transform .3s;
        z-index: 2;
        box-shadow: 0 5px 8px rgba(129,129,129,0.3);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }


    nav.rolexHeaderNav.rolexHeaderNavClosed {


        -moz-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
        box-shadow: none;

    }



    .plpContainer .productTile {
        width: 50%;
    }

    .mobileSingleItem.plpContainer .productTile {
        width: 100%;
        margin: auto;
    }

    .mobileSortFilter > * {
        display: none;
    }

    .mobileSortFilter .showFilters {
        display: block;
        width: 100%;
        border-radius: 0;
        border-right: none;
        border-left: 0;
    }

    .productTile .productListerPrimary {
        margin: 0;
    }

    .gridFacets { z-index: 19;}


    .appliedFiltersContainer {
        display: none !important;
    }

    .mobileFacetsTopper {
        display: none;
    }

    .plpContainer .productSort{
        display: block;
        margin-left: -15px;
        margin-right: -15px;
        height: 40px;
    }

    .gridFacets .facetsOuterContainer {
        padding-top: 0;
    }

    .gridFacets .facetItem {
        padding: 0 15px;
        border-bottom: 1px solid rgba(129,129,129,0.2);
        border-top: none;
    }

    .gridFacets .facetItem .facetTitle, .gridFacets .facetItem .facetOptions {
        padding-left: 25px;
        padding-right: 25px;
        margin: 0;
    }

    .gridFacets .facetItem .facetTitle {padding: 15px 25px;background-color: #f1f1f1;}

    .gridFacets .facetItem.facetOpen .facetTitle {
        background: white;
    }

    .facetItem .facetOptions li, .facetItem .facetOptions a.facetAction {
        margin-bottom: 20px;
    }

    .gridFacets .facetItem.facetOpen .facetOptions {
        margin-bottom: 10px;
        margin-top: 20px;
    }

    .facetItem .facetTitle:after {
        right: 25px;
    }

    .plpContainer .productSort .col-md-9 {
        padding: 0;
    }

    .showFilters i.fal.fa-sliders-v:before {
        content: "\f01e";
        font-family: Font Awesome\ 5 Pro;
        font-size: 10px;
        -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
        transform: rotate(315deg);
        display: inline-block;
        color: #818181;
    }

    .showFilters i.fal.fa-sliders-v {
        line-height: 40px;
        position: absolute;
        left: 15px;
        top: 0;
    }

    .svg.filters.sliders {
        display: none;
    }

    .svg.filters.arrow {
        display: block;
        position: absolute;
        top: 12px;
        left: 20px;
        height: 10px;
        transform: rotate(315deg);
    }

    .showFilters .filterYourSearch {
        font-size: 12px;
        text-transform: uppercase;
        color: #818181;
    }

    .showFilters .showFiltersArrow,
    .showFilters .showFiltersChevron {
        width: 40px;
        height: 40px;
        display: inline-block;
        position: absolute;
        top: 0;
        padding:13px;
    }

    .showFilters .showFiltersArrow {
        left: 20px;
    }

    .showFilters .showFiltersChevron {
        right: 20px;
    }

    .showFilters .showFiltersArrow .svg,
    .showFilters .showFiltersChevron .svg{
        width: 12px;
        height:12px;
        filter: invert(61%) sepia(0%) saturate(7500%) hue-rotate(108deg) brightness(79%) contrast(75%);
    }

    .showFilters .showFiltersArrow .svg{
        transform: rotate(315deg);
    }

    .gridFacets .mobileFacetsFooter > span.clearFacets {
        height: 36px;
        color: #212121;
    }

    .gridFacets .mobileFacetsFooter > .closeFacets {
        font-size: 0;
        color: white;
        background-color: #212121;
        border-color: #212121;
        height: 36px;
    }

    .gridFacets .mobileFacetsFooter > .closeFacets:after {
        content: "Confirm";
        font-size: 12px;
        text-transform: uppercase;
    }

    .svg.closeFacets {
        height: 30px;
        top: 6px;
        right: 22px;
        left: auto;
    }
}

/* You may Also Like */

.youMayAlsoLikeRolex .youMayAlsoLikeHeader {
    margin: 0;
    margin-top: 40px;
    margin-bottom: 40px;
    text-align: center;
    font-size: 1.5em;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: normal;
}

.youMayAlsoLikeRolex.youMayAlsoLike .youMayAlsoLikeHeader:after {
    display:none;
}

.rolexYouMayAlsoLikeCarousel .youMayAlsoLikeImg {
    padding-bottom: 0;
}

.rolexYouMayAlsoLikeCarousel .youMayAlsoLikeBlock a > h4 {
    margin: 5px 0 0;
}

.rolexYouMayAlsoLikeCarousel .youMayAlsoLikeBlock a {
    padding-bottom: 30px;
}


.rolexYouMayAlsoLikeCarousel .youMayAlsoLikeBlock .youMayAlsoLikeBrandName {
    font-size: 13px;
    text-transform: none;
    font-weight: 700;
    line-height: 1.5em;
}

.rolexYouMayAlsoLikeCarousel .youMayAlsoLikeBlock .youMayAlsoLikeBrandName > span {
    display: block;
    font-size: 14px;
}

.rolexYouMayAlsoLikeCarousel .youMayAlsoLikeBlock .youMayAlsoLikeProductName .productTileName {
    font-size: 12px;
}

.rolexYouMayAlsoLikeCarousel .youMayAlsoLikeBlock .youMayAlsoLikePrice {
    display: none;
}

.rolexPreOwnedYouMayAlsoLikeCarousel.rolexYouMayAlsoLikeCarousel .youMayAlsoLikeBlock .youMayAlsoLikePrice {
    display: block;
}

.rolexYouMayAlsoLikeCarousel .owl-dots button.owl-dot::before,
.rolexYouMayAlsoLikeCarousel .owl-dots button.owl-dot::after,
.rolexYouMayAlsoLikeCarousel .owl-dots button.owl-dot span{
    display: none;
}

.rolexYouMayAlsoLikeCarousel .owl-dots button.owl-dot{
    background-color: #d4d4d4;
    opacity: 1;
    width: 40px;
    height: 4px;
    margin: 0 5px;
    border-radius: 2px;
}

.rolexYouMayAlsoLikeCarousel .owl-dots button.owl-dot.active {
    background-color: #127749;
}
