:root {
    --color-primary: #2F2564;
    --color-primary-font: #3F386A;
    --color-secondary: white;
    --color-ternary: #12CCAF;
    --color-success: #43A047;
    --color-danger: #E53935;
    --color-muted: #6c757d;
    --color-warning: #ff802b;
}

html {
    /* This is needed for displaying fixed full-viewport sized elements
    to keep the scroll bar on in the viewport but disabled see NavBarMenu */
    overflow-y: scroll;
}

a {
    color: var(--color-primary-font);
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    min-width: 320px;
    color: #3F386A; color: var(--color-primary-font);
    font-family: 'Montserrat', 'Verdana', sans-serif;
    font-weight: 400;
    -webkit-overflow-scrolling : touch;
}

html.pz-modal-open {
    overflow: auto; /* Needed so mobile safari works correctly with fixed positioned elements */
}
body.pz-modal-open {
    overflow: hidden; /* Set to hidden as the model-open class used to set it */
}

@media only screen and (max-width: 767px) {
    body.pz-modal-open {
        position: fixed; /* Set modal to fix so that only the dialog content is scrollable */
    }
}

.row {
    margin: 0;
}

.-pt-hidden {
    display: none;
}

.no-padding {
    padding: 0;
}
.no-padding-right {
    padding-right: 0;
}

.-pt-phonetradr-green {
    color: #12CCAF; color: var(--color-ternary);
}

.-pt-phonetradr-red {
    color: #FF585B;
}

.pt-check-circle-success {
    color: #12CCAF; color: var(--color-ternary);
    font-size: 24px;
}

.pt-cross-circle-fail {
    color: #FF585B;
    font-size: 24px;
}

.row-centered {
    text-align:center;
}

.col-centered {
    display:inline-block;
    float:none;
    /* reset the text-align */
    text-align:left;
    /* inline-block space fix */
    margin-right:-4px;
}

.truncate {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pt-sell-ticket-section__last-modified-on {
    font-size: 12px;
    font-weight: normal;
    margin-left: 10px;
}

.pt-sell-ticket-section__edit-btn {
    float: right;
    margin-top: -6px;
}

.reset-ul-styles {
    margin: 0;
    padding: 0;
    list-style: none;
}

.btn:focus,
.btn:active:focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn.active.focus {
    outline: 0;
}

.-pt-flipped-horizontally {
    transform: rotateY(180deg);
}

.wz-navigation .glyphicon {
    vertical-align: middle;
    font-size: 17px;
}
/*styles for contact buttons (call, email)
  this component (ContactButtons) is not part of the isomorphic app \
  and it doesn’t get included in the styles*/

/* temporarily hide contact-buttons */
.pte-contact-buttons-wrapper {
    display: none;
}
.pte-contact-btn {
    position: fixed;
    bottom: 20px;
    z-index: 2147483000;

    padding-top: 31px;
    height: 60px;
    width: 60px;

    border-radius: 50%;
    border: 2px solid #fff;
    background-color: #efefef;
    background-repeat: no-repeat;
    background-position: center 9px;
    background-size: 22px;

    box-shadow: 1px 6px 7px 0px rgba(120, 120, 120, .5);

    text-align: center;
    font-size: 12px;
    color: #3F386A; color: var(--color-primary-font);

    cursor: pointer;
}

.pte-contact-btn:hover {
    text-decoration: none;
    color: #3F386A; color: var(--color-primary-font);
}

.pte-contact-btn_call {
    background-image: url(/images/icons/call.svg);
    right: 100px;
}

.pte-contact-btn_mail {
    background-image: url(/images/icons/email.svg);
    right: 180px;
}

.pte-contact-btn_hide-mobile {
    display: none;
}

@media screen and (min-width: 480px) {
    .pte-contact-btn_hide-desktop {
        display: none;
    }

    .pte-contact-btn_hide-mobile {
        display: block;
    }
}

@media screen and (max-width: 480px) {
    .pte-hide-under-mobile-width {
        display: none !important;
    }
}

@media screen and (min-width: 480px) {
    .pte-hide-from-mobile-width {
        display: none !important;
    }
}

@media screen and (max-width: 768px) {
    .pte-hide-under-tablet-width {
        display: none !important;
    }
}

@media screen and (min-width: 768px) {
    .pte-hide-from-tablet-width {
        display: none !important;
    }
}

.pt-status-black-badge,
.pt-status-green-badge,
.pt-status-badge {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 80px;
    height: 48px;
    padding: 2px 24px 6px 12px;
    text-align: center;
    font-size: 13px;
    line-height: 1.15;
    font-weight: 500;
    color: white; color: var(--color-secondary);
}

.pt-status-badge {
    background-image: url(/images/product_details/badge.svg);
    background-repeat: no-repeat;
    background-size: contain;
}

.pt-status-green-badge {
    background-image: url(/images/product_details/green-badge.svg);
    background-repeat: no-repeat;
    background-size: contain;
}

.pt-status-black-badge {
    color: #FFFFFF; color: var(--color-secondary);
    background-image: url(/images/product_details/black-badge.svg);
    background-repeat: no-repeat;
    background-size: contain;
}

.pt-brand-new-badge {
    height: 64px;

    background-image: url(/images/product_details/brand-new-badge.svg);
    background-repeat: no-repeat;
    background-size: contain;
}

.pt-flip-image img {
    -moz-transform: scaleX(-1);
    -o-transform: scaleX(-1);
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
    filter: "FlipH";
    -ms-filter: "FlipH";
}

.pt-link,
.pt-link:active,
.pt-link:hover,
.pt-link:visited {
    color: #3F386A; color: var(--color-primary-font);
    text-decoration: none;
    font-size: 14px;
    height: inherit;
    cursor: pointer;
}

.pt-table {
    font-size: 14px;
}

.pt-table.pt-table_striped tr {
    height: 50px;
}

.pt-table.pt-table_striped tbody tr:nth-child(even) {
    background-color: #F4F3F8;
}

.bold {
    font-weight: bold;
}

strong, b {
    font-weight: 500;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: normal;
    margin: 0;
    padding: 0;
}

.pte-strong-red {
    color: #FF585B;
    font-weight: 500;
}

@keyframes pte-fade-in-move-up {
    from {
        opacity: 0;
        transform: translate3d(0, 20px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes pte-echo-circle {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.9;
    }

    100% {
        transform: translate(-50%, -50%) scale(2.5);
        opacity: 0;
    }
}

.pt-section-background {
    background: rgba(255, 255, 255, 1);
    background: -moz-linear-gradient(top, rgba(255, 255, 255, 1) 0%, rgba(241, 241, 248, 1) 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(255, 255, 255, 1)), color-stop(100%, rgba(241, 241, 248, 1)));
    background: -webkit-linear-gradient(top, rgba(255, 255, 255, 1) 0%, rgba(241, 241, 248, 1) 100%);
    background: -o-linear-gradient(top, rgba(255, 255, 255, 1) 0%, rgba(241, 241, 248, 1) 100%);
    background: -ms-linear-gradient(top, rgba(255, 255, 255, 1) 0%, rgba(241, 241, 248, 1) 100%);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(241, 241, 248, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#f8f8f9', GradientType=0);
}

.pt-section-banner-background {
    background: rgba(255, 255, 255, 1);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, #cbe3f7 100%);
}

.pt-fs-18 {
    font-size: 18px;
}

.pt-fs-22 {
    font-size: 22px;
}

.pt-fs-24 {
    font-size: 24px;
}

.pt-fs-36 {
    font-size: 36px;
}

.pt-no-margin {
    margin: 0;
}

.pt-color-green {
    color: #12CCAF; color: var(--color-ternary);
}

.-pt-bold{
    font-weight: 600;
}

@media screen and (max-width: 768px) {
    .pt-tablet-fs-12 {
        font-size: 12px;
    }
    .pt-tablet-fs-14 {
        font-size: 14px;
    }
    .pt-tablet-fs-16 {
        font-size: 16px;
    }
    .pt-tablet-fs-18 {
        font-size: 18px;
    }
    .pt-tablet-fs-22 {
        font-size: 22px;
    }
}

.pt-responsive-max-width-600 {
    margin-left: auto;
    margin-right: auto;
    max-width: 600px;
}

/** Custom bootstrap Color **/
.-pt-nav-pills.nav-pills>li.active>a,
.-pt-nav-pills.nav-pills>li.active>a:focus,
.-pt-nav-pills.nav-pills>li.active>a:hover {
    background-color: #42A5F5 !important;
}

.-pt-status-color-disabled {
    background-color: #9e9e9e !important;
}

.-pt-pre-positive,
.-pt-status-color-to-be-published,
.-pt-status-color-great-deal,
.-pt-status-color-collection,
.-pt-status-color-scheduled,
.-pt-status-color-dispatch,
.-pt-status-color-dispatching,
.-pt-status-color-pending {
    background-color: #26A69A !important;
}

.-pt-positive,
.-pt-status-color-warehouse-request,
.-pt-status-color-instant-listing,
.-pt-status-color-discounted,
.-pt-status-color-active {
    background-color: #66BB6A !important;
}

.-pt-post-positive {
    background-color: #9CCC65 !important;
}

.-pt-sub-status {
    background-color: #78909C !important;
}

.-pt-negative {
    background-color: #F44336 !important;
}

.-pt-post-negative {
    background-color: #E53935 !important;
}

.-pt-pre-neutral,
.-pt-status-color-shipping,
.-pt-status-color-shipped,
.-pt-status-color-instant-cash,
.-pt-status-color-in-repair,
.-pt-status-color-approved {
    background-color: #29B6F6 !important;
}

.-pt-neutral-one,
.-pt-status-color-return,
.-pt-status-color-assessment-failed,
.-pt-status-color-unverified,
.-pt-status-color-cancelled,
.-pt-status-color-declined {
    background-color: #5C6BC0 !important;
}

.-pt-neutral-two,
.-pt-status-color-warranty-code,
.-pt-status-color-expired {
    background-color: #AB47BC !important;
}

.-pt-post-neutral,
.-pt-status-color-replacement,
.-pt-status-color-reserved,
.-pt-status-color-sold,
.-pt-status-color-paused,
.-pt-status-color-instant-credit,
.-pt-status-color-assessed,
.-pt-status-color-assessment,
.-pt-status-color-post-assessment,
.-pt-status-color-pending-approval {
    background-color: #7E57C2 !important;
}

.-pt-pre-negative,
.-pt-status-color-paid,
.-pt-status-color-refund,
.-pt-status-color-payout,
.-pt-status-color-invoicing,
.-pt-status-color-dispatched,
.-pt-status-color-delivered,
.-pt-status-color-completed {
    background-color: #FFA726 !important;
}

.-pt-negative,
.-pt-status-color-default,
.-pt-status-color-standard-listing,
.-pt-status-color-published,
.-pt-status-color-received,
.-pt-status-color-send-to-oem,
.-pt-status-color-payment,
.-pt-status-color-pending-payment {
    background-color: #FF7043 !important;
}

.-pt-post-negative,
.-pt-status-color-featured,
.-pt-status-color-requested,
.-pt-status-color-claimed {
    background-color: #EF5350 !important;
}

/** End Custom bootstrap Color **/
