/**
 * Rolex category breadcrumbs (family / listing).
 * Migrated from rolex.min.css (.breadcrumbs-wrapper, .breadcrumbs).
 */

@media only screen and (max-width: 767px) {
    .rolex-wrapper .hide-mobile {
        display: none !important;
    }
}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
    .rolex-wrapper .hide-tablet {
        display: none !important;
    }
}

@media only screen and (min-width: 1024px) {
    .rolex-wrapper .hide-desktop {
        display: none !important;
    }
}

.rolex-wrapper .breadcrumbs-wrapper {
    border: 0;
    background-image: linear-gradient(90deg, #0b3e27, #197149);
}

.rolex-wrapper .breadcrumbs {
    max-width: 90%;
    margin: 0 auto;
    padding: 0 0 10px;
}

.rolex-wrapper .breadcrumbs .items {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.rolex-wrapper .breadcrumbs .items li {
    display: inline-flex;
    align-items: center;
    margin: 0;
    padding: 0;
}

.rolex-wrapper .breadcrumbs .items li:not(:last-child)::after {
    content: '';
    display: inline-block;
    margin: 0 12px 0 10px;
    color: #fff;
    font-size: 14px;
    line-height: 1.1;
    width: 6px;
    height: 6px;
    border-style: solid;
    border-color: #fff #fff transparent transparent;
    border-width: 2px 2px 0 0;
    transform: rotateZ(45deg);
}

.rolex-wrapper .breadcrumbs .items li a,
.rolex-wrapper .breadcrumbs .items li > * {
    color: #fff;
    font-size: 14px;
    line-height: 1.1em;
}

.rolex-wrapper .breadcrumbs .items li a {
    color: #fff !important;
    text-decoration: none;
    transition: color 0.2s ease-out;
}

.rolex-wrapper .breadcrumbs .items li a:hover {
    color: #9bf9ce !important;
}

.rolex-wrapper .breadcrumbs .items li .current {
    font-weight: 400;
}

@media only screen and (max-width: 767px) {
    .rolex-wrapper .breadcrumbs.breadcrumbsMobile {
        display: block !important;
    }

    .rolex-wrapper .breadcrumbs.breadcrumbsMobile .breadcrumbsMobile-inner {
        color: #767676 !important;
        font-size: 12px;
        line-height: 1.3em;
    }

    .rolex-wrapper .breadcrumbs.breadcrumbsMobile .breadcrumbsMobile-inner a {
        position: relative;
        color: #fff !important;
        font-size: 14px;
        line-height: 1.1em;
        text-decoration: none;
    }

    .rolex-wrapper .breadcrumbs.breadcrumbsMobile .breadcrumbsMobile-inner a::before {
        content: '';
        margin: 0 12px 0 10px;
        color: #fff !important;
        font-size: 18px;
        line-height: 1;
        vertical-align: middle;
        display: inline-block;
        width: 6px;
        height: 6px;
        border-style: solid;
        border-color: transparent transparent #fff #fff;
        border-width: 0 0 2px 2px;
        transform: rotateZ(45deg);
    }
}
