:root {
    /* mock_up-color */
    --primary-100: #E2A856;
    --primary-80: #E8B978;
    --primary-60: #EECB9A;
    --primary-40: #F3DCBB;
    --primary-20: #F9EEDD;
    --black-100: #090800;
    --black-80: #3A3933;
    --black-60: #6B6B66;
    --black-40: #9D9C99;
    --black-20: #CECECC;
    --beige-taupe-100: #A18E7D;
    --beige-taupe-80: #B4A597;
    --beige-taupe-60: #C7BBB1;
    --beige-taupe-40: #D9D2CB;
    --beige-taupe-20: #ECE8E5;
    --white-gray-100: #E6E4DD;
    --white-gray-80: #EBE9E4;
    --white-gray-60: #F0EFEB;
    --white-gray-40: #F5F4F1;
    --white-gray-20: #FAFAF8;
    --granite-gray-100: #686661;
    --granite-gray-80: #868581;
    --granite-gray-60: #A4A3A0;
    --granite-gray-40: #C3C2C0;
    --granite-gray-20: #E1E0DF;
    --white: #FFF;
    --error: #ED393E;
    --discount: #DB3B02;
    --success: #5DBD36;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Open Sans", sans-serif;
}

@font-face {
    font-family: "DMSerifDisplay-Regular";
    src: local("DMSerifDisplay-Regular"), url("../../font/DMSerifDisplay-Regular.otf") format("opentype"), url("../../font/DMSerifDisplay-Regular.woff") format("woff");
}

body {
    color: var(--black-100);
    font-size: .95rem;
}

select:focus {
    box-shadow: none !important;
    border-color: unset !important;
}

h1, h2, h3, h4, h5, h6, p, a {
    font-family: "Open Sans", sans-serif;
}

h1, h2, h3, h4, h5 {
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
}

h1 {
    font-size: 4rem;
}

h2 {
    font-size: 3rem;
}

small {
    color: var(--black-40);
}

.italic {
    font-style: italic;
}

.primary-heading {
    font-weight: 400;
}

.warning-bg {
    background: var(--primary-100);
}

.primary-btn {
    background: var(--primary-100);
    color: #000;
    font-weight: 600;
    text-transform: uppercase;
    padding: 12px 35px;
    font-size: 16px;
}

    .primary-btn:hover {
        border: 1px solid var(--primary-100);
        color: var(--primary-100);
        background: transparent;
    }

.warning-btn {
    background: var(--primary-100);
    border: 0;
    transition: all .2s ease;
}

    .warning-btn:hover {
        background: var(--black-100);
        color: var(--white);
    }

.secondary-btn {
    border: 1.5px solid var(--primary-100);
    color: var(--primary-100);
    background: transparent;
    font-weight: 600;
    text-transform: uppercase;
    padding: 13px 30px;
    font-size: 14px;
}

    .secondary-btn:hover {
        background: var(--black-100);
        color: #FFF;
        border: 1px solid var(--black-100);
    }

.secondary-btn-sm {
    border: 1.5px solid var(--primary-100);
    color: var(--primary-100);
    background: transparent;
    text-transform: uppercase;
    font-size: 14px;
}

    .secondary-btn-sm:hover {
        background: var(--black-100);
        color: #FFF;
        border: 1px solid var(--black-100);
    }

.light-btn {
    border: 1.5px solid var(--black-100);
    color: var(--black-100);
    background: transparent;
    font-weight: 600;
    text-transform: uppercase;
    padding: 13px 30px;
    font-size: 14px;
}

    .light-btn:hover {
        border: 1px solid var(--primary-100);
        color: var(--white);
        background: var(--primary-100);
    }

.card-add-btn {
    background: var(--black-100);
    border: none;
    color: var(--white);
    padding: .1rem 1.2rem;
}

    .card-add-btn:hover {
        background: var(--granite-gray-100);
    }

.page-btn {
    background: var(--primary-100);
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
    padding: 11px 6px;
    font-size: 16px;
    border: 1px solid var(--primary-100);
}

    .page-btn:hover {
        background: var(--black-100);
        color: var(--white);
        border: 1px solid var(--black-100);
    }

.fill-btn {
    background: var(--primary-100);
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
    padding: 12px 35px;
    font-size: 16px;
}

    .fill-btn:hover {
        background: var(--black-100);
        color: var(--white);
    }

.edit-btn {
    background: var(--primary-100);
    color: var(--white);
    padding: .345rem 1.775rem;
}

    .edit-btn:hover {
        background: var(--black-100);
        color: var(--white);
    }

.btn-check:focus + .btn, .btn:focus {
    outline: 0;
    box-shadow: none;
}

.go-back {
    border: 0;
    background: transparent;
    color: var(--primary-100);
    transition: all .2s ease;
    font-size: 1rem;
    font-weight: 600;
}

    .go-back:hover {
        color: var(--black-100);
    }
/**************** Header ******************/
.top-header {
    background: var(--granite-gray-100);
    color: var(--white);
    padding: .5rem 0;
    overflow: hidden;
}

    .top-header a {
        text-decoration: none;
        color: var(--white);
    }

ul.navbar-nav li {
    margin: 0rem .3rem;
}

.search {
    position: relative;
}

.menu-bar ul {
    margin: 0;
}

    .menu-bar ul li {
        display: inline-block;
        margin: 0 20px;
        font-size: 13px;
        text-transform: uppercase;
    }

.search input {
    padding: 6px 30px 6px 8px;
    outline: 0;
    border: 1px solid var(--black-20);
}

    .search input:focus {
        border: 1px solid var(--black-100);
    }

    .search input::placeholder {
        color: var(--black-20);
        font-size: .9rem;
    }

.search span {
    position: absolute;
    top: 6px;
    right: 20px;
}

span.login-search {
    position: absolute;
    top: 10px;
}

.resp-logo, .mob-bag {
    display: none;
}

.dropdown-toggle::after {
    display: none;
}

ul.navbar-nav li:hover a.nav-link {
    color: var(--primary-100) !important;
}

.navbar-light .navbar-nav .nav-link {
    color: #090800 !important;
}

.navbar-light .navbar-nav a.nav-link span {
    padding-left: .25rem;
}

ul.navbar-nav li.nav-item a {
    font-size: 1rem;
    font-weight: 400;
    text-transform: uppercase;
    cursor: pointer;
}

/*.products-items ul {
    display: flex;
    flex-wrap: wrap;
}*/
ul.product-items-list {
    column-count: 2;
}

.products-items ul li {
    width: 180px;
}

.products-items li a {
    text-wrap: wrap;
}

.products-items {
    width: 40vw;
    max-height: 460px;
    overflow: auto;
}

    .products-items h5 {
        background: var(--white);
        position: sticky;
        top: 0;
    }

    /*************************/
    .products-items::-webkit-scrollbar {
        width: 6px;
    }

    /* Track */
    .products-items::-webkit-scrollbar-track {
        background: #f1f1f1;
    }

    /* Handle */
    .products-items::-webkit-scrollbar-thumb {
        background: #888;
    }

        /* Handle on hover */
        .products-items::-webkit-scrollbar-thumb:hover {
            background: #555;
        }
/*************************/


ul.navbar-nav li.nav-item a:active {
    background: #e9ecef;
    color: var(--black-100);
}

a.dropdown-item {
    text-transform: capitalize !important;
}

.fixed-top {
    background: var(--white);
    padding: 0;
    box-shadow: 0px 2px 10px 2px rgba(0, 0, 0, 0.3);
}

.dropdown-list {
    position: relative;
}

ul.middle-list {
    margin-top: 2rem;
}

.products-items h5 {
    font-family: 'Open Sans';
    font-size: 1.1rem;
}

.dropdown-list:hover .mydropdown {
    display: block;
}

.mydropdown {
    position: absolute;
    z-index: 3;
    background: #FFF;
    left: -24px;
    display: none;
    transition: all .2s ease;
    box-shadow: 0px 6px 6px 0px rgba(0, 0, 0, 0.3);
}

.dropdown-menu {
    font-size: .95rem;
}

.mydropdown ul li {
    list-style: none;
    margin: 0;
    padding: .3rem 0;
}

.navbar-toggler {
    padding: 0;
}

.navbar-light .navbar-toggler-icon {
    background-image: url('../../images/menu.svg');
}

.navbar-toggler-icon {
    margin-top: .25rem;
    width: 1.25em;
    height: 1.25em;
}

/**************** Header End******************/


/**************** Carousel ******************/

.carousel-caption {
    background: rgb(0 0 0 / 80%);
    width: 28%;
    padding: 2.5rem 0.5rem;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    height: fit-content;
}

    .carousel-caption h6 {
        font-size: 1.125rem;
        font-weight: 600;
    }

.logos a {
    padding: 1.5rem 1rem;
    transition: all .2s ease;
}

    .logos a:hover {
        background: var(--granite-gray-60);
    }

.login {
    display: flex;
    align-items: center;
}

    .login a {
        font-size: 15px;
        font-weight: 500;
        transition: all .2s ease;
    }

    .login p {
        font-size: 10px;
    }

        .login p a {
            text-decoration: underline;
            font-size: .5rem;
            font-weight: 600;
        }

a.border-right {
    border-right: 1px solid #FFF;
    padding-right: .7rem;
    margin-right: 0.7rem;
}

.logout {
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
    margin: 0 0.75rem;
    padding: 0 .5rem;
}



.login svg {
    box-shadow: 0px 4px 6px 1px rgba(0, 0, 0, 0.3);
}

    .login svg:hover {
        filter: invert(.3);
    }

.login a:hover {
    color: var(--granite-gray-60);
}

a.brodernone {
    border-right: none;
    padding-right: 0;
    position: relative;
}

.cart-notification {
    display: none;
    width: 8px;
    height: 8px;
    background: #D0112C;
    border-radius: 50%;
    position: absolute;
    top: 13%;
    right: -20%;
}

.logos a.active {
    background: #fff;
}

h1.card-title {
    font-size: 64px;
}


.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #000 !important;
}

.my-login a:nth-child(1) {
    border-right: 1px solid #FFF;
    padding: 0 12px;
    margin: 0 12px;
}


/**************** Carousel End******************/
/**************** What's New******************/
h5.card-title {
    font-weight: bold;
    font-size: 1.125rem;
}

.whats-new-card h5 {
    font-size: 1.5rem;
    font-weight: 400;
}

.whats-new-card {
    margin-right: 1rem;
}

/**************** What's New End******************/
/**************** Northcott Fabrics ******************/
/*#northcottfaberic {
    background: linear-gradient(0deg, rgba(0,0,0,.8) 0%, rgba(0,0,0,0.8) 100%), url('../../images/Who_are_we.png');
    background-size: cover;
    color: #FFF;
    margin-top: 3rem;
}*/

#northcottfaberic h2 {
    margin-bottom: 1.25rem;
}

#northcottfaberic p {
    max-width: 850px;
    text-align: center;
    margin: auto;
    font-size: 14px;
    line-height: 27px;
    margin-bottom: 1.875rem;
}
/**************** Northcott Fabrics End ******************/

/**************** Featured Categories ******************/
#feature-categories {
    margin-block: 6rem;
}

.featured-card {
    overflow: hidden;
    margin-right: 1rem;
    border: 1px solid var(--black-20);
    height: 100%;
    position: relative;
}

    .featured-card a {
        position: absolute;
        bottom: .75rem;
    }

.featured-body h5 {
    padding-bottom: 3rem;
}

.featured-card .card {
    border: 0;
}

.featured-card img {
    transition: all .2s ease;
    object-fit: cover;
    object-position: center;
    height: 100%;
    width: 100%;
}

.featured-card:hover .card img {
    transform: scale(1.07);
    cursor: pointer;
}

a.card-btn {
    color: var(--primary-100);
    font-weight: 700;
    text-decoration: none;
    padding: .125rem 0;
    transition: all .2s ease;
    border-bottom: 1px solid transparent;
}

.featured-card:hover a {
    border-bottom: 1px solid var(--primary-100);
}

.card {
    height: 100%;
}

.card-img {
    overflow: hidden;
    border-bottom: 1px solid var(--black-20);
    max-width: 480px;
    aspect-ratio: 5/4;
}
/**************** Featured Categories End ******************/

/**************** Featured Designer ******************/


#designers h5 {
    font-size: 20px;
    font-style: italic;
}

#designers img {
    border-radius: 50%;
    width: 500px;
    aspect-ratio: 1;
}

/**************** Featured Designer End ******************/

/**************** resource ******************/

.resource a {
    margin: 0 !important;
}

.resource-card {
    border-bottom: 1px solid var(--black-20);
    max-width: 540px;
    max-height: 160px;
}

.resource:nth-last-child(1) .resource-card {
    border: 0;
}


.small-text {
    color: var(--black-60);
    font-weight: 400;
}

.card h5 {
    font-family: 'Open Sans';
}

.resources-details h5 {
    font-family: 'Open Sans';
    font-size: 1.125rem;
    line-height: 1.5rem;
}

.resource-card small {
    margin-bottom: .75rem;
    display: inline-block;
}
/**************** resource End ******************/

/**************** socila-slider ******************/
.swiper-container {
    width: 100%;
    padding: 0 6px;
}

.swiper-wrapper {
    height: unset;
}

.swiper-slide {
    text-align: center;
    font-size: .95rem;
    background: #fff;
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.swiper-button-prev, .swiper-container-rtl, .swiper-button-next {
    background-color: rgba(0,0,0,.4);
    border-radius: 50%;
    padding: 1.4rem;
    background-size: 25%;
}

.swiper-button-prev {
    background-image: url('../../images/chevron_left.png');
    left: 0;
}

.swiper-button-next {
    background-image: url('../../images/chevron_right.png');
    right: 0;
}

.follow-us-on {
    max-width: 600px;
    margin: auto;
    text-align: center;
}

ul.social-icons {
    display: inline-block;
    padding: 0;
    margin: 0;
}

    ul.social-icons li {
        list-style: none;
        display: inline-block;
        margin: 0 .75rem;
    }

/**************** socila-slider end******************/

/**************** Footer ******************/
#footer {
    background: #030200;
    padding-block: 6rem;
    color: var(--white);
}

    #footer h3 {
        font-family: "Open Sans", sans-serif;
        font-weight: 600;
    }

.help ul, .policies ul {
    padding: 0;
    margin: 0;
}

    .help ul li, .policies ul li {
        list-style: none;
        margin: 10px 0;
    }

        .help ul li a, .policies ul li a {
            text-decoration: none;
            color: var(--white);
        }

.subscribe {
    text-align: end;
}

    .subscribe p {
        font-style: italic;
    }

#socila-slider h2 {
    max-width: 900px;
    margin: auto;
    font-family: "Open Sans", sans-serif;
    font-weight: 700;
    font-size: 28px;
}

#socila-slider span {
    color: var(--primary-100);
    font-style: italic;
}

.help p, .policies p {
    text-transform: uppercase;
    font-weight: 600;
}

#footer button {
    padding: 12px 14px;
}
/**************** Footer End ******************/



/********** About Us Page **********************/
#about-top img, #product-top img {
    width: 100%;
    height: 34.5vh;
    object-fit: cover;
}

.aboutUs {
    padding-block: 6rem;
}

    .aboutUs h1 {
        padding-bottom: 5rem;
    }

.about-card-title {
    font-size: 2rem;
    font-family: 'Open Sans';
    font-weight: bold;
}

.about-card {
    border: 1px solid var(--black-20);
    transition: all .2s ease;
}

    .about-card:hover {
        border: 1px solid var(--black-60);
    }

#discover-division {
    margin-block: 6rem;
}

.swiper-slide {
    flex-direction: column;
    text-align: left;
    align-items: unset;
}

#discover-division {
    background: var(--white-gray-40);
}

section#charities h3 {
    font-family: 'Open Sans';
    font-weight: bold;
    margin-bottom: 20px;
}

#charities a {
    color: var(--black-100);
}

#history .swiper-button-prev, #history .swiper-button-next {
    top: 30%;
}


#charities::before {
    content: "";
    display: block;
    /*    height: 100px; 
    margin-top: 220px;*/
    visibility: hidden;
}
/************* About Contact *******************/
.usa-office p {
    margin-bottom: 0;
    font-size: 18px;
}

.usa-office > .row {
    border-bottom: 1px solid var(--black-20);
    padding-bottom: 20px;
    margin-bottom: 20px;
}

    .usa-office > .row:nth-last-child(1) {
        border: none;
    }

.office-space {
    margin-bottom: 120px;
}

.office-contact p:nth-child(1) {
    margin-bottom: 10px;
}

.aboutUs iframe {
    width: 100%;
    height: 342px;
}

#aboutCharities h3 {
    margin-bottom: 20px;
    font-size: 32px;
}

.usa-office {
    padding: 0 20px;
}
/************* About Contact End *******************/

/****************** Sign In Page ******************/
#signIn {
    padding-block: 6rem;
}

    #signIn button {
        width: 100%;
    }

    #signIn p {
        font-size: 14px;
    }

.myInput {
    padding: 0.7rem 0.75rem;
    font-size: 14px;
    border-radius: 0;
}

.forgot a {
    color: var(--black-100);
}

#signIn a {
    text-decoration: none;
    transition: all .2s ease-in;
}

#signIn .support a:hover {
    color: var(--primary-100);
}

.form-control:focus {
    box-shadow: none;
    border-color: var(--black-40);
}

.form-control::placeholder {
    color: var(--black-40);
}

.form-label {
    font-weight: 700;
}

.form-check label {
    font-weight: 400;
    font-size: .9rem;
    color: var(--black-100);
}

.support a {
    color: var(--black-60);
}

#signIn h2 {
    font-family: 'Open Sans';
    font-size: 2rem;
    font-weight: bold;
}

.form-check-input:checked {
    background-color: var(--black-100);
    border-color: var(--black-100);
}

.form-check-input[type=checkbox] {
    border-radius: .25em;
    border-color: var(--black-100);
}

nav.navbar {
    border-bottom: 1px solid var(--black-20);
}

#admin-login {
    align-items: center;
    display: flex;
    height: 100vh;
}
/****************** Retailor Registration Page ******************/
.location {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: .7rem;
}

    .location p {
        display: inline-block;
        margin: 4px 0;
    }

.cities {
    margin-top: .8rem;
}

.location p:nth-child(1) {
    width: 60px;
    text-align: left;
}

.form-check-input[type=radio] {
    border-color: var(--black-100);
    width: 16px;
    height: 16px;
}

.form-check-input:focus {
    box-shadow: none;
}
/****************** Dashboard Page ******************/
#dashboard {
    padding-block: 6rem;
}

#dashboard-table table thead tr th {
    text-wrap: nowrap;
}

#dashboard h2, #dashboard-table h2, .shopping-cart h2 {
    font-family: 'Open Sans';
    padding-bottom: 4rem;
    font-size: 2rem;
    font-weight: bold;
}

#order-confirmed-customer h2 {
    padding: 0;
}

#dashboard h3, h4 {
    font-family: 'Open Sans';
}

#dashboard h4 {
    border-bottom: 1px solid var(--black-20);
    font-size: 1.125rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.account {
    border: 1px solid var(--black-20);
}

    .account h3 {
        font-weight: bold;
        font-size: 1.625rem;
    }

    .account a {
        font-size: 1rem;
        font-weight: bold;
    }

#dashboard ul {
    padding: 0;
}

    #dashboard ul li {
        list-style: none;
        padding: .5rem 0;
        font-size: 0.875rem;
        color: var(--black-60);
    }

        #dashboard ul li span {
            font-weight: 600;
            color: var(--black-100);
            padding-left: 1rem;
        }

        #dashboard ul li:nth-last-child(1) {
            border-top: 1px solid var(--black-20);
        }

#dashboard small {
    color: var(--black-60);
}

.accordian-data {
    text-align: center;
    border-left: 1px solid var(--black-20);
    padding-left: 1.5rem;
}

    .accordian-data span {
        font-size: .75rem;
        color: var(--black-60);
    }

    .accordian-data h4 {
        font-size: 1.125rem;
        font-weight: bold;
    }

.accordion-header {
    padding: 1rem 1rem;
}

.accordion-item .accordion-header {
    padding: 1rem 0rem;
    font-weight: 600;
}

#dashboard-table {
    padding-block: 6rem;
}

.accordion-header button {
    border: none;
    background: none;
}

#dashboard-table .dash-title {
    display: inline-block;
    text-transform: uppercase;
    margin: 0;
    font-size: 1.125rem;
    font-weight: bold;
}

.arrow-rotate {
    transform: rotate(180deg);
}

.accordion-box {
    border: 1px solid var(--black-20);
    box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.1);
}

    .accordion-box:hover {
        box-shadow: 0px 0px 12px 8px rgba(0, 0, 0, 0.1);
    }

.accordion-header button:focus-visible {
    outline: 0;
}

.page-item.active .page-link {
    border-color: var(--primary-100);
    background: var(--primary-100);
}

.page-link {
    color: var(--primary-100);
}

.account {
    border: 1px solid var(--black-20);
    padding: 20px 30px;
}

#myTable1_wrapper, #myTable2_wrapper, #myTable3_wrapper {
    padding: 20px 40px;
    border: 1px solid var(--black-20);
}

.dt-search {
    position: relative;
}

    .dt-search label {
        display: none;
    }

span.table-search-icon {
    position: absolute;
    right: 10px;
    top: 11px;
    color: var(--black-60);
}

#myTable1 thead tr th, #myTable2 thead tr th, #myTable3 thead tr th {
    text-align: center;
}

#myTable1 tbody tr td, #myTable2 tbody tr td, #myTable3 tbody tr td {
    text-align: center;
}

input.form-control-sm {
    padding: .45rem 2rem 0.45rem .5rem;
}

.page-link:focus {
    box-shadow: none;
}
/************* Regions & Customers****************/

h2.customers {
    font-size: 2rem;
}

#Region option, #Customer option {
    color: var(--black-100);
}

/****************** New Menu ********************/

/*************** Converted Code ******************/

.mob-header:before {
    content: "";
    display: block;
    z-index: -1;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    opacity: 0;
    visibility: hidden;
    background: rgba(0, 0, 0, .4);
    transition: opacity 0.2s, visibility 0ms linear 0.2s, z-index 0ms linear 0.2s;
}

.mob-header.active:before {
    transition: opacity 0.2s, visibility 0ms;
    z-index: 5;
    opacity: 1;
    visibility: visible;
}

.mob-header.active .slide-out-menu {
    transform: translateZ(0);
    opacity: 1;
    visibility: visible;
    transition: opacity 0.2s, visibility 0ms, transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.mob-header .slide-out-menu {
    z-index: 9000;
    background: #fff;
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    max-width: 300px;
    opacity: 0;
    visibility: hidden;
    overflow-y: hidden;
    overflow-x: hidden;
    transition: opacity 0.2s, visibility 0ms linear 0.2s, transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    transform: translate3d(-290px, 0, 0);
}

    .mob-header .slide-out-menu div.menu-panels {
        overflow: hidden;
    }

        .mob-header .slide-out-menu div.menu-panels button.menu-link, .mob-header .slide-out-menu div.menu-panels a.menu-link {
            position: relative;
            text-align: left;
            width: 100%;
            display: block;
            padding: 14px 20px;
            background: transparent;
            margin: 0;
            border: none;
            text-transform: uppercase;
            color: var(--black-100);
        }

            .mob-header .slide-out-menu div.menu-panels button.menu-link svg, .mob-header .slide-out-menu div.menu-panels a.menu-link svg {
                position: absolute;
                top: 50%;
                margin-top: -7px;
                height: 14px;
            }

                .mob-header .slide-out-menu div.menu-panels button.menu-link svg.arrow-right, .mob-header .slide-out-menu div.menu-panels a.menu-link svg.arrow-right {
                    right: 20px;
                }

                .mob-header .slide-out-menu div.menu-panels button.menu-link svg.arrow-left, .mob-header .slide-out-menu div.menu-panels a.menu-link svg.arrow-left {
                    left: 10px;
                }

            .mob-header .slide-out-menu div.menu-panels button.menu-link.menu-header, .mob-header .slide-out-menu div.menu-panels a.menu-link.menu-header {
                padding-left: 2rem;
                font-weight: 700;
            }

        .mob-header .slide-out-menu div.menu-panels ul {
            margin: 0;
            padding: 0;
            list-style: none;
        }

            .mob-header .slide-out-menu div.menu-panels ul li {
                font-size: 14px;
            }

                .mob-header .slide-out-menu div.menu-panels ul li a {
                    display: block;
                    padding: 14px;
                    color: #000;
                    text-decoration: none;
                }

#menuId {
    position: absolute;
    right: 0;
    top: 10px;
}

.mob-login-bg a.mob-logout {
    border-right: 1px solid var(--white);
    margin-right: 12px;
    text-wrap: nowrap;
}

.mob-header .slide-out-menu div.menu-panel {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    overflow: hidden;
    background: #fff;
    z-index: 0;
    /* transition: transform .4s cubic-bezier(.23,1,.32,1),visibility 0s linear .4s;
                */
    visibility: hidden;
    transform: translateX(-290px);
}

    .mob-header .slide-out-menu div.menu-panel.is-active {
        visibility: visible;
        /* transition: transform .4s cubic-bezier(.23,1,.32,1),visibility 0s;
                */
        transform: translateY(73px);
        z-index: 1;
        overflow: auto;
        height: calc(100vh - 80px);
    }

span.userProfile {
    font-size: 10px;
    color: var(--white);
    display: inline-block;
    text-wrap: wrap;
}

a#changeLink {
    font-size: 10px;
    font-weight: bold;
    text-decoration: underline;
}
/***************** Converted Code ****************/

#menu-toggle {
    background: url(../../images/menu.svg) center center / contain no-repeat transparent;
    border: 0px;
    width: 1.25rem;
    height: 1.25rem;
    margin-top: .7rem;
}

.mob-login-bg {
    background: var(--granite-gray-100);
    padding: .75rem .5rem;
}

li.mob-login-bg a {
    font-size: 0.875rem;
    font-weight: 600;
    color: #FFF !important;
}

li.sub-menu {
    margin: .25rem 1.25rem;
    font-weight: 600;
    border-bottom: 1px solid var(--black-20);
    padding: .5rem 0;
}

/************ Product card normal size normal user *****************/
.product .btn {
    font-size: .95rem;
    padding: .4rem 1.25rem;
    border-width: 0.13rem;
    text-transform: capitalize;
}

#christmas-night {
    margin-top: 6rem;
    margin-bottom: 3rem;
}

    #christmas-night select {
        font-size: .95rem;
        padding: .75rem .75rem;
    }

#effect1:hover {
    background: red;
}

#christmas-night label {
    font-size: 1.125rem;
}

#christmas-night h2, #purchased-patern h2 {
    font-size: 2rem;
    font-weight: bold;
    font-family: 'Open Sans';
}

#christmas-night small {
    color: var(--black-100);
}

.product-content {
    background: var(--primary-20);
}

small.designer-name {
    white-space: nowrap;
    /*    width: 150px;*/
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer;
    display: block;
}

    small.designer-name:hover {
        white-space: wrap;
        overflow: auto;
    }

.product-content p {
    font-size: 1.125rem;
    font-weight: 600;
}

li.breadcrumb-item a {
    text-decoration: none;
    color: var(--black-60);
}

#breadcrumb {
    font-size: .75rem;
}

.product-border {
    border-bottom: 2px solid var(--black-20);
    margin-bottom: 3rem;
}

.single-colorway h6 {
    font-size: 1.125rem;
    font-weight: bold;
}

h5.single-card-title {
    font-size: 0.875rem;
    font-weight: 600;
}

.single-colorway small {
    color: var(--black-40);
    font-size: .75rem;
}

#purchased-patern small {
    color: var(--black-60);
}

#purchased-patern {
    padding-block: 6rem;
}

.view-details {
    position: absolute;
    background: #000000bd;
    color: #FFF;
    left: 0;
    bottom: 0;
    z-index: 10;
    width: 100%;
    text-align: center;
    padding: 2rem 0;
    display: none;
    cursor: pointer;
    font-size: .75rem;
    font-weight: bold;
    letter-spacing: .5px;
}

    .view-details a {
        color: var(--white);
        text-decoration: none;
    }

.product-card:hover .view-details {
    display: block;
}

.product-card:hover {
    border: 1px solid var(--black-100);
}

.card {
    border-radius: 0;
}

/*********** Custom Select ************/

.sidebar-navigation {
    height: auto;
    background-color: #fff;
    border: 1px solid var(--black-20);
    position: relative;
}

    .sidebar-navigation ul {
        margin: 0;
        padding: 0;
    }

        .sidebar-navigation ul li {
            display: block;
        }

            .sidebar-navigation ul li a {
                position: relative;
                display: block;
                font-size: 1em;
                font-weight: 400;
                padding: 12px 25px;
                text-decoration: none;
                color: var(--black-40);
                letter-spacing: 0.02em;
                -webkit-transition: all 0.3s linear;
                -moz-transition: all 0.3s linear;
                -o-transition: all 0.3s linear;
                transition: all 0.3s linear;
            }

                .sidebar-navigation ul li a.choose-collection {
                    padding: 0px 24px 12px 24px;
                }

                .sidebar-navigation ul li a em {
                    font-size: 24px;
                    position: absolute;
                    right: 20px;
                    top: 50%;
                    transform: translateY(-50%);
                    padding: 5px;
                    border-radius: 50%;
                }

            .sidebar-navigation ul li ul {
                display: none;
            }

ul.subMenuColor1 {
    width: 100%;
    z-index: 5;
    position: absolute;
    max-height: 400px;
    overflow: auto;
    box-shadow: 1px 1px 5px rgba(0,0,0,0.3);
}

    ul.subMenuColor1 li a {
        text-decoration: underline;
    }

ul.subMenuColor2 li a {
    text-decoration: none
}

.sidebar-navigation ul li ul.open {
    display: block;
}

.sidebar-navigation ul li ul li a {
    color: var(--black-100);
    font-weight: 400;
    font-size: 14px;
}

.sidebar-navigation ul li ul li:hover > a, .sidebar-navigation ul li ul li.selected > a {
    background-color: var(--white-gray-60);
}

.sidebar-navigation ul li ul li.selected.selected--last > a {
    background-color: #94aab0;
    color: #fff;
}

    .sidebar-navigation ul li ul li.selected.selected--last > a:before {
        background-color: #fff;
    }

.subMenuColor1 {
    background-color: #fbfcfc;
}

.subMenuColor2 {
    background-color: #fff;
}

.sidebar-navigation span {
    position: absolute;
    right: 1rem;
}

.btn-close:focus {
    box-shadow: none;
}
/*********** Custom Select ************/



/************ Product card normal size login user *****************/
.single-colorway .card-body h4 {
    font-size: 1.125rem;
    font-weight: 400;
    margin: 0;
}

    .single-colorway .card-body h4 span {
        color: var(--black-40);
        font-size: .75rem;
    }


a.card-link {
    padding: .1rem .5rem;
    color: var(--black-100);
}

    a.card-link:hover {
        color: var(--black-100);
    }

button.card-btn {
    width: 22px;
    border: none;
    background: var(--white);
    border: 1px solid var(--black-20);
    display: inline-block;
    text-align: center;
    font-size: 12px;
    height: 22px;
    color: var(--black-100);
}

/*.myCardCount {
    width: 100%;
}
*/
.r-myCardCount {
    width: 40%;
}

.card-count {
    width: 50px;
    border: none;
    background: var(--white);
    border: 1px solid var(--black-20);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    font-size: 12px;
    height: 22px;
}

button.card-btn:hover {
    background: var(--black-100);
    color: var(--white);
}

.card-btn-prev {
    border-radius: 4px 0 0 4px;
}

.card-btn-next {
    border-radius: 0 4px 4px 0;
}

.city-plus {
    display: none;
}

.view-card-details .table > :not(caption) > * > * {
    padding: .3rem 0rem;
}

.view-card-details h2 {
    font-size: 1.75rem;
    font-family: "Open Sans", sans-serif;
    font-weight: 600;
    margin-bottom: 2.5rem;
}

.view-card-details h4 {
    margin-bottom: 2.5rem;
}

.view-card-details h6 {
    font-weight: 700;
}

.view-card-details span {
    color: var(--black-40);
}

.cstm-modal-header {
    border-bottom: 0;
}

.cstm-modal-footer {
    border-top: 0;
}

.cstm-modal-title {
    font-size: 1.5rem;
    font-weight: 700;
}

.product-card img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.big-product img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: contain;
}

.big-product .card-overlay {
    padding: 10px;
}

.card-overlay {
    position: relative;
    border-bottom: 1px solid rgba(0,0,0,.125);
}
/*********** Big product card size normal user *******************/
.big-product {
    width: 85%;
    position: relative;
    /* margin-left: auto; */
}

.big-product-card {
    width: 80%;
}

.product-card:hover .view-details {
    display: block;
}

.card-view-details {
    position: absolute;
    background: #000000bd;
    color: #FFF;
    left: 0;
    top: 43%;
    z-index: 10;
    width: 100%;
    text-align: center;
    padding: 2rem 0;
    display: none;
    cursor: pointer;
    letter-spacing: .5px;
}

.big-product:hover .card-view-details {
    display: block;
}

.btns-group {
    margin-bottom: .313rem;
    display: flex;
    justify-content: end;
}

.r-btns-group {
    display: flex;
    justify-content: center;
}

.card-add-btn {
    width: 100%;
    white-space: nowrap;
    font-size: 11px;
    padding: 5px 0;
}

.product-card-body {
    padding: 1.25rem .625rem;
}

/************ Patterns Page ***************/
#patterns h4 {
    font-weight: 700;
}

.patterns-title {
    margin-bottom: 1.25rem;
}

.patterns-dropdown {
    width: 100%;
}

.pattern-btn {
    width: 70%;
}

.pattern-chev {
    position: absolute;
    right: 13%;
    top: 20%;
}

.filter-border {
    border-bottom: 2px solid var(--black-20);
}

.my-navigation ul li a {
    border: none;
    text-transform: capitalize;
    font-weight: 400;
}

.sidebar-navigation ul li a.choose-collection {
    padding: 0px 24px 12px 24px;
    color: #000;
}

.my-navigation {
    border: none;
}

    .my-navigation ul li:hover > a {
        background-color: transparent;
        color: var(--black-100);
    }

    .my-navigation ul li.selected > a {
        background-color: transparent;
        color: var(--black-100);
    }

.accordion-button:not(.collapsed) {
    color: var(--black-100);
    background-color: transparent;
    box-shadow: none;
}

a.accordion-button {
    padding: 0;
    text-decoration: none;
}

    a.accordion-button:hover {
        color: var(--black-100);
    }

.accor-custom-head:hover {
    box-shadow: none;
}

.cutom-accordion-item {
    border: none;
    border-bottom: 1px solid var(--black-20);
}

    .cutom-accordion-item:last-of-type {
        border-radius: 0;
    }

    .cutom-accordion-item:first-of-type {
        border-radius: 0;
    }

.custom-accordion-body {
    padding: 1rem 0;
}

.skill-level {
    font-size: 22px;
}

.beginner {
    color: #BCD86E;
}

.confident {
    color: #ADDADC;
}

.intermediate {
    color: #F8AB47;
}

.advance {
    color: #EFE21E;
}

.filter-search input {
    width: 100%;
}

.filter-search {
    margin-bottom: 40px;
}
/***************** Customer Profile *******************/
#customer-profile {
    padding-block: 6rem;
    font-size: .875rem;
}

    #customer-profile h2 {
        font-size: 1.75rem;
        font-family: "Open Sans", sans-serif;
        font-weight: 700;
    }

    #customer-profile tbody, td, tfoot, th, thead, tr {
        border: 0;
    }

        #customer-profile tbody tr th {
            width: 25%;
        }
/********** nav tabs *************/
.cust-nav-tabs .nav-pills button.nav-link.active, .nav-pills .show > button.nav-link {
    color: var(--black-100);
    background-color: var(--white-gray-60);
}

.cust-nav-tabs button.nav-link:hover {
    background: var(--white-gray-60);
}

.cust-nav-tabs button.nav-link:focus, button.nav-link:hover {
    color: var(--black-100);
}

.cust-nav-tabs button.nav-link {
    color: var(--black-100);
    text-align: left;
    padding: .75rem 1rem;
}
/********** nav tabs details ***********/

.cust-nav-details .nav-pills button.nav-link.active, .nav-pills .show > button.nav-link {
    color: var(--white);
    background-color: var(--black-100);
    border-radius: 20px;
}

.cust-nav-details button.nav-link:focus, button.nav-link:hover {
    color: var(--black-100);
}

.cust-nav-details button.nav-link {
    color: var(--black-100);
    text-align: left;
    border: 1px solid var(--black-20);
    border-radius: 20px;
    margin-right: .625rem;
}



.address-box ul li {
    list-style: none;
}

.address-box {
    border: 1px solid var(--black-20);
    width: 96%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

    .address-box p {
        background: var(--white-gray-60);
        margin: .313rem 0;
        padding: .313rem .5rem;
        font-size: .75rem;
        font-weight: 700;
    }

    .address-box button {
        color: var(--primary-100);
        font-size: .75rem;
        font-weight: 700;
    }

#customer-profile .form-control, #customer-profile.form-control-lg {
    border-radius: 0;
    font-size: .875rem;
    padding: .75rem .7rem;
}

.editing {
    display: none !important;
}

.table > :not(caption) > * > * {
    padding: .5rem 0;
}

#customer-profile select.form-select {
    color: var(--black-40);
    font-size: 14px;
    border-radius: 0;
    padding: .75rem .7rem;
}


/************** Collection page ****************/
.collections h4 {
    font-weight: 700;
    margin-bottom: 40px;
}

.collection-product {
    width: 90%;
    height: 100%;
}

small.store-date {
    position: absolute;
    bottom: 0.75rem;
}

.accordion-button:not(.collapsed)::after {
    filter: invert(0) brightness(0);
}

.selected-filter h6 {
    font-weight: 700;
}

.selected-filter a {
    color: var(--black-100);
}

.collection-close {
    filter: invert(1);
    display: none;
}

.collections .accordion-button::after {
    background-image: url('../../images/expand_more.svg');
}

.collections .accordion-button:not(.collapsed)::after {
    background-image: url('../../images/expand_more.svg');
}

.collections button.accordion-button {
    font-size: 1.125rem;
    font-weight: 700;
    font-family: "Open Sans", sans-serif;
    padding: 0;
}

.accordion-button:focus {
    border: 0;
    box-shadow: none
}

.accordion-button::after {
    flex-shrink: 0;
    width: .75rem;
    height: .75rem;
    background-size: .75rem;
}

.collections .bi::before, [class*=" bi-"]::before, [class^=bi-]::before {
    font-weight: 700 !important;
}

.collections .modal-content {
    height: 100vh;
    border: none;
    border-radius: 0;
}

.collections .modal-dialog {
    margin: 0;
}

.collections .modal {
    padding: 0;
}

.collections .single-card-title {
    margin-bottom: 20px;
}

.prepared-by {
    margin-bottom: 6px;
}

.collections .accor-custom-head {
    padding: 0 0 28px 0;
}

.collections .product-type {
    margin-bottom: 40px;
}

.collections .modal-body {
    background: var(--white);
}

.collections ul.subMenuColor1 li a {
    text-decoration: none;
}

.collections .my-navigation ul li a {
    color: var(--black-100);
}

.collections h4.cstm-modal-title {
    padding: 40px 8px 28px 8px;
    margin-bottom: 0;
}

.btn-close {
    opacity: 1;
}

.prepared-by small:nth-child(2) {
    width: 140px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.collections .card-body {
    padding: 1rem .625rem;
}

.collections h4.cstm-modal-title {
    padding: 40px 0px 28px 0px;
    margin-bottom: 0;
}

#patterns .modal-header {
    width: 90%;
    margin: auto;
    padding: 1rem 0;
    border-bottom: 2px solid var(--black-20);
}

.collections {
    padding-bottom: 4rem;
}

.selected-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 0;
}

    .selected-filter span {
        margin-right: 10px;
    }
/********** Order History Page **************/
#myTable4_wrapper thead tr {
    border-bottom: 1px solid var(--black-20);
}

    #myTable4_wrapper thead tr th {
        font-weight: 400;
        text-align: center;
        padding-right: 0;
        color: var(--black-60);
        padding: .75rem .5rem;
        white-space: nowrap;
    }

table thead tr th:hover {
    outline: 0 !important;
}

#myTable4_wrapper tbody tr {
    border-bottom: 1px solid var(--black-20);
}

    #myTable4_wrapper tbody tr:nth-last-child(1) {
        border: 0;
    }

    #myTable4_wrapper tbody tr:hover {
        background-color: var(--white-gray-60);
        cursor: pointer;
    }

    #myTable4_wrapper tbody tr td {
        text-align: center;
        font-size: .875rem;
        color: var(--black-100);
        padding: .75rem 0;
    }

#myTable4_wrapper span.dt-column-order {
    display: none;
}

.order-history .dt-layout-table {
    border-bottom: 0;
    border: 1px solid var(--black-20);
    margin: 0;
}

.order-history .order-history-table {
    border: 1px solid var(--black-20);
    border-top: 0;
    padding: 1.5rem 0;
    margin: 0;
}

#myTable4_wrapper .dt-search input#dt-search-0 {
    width: 100%;
    padding: .45rem 2rem .45rem .45rem;
}

#myTable4_wrapper .dt-search {
    width: 100%;
}

    #myTable4_wrapper .dt-search input {
        margin-left: 0;
    }

#myTable4_wrapper > div {
    margin-bottom: 30px;
}
/************* Shopping Cart *******************/
#shopping-cart {
    padding-block: 6rem;
}

#shopping-data thead tr th a, #shopping-data thead tr th a:hover {
    color: var(--black-100);
    cursor: pointer;
}

#shopping-data thead tr {
    border-bottom: 1px solid var(--black-20);
}

#shopping-data tbody tr {
    border-bottom: 1px solid var(--black-20);
}

.shopping-cart-data {
    border: 1px solid var(--black-20);
    padding: 1rem;
}

ul.shopping-product-details {
    padding: 0;
    margin: 0;
    font-size: 12px;
}

    ul.shopping-product-details li {
        list-style: none;
    }

#shopping-data {
    font-size: 14px;
}

    #shopping-data h4 {
        font-size: 15px;
    }

h4.shopping-product-amount {
    color: var(--black-100);
}

    h4.shopping-product-amount span {
        font-size: 10px;
        color: var(--black-60);
        display: block;
    }

#shopping-data thead tr th {
    text-align: center;
    color: var(--black-60);
    font-weight: 500;
}

    #shopping-data thead tr th:last-child {
        color: var(--black-100);
        text-decoration: underline;
    }

#shopping-data tbody tr td {
    text-align: center;
}

    #shopping-data tbody tr td:nth-child(2) {
        text-align: left;
        /*        place-items: center;*/
    }

.order-summary {
    padding: 1.5rem 1rem;
    border: 1px solid var(--black-20);
}

    .order-summary h6 {
        border-bottom: 1px solid var(--black-20);
        font-size: 1.125rem;
        padding-bottom: 1rem;
        text-transform: uppercase;
        font-weight: 700;
    }

    .order-summary ul {
        margin: 0;
        padding: 0;
    }

        .order-summary ul li {
            list-style: none;
        }

.amount-price li {
    text-align: end;
}

ul.tax-details-msg li {
    list-style: disc;
    font-size: .75rem;
    color: var(--black-60);
    margin-left: 1rem;
}

.shipping-date h4 {
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
}

.shipping-date {
    margin-bottom: 30px;
}

.shopping-cart-data input[type='date'] {
    border: 0;
}

.collection-amnt-list ul {
    margin: 0;
    padding: 0;
}

    .collection-amnt-list ul li {
        list-style: none;
    }

ul.collection-title li, ul.collection-amount li, ul.collection-dis-free-frieght li {
    font-size: 12px;
}

ul.collection-amount {
    text-align: right;
}

    ul.collection-title li:nth-last-child(1), ul.collection-amount li:nth-last-child(1) {
        font-size: 1rem;
        font-weight: 700;
    }

ul.collection-dis-promo li:nth-child(2) {
    color: var(--discount);
}

.dis-free-frieght {
    text-align: right;
}

ul.collection-dis-free-frieght li:nth-child(2n+0) {
    color: var(--discount);
}

ul.collection-dis-free-frieght li:nth-last-child(2) {
    font-size: 1rem;
    font-weight: 700;
}

.delete-popup button.btn {
    padding: .85rem 3.5rem;
    font-size: 16px;
    font-weight: 600;
}

.delete-popup p {
    font-size: 16px;
}

table tbody tr td span a {
    color: var(--black-40);
}

    table tbody tr td span a:hover {
        color: var(--black-100);
    }


.my-tooltip {
    position: relative;
    display: inline-block;
}

    .my-tooltip .my-tooltiptext {
        visibility: hidden;
        width: 220px;
        background-color: var(--white);
        color: #000;
        text-align: center;
        border-radius: 6px;
        padding: 5px 8px;
        position: absolute;
        z-index: 1;
        top: 28px;
        right: -98px;
        border: 1px solid var(--black-20);
        box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.15);
        font-size: 12px;
        line-height: 15px;
    }

        .my-tooltip .my-tooltiptext::after {
            content: "";
            position: absolute;
            top: -10px;
            left: 50%;
            width: 12px;
            aspect-ratio: 1;
            background-image: url('../../images/Polygon.svg');
            background-repeat: no-repeat;
        }

    .my-tooltip:hover .my-tooltiptext {
        visibility: visible;
    }

.calendar table tbody tr {
    border: 0;
}

.prevMonth, .nextMonth {
    border: none;
    background: none;
}

.instruction {
    color: var(--black-60);
}

.remove-link {
    color: var(--black-100);
}

    .remove-link:hover {
        color: var(--black-100);
    }

.remove-link1 {
    color: var(--black-100);
}

    .remove-link1:hover {
        color: var(--black-100);
    }

.errorPromoInput {
    border-color: var(--error);
}

.btn-gray {
    background: var(--black-20);
    padding: 8px;
    border: 1px solid var(--black-20);
}

.shopping-cart table tbody tr td:first-child div {
    width: 80px;
    height: 80px;
}


    .shopping-cart table tbody tr td:first-child div img {
        width: 100%;
        max-width: 80px;
    }
/************* Shopping Cart End *******************/
.calendar {
    display: none;
    position: absolute;
    border: 1px solid #ccc;
    background: white;
    padding: 10px;
    z-index: 1;
    top: 29px;
    left: 14.5%;
    border-radius: 10px;
    box-shadow: 4px 6px 7px rgba(0, 0, 0, 0.2);
}

    .calendar::before {
        position: absolute;
        content: "";
        margin: -20px 2px;
        background: url('../../images/polygon.svg');
        background-repeat: no-repeat;
        width: 20px;
        aspect-ratio: 1;
    }

    .calendar table {
        border-collapse: collapse;
        width: 100%;
    }

    .calendar th, .calendar td {
        padding: 5px;
        text-align: center;
        cursor: pointer;
    }

.nav-buttons {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

#calendar table tbody tr th button {
    border: none;
    background: transparent;
}

.disabled {
    color: gray;
    pointer-events: none; /* Make the date non-clickable */
}

.today {
    background-color: #3077b1; /* Gold color for highlighting */
    color: var(--white);
    border-radius: 6px;
}


/*.selected {
    background-color: #3077b1;
    color: white;
    border-radius: 6px;
}*/
/***************** Responsive Data Table *********************/
.shopping-cart table span.dt-column-order {
    display: none;
}

.shopping-cart table thead tr th {
    font-weight: 400;
    text-align: center;
    padding-right: 0;
    color: var(--black-60);
    padding: .75rem 1.5rem;
    white-space: nowrap;
}

.shopping-cart {
    padding-block: 6rem;
}

    .shopping-cart table thead tr {
        border-bottom: 1px solid var(--black-20);
    }

    .shopping-cart tbody tr {
        border-bottom: 1px solid var(--black-20);
    }

.shopping-cart-data {
    border: 1px solid var(--black-20);
    padding: 1rem;
}

.shopping-cart ul.shopping-product-details {
    padding: 0;
    margin: 0;
    font-size: 12px;
}

    .shopping-cart ul.shopping-product-details li {
        list-style: none;
        color: var(--black-60);
    }

.shopping-cart {
    font-size: 14px;
}

    .shopping-cart h4 {
        font-size: 15px;
    }

        .shopping-cart h4.shopping-product-amount {
            color: var(--black-100);
        }

            .shopping-cart h4.shopping-product-amount span {
                font-size: 10px;
                color: var(--black-60);
                display: block;
            }

    .shopping-cart table thead tr th {
        text-align: center;
        color: var(--black-60);
        font-weight: 500;
    }

    .shopping-cart table tbody tr td {
        text-align: center;
        vertical-align: middle;
    }

        .shopping-cart table tbody tr td:nth-child(2) {
            text-align: left;
            padding-left: 20px;
        }

.shipping-detail table tbody tr td:nth-child(2) {
    text-align: left;
    place-items: unset;
}

.shopping-cart .order-summary {
    padding: 1.5rem 1rem 0 1rem;
    border: 1px solid var(--black-20);
}

    .shopping-cart .order-summary h6 {
        border-bottom: 1px solid var(--black-20);
        font-size: 1.125rem;
        padding-bottom: 1rem;
        text-transform: uppercase;
        font-weight: 700;
    }

    .shopping-cart .order-summary ul {
        margin: 0;
        padding: 0;
    }

        .shopping-cart .order-summary ul li {
            list-style: none;
        }

.shopping-cart .amount-price li {
    text-align: end;
}

.shopping-cart ul.tax-details-msg li {
    list-style: disc;
    font-size: .75rem;
    color: var(--black-60);
    margin-left: 1rem;
}

.shopping-cart .shipping-date h4 {
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
}

.shopping-cart .shipping-date {
    margin-bottom: 14px;
    position: relative;
}

.shopping-cart .order-summary h6 {
    border-bottom: 1px solid var(--black-20);
    font-size: 1.125rem;
    padding: 1rem 0;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 40px;
}

.order-summary > table {
    margin-bottom: 20px;
}

.optional-order {
    margin: 40px 0;
}

    .optional-order > h4 {
        font-size: 16px;
        font-weight: bold;
        margin-bottom: 20px;
    }

    .optional-order label a {
        color: #9D9C99;
        margin-left: 8px;
        display: inline-block;
    }

.dateInput {
    border: none;
    margin-left: 10px;
    width: 100%;
    outline: 0;
    font-weight: bold;
}

.shippingDate {
    border: none;
    margin-left: 8px;
    width: 100%;
    outline: 0;
    font-weight: bold;
    font-size: 112%;
}

.date-decoration {
    border-bottom: .15em solid var(--black-20);
    padding-bottom: 4px;
    display: flex;
    width: 170px;
}

.checkout-date {
    border-bottom: .15em solid var(--black-20);
    padding-bottom: 4px;
    display: flex;
    width: 165px;
}

.shopping-cart .shopping-cart-data input[type='date'] {
    border: 0;
    border-bottom: 2px solid var(--black-20);
    font-weight: bold;
    position: relative;
    text-align: center;
    padding-left: 1rem;
}

.shopping-cart .shopping-cart-data input[type='text']::-webkit-calendar-picker-indicator {
    background-image: url('../../images/calendar_month.svg');
    background-repeat: no-repeat;
    position: absolute;
    left: 5%;
    top: 5%;
}

.date-pick {
    border-bottom: .15em solid var(--black-20);
    text-align: center;
    padding: 2px 10px;
}

    .date-pick input {
        border: none;
        padding-left: 8px;
        width: 120px;
    }

.shopping-cart .collection-amnt-list ul {
    margin: 0;
    padding: 0;
}

.collection-amnt-list ul li {
    list-style: none;
}

ul.collection-title li, ul.collection-amount li, ul.collection-dis-free-frieght li {
    font-size: 12px;
}

ul.collection-amount {
    text-align: right;
}

    ul.collection-title li:nth-last-child(1), ul.collection-amount li:nth-last-child(1) {
        font-size: 1rem;
        font-weight: 700;
    }

.collection-amnt-list {
    margin: 20px 0 12px 0;
}

ul.collection-dis-promo li:nth-child(2) {
    color: var(--discount);
}

.dis-free-frieght {
    text-align: right;
}

ul.collection-dis-free-frieght li:nth-child(2n+0) {
    color: var(--discount);
}

ul.collection-dis-free-frieght li:nth-last-child(2) {
    font-size: 1rem;
    font-weight: 700;
}

.shopping-cart .warning-btn {
    padding: 8px;
    border: 1px solid var(--primary);
}

.shopping-cart .secondary-btn-sm {
    padding: 8px 10px;
}

.shipping-date input[type='date'] {
    border: 0;
}

/*.responsive-table {
    display: none;
}*/

.responsive-table ul {
    margin: 0;
    padding: 0;
}

.responsive-table .card ul li {
    list-style: none;
    color: var(--black-60);
    font-size: 12px;
}

    .responsive-table .card ul li:nth-last-child(1) {
        margin-top: 4px;
    }

.dark {
    color: var(--black-100);
}

.bold {
    font-weight: bold;
}

.responsive-table .card {
    border: 0;
    border-bottom: 1px solid var(--black-20);
}

    .responsive-table .card img {
        width: 100%;
    }

.responsive-table .card-body {
    padding: .25rem 1rem;
}

.r-table-data {
    transition: all 0.5s ease;
}

.r-table-hide {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
}

.collection-amnt-list button {
    border: 0;
    background: none;
}

button.r-table-arrow {
    margin-top: 20px;
}

.remove-all {
    text-align: right;
    margin-bottom: 20px;
}

    .remove-all a {
        color: var(--black-100);
    }
/************** Checkout *****************/
ul.shipping-details-list li {
    font-size: .875rem;
    font-weight: bold;
}

.shipping-detail table tbody th {
    width: 32%;
    padding: 1rem 0;
}

.shipping-detail table tbody td {
    padding: 1rem 0;
}

table.shipping-inner-detail tbody tr {
    border: none;
}

    table.shipping-inner-detail tbody tr td {
        padding: 4px 0;
        text-align: start;
        word-wrap: break-word;
        word-break: break-all;
    }

    table.shipping-inner-detail tbody tr:nth-last-child(1) {
        font-weight: bold;
    }

/*    table.shipping-inner-detail tbody tr:nth-last-child(2) td {
        color: var(--discount);
    }*/
.discount {
    color: var(--discount);
}

table.shipping-inner-detail tbody tr td:nth-child(2) {
    text-align: right;
}

.shipping-detail tbody tr th {
    vertical-align: top;
}

.shipping-detail input::placeholder {
    font-size: 12px;
}

table.dataTable th.dt-type-numeric, table.dataTable td.dt-type-numeric {
    text-align: center;
}

.default-btn-sm {
    padding-left: 0;
}

.qty-price {
    margin: 22px 0;
}

    .qty-price p {
        font-size: 12px;
        color: var(--black-60);
    }

        .qty-price p span {
            color: var(--black-100);
        }

#address-dropdown ul li a {
    padding: 10px 12px;
    font-size: 12px;
}

#address-dropdown .subMenuColor1 li {
    border-top: 1px solid var(--black-20);
}

    #address-dropdown .subMenuColor1 li a {
        text-decoration: none;
    }

#address-dropdown .subMenuColor2 li {
    padding: 1rem;
}

.drop-btn {
    margin-top: 20px;
}

    .drop-btn button {
        padding: 8px 15px;
    }

#address-dropdown p {
    margin-bottom: 0;
}

.addr-list .form-check {
    border-bottom: 1px solid var(--black-20);
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.addr-list span {
    position: unset;
    display: block;
}

#address-dropdown {
    display: none;
}

.optional-order label a {
    color: #9D9C99;
    margin-left: 8px;
    display: inline-block;
}

#address-dropdown .subMenuColor1 {
    position: relative;
}

#selectedAddressDisplay {
    white-space: nowrap;
    width: 190px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
}

div#address-dropdown > ul > li > a {
    height: 36px;
}

#address-dropdown select {
    font-size: 12px;
    padding: .6rem .75rem;
}
/*********** Order Confirmed Customer ************/
#order-confirmed-customer h6 {
    font-size: 18px;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: .5px;
}

table.biling-shipping-detail tbody tr {
    border: 0;
}

    table.biling-shipping-detail tbody tr td {
        padding: 4px 0;
        text-align: start;
    }

    table.biling-shipping-detail tbody tr td {
        word-wrap: break-word;
        word-break: break-all;
    }
/*********** Shoping Cart Empty State ************/
.shopping-cart-empty h2 {
    margin-bottom: 6rem;
}

.shopping-cart-empty h4 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.empty-cart {
    margin-bottom: 40px;
}

.shopping-cart-empty p {
    margin-bottom: 40px;
}
/**************** About Calendar ***************/

.container-calendar {
    background: #ffffff;
    max-width: 475px;
    margin: 0 auto;
    overflow: auto;
}

    .container-calendar h3 {
        font-family: "Open Sans", sans-serif;
        font-size: 18px;
        font-weight: bold;
    }

.button-container-calendar button {
    cursor: pointer;
    display: inline-block;
    zoom: 1;
    background: var(--white);
    color: var(--black-100);
    border: 1px solid var(--black-20);
    padding: 10px 20px;
}

.table-calendar {
    border-collapse: collapse;
    width: 100%;
}

    .table-calendar th {
        padding: 8px 5px;
        border: 1px solid #e2e2e2;
        text-align: center;
        vertical-align: top;
    }

    .table-calendar td {
        padding: 10px 5px;
        border: 1px solid #e2e2e2;
        text-align: center;
        vertical-align: top;
    }

.date-picker.selected {
    font-weight: bold;
}

    .date-picker.selected span {
        border-bottom: .5px solid var(--black-100);
    }

/* sunday */
.date-picker:nth-child(1) {
    background: var(--primary-100);
    color: var(--white);
}

/* friday */
.date-picker:nth-child(6) {
    background: var(--primary-100);
    color: var(--white);
}

#monthAndYear {
    text-align: center;
    margin-top: 0;
}

.button-container-calendar {
    position: relative;
    margin-bottom: 20px;
    overflow: hidden;
    clear: both;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#previous {
    float: left;
}

#next {
    float: right;
}

.footer-container-calendar {
    margin-top: 1em;
    border-top: 1px solid #dadada;
    padding: 10px 0;
}

    .footer-container-calendar select {
        cursor: pointer;
        display: inline-block;
        zoom: 1;
        background: #ffffff;
        color: #585858;
        border: 1px solid #bfc5c5;
        border-radius: 3px;
        padding: 5px 1em;
    }

.month-events h6 {
    font-size: 22px;
    margin-bottom: 20px;
}

.month-events .card {
    height: auto;
    transition: all .2s ease;
}

.month-events .card-body p {
    color: var(--primary-100);
    font-size: 14px;
    font-weight: bold;
    margin: 0;
}

.month-events .card-body .card-text {
    margin-bottom: 15px;
}

.month-events .card-body .card-title {
    margin-bottom: 53px;
}

.month-events .card:hover {
    border: 1px solid var(--black-60);
}
/**************** About Calendar End ***************/

/******************* Rapid Order ********************/
.sku-number {
    width: 95%;
}

    .sku-number h6 {
        font-size: 18px;
        font-weight: bold;
        margin-bottom: 5px;
    }

    .sku-number p {
        margin: 0;
        color: var(--black-40);
    }

    .sku-number > p {
        margin-bottom: 20px;
    }

.sku-items .row .form-group {
    margin-bottom: 20px;
}

.sku-search {
    position: relative;
}

    .sku-search span {
        position: absolute;
        top: 12px;
        right: 20px;
    }

.sku-items label {
    text-wrap: nowrap;
    color: var(--black-40);
}

.sku-search input {
    padding: 11.5px 15px;
    width: 100%;
    outline: none;
    border: none;
    border: 1px solid var(--black-20);
}

    .sku-search input:focus {
        border: 1px solid var(--black-100);
    }

#rapid-order .shopping-cart-data {
    padding-bottom: 0;
}

.rapid-table tbody tr td:nth-last-child(2) {
    font-weight: bold;
}

#rapid-order .search input {
    margin: 0;
}


#suggestions1 option, #suggestions2 option, #suggestions3 option, #suggestions4 option, #suggestions5 option, #suggestions6 option, #suggestions7 option, #suggestions8 option, #suggestions9 option, #suggestions10 option {
    color: var(--black-100);
}

/******************* Rapid Order End ***************/
/****************** Designers  *********************/
#designer h4 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
}

#designer #pills-tab {
    margin-bottom: 60px;
}

#designer .designer-img {
    margin-bottom: 60px;
}

    #designer .designer-img h6 {
        font-size: 16px;
        font-weight: bold;
    }

    #designer .designer-img img {
        border-radius: 50%;
        margin-bottom: 10px;
        width: 150px;
        aspect-ratio: 1;
    }

#northcott-designer p {
    line-height: 24px;
    margin-bottom: 40px;
}

#designer .filter-border {
    margin: 40px 0 100px 0;
}

.become-designer img {
    margin-bottom: 80px;
}
/********************** Designers end **************/
/********************** fabric individual **************/
#fabreic-designer {
    padding-block: 6rem;
}

.individual-designer small {
    font-size: 14px;
    color: var(--black-100);
    margin-bottom: 5px;
}

.fabreic-designer h4 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 5px;
}

.fabreic-designer a {
    color: var(--black-100);
    font-size: 14px;
    margin-bottom: 40px;
    display: inline-block;
}

.individual-designer p {
    color: var(--black-100);
    font-size: 16px;
}

.individual-designer .filter-border {
    margin: 100px 0 40px 0;
}

#featured-collections h6 {
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 40px;
}

#featured-collections h5.single-card-title {
    margin-bottom: 20px;
    line-height: 21px;
}

.view-all-designers a {
    color: var(--black-60);
    text-decoration: none;
    transition: all .2s ease;
    display: inline-block;
    margin-bottom: 60px;
}

    .view-all-designers a:hover {
        color: var(--black-100);
        text-decoration: underline;
    }

.designer-product {
    width: 95%;
}

.view-all-designers {
    text-align: start;
    padding: 0;
}
/********************** fabric individual end **************/
/********************** pattern individual **************/
#pattern-designer {
    padding-block: 6rem;
}

.individual-pattern small {
    color: var(--black-40);
}

.individual-pattern .card-body {
    padding: 20px 10px;
}

.skill-level {
    font-size: 22px;
    font-weight: bold;
}
/********************** pattern individual end **************/
/**************** become-a-northcott-designer ****************/
.fabreic-design h4, .pattern-design h4 {
    font-weight: bold;
    margin-bottom: 20px;
    font-size: 32px;
}

.pattern-design {
    text-align: right;
}
/**************** become-a-northcott-designer end ****************/
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
    display: none;
}

/**************** Rapid order Look Up Css ****************/
div#suggestions {
    border: 1px solid var(--black-20);
    width: 94%;
    margin: 20px auto;
    padding: 20px;
}

/**************** Pattern individual ****************/
#pattern-individual {
    padding-block: 6rem;
}

#individual-pattern-breadcrumb {
    margin-bottom: 60px;
}

.individual-pattern-content h4 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 5px;
}

.individual-pattern-content h6 {
    font-size: 16px;
    font-weight: bold;
}

    .individual-pattern-content h6 a, .individual-pattern-content p a {
        color: var(--black-100);
    }

.individual-pattern-content p {
    font-size: 16px;
    font-weight: 400;
}

.individual-pattern-content div {
    margin-bottom: 40px;
}

.pattern-requirement ul {
    list-style: none;
    padding: 0;
    font-size: 16px;
}

    .pattern-requirement ul li {
        line-height: 24px;
    }

.individual-pattern-image > img {
    margin-bottom: 30px;
    width: 512px;
    aspect-ratio: 1;
}

#patternPopup img {
    width: 550px;
    aspect-ratio: 1;
}

.pattern-skill span:first-child {
    font-size: 22px;
}

.pattern-skill span:last-child {
    font-weight: 400;
}

.individual-pattern-image {
    position: relative;
}

    .individual-pattern-image span {
        background: var(--white);
        position: absolute;
        bottom: 8%;
        right: 6%;
        height: 40px;
        width: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
        cursor: pointer;
    }

.individual-pattern {
    width: 90%;
}
/**************** Pattern individual end ****************/

/**************** Lookbook ****************/
#lookbook h4.bold {
    margin-bottom: 100px;
    font-size: 32px;
}

#lookbooks .filter-border {
    margin-block: 100px;
}

.lookbook-details {
    text-align: center;
}

    .lookbook-details h4 {
        margin-bottom: 5px;
        font-weight: bold;
        font-size: 32px;
    }

    .lookbook-details p {
        margin-bottom: 40px;
        font-size: 16px;
    }

#lookbooks .issuu-branding {
    display: none;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
    display: none;
}

/**************** Lookbook end ****************/

/**************** Resources  *****************/
#featured-content .card:hover {
    border: 1px solid var(--black-100);
}

#resources h4 {
    font-weight: bold;
    font-size: 32px;
}

#featured-content .card {
    height: auto;
}

.featured-content h4 {
    margin-bottom: 100px;
}

h4.browse {
    margin-bottom: 40px;
}

#featured-content .card {
    margin-bottom: 100px;
}

#featured-content h5.card-title {
    margin-bottom: 71px;
}

.resources-individual img {
    margin-top: 40px;
}

.download-btn {
    margin-top: 30px;
}

    .download-btn button {
        font-size: 14px;
    }

.cqwNED {
    display: none;
}

a.view-details {
    text-decoration: none;
}

    a.view-details:hover {
        color: var(--white);
    }
/**************** Resources end *****************/

/*************** Combine checkout page ********************/
#address-dropdown ul li a {
    padding: 10px 12px;
    font-size: 12px;
}

#address-dropdown .subMenuColor1 li {
    border-top: 1px solid var(--black-20);
}

    #address-dropdown .subMenuColor1 li a {
        text-decoration: none;
    }

#address-dropdown .subMenuColor2 li {
    padding: 1rem;
}

.drop-btn {
    margin-top: 20px;
}

    .drop-btn button {
        padding: 8px 15px;
    }

#address-dropdown p {
    margin-bottom: 0;
}

.addr-list .form-check {
    border-bottom: 1px solid var(--black-20);
    padding-bottom: 10px;
    margin-bottom: 20px;
}

#address-dropdown {
    display: none;
}

.optional-order label a {
    color: #9D9C99;
    margin-left: 8px;
    display: inline-block;
}



.my-tooltip {
    position: relative;
    display: inline-block;
}

    .my-tooltip .my-tooltiptext {
        visibility: hidden;
        width: 220px;
        background-color: var(--white);
        color: #000;
        text-align: center;
        border-radius: 6px;
        padding: 5px 8px;
        position: absolute;
        z-index: 1;
        top: 28px;
        right: -98px;
        border: 1px solid var(--black-20);
        box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.15);
        font-size: 12px;
        line-height: 15px;
    }

        .my-tooltip .my-tooltiptext::after {
            content: "";
            position: absolute;
            top: -10px;
            left: 50%;
            width: 12px;
            aspect-ratio: 1;
            background-image: url('../../images/Polygon.svg');
            background-repeat: no-repeat;
        }

    .my-tooltip:hover .my-tooltiptext {
        visibility: visible;
    }

.addr-list span {
    position: unset;
    display: block;
}
/************** Product Finder ************/
#product-finder #christmas-night small {
    font-size: 16px;
    color: var(--black-60);
}

div#product-finder #christmas-night h4 {
    font-size: 18px;
    font-weight: 700;
}

#product-finder table tbody tr td:first-child {
    text-align: left;
    padding: 0 20px;
    text-wrap: nowrap;
    vertical-align: middle;
}

    #product-finder table tbody tr td:first-child img:first-child {
        margin-right: 20px;
    }

.language-icon {
    margin-left: 20px;
}

.store-Icon {
    margin-left: 10px;
}

.responsive-t {
    overflow: auto;
    height: 600px;
}

#product-finder table {
    border: 1px solid var(--black-20);
}

    #product-finder table thead th, #product-finder table tbody tr td {
        border: 1px solid var(--black-20);
    }

    #product-finder table tbody tr td {
        text-align: center;
    }

    #product-finder table thead {
        background: var(--white);
        position: sticky;
        top: 0px;
        border: 1px solid var(--black-20);
    }

#product-finder .sidebar-navigation ul li a.choose-collection {
    color: var(--black-100)
}

.state-province > .row {
    margin-bottom: 40px;
}
/* width */
.responsive-t::-webkit-scrollbar {
    width: 6px;
}

/* Track */
.responsive-t::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
.responsive-t::-webkit-scrollbar-thumb {
    background: var(--black-20);
    border-radius: 10px;
}

#product-finder table tbody tr td a, #productModal a {
    text-decoration: none;
    color: var(--black-100);
}

#productModal h4 {
    font-size: 18px;
    font-weight: bold;
}

#product-finder table thead tr th img {
    margin-bottom: 10px;
}
/************** Product Finder end************/

/************** Product finder print ************/
.product-finder-card {
    border: 1px solid var(--black-20);
    width: 70%;
    padding: 20px;
    border-radius: 5px;
}

    .product-finder-card img {
        width: 80px;
        aspect-ratio: 1;
    }

.product-finder-body img {
    width: 60px;
    aspect-ratio: 1;
}

.product-finder-card h4 {
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: bold;
}

.product-finder-card p {
    font-size: 16px;
    margin: 0 0 5px 10px;
}

#product-finder-print .page-btn {
    margin-right: 10px;
}

.product-finder-head p {
    margin-bottom: 0;
}

/*.product-finder-head {
    padding: 0px 12px;
}*/

.product-finder-head .col-border {
    border: 1px solid var(--black-20);
    padding: 5px 8px;
    background: var(--white-gray-40);
    font-size: 12px;
}

    .product-finder-head .col-border h4 {
        font-weight: bold;
        margin-bottom: 4px;
    }

    .product-finder-head .col-border p {
        margin-bottom: 4px;
        word-wrap: break-word;
    }

.product-finder-body {
    border: 1px solid var(--black-20);
    padding: 5px 8px;
    border-top: 0;
}

    .product-finder-body .col-6 {
        margin-bottom: 20px;
    }

    .product-finder-body > h4 {
        font-weight: bold;
        margin: 20px 0;
    }

.product-finder-details {
    margin-bottom: 40px;
}

#product-finder-print #christmas-night {
    padding-block: 0;
}

.border-style {
    text-decoration: underline;
}

    .border-style:hover {
        color: var(--primary-100);
        cursor: pointer;
    }
/************** Product finder print end ************/

/*************** Terms and condition******************/
.brands-logo {
    margin-bottom: 60px;
}

    .brands-logo img {
        margin-bottom: 40px;
    }

    .brands-logo p {
        font-size: 14px;
        color: var(--black-60);
    }

.terms-conditions-text {
    margin-bottom: 30px;
}

    .terms-conditions-text h6 {
        margin-bottom: 20px;
    }

    .terms-conditions-text p {
        margin-bottom: 30px;
        font-size: 16px;
    }
/******************* dashboard modal-style **********************/
.myModal {
    padding: 35px 40px;
    border: 1px solid var(--black-20);
    margin: 40px;
}

.modal-style p {
    font-size: 10px;
    color: var(--black-60);
}

.invoice-text h4 {
    margin-bottom: 5px;
}

.invoice-text p {
    margin-bottom: 0;
}

.billing-shipping p {
    margin-bottom: 0;
    font-size: 12px;
}

.billing-shipping ul {
    list-style: none;
    font-size: 12px;
}

    .billing-shipping ul li span {
        display: inline-block;
        width: 65%;
    }

.customer-tabd {
    margin: 30px 0;
}

    .customer-tabd table thead tr th {
        border-bottom: 1px solid var(--black-20) !important;
    }

.product-tabd table tbody tr td:last-child h4 {
    font-weight: bold;
}

#myModal .shopping-cart {
    padding-block: 0rem;
}

table.subTotal-amnt tbody tr td {
    padding: .25rem 0;
}

    table.subTotal-amnt tbody tr td:first-child {
        text-align: start;
        font-weight: bold;
    }

    table.subTotal-amnt tbody tr td:last-child, table.subTotal-amnt tfoot tr th:last-child {
        text-align: right;
    }

table.subTotal-amnt tbody tr {
    border: 0;
}

    table.subTotal-amnt tbody tr:last-child td {
        padding-bottom: 10px;
    }

table.subTotal-amnt tfoot tr {
    border-top: 1px solid var(--black-20);
}

    table.subTotal-amnt tfoot tr th {
        padding-top: 10px;
    }

.cal-amnt {
    margin-top: 20px;
}

    .cal-amnt ul {
        list-style: none;
    }

        .cal-amnt ul li {
            margin-bottom: 20px;
        }

.product-tabd .shopping-cart-data {
    padding-top: 0;
}
/*.long-card-panel .long-panel {
    width: 90%;
}*/
.long-card-panel .long-panel img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

#big-product-login .card, #product .card {
    height: unset;
}
/*#product .long-card-panel .long-panel {
    width: 100%;
}*/
/*#product .product-card {
    width: 90%;
}*/


/************ Wholesale contacts ********************/
#wholesale-contacts h4 {
    margin-bottom: 100px;
    font-size: 32px;
}

.northcott-distributor h6, .distributor-table h6 {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: bold;
}

.northcott-distributor p {
    margin-bottom: 40px;
}

.tab-border {
    border: 1px solid var(--black-20);
    padding: 20px;
    height: 400px;
}

    .tab-border h6 {
        border-bottom: 1px solid var(--black-20);
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

    .tab-border ul li {
        padding: 10px 0;
    }

.distributor-table ul li:hover {
    background: var(--white-gray-60);
}

#wholesale-states {
    overflow: auto;
    height: 300px;
}

.country-states {
    display: none;
}

#retailer-details p {
    margin: 0;
}

    #retailer-details p:first-child {
        font-weight: bold;
    }

.retailer-details {
    display: none;
}
/************ Wholesale contacts end ********************/

/*  .carousel-item {
    height: 76vh;
}*/
. /*carousel-item img {
        height: 100%;
        object-fit: fill;
}*/
.whats-new-card img {
    aspect-ratio: 5/4;
}

.whats-new-banner img {
    width: 100%;
    aspect-ratio: 16/5;
    object-fit: cover;
}

#designers {
    background: var(--white-gray-60);
    margin-block: 6rem;
    padding-block: 6rem;
}

#resources, #socila-slider {
    margin-block: 6rem;
}

.individual-designer > img {
    object-fit: cover;
    width: 500px;
    aspect-ratio: 1;
}
/*updated css end*/


/******************* dashboard modal-style **********************/
.myModal {
    padding: 35px 40px;
    border: 1px solid var(--black-20);
    margin: 40px;
}

.modal-style p {
    font-size: 10px;
    color: var(--black-60);
}

.invoice-text h4 {
    margin-bottom: 5px;
}

.invoice-text p {
    margin-bottom: 0;
}

.billing-shipping p {
    margin-bottom: 0;
    font-size: 12px;
}

.billing-shipping ul {
    list-style: none;
    font-size: 12px;
}

    .billing-shipping ul li span {
        display: inline-block;
        width: 65%;
    }

.customer-tabd {
    margin: 30px 0;
}

    .customer-tabd table thead tr th {
        border-bottom: 1px solid var(--black-20) !important;
    }

.product-tabd table tbody tr td:last-child h4 {
    font-weight: bold;
}

.product-tabd {
    padding: 0;
}

table.subTotal-amnt tbody tr td {
    padding: .25rem 0;
}

    table.subTotal-amnt tbody tr td:first-child {
        text-align: start;
        font-weight: bold;
    }

    table.subTotal-amnt tbody tr td:last-child, table.subTotal-amnt tfoot tr th:last-child {
        text-align: right;
    }

table.subTotal-amnt tbody tr {
    border: 0;
}

    table.subTotal-amnt tbody tr:last-child td {
        padding-bottom: 10px;
    }

table.subTotal-amnt tfoot tr {
    border-top: 1px solid var(--black-20);
}

    table.subTotal-amnt tfoot tr th {
        padding-top: 10px;
    }

.cal-amnt {
    margin-top: 20px;
}

    .cal-amnt ul {
        list-style: none;
    }

        .cal-amnt ul li {
            margin-bottom: 20px;
        }

.customer-tabd table thead tr th, .customer-tabd table tbody tr td {
    text-wrap: nowrap;
    padding-right: 18px;
    text-align: center;
    font-size: 12px;
}

#dashboard-table .table > :not(:last-child) > :last-child > * {
    border-bottom-color: var(--black-20);
}

#myTable1 tbody tr:hover td, #myTable2 tbody tr:hover td, #myTable3 tbody tr:hover td {
    background: var(--white-gray-60);
}

#myTable1 thead tr th, #myTable2 thead tr th, #myTable3 thead tr th {
    border-bottom: 1px solid var(--black-20);
}

.delivery-dateTab table tbody tr td {
    vertical-align: top;
    font-size: 12px;
}

    .delivery-dateTab table tbody tr td:first-child {
        text-wrap: nowrap;
        padding-right: 10px;
        font-weight: bold;
    }

.order-list-details {
    list-style: none;
}

    .order-list-details li {
        margin-bottom: 10px;
    }

        .order-list-details li a {
            background: var(--white-gray-60);
            padding: 4px 6px;
            color: var(--black-100);
            text-decoration: none;
        }

            .order-list-details li a:hover {
                color: var(--black-100);
            }

.subTotal-amnt tfoot tr th {
    font-size: 16px;
}


#designers a {
    word-wrap: break-word;
    word-break: break-all;
    color: var(--black-100);
}

a {
    color: var(--black-60);
}

    a:hover {
        color: var(--black-100);
    }
/*************** Select 2 *********************/

select.select2 {
    width: 100%;
}

.select2-container--default .select2-selection--single {
    border: 1px solid #ced4da !important;
    border-radius: 0 !important;
    padding: 10px !important;
}

.select2-container .select2-selection--single {
    height: unset !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: var(--black-40);
}

select#Region {
    font-size: 15.2px;
    padding: 12px 20px;
}

span.select2.select2-container.select2-container--default {
    width: 100% !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-style: solid !important;
    border-width: 2px 2px 0 0 !important;
    content: '';
    display: inline-block;
    height: .5em !important;
    left: 8% !important;
    position: relative !important;
    top: 80% !important;
    transform: rotate(135deg);
    vertical-align: top;
    width: .5em !important;
    border-color: #343a40 !important;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-style: solid !important;
    border-width: 2px 2px 0 0 !important;
    content: '';
    display: inline-block;
    height: .5em !important;
    left: 8% !important;
    position: relative !important;
    top: 80% !important;
    transform: rotate(135deg);
    vertical-align: top;
    width: 0.5em !important;
    border-color: #343a40 !important;
}

.primary-menu-panel ul li p {
    color: var(--white);
}

#navbarNavDropdown {
    position: sticky;
    top: 0;
    background: var(--white);
    z-index: 10;
}

#product-finder table thead th img {
    width: 40px;
}

div#designerName a {
    color: var(--black-60);
}


table thead tr th a, table thead tr th a:hover {
    color: var(--black-100);
    cursor: pointer;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/******************* Videos ***********************/
.video-border {
    border-bottom: 2px solid var(--black-20);
    margin: 6rem 0;
}
/**************** Search Result *******************/
.search-results {
    position: absolute;
    background: var(--white);
    border: 1px solid var(--black-20);
    border-top: none;
    z-index: 1050;
    display: none;
    max-height: 300px;
    overflow-y: auto;
    text-align: left;
    scrollbar-width: none;
    right: 12px;
    width: 220px;
}

    .search-results a {
        display: block;
        padding: 8px 12px;
        text-decoration: none;
        color: #333;
    }

        .search-results a:hover {
            background: #f8f9fa;
        }

.search-section h6 {
    border-bottom: 1px solid var(--black-20);
    padding: 10px;
}

.search-section a > div {
    padding: 3px;
}

.search > input {
    width: 220px;
}

a.mob-bag {
    position: relative;
}

p#collectionCount {
    margin-bottom: 46px;
}

body {
    color: var(--black-100);
    font-size: .95rem;
}

@media print {
    .page-break {
        page-break-after: always;
    }
}

.success {
    color: #5DBD36;
}

/*************** Eyeall icon *************/
.myInput {
    position: relative;
}

.field-icon {
    float: right;
    margin-right: 14px;
    margin-top: -38px;
    position: relative;
    z-index: 2;
    color: var(--black-40);
    font-size: 20px;
    background: var(--white);
    padding-left: 10px;
}

    .field-icon .bi::before, [class*=" bi-"]::before, [class^=bi-]::before {
        font-weight: 500 !important;
    }



/*Code for Product Finder DropDown*/
.no-results, .no-states {
    color: #666;
    padding: 16px 0 34px 0;
    font-family: "Open Sans", sans-serif;
}

    .no-results span, .no-states span {
        pointer-events: none;
        text-align: center;
        padding-right: 85px;
    }


.storeInfoModal {
    cursor: pointer;
}


.carousel {
    width: 100%;
    overflow: hidden;
}

.carousel-inner, .carousel-item {
    width: 100%;
}


    .carousel-inner img {
        width: 100%;
        height: auto;
        object-fit: cover;
        object-position: top;
    }

.shopping-cart table tbody tr td:first-child div.img-wrapper {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

    .shopping-cart table tbody tr td:first-child div.img-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        display: block;
    }
