<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">html.lenis,
html.lenis body {
    height: auto;
}
/* html {
    overflow-y: hidden;
} */
.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}
.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}
.lenis.lenis-stopped {
    overflow: clip;
}
.lenis.lenis-smooth iframe {
    pointer-events: none;
}

/* ------------------------ */
/* -------- Button -------- */
/* ------------------------ */
.btn-search {
    cursor: pointer;
    display: block;
    width: 20px;
    height: 20px;
    background-color: unset;
    border: none;
    background-image: url("../img/mainsite/search.svg");
    background-position: center;
    background-repeat: no-repeat;
    padding: 0;
}

.btnm {
    padding: 10px 16px;
    text-align: center;
    cursor: pointer;
    transition: all 0.5s ease-in;
    outline: none;
    border-radius: unset;
    box-shadow: unset;
    text-decoration: unset;
}

.btn.curved {
    border-radius: 100px;
}
.btn.square {
    border-radius: unset;
}

.style-gold,
.style-gold:visited {
    color: var(--Neutral-800);
    background-color: var(--patek-bg);
    border: 1px solid var(--patek-bg);
}
.style-gold:hover {
    background-color: var(--White);
}

.style-red,
.style-red:visited {
    color: var(--White);
    background-color: var(--Primary-100);
    border: 1px solid var(--Primary-100);
}
.style-red:hover {
    color: var(--Primary-100);
    background-color: var(--White);
}

.style-w-red,
.style-w-red:visited {
    color: var(--Primary-100);
    background-color: var(--White);
    border: 1px solid var(--White);
}
.style-w-red:hover {
    color: var(--White);
    background-color: var(--Primary-100);
}

.style-black,
.style-black:visited {
    color: var(--White);
    background-color: var(--Neutral-700);
    border: 1px solid var(--Neutral-700);
}
.style-black:hover {
    color: var(--Neutral-700);
    background-color: var(--White);
}

.style-red:disabled,
.style-w-red:disabled,
.style-black:disabled {
    cursor: not-allowed;
    color: var(--Neutral-300);
    background-color: var(--Neutral-100);
    border: 1px solid var(--Neutral-100);
}

.style-tran-red,
.style-tran-red:visited {
    color: var(--Primary-100);
    border: 1px solid var(--Primary-100);
}
.style-tran-red:hover {
    color: var(--White);
    background-color: var(--Primary-100);
}

.style-tran-white,
.style-tran-white:visited {
    color: var(--White);
    border: 1px solid var(--White);
}
.style-tran-white:hover {
    color: var(--Primary-100);
    background-color: var(--White);
}

.style-tran-red:disabled,
.style-tran-white:disabled {
    cursor: not-allowed;
    color: var(--Neutral-400);
    background-color: transparent;
    border: 1px solid var(--Neutral-100);
}

.style-arrow,
.style-arrow:visited {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--Primary-100);
    padding: 4px 0;
}
.style-arrow:disabled {
    cursor: not-allowed;
    color: var(--Neutral-400);
}
.style-arrow::after {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    background: url("../img/mainsite/arrow-cta.svg");
    background-position: center;
    background-repeat: no-repeat;
    margin-left: 4px;
    transition: all 0.5s ease-in;
}
.style-arrow:hover::after {
    transform: translateX(8px);
    transition: all 0.5s ease-in;
    /* margin-left: 12px; */
}
.style-arrow:disabled::after {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    background: url("../img/mainsite/arrow-cta-disable.svg");
    background-position: center;
    background-repeat: no-repeat;
    margin-left: 4px;
}

.cta-text {
    cursor: pointer;
    position: relative;
    color: var(--Neutral-800);
    background-color: unset;
    border-radius: unset;
    border: none;
    padding: 4px 0;
}
.cta-text::after {
    content: "";
    position: absolute;
    width: 0;
    border-radius: 5px;
    height: 1px;
    bottom: -2px;
    left: 0;
    opacity: 0;
    background: var(--Neutral-800);
    transform-origin: bottom left;
    transition: opacity 0.5s, width 0s 0.5s;
}
.cta-text:hover::after {
    width: 100%;
    opacity: 1;
    transform-origin: bottom left;
    transition: all 0.5s ease-out;
}

/* ------------------------ */
/* -------- Icons --------- */
/* ------------------------ */
.icon {
    display: block;
    width: 16px;
    height: 16px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: all 0.5s ease-in;
}
.icn-global {
    background-image: url("../img/mainsite/globe-alt.svg");
}
.icn-arrow-down {
    background-image: url("../img/mainsite/arrow-down.svg");
}

.btn-shopping,
.btn-contact {
    display: block;
    width: 37px;
    height: 37px;
    transition: all 0.5s ease-in;
}
.btn-shopping:hover svg circle {
    fill: var(--Primary-100);
}
.btn-shopping:hover svg path {
    stroke: #F5F5F5;
}

.btn-contact:hover svg circle {
    fill: var(--White);
}
.btn-contact:hover svg path {
    stroke: var(--Primary-100);
}

.btn-search-close {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: none;
    border-radius: unset;
    background-color: unset;
    padding: 0;
    cursor: pointer;
}
.icn-close {
    width: 20px;
    height: 20px;
    background-image: url('../img/mainsite/x.svg');
}

.icon.page-next,
.icon.page-prev {
    width: 20px;
    height: 20px;
}
.page-next {
    background-image: url("../img/mainsite/cheveron-right-black.svg");
}
.page-prev {
    background-image: url("../img/mainsite/cheveron-left-black.svg");
}

.icon.share {
    width: 24px;
    height: 24px;
    background-image: url("../img/mainsite/share.svg");
}

.icon.priceinfo {
    margin-left: 12px !important;
    cursor: pointer;
    background-image: url("../img/mainsite/icon-info.svg");
}


.icon.group {
    width: 24px;
    height: 24px;
    display: block;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    margin-right: 16px;
}
.icon.case {
    background-image: url('../img/mainsite/icon-case.svg');
}
.icon.dial {
    background-image: url('../img/mainsite/icon-dial.svg');
}
.icon.movement {
    background-image: url('../img/mainsite/icon-movement.svg');
}
.icon.strap {
    background-image: url('../img/mainsite/icon-strap.svg');
}

.icon.addr {
    width: 20px;
    height: 20px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    margin-right: 8px !important;
}
.icon.location {
    background-image: url('../img/mainsite/location-marker.svg');
}
.icon.contact {
    background-image: url('../img/mainsite/chat-bubble-left-right.svg');
}
.icon.whatsapp {
    background-image: url('../img/mainsite/whatsapp.svg');
}
.icon.phone {
    background-image: url('../img/mainsite/phone.svg');
}
.icon.mail {
    background-image: url('../img/mainsite/mail.svg');
}
.icon.opening {
    background-image: url('../img/mainsite/clock.svg');
}
.icon.line {
    background-image: url('../img/mainsite/line.svg');
}

.icon.int {
    width: 20px;
    height: 20px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    margin-right: 12px;
    background-image: url('../img/mainsite/OuterCircle.svg');
    transition: all 0.5s ease-in;
}

/* ------------------------ */
/* ------ Breadcrumb ------ */
/* ------------------------ */
#breadcrumb-main.collection_page {
    background-color: var(--Neutral-50);
}
.main-breadcrumb {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: row;
    column-gap: 8px;
    padding: 20px 0;
}
.main-breadcrumb li {
    display: flex;
    flex-direction: row;
    align-items: center;
    font-size: 0.751rem;
    line-height: 0.875rem;
    letter-spacing: 1.2px;
}
.main-breadcrumb li.first-parent::before,
.main-breadcrumb li::before {
    content: "/";
    display: block;
    margin-right: 8px;
}
.main-breadcrumb li:first-child::before {
    content: unset;
}
.main-breadcrumb li a {
    font-size: 0.751rem;
    line-height: 0.875rem;
    letter-spacing: 1.2px;
    text-decoration: unset;
    text-transform: uppercase;
    color: var(--Neutral-500);
}
.main-breadcrumb li.first,
.main-breadcrumb li.bc-mobile {
    display: flex;
}

/* ------------------------ */
/* ---- Retailer Header --- */
/* ------------------------ */

#retailer-header {
    width: 100%;
    /* position: fixed; */
    position: sticky;
    position: -webkit-sticky;
    left: 0;
    top: 0;
    z-index: 1000;
    background-color: var(--White);
    transition: transform 0.1s ease;
    /* transform: unset */
}

.main-header__desktop {
    position: relative;
    z-index: 10;
}
.main-header {
    width: 100%;
    height: 100%;
    border-bottom: 1px solid var(--Secondary-50);
    transition: height ease 0.5s;
}
.main-header--scrolled {
    height: 0;
}

.main-header__row {
    position: relative;
    justify-content: center;
    padding: 12px 0;
}
.main-header__col1 {
    grid-column: 1/3;
    display: grid;
    justify-content: start;
    align-items: center;
}
.main-header__col1 a.patek-author {
    position: relative;
    min-width: 106px;
    max-width: 145px;
    max-height: 85px;
}
.main-header__col1 a.patek-author::after {
    content: "";
    width: 100%;
    height: 100%;
    padding-top: 58.62%;
    display: block;
}
.main-header__col1 a.patek-author img,
.main-header__col1 a.patek-author picture {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    object-position: center;
    z-index: 1;
}

.main-header__col2 {
    grid-column: 6/8;
    display: grid;
    justify-content: center;
    align-items: center;
}
.main-header__col3 {
    grid-column: 11/-1;
    display: grid;
    justify-content: end;
    align-items: center;
    position: relative;
}
.rolex-iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
    right: 0;
    top: 0;
}
.wrp-rolex-iframe {
    width: 150px;
    height: 70px;
}

.full-logo {
    display: block;
    height: 80px;
}

.main-header__row img,
.main-header__row picture {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.second-header {
    width: 100%;
    transition: all 0.5s ease-in;
    border-bottom: 1px solid var(--Secondary-50);
}
.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

.second-header__row {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
}
.second-header__left {
    display: flex;
    flex-direction: row;
    align-items: center;
}
.second-header__right {
    display: flex;
    flex-direction: row;
    align-items: center;
    align-self: stretch;
}

.small-logo {
    width: 0;
    height: 25px;
    /* margin-right: 12px; */
    transition: all 0.5s ease-in;
}
.small-logo img,
.small-logo picture {
    width: 100% !important;
    height: auto !important;
    object-fit: contain;
}
.hide-icon {
    width: 0;
    margin-right: 0;
}

.desktop-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: row;
}
.desktop-menu li {
    margin: 13px 20px 13px 0;
    display: flex;
    padding: 10px 8px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    align-self: stretch;
}
.desktop-menu li a {
    position: relative;
    text-decoration: none;

    font-family: var(--nav-tagline-font-family);
    font-size: 0.875rem;
    line-height: 1rem;
    margin-top: 3px;
    padding-bottom: 2px;
    letter-spacing: 1.4px;
    color: var(--Neutral-700);
    font-weight: 300;
    text-align: center;
    text-transform: uppercase;
}
.desktop-menu li a:hover {
    font-weight: 400;
    letter-spacing: 1.123px;
}
.desktop-menu li a::before {
    display: block;
    content: attr(title);
    font-weight: bold;
    height: 0;
    overflow: hidden;
    visibility: hidden;
}
.desktop-menu li a::after {
    content: "";
    position: absolute;
    width: 0;
    border-radius: 5px;
    height: 1px;
    bottom: 0;
    left: 0;
    opacity: 0;
    background: var(--Neutral-700);
    transform-origin: bottom left;
    transition: opacity 0.5s, width 0s 0.5s;
}
.desktop-menu li a:hover::after {
    width: 100%;
    opacity: 1;
    transform-origin: bottom left;
    transition: all 0.5s ease-out;
}

.desktop-menu li.current-menu-item a {
    font-weight: 400;
    letter-spacing: 1.123px;
}
.desktop-menu li.current-menu-item a::after {
    content: "";
    position: absolute;
    width: 100%;
    border-radius: 5px;
    height: 1px;
    bottom: 0;
    left: 0;
    opacity: 1;
}

.nav-contact,
.nav-contact:visited {
    width: 150px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    background-color: var(--Primary-100);
    color: var(--White);
    transition: all 0.5s ease-in;
    margin-left: 20px;
}
.nav-contact:hover {
    color: var(--Primary-100);
    background-color: var(--Secondary-75);
}

.disable_scroll{
    position: fixed;
    overflow: hidden;
    overscroll-behavior: none !important;
    height: 100vh !important;
}

/* ------------------------ */
/* -------- Search -------- */
/* ------------------------ */
.wrp-search {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    background-color: var(--White);
    opacity: 0;
    transform: translateX(-100vw);
    transition: opacity 0.5s ease-in;
}
.wrp-search.visible {
    opacity: 1;
    z-index: 30;
    transform: translateX(0);
}
.body-search {
    padding: 40px 0 80px 0;
}
.search-close {
    grid-column: 1 / -1;
    text-align: right;
    margin-bottom: 40px;
}
.search-box {
    grid-column: 4 / 10;

    display: flex;
    flex-direction: column;
}

/** Custom Relevanssi style **/
#rlvlive {
    display: block;
    width: 100%;
    height: auto;
    position: relative;
}
.relevanssi-live-search-results {
    position: absolute;
    top: 0 !important;
    left: 0 !important;
    width: 100%;
    border-radius: 0 !important;
}
.relevanssi-live-search-result-status {
    display: none !important;
}
.relevanssi-live-search-result-status p {
    font-size: 1rem !important;
    line-height: 1.375rem !important;
    padding: 10px 1em !important;
}
.relevanssi-live-search-no-results, 
.relevanssi-live-search-didyoumean {
    padding: 10px 1em !important;
}
.relevanssi-live-search-result a {
    text-decoration: unset !important;
}

.rlv-has-spinner {
    width: 26px !important;
    height: 26px !important;
    border: 3px solid var(--Primary-100) !important;
    border-right-color: transparent !important;
    border-radius: 50%;
    position: relative;
    animation: loader-rotate 1s linear infinite;
    margin: 1em auto;
}
@keyframes loader-rotate {
    0% {
      transform: rotate(0);
    }
    100% {
      transform: rotate(360deg);
    }
}

/* .rlv-has-spinner::after {
    content: "";
    width: 8px;
    height: 8px;
    background: #0052ec;
    border-radius: 50%;
    position: absolute;
    top: -1px;
    left: 33px;
} */
.rlv-has-spinner::after {
    content: unset !important;
}

/* width */
#rlvlive ::-webkit-scrollbar {
	width: 8px;
    border-radius: 10px;
}
/* Handle */
#rlvlive ::-webkit-scrollbar-thumb {
	border-radius: 10px;
	background-color: var(--Neutral-100);
    background-clip: padding-box;
}
/* Track */
#rlvlive ::-webkit-scrollbar-track {
    background-color: var(--Neutral-50);
	border-radius: 10px;
    margin: 0 20px;
}

/* ------------------------ */
/* --------- Body --------- */
/* ------------------------ */
#page {
    position: relative;
}
.body-page {
    width: 100%;
    position: relative;
    z-index: 20;
    /* padding-top: 178px; */
}

/* ------------------------ */
/* -------- Footer -------- */
/* ------------------------ */
.wrp-footer__countries {
    width: 100%;
    background-color: var(--Neutral-700);
}
.wrp-footer__countries ul {
    list-style: none;
    padding: 8px 0;
    margin: 0;

    display: flex;
    padding: 8px 0px;
    justify-content: center;
    align-items: center;
    gap: 52px;
    align-self: stretch;
}
.wrp-footer__countries ul li:last-child {
    margin-right: 0;
}
.wrp-footer__countries ul li a,
.wrp-footer__countries ul li a:visited {
    font-family: var(--main-primary-font-family);
    text-decoration: none;
    color: var(--White);
    transition: color 0.45s;
}
.wrp-footer__countries ul li a:hover {
    color: var(--Neutral-200);
}

.wrp-newsletter {
    width: 100%;
    padding: 52px 0;
    background-color: var(--White);
}
.newsletter-info {
    grid-column: 1/5;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    flex: 1 0 0;
    align-self: stretch;
}
.newsletter-info h2,
.newsletter-info p {
    margin: 0;
    padding: 0;
}
.newsletter-info h2 {
    font-family: var(--headline-font-family);
}
.newsletter-info p {
    font-family: var(--main-primary-font-family);
}

.newsletter-form {
    grid-column: 7/-1;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 24px;
    flex: 1 0 0;
}

#newsletterFrm {
    width: 100%;
    display: flex;
    flex-direction: column;
    row-gap: 12px;
}
.form-row {
    grid-column: 1/-1;
    display: flex;
    flex-direction: row;
    gap: 12px;
    justify-content: space-between;
}
.form-group {
    width: 100%;
}
.form-group.half {
    width: 49%;
}
.form-group.w90 {
    width: 90%;
    display: flex;
    flex-direction: column;
    row-gap: 8px;
}
.form-group .error {
    color: var(--destructive-500-main);
}
.form-control {
    font-family: var(--main-primary-font-family);
    width: 100%;
    padding: 8px 12px !important;
    color: var(--Neutral-600) !important;
    background-color: var(--White) !important;
    border: 1px solid var(--Neutral-200) !important;
    border-radius: unset !important;
    outline: none !important;
}
.for-search {
    position: relative;
}
.for-search .form-control {
    padding: 8px 12px 8px 40px !important;
}
.input-search {
    position: absolute;
    bottom: 18px;
    left: 12px;
    display: block;
    width: 20px;
    height: 20px;
    background: url("../img/mainsite/search.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
.row-btn {
    width: 100%;
    text-align: left;
    margin-top: 12px;
}

.err-msg,
.err-msg-format {
    display: none;
}

.wrp-footer__menu {
    width: 100%;
    border-top: 0.7px solid var(--Secondary-50);
    background: var(--Neutral-50);
    padding: 40px 0 20px 0;
    position: relative;
    z-index: 1;
}

.footer-row {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.footer-menu {
    width: 50%;
    display: flex;
    flex-direction: row;
    column-gap: 52px;
}
.footer-menu__col {
    list-style: none;
    padding: 0;
    margin: 0;
    min-width: 100px;
    margin-bottom: 32px;
}
.footer-menu__col li {
    margin-bottom: 0px;
}
body.page-template-rolex-v7 .footer-menu__col li {
    margin-bottom: 5px;
}
.footer-menu__col li.headline {
    margin-bottom: 16px;
}
.footer-menu__col li.top {
    margin-top: 16px;
}
.footer-menu__col li.bottom {
    margin-bottom: 16px;
}
.footer-menu__col li.both {
    margin-top: 16px;
    margin-bottom: 16px;
}
.footer-menu__col li:last-child,
.footer-menu__col li.headline:last-child {
    margin-bottom: 0;
}
.footer-menu__col li a {
    font-family: var(--nav-tagline-font-family);
    color: var(--Neutral-800);
    font-size: 0.875rem;
    line-height: 1.125rem;
    text-decoration: none;
    font-weight: 300;
    transition: all 0.3s ease;
}
.footer-menu__col li a:hover {
    color: var(--Neutral-400);
}
.footer-menu__col li.headline a {
    font-family: var(--nav-tagline-font-family);
    text-transform: uppercase;
    font-size: 0.751rem;
    line-height: 0.875rem;
    letter-spacing: 1.2px;
    font-weight: 400;
}

.language-menu {
    width: 40%;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    column-gap: 20px;
}
.select-menu {
    max-width: 330px;
}
.select-menu .select-btn {
    font-family: var(--main-primary-font-family);
    min-width: 129px;
    display: flex;
    padding: 8px;
    justify-content: center;
    align-items: center;
    gap: 4px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--Neutral-800);
    cursor: pointer;
}
.select-menu .options {
    position: absolute;
    width: 129px;
    overflow-y: auto;
    max-height: 295px;
    padding: 10px;
    margin: 4px 0 0 0;
    background-color: var(--White);
    animation-name: fadeInDown;
    -webkit-animation-name: fadeInDown;
    animation-duration: 0.35s;
    animation-fill-mode: both;
    -webkit-animation-duration: 0.35s;
    -webkit-animation-fill-mode: both;
    list-style: none;


    pointer-events: none;
}
.cd-btn.select-btn,
.cd-menu.select-menu .options {
    min-width: 54px;
    width: 54px;
}

.select-menu .options .option {
    font-family: var(--main-primary-font-family);
    display: flex;
    padding: 8px 8px 8px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    align-self: stretch;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--Neutral-800);
    cursor: pointer;
}
.select-menu .options .option a,
.select-menu .options .option a:visited {
    font-family: var(--main-primary-font-family);
    text-decoration: none;
    color: var(--Neutral-800);
}
.cd-menu.select-menu .options .option {
    padding: 8px;
}
.cd-menu.select-menu .options {
    padding: 0;
}
.cd-menu.select-menu .options .option {
    padding: 0;
    text-align: center;
}
.cd-menu.select-menu .options .option a {
    display: block;
    width: 100%;
    padding: 8px;
}

.select-btn i {
    transition: 0.3s;
}
.select-menu.active .select-btn i.icn-arrow-down {
    transform: rotate(-180deg);
}
.select-menu.active .options {
    display: block;
    opacity: 0;
    z-index: 10;
    animation-name: fadeInUp;
    -webkit-animation-name: fadeInUp;
    animation-duration: 0.4s;
    animation-fill-mode: both;
    -webkit-animation-duration: 0.4s;
    -webkit-animation-fill-mode: both;

    pointer-events: all;
}

@keyframes fadeInUp {
    from {
        transform: translate3d(0, 30px, 0);
    }
    to {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}
@keyframes fadeInDown {
    from {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
    to {
        transform: translate3d(0, 20px, 0);
        opacity: 0;
    }
}
.footer-retailer {
    position: relative;
    z-index: 2;
    overflow: hidden;
}
.wrp-copyright p {
    font-family: var(--main-primary-font-family);
    color: var(--Neutral-700);
}

.footer-consult {
    width: 100%;
    padding: 100px 0;
    background-color: var(--Primary-100);
    display: flex;

    position: relative;
    z-index: 0;
}

.box-consult {
    grid-column: 5 / 9;
    display: flex;
    flex-direction: column;
    row-gap: 24px;
}

/* .scroller {
    overflow: auto;
    height: 100vh;
} */

.box-consult h2 {
    color: var(--White);
    text-align: center;
    margin: 0;
}
.box-consult__btn {
    display: flex;
    column-gap: 20px;
    align-items: center;
    justify-content: center;
}

.sticky-icon {
    position: fixed;
    z-index: 20;
    bottom: 20px;
    right: 20px;
    opacity: 0;
}
.sticky-icon ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
}
.sticky-icon ul li {
    margin-bottom: 16px;
}
.sticky-icon ul li:last-child {
    margin-bottom: 0;
}
.sticky-icon ul li a.sticky-btn {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 37px;
    height: 37px;
}

.hide_display {
    opacity: 0 !important;
}

/**
* For Rolex my
*/
.switch-for-rolex-my {
    display: flex;
    justify-content: flex-end;
}
.switch-for-rolex-my ul {
    list-style: none;
    padding: 0;
    margin: 0;

    display: flex;
    flex-direction: row;
    padding: 10px 0
}
.switch-for-rolex-my ul li {
    display: flex;
    margin-right: 10px;
    flex-direction: row;
    align-items: center;
    justify-content: center;

    font-family: var(--main-primary-font-family);
    font-size: 0.875rem;
    line-height: 1rem;
    letter-spacing: 1.4px;
    color: var(--Neutral-700);
}
.switch-for-rolex-my ul li::after {
    content: "|";
    display: block;
    margin-left: 10px;
}
.switch-for-rolex-my ul li:last-child::after {
    content: unset;
}
.switch-for-rolex-my ul li a {
    position: relative;
    text-decoration: none;
    font-family: var(--main-primary-font-family);
    font-size: 0.875rem;
    line-height: 1rem;
    margin-top: 3px;
    padding-bottom: 2px;
    letter-spacing: 1.4px;
    color: var(--Neutral-700);
    font-weight: 300;
    text-align: center;
    text-transform: uppercase;
}
.switch-for-rolex-my ul li.active a {
    font-weight: 400;
    letter-spacing: 1.123px;
}

/**
* Custom Contact Form 7
*/
#wpcf7-f47002-o1 {
    width: 100%;
}
.wpcf7 {
    width: 100%;
}
.wpcf7-form {
    width: 100%;
}
.c-newsletter p {
    width: 100%;
    display: flex;
    flex-direction: row;
    column-gap: 12px;
}
.wpcf7-form-control-wrap {
    width: 100%;
}
.wpcf7-spinner {
    background-color: var(--White);
}
.wpcf7-spinner::before {
    content: "";
    background-color: var(--Secondary-200);
}

#newsletterFrm .form-row::before,
#newsletterFrm .form-row::after {
    content: unset;
}

#newsletterFrm p {
    margin: 0;
    padding: 0;
}

input[type="submit"].wpcf7-submit {
    padding: 10px 16px;
    text-align: center;
    cursor: pointer;
    transition: all 0.5s ease-in;
    outline: none;
    border-radius: unset;
    box-shadow: unset;

    color: var(--White);
    background-color: var(--Neutral-700);
    border: 1px solid var(--Neutral-700);
}
input[type="submit"].wpcf7-submit:hover {
    color: var(--Neutral-700);
    background-color: var(--White);
}

.wpcf7-not-valid-tip {
    margin-top: 8px;
    color: var(--destructive-500-main);
}

.wpcf7 form .wpcf7-response-output {
    margin: 2em 0 1em;
    border: unset;
}

/**
* Remove WPML Development site notice
*/
.otgs-development-site-front-end {
    display: none;
}
</pre></body></html>