/* -------------------- Global Start -------------------- */

:root {
    --color-white: #fff;
    --color-black: #000;
    --color-heading: #111827;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-heading);
}

h1 {
    font-size: 36px;
}

p {
    font-size: 16px;
    font-weight: 400;
    color: #88888c;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
}

.text-center {
    text-align: center;
}

.kd-button {
    font-weight: 500;
    font-size: 17px;
    display: inline-block;
    text-align: center;
    border-radius: 100px;
    text-decoration: none;
}

.sm-btn {
    min-width: 112px;
    height: 36px;
    line-height: 36px;
}

.md-btn {
    min-width: 144px;
    height: 48px;
    line-height: 48px;
}

.bg-white {
    background-color: var(--color-white);
}

.text-white {
    color: var(--color-white);
}

.bg-primary {
    background-color: #252526;
}

.text-primary {
    color: #252526;
}

input:focus,
[href]:focus,
select:focus,
button:focus,
input:focus+label,
textarea:focus {
    outline: unset !important;
    outline-offset: unset !important;
}

.kd-edit-btn img{
    height: 25px;
}

.slick-prev {
    left: 20px;
}

.slick-next {
    right: 20px;
}

.slick-dots li {
    width: 1.28571rem;
}

.slick-dots li button,
.slick-dots li button::before {
    height: 0.5rem;
    width: 0.5rem;
}

.slick-dots li.slick-active button::before {
    height: 0.5rem;
    width: 0.5rem;
    background-color: #000;
}

.kd-accordion {
    cursor: pointer;
    border: none;
    transition: 0.4s;
    position: relative;
    display: flex;
    align-items: center;
}

.kd-accordion.active,
.kd-accordion:hover {
    /* background-color: #ccc; */
}

.kd-accordion:after {
    position: absolute;
    height: 1rem;
    width: 1rem;
    content: '';
    background-image: url('kd-imgs/arrow-down.svg');
    background-size: 1rem;
    right: 0;
    transition: 0.2s transform;
}

.kd-accordion.active:after {
    transform: rotate(-180deg);
    transition: 0.2s transform;
}

.kd-panel {
    /* padding: 0 18px; */
    /* max-height: 0; */
    overflow: hidden;
    /* transition: max-height 0.2s ease-out; */
    display: none;
}

/* Kd-Tabs  */

/* Tabs */
.kd-tabs {
    /* width: 600px; */
    /* background-color: #09F; */
    border-radius: 5px 5px 5px 5px;
}

ul#kd-tabs-nav {
    list-style: none;
    margin: 0;
    overflow: auto;
    display: flex;
    text-align: center;
}

ul#kd-tabs-nav li {
    font-weight: bold;
    padding: 8px 10px;
    cursor: pointer;
    width: 50%;
    text-transform: uppercase;
    border-bottom: 3px solid #eee;
    transition: all .3s ease-out 0s;
}


ul#kd-tabs-nav li.active {
    border-color: #000;
}

#kd-tabs-nav li a {
    text-decoration: none;
    color: #000000;
}

.kd-tab-content {
    /* padding: 10px; */
    /* border: 5px solid #09F; */
    /* background-color: #FFF; */
}

/* Kd-Tabs  */

/* Kd modal  */

.kd-modal {
    display: none;
    position: fixed;
    top: 10px;
    left: 0;
    right: 0;
    max-width: 300px;
    margin: 0 auto;
    padding: 30px;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    z-index: 99999999;
}

.kd-modal-close-btn {
    position: absolute;
    right: 30px;
    top: 20px;
    font-size: 20px;
}

.kd-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 99999;
}

body.kd-modal-open {
    overflow: hidden;
}

/* Kd modal  */

.account-wrapper,
.header-cart-wrapper {
    position: fixed;
    top: 0;
    right: 0;
    width: 400px;
    height: 100%;
    z-index: 999;
    background-color: white;
    transform: translateX(100%);
    transition: transform 0.2s;
}

.account-wrapper.active,
.header-cart-wrapper.active {
    transform: translateX(0%);
    transition: transform 0.2s;
}

.account-wrapper .account-wrapper-close,
.header-cart-wrapper .cart-wrapper-close {
    position: absolute;
    top: 20px;
    right: 35px;
}

.account-wrapper ul#kd-tabs-nav li {
    padding: 30px 0 10px;
}

.account-wrapper #kd-tabs-nav li a {
    font-size: 18px;
    font-weight: 600;
    color: #999;
}

.account-wrapper .account-inner {
    padding: 0 44.5px 0 25px;
    height: 100%;
    overflow-y: auto;
}

.account-wrapper form {
    margin: 1.5rem 0 0;
    border-bottom: 3px solid #eee;
    padding-bottom: 5rem;
}

.account-wrapper :is(input, select) {
    display: block;
    width: 100%;
    border: unset;
    outline: none;
    border-bottom: 1px solid #eee;
    background: transparent;
    color: #333;
    font-size: 16px;
    height: 40px;
    font-weight: 300;
    margin-bottom: 24px;
}

.account-wrapper .forgot-password {
    margin-bottom: 20px;
    display: block;
    width: 100%;
    text-align: right;
    font-size: 12px;
    color: #333;
    text-decoration: underline;
    padding: 0;
    border: none;
    cursor: pointer;
}

.account-wrapper button {
    display: block;
    width: 100%;
    height: 36px;
    width: 100%;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 700;
    border: 0;
    line-height: 36px;
    background: #333;
    color: #fff;
    margin: 0.5rem 0;
    cursor: pointer;
}

.account-wrapper button:hover {
    background-color: #111;
    border-color: #111;
}

.account-wrapper .account-bottom {
    margin-top: 45px;
}

.account-wrapper .account-bottom h3 {
    color: #333;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 14px;
    line-height: 24px;
}

.account-wrapper .account-benefits {
    padding: 0;
    margin: 0;
    list-style: none;
}

.account-wrapper .account-benefits li {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 5px;
    margin-bottom: 8px;
}

.account-wrapper .account-benefits li span {
    font-size: 14px;
    color: #707070;
    font-weight: 400;
    line-height: 1.4;
}

.account-wrapper .account-benefits li:first-child span {
    font-weight: 700;
    color: #333;
}

.account-wrapper :is(input[type="radio"], input[type="checkbox"]) {
    width: auto;
    display: unset;
    margin: 0;
    width: 14px;
    height: 14px;
}

.account-wrapper .form-group {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 24px;
}

.account-wrapper #register form {
    padding-bottom: 0;
    border: unset;
}

.account-wrapper .form-group.dateofbirth {
    gap: 20px;
}

.account-wrapper .form-group.dateofbirth :is(select, input) {
    background-color: #fff;
    border: 1px solid #e1e1e1;
    font-size: 14px;
    border-radius: 4px;
    color: #252526;
    font-weight: 400;
    padding: 0 10px;
    margin: 0;
}

.account-wrapper .form-group.dateofbirth input {
    width: 40% !important;
}

.account-wrapper .form-group label {
    font-size: 14px;
    padding: 0 8px;
}

.header {
    padding: 15px 0 0;
}

.header .navUser {
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
}

.header .navPages-list .navPages-action {
    padding: 11px 16px;
}

.header .navPages-list .navPages-item {
    position: relative;
}

.header .navPages-list .navPages-action:before {
    content: "";
    height: 2px;
    width: 0;
    background-color: #000;
    position: absolute;
    bottom: 0;
    left: 0;
    -webkit-transition: width .3s;
}

.header .navPages-list .navPages-action:hover:before {
    width: 100%;
    -webkit-transition: width .3s;
}

.header .header-logo-image-container {
    min-height: unset;
}

.header .mobileMenu-toggle {
    top: 0;
}

.header :is(.navUser-item-cartLabel, .navUser-item--cart__hidden-s) {
    display: block;
}

#quickSearch {
    display: block;
    position: fixed;
    top: 0 !important;
    right: 0;
    z-index: 99;
    transform: translateY(-100%);
    transition: 0.2s transform;
    padding: 0.5rem;
    background: hsla(0, 0%, 100%, .92);
    backdrop-filter: blur(20px);
    height: 500px;
}

#quickSearch.is-open {
    transform: translateY(0%);
    transition: 0.2s transform;
}

#quickSearch .quickSearchResults {
    height: 400px;
    overflow-y: auto;
}

#quickSearch .header-search-wrapper {
    width: 100%;
    max-width: 850px;
    padding: 0;
}

#quickSearch .header-search-wrapper .form-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

#quickSearch .form {
    width: 100%;
    max-width: unset;
    margin: 0;
}

#quickSearch .modal-close {
    position: unset;
}

#quickSearch .quick-search-wrapper {
    display: grid;
    grid-template-columns: 0.25fr 1fr;
    margin-top: 15px;

}

.quickSearchResults .modal-close {
    display: none;
}

#quickSearch .productGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 0;
}

#quickSearch .productGrid:before,
#quickSearch .productGrid:after {
    content: unset;
}

#quickSearch .productGrid .product {
    padding: 0;
    width: 100%;
}

#quickSearch .card {
    display: grid;
    grid-template-columns: 0.25fr 1fr;
    border: unset;
}

#quickSearch .card .card-figure {
    display: flex;
    justify-content: center;
    align-items: center;
}

#quickSearch .card-figure__link {
    position: unset;
}

#quickSearch .card .card-image {
    object-fit: contain;
}

#quickSearch .card .card-img-container::after {
    padding-bottom: 50%;
}

#quickSearch .card .card-figure .badges {
    display: none;
}

#quickSearch .card .card-body {
    background-color: transparent;
}

#quickSearch .form-field {
    display: flex;
    align-items: center;
    background-color: #f0f0f2;
    border-radius: 8px;
    padding: 0 15px;
}

#quickSearch .form-field input {
    background-color: #f0f0f2;
    border: unset;
    font-weight: 300;
    font-size: 18px;
}

.navUser-item--cart .dropdown-menu.is-open {
    margin-top: 50px;
    border: unset;
    max-width: 100%;
    /* width: 400px; */

}

.navUser-item--cart .dropdown-menu.is-open::before {
    content: unset;
}

.navUser-item--cart .previewCart-emptyBody {
    font-size: 24px;
    font-weight: 700;
}

main.body .kd-container {
    padding: 0;
    max-width: unset;
    margin: 0;
}

.newsletter-section {
    background: url('kd-imgs/footer-banner.jpg');
    background-size: cover;
    background-position: top;
    position: relative;
    background-repeat: no-repeat;
    padding-top: 38px;
}

.newsletter-section .newsletter-inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 3rem 10px;
}

.newsletter-section .newsletter-desc {
    margin: 40px 0 1rem;
    font-size: 18px;
    font-weight: 800;
    color: #000;
    text-align: center;
}

.newsletter-section .newsletter-span {
    color: #f01e00;
}

.newsletter-section :is(.footer-info-heading, .footer-desc) {
    display: none;
}

.newsletter-section .form-field {
    display: flex;
    justify-content: center;
    margin: 0;
}

.newsletter-section .form-prefixPostfix {
    width: 55%;
}

.newsletter-section .button {
    margin-left: -15px;
    background-color: #f01e00;
    border: 2px solid #f01e00;
    border-radius: 8px;
}

.newsletter-section .form-input {
    border: 2px solid #f01e00;
    border-radius: 8px;
}

.footer {
    background: #f5f5f7;
    padding: 50px 0 20px;
}

.footer .footer-wrapper {
    max-width: 1000px;
    padding: 0;
    margin: 0 auto;
}

.footer .footer-info {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

.footer .footer-info .footer-info-col--small {
    width: 100%;
}

.footer .footer-info:before,
.footer .footer-info:after {
    content: unset;
}

.footer .footer-info-heading {
    color: #252526;
    margin: 12px 0;
}

.footer .kd-find-us li {
    margin-bottom: 12px;
}

.footer .footer-copyright-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer .footer-copyright {
    display: flex;
    gap: 10px;
}

.footer .footer-copyright :is(a, p) {
    font-size: 12px;
    color: #89898C;
}

/* -------------------- Global End -------------------- */


/* -------------------- Home Start -------------------- */

.heroCarousel-slide .heroCarousel-image {
    object-fit: unset;
}

.heroCarousel.slick-initialized {
    margin-bottom: 0;
}

.kd-banner-section {
    position: relative;
    margin: 0.5rem 0;
}

.kd-banner-section .kd-banner-info {
    position: absolute;
    margin: 0px auto;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.72) 100%);
    width: 100%;
    padding: 50px 0px;
    text-align: center;
}

.kd-banner-info .heading {
    font-size: 38px;
    margin: 0 0 20px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-white);
}

.hair-systems-section,
.best-replacement-system-section {
    padding: 75px 0.5rem 0;
    background: linear-gradient(180deg, #f5f5f7, hsla(0, 0%, 100%, 0));
    margin: 0.5rem 0;
}

:is(.hair-systems-section, .best-replacement-system-section, .hair-system-reviews-section, .why-lordhair-section, lordhair-partners-section) .hair-systems-desc h1 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 1rem;
}

:is(.hair-systems-section, .best-replacement-system-section, .hair-system-reviews-section) .hair-systems-desc {
    width: 50%;
    margin: 0 auto;
    padding-bottom: 1.5rem;
}

.hair-systems-section .hair-systems-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.hair-systems-section .image-wrapper {
    position: relative;
    text-align: center;
}

.hair-systems-section .hair-systems-info {
    position: absolute;
    margin: 0px auto;
    left: 0px;
    right: 0px;
    bottom: 0px;
    width: 100%;
    padding: 50px 12%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.72) 100%);
}

.hair-systems-section .hair-systems-info h3 {
    font-size: 28px;
    color: var(--color-white);

}

.hair-systems-section .hair-systems-info p {
    margin: 1rem 0;
    color: var(--color-white);
    line-height: 1.4;
}

.hair-systems-section .hair-systems-info a {
    min-width: 112px;
    height: 36px;
    line-height: 36px;
    background-color: var(--color-white);
}

.need-help-section {
    padding: 100px 0;
    background-color: #f7f7f7;
    margin: 0.5rem 0;
    text-align: center;
}

.need-help-section h1 {
    margin-bottom: 1rem;
}

.need-help-section .btn-quiz {
    color: var(--color-white);
    background-color: var(--color-black);
}

.best-replacement-system-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 5px;
}

.replacement-card-wrapper {
    background: linear-gradient(179deg, #fff 80%, #f5f5f7);
    padding-bottom: 35px;
}

.replacement-card-wrapper h3 {
    margin-bottom: 1rem;
}

.hair-system-reviews-section {
    padding: 75px 0.5rem;
    margin: 0.5rem 0;
    background: linear-gradient(180deg, #f5f5f7, hsla(0, 0%, 100%, 0));
}

.hair-system-reviews-section .reviews-wrapper {
    max-width: 844px;
    margin: 0 auto;
}

.hair-system-reviews-section .review-images {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.hair-system-reviews-section .review-images .review-image-wrapper {
    width: 50%;
}

.hair-system-reviews-section .review-images img {
    border-radius: 12px;
    object-fit: cover;
}

.hair-system-reviews-section .review-desc-wrapper {
    margin-top: 1rem;
    text-align: center;
}

.hair-system-reviews-section .start-count svg {
    fill: var(--color-black);
}

.hair-system-reviews-section .review-desc {
    font-size: 16px;
    color: #000;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.hair-system-reviews-section .review-by {
    font-size: 16px;
    color: #000;
    text-transform: capitalize;
}

.why-lordhair-section {
    padding: 0 15px 1.5rem;
}

.why-lordhair-section .why-lordhair-wrapper {
    padding: 75px 12%;
    background-color: #f7f7f7;
    border-radius: 30px;
    text-align: center;
}

.why-lordhair-section .lordhair-reasons {
    margin: 0;
    padding: 30px 7%;
    column-count: 3;
    text-align: left;
}

.why-lordhair-section .lordhair-reasons a {
    font-size: 16px;
}

.lordhair-partners-section {
    padding: 75px 0 0;
    text-align: center;
}

.lordhair-partners-section .lordhair-partners-wrapper {
    position: relative;
    display: flex;
    gap: 10px;
}

.lordhair-partners-section .partners-desc {
    width: 100%;
    position: absolute;
    bottom: 0;
    padding: 150px 0 40px;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .72));
    text-align: center;
}

.lordhair-partners-section img {
    height: 80vh;
    object-fit: cover;
}

.lordhair-partners-section .partners-desc :is(h3, p) {
    text-align: center;
    color: #fff;
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 0;
}

.lordhair-partners-section .partners-desc p {
    font-size: 16px;
}

.lordhair-partners-section .slick-track {
    display: flex;
    gap: 10px;
}

.lordhair-partners-section .slick-dots {
    position: relative;
    bottom: 0;
    margin-top: 10px;
}

.default-page .new-products-section {
    display: none;
}


/* -------------------- Home End -------------------- */




/* -------------------- Product / Category Start -------------------- */

.category-page {
    margin: 0;
}

.category-page .category-page-wrapper {
    margin: 45px 0 0;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 0.25fr 1fr;
    gap: 25px;
}

.category-page .category-page-wrapper:before,
.category-page .category-page-wrapper:after {
    content: unset;
}

.category-page .kd-banner {
    position: relative;
    height: 300px;
}

.category-page .kd-banner-wrapper {
    padding: 0 24px;
}

.category-page .category-header-image {
    height: 300px;
    object-fit: cover;
    background-position: top;
}

.category-page .kd-breadcrumbs {
    position: absolute;
    bottom: 0;
}

.category-page .category-desc {
    width: 100%;
    max-width: 556px;
    height: calc(100% - 96px);
    overflow: auto;
    background-color: rgba(0, 0, 0, .4);
    padding: 20px;
    border-radius: 20px;
    position: absolute;
    right: 24px;
    top: 67px;
    color: white;
}

.category-page .category-desc :is(h1, h2, h3, h4, h5, h6, p) {
    color: #fff;
}

:is(.category-page, .search-page) .page-content .actionBar {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 20px;
}

:is(.category-page, .search-page) .actionBar,
:is(.category-page, .search-page) .actionBar-section .form-field {
    margin: 0;
    border: unset;
}

:is(.category-page, .search-page) .actionBar :is(.form-select, label) {
    font-size: 16px;
    text-transform: uppercase;
    color: #333;
    font-weight: 400;
}

:is(.category-page, .search-page) .filter-heading-wrapper h3 {
    margin-bottom: 20px;
}

:is(.category-page, .search-page) :is(#faceted-search-container, #product-listing-container) {
    width: 100%;
    padding: 0;
}

:is(.category-page, .search-page) .filter-wrapper {
    background-color: #f5f5f5;
    padding: 20px 12px;
}

:is(.category-page, .search-page) #faceted-search-container .navList {
    margin: 0;
}

:is(.category-page, .search-page) .productGrid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px;
    margin: 0;
}

:is(.category-page, .search-page) .productGrid:before {
    content: unset;
}

:is(.category-page, .search-page) .page .productGrid li.product {
    width: 100%;
    padding: 0;
}

.card {
    margin-bottom: 0;
}

.card .card-figure {
    padding: 0;
}

.card .card-figure .card-image {
    object-fit: fill;
}

.card .badges {
    position: absolute;
    z-index: 99;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px;
}

.card .badges img {
    width: 48%;
}

.card .badges .add-to-wishlist,
.product-page .price-bar .add-to-wishlist {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
    background-color: #707070;
    border-radius: 50px;
    padding: 0;
}

.card .badges .add-to-wishlist i {
    color: #fff;
}

.card .price-section {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-black);
}

:is(.card, .product-page .price-bar) .non-sale-price--withoutTax,
:is(.card, .product-page .price-bar) .price-now-label {
    display: none !important;
}

.card .brand-name {
    font-size: 16px;
    font-weight: 700;
    color: #333;
}

.card .card-title {
    font-size: 16px;
    color: #707070;
    line-height: 22px;
}

.pagination {
    margin-top: 50px;
}

.pagination-item .pagination-link {
    width: 32px;
    height: 32px;
    border-radius: 50px;
    background-color: #ddd;
    font-size: 16px;
    color: #333;
    line-height: 14px;
    transition: all .3s ease-out 0s;
    border: 1px transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
    position: relative;
}

.pagination-item .pagination-link[disabled] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
}

.pagination-item .pagination-link[disabled] i {
    color: #959a9d;
}

.pagination-item .pagination-link:hover {
    color: #fff;
    background-color: #333;
}

.pagination-item .pagination-link:hover i {
    color: #fff;
}

.pagination-item.pagination-item--current {
    border: unset;
}

.pagination-item.pagination-item--current .pagination-link {
    color: #fff;
    background-color: #333;
    border: unset;
}

.pagination-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.category-page .faqs {
    margin: 80px 0 40px;
}

.category-page .faqs-heading {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 700;
}

.category-page .faqs-wrapper {
    width: 100%;
}

.category-page .faqs-btn {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 13px 0;
    border-bottom: 1px solid #eee;
}

.category-page .faqs-btn h3 {
    font-size: 18px;
    font-weight: 500;
    color: #333;
    margin-bottom: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    padding-right: 12px;
    outline: none;
    margin: 0;
}

.category-page .faqs-detail {
    padding: 25px 20px;
    display: none;
}

.category-page .faqs-view-more {
    margin-top: 20px;
    padding: 9px 18px;
    background-color: #212529;
    color: #fff;
    border-radius: 6px;
}

:is(.category-page, .search-page) .sidebar-block .navList-item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 7px;
    padding: 3px 0;
}

:is(.category-page, .search-page) .sidebarBlock-heading {
    margin: 0;
    padding: 13px 0;
    line-height: 1.5;
}

:is(.category-page, .search-page) .sidebar-block label {
    font-size: 16px;
}

:is(.category-page, .search-page) .sidebar-block input {
    width: 15px;
    height: 15px;
}



/* -------------------- Product/Category End -------------------- */



/* -------------------- Product Detail Start -------------------- */


.product-page {
    margin: 0;
}

.product-page .product-detail-wrapper {
    padding: 0 15px;
}

.product-page .productView {
    margin: 0;
}

.product-page ol.breadcrumbs {
    margin: 0;
    padding: 0.5rem 0 0.5rem 1rem;
    text-align: left;
}

.product-page ol.breadcrumbs .breadcrumb {
    font-size: 16px;
}

.product-page .productView {
    display: flex;
    flex-direction: row;
    gap: 40px;
}

.product-page .productView:before,
.product-page .productView:after {
    content: unset;
}

.product-page .productView-images {
    width: 65%;
}

.product-page .productView-images .productView-thumbnails {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.product-page .productView-images .productView-thumbnails:before,
.product-page .productView-images .productView-thumbnails:after {
    content: unset;
}

.product-page .productView-images .productView-thumbnail {
    width: 100%;
}

.product-page .productView-images .productView-thumbnail-link {
    max-width: unset;
    height: unset;
    border: unset;
    padding: unset;
}

.product-page .productView-images .productView-thumbnail-link img {
    width: 100%;
}

.product-page hr {
    margin: 3rem 0;
}

.product-page .related-products-heading {
    font-size: 36px;
    text-align: center;
    margin-bottom: 40px;
}

.product-page .productView-details-wrapper {
    width: 35%;
    padding-right: 30px;
}

.product-page .productView-details {
    width: 100%;
    padding: 0;
}

.product-page .productView-product {
    border: unset;
    padding: 0;
}

.product-page .productView-title {
    margin: 1rem 0 0;
}

.product-page .productDetail-nav {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #00000010;
    position: sticky;
    top: 0;
    z-index: 99;
    background-color: #fff;
}

.product-page .productDetail-nav a {
    width: 100%;
    padding: 10px 0;
    margin: 0;
    text-align: center;
    font-size: 19px;
    font-weight: 400;
}

.product-page .productView-description {
    clear: both;
    float: unset;
    padding: 0;
    margin: 1rem 0;
    /*display: none;*/
}

.product-page .price-bar {
    position: fixed;
    bottom: 0;
    right: 0;
    padding: 1.5rem 25px;
    background-color: #f7f7f7;
    width: 100%;
    z-index: 999;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
}

.product-page .price-bar .productView-price {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    margin: 0;
}

.product-page .price-bar .add-to-cart {
    background: #252526;
    border-radius: 8px;
    font-weight: 700;
    color: #fff;
    min-width: 180px;
    padding: 0.75rem 0;
}

.product-page :is(#add-to-cart-wrapper, .form-wishlist) {
    display: none !important;
}

.product-page .productView-details-wrapper .kd-accordion {
    padding: 16px 0;
    font-size: 20px;
    font-weight: 500;
    color: #111827;
    margin-bottom: 0;
    border-bottom: 1px solid #00000010;
}

.product-page .productView-details-wrapper .kd-panel>div {
    padding: 16px 2px;
}

.product-page .productView-details-wrapper .set-rectangle {
    display: flex;
    flex-direction: column;
}

.product-page .productView-details-wrapper .set-rectangle label.form-option {
    width: 100%;
    border: 1px solid #c5c5cb;
    border-radius: 8px;
    min-height: 81px;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.product-page .productView-details-wrapper .set-rectangle label.form-option span {
    font-size: 18px;
    padding: 0 0.5rem;
}

.product-page .productView-options .form-field {
    margin: 0;
}

.product-page #description {
    margin: 0 0 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #00000010;
}

:is(.product-page #description, .product-page #reviews)>h4 {
    font-size: 28px;
}

.product-page #description :is(th, td) {
    font-size: 18px;
    line-height: 1.4;
}

.product-page #reviews .tab-content {
    display: block;
}

.product-page .productReviews-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 5px;
}

.product-page .productReviews-list:before,
.product-page .productReviews-list:after {
    content: unset;
}

.product-page .productReviews-list .productReview {
    width: 100%;
    padding: 0.75rem;
}

.product-page .productReviews-list .productReview:not(:last-child) {
    border-bottom: 1px solid #00000010;
}

.product-page .productReviews-list .productReview-author {
    margin: 0 0 5px;
    font-size: 13px;
}

.product-page .productView-details .toggleLink {
    display: none;
}

.product-page .productView-details .toggle-content {
    display: block;
}

.product-page .productReviews-list .productReview-body {
    font-size: 16px;
    margin: 0;
}

.product-page .productReviews-list .productReview-title {
    margin-bottom: 5px;
}

.product-page #reviews .icon--ratingFull svg {
    fill: #f2a33c;
}

.product-page #reviews .icon--ratingEmpty svg {
    stroke: #f2a33c;
    stroke-width: 2px;
    fill: white;
}

/* Options Setting Start  */

.product-page .kd-custom-radio {
    margin: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.product-page .kd-custom-radio li {}

.product-page .kd-custom-radio img {
    border-radius: 50%;
    cursor: pointer;
}

.product-page .kd-custom-radio li.active img {
    padding: 2px;
    border: 2px solid;
}

.product-page .kd-custom-radio p {
    margin: 0;
}

.product-page .options-wrapper {
    margin: 0;
    list-style: none;
}

.product-page .options-wrapper .form-option {
    width: 100%;
    border: 1px solid #c5c5cb;
    border-radius: 8px;
    min-height: 81px;
    cursor: pointer;
    display: flex;
    align-items: center;
    font-size: 18px;
    padding: 0 0.5rem;
}

.product-page .options-wrapper .form-option.active {
    border-color: #000;
}

.options-modal {
    max-width: 815px !important;
    border-radius: 14px;
    padding: 0;
    top: 15%;
}

.options-modal .main-heading {
    font-size: 28px;
    padding: 40px 16px;
    margin: 0;
    text-align: center;
}

.options-modal .modal-inner {
    max-width: 650px;
    margin: 0 auto;
    padding-bottom: 30px;
}

.options-modal .modal-inner textarea.additionalIns {
    background-color: #f0f0f2;
    border-radius: 6px;
    padding: 0.75rem 1rem;
}

.options-modal .modal-inner>h5 {
    font-size: 18px;
    font-weight: 400;
    text-transform: capitalize;
}

.options-modal .options-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 1.5rem 0 0;
}

.options-modal .form-option {
    width: 100%;
    margin: 0;
    padding: 5px;
    border: 1px solid #c5c5cb;
    border-radius: 8px;
    min-height: 81px;
    font-size: 18px;
    font-weight: 400;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}

.options-modal .modal-footer {
    border: unset;
    padding: 16px;
    margin-bottom: 24px;
}

.options-modal button {
    max-width: 326px;
    width: 100%;
    height: 50px;
    line-height: 50px;
    border-radius: 14px;
    font-size: 17px;
    font-weight: 500;
    background-color: #252526;
    color: #fff;
}

.options-modal .hairstylewrapper {
    list-style: none;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.options-modal .hairstylewrapper .haistyleproduct {
    max-width: 290px;
    position: relative;
    height: 290px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e9e6ec;
    border-radius: 14px;
}

.options-modal .hairstylewrapper .haistyleproduct img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.options-modal .hairstylewrapper p {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    color: #252526;
    margin: 0;
    text-align: center;
}

.options-modal[data-id="modalChooseHairStyle"] {
    top: 3%;
}

.options-modal[data-id="modalChooseHairStyle"] .hairstylewrapper {
    height: 400px;
    overflow-y: auto;
}

.options-modal .hairstylebar button {
    background-color: transparent;
    color: #212529;
    width: auto;
    line-height: unset;
    height: unset;
    padding: 0;
}

.options-modal .hairstylebar {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    padding: 10px 0;
    border-top: 1px solid #dee2e6;
    border-bottom: 1px solid #dee2e6;
    margin-bottom: 20px;
}

.options-modal .hairstylebar i {
    color: #868787;
}

.options-modal.steps-modal {
    scrollbar-width: none;
    top: 2%;
    /* height: 96%; */
    /* overflow: hidden; */
    max-height: calc(100% - 8%);
    overflow: auto;
}

.options-modal .step {
    border: unset;
    margin: 0;
}

.options-modal .step .step-content {
    height: 450px;
    overflow-y: auto;
}

.options-modal .steps-wrapper .step:not(:first-child) {
    display: none;
}

.options-modal .steps-wrapper .button-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    /* position: absolute;
    bottom: 2px; */
}

.options-modal .steps-wrapper .button-wrapper button {
    width: 30%;
}

.options-modal.steps-modal .modal-inner {
    /* height: 550px;
    position: relative;
    overflow-y: auto; */
}



/* Options Setting End  */




/* -------------------- Product Detail End -------------------- */


/* -------------------- Cart Start -------------------- */


.cart-page {
    margin-top: 0;
}

.cart-page .cart-wrapper {
    margin: 0;
}

.cart-page .cart-title-wrapper {
    border-bottom: 1px solid #c5c5cb8c;
}

.cart-page .cart-title-wrapper h5 {
    max-width: 1000px;
    padding: 20px 15px;
    margin: 0 auto;
}

.cart-page .page-content.cart-inner {
    float: unset;
    max-width: 1000px;
    margin: 1.5rem auto 0;
    padding: 0 15px;
}

.cart-page table.cart .cart-header {
    display: none;
}

.cart-page table.cart .cart-list {
    border: unset;
}

.cart-page table.cart .cart-item-title {
    padding: 0 0 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cart-page table.cart .cart-item-block {
    vertical-align: top;
}

.cart-page table.cart .button {
    height: 2.3rem;
    width: 2.3rem;
    background-color: #000;
}

.cart-page table.cart .button i {
    color: #fff;
}

.cart-page table.cart .form-input--incrementTotal {
    padding: 5px 10px;
    background-color: #f0f0f2;
    color: #252526;
    font-size: 18px;
    border-radius: 6px;
    font-weight: 300;
    height: 2.5rem;
    width: 4.0rem;
    text-align: left;
}

.cart-page table.cart .cart-item-name {
    font-size: 24px;
    color: #252526;
    font-weight: 700;
}

.cart-page table.cart .definitionList {
    display: none;
}

.cart-page table.cart .cart-item-value {
    font-size: 25px;
    font-weight: 700;
    color: #252526;
}

.cart-page table.cart .cart-remove {
    display: block;
    float: unset;
    margin-left: auto;
    margin-top: 15px;
}

.cart-page ul.cart-totals {
    width: 600px;
}

.cart-page :is(.cart-total-label, .cart-total-value) {
    padding: 10px 0;
}

.cart-page ul.cart-totals :is(.cart-total-label strong, .cart-total-value span) {
    font-size: 18px;
    font-weight: 400;
    color: #252526;
}

.cart-page ul.cart-totals li.cart-total.grand-total strong {
    font-size: 24px;
    color: #252526;
    font-weight: 400;
}

.cart-page ul.cart-totals li.cart-total.grand-total .cart-total-grandTotal {
    font-size: 24px !important;
    font-weight: 700 !important;
    color: #252526;
}

.cart-page .cart-actions .button {
    background-color: #252526;
}



/* -------------------- Cart End -------------------- */



/* -------------------- Search Page Start -------------------- */


.search-page {
    margin-top: 0;
}

.search-page .search-page-wrapper {
    margin: 1rem 0 0 0;
    padding: 0 24px;
}

.search-page .search-page-wrapper .page-content {
    display: grid;
    grid-template-columns: 0.25fr 1fr;
    gap: 25px;
    padding: 0;
}

.search-page #faceted-search-container {
    width: 100%;
}

/* -------------------- Search Page End -------------------- */
/* -------------------- Custom page start -------------------- */


.kd-custom-page-product-detail-wrapper {
    padding: 0 15px;
    overflow: hidden;
}

.kd-custom-page-product-content-wrap {
    display: flex;
    flex-direction: row;
    gap: 40px;
    justify-content: space-between;

}


.kd-custom-page-product-main-img {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 458%;
    max-height: 100%;
    height: 100%;
}

.kd-custom-page-product-image {
    max-width: 48%;
    width: 100%;
    padding: 6px
}

.kd-product-name {
    margin-top: 1rem;
}

.kd-product-description {
    text-align: justify;
}

.kd-mt-3 {
    margin-top: 1rem;
}

.kd-product-name h2 {
    font-size: 24px;
}

.kd-desktopServices-inner-container {
    background-color: #F5F5F7;
    padding: 10px 0;
    text-align: center;
    display: flex;
    flex-direction: row;
}

.kd-desktop-services {
    display: flex;
    flex-direction: column;
    justify-content: start;
    flex: 0 0 auto;
    width: 33.33333333%;
    align-items: center;
}

.kd-text-break p {
    font-size: 15px;
}

.kd-desktop-services div {
    font-size: 14px
}

.kd-desktop-services div img {
    color: transparent;
    margin-left: 5px;
    cursor: pointer
}

.kd-desktop-services img {
    color: transparent;
    width: 25;
    height: auto
}

.kd-product-tab {
    padding-top: 0.5rem;
    margin-top: 2rem;
    position: relative;
    /* height: 100vh; */
}

.kd-tabs-wrap {
    display: flex;
    justify-content: space-around;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    width: 100%;
    background-color: #fff;
    border-bottom: 1px solid #00000010;
    transition: top .2s ease-in-out;
    overflow: hidden;
    z-index: 9;
    margin-left: 0 !important;
}

.kd-tabs-wrap li.current {
    border-bottom: 2px solid #252526;
}

.kd-tabs-wrap li {
    display: inline-block;
    cursor: pointer;
    font-size: 19px;
    width: 100%;
    text-align: center;
}

#kd-tab-description h4 {
    font-weight: 700;
}

#kd-tab-description .text-break {
    word-wrap: break-word !important;
    word-break: break-word !important;
}


#kd-tab-description {
    border-bottom: 1px solid #00000010;
}

#kd-tab-description .view-all-content {
    max-height: 250px;
    overflow: hidden;
}

.kd-custom-img ul {
    list-style-type: none;
    margin-left: 0px;
    /* display: flex; */
}

#kd-tab-description .descriptionwrap {
    display: flex;
    padding: 0 0 30px;
    flex-direction: column;
}

.kd-custom-img ul li {
    float: left;
    width: 33%;
}

.kd-custom-list ul {
    list-style-type: none !important;
    margin-left: 0px;
}

.kd-custom-list2 ul {
    list-style-type: none !important;
    margin-left: 0px;

}

.kd-custom-list2 ul li .font22 {
    font-size: 20px;
}

.kd-custom-list2 ul li .font22 {
    font-size: 20px;
}

.kd-custom-color ul {
    list-style-type: none !important;
    margin-left: 0px;



}

.kd-custom-list3 ul {
    list-style-type: none !important;
    margin-left: 0px;



}

.kd-custom-factory ul {
    list-style-type: none !important;
    margin-left: 0px;



}

.kd-view-all {
    display: flex;
    align-items: center;
    justify-content: left;
}

.kd-view-all span {
    font-size: 20px;
}

.kd-view-all .icon_root__xDrM_ {
    display: inline-block;
    margin-top: 7px;
}

.kd-description-colapse {
    cursor: pointer;
}

#kd-tab-reviews {
    border-bottom: 1px solid #00000010;
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
}

#kd-tab-reviews h4 {
    font-size: 20px;
}

.kd-rating-box {
    background-color: #f5f5f7;
    text-align: center;
    padding-top: 3rem;
    padding-bottom: 3rem;
    padding-right: 1.5rem;
    padding-left: 1.5rem;
    margin-top: 1rem;
}

.kd-rating-box-inner {
    display: flex;
    justify-content: space-between;
}

.kd-rating-box-inner h2 {
    color: #525254;
    font-size: 80px;
    line-height: 60px;
    margin-bottom: 0;
}

.kd-rating-box-inner span {
    color: #89898d;
    stroke: #89898d;
    font-size: 18px;
    font-weight: 700;
}

.kd-product-all-review .kd-product-all-review-item {
    display: flex;
    justify-content: start;
    align-items: center;
}

.kd-product-all-review-item .rate-review {
    display: flex;
    align-items: center;
    width: 60px;
    height: 12px;
    justify-content: end;
}

.kd-product-all-review-item .rate-review span {
    color: #89898d;
    stroke: #89898d;
    font-size: 18px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    touch-action: manipulation;
}

.kd-product-all-review-item .rate-review span .icon {
    fill: #89898d;
    width: 12px;
    height: 12px;
}


.kd-product-all-review-item .review-line-wrap {
    width: 200px;
    height: 4px;
    background: #e3e3e5;
    border-radius: 5px;
    display: block;
}

.kd-product-all-review-item .review-line-wrap .review-line {
    background: #7f7f83;
    border-radius: 5px;
    height: 100%;
    display: block;
}

.kd-user-product-review {
    margin-top: 15px;
}

.kd-user-product-review .user-info-wrap {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
}

.kd-user-product-review .user-info-wrap .user-info {
    display: flex;
    /* justify-content: space-between; */
}

.kd-user-product-review .user-info-wrap .user-info img {
    max-width: 100%;
    outline: 0;
    background: #f5f5f7;
    border-radius: 100%;
    width: 44px;
    height: 44px;
}

.kd-user-product-review .user-info-wrap .user-info .kd-ms-3 {
    margin-left: 1rem !important;
}

.kd-ms-3 .font-weight-bold {
    font-weight: 900;
    color: blaac;
    color: black;
    font-size: 18px;
}

.kd-user-product-review .purchased-item {
    margin: 0 !important;
    font-size: 18px;
    /* color: #252526; */
    font-weight: 400;
    line-height: 1.4;
}

.kd-user-product-review .purchased-item p {
    border-left: 2px solid #d2d2d9;
    font-size: 15px;
    padding: 4px 0 4px 5px;
    color: #bababf;
    margin-bottom: 10px;
}

.kd-user-product-review .purchased-item-star {
    font-size: 18px;
    color: #252526;
    font-weight: 400;
    line-height: 1.4;
}

.kd-user-product-review .user-comment-wrap {
    margin-top: 0.5rem !important;
}

.kd-user-product-review .user-comment-wrap .description {
    font-size: 16px;
    font-weight: 400;
    color: #6f6f73;
}

.kd-user-product-review .purchased-item-star .purchased-item-star-svg svg {
    fill: #f2a33c;
    color: #f2a33c;
}

.kd-pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 315px;
    margin: 0 auto;
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
}

.kd-pagination .prve-review {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.kd-pagination .prve-review svg {
    color: #89898c;
}

.kd-pagination .total-review {
    font-size: 20px;
    color: #111827;
}

.kd-pagination .next-review {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.kd-container-sm {
    margin: 0 auto;
    width: 100%;
    max-width: 1000px;
    padding: 1rem
}

.kd-container-sm .browsing-history-wrap {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.kd-container-sm .browsing-history-wrap h3 {
    font-size: 40px;
    text-align: center;
}

.kd-wiper-browsing-history {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
}

.kd-wiper-browsing-history .swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    box-sizing: content-box;
    transform: translate3d(0px, 0px, 0px);
}

.kd-swiper-slid {
    width: 230.75px;
    margin-right: 15px;
    /* transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    flex-shrink: 0;
    width: 100%; */
    height: 100%;
    position: relative;
    transition-property: transform;
}

.kd-swiper-slid img {
    color: transparent;
    width: 100%;
    height: auto;
    max-width: 100%;
    outline: 0;
}

.kd-swiper-slid .history-product-img {
    margin-top: 1rem;
}

.kd-swiper-slid .font-weight-bold {
    display: block;
    font-weight: 700;
    margin-top: 1rem;
    color: black;
    margin-bottom: 0.5rem;
    font-size: 18px;

}

.kd-swiper-slid .product-price {

    font-size: 18px;
    font-weight: 500;

}

.kd-static-price-bar {
    position: sticky;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 998;
    display: none;
}

.kd-light-bg-color {
    background-color: #f7f7f7;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.kd-container-lg {
    padding: 0 15px;
    margin: 0 auto;
    width: 100%;
    max-width: 1440px;
}

.kd-d-flex {
    display: flex;
    align-items: center;
    justify-content: end;
}

.kd-product-price-wrapper {}

.kd-product-price {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    font-size: 18px;
    font-weight: 700;
}

.kd-btn {
    background: #252526;
    border-radius: 8px;
    font-weight: 700;
    color: #fff;
    min-width: 180px;
    margin-right: 1rem;
    margin-left: 1rem;
    font-size: 15px;
    padding-top: 0.55rem;
    padding-bottom: 0.55rem;
    text-align: center;

}

.kd-addToListButton_wish_list {
    position: relative;
    width: 24px;
    height: 24px;
    background-color: #707070;
    border-radius: 50px;
    z-index: 1;
    cursor: pointer;
}

.kd-addToListButton_wish_list {
    position: relative;
    width: 24px;
    height: 24px;
    background-color: #707070;
    border-radius: 50px;
    z-index: 1;
    cursor: pointer;
}

.kd-addToListButton {
    background-color: transparent;
    border: transparent;
    padding: 0;
    width: 100%;
    height: 100%;
}

.kd-addToListButton_wish_list {
    /* position: relative; */
    margin-top: 1px;
    /* overflow: hidden;
    width: 100%;
    height: 100%; */
}

.kd-addToListButton_wish_list>span {
    width: 100%;
    height: 100%;
    display: flex;

}

.kd-addToListButton_wish_list span {
    align-items: center;
    justify-content: center;
    touch-action: manipulation;
}


.kd-addToListButton_wish_list>span>svg {
    stroke: #fff;
}

body {
    overflow-x: visible !important;

}

.category-page .price-bar {
    position: fixed;
    bottom: 0;
    right: 0;
    padding: 1.5rem 25px;
    background-color: #f7f7f7;
    width: 100%;
    z-index: 999;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
}

.category-page .price-bar .productView-price {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    margin: 0;
}

.category-page .price-bar .add-to-cart {
    background: #252526;
    border-radius: 8px;
    font-weight: 700;
    color: #fff;
    min-width: 180px;
    padding: 0.75rem 0;
    text-align: center;
}

.category-page .price-bar .add-to-wishlist {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
    background-color: #707070;
    border-radius: 50px;
    padding: 0;
    color: var(--color-white);
}

/* ===============Custome Product CSS============================== */
.kd-secondary-color {
    font-size: 14px;
    font-weight: 400;
    color: #89898c;
    text-transform: none;
}

.kd-customer-product-hr {
    display: block !important;
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
    opacity: 1;
    color: #c5c5cb8c;
}

.kd-costome-main-title .font-weight-medium {
    font-size: 14px;
    font-weight: 600;
    color: #111827;
    text-transform: none;

}

.kd-costome-main-title .kd-contnent {
    font-size: 15px;
    font-weight: 500;
    color: #111827;

}

.kd-productView {
    display: flex !important;
    flex-direction: row;
    gap: 40px;
    max-width: 1000px;
    width: 100%;
    padding: 0 15px;
    margin: 0 auto !important;
}

.kd-productView-images img {
    width: 100%;
    object-fit: cover;
    background: #d9d9d9;
    border-radius: 8px;

}

.product-page .productView-images {
    width: 50% !important;
}

.kd-productView-details-wrapper {
    width: 50% !important;
    padding-right: 0px !important;

}

.kd-productView-thumbnails {
    display: none !important;
}

.kd-productView-details-wrapper .kd-desktopServices-container {
    margin-top: 1rem;
    display: none;
}


.kd-quick-record {
    color: #004de5;
    font-size: 18px;
    display: none;
}


.kd-quick-record:hover {
    outline: 0;
    text-decoration: none;
    color: #252526;
    transition: all .5s ease-in-out;
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
}

.kd-productDetail-nav {
    display: none !important;
}

/* .kd-productView-details {
    display: none;
} */

/* .kd-productView-image {
    display: none;
} */

.kd-base-main-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.kd-base-size-close-image-box {
    display: flex;
}

.kd-close-btn {
    color: #004de5;
    font-weight: 600;
    font-size: 18px;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    cursor: pointer;
}

/* .kd-base-size-customize-pro-box {
    list-style-type: none;
    margin: 0;
    padding: 0;
} */
/* #kd-base-size-box-base-design .kd-base-size-customize-pro-box{

} */

.kd-base-size-li {
    border: 1px solid #c5c5cb;
    border-radius: 8px;
    min-height: 81px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;

}

.kd-base-size-li-div {
    display: flex;
    align-items: center;
    margin-left: 0.5rem;
}

.kd-base-size-images {
    padding-right: 0.5rem;
}

.kd-base-size-images img {
    min-width: 69px;
    height: 69px;
    width: 69px;
    border-radius: 3px;
    object-fit: contain;
}

.kd-base-size-images-text span {
    font-size: 18px;
    color: #252526;
}

.kd-arrow-icon {
    margin-bottom: 0px;
}

.kd-arrow-icon svg {
    vertical-align: middle;
}

.kd-base-size-customize-pro-box>li:hover {
    border: 1px solid #252526;
}

.output {
    font-size: 20px;
}

.kd-edit-box {
    display: none;
    justify-content: space-between;
    align-items: center;

}

.kd-edit-box .kd-edit-btn {
    color: #004de5;
    font-weight: 600;
    font-size: 18px;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    cursor: pointer;
}

.kd-edit-box h5 {
    font-size: 18px;
    font-weight: 700;
    text-transform: none;
}

.kd-edit-box .savedOption {
    color: #6f6f73;
    margin-bottom: 0 !important;
    font-size: 18px;

}

.kd-edit-box .kd-savedOption {
    color: #6f6f73;
    margin-bottom: 0 !important;
    font-size: 18px;

}

.kd-edit-box .kd-women-savedOption {
    color: #6f6f73;
    margin-bottom: 0 !important;
    font-size: 18px;

}

.kd-edit-box .sub-title {
    margin-bottom: 0;
}

#kd-base-size-box-base-meterial-color ul li {
    width: calc(50% - 4px);
}

#kd-base-size-box-base-meterial-color ul {
    display: flex;
    flex-wrap: wrap;
    column-gap: 8px;
}


#kd-base-size-box-hair-length ul {
    display: flex;
    flex-wrap: wrap;
    column-gap: 8px;
}

#kd-base-size-box-hair-length ul li {
    width: calc(50% - 4px);
}

#kd-base-size-box-front-contour ul {
    display: flex;
    flex-wrap: wrap;
    column-gap: 8px;
}

#kd-base-size-box-front-contour ul li {
    width: calc(50% - 4px);
}

#kd-base-size-box-base-design ul {
    display: flex;
    flex-wrap: wrap;
    column-gap: 8px;
}

#kd-base-size-box-base-design ul li {
    width: calc(50% - 4px);
}

#kd-base-size-box-hair-density ul {
    display: flex;
    flex-wrap: wrap;
    column-gap: 8px;
}

#kd-base-size-box-hair-density ul li {
    width: calc(50% - 4px);
}

#kd-base-size-box-hair-direction ul {
    display: flex;
    flex-wrap: wrap;
    column-gap: 8px;
}

#kd-base-size-box-hair-direction ul li {
    width: calc(50% - 4px);
}

#kd-base-size-box-customhaircut ul {
    display: flex;
    flex-wrap: wrap;
    column-gap: 8px;
}

#kd-base-size-box-customhaircut ul li {
    width: calc(50% - 4px);
    justify-content: center;
}

#kd-base-size-box-curl-wave ul {
    display: flex;
    flex-wrap: wrap;
    column-gap: 8px;
}

#kd-base-size-box-curl-wave ul li {
    width: calc(50% - 4px);
    justify-content: center;
}

#kd-women-hair-cut {
    display: none;
}

.kd-base-size-li-selected {
    border: 1px solid #252526;
}

.kd-base-size-box-customhaircut-height {
    height: 1200px !important;
    transition: margin-right 4s ease-in-out;
}

.kd-curl-wave-tab-ul {
    background: #0000000f;
    display: flex;
    max-width: 330px;
    margin: 0 auto;
    padding: 2px;
    border-radius: 14px;
    color: #252526;
    font-size: 18px;
}

.kd-curl-wave-tab-ul li {
    width: 50%;
}

.kd-curl-wave-tab-ul li a {
    background: transparent;
    box-shadow: 0 2px 2px transparent;
    border-radius: 14px;
    font-weight: 600;
    font-size: 13px;
    text-align: center;
    height: 43px;
    line-height: 43px;
    display: block;
}

.kd-curl-wave-tab-ul a.active {
    background: #fff;
    box-shadow: 0 2px 2px #00000000;
}

.kd-hair-modal-box-middle {
    max-width: 650px;
    margin: 0 auto;
    padding: 30px 0;
}

.kd-hair-modal-box-middle .tab-content {
    padding-top: 20px
}

#kd-pills-Men ul {
    display: flex;
    flex-wrap: wrap;
    column-gap: 8px;
}


#kd-pills-Men ul li {
    width: calc(50% - 4px);
    /* justify-content: center; */
}



#kd-pills-Women ul {
    display: flex;
    flex-wrap: wrap;
    column-gap: 8px;
}

#kd-pills-Women ul li {
    width: calc(50% - 4px);
    /* justify-content: center; */
}

/* .kd-common-modal {
    max-width: 815px !important;
    transition: transform .3s ease-out;
    overflow: hidden;
    min-height: calc(100% - 10%);
    height: calc(100% - 10%);
    top: 4% !important;
  
} */

.kd-curl-wave-modal .modal-content {
    max-height: 100%;
    overflow: hidden;
    /* display: flex;
    align-items: center; */
}

.kd-common-modal .modal-content .kd-modal-body {
    /* width: 300px; */

    height: 600px;

    overflow: auto;

    -ms-overflow-style: none;

    scrollbar-width: none;
}

.kd-common-modal .modal-content .kd-modal-header {
    /* padding-top: 0.5rem !important;
    padding-bottom: 4rem !important; */
    padding: 1rem 1rem;
}

.kd-common-modal .modal-content .kd-modal-header .kd-modal-header-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.kd-common-modal .modal-content .kd-modal-header .main-heading {
    font-size: 28px;
    padding: 0px 0px;
    margin: 0;
    text-align: center;
}

.kd-common-modal .modal-content .kd-modal-header .kd-main-heading-container {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.kd-additionalinstructions-modal .kd-hair-modal-box-middle .text-center h5 {
    font-weight: 400;
    font-size: 20px;
    text-transform: none;
    line-height: 1.2;
}

.kd-additionalinstructions-modal .kd-hair-modal-box-middle .kd-additionalinstructions-textarea {
    height: auto;
    max-width: 100%;
    min-width: 100%;
    padding: 0.75rem 1rem;
    color: #252526;
    width: 100%;
    background: #f0f0f2;
    border-radius: 6px;
    min-height: 250px;
    margin-top: 20px;
}

.kd-additionalinstructions-modal .modal-content .kd-modal-body {
    /* width: 300px; */
    height: 400px;
    overflow: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.kd-modal-footer {
    display: block;
    text-align: center;
    margin-bottom: 1.5rem !important;
}

/* .kd-additionalinstructions-modal .main-heading {
    font-size: 28px;
    padding: 21px 16px;
    margin: 0;
    text-align: center;
} */

.kd-front-box-footer .kd-common-modal-confirm-btn {
    max-width: 326px;
    width: 100%;
    height: 50px;
    line-height: 50px;
    border-radius: 14px;
    font-size: 17px;
    font-weight: 500;
    display: inline-block;
    text-align: center;
    cursor: pointer;
}

.kd-hair-modal-box-middle .tabs {
    border-bottom: none;
}


#kd-my-match-customize-pro-box ul {
    display: flex;
    flex-wrap: wrap;
    column-gap: 8px;
}


#kd-my-match-customize-pro-box ul li {
    width: calc(50% - 4px);
    /* justify-content: center; */
    padding-top: 1rem;
    padding-bottom: 1rem;
    margin-bottom: 10px;
    border: none;
    /* height: 450px; */
    min-height: 450px;
}

#kd-grid-all-base-customize-pro-box ul {
    display: flex;
    flex-wrap: wrap;
    column-gap: 8px;
}




#kd-my-match-customize-pro-box ul li .kd-base-size-li-div {
    display: flex;
    flex-direction: column;
}

#kd-my-match-customize-pro-box ul li .kd-base-size-images-text {
    padding-right: 0.5rem
}

#kd-my-match-customize-pro-box ul li .kd-base-size-images-text div {
    font-size: 20px;
    font-weight: 700;
    color: #252526;
    text-align: center;
}

#kd-my-match-customize-pro-box ul li .kd-base-size-images {
    max-width: 290px;
    position: relative;
    height: 290px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e9e6ec;
    border-radius: 14px;
}

#kd-my-match-customize-pro-box ul li .kd-base-size-images img {
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.kd-all-base-design-modal .kd-grid-list-main-container {
    display: flex;
    justify-content: end;
    align-items: center;
    border-top: 1px solid #dee2e6;
    border-bottom: 1px solid #dee2e6;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.kd-all-base-design-modal .kd-grid-list-main-container .kd-grid-list-inner-container {
    display: flex;
    justify-content: end;
    align-items: center;
}

.kd-all-base-design-modal .kd-grid-list-main-container .kd-grid-list-inner-container .kd-grid-list-item {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
}



.kd-border-right {
    border-right: 1px solid #dee2e6;
}

.kd-view-all-tab-content {
    font-size: 12px;
}

#kd-list-all-base-customize-pro-box {
    display: none;
}






/* #kd-my-match-customize-pro-box ul {
    display: flex;
    flex-wrap: wrap;
    column-gap: 8px;
} */


#kd-my-match-customize-pro-box ul li {
    width: calc(50% - 4px);
    /* justify-content: center; */
    padding-top: 1rem;
    padding-bottom: 1rem;
    margin-bottom: 10px;
    border: none;
    /* height: 450px; */
    min-height: 450px;
    border-radius: 0;

}

#kd-my-match-customize-pro-box ul li:hover {
    border: 1px solid #252526;
    border-radius: 0;
}

#kd-my-match-customize-pro-box ul {
    display: flex;
    flex-wrap: wrap;
    column-gap: 8px;
}




#kd-my-match-customize-pro-box li .kd-base-size-li-div {
    display: flex;
    flex-direction: column;
}

#kd-my-match-customize-pro-box ul li .kd-base-size-images-text {
    padding-right: 0.5rem
}

#kd-my-match-customize-pro-box ul li .kd-base-size-images-text div {
    font-size: 20px;
    font-weight: 700;
    color: #252526;
    text-align: center;
}

#kd-my-match-customize-pro-box ul li .kd-base-size-images {
    max-width: 290px;
    position: relative;
    height: 290px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e9e6ec;
    border-radius: 14px;
}

#kd-my-match-customize-pro-box ul li .kd-base-size-images img {
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    height: 100%;
    object-fit: contain;
}






.kd-common-grid-content ul li {
    width: calc(50% - 4px);
    /* justify-content: center; */
    padding-top: 1rem;
    padding-bottom: 1rem;
    margin-bottom: 10px;
    border: none;
    /* height: 450px; */
    min-height: 450px;
    position: relative;
    border: none !important;
    border-radius: 0 !important;
}

.kd-common-grid-content ul {
    display: flex;
    flex-wrap: wrap;
    column-gap: 8px;

}




.kd-common-grid-content ul li .kd-base-size-li-div {
    display: flex;
    flex-direction: column;
}

.kd-common-grid-content ul li .kd-base-size-images-text {
    padding-right: 0.5rem
}

.kd-common-grid-content ul li .kd-base-size-images-text div {
    font-size: 20px;
    font-weight: 700;
    color: #252526;
    text-align: center;
}

.kd-common-grid-content ul li .kd-base-size-images {
    max-width: 290px;
    width: 290px;
    position: relative;
    height: 290px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e9e6ec;
    border-radius: 14px;
}

.kd-common-grid-content ul li .kd-base-size-images img {
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.kd-common-grid-content .kd-selected-mark {
    display: block !important;
    position: absolute;
    top: 54px;
    left: 0px;
    width: 26px;
    height: 26px;
    content: "";
    z-index: 9;
    background-color: transparent;
}

.kd-common-grid-content .kd-selected-mark svg {
    width: 24;
    height: 24;
    fill: none;
    stroke: green;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}






.kd-common-list-content ul li {
    /* width: calc(50% - 4px); */
    justify-content: center;
    padding-top: 1rem;
    padding-bottom: 1rem;
    margin-bottom: 10px;
    border: none;
    /* height: 450px; */
    min-height: 332px;
    max-width: 400px;
    position: relative;
    border: none !important;
    border-radius: 0 !important;
}

.kd-common-list-content ul {
    display: flex;
    flex-wrap: wrap;
    column-gap: 8px;
    justify-content: center;
    flex-direction: column;
    align-items: center;

}




.kd-common-list-content ul li .kd-base-size-li-div {
    display: flex;
    flex-direction: column;
}

.kd-common-list-content ul li .kd-base-size-images-text {
    padding-right: 0.5rem
}

.kd-common-list-content ul li .kd-base-size-images-text div {
    font-size: 20px;
    font-weight: 700;
    color: #252526;
    text-align: center;
}

/* #kd-list-all-base-customize-pro-box ul li .kd-base-size-images {

    position: relative;
    height: 290px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e9e6ec;
    border-radius: 14px;
} */

/*.kd-common-list-content ul li .kd-base-size-images img {*/
/*    min-width: 390px !important;*/
/*    min-height: 390px !important;*/
/*    max-width: 100%;*/
/*    max-height: 100%;*/
/*    object-fit: contain;*/
/*    border-radius: 14px;*/
/*    border: 1px solid #e9e6ec;*/
/*}*/
.kd-common-list-content ul li .kd-base-size-images {
    max-width: 290px;
    width: 290px;
    position: relative;
    height: 290px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e9e6ec;
    border-radius: 14px;
}

.kd-common-list-content ul li .kd-base-size-images img {
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    height: 100%;
    object-fit: contain;
    min-width: none !important;
    min-height: none !important;
    border: none;
}

.kd-selected-mark-hide {
    display: none;
}

.kd-common-list-content .kd-selected-mark {
    display: block !important;
    position: absolute;
    top: 4px;
    left: -5px;
    width: 26px;
    height: 26px;
    content: "";
    z-index: 9;
    background-color: transparent;
}

.kd-common-list-content .kd-selected-mark svg {
    width: 24;
    height: 24;
    fill: none;
    stroke: green;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.kd-common-list-content {
    display: none;
}

.kd-common-modal .kd-hair-modal-box-middle h5.text-center-h5 {
    text-transform: none;
    font-size: 18px;
    font-weight: 500;
}


.kd-common-modal .kd-hair-modal-box-middle .hair-color-type {
    margin-bottom: 15px;
}

.kd-common-modal .kd-hair-modal-box-middle .hair-color-type .kd-row-image-container {
    max-height: 300px;
    max-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    border-radius: 12px;
    border: 1px solid transparent;
    margin-top: 2.5rem !important;
}

.kd-common-modal .kd-hair-modal-box-middle .hair-color-type .kd-row-image-container img {
    border-radius: 12px;
    object-fit: contain;
}

.kd-common-modal .kd-hair-modal-box-middle .hair-type-color-wrap .hair-type-text {
    font-size: 18px;
    font-weight: 500;
    color: #252526;
}

.kd-common-modal .kd-hair-modal-box-middle .hair-type-color-wrap ul {
    display: flex;
    flex-wrap: wrap;
}

.kd-common-modal .kd-hair-modal-box-middle .hair-type-color-wrap ul li {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    cursor: pointer;
    margin-right: 12px;
    position: relative;
}

.kd-common-modal .kd-hair-modal-box-middle .hair-type-color-wrap ul li div {
    width: 42px;
    height: 42px;
    border-radius: 100%;
    transition: .3s ease-in-out;
    border: 2px solid transparent;
    position: relative;
}

.kd-common-modal .kd-hair-modal-box-middle .hair-type-color-wrap ul li img {
    height: 34px;
    width: 34px;
    margin: 2px;
    object-fit: cover;
    border-radius: 100%;
}

.kd-common-modal .kd-hair-modal-box-middle .hair-type-color-wrap ul li span {
    font-size: 14px;
}

.kd-common-modal .kd-hair-modal-box-middle .hair-type-color-wrap ul li:hover div {
    border: 2px solid #a4a4a6;
    transition: .3s ease-in-out;
}

.selectedOption {
    border: 2px solid #a4a4a6 !important;

}

.kd-common-modal-step .kd-modal-header-container {
    justify-content: space-between !important;
}

.kd-common-modal-step .kd-modal-header-container svg {
    vertical-align: middle;
}

.kd-common-modal-step .kd-modal-header-container span {
    vertical-align: middle;
    font-size: 18px !important;
    margin-left: 0.25rem;
    cursor: pointer;
}

.kd-new-step2 .font-weight-semiBold {
    font-weight: 600;
    margin: 0.50rem;
    font-size: 35px;
}

.clone-scroller {
    scrollbar-width: none;
}

.kd-picker-div {
    width: 50%;
    margin: 0 auto;
}

.kd-root-color-container {
    width: 100%;
    /* margin: 0 auto; */
    margin-top: 30px;

}

.kd-root-color-container ul {
    display: flex;
    flex-wrap: wrap;
    column-gap: 8px;
}

.kd-root-color-container ul li {
    width: calc(50% - 4px);
    justify-content: center;
}

#kd-base-size-box-haircolor ul {
    display: flex;
    flex-wrap: wrap;
    column-gap: 8px;
}

#kd-base-size-box-haircolor ul li {
    width: calc(50% - 4px);
    justify-content: center;
}

.kd-men-hair-style-image-modal .kd-modal-body {
    height: 500px !important;
}

.kd-men-hair-style-image-modal .kd-font-weight-semiBold {
    font-weight: 600;
    margin: 0.25rem;
    font-size: 33px;
    text-align: center;
    margin-bottom: 5px;
}

.kd-men-hair-style-image-modal .kd-image-upload {
    font-size: 15px;
    font-weight: 500;
    color: #6f6f73;
    text-align: center;
    text-transform: none;
}

.kd-men-hair-style-image-modal .kd-hair-style-upload-image {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    padding-top: 3rem;
    padding-bottom: 3rem;
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.kd-men-hair-style-image-modal .kd-hair-style-upload-image svg {
    vertical-align: middle;
    cursor: pointer;
}

.kd-men-hair-style-image-modal .kd-hair-style-upload-image .kd-upload {
    font-size: 18px;
    text-align: center;
    font-weight: 500px;
    font-weight: 800;
    cursor: pointer;
}

/* .kd-men-hair-style-image-modal .kd-hair-style-upload-image input {
    display: none;
} */

.kd-men-hair-style-image-modal .kd-add-photo {
    display: flex;
    flex-wrap: wrap;
    padding: 20px 0;
    max-width: 610px;
    margin: 0 auto;
}

.kd-men-hair-style-image-modal .kd-add-photo .kd-upload-photo {
    max-width: 170px;
    height: 170px;
    width: 100%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    position: relative;
    background-color: #f5f5f7;
    margin-right: 1rem;
    margin-left: 1rem;
    text-align: center;
    align-items: center;
}

.kd-men-hair-style-image-modal .kd-add-photo .kd-upload-photo img {
    object-fit: contain;
    max-width: 100%;
    outline: 0;
    vertical-align: middle;
}

.kd-men-hair-style-image-modal .kd-add-photo .kd-upload-photo .kd-added {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 26px;
    height: 26px;
    content: "";
    z-index: 9;
}

.kd-men-hair-style-image-modal .kd-add-photo .kd-upload-photo .kd-added svg {
    vertical-align: center;
}

.kd-men-hair-style-image-modal .kd-add-photo .kd-upload-photo svg {
    vertical-align: center;
}

#kd-image-upload-input {
    display: none;
}

/* #kd-edit-box-haricolor {
    display: flex;
} */





.kd-men-hair-style-image-modal .kd-women-add-photo {
    display: flex;
    flex-wrap: wrap;
    padding: 20px 0;
    max-width: 610px;
    margin: 0 auto;
}

.kd-men-hair-style-image-modal .kd-women-add-photo .kd-women-upload-photo {
    max-width: 170px;
    height: 170px;
    width: 100%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    position: relative;
    background-color: #f5f5f7;
    margin-right: 1rem;
    margin-left: 1rem;
    text-align: center;
    align-items: center;
}

.kd-men-hair-style-image-modal .kd-women-add-photo .kd-women-upload-photo img {
    object-fit: contain;
    max-width: 100%;
    outline: 0;
    vertical-align: middle;
}

.kd-men-hair-style-image-modal .kd-women-add-photo .kd-women-upload-photo .kd-women-added {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 26px;
    height: 26px;
    content: "";
    z-index: 9;
}

.kd-men-hair-style-image-modal .kd-add-photo .kd-women-upload-photo .kd-added svg {
    vertical-align: center;
}

.kd-men-hair-style-image-modal .kd-women-add-photo .kd-women-upload-photo svg {
    vertical-align: center;
}

#kd-women-image-upload-input {
    display: none;
}

.output {
    display: none;
}

.activeLi {
    border: 1px solid #252526 !important;
}

.kd-navPages-container {
    margin-top: 20px;
}

.d-none {
    display: none;
}
.table{
    font-size: 20px;
   border: 1px solid #c5c5cb;
   width: 97%;
  margin: 10px;
}
.table tr{
   border: 1px solid #c5c5cb;
}
.table td{
 
   border: 1px solid #c5c5cb;
}
.kd-gray-hair-select{
        border: 1px solid #c5c5cb;
}
.kd-gray-hair-human-select{
        border: 1px solid #c5c5cb;
}
#faceted-search-container .filter-heading-wrapper{
    display: none;
}
#faceted-search-container .filter-wrapper{
    display: none;
}
.kd-curl-wave-tab-ul{
    display: none;
}
#kd-curl-wave-women{
    display: none;
}
#kd-base-size-box-curl-wave ul li {

    width: 100% !important;
    justify-content: space-between !important;
}
.slick-arrow{
    background: transparent;
    border: none;
}
.slick-arrow:hover{
    background: transparent;
    border: none;
}
.slick-arrow:focus{
    outline: none !important;
    outline-offset: 1px !important;
     background: transparent;
    border: none;
}
.heroCarousel-slide .heroCarousel-image {
    object-fit: contain;
}
.kd-desktopServices-container {
    display: none;
}
