/**
    @section Product Profile Sections
 */
section.product-profile + section {
    margin-top: 3rem;
    }

/*
    @section Swatch
    The general look and feel of a colour/image swatch.
    These can be found on the product page for variant and 
    customisation options.
 */
.swatch {
    display: inline-flex;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    position: relative;
    vertical-align: middle;
    margin: 4px;
    cursor: pointer;
    border: 2px solid var(--field-border);
    }
.swatch:after {
    content: '';
    display: block;
    width: calc(100% + 8px);
    height: calc(100% + 8px);
    border: 2px solid transparent;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    position: absolute;
    border-radius: 4px;
    }

/**
    @section Form spacing
    
    Try to space sections evenly.
 */
.product-form-buttons,
.hiring-options,
.volume-pricing {
    padding: .5rem 0;
    }
.volume-pricing {
    margin-top: -1rem;
    }
.volume-prices-table {
    margin-top: 1rem;
    }

/*
    @section Quantity Field Display
    
    The style.json config file allows administrators to show/hide
    the quantity field on product pages. 
 */
.product-codes {
    display: flex;
    margin: 0 -.5rem;
    }
.product-code {
    margin: 0 .5rem;
    }
.product-details-area,
.product-form-aside {
    width: 100%;
    flex: 0 0 100%;
    max-width: 100%;
    }
@media all and (min-width: 960px) {
.product-details-area {
    flex-basis: 0;
    flex-grow: 1;
    max-width: calc(100% - 344px);
    }
.product-form-aside {
    max-width: 344px;
    }
}

/**
    @section Product Form
    
    Special additions to how we render the prices on product forms.
 */
.product-form .price.is-standard,
.product-form .price.is-rrp {
    margin: 0;
    text-transform: uppercase;
    font-size: 14px;
    font-family: /*style.text_font_family(*/"Roboto"/*)*/,Helvetica,Arial,sans-serif;
    letter-spacing: 1px;
    }
.product-form .price.is-current {
    font-size: 1.25rem;
    font-weight: /*style.heading_font_weight(*/700/*)*/;
    font-family: /*style.heading_font_family(*/"Roboto"/*)*/,Helvetica,Arial,sans-serif;
    letter-spacing: 1px;
    line-height: 1;
    }

/**
    @section Product Specifications
 */
table.specifications {
    width: 100%;
    }
table.specifications tr th,
table.specifications tr td {
    padding: 1rem 0;
    }
table.specifications tr td + td {
    padding-left: 1rem;
    }
table.specifications tr + tr {
    border-top: 1px solid var(--body-border);
    }

/**
    @section Product Downloads
 */
section.downloads ul {
    list-style: none;
    padding: 0;
    margin: 0;
    }
section.downloads ul li {
    padding: 0;
    margin: 0;
    background-color: var(--alternate-background);
    margin-bottom: 10px;
    }
section.downloads ul li:before {
    content: none;
    }

/**
    @section Download link
 */
a.download {
    color: inherit;
    text-decoration: none;
    position: relative;
    padding: 1rem 0;
    border-radius: 3px;
    display: block;
    padding: 1.5rem;
    transition: all .25s ease-in-out;
    }
a.download .download-file-info {
    font-size: 90%;
    }
a.download .download-file-suffix {
    text-align: center;
    margin-top: .5rem;
    }
a.download h4,
a.download .eyebrow,
a.download .highlight {
    transition: all .25s ease-in-out;
    }
a.download:hover,
a.download:focus {
    color: #fff;
    background: var(--link-color);
    }
a.download:hover h4,
a.download:hover .eyebrow,
a.download:hover .highlight,
a.download:focus h4,
a.download:focus .eyebrow,
a.download:focus .highlight {
    color: #fff;
    }
a.download:hover .download-description,
a.download:focus .download-description {
    opacity: .8;
    }
a.download:hover .eyebrow,
a.download:hover .download-file-info,
a.download:focus .eyebrow,
a.download:focus .download-file-info {
    opacity: .6;
    }
a.download:hover .evButton.is-round,
a.download:focus .evButton.is-round {
    color: var(--link-color);
    }
a.download:hover .evButton.is-round:before,
a.download:focus .evButton.is-round:before {
    background: #fff;
    }
a.download:hover .icon-download,
a.download:focus .icon-download {
    animation: download-pointer .5s ease-in-out infinite alternate;
    }
@keyframes download-pointer {
from {
    transform: translateY(0);
    }
to {
    transform: translateY(.25rem);
    }
}

/**
    @section Variations
 */
.product-variants {
    margin: 0 -.5rem;
    }
.product-variant {
    padding: 1rem .5rem;
    }
.product-variant .heading {
    margin-bottom: .5rem;
    display: block;
    }
.product-variant-options {
    display: flex;
    flex-wrap: wrap;
    margin: -.5rem;
    }
.product-variant-option {
    padding: .5rem;
    }
.product-variant-option label.variant-box {
    border: 2px solid var(--field-border);
    border-radius: 4px;
    padding: .5em 1em;
    margin: 0;
    height: 46px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all .25s ease-in-out;
    }
.product-variant-option label.variant-box:hover,
.product-variant-option label.variant-box:focus {
    background-color: var(--link-color);
    border-color: var(--link-color);
    color: #fff !important;
    }
.product-variant-option input[type="radio"] {
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
    clip: rect(1px 1px 1px 1px);
    clip: rect(1px,1px,1px,1px);
    white-space: nowrap;
    }
.product-variant-option input[type="radio"]:checked + label.variant-box {
    border: 2px solid var(--link-color);
    color: var(--link-color);
    cursor: pointer;
    }
.product-variant-option input[type="radio"]:disabled + label.variant-box,
.product-variant-option input[type="radio"]:disabled + label.swatch {
    opacity: .4;
    cursor: not-allowed;
    }

/*
    @section Customisation
    
 */
.customisation {
    padding: 1rem 0;
    }
.customisation-header {
    margin-bottom: .5rem;
    }
.customisation-option label,
.customisation-header label {
    display: flex;
    padding: .5rem;
    margin: -1rem;
    cursor: pointer;
    }
.customisation-option label > *,
.customisation-header label > * {
    padding: .5rem;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
    }
.customisation-option label > .customisation-option-label,
.customisation-option label > .customisation-header-label,
.customisation-header label > .customisation-option-label,
.customisation-header label > .customisation-header-label {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
    }
.customisation-option.type-swatch label,
.customisation-option.type-string label,
.customisation-header.type-swatch label,
.customisation-header.type-string label {
    align-items: center;
    }
.customisation-option .swatch + .evButton,
.customisation-header .swatch + .evButton {
    margin: 0 .5rem;
    }
.customisation-description {
    font-size: .875rem;
    }

/*
    @section Price Options
    
    This is generally only applicable when more than
    one price option is available to choose from.
    For example, when selecting month or year payments.
 */
.price-option label {
    display: flex;
    padding: .5rem;
    margin: -1rem;
    align-items: center;
    }
.price-option label > * {
    padding: .5rem;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
    }
.price-option label > .price-option-label {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
    }
.price-option .is-current .price-value {
    font-size: var(--heading-3-min);
    margin: 0 0 .25em;
    display: inline-block;
    line-height: 1.4em;
    color: var(--heading-color);
    font-family: var(--heading-font-family);
    font-weight: var(--heading-font-weight);
    font-style: var(--heading-font-style);
    }
@media screen and (min-width: 600px) {
.price-option .is-current .price-value {
    font-size: var(--heading-3-mid);
    }
}

@media screen and (min-width: 1600px) {
.price-option .is-current .price-value {
    font-size: var(--heading-3-max);
    }
}

/**
    @section Discontinued Products
 */
.discontinued {
    background: var(--alternate-background);
    padding: 2rem;
    border-radius: 5px;
    margin-top: 2rem;
    }
.discontinued .text-readable {
    margin: 0 auto;
    max-width: 40rem;
    }
.discontinued .alternative {
    background: var(--main-background);
    padding: 1.5rem;
    border-radius: 3px;
    }
.discontinued .alternative .evCategoryProduct .content {
    margin: 0;
    margin-top: 1rem;
    }
ul.evTabs {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--main-background);
    z-index: 999;
    justify-content: start;
    transition: transform .25s ease-in-out;
    transform: translateY(-100%);
    }
ul.evTabs li {
    margin-bottom: .5rem;
    }
ul.evTabs li a {
    padding-top: 1.3em;
    }
ul.evTabs li a:hover,
ul.evTabs li a:focus {
    border-bottom: 3px solid transparent;
    }
ul.evTabs li.active a {
    border-bottom: 3px solid var(--primary-color);
    }
ul.evTabs li.hidden {
    display: none;
    }
ul.evTabs.is-visible {
    transform: translateY(0);
    }
.product-form {
    margin-bottom: 10px;
    }
.description-container h2 {
    padding-top: 20px;
    }
a[name="downloads"] {
    padding-top: 20px;
    }
a[name="specifications"] {
    padding-top: 20px;
    }
a[name="help"] {
    padding-top: 60px;
    }
a[name="related"] {
    padding-top: 20px;
    }
.marker {
    display: inline-block;
    background: none;
    }
#product_footer_tools {
    position: fixed;
    left: calc(50% - 56px);
    padding: 1.5rem;
    bottom: 0;
    z-index: 99;
    display: flex;
    width: 112px;
    justify-content: center;
    align-items: center;
    transition: transform .25s ease-in-out;
    transform: translateY(100%);
    }
#product_footer_tools.is-visible {
    transform: translateY(0);
    }
#product_footer_tools i {
    color: #FFF;
    }
@media only screen and (min-width: 960px) {
.product-form {
    margin-bottom: 0;
    }
.description-container h2 {
    padding-top: 0;
    }
}

.sales-rep--details {
    padding-left: 2rem;
    }
.sales-rep {
    overflow: hidden;
    }
.sales-rep--avatar {
    display: block;
    width: 140px;
    height: 140px;
    position: relative;
    }
.sales-rep--avatar img {
    border-radius: 50%;
    display: inline-flex;
    position: relative;
    }
.sales-rep--avatar .sales-rep--halo {
    content: '';
    width: 208px;
    height: 208px;
    display: block;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    position: absolute;
    }
.sales-rep--avatar .sales-rep--halo .circle-1,
.sales-rep--avatar .sales-rep--halo .circle-2,
.sales-rep--avatar .sales-rep--halo .circle-3 {
    transform-origin: center;
    }
.sales-rep--avatar .sales-rep--halo .circle-1 {
    animation: rep-halo-1 10s ease-in-out 0s infinite;
    }
.sales-rep--avatar .sales-rep--halo .circle-2 {
    animation: rep-halo-2 12s ease-in-out 1s infinite;
    }
.sales-rep--avatar .sales-rep--halo .circle-3 {
    animation: rep-halo-3 14s ease-in-out 2s infinite;
    }
@keyframes rep-halo-1 {
0% {
    transform: rotate(0);
    }
80% {
    transform: rotate(360deg);
    }
100% {
    transform: rotate(360deg);
    }
}

@keyframes rep-halo-2 {
0% {
    transform: rotate(360deg);
    }
80% {
    transform: rotate(0);
    }
100% {
    transform: rotate(0);
    }
}

@keyframes rep-halo-3 {
0% {
    transform: rotate(0);
    }
80% {
    transform: rotate(360deg);
    }
100% {
    transform: rotate(360deg);
    }
}

/**
    @section Product Media
    
    Product media has a number of types:
    1. Images
    2. Videos
    3. 360 degree rotations
 */
.product-media {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    }
.product-media.is-fullscreen {
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    }
.product-media .offer {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    background-color: #EB1C66;
    color: #FFF;
    font-weight: 600;
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 3px;
    }
.media-items {
    position: relative;
    z-index: 0;
    overflow: hidden;
    }
.media-items-carousel {
    width: 100%;
    max-width: 100%;
    }
.media-item-container {
    position: relative;
    width: 100%;
    height: 100%;
    max-height: 95vh;
    display: flex;
    justify-content: center;
    align-items: center;
    }
.is-fullscreen .media-item-container {
    height: 100vh;
    max-height: 100vh;
    }
.media-item {
    width: 100%;
    height: auto;
    text-align: center;
    max-height: 100%;
    }
.is-fullscreen .media-item {
    height: auto;
    }
.is-fullscreen .media-item img {
    width: auto !important;
    max-width: 100%;
    max-height: 100%;
    display: inline-flex;
    }
.media-item {
    max-width: calc(100vh * 1.75);
    }
.media-item.is-image img {
    width: auto !important;
    max-width: 100%;
    max-height: 100%;
    display: inline-flex;
    }
.media-item .ev360 {
    display: inline-flex;
    }
.media-item .ev360 > .ev360Toolbar {
    left: 100px;
    top: 10px;
    }
.media-item .ev360 > .ev360Icon,
.media-item .ev360 > .ev360Toolbar {
    height: 40px;
    display: inline-flex;
    align-items: center;
    }
.media-item .ev360 > .ev360Icon,
.media-item .ev360 > .ev360Toolbar,
.media-item .ev360 > .ev360Preloader {
    color: inherit;
    }
.media-item .ev360 > .ev360Toolbar .ev360Previous {
    border: 0;
    }
.media-nav {
    text-align: center;
    z-index: 1;
    position: absolute;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    }
.media-nav.is-next {
    right: 0;
    bottom: 0;
    }
.media-nav.is-next .evButton {
    transform: translateX(100px);
    }
.media-nav.is-prev {
    left: 0;
    bottom: 0;
    }
.media-nav.is-prev .evButton {
    transform: translateX(-100px);
    }
.media-nav.is-fullscreen {
    top: 0;
    right: 0;
    }
.media-nav.is-fullscreen-exit {
    top: 0;
    right: 0;
    display: none;
    }
.media-items:hover .media-nav.is-next .evButton,
.media-items:hover .media-nav.is-prev .evButton {
    transform: translateX(0);
    }
.product-media.is-fullscreen .media-items .media-nav.is-fullscreen {
    display: none;
    }
.product-media.is-fullscreen .media-items .media-nav.is-fullscreen-exit {
    display: block;
    }
@media all and (min-width: 960px) {
.product-media .media-items .media-nav.is-prev,
.product-media .media-items .media-nav.is-next {
    bottom: auto;
    top: 50%;
    transform: translateY(-50%);
    }
}

.media-thumbnails-carousel {
    margin-top: 2rem;
    }
.media-thumbnails-carousel .owl-item.current .media-thumbnail {
    border-bottom: 3px solid;
    }
.media-thumbnail {
    position: relative;
    border-bottom: 3px solid transpatent;
    padding-bottom: .5rem;
    cursor: pointer;
    z-index: 0;
    max-width: 114px;
    }
.media-thumbnail-icon {
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    width: 24px;
    height: 24px;
    margin-top: -12px;
    margin-left: -12px;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    }
html.product-media-fullscreen body {
    overflow: hidden;
    }
.product-media .image-container:not(:first-child) {
    margin-top: 20px;
    }

/*
 * Product Image Disclaimer
 */
.product-image-disclaimer {
    border-radius: 4px;
    background: var(--alternate-background);
    padding: .75rem;
    }
.product-image-disclaimer p {
    margin-bottom: 0;
    padding-bottom: 0;
    padding-left: 1rem;
    }

.quantity-field {
    position: relative;
    }
.quantity-field button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    }
.quantity-field button.plus {
    right: 10px;
    }
.quantity-field button.minus {
    left: 10px;
    }
.quantity-field button:hover,
.quantity-field button:focus {
    background: var(--alternate-background);
    }
.quantity-field button .icon-minus,
.quantity-field button .icon-plus {
    color: var(--text-color);
    }
.quantity-field .evTextField {
    padding: 0 56px;
    }
.quantity-field .evTextField input {
    text-align: center;
    }

/**
    @section Product reviews
    
    The review section (from Stylus theme)
 */
section.reviews header,
section.reviews .reviews-sort,
section.reviews .reviews-list,
section.reviews .summary {
    margin-bottom: 1.5rem;
    }
section.reviews .summary .rating {
    margin: .5em 0;
    display: inline-block;
    }
section.reviews .summary .rating .evRating {
    display: inline-block;
    margin-bottom: .5em;
    }
section.reviews .summary .rating .statistics {
    border-top: 1px solid;
    padding-top: .5em;
    }
section.reviews .reviews-pagination {
    text-align: center;
    }

/**
    @section Review (from Stylus theme)
    
    An individual review contains the following features:
    1. Star rating
    2. Publish date
    3. Verified review badge
    4. Pros
    5. Cons
    6. Likes
 */
.review {
    background-color: #fff;
    border-radius: 5px;
    padding: 1.5rem;
    }
.review + .review {
    margin-top: 1.5rem;
    }
.review .header {
    margin-bottom: 1.5rem;
    }
.review .published,
.review .likes {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    }
.review .likes {
    border-right: 1px solid;
    padding-right: .625rem;
    }
.review .pros,
.review .cons,
.review .verified {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1.5rem;
    }
.review .pros:before,
.review .cons:before,
.review .verified:before {
    content: "\e0b1";
    font-family: "ev2";
    position: absolute;
    left: .125rem;
    color: #3BB879;
    }
.review .cons:before {
    content: "\e0b2";
    color: #ff9286;
    }
.review .verified {
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    font-weight: 600;
    }
.review .verified:before {
    content: "\e0ef";
    color: #74abfd;
    font-size: 1rem;
    top: -2px;
    }

/**
    @section Review footer (from Stylus theme)
    
    Contain the upvote/like buttons. 
 */
.review .footer button.like-button {
    margin-top: -3px;
    display: inline-block;
    width: 1.5rem;
    height: 1.5rem;
    padding: 0;
    margin: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 0;
    border-radius: 50%;
    outline: none;
    color: inherit;
    position: relative;
    }
.review .footer button.like-button:hover,
.review .footer button.like-button:focus {
    color: #fff;
    }
.review .footer button.like-button:hover .icon,
.review .footer button.like-button:focus .icon {
    font-size: 11px;
    }
.review .footer button.like-button.is-loading:after {
    content: '';
    display: block;
    position: absolute;
    width: 2rem;
    height: 2rem;
    top: 50%;
    left: 50%;
    margin-top: -1rem;
    margin-left: -1rem;
    border-radius: 50%;
    border: 2px solid;
    border-right-color: transparent;
    border-bottom-color: transparent;
    animation: spin 1s infinite linear;
    }

/**
    @section Reviewer information (from Stylus theme)
    
    Includes an Avatar and the customer's first name.
 */
.reviewer .avatar {
    text-align: center;
    display: inline-block;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    font-weight: bold;
    font-size: 12px;
    text-transform: uppercase;
    line-height: 1.5rem;
    margin-right: .5em;
    font-family: /*style.heading_font_family(*/"Roboto"/*)*/,Helvetica,Arial,sans-serif;
    font-weight: /*style.heading_font_weight(*/700/*)*/;
    font-style: /*style.heading_font_style(*/normal/*)*/;
    }
.reviewer .name {
    display: inline-block;
    vertical-align: middle;
    }

/**
    @section Write a Review (from Stylus theme)
    
    The "Write a review" feature opens in an ".ev-drawer".
 */
.new-review-form .fieldContainer {
    margin-top: 1rem;
    }

.cables-and-connectors .mini-banner {
    padding: 0;
    }
.cables-and-connectors .mini-banner .ev-layout {
    width: 100%;
    }

/* Hide link to Cable Design Tool initially */
.cdt-template {
    display: block;
    }
.cdt-template.hidden {
    display: none;
    }
