/******************************************************
 * CSS override for B2B Commerce.
 * Override any CSS provided by OOTB B2B Commerce below
*******************************************************/
@font-face {
    font-family: "Salesforce Sans - Regular";
    src: url("../fonts/Salesforce_Sans/SalesforceSans-Regular.woff") format("woff");
}

body {
    background: rgba(255, 255, 255, 1);
    font-family: 'Salesforce Sans - Regular', sans-serif;
    font-weight: normal;
    font-style: normal;
    font-size: 14px;
    line-height: 24px;
}

a {
    color: rgba(0, 0, 0, 1);;
}

a:hover {
    color: rgba(35, 35, 35, 1);;
    text-decoration: none;
}

a:focus, .btn:focus {
    text-decoration: none;
    outline: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Salesforce Sans - Regular', sans-serif;
    font-style: normal;
    margin-top: 0;
    font-weight: 400;
}

h1 {
    font-size: 30px;
    font-weight: 500;
}

h2 {
    font-size: 24px;
}

h3 {
    font-size: 20px;
}

h4 {
    font-size: 18px;
}

h5 {
    font-size: 16px;
}

h6 {
    font-size: 14px;
}

.ckz_heading_embellished h3 {
    color: rgba(67, 67, 67, 1);
    font-size: 3rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 3rem;
}

ul {
    margin: 0px;
    padding: 0px;
}

li {
    list-style: none;
}

p {
    font-size: 13px;
    font-weight: normal;
    line-height: 20px;
    color: rgba(153, 153, 153, 1);
    margin-bottom: 15px;
}

hr {
    border-bottom: 1px solid rgba(238, 238, 238, 1);
    border-top: 0 none;
    padding: 0;
}

.ckz-text-primary {
    color: rgba(0, 0, 0, 1);;
}

.ckz-bg-primary {
    background-color: rgba(0, 0, 0, 1);;
}

/******************************************************
 * BUTTONS
*******************************************************/
.btn {
    font-family: "Salesforce Sans Bold", sans-serif;
}

.btn-default {
}

.btn-default:hover {
}

.btn-primary {
    background-color: rgba(53, 167, 86, 1);
    border-color: rgba(53, 167, 86, 1);
}

.btn-primary:hover, .btn-primary:active, .btn-primary.active, .btn-primary:focus, .btn-primary.focus, .open > .dropdown-toggle.btn-primary, .open > .dropdown-toggle.btn-primary:hover, .open > .dropdown-toggle.btn-primary:focus {
    background-color: rgba(41, 128, 66, 1);
    border-color: rgba(53, 167, 86, 1);
}

.btn-primary.disabled, .btn-primary.btn[disabled] {
    cursor: not-allowed;
    filter: alpha(opacity=65);
    -webkit-box-shadow: none;
    box-shadow: none;
    opacity: .65
}

.btn-primary.disabled:hover, .btn-primary.btn[disabled]:hover {
    border-color: rgba(53, 167, 86, .65);
    background-color: rgba(53, 167, 86, .65);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 1);
    color: rgba(0, 0, 0, 1);
    border-color: rgba(0, 0, 0, 1);
}

.btn-secondary:hover, .btn-secondary:active, .btn-secondary.active, .btn-secondary:focus, .btn-secondary.focus, .open > .dropdown-toggle.btn-secondary, .open > .dropdown-toggle.btn-secondary:hover, .open > .dropdown-toggle.btn-secondary:focus {
    color: rgba(53, 53, 53, 1);
    border-color: rgba(53, 53, 53, 1);
}

.btn-secondary.disabled, .btn-secondary.btn[disabled] {
    cursor: not-allowed;
    filter: alpha(opacity=65);
    -webkit-box-shadow: none;
    box-shadow: none;
    opacity: .65
}

.btn-secondary.disabled:hover, .btn-secondary.btn[disabled]:hover {
    border-color: rgba(0, 0, 0, .65);
    background-color: rgba(0, 0, 0, .65);
}

.btn-dashed {
    background-color: rgba(255, 255, 255, 1);
    border: 2px dashed rgba(204, 204, 204, 1);
}

.btn-dashed:hover, .btn-dashed:active, .btn-dashed.active, .btn-dashed:focus, .btn-dashed.focus, .open > .dropdown-toggle.btn-dashed, .open > .dropdown-toggle.btn-dashed:hover, .open > .dropdown-toggle.btn-dashed:focus {
    color: rgba(51, 51, 51, 1);
    border-color: rgba(173, 173, 173, 1);
}

.btn-link {
    color: rgba(0, 0, 0, 1);
}

.btn-link:hover, .btn-link:active, .btn-link.active, .btn-link:focus, .btn-link.focus, .open > .dropdown-toggle.btn-link, .open > .dropdown-toggle.btn-link:hover, .open > .dropdown-toggle.btn-link:focus {
    color: rgba(53, 53, 53, 1);
}

.btn-group.open .dropdown-toggle {
    box-shadow: none;
}

/******************************************************
 * RADIO BUTTONS
*******************************************************/
/* Customize the label (the container) */
.ckzCheckmarkContainerRadio {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default radio button */
.ckzCheckmarkContainerRadio input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom radio button */
.ckzCheckmarkContainerRadio .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: rgba(255, 255, 255, 1);
    border: 1px solid rgba(204, 204, 204, 1);
    border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.ckzCheckmarkContainerRadio:hover input ~ .checkmark {
    background-color: rgba(204, 204, 204, 1);
}

/* When the radio button is checked, add a white background */
.ckzCheckmarkContainerRadio input:checked ~ .checkmark {
    background-color: rgba(255, 255, 255, 1);
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.ckzCheckmarkContainerRadio .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the indicator (dot/circle) when checked */
.ckzCheckmarkContainerRadio input:checked ~ .checkmark:after {
    display: block;
}

/* Style the indicator (dot/circle) */
.ckzCheckmarkContainerRadio .checkmark:after {
    left: 9px;
    top: 6px;
    width: 6px;
    height: 10px;
    border: solid rgba(109, 110, 110, 1);
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

/******************************************************
 * CHECKBOXES
*******************************************************/
/* Customize the label (the container) */
.ckzCheckmarkContainerCheckbox {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default checkbox */
.ckzCheckmarkContainerCheckbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
.ckzCheckmarkContainerCheckbox .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    border: 1px solid rgba(204, 204, 204, 1);
    background-color: rgba(255, 255, 255, 1);
}

/* On mouse-over, add a grey background color */
.ckzCheckmarkContainerCheckbox:hover input ~ .checkmark {
    background-color: rgba(204, 204, 204, 1);
}

/* When the checkbox is checked, add a white background */
.ckzCheckmarkContainerCheckbox input:checked ~ .checkmark {
    background-color: rgba(255, 255, 255, 1);
}

/* Create the checkmark/indicator (hidden when not checked) */
.ckzCheckmarkContainerCheckbox .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.ckzCheckmarkContainerCheckbox input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.ckzCheckmarkContainerCheckbox .checkmark:after {
    left: 9px;
    top: 6px;
    width: 6px;
    height: 10px;
    border: solid rgba(109, 110, 110, 1);
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

/******************************************************
 * LABELS
*******************************************************/
.ckzRecentOrderItem .label, .ckz_myaccount .MyAccount_MyOrders_Table .cc_col_order_status .label {
    display: inline-block;
    padding: 1rem;
    border-radius: 2rem;
    text-transform: uppercase;
}

.ckzRecentOrderItem .label-rainbow, .ckz_myaccount .MyAccount_MyOrders_Table .cc_col_order_status .label-rainbow {
    background: rgba(98, 183, 237, 1);
    /* For browsers that do not support gradients */
    background: -webkit-linear-gradient(left, red, orange, yellow, green, blue, indigo, violet);
    /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(right, red, orange, yellow, green, blue, indigo, violet);
    /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(right, red, orange, yellow, green, blue, indigo, violet);
    /* For Firefox 3.6 to 15 */
    background: linear-gradient(to right, red, orange, yellow, green, blue, indigo, violet);
    /* Standard syntax (must be last) */
}

.ckzRecentOrderItem .label-red, .ckz_myaccount .MyAccount_MyOrders_Table .cc_col_order_status .label-red {
    background-color: rgba(251, 134, 139, 1);
}

.ckzRecentOrderItem .label-purple, .ckz_myaccount .MyAccount_MyOrders_Table .cc_col_order_status .label-purple {
    background-color: rgba(126, 139, 228, 1);
}

.ckzRecentOrderItem .label-green, .ckz_myaccount .MyAccount_MyOrders_Table .cc_col_order_status .label-green {
    background-color: rgba(158, 216, 128, 1);
}

.ckzRecentOrderItem .label-blue, .ckz_myaccount .MyAccount_MyOrders_Table .cc_col_order_status .label-blue {
    background-color: rgba(98, 183, 237, 1);
}

/******************************************************
 * FORMS/INPUTS
 *******************************************************/
.input-group .form-control[readonly] {
    background-color: rgba(255, 255, 255, 1);
    box-shadow: none;
    cursor: pointer;
}

.form-control:focus {
    border-color: rgba(119, 119, 119, 1);
    outline: 0;
    -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(0, 0, 0, .6);
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(0, 0, 0, .6);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(0, 0, 0, .6);
}

/******************************************************
 * PANELS
 *******************************************************/
.panel {
    border: 0;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
    margin: 1rem 0;
}

.panel-default > .panel-heading {
    background-color: rgba(255, 255, 255, 1);
}

/******************************************************
 * BREADCRUMBS
 *******************************************************/
.cc_breadcrumb {
    background-color: transparent;
    margin: 0;
    color: rgba(255, 255, 255, 1);
}

.cc_breadcrumb_item {
    font-size: 1rem;
}

.cc_breadcrumb_item a {
    color: rgba(51, 51, 51, 1);
}

.cc_breadcrumb > li + li:before {
    color: rgba(51, 51, 51, 1);
}

.ckz_ccsitelogin .cc_breadrumb_container, .ckz_ccsitelogin .cc_QuickOrder, .ckz_ccsitelogin .cc_Cart {
    display: none;
}

.ckz_ccsiteregister .cc_breadrumb_container, .ckz_SelfRegister .cc_breadrumb_container {
    display: none;
}

/******************************************************
 * PROMOTIONS
*******************************************************/
.promotion_banner {
    margin-bottom: 1rem;
}

/******************************************************
 * NAV OVERRIDES
*******************************************************/
.navbar {
    border-radius: 0;
}

.nav-tabs > li > a {
    font-size: 18px;
    font-weight: 700;
    color: rgba(51, 51, 51, 1);
    border: 0;
    border-bottom: 3px solid transparent;
}

.nav-tabs > li > a:hover {
    background-color: transparent;
    border-color: transparent;
}

.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {
    color: rgba(51, 51, 51, 1);
    border: 0;
    border-bottom: 3px solid rgba(0, 0, 0, 1);;
}

.navbar-default .navbar-collapse {
}

.navbar-default .navbar-toggle {
    float: left;
    margin-left: 15px;
}

.navbar-default .navbar-toggle .icon-bar {
}

.navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus {
    background-color: rgba(255, 255, 255, 1);
}

.navbar-default .navbar-toggle:hover .icon-bar, .navbar-default .navbar-toggle:focus .icon-bar {
    background-color: rgba(53, 53, 53, 1);
}

/******************************************************
 * HEADER STYLES
*******************************************************/
.cc_store_logo_img {
    background: url(../images/Professional_Community_Logo.png) no-repeat;
    background-size: contain;
    height: 40px;
    width: 150px;
    transform: translateX(-50%);
    left: 50%;
    position: absolute;
}

@media (min-width: 768px) {
    .cc_store_logo_img {
        background: url(../images/Professional_Community_Logo.png) no-repeat;
        background-size: contain;
        height: 50px;
        width: 200px;
        transform: none;
        left: 0;
        position: relative;
    }
}

.header-top .navbar-default {
    background-color: rgba(255, 255, 255, 1);
    border: none;
    min-height: 0;
}

.header-top .navbar-default .navbar-nav.navbar-left {
    float: left;
}

.header-top .navbar-default .navbar-nav.navbar-right {
    float: right;
}

.header-top .navbar-default .navbar-nav > li {
    display: inline-block;
}

.header-top .navbar-default .navbar-nav > li > a {
    font-size: 1.1rem;
    color: rgba(0, 0, 0, 0.8);
    padding-top: 10px;
    padding-bottom: 10px;
}

.header-top .navbar-default .navbar-nav > li > a:hover {
    color: rgba(0, 0, 0, 0.7);
}

.header-bottom .navbar-default {
    padding: 16px 0;
    background-color: rgba(255, 255, 255, 1);
    border: 1px solid rgba(231, 231, 231, 1);
}

@media (min-width: 768px) {
    .header-bottom .navbar-default .navbar-nav.navbar-left > li {
        margin: 0 30px;
    }
}

.header-bottom .navbar-default .navbar-nav > li > a {
    color: rgba(0, 0, 0, 0.8);
    font-size: 1em;
    padding: 1em;
}

.header-bottom .navbar-default .navbar-nav > li > a:hover {
    text-decoration: none;
    color: rgba(0, 0, 0, 0.7);
}

.header-bottom .navbar-default .navbar-nav > .open > a, .header-bottom .navbar-default .navbar-nav > .open > a:hover, .header-bottom .navbar-default .navbar-nav > .open > a:focus {
    background-color: transparent;
}

.header-bottom .navbar-nav.navbar-left > li > .dropdown-menu.ddPro::before, .header-bottom .navbar-nav.navbar-left > li > .dropdown-menu.ddPro::after {
    left: 1.5rem;
    top: -0.5rem;
    width: 1rem;
    height: 1rem;
    position: absolute;
    transform: rotate(45deg);
    content: "";
    background-color: rgba(255, 255, 255, 1);
    margin-left: -0.5rem;
    border-bottom-color: rgba(255, 255, 255, 1);
    z-index: -1;
}

.header-bottom .navbar-nav.navbar-right > li > .dropdown-menu.ddPro::before, .header-bottom .navbar-nav.navbar-right > li > .dropdown-menu.ddPro::after {
    right: 1.5rem;
    top: -0.5rem;
    width: 1rem;
    height: 1rem;
    position: absolute;
    transform: rotate(45deg);
    content: "";
    background-color: rgba(255, 255, 255, 1);
    margin-left: -0.5rem;
    border-bottom-color: rgba(255, 255, 255, 1);
    z-index: -1;
}

.header-bottom .navbar-nav > li > .dropdown-menu.ddPro::after {
    box-shadow: rgba(0, 0, 0, 0.16) -1px -1px 0 0;
}

.header-bottom .navbar-nav > li > .dropdown-menu.ddPro {
    padding: 0;
}

.header-bottom .navbar-nav > li > .dropdown-menu.ddPro > li {
    line-height: 30px;
}

.header-bottom .navbar-nav > li > .dropdown-menu.ddPro > li.dropdown-submenu::before, .header-bottom .navbar-nav > li > .dropdown-menu.ddPro > li.dropdown-submenu::after {
    /*     right: 0.5rem;
    top: 1.5rem;
    width: 1rem;
    height: 1rem;
    position: absolute;
    transform: rotate(45deg);
    content: "";
    background-color: rgba(255, 255, 255, 0);
    border: 1px solid transparent;
    border-top-color: rgba(51, 51, 51, 1);
    border-right-color: rgba(51, 51, 51, 1); */
}

.header-bottom .navbar-nav > li > .dropdown-menu.ddPro > li > a {
    padding: 5px 10px;
    border-bottom: 1px solid rgba(236, 236, 236, 1);
    line-height: 30px;
}

.header-bottom .dropdown-menu > li > a:focus, .header-bottom .dropdown-menu > li > a:hover {
    /*     background-color: rgba(0, 99, 65, 0.05); */
}

.header-bottom .navbar-nav > li > .dropdown-menu.ddPro > li.dropdown-submenu > a:after {
    display: block;
    content: " ";
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    width: 1rem;
    height: 1rem;
    background-color: transparent;
    border: 1px solid transparent;
    border-top-color: rgba(51, 51, 51, 1);
    border-right-color: rgba(51, 51, 51, 1);
    transform: rotate(45deg);
}

.header-bottom .navbar-nav > li > .dropdown-menu.ddPro > li ul {
    margin-top: -1px;
    border-radius: 0;
    padding: 0;
}

.header-bottom .navbar-nav > li > .dropdown-menu.ddPro > li ul > li > a {
    padding: 5px 10px;
    border-bottom: 1px solid rgba(236, 236, 236, 1);
    line-height: 30px;
}

.header-bottom .cc_search_form .search_button {
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    border-right: none;
    border-color: rgba(0, 0, 0, 0.8);
    background-color: rgba(255, 255, 255, 1);
}

.header-bottom .cc_search_form .search_button:hover {
    background-color: rgba(255, 255, 255, 1);
}

.header-bottom .cc_search_form .cc_search_input {
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    border-color: rgba(0, 0, 0, 0.8);
    border-left: none;
    box-shadow: none;
}

.header-bottom .cc_search_form .cc_search_input:focus {
    box-shadow: none;
}

.header-bottom .dropdown.user_info a {
    padding: 5px !important;
}

.header-bottom .avatar-header img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    vertical-align: middle;
}

/******************************************************
 * MINI CART
 *******************************************************/
.wrapper {
    display: block;
}

#sidebar {
    padding: 35px 1rem 1rem 1rem;
    width: 350px;
    position: fixed;
    top: 0;
    right: -350px;
    height: 100vh;
    background: rgba(255, 255, 255, 1);
    transition: all 0.3s;
    overflow-y: scroll;
    overflow-x: hidden;
    box-shadow: -3px -3px 3px rgba(0, 0, 0, 0.2);
    z-index: 1050;
}

#sidebar.active {
    right: 0;
}

#dismiss {
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    position: absolute;
    top: 10px;
    left: 10px;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

#dismiss:hover {
    color: rgba(0, 0, 0, 1);;
}

.overlay {
    display: none;
    position: fixed;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    z-index: 998;
    opacity: 0;
    transition: all 0.5s ease-in-out;
}

.overlay.active {
    display: block;
    opacity: 1;
}

/******************************************************
* QUICK ORDER
*******************************************************/
.quickOrder-Title {
    font-size: 22px
}

.quickOrder-Caption {
    font-size: 14px;
}

/******************************************************
 * ORDER TEMPLATES
 *******************************************************/
.cc_quick_wishlist h4 {
    /* color: rgba(67, 67, 67, 1); */
}

/******************************************************
 * SPOTLIGHT/FEATURED PRODUCTS
 *******************************************************/
.ckz_homepage .featured-prod, .ckz_homepage .hp-featured-prod.spotlight .cc_featured_products, .ckz_homepage .hp-featured-prod.featured .cc_spotlight_products {
    display: none;
}

.spotlightProdImage, .featuredProdImage {
    min-height: 235px;
    display: flex;
    overflow: hidden;
    align-items: center;
}

.spotlightProdImage a, .featuredProdImage a {
    width: 100%;
}

.spotlightProdImage img, .featuredProdImage img {
    max-width: 100%;
}

.spotlightProdName, .featuredProdName {
    min-height: 40px;
}

.spotlightProdName a, .featuredProdName {
    /* color: rgba(57, 57, 57, 1); */
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
}

/******************************************************
 * SITE LOGIN
 *******************************************************/
.ckz_ccsitelogin .cc_content_body, .ckz_ccsiteregister .cc_content_body {
    background: url('https://sfdc-ckz-b2b.s3.amazonaws.com/SDO/2019+Refresh/bg_cirrus_lt.png') no-repeat;
    background-size: cover;
    height: 800px;
}

.ckz_ccsitelogin .cc_loginoutsec, .ckz_ccsiteregister .cc_loginoutsec {
    display: none !important;
}

.ckz_ccsitelogin .cc_my_account, .ckz_ccsiteregister .cc_my_account {
    display: none !important;
}

.ckz_ccsitelogin .site-greeting, .ckz_ccsiteregister .site-greeting {
    margin-top: 10rem;
}

.ckz_ccsitelogin .form-box, .ckz_ccsiteregister .form-box {
    margin-top: 35px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
}

.ckz_ccsitelogin .form-box .btn-link, .ckz_ccsiteregister .form-box .btn-link {
}

/* entire container, keeps perspective */
.card-container {
    -webkit-perspective: 800px;
    -moz-perspective: 800px;
    -o-perspective: 800px;
    perspective: 800px;
}

/* flip the pane when hovered */
.card-container.hover.manual-flip .card {
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

.card-container.static.hover .card {
    -webkit-transform: none;
    -moz-transform: none;
    -o-transform: none;
    transform: none;
}

/* flip speed goes here */
.card {
    -webkit-transition: -webkit-transform .5s;
    -moz-transition: -moz-transform .5s;
    -o-transition: -o-transform .5s;
    transition: transform .5s;
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    -o-transform-style: preserve-3d;
    transform-style: preserve-3d;
    position: relative;
}

.card .nto-logo {
    display: block;
    overflow: hidden;
    position: relative;
    margin-bottom: 15px;
    background: url(../images/logo_cirrus.png) center no-repeat;
    background-size: contain;
    height: 50px;
}

/* hide back of pane during swap */
.front, .back {
    background-color: rgba(255, 255, 255, 1);
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -o-backface-visibility: hidden;
    backface-visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
}

/* front pane, placed above back */
.front {
    z-index: 2;
}

/* back, initially hidden pane */
.back {
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
    transform: rotateY(180deg);
    z-index: 3;
}

/*        Style       */
.card {
}

.card-container, .front, .back {
    width: 100%;
    height: 425px;
    padding: 0 25px 15px 25px;
}

/*       Fix bug for IE      */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    .front, .back {
        -ms-backface-visibility: visible;
        backface-visibility: visible;
    }

    .back {
        visibility: hidden;
        -ms-transition: all 0.2s cubic-bezier(.92, .01, .83, .67);
    }

    .front {
        z-index: 4;
    }

    .card-container:not(.manual-flip):hover .back, .card-container.manual-flip.hover .back {
        z-index: 5;
        visibility: visible;
    }
}

/******************************************************
 * HOME PAGE
 *******************************************************/
.ckz_homepage {
    /*     background-color: rgba(238, 238, 238, 1); */
}

.ckz_homepage .ckz_heading_embellished h3 {
    /*     background-color: rgba(238, 238, 238, 1); */
}

.ckz_homepage .ckzOrderTemplateItem .OrderTemplateItemName {
    /* font-size: 22px; */
    font-weight: bold;
    text-transform: uppercase;
}

.ckz_homepage .ckzOrderTemplateItem .OrderTemplateItemSku {
    font-size: 15px;
    color: rgba(109, 110, 110, 1);
    font-weight: 600;
}

.ckz_homepage .ckzOrderTemplateItem .OrderTemplateItemPrice {
    min-height: 25px;
}

.ckz_homepage .ckzOrderTemplateItem .cc_cart_inc_price {
    font-size: 16px;
    font-weight: bold;
}

.ckz_homepage .ckz-wish-template, .ckz_homepage .hp-featured-prod, .ckz_homepage .ckz_topCategories {
    clear: both;
    padding-top: 3rem;
}

.ckz_homepage .ckz-wish-template::before, .ckz_homepage .ckz-wish-template::after {
    display: table;
    content: '';
}

.ckz_homepage .ckz-wish-template::after {
    clear: both;
}

.ckz_homepage .hp-featured-prod.featured {
    margin-bottom: 3rem;
}

.ckz_homepage .ckz_topCategories .ckz-cat-image-container {
    min-height: 235px;
    display: flex;
    overflow: hidden;
    align-items: center;
}

.ckz_homepage .ckz_topCategories .ckz-cat-image-container a {
    width: 100%;
}

.ckz_homepage .ckz_topCategories .ckz-cat-image-container img {
    max-width: 100%;
}

/******************************************************
 * RECENT ORDERS
*******************************************************/
.ckz_homepage .ckz_RecentOrders .ckzRecentOrderItem .RecentOrders_Summary {
}

.ckz_homepage .ckz_RecentOrders .ckzRecentOrderItem .RecentOrders_OrderNumber_Label {
    font-size: 15px;
    font-weight: bold;
    text-transform: uppercase;
}

.ckz_homepage .ckz_RecentOrders .ckzRecentOrderItem .RecentOrders_OrderDate_Label, .ckz_homepage .ckz_RecentOrders .ckzRecentOrderItem .RecentOrders_Amount_Label, .ckz_homepage .ckz_RecentOrders .ckzRecentOrderItem .RecentOrders_ShippingGroups_Label, .ckz_homepage .ckz_RecentOrders .ckzRecentOrderItem .RecentOrders_Items_Label {
    font-size: 15px;
    font-weight: bold;
    text-transform: uppercase;
    margin-top: 1rem;
}

.ckz_homepage .ckz_RecentOrders .ckzRecentOrderItem .RecentOrders_OrderNumber_Value, .ckz_homepage .ckz_RecentOrders .ckzRecentOrderItem .RecentOrders_OrderDate_Value, .ckz_homepage .ckz_RecentOrders .ckzRecentOrderItem .RecentOrders_ShippingGroups_Value, .ckz_homepage .ckz_RecentOrders .ckzRecentOrderItem .RecentOrders_Items_Value {
    font-size: 15px;
    color: rgba(109, 110, 110, 1);
    font-weight: 600;
}

.ckz_homepage .ckz_RecentOrders .ckzRecentOrderItem .RecentOrders_Amount_Value {
    font-size: 15px;
    color: rgba(53, 53, 53, 1);
    font-weight: bold;
}

.ckz_homepage .ckz_RecentOrders .ckzRecentOrderItem .RecentOrders_Details {
    border-top: 1px solid rgba(221, 221, 221, 1);
    border-bottom: 1px solid rgba(221, 221, 221, 1);
    height: 250px;
    overflow: scroll;
}

.ckz_homepage .ckz_RecentOrders .ckzRecentOrderItem .RecentOrders_Actions .col-sm-6:first-child {
    border-right: 1px solid rgba(221, 221, 221, 1);
}

.ckz_homepage .HomePageReorder_OrderAmount {
    font-size: 16px;
    font-weight: bold;
}

/******************************************************
 * PRODUCT LIST PAGE
*******************************************************/
.ckz_productlist .cc_main_container {
    margin-top: 1rem;
}

.ckz_productlist .cc_filter_breadcrumb.label {
    padding: .75em;
}

.ckz_productlist .cc_spec_header a {
    text-transform: uppercase;
    font-weight: 700;
    display: block;
}

#CKZ-PLP-TopContainer {
    position: relative;
    text-align: center;
    min-height: 40px;
    background-color: rgba(53, 53, 53, 1);
}

#CKZ-PLP-TopContainer .catBreadcrumbs {
    position: absolute;
    top: 0;
    left: 0;
}

#CKZ-PLP-TopContainer .cc_breadcrumb_item a {
    color: rgba(255, 255, 255, 1);
}

#CKZ-PLP-TopContainer .cc_breadcrumb > li + li:before {
    color: rgba(255, 255, 255, 1);
}

#CKZ-PLP-TopContainer .catName {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgba(255, 255, 255, 1);
    font-size: 3rem;
    font-weight: 700;
    text-transform: uppercase;
}

.ckz_productlist .cc_grid_item {
    margin-bottom: 2rem;
    transition: all 0.3s ease 0s;
    /*     box-shadow: 0px 8px 13px rgba(0, 0, 0, 0.15); */
}

.ckz_productlist .cc_grid_item:hover {
    box-shadow: 0px 8px 13px rgba(0, 0, 0, 0.15);
}

.ckz_productlist .cc_grid_item .cc_grid_image_container {
    min-height: 262px;
    display: flex;
    overflow: hidden;
    align-items: center;
}

.ckz_productlist .cc_grid_item .cc_grid_image_container a {
    width: 100%;
}

.ckz_productlist .cc_grid_item .cc_grid_image_container img {
    max-width: 100%;
}

.ckz_productlist .cc_grid_item .cc_grid_product_info {
    background-color: rgba(246, 246, 246, 1);
    padding: 1rem;
    text-align: center;
}

.ckz_productlist .cc_grid_item .cc_product_link a {
    display: block;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
}

.ckz_productlist .cc_grid_item .cc_product_link a:hover {
    text-decoration: none;
}

.ckz_productlist .cc_grid_item .dispPriceConfigure {
    color: rgba(102, 102, 102, 1);
    font-size: 18px;
    font-weight: bold;
}

.ckz_productlist .cc_grid_item .cc_price_value {
    color: rgba(102, 102, 102, 1);
    font-size: 18px;
    font-weight: bold;
}

.ckz_productlist .cc_grid_item .cc_base_price_value {
    color: rgba(166, 166, 166, 1);
    font-size: 14px;
    font-weight: normal;
}

.ckz_productlist .cc_grid_item .cc_product_grid_actions {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.ckz_productlist .cc_grid_item .cc_product_grid_actions ul li a, .ckz_productlist .cc_row_item .cc_product_row_actions ul li a {
    color: rgba(153, 153, 153, 1);
}

.ckz_productlist .cc_grid_item .cc_product_grid_actions ul li a:hover, .ckz_productlist .cc_row_item .cc_product_row_actions ul li a:hover {
    color: rgba(53, 53, 53, 1);
}

.ckz_productlist .cc_grid_item .cc_product_grid_actions .cc_addto_compare.active, .ckz_productlist .cc_row_item .cc_product_row_actions .cc_addto_compare.active {
    color: rgba(53, 167, 86, 1);
}

.ckz_productlist .cc_grid_item .cc_product_grid_actions .cc_addto_compare.disabled, .ckz_productlist .cc_row_item .cc_product_row_actions .cc_addto_compare.disabled {
    color: rgba(223, 223, 223, 1);
    cursor: not-allowed;
}

.ckz_productlist .modalQuickView h1 {
    color: rgba(102, 102, 102, 1);
    font-size: 24px;
    font-weight: 700;
    line-height: 24px;
    text-transform: uppercase;
}

.ckz_productlist .modalQuickView .cc_price_container {
    border-bottom: 1px solid rgba(229, 229, 229, 1);
    border-top: 1px solid rgba(229, 229, 229, 1);
    display: block;
    padding: 10px 0;
}

.ckz_productlist .modalQuickView .cc_desc {
    border-bottom: 1px solid rgba(229, 229, 229, 1);
    border-top: 1px solid rgba(229, 229, 229, 1);
    display: block;
    padding: 10px 0;
}

.ckz_productlist .compareTray .well {
    border-radius: 0;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 0;
}

.ckz_productlist .compareTray .compareTrayProdName a {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/******************************************************
 * PRODUCT COMPARE PAGE
 *******************************************************/
.ckz_productcompare .productCompareBasicTable .cc_compare_product_name {
    min-height: 45px;
}

.ckz_productcompare .productCompareBasicTable .cc_compare_product_name a {
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    color: rgba(57, 57, 57, 1);
}

.ckz_productcompare .productCompareBasicTable .cc_sku {
    font-size: 14px;
    color: rgba(109, 110, 110, 1);
    font-weight: 600;
}

.ckz_productcompare .productCompareBasicTable .cc_product_compare_img {
    max-height: 200px;
}

.ckz_productcompare .productCompareBasicTable .cc_compare_spec_price_col {
    font-weight: bold;
    color: rgba(0, 0, 0, 1);
    text-align: center;
}

.ckz_productcompare .productCompareBasicTable .cc_compare_spec_col {
    text-align: center;
}

.ckz_productcompare .productCompareBasicTable .compareHeadCol {
    color: rgba(51, 51, 51, 1);
    font-weight: bold;
    text-transform: uppercase;
    text-align: left;
}

.ckz_productcompare .productCompareBasicTable .compareSpecRowDiff {
    font-weight: 900;
    color: rgba(0, 0, 0, 1);
    background-color: rgba(227, 250, 255, 1);
}

/******************************************************
 * PRODUCT DETAILS PAGE
 *******************************************************/
.ckz_productdetails {
    /*     background-color: rgba(238, 238, 238, 1); */
}

.ckz_productdetails .ckz_heading_embellished h3 {
    /*     background-color: rgba(238, 238, 238, 1); */
}

.ckz_productdetails .ckz_breadcrumb_main {
    /*     background-color: rgba(255, 255, 255, 1); */
}

#CKZ-PDP-TopContainer .cc_breadcrumb {
    /*     background-color: rgba(255, 255, 255, 1); */
}

.product_detail_main {
    /*     background-color: rgba(255, 255, 255, 1); */
}

.ckz_productdetails .cc_main_prod_image {
    min-height: 305px;
}

.ckz_productdetails .cc_title {
    font-weight: bold;
    text-transform: uppercase;
}

.ckz_productdetails .cc_sku {
    font-size: 16px;
    color: rgba(109, 110, 110, 1);
    font-weight: 700;
}

.ckz_productdetails .cc_inventory {
    font-size: 16px;
    color: rgba(109, 110, 110, 1);
}

.ckz_productdetails .cc_price_block {
}

.ckz_productdetails .cc_price_block .cc_price, .ckz_productdetails .gp_attribute_price {
    display: inline-block;
    font-weight: 700;
}

.ckz_productdetails .cc_price_block .cc_baseprice {
    display: inline-block;
    color: rgba(166, 166, 166, 1);
    font-weight: 600;
    margin-right: .5rem;
}

.relatedProdName {
    min-height: 40px;
}

.relatedProdName a {
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
}

.ckz_productdetails .cc_batch_table .cc_batch_header_row {
    font-weight: bold;
    color: rgba(57, 57, 57, 1);
    text-transform: uppercase;
}

.ckz_productdetails .cc_batch_table .cc_attr_batch_item_total {
    font-weight: bold;
}

.ckz_productdetails .cc_included_items {
}

.ckz_productdetails .cc_included_items .cc_name {
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
}

.ckz_productdetails .cc_included_items .cc_sku, .ckz_productdetails .cc_included_items .cc_quantity {
    font-size: 16px;
    color: rgba(109, 110, 110, 1);
    font-weight: 600;
}

.ckz_productdetails .cc_included_items .cc_pricing {
    font-size: 16px;
    font-weight: bold;
}

.ckz_productdetails .thumbnail.bg-info {
    background-color: rgba(0, 0, 0, 1);;
    border-color: rgba(0, 0, 0, 1);;
    color: rgba(255, 255, 255, 1);
}

/******************************************************
 * PRODUCT DETAILS REVIEWS
 *******************************************************/
.rating {
    float: left;
}

/* :not(:checked) is a filter, so that browsers that don't support :checked don't
   follow these rules. Every browser that supports :checked also supports :not(), so
   it doesn't make the test unnecessarily selective */
.rating:not(:checked) > input {
    position: absolute;
    top: -9999px;
    clip: rect(0, 0, 0, 0);
}

.rating:not(:checked) > label {
    float: right;
    overflow: hidden;
    white-space: nowrap;
    cursor: pointer;
    font-size: 200%;
    color: rgba(221, 221, 221, 1);
}

.rating:not(:checked) > label:before {
    margin: 5px;
    font-size: 1.25em;
    font-family: FontAwesome;
    display: inline-block;
    content: "\f005";
}

.rating > input:checked ~ label {
    color: rgba(255, 215, 0, 1);
}

.rating:not(:checked) > label:hover, .rating:not(:checked) > label:hover ~ label {
    color: rgba(255, 237, 133, 1);
}

.rating > input:checked + label:hover, .rating > input:checked + label:hover ~ label, .rating > input:checked ~ label:hover, .rating > input:checked ~ label:hover ~ label, .rating > label:hover ~ input:checked ~ label {
    color: rgba(255, 215, 0, 1);
}

.rating > label:active {
    position: relative;
    top: 2px;
    left: 2px;
}

.inReviewSubject {
    clear: both;
}

/******************************************************
 * PRODUCT DETAILS ASSORTMENT BUILDER
 *******************************************************/
.ckz_productdetails.ckz_Assortment #slider_multiply-slider {
    width: 200px;
    margin: 10px 15px 0 15px;
    display: block;
}

.ckz_productdetails.ckz_Assortment .prodDetailIncl {
    /*height: 150px !important;*/
}

.ckz_productdetails.ckz_Assortment .item_container {
    margin-top: 10px;
}

.ckz_productdetails.ckz_Assortment .productGridRowHeader .prodDetailInc1 {
    height: 50px;
}

.ckz_productdetails.ckz_Assortment .productGridHeaderItem, .ckz_productdetails.ckz_Assortment .productGridRowHeader {
    text-align: center;
    text-transform: uppercase;
}

.ckz_productdetails.ckz_Assortment .productGridItem {
    padding: 0 5px;
}

.ckz_productdetails.ckz_Assortment .backdrop {
    position: fixed;
    top: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 100;
    display: none;
}

.ckz_productdetails.ckz_Assortment .input-grp {
    display: flex;
    flex-direction: row;
}

.ckz_productdetails.ckz_Assortment .input-grp .input-group-addon {
    display: flex;
    justify-content: center;
    align-items: center;
. ckz_productdetails
}

.ckz_productdetails.ckz_Assortment #theModal {
    position: fixed;
    top: 5%;
    padding: 20px;
    width: 90%;
    background-color: white;
    border-radius: 8px;
    z-index: 500;
    left: 5%;
    height: 90%;
    display: none;
    overflow-y: auto;
}

.ckz_productdetails.ckz_Assortment .ratio-modal-content {
    display: flex;
    width: 100%;
    flex-direction: column;
    box-sizing: border-box;
}

.ckz_productdetails.ckz_Assortment .prod-info-header {
    display: flex;
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    border: 1px solid rgba(237, 237, 237, 1);
    padding: 12px;
    margin-bottom: 12px;
    border-radius: 6px;
    box-sizing: border-box;
}

.ckz_productdetails.ckz_Assortment .prod-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.ckz_productdetails.ckz_Assortment .input-group {
    width: 100%;
}

.ckz_productdetails.ckz_Assortment .productDisplayGrid .productGridItem {
    padding: 0 10px;
}

.ckz_productdetails.ckz_Assortment .productDisplayGrid .input-group-addon:last-child {
    background-color: rgba(255, 255, 255, 1);
    font-weight: bold;
}

/******************************************************
 * CART
 *******************************************************/
.ckz_cart .cc_header .cc_Cart {
    /* display: none; */
}

.ckz_cart .cart_item_list_header h4 {
    text-transform: uppercase;
    font-weight: bold;
    font-size: 16px;
}

.ckz_cart .cart_item_list .item_title {
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
}

.ckz_cart .cart_item_list .sku {
    font-size: 14px;
    color: rgba(109, 110, 110, 1);
    font-weight: 600;
}

.ckz_cart .cart_item_list .unitPrice {
    font-size: 14px;
    font-weight: 700;
}

.ckz_cart .cart_item_list .price {
    font-size: 16px;
    font-weight: 600;
}

.ckz_cart .ckz_subTotal {
    font-weight: bold;
}

/******************************************************
 * CHECKOUT
 *******************************************************/
.ckz_checkout .cc_header .cc_Cart {
    /* display: none; */
}

.ckz_checkout .multi-steps > li.active:before, .ckz_checkout .multi-steps > li.active ~ li:before {
    font-family: inherit;
    font-weight: 700;
}

.ckz_checkout .multi-steps > li.active:after, .ckz_checkout .multi-steps > li.active ~ li:after {
    background-color: rgba(207, 215, 230, 1);
}

.ckz_checkout .multi-steps {
    display: table;
    table-layout: fixed;
    width: 100%;
}

.ckz_checkout .multi-steps > li {
    text-align: center;
    display: table-cell;
    position: relative;
}

.ckz_checkout .multi-steps > li:before {
    content: '';
    display: block;
    margin: 10px auto 4px;
    background-color: rgba(0, 0, 0, 1);;
    width: 16px;
    height: 16px;
    line-height: 12px;
    text-align: center;
    font-weight: bold;
    border-width: 4px;
    border-style: solid;
    border-color: rgba(0, 0, 0, 1);;
    border-radius: 50%;
}

.ckz_checkout .multi-steps > li:after {
    content: '';
    height: 3px;
    width: 100%;
    background-color: rgba(0, 0, 0, 1);;
    position: absolute;
    top: 16px;
    left: 50%;
    z-index: -1;
}

.ckz_checkout .multi-steps > li:last-child:after {
    display: none;
}

.ckz_checkout .multi-steps > li.active:before {
    background-color: rgba(255, 255, 255, 1);
    border-color: rgba(0, 0, 0, 1);;
}

.ckz_checkout .multi-steps > li.active ~ li {
    color: rgba(128, 128, 128, 1);
}

.ckz_checkout .multi-steps > li.active ~ li:before {
    background-color: rgba(207, 215, 230, 1);
    border-color: rgba(207, 215, 230, 1);
}

.ckz_checkout .address_selection_display {
    font-size: 12px;
}

.ckz_checkout .address_selection_display .cc_addr_name {
    margin-bottom: 0;
}

/******************************************************
 * MY ACCOUNT
 *******************************************************/
.ckz_MyAccountCard.card {
    padding-top: 20px;
    background-color: rgba(214, 224, 226, 0.2);
    border-top-width: 0;
    border-bottom-width: 2px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.ckz_MyAccountCard.card {
    position: relative;
    padding-top: 0;
    overflow: hidden;
    text-align: center;
    background-color: rgba(214, 224, 226, 0.2);
}

.ckz_MyAccountCard.card .cardheader {
    background-color: rgba(53, 53, 53, 1);
    height: 100px;
}

.ckz_MyAccountCard.card .avatar {
    position: relative;
    top: -50px;
    margin-bottom: -50px;
}

.ckz_MyAccountCard.card .avatar img {
    width: 100px;
    height: 100px;
    max-width: 100px;
    max-height: 100px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    border: 5px solid rgba(255, 255, 255, 0.5);
}

.ckz_MyAccountCard.card .info {
    padding: 4px 8px 10px;
}

.ckz_MyAccountCard.card .info .title {
    margin-bottom: 4px;
    font-size: 24px;
    line-height: 1;
    color: rgba(38, 38, 38, 1);
    vertical-align: middle;
}

.ckz_MyAccountCard.card .info .desc {
    overflow: hidden;
    font-size: 12px;
    line-height: 20px;
    color: rgba(115, 115, 115, 1);
    text-overflow: ellipsis;
}

.acctmainSection .panel-body, .newCustomerSection .panel-body {
    border-bottom: 1px solid rgba(221, 221, 221, 1);
}

.ckz_myaccount dt {
    font-size: 16px;
}

/******************************************************
 * MY ACCOUNT -- MY ORDERS
 *******************************************************/
.ckz_myaccount .MyAccount_MyOrders_Table .cc_table_header h4 {
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
}

.ckz_myaccount .MyAccount_MyOrders_Table .cc_table_row {
    color: rgba(86, 86, 86, 1);
}

.ckz_myaccount .MyAccount_MyOrders_Table .cc_col_order_number a {
    color: rgba(86, 86, 86, 1);
}

.ckz_myaccount .MyAccount_MyOrders_Table .cc_col_order_amount {
    font-weight: bold;
}

.ckz_myaccount .MyAccount_MyOrders_Table .cc_col_prompt_cancel {
    color: rgba(86, 86, 86, 1);
}

/******************************************************
 * ORDER VIEW
 *******************************************************/
.ckz_orderview .cc_Cart {
    display: none !important;
}

/******************************************************
 * SUBSCRIPTION DETAILS
 *******************************************************/
.ckz_subscriptiondetail .cc_Cart {
    display: none !important;
}

/******************************************************
 * STORED PAYMENT DETAILS
 *******************************************************/
.ckz_storedpaymentdetail .cc_Cart {
    display: none !important;
}

/******************************************************
 * INVOICE DETAILS
 *******************************************************/
.ckz_invoicedetail .cc_Cart {
    display: none !important;
}

/******************************************************
 * INVOICE PAYMENT
 *******************************************************/
.ckz_invoicepayment .cc_Cart {
    display: none !important;
}

/******************************************************
 * SUBSCRIBER PAGES
 *******************************************************/
.ckz_ccpage .contentBody {
    min-height: 700px;
    padding: 3rem 0;
}

/******************************************************
 * FOOTER
 *******************************************************/
.ckz_footer {
    padding: 20px;
    border-top: 5px solid;
    border-color: rgba(53, 167, 86, 1);
    color: rgba(195, 195, 195, 1);
    background-color: rgba(53, 53, 53, 1);
    font-size: 12px;
}

.ckz_footer p {
    color: rgba(195, 195, 195, 1);
}

.ckz_footer .footer-link a {
    color: rgba(195, 195, 195, 1);
}

.ckz_footer .footer-link a:hover, .ckz_footer .footer-link a:focus {
    color: rgba(223, 223, 223, 1);
    text-decoration: none;
}

.ckz_footer .footer-link a.social {
    color: rgba(0, 0, 0, 1);;
}

.ckz_footer .footer-link a.social:hover {
    color: rgba(53, 53, 53, 1);
}

.ckz_footer .footer-logo {
    display: block;
    overflow: hidden;
    position: relative;
    margin-bottom: 15px;
    background: url(../images/logo_cirrus_white.png) center no-repeat;
    background-size: contain;
    height: 50px;
}

.ckz_footer h4 {
    color: rgba(255, 255, 255, 1);
    font-size: 14px;
}

.ckz_footer ul {
    list-style: none;
    padding: 0;
}

.ckz_footer .footer-link-list {
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.ckz_footer .footer-link-list a:hover {
    color: rgba(255, 255, 255, 1);
}

.ckz_footer ul li {
    margin: 0 0 8px;
}

.ckz_footer .footer-builtOn {
    display: inline-block;
    vertical-align: middle;
    margin-bottom: 5px;
}

.ckz_footer .footer-logo-commerceCloud {
    display: inline-block;
    overflow: hidden;
    position: relative;
    background: url(../images/b2b-commerce-logo.svg) center no-repeat;
    background-size: contain;
    height: 70px;
    width: 140px;
    vertical-align: middle;
}

/******************************************************
 MEGA MENU
 *******************************************************/
.mega .nav, .mega .collapse, .mega .dropup, .mega .dropdown {
    position: static;
}

.mega .container {
    position: relative;
}

.mega .dropdown-menu {
    left: auto;
}

.mega .mega-content {
    padding: 20px 30px;
}

.mega.navbar-nav.navbar-left > li > a {
    border-bottom: 2px solid transparent;
}

.mega.navbar-nav.navbar-left > li > a:hover, .mega.navbar-nav.navbar-left > li > a:active {
    color: rgba(41, 128, 66, 1);
}

.mega.navbar-nav.navbar-left > .open > a, .mega.navbar-nav.navbar-left > .open > a:hover, .mega.navbar-nav.navbar-left > .open > a:focus {
    color: rgba(53, 167, 86, 1);
    border-color: rgba(53, 167, 86, 1);
}

.mega .dropdown.mega-fw .dropdown-menu {
    left: 0;
    right: 0;
    margin: -16px -2px 0 -2px;
    background-color: rgba(255, 255, 255, 1);
    border-radius: 0;
    -webkit-box-shadow: 0 6px 6px 0 rgba(0, 0, 0, .175);
    -moz-box-shadow: 0 6px 6px 0 rgba(0, 0, 0, .175);
    box-shadow: 0 6px 6px 0 rgba(0, 0, 0, .175);
}

.mega .mega-content .mega-link-primary {
    /* border-bottom: 2px solid rgba(51, 51, 51, 1); */
}

.mega .mega-content .mega-link-primary a {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: bold;
    color: rgba(51, 51, 51, 1);
}

.mega .mega-content .mega-link-primary a:hover {
}

.mega .mega-content .mega-link-secondary a {
    font-size: 12px;
    margin-left: 5%;
    color: rgba(0, 0, 0, .8);
}

.mega .mega-content .mega-link-secondary a:hover {
}

/******************************************************
 * NOUI SLIDER
 *******************************************************/
.noUi-base {
    margin-bottom: 1rem;
}

.noUi-target {
    background: rgba(119, 119, 119, 1);
    box-shadow: none;
    border: 1px solid rgba(119, 119, 119, 1);
    border-radius: 15px;
    /* 	padding: 0 40px 0 10px; */
}

.noUi-handle {
    background: rgba(255, 255, 255, 1);
    border: 1px solid rgba(119, 119, 119, 1);
    box-shadow: none;
    border-radius: 100%;
}

.noUi-handle:before, .noUi-handle:after {
    background: transparent;
}

.noUi-horizontal .noUi-handle {
    width: 30px;
    height: 30px;
    top: -8px;
}

.spec .lowerDisp, .spec .upperDisp {
    display: inline-block;
    margin-top: .8rem;
}

.spec .lowerDisp {
    float: left;
}

.spec .upperDisp {
    float: right;
}
