/* Font family CDN */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
/* Font family CDN End */

/* Common variables */
:root {
    --bc_blue: #3696ac;
    --bc_primary: #d30035;
    --bc_secondary: #373a36;
    --bc_color_light: #868886;
    --bc_white: #ffffff;
    --bc_black: #000000;
    --ba_grey: #EDEDED;
}
/* Common variables End */

/* Common CSS */
[data-content-type=row]>div {
    padding: 0;
    margin: 0;
}

*::-webkit-scrollbar {
    cursor: grab;
    width: 10px;
    height: 8px;
}
body .page-wrapper::-webkit-scrollbar {
    width: 10px;
}
*::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
}
*::-webkit-scrollbar-track {
    background: #f5f5f5;
}
body {
    background: var(--bc_white);
    overflow-x: hidden;
}
body, * {
    font-family: "Poppins", serif;
    color: var(--bc_secondary);
    font-size: 14px;
    @media (min-width: 1024px) {
        font-size: 16px;
    }
}
.bc_comn_popup {
    width: 90dvw;
    max-width: 700px;
    position: relative;
    padding: 40px;
    border-radius: 0;
    button {
        top: 10px;
        right: 10px;
        border-radius: 100%;
        width: 30px;
        height: 30px;
        padding: 5px;
        svg {
            stroke: var(--bc_white) !important;
        }
    }
}
.container {
    max-width: 1470px;
    width: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}
.customer-account-login, .checkout-cart-index, .category-landingpage, .cms-page-view, .cdawpcpt-index-index {
    .columns {
        max-width: 1470px;
        width: auto;
        padding-left: 1rem;
        padding-right: 1rem;
        display: block;
    }
}
.customer-account-index, .account {
    .columns {
        max-width: 1470px;
        padding-left: 1rem;
        padding-right: 1rem;
    }
}
.bc_com_sec_spec {
    margin-bottom: 30px;
    @media (min-width: 1024px) {
        margin-bottom: 50px;
    }
}
.widget {
    &.block-static-block {
        @media (min-width:0) and (max-width:1199px) {
            overflow-x: hidden;
        }
    }
}
.bc_col_row {
    margin: 0 -1rem;
}
.bc_col_6 {
    flex: 0 0 auto;
    width: 100%;
    @media (min-width: 768px) {
        width: 50%;
    }
}
.bc_sec_title {
    font-size: 24px;
    font-weight: 500;
    color: var(--bc_black);
    margin-bottom: 20px;
    text-transform: uppercase;
    display: block;
    @media (min-width: 1024px) {
        font-size: 30px;
    }
    @media (min-width: 1200px) {
        margin-bottom: 30px;
        font-size: 36px;
    }
}
.bc_sec_sub_title {
    text-transform: lowercase;
    font-weight: 500;
    margin-bottom: 15px;
    font-size: 12px;
    color: var(--bc_primary);
}
.btn {
    border-radius: 0;
    text-transform: uppercase;
    color: var(--bc_white);
    border: 0;
    justify-content: center;
    &.btn-primary {
        background: var(--bc_primary);
        border: 1px solid var(--bc_primary);
        * {
            color: var(--bc_white);
        }
        &:hover {
            background: var(--bc_secondary);
            border-color: var(--bc_secondary);
        }
    }
    &.btn-secondary {
        background: var(--bc_secondary);
        border: 1px solid var(--bc_secondary);
        * {
            color: var(--bc_white);
        }
        &:hover {
            background: var(--bc_primary);
            border-color: var(--bc_primary);
        }
    }
    &.btn-border {
        background: var(--bc_white);
        border: 1px solid var(--bc_secondary);
        color: var(--bc_secondary);
        * {
            color: var(--bc_secondary);
        }
        &:hover {
            color: var(--bc_white);
            background: var(--bc_secondary);
            * {
                color: var(--bc_white);
            }
        }
    }
}
input {
    &[type=text] {
        display: flex;
    }
    /* Chrome, Safari, Edge, Opera */
    &::-webkit-outer-spin-button,
    &::-webkit-inner-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }

    /* Firefox */
    &[type=number] {
        -moz-appearance: textfield;
    }
}
.text-red-500 {
    color: var(--bc_primary);
}
.bc_tab_nav {
    display: flex;
    align-items: stretch;
    gap: 10px;
    overflow-x: auto;
    /* scroll-snap-type: x mandatory;
    cursor: grab; */
    padding-bottom: 10px;
    margin-bottom: 20px;
    @media (min-width: 1024px) {
        margin-bottom: 30px;
        gap: 20px;
    }
    li {
        button {
            background-color: var(--ba_grey);
            color: var(--bc_black);
            padding: 5px 15px;
            font-size: 12px;
            display: block;
            font-weight: 600;
            white-space: nowrap;
            @media (min-width: 1024px) {
                padding: 9px 25px;
                font-size: 14px;
            }
        }
        &.active {
            button {
                background: var(--bc_secondary);
                color: var(--bc_white);
            }
        }
    }
}

/* Loader Style */
.bc_loader {
    background: rgba(255, 255, 255, 0.7);
    .loader {
        border: 4px solid rgba(0,0,0,0.1);
        width: 36px;
        height: 36px;
        border-radius: 50%;
        border-left-color: var(--bc_primary);
        animation: spin 1s linear infinite;
    }   
}
@keyframes spin {
    to { transform: rotate(360deg); }
}

.accordion-list {
    .bc_faq_list {
        background-color: var(--bc_secondary);
        button, .bc_faq_title {
            border-radius: 0;
            text-align: left;
            span {
                color: var(--bc_primary);
                font-size: 24px;
                line-height: 1;
            }
        }
        .bc_faq_ans {
            * {
                font-size: 14px;
                color: var(--bc_white);
            }
            a {
                color: var(--bc_primary);
                * {
                    color: var(--bc_primary);
                }
            }
            .max-w-prose {
                max-width: 100%;
                .additional-attributes {
                    tbody {
                        display: flex;
                        flex-wrap: wrap;
                        align-items: flex-start;
                        justify-content: space-between;
                        tr {
                            border: none;
                            flex: 0 0 auto;
                            width: 100%;
                            display: flex;
                            align-items: flex-start;
                            @media (min-width: 1200px) {
                                width: 49%;
                            }
                            th {
                                color: var(--bc_secondary);
                                font-weight: 600;
                                flex: 0 0 auto;
                                width: 50%;
                                word-break: break-all;
                            }
                            td {
                                flex: 0 0 auto;
                                width: 50%;
                            }
                        }
                    }
                }
            }
        }
    }
    &.bc_white_accr {
        .bc_faq_list {
            background: var(--bc_white);
            margin-bottom: 1.5rem;
            button {
                border-top: 1px solid var(--bc_secondary);
                border-bottom: 1px solid var(--bc_secondary);
                @media (min-width: 1200px) {
                    * {
                        font-size: 18px;
                    }
                }
                strong {
                    padding-left: 20px;
                }
                > span {
                    color: var(--bc_primary);
                    font-size: 24px;
                    line-height: 1;
                    font-weight: 700;
                }
            }
        }
        .bc_faq_ans {
            * {
                font-size: 16px;
                color: var(--bc_color_light);
            }
            a {
                color: var(--bc_color_light);
                * {
                    color: var(--bc_secondary);
                }
            }
            p {
                padding-bottom: 12px;
            }
        }
    }
}

.top-container {
    .breadcrumbs {
        ol {
            padding-left: 0;
            li {
                a, span {
                    color: var(--bc_color_light);
                    font-size: 14px;
                }
                a:hover {
                    text-decoration: underline;
                }
                &:after {
                    display: none;
                }
            }
        }
    }
}
/* Common CSS End */

/* Header CSS */
body {
    header{
        background-color: transparent !important;
        .header_text {
            background-color: yellow;
            color: var(--bc_black);
        }
        #header {
            background: var(--bc_secondary);
            @media (min-width:0) and (max-width: 1023px) {
                .snowdog-topmenu-mobile {
                    font-size: 0;
                    border: 0;
                    padding-right: 15px;
                    .bc_mob_burger {
                        background-color: var(--bc_primary);
                        padding: 3px;
                        border: 0;
                        svg {
                            stroke: var(--bc_white);
                        }
                    }
                    .bc_menu_sidebar {
                        height: 100dvh;
                        background: var(--bc_white);
                        .bc_menu_mob {
                            margin-top: 56px;
                            .mob_li {
                                border-top: 1px solid var(--bc_secondary);
                                .bc_par_link {
                                    text-transform: uppercase;
                                    &[aria-expanded="true"] {
                                        background-color: var(--ba_grey);
                                        font-weight: 500;
                                        color: var(--bc_primary);
                                    }
                                }
                                .mob_ul {
                                    li {
                                        &.mob_sub_link {
                                            button {
                                                text-transform: uppercase;
                                            }
                                        }
                                        .bottom-menu {
                                            margin: .5rem;
                                            margin-bottom: 0;
                                            &.snowdog-menu-link-topmenu-mobile {
                                                display: block;
                                                background: var(--bc_secondary);
                                                color: var(--bc_white);
                                                text-transform: uppercase;
                                                font-size: 14px;
                                                padding: 5px;
                                                text-align: center;
                                            }
                                        }
                                        .mob_ul {
                                            border-bottom: 1px solid var(--ba_grey);
                                            padding-bottom: .5rem;
                                            li {
                                                padding-top: .5rem;
                                                &.mob_sub_link {
                                                    button {
                                                        text-transform: none;
                                                    }
                                                }
                                                &:before {
                                                    content: '';
                                                    width: 5px;
                                                    height: 1px;
                                                    background-color: var(--bc_secondary);
                                                    display: inline-block;
                                                    vertical-align: middle;
                                                    margin-right: 5px;
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
            }
            .bc_logo {
                max-width: 160px;
                @media (min-width: 1200px) {
                    max-width: 200px;
                }
            }
            .bc_mob_ser {
                width: 100%;
                max-width: 100%;
                @media (min-width: 1024px) {
                    max-width: 500px;
                    margin:0 auto;
                }
                @media (min-width: 1600px) {
                    max-width: 686px;
                }
                .bc_sr_tm {
                    width: 100%;
                    .bc_src_main {
                        input {
                            &#search {
                                width: 100%;
                                font-size: 12px;
                                padding: 4.5px 10px;
                                padding-right: 35px;
                                border: 0;
                                @media (min-width: 1025) {
                                    padding: 3px 20px;
                                }
                            }
                        }
                        button {
                            svg {
                                stroke: var(--bc_primary);
                            }
                        }
                        .bc_sr_heading {
                            background: var(--ba_grey);
                            font-size: 12px;
                            color: var(--bc_secondary);
                            font-weight: bold;
                            text-transform: uppercase;
                            * {
                                font-size: 12px;
                                color: var(--bc_secondary);
                                font-weight: bold;
                                text-transform: uppercase;
                            }
                        }
                        .leading-loose{
                            word-wrap: break-word;
                            word-break: break-all;
                            &:hover {
                                text-decoration: underline;
                            }
                        }
                    }
                }
                #mirasvitSearchResults {
                    max-height: 70dvh;
                    overflow-y: auto;
                    z-index: 9999;
                    .bc_all_result {
                        position: sticky;
                        left: 0;
                        right: 0;
                        bottom: 0;
                        z-index: 9;
                        p {
                            font-weight: normal;
                            color: var(--bc_primary);
                            font-size: 12px;
                        }
                    }
                    .mstInPage__itemList {
                        @media (min-width: 640px) {
                            border-left: 1px solid var(--bc_color_light);
                        }
                    }
                    .mst-searchautocomplete__item {
                        &:hover {
                            background: var(--ba_grey);
                        }
                        + .mst-searchautocomplete__item {
                            border-top: 1px solid var(--ba_grey);
                        }
                        .bc_pr_img {
                            flex: 0 0 80px;
                            max-width: 80px;
                            img {
                                width: 80px;
                                height: 80px;
                                padding-left: 0;
                                padding-right: 0;
                                object-fit: contain;
                                display: block;
                                margin: auto;
                            }
                        }
                        .mst__product-meta {
                            display: flex;
                            align-items: center;
                            .bc_pr_desc {
                                flex-grow: 1;
                                h4 {
                                    font-weight: normal;
                                    span {
                                        font-weight: bold;
                                        color: var(--bc_color_light);
                                    }
                                }
                                p {
                                    height: 31px;
                                    overflow: hidden;
                                    color: var(--bc_color_light);
                                    font-size: 12px;
                                    @media (min-width: 1024px) {
                                        height: 34px;
                                    }
                                }
                            }
                            .bc_pr_price {
                                margin-top: unset;
                                width: auto;
                                * {
                                    color: var(--bc_secondary);
                                    font-size: 13px;
                                }
                            }
                        }
                    }
                }
            }
            .bc_cart_sec {
                @media (min-width:0px) and (max-width: 1023px) {
                    gap: 1rem;
                    align-items: center;
                }
                .bc_icon_label {
                    font-size: 12px;
                }
                svg {
                    stroke: var(--bc_white);
                    width: auto;
                    margin-left: auto;
                    margin-right: auto;
                    height: 24px;
                    @media (min-width: 768px) {
                        height: 28px;
                    }
                }
                .tabular-nums{
                    background-color: var(--bc_primary);
                }
            }
        }
        .navigation {
            border-bottom: 1px solid var(--bc_secondary);
            nav {
                ul {
                    padding-left: 0 !important;
                    li {
                        padding-top: 10px;
                        padding-bottom: 10px;
                        .group {
                            line-height: 1.5;
                        }
                        &.bg-white {
                            .snowdog-menu-link {
                                color: var(--bc_primary);
                            }
                        }
                        .megamenu {
                            flex-wrap: wrap;
                            /* display: flex !important; */
                            background: var(--bc_secondary);
                            max-height: 60dvh;
                            overflow-y: auto;
                            padding: 30px 30px 0 30px;
                            z-index: 999;
                            .group {
                                a {
                                    color: var(--bc_primary);
                                    font-weight: 500;
                                    font-size: 14px;
                                    text-transform: uppercase;
                                }
                            }
                            ul {
                                margin: 0;
                                padding-left: 0;
                                li {
                                    padding: 0;
                                    .group {
                                        a {
                                            color: var(--ba_grey);
                                            font-weight: normal;
                                            text-transform: none;
                                            &:hover {
                                                color: var(--bc_primary);
                                            }
                                        }
                                    }
                                }
                            }
                            .category-section {
                                padding: 0 5px 0 0;
                                display: inline-block;
                                vertical-align: top;
                                width: 33%;
                                margin-bottom: 20px;
                            }
                            > .menu-left {
                                flex: 0 0 auto;
                                width: 50%;
                            }
                            > .menu-right {
                                flex: 0 0 auto;
                                width: 50%;
                                border-left: 1px dashed var(--ba_grey);
                                padding-left: 30px;
                                .right-menu {
                                    display: inline-block;
                                    vertical-align: top;
                                    width: 49%;
                                    margin-bottom: 20px;
                                    padding: 0 10px;
                                    > .group {
                                        .white_box {
                                            width: 100%;
                                            background: var(--ba_grey);
                                            color: var(--bc_secondary);
                                            padding: 5px;
                                            text-align: center;
                                            text-transform: uppercase;
                                            display: block;
                                            font-size: 16px;
                                            font-weight: normal;
                                        }
                                    }
                                }
                            }
                            > .bottom_menu {
                                flex: 0 0 auto;
                                width: 100%;
                                border-top: 1px dashed var(--ba_grey);
                                display: flex;
                                align-items: center;
                                justify-content: space-between;
                                padding-top: 30px;
                                position: sticky;
                                left: 0;
                                right: 0;
                                bottom: 0;
                                z-index: 2;
                                background-color: var(--bc_secondary);
                                padding-bottom: 20px;
                                .bottom-menu {
                                    flex: 0 0 23%;
                                    max-width: 23%;
                                }
                                .white_box {
                                    width: 100%;
                                    background: var(--ba_grey);
                                    color: var(--bc_secondary);
                                    padding: 5px;
                                    text-align: center;
                                    text-transform: uppercase;
                                    display: block;
                                    font-size: 16px;
                                    font-weight: normal;
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
/* Header CSS End */

/* Common product Thumbnail Style Start*/
.bc_badge {
    gap: 0 3px;
    span {
        flex: 0 0 auto;
        width: 25px;
        height: 25px;
        background-repeat: no-repeat;
        background-position: center;
        display: block;
        background-size: 25px auto;
        font-size: 0;
        &.eco-collection {
            background-image: url(../../images/icon-echo.svg);
        }
        &.made-in {
            background-image: url(../../images/icon-uk.svg);
        }
        &.flag-expressitem {
            background-image: url(../../images/express-icon.svg);
        }
        &.flag-fullcolour {
            background-image: url(../../images/full-colour-icon.svg);
        }
        &.flag-impression-europe {
            background-image: url(../../images/value-icon.svg);
        }
    }
}
.bc_prd_item {
    display: flex;
    flex-direction: column;
    .bc_box {
        position: relative;
        display: flex;
        flex-direction: column;
        height: 100%;
        justify-content: space-between;
        .bc_top_info {
            position: absolute;
            left: 1px;
            right: 1px;
            display: flex;
            justify-content: space-between;
            z-index: 10;
            align-items: center;
            .bc_sto_sts {
                margin: 0;
                font-size: 0;
                .stock {
                    background: #9a9a9a;
                    padding: 0px 15px;
                    text-transform: uppercase;
                    color: var(--bc_white);
                    line-height: 24px;
                    font-size: 14px;
                    &.available {
                        background: var(--bc_secondary);
                    }
                }
                .sale{
                    background: red;
                    font-size: 14px;
                    padding: 0 15px;
                    color: var(--bc_white);
                }
            }
        }
        .bc_prd_main {
            overflow: hidden;
            img {
                transition: all 0.5s ease;
                scale: 0.9;
                object-fit: scale-down;
                display: block;
                margin: auto;
                height: 250px;
                @media (min-width: 1024px) {
                    height: 300px;
                }
            }
            &:hover {
                img {
                    scale: 1;
                }    
            }
        }
        .bc_pr_legend {
            * {
                font-size: 14px;
            }
            span {
                color: #549200;
            }
            strong {
                font-weight: 600;
            }
        }
        .bc_counter {
            span {
                font-size: 22px;
                color: var(--bc_black);
            }
        }
        .bc_prd_name {
            border-top: 1px solid var(--bc_secondary);
            border-bottom: 1px solid var(--bc_secondary);
            margin-top: 10px;
            h3 {
                padding: 10px 10px 10px 0;
                text-transform: uppercase;
                flex: 0 0 auto;
                width: 67%;
                text-align: left;
                margin: 0;
                font-weight: 600;
                border-right: 1px solid var(--bc_secondary);
                line-height: 1.4;
                a {
                    color: var(--bc_secondary);
                    font-size: 14px;
                }
            }
            h6 {
                width: 33%;
                padding-left: 10px;
                text-align: right;
                .price {
                    color: var(--bc_secondary);
                    font-size: 16px;
                    font-weight: 700;
                }
            }
        }
    }
}
/* Common product Thumbnail Style End*/

/* Tab with product thumbnail style */
.bc_tabprd_sec {
    .bc_sec_title {
        text-align: center;
    }
    .bc_tab_prd {
        .bc_tab_cnt {
            margin-bottom: 10px;
            /* scroll-snap-type: x mandatory;
            cursor: grab; */
            padding-bottom: 10px;
            @media (min-width: 1024px) {
                margin-bottom: 20px;
            }
            .bc_tab_item_main {
            	overflow-x: auto;
            	padding-bottom: 20px;
            }
            .bc_item {
                flex: 0 0 100%;
                max-width: 100%;
                padding: 0 10px;
                @media (min-width: 576px) {
                    flex: 0 0 50%;
                    max-width: 50%;
                }
                @media (min-width: 768px) {
                    flex: 0 0 33%;
                    max-width: 33%;
                }
                @media (min-width: 1200px) {
                    flex: 0 0 25%;
                    max-width: 25%;
                }
            }
        }
    }
}
/* Tab with product thumbnail style End */ 

/* What sets us apart Start */
.bc_wsa_sec {
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--bc_secondary);
    @media (min-width: 1024px) {
    	border-top: 1px solid var(--bc_secondary);
    }
    .bc_main {
        .bc_small_title{
            background: var(--bc_secondary);
            position: relative;
            text-align: center;
            flex: 0 0 auto;
            width: 100%;
            @media (min-width:1024px){
                width: 20%;
            }
            &:before {
                content: '';
                display: block;
                position: absolute;
                right: 100%;
                top: 0;
                bottom: 0;
                background: var(--bc_secondary);
                width: 100%;
                @media (min-width:0) and (max-width: 1023px) {
                    width: auto;
                    left: -100%;
                    right: -100%;
                }
            }
            h2 {
                position: relative;
                z-index: 2;
                color: var(--bc_white);
                padding: 30px 0;
                font-weight: normal;
                text-transform: uppercase;
                font-size: 16px;
                @media (min-width:1024px){
                    padding: 45px 0;
                }
            }
        }
        .bc_thumb_list {
            flex: 0 0 auto;
            width: 100%;
            overflow-x: auto;
            @media (min-width:1024px){
                width: 80%;
            }
            .bc_thumb{
                padding: 26px 10px;
                flex: 0 0 auto;
                width: 100%;
                @media (min-width:768px){
                    width: 33.33%;
                }
                img {
                    height: 56px;
                }
                h3 {
                    font-size: 14px;
                    margin: 0;
                    padding-left: 10px;
                }
            }
        }
    }
}
/* What sets us apart Start End*/

/* Promotional Products Start*/
.bc_prm_prd_sec {
    .container {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        .bc_img_act {
            @media (min-width: 768px) {
                padding-right: 40px;
            }
            .inner {
                position: relative;
                img {
                    width: 100%;
                    height: auto;
                    display: block;
                }
                .action-tolbar {
                    @media (min-width:0) and (max-width: 767px){
                        position: relative;
                        display: flex;
                        flex-direction: column;
                        align-items: center;
                        margin-top: -23px;
                        background: none;
                        padding: 0;
                        margin-bottom: 20px;
                    }
                    @media (min-width: 768px) {
                        position: static;
                        right: 0;
                        bottom: 0;
                        padding: 30px 10px;
                        background: var(--ba_grey);
                    }
                    @media (min-width: 1200px) {
                        border-radius: 10px 0 0 0;
                        position: absolute;
                        padding: 38px 45px 38px 0;
                    }
                    .btn {
                        display: inline-block;
                        margin: 0 9px 5px 9px;
                        font-weight: normal;
                        font-size: 14px;
                        @media (min-width:0) and (max-width: 767px){
                            min-width: 200px;
                            text-align: center;
                        }
                        @media (min-width: 1200px) {
                            margin: 0;
                            font-size: 16px;
                            &:first-child {
                                margin-left: -30px;
                            }
                        }
                    }
                }
            }
        }
        .bc_prg {
            @media (min-width: 768px) {
                padding-left: 40px;
            }
            p {
                color: var(--bc_color_light);
                font-size: 16px;
                line-height: 2;
                margin-bottom: 30px;
            }
            .bc_action_bar {
                @media (min-width:0) and (max-width: 1023px){
                    margin-top: -10px;
                    flex-wrap: wrap;
                    flex-direction: column;
                    gap: 10px;
                }
                .btn-primary {
                    white-space: nowrap;
                }
                .btn-readmore {
                    padding: 0 25px;
                    margin-left: auto;
                    @media (min-width:0) and (max-width: 1023px){
                        margin-left: auto;
                        margin-right: auto;
                    }
                    span {
                        text-align: right;
                    }
                    i {
                        flex: 0 0 auto;
                        width: 30px;
                        height: 30px;
                        border: 1px solid var(--bc_secondary);
                        border-radius: 50px;
                    }
                    &:hover {
                        span {
                            color: var(--bc_primary);
                        }
                        i {
                            border-color: var(--bc_primary);
                            svg {
                                stroke: var(--bc_primary);   
                            }
                        }
                    }
                }
            }
        }
    }
}
/* Promotional Products Start End*/

/* Texual Info Start */
.bc_con_cen_sec {
    .bc_sec_title {
        font-weight: 600;
    }
    p {
        font-size: 16px;
        + p {
            margin-top: 20px;
        }
    }
}
/* Texual Info Start End*/

/* Common slider image - title Thumb design Start*/
.bc_item_thumb {
    .bc_item_inner {
        overflow: hidden;
        border: 1px solid transparent;
        border-bottom-color: var(--bc_black);
        position: relative;
        height: 100%;
        a {
            display: block;
        }
        .shrink-0 {
            height: 100%;
            img {
                transition: all 0.5s ease;
                width: 100%;
                height: 100%;
                object-fit: cover;
                object-position: center;
                background: var(--ba_grey);
            }
        }
        .bc_thumb_title {
            background: var(--bc_white);
            padding: 13px 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            position: absolute;
            z-index: 2;
            left: 0;
            right: 0;
            bottom: 0;
            h2 {
                color: #373a36;
                font-weight: 500;
                text-transform: uppercase;
                margin: 0;
                max-width: calc(100% - 70px);
            }
            i {
                flex: 0 0 auto;
                width: 30px;
                height: 30px;
                border: 1px solid var(--bc_secondary);
                border-radius: 50px;
                outline: 20px solid var(--bc_white);
                background: var(--bc_white);
            }
        }
        &:hover {
            border-color: var(--bc_black);
            .shrink-0 {
                img {
                    transform: scale(1.1)
                }
            }
            .bc_thumb_title {
                h2 {
                    color: var(--bc_primary);
                }
                i {
                    border-color: var(--bc_primary);
                    svg {
                        stroke: var(--bc_primary);
                    }
                }
            }
        }
    }
}
/* Common slider image - title Thumb design End*/

/* Top category Slider Start*/
.bc_top_cat_banner {
    margin-top: 20px;
    .snap {
        @media (min-width:0px) and (max-width: 767px) {
            .bc_item_thumb {
                flex: 0 0 auto;
                width: 100%;
                height: 345px;
            }
        }
        @media (min-width: 768px){
            display: block;
            margin: 0 -17px;
            .bc_item_thumb {
                padding: 0 17px;
                width: 33.33%;
                display: flex;
                flex-flow: column;
                float: left;
                text-align: left;
                img {
                    height: 676px;
                }
                &:nth-child(n+3) {
                    height: 322px;
                    img {
                        height: 100%;
                    }
                }
                &:last-child {
                    margin-top: 34px;
                }
            }
        }
    }
}
/* Top category Slider End*/

/* Middle product Thumb + Category Start */
.bc_middle_prd_sec {
    margin-bottom: 20px !important;
    @media (min-width:0px) and (max-width: 767px) {
        margin-bottom: 0 !important;
    }
    .snap {
        margin: 0 -17px;
        .bc_item_thumb {
            padding: 0 17px;
            width: 50%;
            padding-bottom: 34px;
            display: flex;
            flex-flow: column;
            float: left;
            text-align: left;
            &:nth-child(n+3) {
                width: 33.33%;
                margin-top: 0;
                height: 349px;
            }
            @media (min-width:0) and (max-width:767px) {
                width: 100% !important;
                height: 294px !important;
            }
        }
    }
    &.bc_cat_blc_sec {
        margin-bottom: 30px;
        @media (min-width:0px) and (max-width: 767px) {
            margin-bottom: 0;
        }
        .bc_item_thumb {
            width: 33.33%;
            height: 349px;
        }
    }
}
/* Middle product + Category Thumb Start */

/* Trust Block Start */
.bc_trust_block_sec {
    .wm-876 {
        max-width: 876px;
    }
}
/* Trust Block End */

/* Brand Slider Start */
.bc_brand_bg {
    position: relative;
    padding: 50px 0;
    padding-bottom: 70px;
    @media (min-width:0) and (max-width: 1023px) {
        margin-bottom: 50px;
    }
    &:before {
        position: absolute;
        bottom: 0;
        left: -70px;
        content: '';
        background-image: url(/media/wysiwyg/brand-leftbg.png);
        background-repeat: no-repeat;
        background-position: 0 100%;
        width: 200px;
        height: 200px;
        display: block;
        z-index: -1;
        background-size: auto 100%;
    }
    &:after {
        position: absolute;
        top: 0;
        right: -70px;
        content: '';
        background-image: url(/media/wysiwyg/brand-rightbg.png);
        background-repeat: no-repeat;
        background-position: 0 100%;
        width: 200px;
        height: 200px;
        display: block;
        z-index: -1;
        visibility: visible;
        background-size: 100% auto;
    }
}

.bc_brand_block_sec {
    .snap {
        > a {
            text-align: center;
            padding: 0 20px;
            @media (min-width: 768px) {
                width: 200px;
            }
        }
    }
}
/* Brand Slider End */

/* Info Tab Start */
.bc_info_tab_sec {
    .bc_tab_nav{
        li {
            button {
                @media (min-width:768px){
                    min-width: 150px;
                }
                @media (min-width:1400px){
                    min-width: 180px;
                }
            }
        }
    }
    .bc_tab_cnt {
        .items {
            display: flex;
            flex-wrap: wrap;
            margin: 0 -20px;
            flex-direction: row-reverse;
            align-items: center;
            .item-img{
                width: 100%;
                padding: 0 20px;
                @media (min-width:768px) {
                    width: 50%;
                }
                img {
                    max-width: 512px;
                    display: block;
                    margin: auto;
                    width: 100%;
                }
            }
            .item-content{
                width: 100%;
                padding: 0 20px;
                text-align: center;
                @media (min-width:768px) {
                    width: 50%;
                    text-align: left;
                }
                h3 {
                    color: var(--bc_secondary);
                    font-weight: 500;
                    padding-bottom: 12px;
                    font-size: 21px;
                }
                p {
                    color: var(--bc_color_light);
                    font-size: 16px;
                    line-height: 2;
                    margin-bottom: 10px;
                    @media (min-width: 768px) {
                        margin-bottom: 30px;
                    }
                }
                a {
                    color: var(--bc_black);
                    &:hover {
                        color: var(--bc_primary);
                    }
                }
                ul {
                    padding-left: 20px;
                    list-style-type: disc;
                    li {
                        color: var(--bc_color_light);
                        font-size: 16px;
                        margin-bottom: 1.1rem;
                    }
                }
                .action-right {
                    @media (min-width:0px) and (max-width: 767px) {
                        padding-top: 10px;
                    }
                }
                .btn {
                    color: var(--bc_white) !important;
                    display: inline-block;
                    padding-left: 50px;
                    padding-right: 50px;
                }
            }
        }
    }
}
/* Info Tab End */

/* Supply Brand Start */
.bc_sup_amz_brn_sec{
    position: relative;
    .bc_sec_sub_title {
        position: absolute;
        right: 15px;
        top: 30px;
        z-index: 2;
        font-size: 16px;
        margin-bottom: 0;
    }
    .bc_brand_bg {
        padding: 40px 0;
    }
}
/* Supply Brand End */

/* FAQ Start */
.bc_faq_sec {
    .title {
        text-align: center;
        margin-bottom: 20px;
        h2 {
            font-size: 20px;
            font-weight: bold;
            color: var(--bc_secondary);
            cursor: pointer;
            svg {
                display: inline-block;
                vertical-align: middle;
                margin-left: 10px;
            }
        }
    }
    .faqs-wrapper {
        @media (min-width: 992px) {
            display: grid;
            transition: all .3s linear;
            gap: 15px;
            position: relative;
            grid-template-columns: 50% 50%;
        }
        .faq-question {
            font-size: 15px;
            color: var(--bc_secondary);
            font-weight: 700;
            margin: 0 0 5px;
            .faq-label {
                padding-right: 14px;
            }
        }
        .faq-answer{
            display: flex;
            align-items: baseline;
            .faq-label {
                margin-right: 15px;
            }
            > div {
                max-width: calc(100% - 50px);
            }
            p {
                font-size: 14px;
                opacity: 0.9;
                margin: 0 0 1rem;
            }
        }
        .close-icon {
            @media (min-width: 992px) {
                position: absolute;
                left: 0;
                right: 0;
                bottom: -20px;
            }
            a {
                display: inline-block;
            }
        }
    }
}
/* FAQ End */

/* Award Section Start */
.bc_award_section {
    .container {
        @media (min-width:0) and (max-width: 1023px) {
            padding: 0;
        }
    }
    .row {
        .bc_left_head {
            flex: 0 0 auto;
            width: 100%;
            text-align: center;
            @media (min-width:1024px) {
                padding-right: 10px;
                width: 23%;
                text-align: left;
                .bc_sec_title {
                    margin-bottom: 0;
                }
            }
        }
        .bc_right_awards {
            flex: 0 0 auto;
            width: 100%;
            background: var(--ba_grey);
            padding: 30px 15px;
            @media (min-width:1024px) {
                width: 77%;
            }
            @media (min-width: 1200px) {
                padding: 50px 15px;
            }
            .snap {
                @media (min-width: 1200px) {
                    gap: 70px;       
                }
                img {
                    width: 100%;
                    max-width: 120px;
                }
            }
        }
    }
}
/* Award Section End */

/* News Section Start */
.bc_home_news {
    .items {
        .news-carousel {
            .item {
                @media (min-width: 0px) and (max-width:767px){
                    flex: 0 0 100%;
                    max-width: 100%;
                }
                .item-inner{
                    position: relative;
                    overflow: hidden;
                    .image {
                        a {
                            height: 350px;
                            display: block;
                            overflow: hidden;
                            @media (min-width: 768px) and (max-width:1366px){
                                height: 200px;
                            }
                            img {
                                height: 100%;
                                width: 100%;
                                object-fit: cover;
                                transition: all 0.5s ease;
                            }
                            &:hover {
                                img {
                                    transform: scale(1.1);
                                }
                            }
                        }
                    }
                    h3 {
                        border-top: 1px solid var(--bc_secondary);
                        margin: 22px 0 0;
                        font-weight: 600;
                        text-transform: uppercase;
                        padding: 22px 20px 14px;
                        font-size: 14px;
                        color: var(--bc_secondary);
                    }
                    .sort-info {
                        color: var(--bc_color_light);
                        padding: 0 20px;
                    }
                }
            }
        }
    }
}
/* News Section End */

/* Product Common style Start */
.swatch-attribute {
    .bc_swt {
        .bc_clr_swt_main {
            margin-left: 0;
        }
        .swatch-option {
            border-radius: 100%;
            height: 30px;
            padding: 2px;
            width: 30px;
            max-width: 30px;
            min-width: 30px;
            margin-left: 0;
            margin-right: 10px;
            &:hover {
                outline: 1px solid var(--bc_secondary);
            }
        }
    }
    
    &.bc_full_swt {
        .bc_swt {
            width: 100%;
            .swatch-option {
                margin-right: 0;
            }
            .bc_label {
                padding-left: 10px;
                color: var(--bc_color_light);
                * {
                    color: var(--bc_color_light);
                    @media (min-width:0) and (max-width: 1200px) {
                        font-size: 14px;
                    }
                }
            }
        }
    }
}
/* Product Common style End */

/* CMS page common style Start */
.cms-noroute-index {
    .bc_404_sec {
        .bc_sec_title {
            strong {
                font-size: 24px;
                font-weight: 500;
                color: var(--bc_primary);
                text-transform: uppercase;
                @media (min-width: 1024px) {
                    font-size: 30px;
                }
                @media (min-width: 1200px) {
                    font-size: 36px;
                }
            }
        }
        h2 {
            font-size: 32px;
            font-weight: 700;
            color: var(--bc_secondary);
        }
        h3 {
            font-weight: 500;
            font-size: 21px;
            color: var(--bc_secondary);
        }
        p {
            a {
                color: var(--bc_color_light);
                &:hover {
                    text-decoration: underline;
                }
            }
        }
    }
}
.cms-page-view {
    .page-main {
        margin-top: 0;
        .columns {
            .block-static-block {
                .container {
                    padding: 0;
                }
            }
            p, li {
                color: var(--bc_color_light);
                letter-spacing: 0.45px;
                span, i {
                    color: var(--bc_color_light);
                    letter-spacing: 0.45px;
                }
            }
            .mpb-6 {
                @media (max-width: 767px) {
                    padding-bottom: 20px;
                }
            }
            .mmb-6 {
                @media (max-width: 767px) {
                    margin-bottom: 20px;
                }
            }
            .bcb-blk {
                font-weight: 500;
                color: var(--bc_secondary) !important;
            }
            .bc_t_red {
                font-size: 12px;
                color: var(--bc_primary) !important;
            }
            .bc_sec_title {
                text-transform: none;
            }
            .bc_vp_btn {
                left: 50%;
                top: 50%;
                transform: translate(-50%, -50%);
                z-index: 2;
                svg {
                    @media (max-width: 767px) {
                        width: 40px;
                        height: 40px;
                    }
                }
            }
            ul {
                list-style-type: disc;
                padding-left: 20px;
                li {
                    margin-bottom: 1rem;
                }
            }
            ol {
                list-style-type: decimal;
                padding-left: 20px;
            }
            .bc_bx {
                border: 1px solid var(--bc_secondary);
                padding: 10px 20px;
                text-align: center;
                blockquote {
                    * {
                        font-size: 14px;
                        color: var(--bc_secondary);
                    }
                    span {
                        color: var(--bc_primary);
                    }
                }
            }
            .bc_nl_form {
                background-color: var(--bc_secondary);
                padding: 40px;
                form {
                    h2 {
                        color: var(--bc_white);
                        font-size: 16px;
                    }
                    .bc_nl_input {
                        .form-input {
                            border-radius: 0;
                            border: 0;
                            background-color: var(--bc_white);
                        }
                    }
                }
            }
            .videosection {
                iframe {
                    @media (max-width: 767px){
                        height: auto;
                    }
                }
            }
        }
    }
}
/* CMS page common style End */
/* FAQ Page Start */
.cms-faqs, .bc_cnt_faq {
    .accordion-section {
        .bc_faq_titl_main {
            background-color: var(--bc_secondary);
            &:after {
                content: '';
                height: 25px;
                width: 25px;
                background-color: #fff;
                border-radius: 50%;
                background-image: url(../../images/icon-down.svg);
                background-repeat: no-repeat;
                background-position: center 8px;
                transition: all ease .5s;
                background-size: 11px auto;
            }
            &.active {
                &:after {
                    transform: rotate(180deg);
                }
            }
        }
        .bc_faq_inr_tlt {
            border-top: 1px solid var(--bc_secondary);
            border-bottom: 1px solid var(--bc_secondary);
            display: flex;
            align-items: center;
            justify-content: space-between;
            position: relative;
            cursor: pointer;
            &:after {
                content: '+';
                color: var(--bc_primary);
                font-size: 24px;
                text-align: center;
                line-height: 1;
                font-weight: 700;
                margin-left: 10px;
            }
            &.active {
                &:after {
                    content: '-';
                }
            }
        }
        .bc_faq_inr_des {
            p {
                margin-bottom: 12px;
            }
        }
    }
}
/* FAQ Page Start End*/

/* Login registration style Start */
.customer-account-login {
    .bc_cms_title {
        .custom-login-message {
            p {
                text-align: center;
                color: var(--bc_color_light);
                margin-bottom: 30px;
            }
        }
    }
    .columns {
        .main {
            display: flex;
            align-items: flex-start;
            flex-wrap: wrap;
            justify-content: space-between;
            .actions-toolbar {
                border-top: 0;
            }
            .login-container {
                flex: 0 0 auto;
                width: 100%;
                display: block !important;
                padding-top: 0 !important;
                @media (min-width: 768px) {
                    width: 48.8%;
                }
                .bc_login_form {
                    background-color: var(--ba_grey);
                    padding: 30px;
                }
                .sign-earnpoint {
                    background: var(--bc_primary);
                    color: var(--bc_white);
                    padding: 30px 15px;
                    margin-top: 35px;
                    text-align: center;
                    h4 {
                        font-weight: 500;
                        color: var(--bc_white);
                        padding: 10px 0 10px 50px;
                        margin: 0;
                        font-size: 20px;
                        text-transform: uppercase;
                        position: relative;
                        display: inline-block;
                        &:before {
                            content: '';
                            display: inline-block;
                            vertical-align: middle;
                            background-image: url(../../images/point-white.png);
                            background-repeat: no-repeat;
                            background-position: center;
                            width: 28px;
                            height: 28px;
                            background-size: 100%;
                            position: absolute;
                            left: 0;
                            top: 14px;
                        }
                    }
                }
            }
            .customer-login-wrapper {
                flex: 0 0 auto;
                width: 100%;
                background-color: var(--ba_grey);
                padding: 30px;
                @media (min-width: 768px) {
                    width: 48.8%;
                }
                .bc_box{
                    .form-create-account{
                        fieldset {
                            .bc_box_title {
                                border-bottom: 1px solid var(--bc_white);
                            }
                            .field {
                                &.field-reserved {
                                    margin-bottom: 1rem;
                                }
                            }
                        }
                        .choice {
                            position: relative;
                            .label {
                                display: flex;
                                align-items: center;
                                cursor: pointer;
                                &:before {
                                    content: '';
                                    width: 16px;
                                    height: 16px;
                                    background: var(--bc_white);
                                    border: 1px solid var(--bc_secondary);
                                    border-radius: 100%;
                                    margin-right: 15px;
                                } 
                            }
                            input {
                                &[type="checkbox"] {
                                    position: absolute;
                                    opacity: 0;
                                    cursor: pointer;
                                }
                                &:checked {
                                    + label {
                                        &:before {
                                            background: var(--bc_primary);
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
/* Login registration style End */

/* Contact us page Start */
.bc_contact-info {
    margin: 0 -1rem;
    margin-bottom: 20px;
    .col {
        padding: 0 1rem;
        flex: 0 0 auto;
        width: 100%;
        @media (min-width: 1024px) {
            width: 50%;
        }
        strong, p {
            margin-bottom: 1rem;
            display: block;
        }
        &.bc_box-download {
            .bg-cover {
                height: 85px;
                background-size: cover;
                background-position: center;
            }
            .bc_col {
                flex: 0 0 auto;
                width: 100%;
                background-color: var(--ba_grey);
                @media (min-width: 1024px) {
                    width: 50%;
                }
            }
            .action-right {
                display: flex;
                align-items: center;
                justify-content: center;
                padding: 15px;
                a {
                    span, svg {
                        display: inline-block;
                        vertical-align: middle;
                    }
                    svg {
                        border: 1px solid var(--bc_secondary);
                        border-radius: 50px;
                        padding: 5px;
                        stroke: var(--bc_secondary);
                    }
                    &:hover {
                        span {
                            color: var(--bc_primary);
                        }
                        svg {
                            border-color: var(--bc_primary);
                            stroke: var(--bc_primary);
                        }
                    }
                }
            }
        }
    }
}
.bc_bottom_two_col {
    margin: 0 -1rem;
    .bc_col {
        flex: 0 0 auto;
        width: 100%;
        padding: 0 1rem;
        @media (min-width: 1024px) {
            width: 50%;
        }
    }
    .bc_form {
        > .flex-col {
            padding-top: 0;
            form {
                width: 100%;
                &.card {
                    border: 0;
                    background-color: var(--ba_grey);
                    padding: 40px;
                    fieldset {
                        .flex-col {
                            text-align: left;
                            margin-bottom: 20px;
                            h2{
                                font-size: 20px;
                                color: var(--bc_secondary);
                                text-transform: uppercase;
                                margin-bottom: 0;
                            }
                        }
                        .field {
                            flex: 0 0 auto;
                            width: 100%;
                            input, textarea {
                                width: 100%;
                                background: var(--bc_white);
                                border: 0;
                                border-radius: 0;
                                box-shadow: none;
                                margin-top: 0;
                            }
                        }
                    }
                    .w-full {
                        .btn {
                            margin-top: 10px;
                            width: 100%;
                        }
                    }
                }
            }
        }
    }
    .bc_rgt_adr_faq {
        .box {
            flex: 0 0 auto;
            width: 100%;
            @media (min-width: 576px) {
                width: 50%;
            }
            h2 {
                text-transform: uppercase;
                font-size: 18px;
                padding-bottom: 28px;
            }
            p {
                padding-bottom: 12px;
                line-height: 1.8;
                .bc_prm {
                    color: var(--bc_primary);
                }
            }
        }
    }
}
.bc_cnt_faq {
    border-top: 1px solid var(--ba_grey);
    padding-top: 30px;
    margin-top: 30px;
    .faq-heading {
        position: relative;
        padding: 0 20px 0;
        h2 {
            font-size: 18px;
            font-weight: 500;
            padding-bottom: 24px;
        }
        p {
            padding-bottom: 12px;
        }
        .read {
            position: absolute;
            right: 0;
            top: 3px;
            text-decoration: underline;
            font-size: 14px;
        }
    }
}
/* Contact us page End */

/* Cart page style Start*/
.cart-form {
    .bc_cart_main {
        .bc_cart_list {
            flex: 0 0 auto;
            width: 100%;
            order: 2;
            @media (min-width: 768px) {
                padding-right: 15px;
            }
            @media (min-width: 1200px) {
                width: 70%;
                order: -1;
            }
            .table-wrapper {
                table {
                    thead {
                        border-top: 1px solid var(--bc_secondary);
                        border-bottom: 1px solid var(--bc_secondary);
                        th {
                            padding: 1rem;
                            font-size: 16px;
                            font-weight: normal;
                            text-transform: uppercase;
                            &.qty, &.subtotal {
                                text-align: center;
                            }
                        }
                    }
                    tbody {
                        + tbody {
                            border-top: 1px solid var(--ba_grey);
                            padding-top: 20px;
                        }
                        tr {
                            td {
                                padding: 1rem;
                                vertical-align: top;
                                @media (max-width: 767px){
                                    display: block;
                                    &:before {
                                        content: attr(data-th) ':';
                                        display: block;
                                        font-weight: 700;
                                        padding-bottom: 11px;
                                    }
                                }
                                &.item {
                                    @media (max-width: 767px){
                                       width: 100;
                                    }
                                    .product-item-photo {
                                        display: inline-block;
                                        vertical-align: top;
                                        .product-image-wrapper {
                                            .product-image-photo {
                                                position: static;
                                                max-width: 120px;
                                                @media (max-width: 767px){
                                                    max-width: 60px;
                                                }
                                            }
                                        }
                                    }
                                    .product-item-details {
                                        display: inline-block;
                                        vertical-align: top;
                                        width: calc(100% - 150px);
                                        padding-left: 20px;
                                        @media (max-width: 767px){
                                            width: calc(100% - 70px);
                                        }
                                        .warning-title {
                                            text-transform: uppercase;
                                            text-align: center;
                                            font-weight: 700;
                                            margin: 0;
                                            line-height: normal;
                                            padding: 0;
                                            font-size: 18px;
                                        }
                                        .nobranding-warning {
                                            background: #f1e726;
                                            padding: 12px;
                                            text-align: center;
                                            line-height: normal;
                                            word-break: break-word !important;
                                            * {
                                                font-size: 13px;
                                            }
                                            .nobranding-bigtext {
                                                display: block;
                                                font-weight: 700;
                                                text-transform: uppercase;
                                                margin-bottom: 5px;
                                                .nobranding-smalltext {
                                                    word-break: break-word !important;
                                                }
                                            }
                                        }
                                        .product-item-name {
                                            a {
                                                font-size: 14px;
                                                font-weight: 500;
                                                display: inline-block;
                                                &:hover {
                                                    text-decoration: underline;
                                                }
                                            }
                                        }
                                        .item-options {
                                            padding: 0 0 10px;
                                            overflow: auto;
                                            line-height: 2;
                                            * {
                                                font-size: 12px;
                                            }
                                            dt {
                                                clear: left;
                                                float: left;
                                                color: var(--bc_color_light);
                                            }
                                            dd {
                                                font-weight: 600;
                                                padding-left: 5px;
                                                float: left;
                                            }
                                        }
                                        .actions-toolbar {
                                            border: 0;
                                            margin: 0;
                                            padding: 0;
                                            flex-direction: row;
                                            flex-wrap: wrap;
                                            .bc_remove {
                                                button {
                                                    text-align: left;
                                                    font-size: 13px;
                                                    text-decoration: underline;
                                                    color: var(--bc_color_light);
                                                }
                                            }
                                            .action-edit {
                                                display: none;
                                            }
                                            .cart-items-note {
                                                display: flex;
                                                align-items: center;
                                                .click-me {
                                                    font-size: 13px;
                                                    color: var(--bc_black);
                                                    text-transform: uppercase;
                                                    margin-right: 5px;
                                                    span {
                                                        display: inline-block;
                                                        vertical-align: middle;
                                                        color: var(--bc_black);
                                                        font-size: 13px;
                                                        text-decoration: underline;
                                                    }
                                                }
                                                svg {
                                                    stroke: var(--bc_primary);
                                                }
                                            }
                                        }
                                    }
                                    .cart-product-item-details {
                                        display: block;
                                        padding-top: 15px;
                                        .grid-boxes {
                                            display: grid;
                                            column-gap: 20px;
                                            grid-template-columns: 1fr 1fr 50px;
                                            margin-bottom: 10px;
                                            @media (max-width: 767px) {
                                                grid-template-columns: 1fr;
                                            }
                                            .grid-box {
                                                margin-top: 0;
                                            }
                                            figure {
                                                display: block;
                                                height: 0;
                                                overflow: hidden;
                                                position: relative;
                                                z-index: 1;
                                                padding-bottom: 100%;
                                                border: 1px solid var(--bc_secondary);
                                                img {
                                                    width: 100%;
                                                    height: 100%;
                                                    object-fit: contain;
                                                    display: block;
                                                    position: absolute;
                                                    left: 50%;
                                                    top: 50%;
                                                    transform: translate(-50%, -50%);
                                                    padding: 10px;
                                                }
                                            }
                                            .location-title {
                                                background-color: var(--ba_grey);
                                                color: var(--bc_secondary);
                                                font-size: 13px;
                                                margin-top: 5px;
                                                padding: 4px 10px;
                                                font-weight: 600;
                                            }
                                            .note {
                                                line-height: 15px;
                                                margin-top: 15px;
                                                padding-right: 45px;
                                                * {
                                                    word-break: break-word;
                                                    font-weight: 400;
                                                    color: var(--bc_black);
                                                    font-size: 12px;
                                                    font-weight: 500;
                                                }
                                                p {
                                                    margin-bottom: 12px;
                                                }
                                            }
                                            .logo-upload {
                                                position: relative;
                                                figure {
                                                    img {
                                                        width: auto;
                                                        height: auto;
                                                        margin-top: -50px;
                                                        max-height: 80px;
                                                        @media (min-width: 1200px) {
                                                            max-height: 150px;
                                                        }
                                                    }
                                                }
                                                .multi-images {
                                                    position: absolute;
                                                    bottom: 0;
                                                    padding: 0 10px;
                                                    width: 100%;
                                                    height: 100%;
                                                    display: flex;
                                                    align-items: flex-end;
                                                    .multiple-images-inner {
                                                        width: 100%;
                                                        .label {
                                                            margin: 10px 0 10px 0;
                                                            display: block;
                                                            * {
                                                                font-size: 11px;
                                                                font-weight: 600;
                                                                text-transform: capitalize;
                                                            }
                                                        }
                                                        .logo-upload-sucess {
                                                            font-weight: 600;
                                                            text-align: center;
                                                            display: block;
                                                            margin-bottom: 10px;
                                                            color: #549200;
                                                        }
                                                        > .control {
                                                            position: relative;
                                                            height: 55px;
                                                            border: 3px dashed var(--bc_primary);
                                                            width: 100%;
                                                            display: block;
                                                            margin-bottom: 20px;
                                                            background: var(--bc_white);
                                                            border-radius: 5px;
                                                            cursor: pointer;
                                                            label {
                                                                text-align: center;
                                                                padding: 7px 5px;
                                                                * {
                                                                    font-size: 12px;
                                                                    text-transform: uppercase;
                                                                }
                                                                span {
                                                                    max-width: 90%;
                                                                    overflow: hidden;
                                                                    text-overflow: ellipsis;
                                                                    white-space: nowrap;
                                                                    display: block;
                                                                    margin: auto;
                                                                    text-align: center
                                                                }
                                                            }
                                                            input[type="file"] {
                                                                height: 100%;
                                                                width: 100%;
                                                                z-index: 99;
                                                                cursor: pointer;
                                                                left: 0;
                                                                top: 0;
                                                                position: absolute;
                                                                opacity: 0;
                                                            }
                                                        }
                                                    }
                                                }
                                            }
                                            .multiple-images-outer {
                                                .note {
                                                    p {
                                                        font-weight: 600;
                                                        color: var(--bc_color_light);
                                                    }
                                                }
                                                .opt-color-input-container-outer {
                                                    .label {
                                                        span {
                                                            font-size: 13px;
                                                            font-weight: 700;
                                                        }
                                                    }
                                                    .field {
                                                        &.opt-color-1 {
                                                            padding-bottom: 7px;
                                                            clear: both;
                                                            padding-top: 0;
                                                            text-align: left;
                                                            display: flex;
                                                            align-items: center;
                                                            flex-wrap: wrap;
                                                            .label {
                                                                flex: 0 0 auto;
                                                                font-size: 12px;
                                                                width: 80px;
                                                                margin: 0;
                                                                margin-right: 20px;
                                                                font-weight: 600;
                                                            }
                                                            .control {
                                                                flex: 0 0 auto;
                                                                max-width: calc(100% - 120px);
                                                                input {
                                                                    height: 40px;
                                                                    font-size: 13px;
                                                                    border-color: var(--bc_primary);
                                                                }
                                                            }
                                                        }
                                                    }
                                                    .panton-exceptional-cont {
                                                        position: relative;
                                                        label {
                                                            font-size: 13px;
                                                            line-height: 19px;
                                                            word-break: break-word;
                                                            cursor: pointer;
                                                            vertical-align: top;
                                                            position: relative;
                                                            font-weight: normal;
                                                            display: flex;
                                                            align-items: flex-start;
                                                            &:before {
                                                                margin-right: 15px;
                                                                content: '';
                                                                flex: 0 0 auto;
                                                                height: 16px;
                                                                width: 16px;
                                                                border: 1px solid var(--bc_secondary);
                                                                border-radius: 50%;
                                                                margin-top: 5px;
                                                            }
                                                        }
                                                        input {
                                                            height: auto;
                                                            opacity: 0;
                                                            position: absolute;
                                                            cursor: pointer;
                                                            &:checked {
                                                                + label {
                                                                    &:before {
                                                                        background: var(--bc_primary);
                                                                    }
                                                                }
                                                            }
                                                        }
                                                    }
                                                }
                                            }
                                            .remove-area {
                                                .remove-print-cart {
                                                    background-image: url(../../images/remove.png);
                                                    background-repeat: no-repeat;
                                                    width: 30px;
                                                    height: 30px;
                                                    display: block;
                                                    background-size: 30px 30px;
                                                    font-size: 0;
                                                    top: 20%;
                                                    position: relative;
                                                    @media (min-width:0) and (max-width: 767px) {
                                                        width: auto;
                                                        height: auto;
                                                        display: block;
                                                        background-size: 30px 30px;
                                                        font-size: 13px;
                                                        top: auto;
                                                        position: relative;
                                                        padding-left: 40px;
                                                        font-weight: 700;
                                                        font-style: italic;
                                                        line-height: 30px;
                                                        margin-top: 30px;
                                                    }
                                                }
                                            }
                                        }
                                    }
                                }
                                &.qty {
                                    text-align: center;
                                    @media (max-width: 767px){
                                        text-align: left;
                                        display: inline-block;
                                        vertical-align: top;
                                    }
                                    .qty {
                                        input {
                                            background-color: var(--bc_secondary);
                                            border: none;
                                            color: var(--bc_white);
                                            text-align: center;
                                            width: 60px;
                                            padding: 10px;
                                        }
                                    }
                                }
                                &.subtotal {
                                    text-align: center;
                                    @media (max-width: 767px){
                                        text-align: left;
                                        display: inline-block;
                                        vertical-align: top;
                                    }
                                }
                            }
                        }
                    }
                }
            }
            .cart {
                &.actions {
                    border-bottom: 1px solid var(--bc_secondary);
                    border-top: 1px solid var(--bc_secondary);
                }
            }
            .bc_cart_popup {
                width: 90dvw;
                max-width: 1500px;
                position: relative;
                padding: 40px;
                border-radius: 0;
                button {
                    top: 10px;
                    right: 10px;
                    border-radius: 100%;
                    width: 30px;
                    height: 30px;
                    padding: 5px;
                    svg {
                        stroke: var(--bc_white) !important;
                    }
                }
            }
        }
        .bc_cart_summary {
            flex: 0 0 auto;
            width: 100%;
            @media (min-width: 768px) {
                padding-left: 15px;
            }
            @media (min-width: 1200px) {
                width: 30%;
            }
            .cart-summary {
                position: relative;
                #checkout-link-button {
                    position: absolute;
                    bottom: 20px;
                    left: 25px;
                    right: 25px;
                    margin: auto;
                    z-index: 2;
                }
                .cart-note {
                    background: var(--ba_grey);
                    position: static;
                    padding: 25px;
                    width: 100%;
                    border: 1px solid var(--bc_secondary);
                    * {
                        font-weight: 500;
                        font-size: 14px;
                        line-height: 21px;
                    }
                    span {
                        color: var(--bc_primary);
                    }
                    a {
                        font-weight: 400;
                        &:hover {
                            color: var(--bc_primary);
                        }
                    }
                }
                .coupon-form {
                    > div {
                        padding: 25px;
                        background: var(--ba_grey);
                        .text-left {
                            button {
                                display: flex;
                                align-items: center;
                                justify-content: space-between;
                                width: 100%;
                                margin-bottom: 10px;
                                span {
                                    text-decoration: none;
                                    font-size: 14px;
                                    font-weight: 600;
                                    text-transform: uppercase;
                                }
                            }
                        }
                        form {
                            padding: 0;
                            margin: 0;
                            border: 0;
                            border-radius: 0;
                            box-shadow: none;
                            .coupon  {
                                > .flex{
                                    gap: 0;
                                }
                                .control {
                                    flex-grow: 1;
                                    input {
                                        width: 100%;
                                        border-radius: 0;
                                        border: 1px solid var(--bc_color_light);
                                        min-height: auto;
                                        height: 100%;
                                    }
                                }
                            }
                        }
                    }
                }
                .estimate-shipping-form {
                    margin: 0;
                    padding: 0 25px 25px 25px;
                    background: var(--ba_grey);
                    border: 0;
                    padding-bottom: 80px;
                    .card {
                        margin-bottom: 0;
                    }
                }
                .cart-totals{
                    background: var(--ba_grey);
                    padding: 0 25px 25px 25px;
                    .border-container {
                        margin: 0;
                        border: 0;
                        .text-right {
                            font-weight: 600;
                        }
                    }
                    div {
                        .text-2xl{
                            margin: 0;
                            padding: 0;
                            h3 {
                                font-size: 16px;
                                font-weight: normal;
                            }
                            .text-right {
                                font-weight: 600;
                            }
                        }
                    }
                }
                .checkout-methods-items {
                    padding: 0 25px 25px 25px;
                    background: var(--ba_grey);
                    .payment-option-title {
                        justify-content: flex-start !important;
                        margin-bottom: 5px;
                        .action {
                            span {
                                text-decoration: none;
                                font-size: 14px;
                                font-weight: 600;
                                text-transform: uppercase;
                            }
                        }
                    }
                    .reward-points-payment-content {
                        .reward-box {
                            text-align: left;
                            * {
                                font-size: 14px;
                            }
                            .points {
                                margin-bottom: 5px;
                                strong {
                                    color: var(--bc_primary);
                                }
                            }
                            .reward-slider-content {
                                .reward-spending-slider {
                                    .range {
                                        height: 40px !important;
                                        width: 100% !important;
                                        .value {
                                            color: var(--bc_primary) !important;
                                        }   
                                    }
                                }
                            }
                            .extra-controls {
                                display: flex;
                                align-items: center;
                                justify-content: center;
                                gap: 10px;
                                margin-bottom: 10px;;
                                > span {
                                    font-weight: 600;
                                    font-size: 14px;
                                }
                            }
                            .choice {
                                label {
                                    font-weight: 600;
                                    font-size: 12px;
                                    padding-left: 10px;
                                    position: relative;
                                    cursor: pointer;
                                    &:before {
                                        width: 15px;
                                        height: 15px;
                                        content: '';
                                        display: inline-block;
                                        background: var(--bc_white);
                                        margin-left: -15px;
                                        border: 1px solid var(--bc_secondary);
                                        border-radius: 100px;
                                        position: absolute;
                                        left: 0;
                                        cursor: pointer;
                                    }
                                }
                                input {
                                    opacity: 0;
                                    z-index: 2;
                                    cursor: pointer;
                                    &:checked {
                                        + label {
                                            &:before {
                                                background: var(--bc_primary);
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
    .cart-blockpayment {
        width: 100%;
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        margin-bottom: 10px;
        p {
            padding-left: 50px;
            padding-right: 50px;
            line-height: 2;
            font-weight: 600;
            text-transform: uppercase;
            * {
                font-weight: 600;
                text-transform: uppercase;
            }
        }
    }
    .mp-rw-highlight {
        color: var(--bc_primary) !important;
    }
}
.account {
    .account-top {
        text-align: center;
        max-width: 1470px;
        width: auto;
        padding-left: 1rem;
        padding-right: 1rem;
        margin: 0 auto;
        .page-title {
            margin-bottom: 20px;
            * {
                font-size: 24px;
                font-weight: 500;
                color: var(--bc_black);
                text-transform: uppercase;
                display: inline-block;
                @media (min-width: 1024px) {
                    font-size: 30px;
                }
                @media (min-width: 1200px) {
                    font-size: 36px;
                }
                span {
                    color: var(--bc_primary);
                }
            }
        }
        .welcome-text {
            text-align: center;
            color: var(--bc_color_light);
            margin-bottom: 30px
        }
    }
    .product-image-photo {
        position: static;
    }
    .products-grid {
        &.wishlist {
            .product-items {
                display: flex;
                flex-wrap: wrap;
                width: 100%;
                padding-top: 20px;
                .product-item {
                    flex: 0 0 auto;
                    width: 100%;
                    padding: 0 15px;
                    margin-bottom: 30px;
                    @media (min-width:768px) {
                        width: 50%;
                    }
                    @media (min-width:1200px) {
                        width: 33.33%;
                    }
                    .product-item-info{
                        .product-image-container {
                            aspect-ratio: unset !important;
                        }
                        .product-item-inner {
                            .box-tocart{
                                .fieldset {
                                    display: flex;
                                    justify-content: space-between;
                                    align-items: center;
                                    .qty {
                                        margin: 0;
                                        .control {
                                            .flex {
                                                align-items: stretch;
                                                gap: 0;
                                                input {
                                                    border: 0;
                                                    border-radius: 0;
                                                    background: var(--bc_secondary);
                                                    color: var(--bc_white);
                                                    min-height: auto;
                                                    width: 40px;
                                                }
                                                button {
                                                    background: var(--bc_secondary);
                                                    padding:8px 1rem;
                                                    color: var(--bc_white);
                                                    border: 1px solid var(--bc_secondary);
                                                    line-height: 1.5rem;
                                                }
                                            }
                                        }
                                    }
                                    .product-item-actions {
                                        button {
                                            span {
                                                display: none;
                                            }
                                        }
                                    }
                                }
                            }
                            .product-item-actions {
                                display: flex;
                                justify-content: flex-end;
                            }
                        }
                    }
                }
            }
        }
    }
}
/* Cart page style End*/

/* Product thumnail common style */
.category-landingpage .featured-grid .container .block-tab-content .tabcarousel .product-item,
.post-detail-page .post-detail-slider .item,
.form-wishlist-items .products-grid .product-items .product-item {    
    .product-item-info {
        position: relative;
        display: flex;
        flex-direction: column;
        height: 100%;
        justify-content: space-between;
        .itemTopinfo {
            position: absolute;
            left: 1px;
            right: 1px;
            display: flex;
            justify-content: space-between;
            z-index: 10;
            align-items: center;
            .stock {
                background: #9a9a9a;
                padding: 0px 15px;
                text-transform: uppercase;
                color: var(--bc_white);
                line-height: 24px;
                font-size: 14px;
                &.available {
                    background: var(--bc_secondary);
                }
            }
            .d-flex-flag {
                gap: 0 3px;
                display: flex;
                span {
                    flex: 0 0 auto;
                    width: 25px;
                    height: 25px;
                    background-repeat: no-repeat;
                    background-position: center;
                    display: block;
                    background-size: 25px auto;
                    font-size: 0;
                    &.eco-collection {
                        background-image: url(../../images/icon-echo.svg);
                    }
                    &.made-in {
                        background-image: url(../../images/icon-uk.svg);
                    }
                    &.flag-expressitem {
                        background-image: url(../../images/express-icon.svg);
                    }
                    &.flag-fullcolour {
                        background-image: url(../../images/full-colour-icon.svg);
                    }
                    &.flag-impression-europe {
                        background-image: url(../../images/value-icon.svg);
                    }
                }
            }
        }
        .product-item-photo {
            overflow: hidden;
            img {
                transition: all 0.5s ease;
                scale: 0.9;
                object-fit: scale-down;
                display: block;
                margin: auto;
                height: 250px;
                @media (min-width: 1024px) {
                    height: 300px;
                }
            }
            &:hover {
                img {
                    scale: 1;
                }    
            }
        }
        .bc_pr_legend {
            * {
                font-size: 14px;
            }
            span {
                color: #549200;
            }
            strong {
                font-weight: 600;
            }
        }
        .bc_counter {
            span {
                font-size: 22px;
                color: var(--bc_black);
            }
        }
        .product-item-details {
            border-top: 1px solid var(--bc_secondary);
            border-bottom: 1px solid var(--bc_secondary);
            margin-top: 10px;
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            .product-item-name {
                padding: 10px 10px 10px 0;
                text-transform: uppercase;
                flex: 0 0 auto;
                width: 67%;
                text-align: left;
                margin: 0;
                font-weight: 600;
                border-right: 1px solid var(--bc_secondary);
                line-height: 1.4;
                a {
                    color: var(--bc_secondary);
                    font-size: 14px;
                }
            }
            .price-box {
                width: 33%;
                padding-left: 10px;
                text-align: right;
                .price {
                    color: var(--bc_secondary);
                    font-size: 14px;
                    font-weight: normal;
                }
                .minimal-price-link {
                    display: none;
                }
            }
        }
    }
}
/* Product thumnail common style End*/

/* mini cart style start */
#cart-drawer {
    
}
/* mini cart style end */

/* description table style */
.col-pricetable {
    display: block;
    padding: 20px 0 0;
    overflow: auto;
    .table-tab {
        .data-item {
            float: left;
            font-size: 100%;
            font-weight: 500;
            text-transform: uppercase;
            line-height: normal;
            margin-right: 10px;
            cursor: pointer;
            padding: 8px 16px;
            @media (max-width: 991px) {
                width: 100%;
            }
            * {
                color: var(--bc_secondary);
                background: var(--bc_white);
                padding: 8px 16px;
                @media (max-width: 991px) {
                    padding: 10px 20px;
                    width: 100%;
                    border-bottom: 1px solid var(--bc_secondary);
                }
            }
            &.active {
                * {
                    background: var(--bc_secondary);
                    color: var(--bc_white);
                }
            }
        }
        .data-content {
            margin-top: 41px;
            box-sizing: border-box;
            float: right;
            margin-left: -100%;
            width: 100%;
            padding: 20px 0;
            overflow-x: auto;
            @media (max-width: 991px) {
                width: 100%;
                margin: 0;
            }
            table {
                tr {
                    td {
                        border-bottom: 2px solid #fff;
                        border-left: 4px solid #fff;
                        padding: 10px 20px;
                        text-align: center;
                        border-top: 0;
                        border-right: 0;
                        vertical-align: middle;
                        background: #ededed;
                        color: var(--bc_secondary);
                    }
                    &:nth-child(odd){
                        td {
                            background: #f9f9f9;
                        }
                    }
                }
            }
        }
    }
}
/* description table end */

/* custom checkbox design */
.sign-up-checkbox{
    margin-left: 5px;
    margin-bottom: 15px;
    position: relative;
    .label {
        display: flex;
        align-items: center;
        cursor: pointer;
        &:before {
            content: '';
            width: 16px;
            height: 16px;
            background: var(--bc_white);
            border: 1px solid var(--bc_secondary);
            border-radius: 100%;
            margin-right: 15px;
        } 
    }
    input {
        &[type="checkbox"] {
            position: absolute;
            opacity: 0;
            cursor: pointer;
        }
        &:checked {
            + label {
                &:before {
                    background: var(--bc_primary);
                }
            }
        }
    }     
}


/* Recaptcha  Start */
.g-recaptcha{
   margin-top: 25px;
   margin-bottom: 25px;
}
/* Recaptcha  End */

/* News Page style Start*/
.cdawpcpt-index-index {
    .breadcrumbs {
        .ol {
            padding-left: 0;
        }
    }
    .page-main {
        margin-top: 0;
        .bc_cms_title {
            h1 {
                padding: 0;
                .bc_sec_title {
                    line-height: normal;
                }
            }
        }
        .columns {
            display: flex;
            align-items: flex-start;
            flex-wrap: wrap;
            gap: 0;
            dt {
                font-weight: 700;
            }
            .wp-sidebar {
                .cat-filter {
                    dt {
                        font-size: 14px;
                    }
                    dd {
                        ul {
                            li {
                                input{
                                    &[type=checkbox] {
                                        + label {
                                            line-height: 1;
                                            padding-top: 2px;       
                                        }
                                    }
                                }
                            }
                        }
                        .blog-search {
                            .input-text {
                                width: 100%;
                            }
                            button {
                                &:before {
                                    background-image: url(../../images/icon-search.svg);
                                }
                                span {
                                    font-size: 0;
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
.cdawpcpt-index-details {
    .breadcrumbs {
        margin-bottom: 0 !important;
    }
    .page-main {
        p {
            img {
                display: inline-block;
                vertical-align: top;
            }
        }
        .middle-content {
            .post-product-detail {
                &.post-detail-slider{
                    margin-bottom: 50px;
                    overflow-x: auto;
                    padding-bottom: 10px;
                    padding-top: 0 !important;
                    display: flex;
                    gap: 20px;
                    .item {
                        flex: 0 0 100%;
                        max-width: 100%;
                        display: flex;
                        flex-direction: column;
                        @media (min-width:768px) {
                            flex: 0 0 50%;
                            max-width: 50%;
                        }
                        @media (min-width:1200px) {
                            flex: 0 0 25%;
                            max-width: 25%;
                        }
                        .product-item-details {
                            border-bottom: 0 !important;
                            .product-item-name {
                                border-right: 0 !important;
                            }
                        }
                    }
                }
            }
        }
    }
}
/* News Page style End*/

/* Reward Desgin Start */

.block-reward-dashboard {
    .reward-balance {
        .item-balance {
            padding: 0 10px;
            span strong {
                line-height: 45px;
            }
        }
    }
    .reward-information {
        .block-title {
            margin-top: 0;
        }
    }
}

/* Reward Desgin End */