﻿*:focus {
    outline: none;
}

:root {
    --tiny: 10px;
    --small: 12px;
    --medium: 15px;
    --large: 18px;
    --xlarge: 24px;
    --xxlarge: 36px;
    --xxxlarge: 48px;
    --jumbo: 64px;
}

html, body {
    height: 100%;
    overflow: hidden;
    /* hide the scroll bar for IE version 10 +*/
    -ms-overflow-style: none;
    font-family: 'Roboto', sans-serif;
}

    body::-webkit-scrollbar {
        display: none;
    }

a {
    color: #2F3238;
}

    a:hover {
        color: #2F3238;
    }

/**------------------Don't use '!important' in the css styles.--------------------------------------------------*/
/* 
    ---------------------------------------------------------------------------------------------------------------
    Typograph (Heading) Style
    ---------------------------------------------------------------------------------------------------------------
*/
.h1 {
    font-weight: 300;
    font-size: 24px;
    line-height: 28px;
}

.h2 {
    font-weight: 300;
    font-size: 18px;
    line-height: 21px;
}

.h3 {
    font-weight: 900;
    font-size: 12px;
    line-height: 14px;
    text-transform: uppercase;
}

.h4 {
    font-weight: 900;
    font-size: 10px;
    line-height: 12px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.p1 {
    font-weight: normal;
    font-size: 12px;
    line-height: 14px;
}

.p2 {
    font-weight: normal;
    font-size: 10px;
    line-height: 12px;
}
/*
 ---------------------------------------------------------------------------------------------------------------
    Width group style
    ---------------------------------------------------------------------------------------------------------------
*/
.width-x200 {
    width: 200px
}

.width-70 {
    width: 70%
}

.width-90 {
    width: 90%;
}

.width-95 {
    width: 95%;
}

.width-100 {
    width: 100%;
}

.width-200 {
    width: 200%;
}

/* 
    ---------------------------------------------------------------------------------------------------------------
    Font style
    ---------------------------------------------------------------------------------------------------------------
*/

/** font size*/

.font-x9 {
    font-size: 9px !important
}

.font-x10 {
    font-size: 10px !important
}

.font-x11 {
    font-size: 11px !important
}

.font-x12 {
    font-size: 12px !important
}

.font-x15 {
    font-size: 15px !important
}

.font-x18 {
    font-size: 18px !important
}

.font-x24 {
    font-size: 24px !important
}

.font-x36 {
    font-size: 36px !important
}

.font-x48 {
    font-size: 48px !important
}

.font-x64 {
    font-size: 64px !important
}

/* bold and light text */

.bold-text {
    font-weight: 900;
}

.light-text {
    color: #606060;
}

.red-text {
    color: #C20047;
}

/* red and bold text */
.red-bold {
    color: #c20047;
    font-weight: bold;
}

/* color style */
.color-red {
    color: red;
}

/* 
    ---------------------------------------------------------------------------------------------------------------
    Font style
    ---------------------------------------------------------------------------------------------------------------
*/

/* display block, inline and inline-block */
.display-block {
    display: block;
}

.display-inline {
    display: inline;
}

.display-inline-block {
    display: inline-block;
}

/* float style */
.float-right {
    float: right;
}

.float-left {
    float: left;
}

/** Margin style*/

.marginless-container {
    margin-left: 0px;
    margin-right: 0px;
}

.margin-l-r-x0 {
    margin-left: 0px;
    margin-right: 0px;
}

.margin-l-x0 {
    margin-left: 0px;
}

.margin-l-x4 {
    margin-left: 4px;
}

.margin-l-x10 {
    margin-left: 10px
}

.margin-l-x15 {
    margin-left: 15px;
}

.margin-l-x20 {
    margin-left: 20px;
}

.margin-l-x30 {
    margin-left: 30px;
}

.margin-r-x5 {
    margin-right: 5px;
}

.margin-r-x10 {
    margin-right: 10px;
}

.margin-r-x16 {
    margin-right: 16px;
}

.margin-r-x20 {
    margin-right: 20px;
}

.margin-r-x40 {
    margin-right: 20px;
}

.margin-t-x0 {
    margin-top: 0px;
}

.margin-t-x4 {
    margin-top: 4px
}

.margin-t-x10 {
    margin-top: 10px
}

.margin-t-x15 {
    margin-top: 15px
}

.margin-t-x20 {
    margin-top: 20px
}

.margin-t-x25 {
    margin-top: 25px;
}

.margin-t-x30 {
    margin-top: 30px
}

.margin-t-x80 {
    margin-top: 80px;
}

.margin-b-x0 {
    margin-bottom: 0px;
}

.margin-b-x10 {
    margin-bottom: 10px
}

.margin-b-x15 {
    margin-bottom: 15px
}

.margin-b-x17 {
    margin-bottom: 17px
}

.margin-b-x20 {
    margin-bottom: 20px;
}

.margin-b-x22 {
    margin-bottom: 22px;
}

.margin-x15 {
    margin: 15px;
}

.padding-x5 {
    padding: 5px;
}

.padding-x10 {
    padding: 10px;
}

.padding-l-x0 {
    padding-left: 0px;
}

.padding-l-x3 {
    padding-left: 3px;
}

.padding-l-x5 {
    padding-left: 5px;
}

.padding-l-x10 {
    padding-left: 10px;
}

.padding-l-x28 {
    padding-left: 28px;
}

.padding-l-x31 {
    padding-left: 31px;
}

.padding-l-x50 {
    padding-left: 50px;
}

.padding-l-x80 {
    padding-left: 80px;
}

.padding-r-x10 {
    padding-right: 10px;
}

.padding-r-x20 {
    padding-right: 20px;
}

.padding-r-x25 {
    padding-right: 25px
}

.padding-r-x30 {
    padding-right: 30px
}

.padding-r-x40 {
    padding-right: 40px
}

.padding-r-x45 {
    padding-right: 45px
}

.padding-r-x70 {
    padding-right: 70px
}

.padding-t-x5 {
    padding-top: 5px
}

.padding-t-x10 {
    padding-top: 10px
}

.padding-t-x16 {
    padding-top: 16px
}

.padding-t-x20 {
    padding-top: 20px
}

.padding-b-x20 {
    padding-bottom: 20px;
}

.padding-b-x30 {
    padding-bottom: 30px;
}

.padding-l-r-x15 {
    padding-left: 15px;
    padding-right: 15px;
}

/* 
    ---------------------------------------------------------------------------------------------------------------
    Text style
    ---------------------------------------------------------------------------------------------------------------
*/
/** text align*/
.align-left {
    text-align: left;
}

.align-right {
    text-align: right;
}

.align-center {
    text-align: center;
}

.vertical-align-top {
    position: relative;
    vertical-align: top;
}

.vertical-align-mid {
    vertical-align: middle;
}

/* text transform*/
.text-uppercase {
    text-transform: uppercase;
}

.text-lowercase {
    text-transform: lowercase;
}

.text-capitalize {
    text-transform: capitalize;
}

/* cursor pointer */
.cursor-pointer {
    cursor: pointer;
}

.cursor-default {
    cursor: default;
}

/* float group*/
.float-right {
    float: right;
}

.float-left {
    float: left;
}
/* position style */
.position-relative {
    position: relative;
}

/* 
    ---------------------------------------------------------------------------------------------------------------
    Blade/ Layout container css styles
    ---------------------------------------------------------------------------------------------------------------
*/
/** Container styles*/
.mainContainer {
    position: relative;
    display: flex;
    flex-direction: row;
    height: calc(100% - 50px);
    /*50px is the height of top nav*/
}

.contentContainer {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
}

.subBlockContainer {
    height: 100%;
    width: 100%;
    /*    background: #E5E5E5;*/
    background: white;
    overflow-y: hidden;
    box-shadow: 1px 0px 1px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    /*    border-right: 1px solid #dee2e6;*/
    /* min-width:1024px; */
}

.mat-radio-ripple {
    display: none;
}

.child-body {
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
}

    .child-body .searchInputGroup {
        margin: 0 auto;
        margin-bottom: 15px;
    }

    .child-body .push-left {
        display: inline-flex;
    }

.child-sidebar {
    height: 100%;
    -ms-overflow-style: auto;
    width: 252.4px;
    -webkit-box-shadow: 1px 1px 1px rgb(0 0 0 / 10%);
    box-shadow: 1px 1px 1px rgb(0 0 0 / 10%);
    display: inline-block;
    background: white;
}

.table-header-allign {
    margin-bottom: -2px !important;
    border-bottom: unset;
    z-index: 100;
}

.mat-mdc-table {
    width: 100%;
    border: 1px solid rgba(0,0,0,.12);
}

    .mat-mdc-table th.mat-mdc-header-cell {
        font-weight: bold;
        color: black !important;
        background: white;
    }

    .mat-mdc-table th.mat-mdc-header-cell, .mat-mdc-table td.mat-cell, .mat-mdc-table td.mat-footer-cell {
        font-size: 12px;
    }

        .mat-mdc-table th.mat-mdc-header-cell:after,
        .mat-mdc-table th.mat-mdc-header-cell:before {
            content: '';
            position: absolute;
            left: 0;
        }


        .mat-mdc-table th.mat-mdc-header-cell:after {
            bottom: -1px;
            border-bottom: 0.5px solid rgb(0 0 0 / 6%);
        }

.fixedTableHeader {
    position: sticky;
    top: 0;
    background-color: white;
    z-index: 100;
}

    .fixedTableHeader .shared-outer-wrapper {
        border-bottom: unset;
        -webkit-box-shadow: unset;
        box-shadow: unset;
    }

child-header {
    z-index: 101;
}

.subs-wrapper {
    padding-top: 0;
}

    .subs-wrapper .searchInputGroup {
        margin-top: 20px;
    }

.mTable table {
    width: 100%;
    border-left: 1px solid #dee2e6;
    border-right: 1px solid #dee2e6;
}

.mTable-header table {
    width: 100%;
    border: 1px solid #dee2e6;
}

.mat-dialog-body {
    padding: 24px;
}

.mat-dialog-wrapper > .mat-dialog-container {
    padding: unset;
}

.blockContainer {
    min-width: 250px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    background: white;
    height: 100%;
    border-right: 2px solid rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.1);
    /*z-index: 10;*/
    width: 250px;
}


.subBlockContainer_toplevel {
    /*z-index: 0 !important;*/
    overflow-y: hidden !important;
    flex: 1 1 auto;
}

.entry-container {
    /*width: 300%;
    min-width: 300%;*/
    width: 3300px;
    min-width: 3300px;
    background: white;
    height: 100%;
    /*overflow-x: auto;*/
    display: flex;
    flex-direction: row;
}

/* 
    ---------------------------------------------------------------------------------------------------------------
    flexbox-style-one subClass css styles
    ---------------------------------------------------------------------------------------------------------------
*/
.flexbox-style-one.blockContainer {
    width: 100%;
}

.flexbox-style-one .combination-loader {
    width: 100%;
    height: calc(100% - 35px);
    font-size: 12px;
    -webkit-box-orient: horizontal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    overflow-y: hidden;
    margin-left: -3px;
    /*    background: #E5E5E5;*/
}

.flexbox-style-one .child-loader {
    width: calc(100% - 253px);
    height: 100%;
    float: right;
}

.narrow-sidebar.blockContainer {
    width: 100% !important;
}

.narrow-sidebar {
    margin: auto;
    font-size: 12px;
}

    .narrow-sidebar .scroll-wrapper {
        /* height: calc(100% - 35px); */
        height: 100%;
        overflow-y: auto;
        overflow-x: hidden;
        -ms-overflow-style: auto;
        width: 249px;
        box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.1);
    }

.combination-loader {
    width: 220%;
    height: 100%;
}

.child-loader {
    width: calc(100% - 253px);
    height: 100%;
    float: right;
}

.table-wrapper {
    border: 1px solid #e6e6e6;
}

    .table-wrapper > table {
        width: 100%;
    }

.table-footer-wrapper {
    border: 1px solid #e6e6e6;
    margin-top: -2px;
}

    .table-footer-wrapper > table {
        width: 100%;
    }
/* 
    ---------------------------------------------------------------------------------------------------------------
    Content css styles
    ---------------------------------------------------------------------------------------------------------------
*/
.page-contents {
    overflow-x: auto;
    -ms-overflow-style: auto;
    overflow-y: hidden;
    display: flex;
    width: 100%;
    height: 100%;
}

.subBlockContent {
    -ms-overflow-style: auto;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    height: 100%;
    /*Keep the margin and padding to 0 to fit scrollbar */
    margin: 0px;
    padding: 0px;
    max-width: 984px;
    -webkit-box-shadow: 0 1px 1px rgba(0,0,0,.1);
    box-shadow: 0 1px 1px rgba(0,0,0,.1);
    border-right: 1px solid #dee2e6;
    background: white;
    margin-left: -1px;
}

/* 
    ---------------------------------------------------------------------------------------------------------------
    Wrapper css styles
    ---------------------------------------------------------------------------------------------------------------
*/
.inner-subBlock-wrapper {
    margin: 20px;
    padding: 0px;
    font-size: 12px;
}

.item-title-wrapper {
    padding: 20px;
    background: linear-gradient(179.07deg,#f5f5f5 27.45%,#ebebeb 97.82%);
}

.page-title-wrapper {
    font-size: 24px;
    vertical-align: middle;
    padding-bottom: 20px;
}

/*.filter-wrapper {
    margin-top: 10px;
    margin-bottom: 10px;
}*/

.filter-wrapper > div {
    margin-top: auto;
    margin-bottom: auto;
    font-size: 12px;
}

    .filter-wrapper > div:last-child {
        padding-left: 0px;
        padding-right: 0px;
    }

.page-description-wrapper > div {
    margin-top: auto;
    margin-bottom: auto;
}

.page-subtitle-wrapper {
    padding-bottom: 20px;
    font-size: 16px;
    font-weight: bold;
}

.page-main-wrapper {
    padding: 19px 7px 19px 7px;
}

.shared-outer-wrapper {
    background: #fff;
    border: 1px solid #e6e6e6;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-shadow: 0 2px 4px rgba(0,0,0,.1);
    box-shadow: 0 2px 4px rgba(0,0,0,.1);
}

    .shared-outer-wrapper > table {
        width: 100%;
    }

.shadow-wrapper {
    -webkit-box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.12);
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.12);
    -webkit-transition: all 0.3s cubic-bezier(0.15, 0.76, 0.5, 0.87);
    transition: all 0.3s cubic-bezier(0.15, 0.76, 0.5, 0.87);
    height: 100%;
    padding: 2em;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

    .shadow-wrapper:hover {
        -webkit-box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.12);
        box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.12);
    }

.produc-secondary-title-wrapper {
    font-size: 12px;
}

/* 
    ---------------------------------------------------------------------------------------------------------------
    Element css styles
    ---------------------------------------------------------------------------------------------------------------
*/

/* 
    ---------------------------------------------------------------------------------------------------------------
    CROSS BROWSER COMPATIBILITY
    ---------------------------------------------------------------------------------------------------------------
*/

/* Mozilla-Firefox Compatibility*/

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

input[type=number] {
    -moz-appearance: textfield;
}

input:invalid {
    box-shadow: none !important;
}




/* 
    ---------------------------------------------------------------------------------------------------------------
    BUTTON STYLE BEGIN
    ---------------------------------------------------------------------------------------------------------------
*/
/*#region Buttons */
.button {
    cursor: pointer;
    vertical-align: middle;
    text-align: center;
    display: inline-block;
    border: none;
    white-space: nowrap;
    font-weight: bolder;
    font-size: 12px;
    /* identical to box height */
    text-align: center;
    color: #FFFFFF;
    height: 23px;
    /* IE7 Fix */
    *zoom: 1;
    *display: inline;
    text-transform: capitalize;
}

.button-tiny {
    width: 68px;
    border-radius: 20px;
    padding: 3px;
}

.button-red {
    background-color: #C20047;
}

    .button-red:hover {
        background: #E90055;
    }

/* convert to quote button in the carts */
.button-internal {
    background-color: #802546;
}

    .button-internal:hover {
        background: #E90055;
    }

.button-large {
    width: 298px;
    border-radius: 20px;
}

.button-medium {
    width: 198px;
    border-radius: 20px;
}

.button-med {
    width: 148px;
    border-radius: 30px;
}

.button-mid {
    width: 74px;
    border-radius: 30px;
}

.button-small {
    width: 39px;
    border-radius: 30px;
}

.disable {
    cursor: not-allowed;
    pointer-events: none;
    background-color: rgb(241, 168, 195);
    border: 0px;
}



.addonbtn:disabled {
    opacity: 0.3;
}

.button:disabled {
    opacity: 0.3;
}
/* bootstrap toogle button */
.btn-dropdown {
    background-color: #fff;
    border: 1px solid #ccc;
    font-size: 12px;
}

.dropdown-menu {
    font-size: 12px;
}

.button-center {
    text-align: center;
    margin-top: 20px;
}

.button-center-left {
    margin-right: 10px;
}

.button-center-right {
    margin-left: 10px;
}

/* 
    ---------------------------------------------------------------------------------------------------------------
    BUTTON STYLE END
    ---------------------------------------------------------------------------------------------------------------
*/


/* 
    ---------------------------------------------------------------------------------------------------------------
    BEGIN of Login Page
    ---------------------------------------------------------------------------------------------------------------
*/
.login_page {
    height: 100%;
    width: 100%;
    background: #E7E6E3;
    margin: 0;
    background-image: url(../images/new_ui/login-background.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.logo {
    padding: 10px;
}

.container_login {
    width: 389px;
    height: 650px;
    position: absolute;
    min-width: 400px;
    top: 40%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    background: rgba(0, 0, 0, 0.4);
    font-size: 12px;
}

.header_login {
    text-align: center;
    color: black;
    margin: 25px 0px 25px 0px;
    font-size: 15px;
}

.input_box {
    background: transparent;
    color: white;
    border: none;
    border-bottom: 0.3px solid #FFFFFF;
    font-weight: bolder;
    font-size: 12px;
}


.forgotPasswordLink {
    margin: auto;
    cursor: pointer;
    font-size: 12px;
    text-align: center;
    color: white;
    margin-top: 15px;
}

    .forgotPasswordLink:hover {
        color: #e90055;
    }

.forgotPasswordText {
    font-weight: lighter;
    font-size: 18px;
    color: #FFFFFF;
    margin-top: 20px;
    margin-bottom: 20px;
}

.fill-form_login {
    color: white;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 15px;
}

.check-circle {
    margin-left: 310px;
    position: relative;
}

.fa-eye-slash {
    margin-left: 310px;
    position: relative;
    margin-top: 6px;
}

.fa-eye {
    margin-left: 310px;
    position: relative;
    margin-top: 6px;
}

.arrow-menu {
    padding-right: 5px;
}

.login_input {
    margin-bottom: 10px;
}

.login_button {
    background: #C20047;
    padding: 5px;
    color: white;
    border: solid 0.5px #C20047;
    cursor: pointer;
    border-radius: 20px;
    width: 293px;
    height: 25px;
    margin: auto;
    margin-top: 20px;
    font-size: 12px;
    padding-top: 4px;
}

    .login_button:hover {
        background: #e90055;
    }

.input_label {
    margin-top: 15px;
    font-size: 12px;
}

.login_label {
    display: flex;
    flex-direction: row;
    align-items: center;
    user-select: none;
}

.login_input_checkbox {
    margin-right: 10px;
    margin-top: 10px;
    font-weight: bold;
    font-size: 12px;
}

/* The customcheck */
.login_label {
    display: block;
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
    margin-top: 12px;
    cursor: pointer;
    font-size: 12px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    /* Hide the browser's default checkbox */
    .login_label input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
    }

.forgetRegister {
    padding: 0;
    list-style: none;
}

    .forgetRegister li:before {
        content: "\00BB \0020";
    }

    .forgetRegister li a {
        color: white;
        text-decoration: none;
    }

        .forgetRegister li a:hover {
            color: #C20047;
            text-decoration: underline;
        }

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 12px;
    width: 12px;
    background-color: transparent;
    border-radius: 2px;
    border: 0.75px solid #FFFFFF;
}

/* On mouse-over, add a grey background color */
.login_label:hover input ~ .checkmark {
    background-color: transparent;
}

/* When the checkbox is checked, add a blue background */
.login_label input:checked ~ .checkmark {
    background-color: transparent;
    border-radius: 2px;
    border: 0.75px solid #FFFFFF;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.login_label input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.login_label .checkmark:after {
    left: 3px;
    width: 5px;
    height: 8px;
    border: solid 0.2px white;
    border-width: 0 1px 1px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

#screenCover {
    opacity: 0.8;
    background-color: #ccc;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    z-index: 1000;
    display: none;
}

.login-error {
    color: #c20047;
    width: 298px;
    font-style: italic;
    font-weight: bold;
    font-size: 16px;
    border: solid 1px #c20047;
    border-radius: 5px;
    padding: 10px 20px 10px 20px;
    margin: auto;
    margin-top: 25px;
}

.checkIcon {
    height: 5px;
}
/* 
    ---------------------------------------------------------------------------------------------------------------
    End of Login Page
    ---------------------------------------------------------------------------------------------------------------
*/
/* 
    ---------------------------------------------------------------------------------------------------------------
    INPUT STYLE BEGIN
    ---------------------------------------------------------------------------------------------------------------
*/

.input-wrapper {
    border-radius: 20px;
    text-align: center;
    border: 1px solid #E6E6E6;
    padding: 5px;
    outline: none;
    background-color: white;
}

.input-wrapper-small {
    width: 42px;
    height: 23px;
}

.input-wrapper-mid {
    width: 54px;
    height: 23px;
}

.input-wrapper-large {
    width: 155px;
    height: 23px;
}

/* 
    ---------------------------------------------------------------------------------------------------------------
    FILTER STYLE BEGIN
    ---------------------------------------------------------------------------------------------------------------
*/

.searchInputGroup {
    width: 186px;
    height: 23px;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    font-size: 12px;
    font-style: italic;
    -ms-flex-item-align: stretch;
    align-self: stretch;
    border-radius: 20px;
    margin-left: 0px;
}

/* control the position of filter bar to be center aligned in the narrow mode menu */
.scroll-wrapper.sidebar-loader .searchInputGroup {
    margin: 0 auto;
    margin-bottom: 15px;
}

.searchIcon {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    border-right: none;
    margin: 0;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 10px;
    color: gray;
    font-size: 10px;
}

    .searchIcon img {
        width: 11.2px;
    }

.searchInput {
    width: 100%;
    outline: none;
    background: #fff;
    border: 1px solid #C20047;
    border-radius: 30px;
    font-size: 12px;
    font-style: italic;
    color: #606060;
    padding-left: 25px;
}

    /* clear default x in the input button in IE */
    .searchInput::-ms-clear {
        display: none;
    }

    .searchInput::placeholder {
        color: #606060;
        font-style: italic;
    }

.searchInput-small {
    width: 164px;
}

.searchInput-large {
    width: 298px;
}



/* Input Placeholder */
::-webkit-input-placeholder { /* WebKit, Blink, Edge */
    font-style: italic;
}

:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
    font-style: italic;
    opacity: 1;
}

::-moz-placeholder { /* Mozilla Firefox 19+ */
    font-style: italic;
    opacity: 1;
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
    font-style: italic;
}

::-ms-input-placeholder { /* Microsoft Edge */
    font-style: italic;
}

::placeholder { /* Most modern browsers support this now. */
    font-style: italic;
}

.btn.focus, .btn:focus {
    box-shadow: none;
}

/* 
    ---------------------------------------------------------------------------------------------------------------
    TITLE STYLE BEGIN
    ---------------------------------------------------------------------------------------------------------------
*/

/* change the name from page-title-position to title */
.title {
    display: inline-block;
    padding: 0px;
    font-weight: lighter;
    text-transform: capitalize;
}

.popup-title-font {
    font-size: 18px;
}

.blade-title-font {
    font-size: 22px;
}

/*
    PAGE TITLE DESCRIPTION STYLE BEGIN
*/

.page-title-description {
    font-size: 12px;
    margin-top: 18px;
}

/* 
    ---------------------------------------------------------------------------------------------------------------
    BREADCRUMB STYLE BEGIN
    ---------------------------------------------------------------------------------------------------------------
    change the name from pageTitle to breadcrumbWrapper
*/

.breadcrumbWrapper {
    padding: 5px;
    box-sizing: border-box;
    z-index: 10;
    flex-basis: auto;
    border-bottom: 1px solid rgba(128, 128, 128, .4);
    background-color: #1b1c20;
    color: #808080;
    padding: 2px;
}

    .breadcrumbWrapper i:hover {
        cursor: pointer;
    }

    .breadcrumbWrapper p a:not(:last-child) {
        color: #808080;
        text-decoration: none;
    }

    .breadcrumbWrapper p a:last-child {
        pointer-events: none;
        cursor: default;
        text-decoration: none;
        color: white;
    }


    .breadcrumbWrapper.white {
        background-color: white;
        color: #808080;
    }

        .breadcrumbWrapper.white p a:not(:last-child) {
            color: #C20047;
        }

        .breadcrumbWrapper.white p a:last-child {
            color: grey;
        }

    .breadcrumbWrapper.grey {
        background-color: #777474;
        color: white;
    }

        .breadcrumbWrapper.grey p a:not(:last-child) {
            color: white;
        }

        .breadcrumbWrapper.grey p a:last-child {
            color: black;
        }
/* 
    ---------------------------------------------------------------------------------------------------------------
    BOX STYLE BEGIN
    ---------------------------------------------------------------------------------------------------------------
*/
.infoSection {
    background-color: #fff;
}

/* change the name from infoSection-infoBox to infoSection-padding */
.infoSection-infoBox-padding {
    padding: 30px 35px;
}

.infoSection-detailBox-padding {
    padding: 26px;
}

.infoSection-title {
    font-size: 18px;
    font-weight: lighter;
    margin-bottom: 15px;
}

.infoSection-content {
    color: #606060;
    margin-bottom: 23px;
    font-size: 12px;
}

/* the box style in the order detail*/
.infoSection-title-bold {
    font-weight: bolder;
    font-size: 12px;
    text-transform: uppercase;
}

/* the infoSection-title in the narrow mode */
.narrow-sidebar .infoSection-title {
    font-size: 10px;
    line-height: 10px;
    text-transform: uppercase;
    color: #606060 !important;
    padding: 20px 0px 20px;
    margin: 0px 20px;
    border-bottom: 0.5px solid #E6E6E6;
}

.infowrapper, .address-wrapper,
.document-wrapper,
.nofoundwrapper {
    padding-top: 25px;
}

.infoSection-content-title {
    font-size: 10px;
    color: #606060;
}

.section-divider {
    margin-bottom: 30px;
    font-size: 12px;
}

    .section-divider > div:first-child {
        color: #606060;
        text-transform: uppercase;
        padding-bottom: 10px;
        height: 22px;
    }

    .section-divider > div:last-child {
        height: 12px;
    }

/* the icon box style, change the name later */
.document-wrapper a {
    text-transform: none !important;
    white-space: nowrap;
    text-decoration: none;
    color: #606060;
}

.document-wrapper .col-md-6, .document-wrapper .col-md-12 {
    font-size: 12px;
    padding: 0px;
    padding-bottom: 15px;
}

    .document-wrapper .col-md-6 a {
        color: #212529;
    }


.infoSection.infoSection-infoBox-padding.shadow-wrapper .list-group {
    padding-left: 20px;
}

    .infoSection.infoSection-infoBox-padding.shadow-wrapper .list-group .list-group-item {
        font-size: 12px;
        border: 0px;
        padding: 0px;
        margin-bottom: 15px;
        background: none;
    }

        .infoSection.infoSection-infoBox-padding.shadow-wrapper .list-group .list-group-item:hover {
            cursor: pointer;
            color: #C20047;
            font-weight: bolder;
            background: none;
        }

.list-group .list-group-item .small-logo-wrapper {
    display: inline-block;
    width: 25px;
}

.menu-wrapper .small-logo-wrapper {
    display: inline-block;
    width: 25px;
}

.row-eq-height {
    margin-bottom: 30px;
}

/* 
    ---------------------------------------------------------------------------------------------------------------
    TABLE STYLE BEGIN
    ---------------------------------------------------------------------------------------------------------------
*/
/*Table basic style */
table tr {
    border-style: unset;
    border-bottom: 1px solid #e6e6e6;
    text-align: left;
    padding-top: 5px;
    padding-bottom: 5px;
}

    table tr.row {
        margin-left: 0px;
        margin-right: 0px;
    }

table thead tr th {
    font-weight: bold;
    text-align: left;
    align-self: center;
    padding: 5px 0px 5px 0px;
    /*text-transform: uppercase;*/
    font-size: 12px;
}

table button {
    font-weight: bold;
    text-align: left;
}

button:focus {
    outline: none;
}

table td {
    font-size: 12px;
    /*align-self: center;*/
}

table tr.row th, table tr.row td {
    /*To fix IE bug*/
    display: block;
}

/*Table two rows style, Carts detail is example*/
table tbody tr .result_desc {
    color: #C20047;
    font-weight: bold;
    margin-bottom: 12px
}

table tbody tr .cart-result-info {
    font-size: 12px;
    margin-bottom: 5px;
    text-transform: uppercase;
}

table tbody tr a .result_desc {
    color: #C20047;
    font-weight: bold;
    text-transform: uppercase;
}

/*Table Secondary product title */
.secondary-title-wrapper {
    font-size: 12px;
    padding-left: 0px;
}
/**Table White CSS*/
table.white {
    background-color: white;
    font-size: 12px;
}

    table.white .hover-full-display, table.white th.highlight, table.white td.highlight, .table.white .hover-full-display, .table.white .th.highlight, .table.white .td.highlight {
        color: black;
        background-color: #C20047;
    }

    table.white th.left-border, table.white td.left-border, table.white tr.left-border td {
        border-left: 1px solid #DFDFDF;
    }

    table.white th.top-border, table.white td.top-border, table.white tr.top-border td {
        border-top: 1px solid #DFDFDF;
    }

    table.white th.top-border-light-white, table.white td.top-border-light-white, table.white tr.top-border-light-white td {
        border-top: 1px solid #BBB;
    }

    table.white th.bottom-border, table.white td.bottom-border, table.white tr.bottom-border td {
        border-bottom: 1px solid #DFDFDF;
    }

    table.white th.right-border, table.white td.right-border, table.white tr.right-border td {
        border-right: 1px solid #DFDFDF;
    }

    table.white tr.total-row {
        color: black;
    }

    table.white tbody, .table.white tbody {
        color: #343535;
    }

        table.white tbody tr:hover {
            background-color: rgba(196, 196, 196, 0.2);
        }
        /* When there are multiple rows nested*/
        table.white tbody tr.no-hover:hover {
            background-color: initial;
        }
    /* IE 7 fix */
    table.white td, table.white td a, .table.white .td, .table.white .td a {
        *color: #343535;
    }

    /* Fix for nested Table Body elements*/
    table.white tbody.nested-body {
        display: block;
        width: 100%;
    }

/* the table style in the checkout --> select end user */
.div-select {
    background: #fff;
    border: 1px solid #e6e6e6;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-shadow: 0 2px 4px rgba(0,0,0,.1);
    box-shadow: 0 2px 4px rgba(0,0,0,.1);
    background-color: white;
}
/* table in the promotion and Mirosoft */
.external-table {
    width: 100%;
}

.external-row {
    padding: 10px 10px;
}

    .external-row td {
        padding-right: 20px;
        padding-top: 20px;
        padding-bottom: 20px;
        border-bottom: 0.5px solid #E6E6E6;
        vertical-align: middle;
    }

    .external-row .external-img {
        width: 150px;
        height: 100px;
        border-radius: 5px;
    }

    .external-row .brand {
        font-style: normal;
        font-weight: 900;
        line-height: normal;
        font-size: 9px;
        letter-spacing: 0.05em;
        text-transform: uppercase;
        color: #C20047;
        padding-bottom: 5px;
    }

    .external-row .title {
        width: 571px;
        font-style: normal;
        font-weight: 300;
        line-height: normal;
        font-size: 18px;
        color: #2F3238;
        padding-bottom: 5px;
    }

    .external-row .description {
        width: 571px;
        font-style: normal;
        font-weight: normal;
        line-height: 20px;
        font-size: 12px;
        color: #606060;
    }
/* table footer in the subscription */

tfoot {
    text-align: right;
    float: right;
    width: 100%;
    border-top: 1px solid lightgrey;
    background-color: #f2f2f2;
}

    tfoot label {
        margin-right: 150px;
    }

.description-table {
    margin: 15px;
    margin-top: 0px;
}

    .description-table td {
        padding: 1rem;
    }

.description-table-sub {
    margin: 15px;
    margin-top: 0px;
}

.info-row td {
    vertical-align: middle;
}


/* the tabel style for add subscription  */
.description-popup {
    color: #C20047;
    font-weight: bold;
    margin-bottom: 10px;
}

.inforow {
    padding-top: 10px;
    padding-bottom: 0;
}

.editmpnidicon {
    color: #C20047;
}
/* the download document row in the orders */
.downloadrow {
    border-top: none;
    padding-bottom: 10px;
    padding-top: 5px;
    width: 100%;
}

/* middle row in the shipped orders */
.middlerow {
    border-top: none !important;
    border-bottom: none !important;
    font-size: 10px;
    text-transform: uppercase;
    color: #606060;
    padding-left: 15px;
    margin-left: 0px !important;
    padding-top: 10px;
}

.downloadtextcol {
    padding-right: 0px;
    font-weight: bold;
    font-size: 10px;
    text-transform: uppercase;
    opacity: 0.3;
    width: 17%;
    padding-left: 25px;
    margin-left: 4px;
    margin-top: 5px;
}

.downloadiconcol {
    padding-left: 0;
    width: 72%;
}

    .downloadiconcol a {
        padding-left: 5px;
    }

/* table text overflow */
.dd-table-text-overflow {
    max-width: 1px !important;
    text-overflow: ellipsis;
    display: table-cell;
    overflow: hidden;
}

/* IE 7 fix */
table.white td, table.white td a, .table.white .td, .table.white .td a {
    *color: #343535;
}
/* 
    cart-summary, order-item-detail, quotes-item-detail
    the grey wrapper for total price at the table bottom 
*/
.totalPrice-wrapper {
    background: #f5f5f5;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-bottom: 20px;
    padding-left: 20px;
    padding-right: 20px;
    margin-left: auto;
    margin-right: auto;
    border-bottom: 1px solid #e6e6e6;
    text-align: left;
}

    .totalPrice-wrapper div {
        padding-top: 5px;
    }

    .totalPrice-wrapper .price {
        font-weight: lighter;
        font-size: 18px;
        padding-top: 0;
    }

/* the warning above the table */
.confirm-all-warning {
    background-color: #FFF;
    color: #C20047;
    padding-right: 10px;
    display: none;
    border: 1px solid #DDD;
    display: table;
    width: 100%;
    font-weight: bolder;
    font-size: 12px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.top-bottom-space {
    padding: 10px;
}

    .top-bottom-space div:hover {
        /*background: #C20047;*/
    }

.info-icon {
    color: #C20047;
    cursor: pointer;
    font-weight: bolder;
    font-style: italic;
}

    .info-icon:before {
        content: "  i  ";
        margin: 0 3px 3px 3px;
        width: 18px;
        height: 18px;
        font-size: 12px;
        text-align: center;
        border-radius: 18px;
        vertical-align: middle;
        display: inline-block;
        border-color: #C20047;
        vertical-align: middle;
        font-style: italic;
        padding: 1px 2px 1px 1px;
    }

.info-icon-red:before {
    color: #DFDFDF;
    background-color: #C20047;
}

.info-icon-dark:before {
    color: #DFDFDF;
    background-color: #343535;
}

.info-icon-medium:before {
    color: #484847;
    background-color: #E7E6E3;
}

/* 
    ---------------------------------------------------------------------------------------------------------------
    COLLAPSE STYLE BEGIN
    ---------------------------------------------------------------------------------------------------------------
*/

/* header part */

.panel-title > a {
    color: #2F3238 !important;
    display: block;
    font-size: 12px;
    padding: 20px;
    font-weight: bold;
    text-decoration: none;
    padding: 17px;
}

.panel-subtitle {
    float: right;
    font-size: 12px;
    padding-right: 20px;
}

.panel-heading {
    background: #FFFFFF;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

.panel-subtitle {
    float: right;
    font-size: 12px;
    padding-right: 20px;
}

.lable-title {
    color: #606060;
    font-size: 12px;
    cursor: pointer;
}

/* body part */
.panel-body .panel-content .lable-title {
    color: #606060;
    font-size: 12px;
    cursor: default;
}

.panel-content {
    padding: 20px;
}

.panel-body .panel-content .paragraph-text {
    font-size: 12px;
}

/* triangle icon --> END USER DETAILS HEADER */
a[aria-expanded="true"] .triangle-down {
    border: solid black;
    border-width: 0 1px 1px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
    margin-left: 20px;
}

.triangle-down {
    border: solid black;
    border-width: 0 1px 1px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    margin-left: 20px;
}

/* reference input in the collapse and table */

.input-box {
    border: 1px solid #ccc;
}

.input-box-small {
    border: 1px solid #ccc;
    border-radius: 20px;
    width: 54px;
    height: 23px;
    text-align: center;
}

/* 
    ---------------------------------------------------------------------------------------------------------------
    ICON STYLE BEGIN
    ---------------------------------------------------------------------------------------------------------------
*/

.basic-icon {
    margin-right: 3.4px;
    background-size: cover;
    vertical-align: middle;
    /*float: left;*/
    display: inline-block;
    height: 30px;
    width: 30px;
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 60%;
    cursor: pointer
}

.edit-icon {
    background-image: url('/images/site-icons/black-red-icon/edit-icon.svg');
}

button.mdc-button:hover > span > i.edit-icon {
    background-image: url('/images/site-icons/black-red-icon/edit-icon-red.svg');
}

.edit-icon-hover, .edit-icon:hover {
    background-image: url('/images/site-icons/black-red-icon/edit-icon-red.svg');
}

.shoppingcart-icon {
    background-image: url('/images/site-icons/black-red-icon/clone-cart.svg');
}

button.mdc-button:hover > span > i.shoppingcart-icon {
    background-image: url('/images/site-icons/black-red-icon/clone-cart-red.svg');
}

.shoppingcart-icon-hover, .shoppingcart-icon:hover {
    background-image: url('/images/site-icons/black-red-icon/clone-cart-red.svg');
}

.delete-icon {
    background-image: url('/images/site-icons/black-red-icon/delete-icon.svg');
}

button.mdc-button:hover > span > i.delete-icon {
    background-image: url('/images/site-icons/black-red-icon/delete-icon-red.svg');
}

.delete-icon-hover, .delete-icon:hover {
    background-image: url('/images/site-icons/black-red-icon/delete-icon-red.svg');
}

.information-icon {
    background-image: url('/images/site-icons/information.svg')
}

    .information-icon:hover {
        background-image: url('/images/site-icons/information-hover.svg')
    }

.sale-icon {
    background-image: url('/images/site-icons/sale-icon.svg');
}

button.mdc-button:hover > span > i.sale-icon {
    background-image: url('/images/site-icons/sales-hover.svg');
}

.upload-icon-hover {
    background-image: url('/images/site-icons/upload-hover.svg');
}

button.mdc-button:hover > span > i.upload-icon {
    background-image: url('/images/site-icons/upload-hover.svg');
}

.upload-icon {
    background-image: url('/images/site-icons/upload.svg');
}

.download-icon {
    background-image: url('/images/site-icons/download.svg');
}

button.mdc-button:hover > span > i.download-icon {
    background-image: url('/images/site-icons/download-hover.svg')
}

button.mdc-button-disabled:hover > span > i.download-icon {
    background-image: url('/images/site-icons/download.svg');
    cursor: default;
}

.download-icon-white {
    background-image: url('/images/new_ui/outline_file_download_white_24dp.png');
}

.download-icon:hover {
    background-image: url('/images/site-icons/download-hover.svg')
}

.download-icon-white-lg {
    background-image: url('/images/new_ui/outline_file_download_white_24dp-lg.png');
}

.download-icon:hover {
    background-image: url('/images/site-icons/download-hover.svg')
}

.download-icon-hover {
    background-image: url('/images/site-icons/download-hover.svg')
}

.addnewuser-icon {
    background-image: url('/images/site-icons/black-red-icon/add-new-user.svg');
}

button.mdc-button:hover > span > i.addnewuser-icon {
    background-image: url('/images/site-icons/black-red-icon/add-new-user-red.svg');
}

.addnewuser-icon-hover, .addnewuser-icon:hover {
    background-image: url('/images/site-icons/black-red-icon/add-new-user-red.svg');
}

.associate-icon {
    background-image: url('/images/site-icons/black-red-icon/associate-icon.svg');
}

button.mdc-button:hover > span > i.associate-icon {
    background-image: url('/images/site-icons/black-red-icon/associate-icon-red.svg');
}

.associate-icon-hover, .associate-icon:hover {
    background-image: url('/images/site-icons/black-red-icon/associate-icon-red.svg');
}

.share-icon-white {
    background-image: url(/images/new_ui/outline_share_white_24dp.png);
}

.add-icon {
    background-image: url(/images/site-icons/add.svg);
}

button.mdc-button:hover > span > i.add-icon {
    background-image: url(/images/site-icons/black-red-icon/add-icon-red.svg);
}

.add-icon-white {
    background-image: url(/images/new_ui/outline_add_white_24dp.png);
}

.add-icon-hover, .add-icon:hover {
    background-image: url(/images/site-icons/black-red-icon/add-icon-red.svg);
}

.subscription-icon {
    background-image: url('/images/site-icons/black-red-icon/subscription-icon.svg');
}

button.mdc-button:hover > span > i.subscription-icon {
    background-image: url('/images/site-icons/black-red-icon/subscription-icon-red.svg');
}

.subscription-icon-white {
    background-image: url('/images/new_ui/outline_rss_feed_white_24dp.png');
}

.subscription-icon-hover, .subscription-icon:hover {
    background-image: url('/images/site-icons/black-red-icon/subscription-icon-red.svg');
}

.orderConfirm-icon {
    background-image: url('../images/site-icons/black-red-icon/order-confirm.svg')
}

    .orderConfirm-icon:hover, a.red-hover-link:hover > .orderConfirm-icon {
        background-image: url('../images/site-icons/black-red-icon/order-confirm-red.svg')
    }

.orderSerials-icon {
    background-image: url('../images/site-icons/black-red-icon/order-serials.svg')
}

    .orderSerials-icon:hover, a.red-hover-link:hover > .orderSerials-icon {
        background-image: url('../images/site-icons/black-red-icon/order-serials-red.svg')
    }

.amendment-icon {
    background-image: url('../images/site-icons/black-red-icon/amendment.svg')
}

    .amendment-icon:hover, a.red-hover-link:hover > .amendment-icon {
        background-image: url('../images/site-icons/black-red-icon/amendment-red.svg')
    }

.creditNote-icon {
    background-image: url('../images/site-icons/black-red-icon/credit-note.svg')
}

    .creditNote-icon:hover, a.red-hover-link:hover > .creditNote-icon {
        background-image: url('../images/site-icons/black-red-icon/credit-note-red.svg')
    }

.creditNote-icon {
    background-image: url('../images/site-icons/black-red-icon/credit-note.svg')
}

    .creditNote-icon:hover, a.red-hover-link:hover > .creditNote-icon {
        background-image: url('../images/site-icons/black-red-icon/credit-note-red.svg')
    }

.deliveryDocket-icon {
    background-image: url('../images/site-icons/black-red-icon/delivery-docket.svg')
}

    .deliveryDocket-icon:hover, a.red-hover-link:hover > .deliveryDocket-icon {
        background-image: url('../images/site-icons/black-red-icon/delivery-docket-red.svg')
    }

.licenseAgreement-icon {
    background-image: url('../images/site-icons/black-red-icon/license-agreement.svg')
}

    .licenseAgreement-icon:hover, a.red-hover-link:hover > .licenseAgreement-icon {
        background-image: url('../images/site-icons/black-red-icon/license-agreement-red.svg')
    }

.licenseKeys-icon {
    background-image: url('../images/new_ui/black-red-icon/license-keys.png')
}

    .licenseKeys-icon:hover, a.red-hover-link:hover > .licenseKeys-icon {
        background-image: url('../images/new_ui/black-red-icon/license-keys-red.png')
    }

.proofOfDelivery-icon {
    background-image: url('../images/site-icons/black-red-icon/proof-of-delivery.svg')
}

    .proofOfDelivery-icon:hover, a.red-hover-link:hover > .proofOfDelivery-icon {
        background-image: url('../images/site-icons/black-red-icon/proof-of-delivery-red.svg')
    }

.purchaseOrder-icon {
    background-image: url('../images/site-icons/black-red-icon/purchase-order.svg')
}

    .purchaseOrder-icon:hover, a.red-hover-link:hover > .purchaseOrder-icon {
        background-image: url('../images/site-icons/black-red-icon/purchase-order-red.svg')
    }

.returnAuthority-icon {
    background-image: url('../images/site-icons/black-red-icon/return-authority.svg')
}

    .returnAuthority-icon:hover, a.red-hover-link:hover > .returnAuthority-icon {
        background-image: url('../images/site-icons/black-red-icon/return-authority-red.svg')
    }

.supportAgreement-icon {
    background-image: url('../images/site-icons/black-red-icon/support-agreement.svg')
}

    .supportAgreement-icon:hover, a.red-hover-link:hover > .supportAgreement-icon {
        background-image: url('../images/site-icons/black-red-icon/support-agreement-red.svg')
    }

.taxInvoice-icon {
    background-image: url('../images/site-icons/black-red-icon/tax-invoice.svg')
}

    .taxInvoice-icon:hover, a.red-hover-link:hover > .taxInvoice-icon {
        background-image: url('../images/site-icons/black-red-icon/tax-invoice-red.svg')
    }

.copy-icon {
    background-image: url('/images/site-icons/copy-darker.svg')
}

button.mdc-button:hover > span > i.copy-icon {
    background-image: url('/images/site-icons/copy-hover.svg')
}

.copy-icon-hover, .copy-icon:hover {
    background-image: url('/images/site-icons/copy-hover.svg')
}

.adminAccess-icon {
    background-image: url('/images/site-icons/adminAccess.svg')
}

    .adminAccess-icon:hover {
        background-image: url('/images/site-icons/adminAccess-hover.svg')
    }

.purchaseAccess-icon {
    background-image: url('/images/site-icons/purchaseAccess.svg')
}

    .purchaseAccess-icon:hover {
        background-image: url('/images/site-icons/purchaseAccess-hover.svg')
    }

.viewAccess-icon {
    background-image: url('/images/site-icons/viewAccess.svg')
}

    .viewAccess-icon:hover {
        background-image: url('/images/site-icons/viewAccess-hover.svg')
    }

.eye-icon {
    background-image: url('/images/new_ui/eye.png')
}

    .eye-icon:hover {
        background-image: url('/images/new_ui/eye-hover.png')
    }

.autopilot-icon {
    background-image: url('/images/site-icons/autopilot.svg')
}

    .autopilot-icon:hover {
        background-image: url('/images/site-icons/autopilot-red.svg')
    }

.weight-icon {
    background-image: url('/images/new_ui/weight.png')
}

.favourite-icon {
    background-image: url('/images/new_ui/favourite.png');
}

/* 
    ---------------------------------------------------------------------------------------------------------------
    CLOSE BUTTON AND CLEAR FILTER ANCHOR STYLE BEGIN
    ---------------------------------------------------------------------------------------------------------------
    change the name from pullfloat-right to closebutton-pullfloat-right
*/
/* close button */
.closebutton-pullfloat-right {
    color: #808080;
    cursor: pointer;
    float: right;
}

.combination-loader .closebutton-pullfloat-right {
    margin-top: -15px;
    margin-right: -15px;
}

.item-title-wrapper .closebutton-pullfloat-right {
    margin-top: -15px;
    margin-right: -15px;
}

.without-scroll-wrapper.closebutton-pullfloat-right {
    margin-top: -14px;
    margin-right: -17px;
}

.inner-subBlock-wrapper .closebutton-pullfloat-right {
    margin-top: -15px;
    margin-right: -15px;
}

.closebutton-pullfloat-right:hover {
    background-color: #808080;
    color: white;
}

/* some other closebutton like popup, may change the name later */
.close-button {
    float: right;
    color: #808080;
    cursor: pointer;
    background: #fff;
    border: none;
    font-size: 24px;
    font-weight: bold;
    text-align: right;
}

/* clear filter anchor */
.clearFilterButton {
    font-size: 12px;
    color: #C20047;
    font-size: 12px;
    cursor: pointer;
}

    .clearFilterButton:hover {
        text-decoration: underline;
    }
/* 
    ---------------------------------------------------------------------------------------------------------------
    BOOTSTRAP TOOLTIP BEGIN
    ---------------------------------------------------------------------------------------------------------------
*/
.tooltip {
    font-size: 12px;
}

.bs-tooltip-top .tooltip-inner {
    background: #C0054D !important;
}

.bs-tooltip-top .arrow::before {
    border-bottom-color: #C0054D;
    border-left-color: transparent !important;
    border-right-color: transparent !important;
}

.bs-tooltip-bottom .arrow::before {
    border-bottom-color: #C0054D;
    border-left-color: transparent;
}

.bs-tooltip-right .arrow::before {
    border-bottom-color: #C0054D;
    border-left-color: transparent;
}

.tooltip-inner {
    background: #C0054D;
    font-size: 11px;
}

.bs-tooltip-auto .arrow::before, .bs-tooltip-top .arrow::before {
    border-top-color: #C0054D !important;
}

/* 
    ---------------------------------------------------------------------------------------------------------------
    SIDEBAR MENU STYLE BEGIN
    ---------------------------------------------------------------------------------------------------------------
*/

.sidebar-loader .page-title-wrapper {
    margin: auto;
    padding: 20px;
    font-size: 24px;
    vertical-align: middle;
}

.scroll-wrapper.sidebar-loader {
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    -ms-overflow-style: auto;
    width: 250px;
    -webkit-box-shadow: 4px 4px 4px rgba(0,0,0,.1);
    box-shadow: 4px 4px 4px rgba(0,0,0,.1);
    display: inline-block;
}

.menu-wrapper {
    margin: auto;
    padding: 15px 20px;
    font-size: 12px;
}

.menu-wrapper {
    border-bottom: 2px solid #E6E6E6;
}

    .menu-wrapper:hover {
        background: rgba(196,196,196,0.2);
        cursor: pointer;
    }

    .menu-wrapper.active {
        background: rgba(196,196,196,0.2);
        color: #C20047;
        font-weight: bold;
        border-bottom: 2px solid #C20047;
    }

        .menu-wrapper.active narrow-text {
            color: #606060;
        }

.menu-disabled {
    background: #E6E6E6;
}

/* the font size in the menu-wrapper */
.small-title {
    font-size: 12px;
    cursor: pointer;
    margin-bottom: 0px;
}

/* carts have different padding */
.menu-wrapper-small {
    padding: 9px 20px;
    position: relative;
}

/* account company information*/
.info-secondary-title-wrapper {
    font-size: 12px;
    width: 60%;
    float: left;
    padding-bottom: 20px;
    margin: 0px;
    text-transform: uppercase;
}

    .info-secondary-title-wrapper + span {
        width: 40%;
        float: right;
        text-align: right;
        color: #C20047;
        font-size: 12px;
    }

/*
    ---------------------------------------------------------------------------------------------------------------
     SOME SMALL ELEMENT STYLE BEGIN
    ---------------------------------------------------------------------------------------------------------------
*/
/* top divider */
.top-divider {
    height: 1px;
    border-bottom: 1px solid #e6e6e6;
    margin-bottom: 20px;
    margin-top: 20px;
    width: 100%;
}

/* flip feature in the promotion */

.topspot-header {
    font-style: normal;
    font-weight: bold;
    line-height: normal;
    font-size: 12px;
    text-transform: uppercase;
    padding-bottom: 20px;
    color: #2F3238;
}

.topspot-content {
    display: flex;
    justify-content: space-between;
}

    .topspot-content img {
        width: 295px;
        height: 200px;
        background: white;
        display: inline-block;
        box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.2);
        border-radius: 5px
        /* padding:40px; */
    }

    .topspot-content a:hover {
        cursor: pointer;
        box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.2);
    }

.flip-featured {
    background-color: transparent;
    width: 300px;
    height: 200px;
    /*border: 1px solid #f1f1f1;*/
    perspective: 1000px; /* Remove this if you don't want the 3D effect */
}

.flip-featured-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.flip-featured:hover .flip-featured-inner {
    transform: rotateY(180deg);
}

.flip-featured-front, .flip-featured-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
}

.flip-featured-front {
    /*background-color: #FFF;
    color: black;*/
}

.flip-featured-back {
    padding: 10px;
    background-color: #C20047;
    color: #FFF;
    transform: rotateY(180deg);
}

    .flip-featured-back .flip-title {
        font-weight: 300;
        line-height: 25px;
        min-height: 140px
    }

    .flip-featured-back .flip-link {
        padding-top: 20px;
        cursor: pointer;
        font-weight: 900;
    }




/* no result found page */
.noResult-wrapper {
    text-align: center;
    margin-bottom: 55px;
}

    .noResult-wrapper > div:nth-child(2) {
        margin-top: 55px;
    }

    .noResult-wrapper > div:nth-child(3) {
        padding-top: 35px;
        padding-bottom: 20px;
        font-weight: 300;
        line-height: normal;
        font-size: 18px;
        color: #2F3238;
    }

    .noResult-wrapper > div:nth-child(4) {
        padding-bottom: 20px;
        line-height: 17px;
        font-size: 12px;
        color: #606060;
    }

.noResult-feedback {
    color: #C20047;
    line-height: normal;
    font-size: 12px;
    cursor: pointer;
    margin-top: 10px;
}

/* 
    no subscription page 

    change the name from no-subs-panel to noData-wrapper, no-subs-label to noData-label
*/

.noData-wrapper {
    display: block;
    height: 420px;
    padding-top: 70px;
    margin-bottom: 0px;
    border: 1px solid #dee2e6;
    border-radius: 10px;
    width: 100%;
    text-align: center
}

    .noData-wrapper .noData-label {
        display: block;
        padding-top: 35px;
        font-size: 18px;
        color: #1B1C20;
        font-weight: lighter;
    }

/* anchor link style, example -> order details View link */
.red-link {
    color: #C20047;
    cursor: pointer;
}

    .red-link:hover {
        color: #C20047;
        font-weight: 900;
        text-decoration: none;
        font-weight: bolder;
    }

/* cart blade header */
.red-hover-link {
    cursor: pointer;
}

    .red-hover-link:hover {
        color: #C20047 !important;
    }

.total-div {
    font-size: 12px;
    display: inline-block;
}

/* the font in the carts, subscription and renewal */
.narrow-title {
    /*font-weight: bolder;
    font-size: 12px;*/
}

.narrow-text {
    color: #606060;
}

/* share icon in the carts */
.cart-selected .navshare .share-button {
    background-image: url(/images/new_ui/globalShoppingCartActive.png);
}

.menu-wrapper.active .share-button, .menu-wrapper:hover .share-button {
    background-image: url(/images/new_ui/globalShoppingCartActive.png);
}


.cart-title-content {
    padding-right: 10px;
    float: left;
}

    .cart-title-content img {
        width: 80%;
    }

/* some style in the susbcription */

.info-icon {
    color: #C20047;
    cursor: pointer;
    font-weight: bolder;
    font-style: italic;
}

.notify-bubble {
    position: absolute;
    top: 40px;
    right: 30px;
    padding: 2px 4px 2px 4px;
    background-color: #C20047;
    color: white;
    font-weight: bold;
    font-size: 12px;
    border-radius: 30px;
    box-shadow: 1px 1px 1px grey;
}

/* checkout card style */
.card {
    height: 100%;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}

.card-header {
    font-size: 12px;
    font-weight: bold;
}

/* the logo image in the subscription, right of the description */

.small-logo img {
    border: 0;
    background-color: white;
    display: block;
    float: right;
}

/* the logo image in the subscription detail, right of the title */
.page-title-img {
    /*width: 105px;*/
    /*height: 52px;*/
    /*margin-left: 640px;*/
    float: right;
}

/* custom scrollbar */
::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 3px;
    height: 7px;
}

/* Track */
::-webkit-scrollbar-track {
    background: white;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #808080;
    border-radius: 5px;
}

/* 
    ---------------------------------------------------------------------------------------------------------------
    END OF SMALL ELEMENT STYLE
    ---------------------------------------------------------------------------------------------------------------
*/


/* 
    ---------------------------------------------------------------------------------------------------------------
    BEGIN OF TOAST STYLE
    ---------------------------------------------------------------------------------------------------------------
*/
.mat-snack-bar-container {
    padding: 10px !important;
}

.toast-icon {
    align-items: center;
    font-size: 16px;
    height: 24px;
    -ms-flex-pack: center;
    justify-content: center;
    margin-right: 14px;
    width: 24px;
}

.toast {
    border-radius: 2px;
    display: -ms-inline-flexbox;
    display: inline-flex;
    font-size: 14px;
    overflow: hidden;
    position: relative;
    width: 300px;
    height: auto;
    background-color: unset;
    opacity: unset;
    border: unset;
    box-shadow: unset;
}

.toast-title {
    font-size: 15px;
    font-weight: bold;
}

.toast-content {
    padding: 10px 0;
    word-break: break-word;
    word-wrap: break-word;
    font-size: 12px;
}

.toast-message {
    align-self: center;
    -ms-flex-direction: column;
    flex-direction: column;
    overflow: hidden;
    width: inherit;
    word-break: break-word;
}
/* change the Uppercase name to Lowercase */
.SuccessToast {
    background-color: #C20047;
    color: white !important;
}

.WarningToast {
    background-color: #c15601;
}

.InfoToast {
    background-color: #C20047;
}

.ErrorToast {
    background-color: #1B1C20;
}
/* 
    ---------------------------------------------------------------------------------------------------------------
    END OF TOAST STYLE
    ---------------------------------------------------------------------------------------------------------------
*/


/* 
    ---------------------------------------------------------------------------------------------------------------
    BEGIN OF MATERIAL STYLE
    ---------------------------------------------------------------------------------------------------------------
*/

/* Angular Material Checkbox */

.mat-pseudo-checkbox {
    width: 15px !important;
    height: 15px !important;
}

/*.mat-pseudo-checkbox-checked::after {
    top: 4px !important;
    left: 2.4px !important;
    width: 11px !important;
    height: 5px !important;
}*/

.mat-checkbox-inner-container {
    width: 15px !important;
    height: 15px !important;
}

/* dropdown button in the buy search result */
.mat-form-field {
    width: 100%;
}

.mat-primary .mat-pseudo-checkbox-checked, .mat-primary .mat-pseudo-checkbox-indeterminate {
    background: white;
}

.mat-form-field-ripple {
    background: transparent;
}

.mat-focused .mat-form-field-label {
    font-size: 12px;
    color: #606060;
}

.mat-form-field-label {
    color: #606060;
}

/* the material filter icon in the table */
.mat-sort-header-arrow {
    margin: 3px 0 0 6px !important;
}

/* toggle button */
.mat-slide-toggle-bar {
    width: 45px;
    height: 20px;
    margin-right: 5px;
    cursor: pointer;
    border-radius: 20px;
    background-color: #ccc;
}

.mat-slide-toggle-thumb {
    /*margin-top: 6px;
    margin-left: 3px;*/
    height: 13px;
    width: 13px;
    cursor: pointer;
}

.mat-slide-toggle.mat-checked:not(.mat-disabled) .mat-slide-toggle-bar {
    background-color: #c20047;
    cursor: pointer
}

.mat-slide-toggle.mat-checked:not(.mat-disabled) .mat-slide-toggle-thumb {
    /*margin-left: 13px;*/
    background-color: #fafafa;
    cursor: pointer
}

.mat-slide-toggle {
    cursor: pointer
}

.mat-slide-toggle-thumb-container {
    cursor: default
}

.mat-slide-toggle-bar {
    cursor: default
}


/* for MAT SELECT */
.select-wrapper {
    width: 120px;
    display: inline-block;
}

/* 
    ---------------------------------------------------------------------------------------------------------------
    BEGIN of ng-select dropdown
    ---------------------------------------------------------------------------------------------------------------
*/
.ng-select {
    padding-bottom: 1.25em
}

    .ng-select.ng-select-disabled .ng-select-container:after {
        border-bottom-color: transparent;
        background-image: linear-gradient(to right, rgba(0,0,0,0.42) 0%, rgba(0,0,0,0.42) 33%, transparent 0%);
        background-size: 4px 1px;
        background-repeat: repeat-x
    }

    .ng-select.ng-select-disabled .ng-select-container .ng-value-container .ng-value {
        color: rgba(0,0,0,0.38)
    }

    .ng-select.ng-select-disabled .ng-select-container .ng-value-container
    .ng-placeholder {
        color: rgba(0,0,0,0.38)
    }

    .ng-select.ng-select-disabled .ng-arrow-wrapper .ng-arrow, .ng-select.ng-select-disabled .ng-clear-wrapper {
        color: rgba(0,0,0,0.38)
    }

    .ng-select.ng-select-focused
    .ng-select-container:after {
        border-color: #C20047;
        border-width: 2px
    }

    .ng-select.ng-select-focused .ng-select-container .ng-value-container .ng-placeholder {
        transform: translateY(-1.28125em) scale(0.75) perspective(100px) translateZ(0.001px);
        color: #C20047;
    }

    .ng-select.ng-select-focused .ng-select-container .ng-arrow-wrapper .ng-arrow {
        color: #C20047
    }

    .ng-select .ng-has-value .ng-placeholder, .ng-select.ng-select-filtered .ng-select-container
    .ng-placeholder {
        display: initial
    }

    .ng-select .ng-has-value .ng-placeholder, .ng-select.ng-select-opened .ng-placeholder {
        transform: translateY(-1.28125em) scale(0.75) perspective(100px) translateZ(0.001px)
    }

    .ng-select
    .ng-select-container {
        align-items: baseline;
        min-height: 36.5px
    }

        .ng-select .ng-select-container:after {
            border-bottom: 1px solid rgba(0,0,0,0.42);
            content: '';
            width: 100%;
            bottom: 0;
            position: absolute;
            transition: border-color 0.3s cubic-bezier(0.55, 0, 0.55, 0.2)
        }

        .ng-select .ng-select-container .ng-value-container {
            align-items: baseline;
            padding: .4375em 0;
            border-top: .84375em solid transparent;
            font-size: 12px;
        }

            .ng-select .ng-select-container .ng-value-container
            .ng-placeholder {
                position: absolute;
                color: rgba(0,0,0,0.54);
                transform-origin: 0 0;
                transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1),color 0.4s cubic-bezier(0.25, 0.8, 0.25, 1),width 0.4s cubic-bezier(0.25, 0.8, 0.25, 1)
            }

            .ng-select .ng-select-container .ng-value-container .ng-input {
                bottom: .4375em
            }

    .ng-select.ng-select-single .ng-select-container .ng-arrow-wrapper {
        align-self: flex-end;
        bottom: 9px
    }

    .ng-select.ng-select-single .ng-select-container
    .ng-clear-wrapper {
        align-self: flex-end;
        bottom: 7px
    }

    .ng-select.ng-select-multiple.ng-select-disabled .ng-select-container .ng-value-container
    .ng-value {
        background-color: rgba(0,0,0,0.12);
        color: rgba(0,0,0,0.26)
    }

    .ng-select.ng-select-multiple .ng-select-container .ng-value-container
    .ng-value {
        margin-right: 0.4375em;
        margin-bottom: 0.4375em;
        background-color: white;
        border: 1px solid #C20047;
        border-radius: 2px;
        color: #C20047;
        padding: 2px 5px
    }

        .ng-select.ng-select-multiple .ng-select-container .ng-value-container
        .ng-value.ng-value-disabled {
            background-color: rgba(0,0,0,0.12);
            color: rgba(0,0,0,0.26)
        }

        .ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value
        .ng-value-label {
            font-size: 11px;
            font-weight: 500
        }

        .ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value .ng-value-icon {
            color: rgba(0,0,0,0.54);
            padding-right: 5px
        }

            .ng-select.ng-select-multiple
            .ng-select-container .ng-value-container .ng-value .ng-value-icon:hover {
                color: black;
            }

    .ng-select.ng-select-multiple .ng-select-container .ng-value-container
    .ng-input {
        line-height: 1.375em
    }

    .ng-select.ng-select-multiple .ng-select-container.ng-has-value {
        align-items: center
    }

        .ng-select.ng-select-multiple .ng-select-container.ng-has-value
        .ng-value-container {
            padding-bottom: 0;
            padding-top: .1875em
        }

        .ng-select.ng-select-multiple .ng-select-container.ng-has-value .ng-clear-wrapper, .ng-select.ng-select-multiple .ng-select-container.ng-has-value
        .ng-arrow-wrapper {
            border-top: .84375em solid transparent
        }

    .ng-select .ng-clear-wrapper {
        color: rgba(0,0,0,0.54)
    }

        .ng-select .ng-clear-wrapper:hover {
            color: rgba(0,0,0,0.87)
        }

    .ng-select .ng-arrow-wrapper {
        bottom: 2px
    }

        .ng-select
        .ng-arrow-wrapper .ng-arrow {
            border-left: 5px solid transparent;
            border-right: 5px solid transparent;
            border-top: 5px solid;
            margin: 0 4px;
            color: rgba(0,0,0,0.54)
        }

    .ng-select
    .ng-spinner-zone {
        top: 3px
    }

.ng-dropdown-panel {
    background: #fff
}

    .ng-dropdown-panel.ng-select-bottom {
        top: calc(100% - 1.25em);
        box-shadow: 0 5px 5px -3px rgba(0,0,0,0.2),0 8px 10px 1px rgba(0,0,0,0.14),0 3px 14px 2px rgba(0,0,0,0.12)
    }

    .ng-dropdown-panel.ng-select-top {
        bottom: calc(100% - .84375em);
        box-shadow: 0 -5px 5px -3px rgba(0,0,0,0.2),0 -8px 10px 1px rgba(0,0,0,0.14),0 -3px 14px 2px rgba(0,0,0,0.12)
    }

    .ng-dropdown-panel.multiple
    .ng-option.selected {
        background: #fff
    }

    .ng-dropdown-panel.multiple .ng-option.marked {
        background: rgba(0,0,0,0.04)
    }

    .ng-dropdown-panel .ng-dropdown-header {
        border-bottom: 1px solid rgba(0,0,0,0.12);
        padding: 0 16px;
        line-height: 3em;
        min-height: 3em
    }

    .ng-dropdown-panel .ng-dropdown-footer {
        border-top: 1px solid rgba(0,0,0,0.12);
        padding: 0 16px;
        line-height: 3em;
        min-height: 3em
    }

    .ng-dropdown-panel .ng-dropdown-panel-items
    .ng-optgroup {
        user-select: none;
        cursor: pointer;
        line-height: 3em;
        height: 3em;
        padding: 0 16px;
        color: rgba(0,0,0,0.54);
        font-weight: 500
    }

        .ng-dropdown-panel .ng-dropdown-panel-items
        .ng-optgroup.ng-option-marked {
            background: rgba(0,0,0,0.04)
        }

        .ng-dropdown-panel .ng-dropdown-panel-items .ng-optgroup.ng-option-disabled {
            cursor: default
        }

        .ng-dropdown-panel .ng-dropdown-panel-items
        .ng-optgroup.ng-option-selected {
            background: rgba(0,0,0,0.12);
            color: #C20047
        }

    .ng-dropdown-panel .ng-dropdown-panel-items .ng-option {
        line-height: 3em;
        min-height: 3em;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        padding: 0 16px;
        text-align: left;
        text-decoration: none;
        position: relative;
        color: rgba(0,0,0,0.87)
    }

        .ng-dropdown-panel .ng-dropdown-panel-items .ng-option.ng-option-marked {
            background: rgba(0,0,0,0.04);
            color: rgba(0,0,0,0.87)
        }

        .ng-dropdown-panel
        .ng-dropdown-panel-items .ng-option.ng-option-selected {
            background: rgba(0,0,0,0.12);
            color: #C20047
        }

        .ng-dropdown-panel .ng-dropdown-panel-items .ng-option.ng-option-disabled {
            color: rgba(0,0,0,0.38)
        }

        .ng-dropdown-panel
        .ng-dropdown-panel-items .ng-option.ng-option-child {
            padding-left: 32px
        }

        .ng-dropdown-panel .ng-dropdown-panel-items .ng-option .ng-tag-label {
            padding-right: 5px;
            font-size: 80%;
            font-weight: 400;
            color: rgba(0,0,0,0.38)
        }


/* 
    ---------------------------------------------------------------------------------------------------------------
    BEGIN OF BANNER STYLE
    ---------------------------------------------------------------------------------------------------------------
*/
.vertical-banner {
    padding: 30px 0px 0px 0px;
    text-align: center;
    cursor: pointer;
}

    .vertical-banner img {
        height: 600px;
        width: 160px;
        border-radius: 5px;
        cursor: pointer;
    }

    .vertical-banner .carousel-control-prev, .vertical-banner .carousel-control-next, horizontal-banner .carousel-control-prev, .horizontal-banner .carousel-control-next {
        display: none;
    }

    .horizontal-banner .carousel-indicators, .vertical-banner .carousel-indicators {
        display: none;
    }

.horizontal-banner {
    padding: 20px;
    cursor: pointer;
    text-align: center;
}

    .horizontal-banner img {
        /*height: 100%;*/
        height: 90px;
        width: 728px;
        border-radius: 5px;
    }

.iframeHorizontalBanner {
    width: 728px;
    height: 90px;
    border: none;
}

.iframeVerticalBanner {
    width: 160px;
    height: 600px;
    border: none;
}

/* 
    ---------------------------------------------------------------------------------------------------------------
    END OF BANNER STYLE
    ---------------------------------------------------------------------------------------------------------------
*/


/* 
    ---------------------------------------------------------------------------------------------------------------
    BEGIN OF POPUP WINDOW STYLE
    ---------------------------------------------------------------------------------------------------------------
*/
.modal-title {
    font-weight: lighter;
    font-size: 18px;
}

.modal-header {
    border-bottom: 0px;
}

.modal-content {
    width: auto;
}

.modal-body {
    padding: 0 16px 16px 16px;
}

.pop-up-title {
    font-weight: lighter;
    font-size: 18px;
    margin-bottom: 0px;
}

.pop-up-black-text {
    font-size: 12px;
}

.pop-up-grey-text {
    font-style: italic;
    font-size: 12px;
    color: #606060;
}

.cart-name-modal {
    margin-bottom: 30px;
    border-top: 0px;
    border-left: 0px;
    border-right: 0px;
    padding: 0px 0px 3px 0px;
    margin-top: 30px;
}

.close {
    height: 40px;
    text-align: right;
    margin-right: 20px;
    margin-top: 10px;
}

/* 
    ---------------------------------------------------------------------------------------------------------------
    END OF POPUP WINDOW STYLE
    ---------------------------------------------------------------------------------------------------------------
*/

/* 
    ---------------------------------------------------------------------------------------------------------------
    BEGIN OF LOADING STYLE
    ---------------------------------------------------------------------------------------------------------------
*/

#pre-bootstrap {
    /*background-color: #262626;*/
    background-color: white;
    bottom: 0px;
    left: 0px;
    position: fixed;
    right: 0px;
    top: 0px;
    z-index: 999999;
}

    #pre-bootstrap div.messaging {
        color: #FFFFFF;
        font-family: monospace;
        left: 0px;
        margin-top: -107px;
        position: absolute;
        right: 0px;
        text-align: center;
        margin-top: 30%;
    }

    #pre-bootstrap h1 {
        font-size: 26px;
        margin: 0px 0px 20px 0px;
    }

    #pre-bootstrap p {
        font-size: 14px;
        margin: 0px 0px 0px 0px;
    }



.prebootShow {
    opacity: 1;
}

.prebootStep {
    opacity: 0;
    transition: .5s ease-in-out all;
}


.app-loader {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

.app-loader-inner {
    transform: translateY(-50%);
    top: 60%;
    position: absolute;
    width: 100%;
    color: #FFF;
    padding: 0 100px;
    text-align: center;
}

    .app-loader-inner label {
        font-size: 20px;
        opacity: 0;
        display: inline-block;
        color: gray;
    }

.app-loader-icon {
    width: 220px;
    height: 220px;
    margin: auto;
    background-image: url('/images/new_ui/dd-progress.gif');
    position: relative;
    z-index: 1;
    top: 50%;
    transform: translate(0,-50%);
}


.app-loading-icon-wrapper {
    z-index: 100000;
    position: fixed;
    background-color: rgba(0,0,0,0.03);
    width: 100%;
    height: 100%;
    display: block;
    opacity: 1;
    transition: opacity .15s linear;
}
/* 
    ---------------------------------------------------------------------------------------------------------------
    END OF LOADING STYLE
    ---------------------------------------------------------------------------------------------------------------
*/

/* 
    ---------------------------------------------------------------------------------------------------------------
    START OF NEWSLETTER STYLE
    ---------------------------------------------------------------------------------------------------------------
*/

/*Newsletter*/
/*
* PURCELL MEDIA - XHTML AND CSS NOTATION GUIDE
* By Patrick Purcell
* Copyright Purcell Media 2011 (c)
* Licensed Under GPL

- TAGS
	* html,body,div,p,a: All Tags Lower-Case
	
- ATTRIBUTES
	* id, name: #useCamelCase
	* class: .use-hyphens-to-space
	
- FILE NAMES
	* images: bg-body.jpg, bg-navbar-tile-x.png, img-head-logo.gif, 
  sprite-article-rollover.jpg
	* styles: page.all
    , page.home.css, back.secure.css
	* scripts: page.all.js, page.admin.js, page.home.js
	
- COMMENTS
	* Titles: FULL-CAPS
	* Text: Camel Caps With Spaces
	
- XHTML FORMATTING
	* Always Label The Closing Tag
	  Of Significant Layout Elements.
	* Always Include An Inner Div
	  Along With Significant Layout Elements.
	* Example:
	  <body>
		  <div id="bodyWrapper" class="wrapper">
  <div class="inner">
	  ...html...
  </div>
		  </div><!-- #bodyWrapper End -->
	  </body>
*/

/* PAGE STYLES */
.page-break {
    display: block;
    clear: both;
    border-bottom: 1px solid transparent;
    margin: 0 0 -1px 0;
    padding: 0;
}

.clearfix:after {
    display: block;
    clear: both;
    height: 0;
    visibility: hidden;
    content: ".";
}

#newsletterEditor {
    min-width: 100%;
}

.cms-section {
    display: block;
    float: left;
    min-width: 100%;
    clear: both;
    /*border-top:2px dashed transparent;
            border-bottom:2px dashed transparent;*/
    margin: 0px 0px;
}

.cms-section-controls {
    background: #903;
    padding: 5px 0;
}

.cms-collction-row {
    display: block;
    float: left;
    min-width: 100%;
}

.two-column .cms-section-column {
    float: left;
    width: 50%;
    border: 1px solid #d4d4d4;
}

.cms-editable-area {
    border: 1px dashed transparent;
}

.cms-editable-element {
    min-height: 15px;
}

.cms-modal-overlay {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    background: #666;
    opacity: 0.7;
    width: 100%;
    height: 100%;
}

#cmsModdalOverlay,
#cmsEditableArea,
#cmsEditableElement,
#cmsTxtColorSelect,
#cmsBgColorSelect {
    z-index: 900;
}

#cmsTxtColorSelect,
#cmsBgColorSelect {
    color: #FFF;
}

    #cmsTxtColorSelect a,
    #cmsBgColorSelect a {
        display: block;
        float: left;
        width: 15px;
        height: 15px;
        margin: 3px 0;
    }

        #cmsTxtColorSelect a span,
        #cmsBgColorSelect a span {
            display: none;
        }

#cmsSaveButton,
#cmsSaveButton a {
    float: right;
    color: blue;
    background-color: #EEEEEE;
    cursor: pointer;
}

#cmsCancelButton,
#cmsCancelButton a {
    float: right;
    color: blue;
    background-color: #EEEEEE;
    cursor: pointer;
}

.cms-textarea {
    border: 0;
    margin: 0;
    padding: 5px;
    width: 100%;
    height: 100%;
}

#newsletterControls {
    overflow: hidden;
}

    #newsletterControls .cms-control-button {
        margin: 10px 0;
        padding: 5px;
        /*border:2px dashed #C03;*/
    }

.cms-control-button {
    font-size: 19px;
    margin-right: 10px;
}

.cms-block-controls {
    padding: 3px;
    border: 1px dashed #F66;
}

.cms-control-button,
.cms-control-button a {
    display: block;
    padding: 3px;
    z-index: 900;
    font-size: 15px;
    text-decoration: none;
}

    .cms-control-button a:hover {
        text-decoration: underline;
    }

    .cms-control-button.section-pos a {
        padding: 3px;
        font-size: 19px;
        font-weight: bold;
        color: #F00;
        width: 75px;
        cursor: pointer;
    }

.newsletter-delete a,
.block-delete a,
.section-delete a {
    background: transparent url(../images/new_ui/delete.png) no-repeat center center;
    width: 16px;
    padding: 0;
    text-indent: -9999px;
    cursor: pointer;
}

#cmsNewNewsletter a,
#cmsNewSection a {
    background: transparent url(../images/new_ui/section_add.png) no-repeat 0 center;
    font-weight: bold;
    width: auto;
    padding-left: 20px;
    text-decoration: none;
    color: black;
    cursor: pointer;
}

.block-move a,
.section-move a {
    background: transparent url(../images/new_ui/move.png) no-repeat center center;
    width: 30px;
    padding: 0;
    cursor: pointer;
}

.section-move a {
    background-image: url(../images/new_ui/move_white.png);
    cursor: pointer;
}

.block-move-up a,
.section-move-up a {
    background: transparent url(../images/new_ui/arrow_up.png) no-repeat center center;
    width: 12px;
    padding: 0;
    cursor: pointer;
}

.block-move-down a,
.section-move-down a {
    background: transparent url(../images/new_ui/arrow_down.png) no-repeat center center;
    width: 12px;
    padding: 0;
    cursor: pointer;
}


.newsletter-edit a,
.block-edit a,
.section-edit a {
    background: transparent url(../images/new_ui/edit.png) no-repeat center center;
    width: 16px;
    padding: 0;
    text-indent: -9999px;
    cursor: pointer;
}

#cmsNewPromo a {
    background: transparent url(../images/new_ui/promo_add.png) no-repeat 0 center;
    width: auto;
    font-weight: bold;
    padding-left: 20px;
    color: black;
    cursor: pointer;
}

    #cmsNewPromo a:hover {
        text-decoration: underline;
    }

.cms-editable-area:hover {
    border-color: #00CCFF;
    cursor: pointer;
    position: relative;
}

.section-pos a {
    font-size: 15px;
}

.section-move-up, .section-move-down, .section-delete {
    margin-right: 0;
}

.cms-section-controls .cms-control-button,
.cms-editable-area .cms-control-button,
.cms-block-controls .cms-control-button {
    float: right;
}

.cms-editable {
    border-color: #00CCFF;
    cursor: pointer;
}

.cms-active {
    border-color: #099;
    cursor: pointer;
}

.cms-editable-area .cms-control-button,
.cms-section-controls .cms-control-button {
    margin: 0;
    padding: 0;
}

    #newslettersList .cms-control-button a,
    .cms-editable-area .cms-control-button a,
    .cms-section-controls .cms-control-button a {
        height: 25px;
    }

        #newslettersList .cms-control-button a:hover,
        .cms-editable-area .cms-control-button a:hover,
        .cms-section-controls .cms-control-button a:hover {
            text-decoration: underline;
        }

        .cms-editable-area .cms-control-button a span,
        .cms-section-controls .cms-control-button a span,
        #newslettersList .cms-control-button a span {
            display: none;
        }


#newslettersList .cms-control-button,
.cms-editable-area .block-move,
.cms-section-controls .section-move {
    float: left;
}

#newslettersList {
    margin-bottom: 20px;
}

    #newslettersList .cms-control-button {
        margin: 0;
    }

.block-clone a,
.section-clone a {
    background: transparent url(../images/new_ui/clone.png) no-repeat center center;
    width: 16px;
    padding: 0;
    display: none;
}

/* COLLECTION DEFAULT STYLES */
#cmsNewsletterBrand,
#cmsNewsletterColorScheme, .cmsNewletterHeaderCol {
    float: right;
    margin: 5px 5px;
    border: 1px solid #BBB;
    background-color: #343535;
    color: #FFF;
    padding: 5px;
}

#cmsNewsletterHeader h1#NewsletterTitle {
    padding: 4px 4px;
    position: relative;
    text-indent: 0;
    background: #000;
    font-size: 41px;
    color: #FFF;
}

.cms-head h2 {
    background: #000;
    color: #FFF;
    margin-bottom: 0;
    margin: 10px 0px 0px 0px;
    padding: 3px;
    font-size: 14px;
    padding: 20px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.cms-head td {
    padding: 0px;
}

.product-table td {
    padding-top: 5px;
    padding-bottom: 5px;
}

.product-desc {
    padding-left: 20px;
}

.product-table {
    padding: 0px 0 0 0;
}

.cms-block {
    padding: 0;
}

    .cms-block p {
        padding: 0px 0px;
        margin: 0;
        color: #333;
    }

.admin-control {
    margin-top: 15px;
    font-size: 15px;
}

.label-header {
    font-size: 14px;
    font-weight: bold;
}

.label-primary-text {
    font-size: 12px;
    font-weight: bold;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.label-secondary-text {
    font-size: 12px;
    font-weight: lighter;
}

.label-hover-price-text {
    font-size: 12px;
    font-weight: lighter;
}

#l_stock_code, #r_stock_code {
    padding-top: 10px;
}

.cms-image-wrapper {
    z-index: 0;
    position: relative;
    vertical-align: middle;
    margin: auto;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 100%;
}

.cms-img-hover-wrapper {
    display: block;
    position: absolute;
    width: 100%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    opacity: 0;
    text-align: center;
    padding-left: 15px;
    padding-right: 15px;
}

    .cms-img-hover-wrapper .addToCartButton {
        background-color: #fff;
        padding: 5px;
        cursor: pointer;
        text-align: center;
        display: inline-block;
        white-space: nowrap;
        width: 80px;
        border-radius: 20px;
        border: 1px solid white;
        font-weight: bold;
        margin-top: 15px;
        margin-bottom: 15px;
    }

        .cms-img-hover-wrapper .addToCartButton:hover {
            text-decoration: none;
        }

#l_promo_name_wrapper, #r_promo_name_wrapper {
    padding-bottom: 10px;
    padding-top: 10px;
}
/* THEME COLOR SCHEMES */
/* BLACK */
.newsletter-black #cmsNewsletterHeader h1#NewsletterTitle,
.newsletter-black .cms-head h2 {
    background: #000;
    color: #FFF;
}

/* RED */
.newsletter-red #cmsNewsletterHeader h1#NewsletterTitle,
.newsletter-red .cms-head h2 {
    background: #F00;
    color: #FFF;
}

/* YELLOW */
.newsletter-yellow #cmsNewsletterHeader h1#NewsletterTitle,
.newsletter-yellow .cms-head h2 {
    background: #FF0;
    color: #000;
}

/* GREEN */
.newsletter-green #cmsNewsletterHeader h1#NewsletterTitle,
.newsletter-green .cms-head h2 {
    background: #396;
    color: #FFF;
}

/* BROWN */
.newsletter-brown #cmsNewsletterHeader h1#NewsletterTitle,
.newsletter-brown .cms-head h2 {
    background: #630;
    color: #FFF;
}


/* PURPLE */
.newsletter-purple #cmsNewsletterHeader h1#NewsletterTitle,
.newsletter-purple .cms-head h2 {
    background: #909;
    color: #FFF;
}


/* BLUE */
.newsletter-blue #cmsNewsletterHeader h1#NewsletterTitle,
.newsletter-blue .cms-head h2 {
    background: #036;
    color: #FFF;
}

/* ORANGE */
.newsletter-orange #cmsNewsletterHeader h1#NewsletterTitle,
.newsletter-orange .cms-head h2 {
    background: #F93;
    color: #FFF;
}

.newsletter-000000 #cmsNewsletterHeader h1#NewsletterTitle, .newsletter-000000 .cms-head h2 {
    background: #000000;
    color: #FFF;
}

.newsletter-FFFFFF #cmsNewsletterHeader h1#NewsletterTitle, .newsletter-FFFFFF .cms-head h2 {
    background: #FFFFFF;
    color: #FFF;
}

.newsletter-FF0000 #cmsNewsletterHeader h1#NewsletterTitle, .newsletter-FF0000 .cms-head h2 {
    background: #FF0000;
    color: #FFF;
}

.newsletter-00FF00 #cmsNewsletterHeader h1#NewsletterTitle, .newsletter-00FF00 .cms-head h2 {
    background: #00FF00;
    color: #FFF;
}

.newsletter-0000FF #cmsNewsletterHeader h1#NewsletterTitle, .newsletter-0000FF .cms-head h2 {
    background: #0000FF;
    color: #FFF;
}

.newsletter-FFFF00 #cmsNewsletterHeader h1#NewsletterTitle, .newsletter-FFFF00 .cms-head h2 {
    background: #FFFF00;
    color: #FFF;
}

.newsletter-FF00FF #cmsNewsletterHeader h1#NewsletterTitle, .newsletter-FF00FF .cms-head h2 {
    background: #FF00FF;
    color: #FFF;
}

.newsletter-00FFFF #cmsNewsletterHeader h1#NewsletterTitle, .newsletter-00FFFF .cms-head h2 {
    background: #00FFFF;
    color: #FFF;
}

.newsletter-800000 #cmsNewsletterHeader h1#NewsletterTitle, .newsletter-800000 .cms-head h2 {
    background: #800000;
    color: #FFF;
}

.newsletter-008000 #cmsNewsletterHeader h1#NewsletterTitle, .newsletter-008000 .cms-head h2 {
    background: #008000;
    color: #FFF;
}

.newsletter-000080 #cmsNewsletterHeader h1#NewsletterTitle, .newsletter-000080 .cms-head h2 {
    background: #000080;
    color: #FFF;
}

.newsletter-808000 #cmsNewsletterHeader h1#NewsletterTitle, .newsletter-808000 .cms-head h2 {
    background: #808000;
    color: #FFF;
}

.newsletter-800080 #cmsNewsletterHeader h1#NewsletterTitle, .newsletter-800080 .cms-head h2 {
    background: #800080;
    color: #FFF;
}

.newsletter-008080 #cmsNewsletterHeader h1#NewsletterTitle, .newsletter-008080 .cms-head h2 {
    background: #008080;
    color: #FFF;
}

.newsletter-C0C0C0 #cmsNewsletterHeader h1#NewsletterTitle, .newsletter-C0C0C0 .cms-head h2 {
    background: #C0C0C0;
    color: #FFF;
}

.newsletter-808080 #cmsNewsletterHeader h1#NewsletterTitle, .newsletter-808080 .cms-head h2 {
    background: #808080;
    color: #FFF;
}

.newsletter-9999FF #cmsNewsletterHeader h1#NewsletterTitle, .newsletter-9999FF .cms-head h2 {
    background: #9999FF;
    color: #FFF;
}

.newsletter-993366 #cmsNewsletterHeader h1#NewsletterTitle, .newsletter-993366 .cms-head h2 {
    background: #993366;
    color: #FFF;
}

.newsletter-FFFFCC #cmsNewsletterHeader h1#NewsletterTitle, .newsletter-FFFFCC .cms-head h2 {
    background: #FFFFCC;
    color: #FFF;
}

.newsletter-CCFFFF #cmsNewsletterHeader h1#NewsletterTitle, .newsletter-CCFFFF .cms-head h2 {
    background: #CCFFFF;
    color: #FFF;
}

.newsletter-660066 #cmsNewsletterHeader h1#NewsletterTitle, .newsletter-660066 .cms-head h2 {
    background: #660066;
    color: #FFF;
}

.newsletter-FF8080 #cmsNewsletterHeader h1#NewsletterTitle, .newsletter-FF8080 .cms-head h2 {
    background: #FF8080;
    color: #FFF;
}

.newsletter-0066CC #cmsNewsletterHeader h1#NewsletterTitle, .newsletter-0066CC .cms-head h2 {
    background: #0066CC;
    color: #FFF;
}

.newsletter-CCCCFF #cmsNewsletterHeader h1#NewsletterTitle, .newsletter-CCCCFF .cms-head h2 {
    background: #CCCCFF;
    color: #FFF;
}

.newsletter-000080 #cmsNewsletterHeader h1#NewsletterTitle, .newsletter-000080 .cms-head h2 {
    background: #000080;
    color: #FFF;
}

.newsletter-FF00FF #cmsNewsletterHeader h1#NewsletterTitle, .newsletter-FF00FF .cms-head h2 {
    background: #FF00FF;
    color: #FFF;
}

.newsletter-FFFF00 #cmsNewsletterHeader h1#NewsletterTitle, .newsletter-FFFF00 .cms-head h2 {
    background: #FFFF00;
    color: #FFF;
}

.newsletter-00FFFF #cmsNewsletterHeader h1#NewsletterTitle, .newsletter-00FFFF .cms-head h2 {
    background: #00FFFF;
    color: #FFF;
}

.newsletter-800080 #cmsNewsletterHeader h1#NewsletterTitle, .newsletter-800080 .cms-head h2 {
    background: #800080;
    color: #FFF;
}

.newsletter-800000 #cmsNewsletterHeader h1#NewsletterTitle, .newsletter-800000 .cms-head h2 {
    background: #800000;
    color: #FFF;
}

.newsletter-008080 #cmsNewsletterHeader h1#NewsletterTitle, .newsletter-008080 .cms-head h2 {
    background: #008080;
    color: #FFF;
}

.newsletter-0000FF #cmsNewsletterHeader h1#NewsletterTitle, .newsletter-0000FF .cms-head h2 {
    background: #0000FF;
    color: #FFF;
}

.newsletter-00CCFF #cmsNewsletterHeader h1#NewsletterTitle, .newsletter-00CCFF .cms-head h2 {
    background: #00CCFF;
    color: #FFF;
}

.newsletter-CCFFFF #cmsNewsletterHeader h1#NewsletterTitle, .newsletter-CCFFFF .cms-head h2 {
    background: #CCFFFF;
    color: #FFF;
}

.newsletter-CCFFCC #cmsNewsletterHeader h1#NewsletterTitle, .newsletter-CCFFCC .cms-head h2 {
    background: #CCFFCC;
    color: #FFF;
}

.newsletter-FFFF99 #cmsNewsletterHeader h1#NewsletterTitle, .newsletter-FFFF99 .cms-head h2 {
    background: #FFFF99;
    color: #FFF;
}

.newsletter-99CCFF #cmsNewsletterHeader h1#NewsletterTitle, .newsletter-99CCFF .cms-head h2 {
    background: #99CCFF;
    color: #FFF;
}

.newsletter-FF99CC #cmsNewsletterHeader h1#NewsletterTitle, .newsletter-FF99CC .cms-head h2 {
    background: #FF99CC;
    color: #FFF;
}

.newsletter-CC99FF #cmsNewsletterHeader h1#NewsletterTitle, .newsletter-CC99FF .cms-head h2 {
    background: #CC99FF;
    color: #FFF;
}

.newsletter-FFCC99 #cmsNewsletterHeader h1#NewsletterTitle, .newsletter-FFCC99 .cms-head h2 {
    background: #FFCC99;
    color: #FFF;
}

.newsletter-3366FF #cmsNewsletterHeader h1#NewsletterTitle, .newsletter-3366FF .cms-head h2 {
    background: #3366FF;
    color: #FFF;
}

.newsletter-33CCCC #cmsNewsletterHeader h1#NewsletterTitle, .newsletter-33CCCC .cms-head h2 {
    background: #33CCCC;
    color: #FFF;
}

.newsletter-99CC00 #cmsNewsletterHeader h1#NewsletterTitle, .newsletter-99CC00 .cms-head h2 {
    background: #99CC00;
    color: #FFF;
}

.newsletter-FFCC00 #cmsNewsletterHeader h1#NewsletterTitle, .newsletter-FFCC00 .cms-head h2 {
    background: #FFCC00;
    color: #FFF;
}

.newsletter-FF9900 #cmsNewsletterHeader h1#NewsletterTitle, .newsletter-FF9900 .cms-head h2 {
    background: #FF9900;
    color: #FFF;
}

.newsletter-FF6600 #cmsNewsletterHeader h1#NewsletterTitle, .newsletter-FF6600 .cms-head h2 {
    background: #FF6600;
    color: #FFF;
}

.newsletter-666699 #cmsNewsletterHeader h1#NewsletterTitle, .newsletter-666699 .cms-head h2 {
    background: #666699;
    color: #FFF;
}

.newsletter-969696 #cmsNewsletterHeader h1#NewsletterTitle, .newsletter-969696 .cms-head h2 {
    background: #969696;
    color: #FFF;
}

.newsletter-003366 #cmsNewsletterHeader h1#NewsletterTitle, .newsletter-003366 .cms-head h2 {
    background: #003366;
    color: #FFF;
}

.newsletter-339966 #cmsNewsletterHeader h1#NewsletterTitle, .newsletter-339966 .cms-head h2 {
    background: #339966;
    color: #FFF;
}

.newsletter-003300 #cmsNewsletterHeader h1#NewsletterTitle, .newsletter-003300 .cms-head h2 {
    background: #003300;
    color: #FFF;
}

.newsletter-333300 #cmsNewsletterHeader h1#NewsletterTitle, .newsletter-333300 .cms-head h2 {
    background: #333300;
    color: #FFF;
}

.newsletter-993300 #cmsNewsletterHeader h1#NewsletterTitle, .newsletter-993300 .cms-head h2 {
    background: #993300;
    color: #FFF;
}

.newsletter-993366 #cmsNewsletterHeader h1#NewsletterTitle, .newsletter-993366 .cms-head h2 {
    background: #993366;
    color: #FFF;
}

.newsletter-333399 #cmsNewsletterHeader h1#NewsletterTitle, .newsletter-333399 .cms-head h2 {
    background: #333399;
    color: #FFF;
}

.newsletter-333333 #cmsNewsletterHeader h1#NewsletterTitle, .newsletter-333333 .cms-head h2 {
    background: #333333;
    color: #FFF;
}


.pricelists {
    margin-top: 20px;
}

    .pricelists ul {
        margin: 0;
        padding: 0;
        list-style: none;
        padding-left: 1px;
        padding-top: 1px;
        overflow: hidden;
    }

        .pricelists ul li {
            display: inline-block;
            float: left;
            width: 50%;
            margin-left: -1px;
            margin-top: -1px;
        }

.pricelist-item {
    padding: 10px;
    position: relative;
}

    .pricelist-item img {
        position: absolute;
        top: 20px;
        left: 10px;
    }

    .pricelist-item .pricelist-detail {
        overflow: hidden;
    }

        .pricelist-item .pricelist-detail .description {
            padding-top: 5px;
            float: left;
            width: 400px;
            border: 0px;
        }

        .pricelist-item .pricelist-detail .actions {
            margin-top: 5px;
            position: relative;
            float: left;
        }


            .pricelist-item .pricelist-detail .actions .pricelist-html {
                float: left;
            }

            .pricelist-item .pricelist-detail .actions .pricelist-excel {
                float: left;
                margin-left: 10px;
            }

.pricelist-old a {
    color: #af0040;
}

.pricelist-old {
    color: #af0040;
}

.product-row .product-code {
    width: 170px;
    padding-left: 20px;
}

.product-row-bundle .product-code {
    padding-left: 40px;
    width: 155px;
}

.product-row-bundle .product-desc {
    padding-left: 15px;
}

.product-row .product-soh, .product-row-bundle .product-soh {
    width: 90px;
    text-align: center;
}

.product-row .product-price, .product-row-bundle .product-price {
    padding-right: 20px;
    width: 90px;
    text-align: right;
}

.product-price.wider-include-padding {
    width: 110px;
}

.cms-block-heading .product-row {
    background-color: transparent;
    position: relative;
}

.product-code .left, .product-soh .left {
    float: left;
    width: 170px;
    font-size: 16px;
    font-weight: bold;
}

.product-code .right {
    font-size: 16px;
    font-weight: bold;
    width: 170px;
}

.product-code .product-error {
    color: red;
}

.cms-block-heading .product-row td {
    padding: 1px 1px 1px 1px;
    margin: 0;
    font-size: 14px;
}

.cms-block-heading .product-row h3 {
    font-weight: bold;
    margin: 0;
    font-size: 12px;
}

.cms-block-comment p {
    text-align: center;
    font-size: 16px;
    font-weight: bold;
}

#l_promo_name, #r_promo_name {
    margin: 0;
    font-weight: bold;
}

.shadow-border-wrapper {
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    width: 100%;
    position: relative;
}

.img-mask {
    position: absolute;
    display: block;
    background: #261300;
    z-index: 2;
    opacity: 0;
    width: 100%;
    height: 100%;
}

.background-mask {
    position: relative;
    height: 26px;
    opacity: 0.2;
}

.text-mask {
    position: relative;
    height: 21px;
    margin-top: -21px;
    padding-left: 20px;
    padding-right: 22px;
}

.cms-block.cms-block-products.clearfix {
    border-left: 1px solid #e6e6e6;
    border-right: 1px solid #e6e6e6;
}

div#newsletter-filter {
    padding-top: 30px;
    padding-bottom: 5px;
    width: 250px;
}

#newsletter-filter .searchInput {
    border: 1px solid #C20047;
}
/*hover effect for promotion images*/
.shadow-border-wrapper:hover {
    cursor: pointer;
}

    .shadow-border-wrapper:hover .cms-img-hover-wrapper {
        animation-name: fadeInTransition;
        animation-duration: 0.1s;
        animation-fill-mode: forwards;
        animation-timing-function: ease;
        -webkit-animation-name: fadeInTransition;
        -webkit-animation-duration: 0.1s;
        -webkit-animation-fill-mode: forwards;
        -webkit-animation-timing-function: ease;
        color: white;
    }

    .shadow-border-wrapper:hover .pro-label {
        animation-name: fadeOutTransition;
        animation-duration: 0.1s;
        animation-fill-mode: forwards;
        animation-timing-function: ease;
        -webkit-animation-name: fadeOutTransition;
        -webkit-animation-duration: 0.1s;
        -webkit-animation-fill-mode: forwards;
        -webkit-animation-timing-function: ease;
    }

    .shadow-border-wrapper:hover .img-mask {
        animation-name: bgTransition;
        animation-duration: 0.1s;
        animation-fill-mode: forwards;
        animation-timing-function: ease;
        -webkit-animation-name: bgTransition;
        -webkit-animation-duration: 0.1s;
        -webkit-animation-fill-mode: forwards;
        -webkit-animation-timing-function: ease;
        border-radius: 5px;
    }

@keyframes fadeInTransition {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fadeOutTransition {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes bgTransition {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 0.95;
    }
}

@-webkit-keyframes fadeInTransition {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-webkit-keyframes fadeOutTransition {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@-webkit-keyframes bgTransition {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 0.95;
    }
}

.cms-block-img {
    width: 100%;
    text-align: center;
    height: 250px;
    max-height: 250px;
}

.pro-label {
    padding: 15px 30px;
    text-align: center;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    z-index: 1;
    position: relative;
    opacity: 1;
    height: 85px;
}

    .pro-label .center-wrapper {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        padding-left: 30px;
        padding-right: 30px;
    }

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    /* IE10+ CSS styles go here */
    .pro-label {
        height: auto;
    }
}

@supports (-ms-accelerator:true), (-ms-accelerator:auto), (-ms-ime-align:auto) {
    /* IE Edge 12+ CSS styles go here */
    .pro-label {
        height: auto;
    }
}

.product-code a, .product-code a:visited, .product-code a:hover {
    text-decoration: none;
}

.product-code a {
    color: blue;
}

.cms-block-link {
    font-weight: bold;
    padding: 1px 1px 1px 1px;
    text-align: center;
    font-size: 14px;
}

.newsletter-promo-error {
    float: left;
    background-color: #c20047;
    color: #FFF;
    border-radius: 5px;
    padding: 5px;
    margin-top: 20px;
    margin-left: 10px;
    display: none;
}

/*#endregion */

/* 
    ---------------------------------------------------------------------------------------------------------------
    END OF NEWSLETTER STYLE
    ---------------------------------------------------------------------------------------------------------------
*/
/* 
    ---------------------------------------------------------------------------------------------------------------
    START OF Bootstrap carousel STYLE
    ---------------------------------------------------------------------------------------------------------------
*/
/* overwrite default Bootstrap carousel setting */
#carousel-wrapper .carousel-control-next-icon {
    background: rgba(0,0,0,0) url("/images/new_ui/carousel-right-arrow.png");
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
}

#carousel-wrapper .carousel-control-prev-icon {
    background: rgba(0,0,0,0) url("/images/new_ui/carousel-left-arrow.png");
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
}

#carousel-wrapper .carousel-control-next, #carousel-wrapper .carousel-control-prev {
    cursor: pointer;
    opacity: 1;
}

    #carousel-wrapper .carousel-control-next:hover, #carousel-wrapper .carousel-control-prev:hover {
        opacity: 1;
    }

/* 
    ---------------------------------------------------------------------------------------------------------------
    END OF Bootstrap carousel STYLE
    ---------------------------------------------------------------------------------------------------------------
*/

/*#region Validator */
.validator-container {
    display: none;
    position: absolute;
    z-index: 9030;
    background: transparent;
}

.validator-new {
    font-size: 12px;
    position: relative;
    padding: 8px;
    text-align: center;
}

    .validator-new:not(.validator-bottom) {
        max-width: 200px;
    }

    .validator-new.validator-red {
        color: white;
        background: #C20047;
        border: 1px solid #A01B3C;
    }

    .validator-new.validator-green {
        color: white;
        background: #459A45;
        border: 1px solid #2B5E2B;
    }

    .validator-new.validator-dark {
        color: white;
        background-color: #343535;
        border: 1px solid #2B5E2B;
    }

    .validator-new.validator-light {
        color: black;
        background-color: #E7E6E3;
        border: 1px solid #2B5E2B;
    }

    .validator-new:before, .validator-new:after {
        content: "";
        position: absolute;
        height: 0;
        width: 0;
        border: solid transparent;
        pointer-events: none;
    }

    .validator-new.validator-top:before, .validator-new.validator-top:after {
        top: 100%;
        left: 50%;
    }

    .validator-new.validator-right:before, .validator-new.validator-right:after {
        right: 100%;
        top: 50%;
    }

    .validator-new.validator-bottom:before, .validator-new.validator-bottom:after {
        bottom: 100%;
        left: 50%;
    }

    .validator-new.validator-left:before, .validator-new.validator-left:after {
        left: 100%;
        top: 50%;
    }

    .validator-new.validator-top:after, .validator-new.validator-right:after, .validator-new.validator-bottom:after, .validator-new.validator-left:after {
        border-width: 7px;
    }

    .validator-new.validator-top:after, .validator-new.validator-bottom:after {
        margin-left: -7px;
    }

    .validator-new.validator-right:after, .validator-new.validator-left:after {
        margin-top: -7px;
    }

    .validator-new.validator-red:after {
        border-color: rgba(202, 24, 69, 0);
    }

    .validator-new.validator-red.validator-top:after {
        border-top-color: #C20047;
    }

    .validator-new.validator-red.validator-right:after {
        border-right-color: #C20047;
    }

    .validator-new.validator-red.validator-bottom:after {
        border-bottom-color: #C20047;
    }

    .validator-new.validator-red.validator-left:after {
        border-left-color: #C20047;
    }

    .validator-new.validator-green:after {
        border-color: rgba(69, 154, 69, 0);
    }

    .validator-new.validator-green.validator-top:after {
        border-top-color: #459A45;
    }

    .validator-new.validator-green.validator-right:after {
        border-right-color: #459A45;
    }

    .validator-new.validator-green.validator-bottom:after {
        border-bottom-color: #459A45;
    }

    .validator-new.validator-green.validator-left:after {
        border-left-color: #459A45;
    }

    .validator-new.validator-dark:after {
        border-color: rgba(52, 53, 53, 0);
    }

    .validator-new.validator-dark.validator-top:after {
        border-top-color: #343535;
    }

    .validator-new.validator-dark.validator-right:after {
        border-right-color: #343535;
    }

    .validator-new.validator-dark.validator-bottom:after {
        border-bottom-color: #343535;
    }

    .validator-new.validator-dark.validator-left:after {
        border-left-color: #343535;
    }

    .validator-new.validator-light:after {
        border-color: rgba(231, 230, 227, 0);
    }

    .validator-new.validator-light.validator-top:after {
        border-top-color: #E7E6E3;
    }

    .validator-new.validator-light.validator-right:after {
        border-right-color: #E7E6E3;
    }

    .validator-new.validator-light.validator-bottom:after {
        border-bottom-color: #E7E6E3;
    }

    .validator-new.validator-light.validator-left:after {
        border-left-color: #E7E6E3;
    }

    .validator-new.validator-top:before, .validator-new.validator-right:before, .validator-new.validator-bottom:before, .validator-new.validator-left:before {
        border-width: 8px;
    }

    .validator-new.validator-top:before, .validator-new.validator-bottom:before {
        margin-left: -8px;
    }

    .validator-new.validator-right:before, .validator-new.validator-left:before {
        margin-top: -8px;
    }

    .validator-new.validator-red:before {
        border-color: rgba(160, 27, 60, 0);
    }

    .validator-new.validator-red.validator-top:before {
        border-top-color: #A01B3C;
    }

    .validator-new.validator-red.validator-right:before {
        border-right-color: #A01B3C;
    }

    .validator-new.validator-red.validator-bottom:before {
        border-bottom-color: #A01B3C;
    }

    .validator-new.validator-red.validator-left:before {
        border-left-color: #A01B3C;
    }

    .validator-new.validator-green:before {
        border-color: rgba(50, 109, 50, 0);
    }

    .validator-new.validator-green.validator-top:before {
        border-top-color: #326D32;
    }

    .validator-new.validator-green.validator-right:before {
        border-right-color: #326D32;
    }

    .validator-new.validator-green.validator-bottom:before {
        border-bottom-color: #326D32;
    }

    .validator-new.validator-green.validator-left:before {
        border-left-color: #326D32;
    }
/*#endregion*/


.watch-list-container {
    background-color: #eaeaea;
}

/*Angular Material Dialog*/
.close-button {
    float: right;
    color: #808080;
    cursor: pointer;
    background: #fff;
    border: none;
    font-size: 24px;
    font-weight: bold;
    text-align: right;
}

.no-subs-label {
    padding-top: 35px;
    font-size: 18px;
    color: rgb(51, 55, 61);
    font-weight: lighter;
}

.no-subs-panel {
    display: block;
    height: 420px;
    padding-top: 70px;
    margin-bottom: 0px;
    border: 1px solid #dee2e6;
    border-radius: 10px;
    width: 100%;
    text-align: center
}

    .no-subs-panel .no-subs-label {
        padding-top: 35px;
        font-size: 18px;
        color: rgb(51, 55, 61);
        font-weight: lighter;
    }

.mat-tooltip {
    background: #c20047;
    font-size: 14px;
}

.highlight-text {
    font-weight: bold;
    font-size: 12px;
}


/*Cart - Tenant Blade*/
.form-field > label {
    width: 20%;
}

.form-field > input {
    width: 40%;
    height: 26px;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    margin-bottom: 10px;
}


.adjust-logo-size {
    width: 70px;
}

.note-wrapper {
    border: 1px solid #e6e6e6;
    box-sizing: border-box;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .1);
    border-radius: 5px;
}

.rewards_icon {
    display: inline-block;
    margin-left: 15px;
}


/*Qanatas Business Rewards*/
.qantas-black {
    background-image: url('/images/new_ui/qantas-black-lg.png')
}

.qantas-red {
    background-image: url('/images/new_ui/qantas-red-lg.png');
}

.qantas-red-lg {
    background-image: url('/images/new_ui/qantas-with-text.png')
}

.airpoints-lg-110 {
    background-image: url('/images/new_ui/AIRPOINTS-LOGO-110x110.png')
}

.airpoints-lg-75 {
    background-image: url('/images/new_ui/AIRPOINTS-LOGO-75x75.png')
}

div.mat-toolbar-menu > button.mdc-button:hover > span {
    color: #c20047;
}

div.mat-toolbar-menu > button.mdc-button-disabled:hover > span {
    color: inherit;
}

div.mat-toolbar-menu > div.mat-slide-wrapper:hover > mat-slide-toggle {
    color: #c20047;
}

button.mdc-button:hover {
    background-color: #f6f6f6
}

button.mdc-button-disabled:hover {
    background-color: inherit;
}

.mdc-button-focus-overlay {
    display: none;
}

.v-align-center {
    margin-top: auto;
    margin-bottom: auto;
}

/**************************************HANDSONTABLE*******************************************/
/*Use of !important needs to be used here as it the only way to override basic table stylings*/

.altRow {
    background-color: #C20047 !important;
    color: #FFFFFF
}


ngb-modal-backdrop {
    z-index: 1050 !important;
}
