﻿@charset "UTF-8";

@font-face {
    font-family: 'Futura-Book';
    src: url('../fonts/Futura-Book.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SortsMillGoudy-Regular';
    src: url('../fonts/SortsMillGoudy-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SF-Pro-Bold';
    src: url('../fonts/SF-Pro-Bold.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SF-Pro-Medium';
    src: url('../fonts/SF-Pro-Medium.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SF-Pro-Semibold';
    src: url('../fonts/SF-Pro-Semibold.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SF-Pro-Regular';
    src: url('../fonts/SF-Pro-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

body {
    position: relative;
    font-family: 'Futura-Book';
    -webkit-font-smoothing: antialiased;
}

    a, a:focus, a:focus-visible, :focus, a:hover, body a:hover, body a:focus {
        outline: none;
        text-decoration: none;
    }

        a:not([href]):not([class]), a:not([href]):not([class]):hover {
            color: inherit;
            text-decoration: none;
        }

input:-internal-autofill-selected {
    background-color: transparent !important;
}

ul {
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

.table {
    display: table !important;
    width: 100%;
    margin-bottom: 0;
}

button {
    background: unset;
    border: 0;
    padding: 0;
}

.form-control:focus {
    border-color: #000000;
    outline: 0;
    box-shadow: none;
}

.outer_main {
    min-height: calc(100vh - 60px);
}

section {
    width: 100%;
    clear: both;
}

.block_txt {
    display: block;
}

.container-full {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-1920 {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 60px;
}
/*======= RADIO BTN START =======*/
.contain_box {
    display: inline-block;
    position: relative;
    padding-left: 18px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    margin-top: 3px;
}

    .contain_box input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        left: 2px;
        top: 2px;
        margin-top: 0;
    }

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 18px;
    width: 18px;
    background-color: #ffffff;
    border-radius: 50%;
    border: 1px solid #000000;
}

    .checkmark:after {
        content: "";
        position: absolute;
        display: none;
    }

.contain_box .checkmark:after {
    top: 2px;
    left: 2px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #000000;
}

.contain_box input:checked ~ .checkmark:after {
    display: block;
}
/*======== RADIO BTN END =======*/

/*========= SWITCH BUTTON BEGIN ==========*/
.activation_btn {
    font-size: 14px;
    line-height: 22px;
    margin-top: 5px;
    padding-bottom: 17px;
    position: relative;
    display: flex;
}

.switch {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 1rem;
}

    .switch label {
        margin: 0 5px;
    }

    .switch input:empty {
        margin-left: -999px;
        height: 0;
        width: 0;
        overflow: hidden;
        position: absolute;
        opacity: 0;
    }

        .switch input:empty ~ span {
            display: inline-block;
            position: relative;
            width: 1px;
            text-indent: 0;
            cursor: pointer;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
        }

        .switch input:empty ~ span {
            float: left;
        }

        .switch input:empty ~ span {
            margin: 2px 0;
            height: 30px;
            width: 57px;
            border-radius: 15px;
        }

    .switch.switch-sm input:empty ~ span {
        margin: 2px 0;
        height: 20px;
        width: 40px;
        border-radius: 12px;
    }

    .switch input:empty ~ span:before,
    .switch input:empty ~ span:after {
        position: absolute;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        top: 0;
        bottom: 0;
        left: 0;
        content: ' ';
        -webkit-transition: all 100ms ease-in;
        transition: all 100ms ease-in;
    }

    .switch input:empty ~ span:before,
    .switch input:empty ~ span:after {
        width: 54px;
        border-radius: 15px;
    }

    .switch input:empty ~ span:before {
        background-color: #e4e4e4;
    }

    .switch input:empty ~ span:after {
        height: 20px;
        width: 20px;
        top: 3px;
        bottom: 3px;
        margin-left: 3px;
        font-size: 0.65em;
        text-align: center;
        vertical-align: middle;
    }

    .switch input:empty ~ span:after {
        background-color: #ffffff;
        opacity: 0.9;
    }

    .switch input:checked ~ span:before {
        background-color: #e4e4e4;
    }

    .switch input:checked ~ span:after {
        opacity: 1;
        color: #ffffff;
        background-color: #1c1c1c;
    }

    .switch.switch-sm input:empty ~ span:before,
    .switch.switch-sm input:empty ~ span:after {
        width: 36px;
        border-radius: 12px;
    }

    .switch.switch-sm input:empty ~ span:after {
        height: 18px;
        width: 18px;
        top: 1px;
        bottom: 1px;
        margin-left: 2px;
        font-size: 0.55em;
        text-align: center;
        vertical-align: middle;
    }

    .switch.switch-sm input:checked ~ span:after {
        margin-left: 16px;
    }
/*=========== SWITCH BUTTON END ===========*/

/*======== CHECKBOX BTN BEGIN ========*/
.m-checkbox {
    display: inline-block;
    position: relative;
    cursor: pointer;
    font-size: 1rem;
    margin-right: 12px;
    margin-top: 1px;
    transition: none;
}

    .m-checkbox.m-checkbox--single {
        margin-bottom: 0;
        padding: 0;
        margin-top: 0;
    }

    .m-checkbox > input {
        position: absolute;
        z-index: -1;
        opacity: 0;
        filter: alpha(opacity=0);
    }

    .m-checkbox.m-checkbox--solid > span {
        background-color: #ffffff;
        border-radius: 2px;
        /* position: absolute;
    top: 0;
    left: 0; */
        display: block;
        height: 18px;
        border: 1px solid #dddddd;
        width: 18px;
    }

    .m-checkbox.m-checkbox--solid > input:checked ~ span {
        background-color: #000000;
        border: 1px solid #000000;
    }

    .m-checkbox > span:after {
        top: 50%;
        left: 50%;
        margin-left: -2px;
        margin-top: -6px;
        width: 5px;
        height: 10px;
        border-width: 0 2px 2px 0 !important;
        transform: rotate(45deg);
    }

    .m-checkbox > span:after {
        content: '';
        position: absolute;
        display: none;
    }

    .m-checkbox.m-checkbox--solid > span:after {
        border: solid #ffffff;
    }

    .m-checkbox > input:checked ~ span:after {
        display: block;
    }
/*======== CHECKBOX BTN END ========*/

/*============ SUCCESS TOAST START ==============*/
.fail_toast_mssg {
    display: none;
}

.success_toast_box {
    position: fixed;
    top: 0;
    right: 50%;
    transform: translate(50%, 0);
    padding: 10px;
    z-index: 9999;
}

.success_toast {
    background-color: #272727;
    color: #000;
    padding: 15px;
    border-radius: 2px;
    box-shadow: 0 0 9px #000000ba;
    position: relative;
    width: 400px;
}

.success_head {
    border: 0;
    background: transparent;
}

.success_body {
    background: transparent;
    padding-top: 10px;
}

    .success_body p {
        font-size: 14px;
        color: #bebebe;
        margin-bottom: 0;
    }

.success_rect {
    border: 2px solid #97d8ab;
    border-radius: 6px;
    margin-right: 10px;
    display: flex;
    align-items: center;
}

    .success_rect span {
        font-size: 22px;
        line-height: 19px;
        margin-left: -1px;
        font-weight: 600;
        color: #97d8ab;
    }

.success_head strong {
    font-size: 18px;
    font-family: 'Segoe UI';
    color: #fff;
    margin-left: 5px;
    margin-bottom: 1px;
    font-weight: 400;
}

.toast_btn {
    opacity: 0;
    transform: rotate(45deg);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.toast.fade.show .toast_btn {
    opacity: 1;
    transform: rotate(0deg);
}

.progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 6px;
    background-color: #047560;
    width: 0%;
    transition: width 3s linear;
    border-radius: 1px;
}

/*======================= SUCCESS TOAST END ==========================*/

/*======================= FAILURE TOAST START ==========================*/
.failure_toast_box {
    position: fixed;
    top: 0;
    right: 50%;
    transform: translate(50%, 0);
    padding: 10px;
    z-index: 9999;
}

.failure_toast {
    background-color: #272727;
    color: #000;
    padding: 15px;
    border-radius: 2px;
    box-shadow: 0 0 9px #000000ba;
    position: relative;
    width: 400px;
}

.failure_head {
    border: 0;
    background: transparent;
}

.failure_body {
    background: transparent;
    padding-top: 10px;
}

    .failure_body p {
        font-size: 14px;
        color: #bebebe;
        margin-bottom: 0;
    }

.failure_rect {
    border: 2px solid #e20613;
    border-radius: 6px;
    margin-right: 10px;
    display: flex;
    align-items: center;
}

    .failure_rect span {
        font-size: 22px;
        font-weight: 600;
        color: #e20613;
    }

.failure_head strong {
    font-size: 18px;
    font-family: 'Segoe UI';
    color: #fff;
    margin-left: 5px;
    margin-bottom: 1px;
    font-weight: 400;
}

.toast_btn {
    opacity: 0;
    transform: rotate(45deg);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.toast.fade.show .toast_btn {
    opacity: 1;
    transform: rotate(0deg);
}

.progress-bar-fail {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 6px;
    background-color: #e20613;
    width: 0%;
    transition: width 3s linear;
    border-radius: 1px;
}

/*======================= FAILURE TOAST END ==========================*/

/*======== COMING SOON START =======*/
.comingSec_0 {
    background: url('../images/coming-soon-image.jpg') no-repeat;
    background-size: cover;
    background-position: top center;
    height: calc(100vh - 60px);
    display: table;
    position: relative;
}

.table_cell {
    display: table-cell;
    vertical-align: middle;
}

.comingSec_1 {
    position: absolute;
    top: 0;
}

.comingSec_10 {
    max-width: 952px;
    margin: 0 auto;
}

.comingSec_11 {
    width: 100%;
    display: flex;
    gap: 150px;
    align-items: center;
    justify-content: space-between;
    border-top: 1px dashed #ffffff;
    padding-top: 20px;
    margin-top: 180px;
}

.comingSec_1 img {
    width: 94px;
}

.comSec_heading {
    position: relative;
}

    .comSec_heading h1, .comSec_heading p {
        font-family: 'SortsMillGoudy-Regular';
        font-size: 158px;
        line-height: 160px;
        color: #ffffff;
        margin-bottom: 0;
        position: relative;
    }

        .comSec_heading p.borderTxt {
            position: absolute;
            top: 4px;
            left: 4px;
            -webkit-text-stroke: 1px #707070;
            color: rgb(0 0 0 / 0%);
        }

.comingSec_11 h2 {
    font-family: 'Futura-Book';
    font-size: 35px;
    line-height: 44px;
    color: #ffffff;
    margin-bottom: 0;
    flex-shrink: 0;
}

.comingSec_11 p {
    font-family: 'Futura-Book';
    font-size: 16px;
    line-height: 22px;
    color: #ffffff;
    margin-bottom: 0;
}

footer {
    width: 100%;
    background-color: #000000;
    padding: 19px 0;
}

    footer p {
        font-family: 'Futura-Book';
        font-size: 16px;
        line-height: 22px;
        color: #ffffff;
        margin-bottom: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

        footer p img {
            width: unset;
            height: 14px;
        }
/*======== COMING SOON END =========*/

/*========== START SIGNUP CSS ===========*/
.sticky_footer {
    min-height: 100%;
    width: 100%;
}

.signup_box {
    display: table;
    width: 100%;
}

.signup_box_main {
    display: flex;
    min-height: 100vh;
}

.signup_box_left {
    width: 35%;
}

.signup_box_right {
    width: 65%;
}

.back_image {
    width: 100%;
    height: 100%;
    position: relative;
    background: url('../images/background-cred.png') no-repeat;
    background-size: cover;
    background-position: 0 50%;
    /* padding-left: 30%;
    padding-top: 12px; */
    display: flex;
    padding-top: 12px;
    flex-direction: column;
    align-items: center;
}

    .back_image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        background-position: left bottom;
    }

.sc-kAzzGY {
    text-align: left;
}

    .sc-kAzzGY img {
        width: 95px;
    }

.content_tfg {
    position: absolute;
    top: 40%;
    color: #ffffff;
}

.signup_box .row {
    margin: 0;
}

.content_tfg .bold_dia {
    display: block;
}

.bold_dia {
    font-weight: 700;
}

.content_tfg h1 {
    line-height: 45px;
    font-size: 34px;
    margin-bottom: 25px;
    margin-top: 0;
    font-family: 'SF-Pro-Semibold';
}

.content_tfg p {
    width: 310px;
    font-size: 14px;
    line-height: 19px;
    margin-bottom: 0;
    font-family: 'SF-Pro-Regular';
}

.back_log {
    width: 100%;
    height: 100%;
    display: table;
}

.inner_formDiv {
    display: table-cell;
    vertical-align: middle;
}

.form_groupDiv {
    max-width: 600px;
    /* margin: 0 auto; */
    padding: 80px 0 80px 100px;
}

.Login-sd h1 {
    line-height: 51px;
    font-size: 38px;
    margin-top: 0;
    margin-bottom: 80px;
    font-family: 'SF-Pro-Bold';
}



.form_tp a:hover,
.form_tp a:focus {
    color: #ffffff;
}

.login-form .form-control {
    background: #f7f7f7 none repeat scroll 0 0;
    border: 1px solid #d4d4d4;
    border-radius: 4px;
    font-size: 14px;
    height: 50px;
    line-height: 50px;
}

.main-div {
    background: #ffffff none repeat scroll 0 0;
    border-radius: 2px;
    margin: 10px auto 30px;
    max-width: 38%;
    padding: 50px 70px 70px 71px;
}

.error_div {
    border-color: #dd0f0f !important;
}

.required-message {
    position: absolute;
    color: #C30F16;
    width: auto;
    top: 42px;
    left: 0;
    text-align: left;
    font-size: 13px;
    line-height: 16px;
    display: flex;
    align-items: center;
    gap: 5px;
}

    .required-message img {
        margin-top: -2px;
    }

.error_icon {
    font-size: 12px;
    vertical-align: middle;
}

.login-form .form-group {
    margin-bottom: 10px;
}

.login-form {
    text-align: center;
}

.forgot a {
    color: #777777;
    font-size: 14px;
    text-decoration: underline;
}

.login-form .btn.btn-primary {
    background: #f0ad4e none repeat scroll 0 0;
    border-color: #f0ad4e;
    color: #ffffff;
    font-size: 14px;
    width: 100%;
    height: 50px;
    line-height: 50px;
    padding: 0;
}

.forgot {
    text-align: left;
    margin-bottom: 30px;
}

.botto-text {
    color: #ffffff;
    font-size: 14px;
    margin: auto;
}

.login-form .btn.btn-primary.reset {
    background: #ff9900 none repeat scroll 0 0;
}

.back {
    text-align: left;
    margin-top: 10px;
}

    .back a {
        color: #444444;
        font-size: 13px;
        text-decoration: none;
    }

.form-group {
    position: relative;
    margin-bottom: 30px;
    border-bottom: 1px solid #000;
    border-radius: 0;
}

.form_tp input {
    border: none;
    background: none;
    box-shadow: none;
    padding: 0px;
    font-size: 14px;
    line-height: 19px;
    height: 38px;
    color: #000000;
    font-family: 'SF-Pro-Regular';
}

.icon_eye {
    position: absolute;
    right: 5px;
    font-size: 15px;
    top: 11px;
    color: #000000;
    cursor: pointer;
}

.form_tp label {
    font-weight: normal;
    margin: 0;
    font-family: 'SF-Pro-Regular';
    font-size: 14px;
    line-height: 19px;
}

.form_tp input::placeholder {
    color: #000000;
}

.form_chk_one {
    width: 100%;
    margin-top: 0;
    margin-bottom: 35px;
    display: flex;
    justify-content: space-between;
}

.form-check.form_chk_one {
    justify-content: flex-end;
}

.form_tp .form-check-input {
    height: unset;
    vertical-align: text-top;
    margin-right: 3px;
}

.btn_primary {
    background: #000000;
    border-radius: 2px;
    border: 0;
    width: 100%;
    margin-top: 20px;
    padding: 14px 20px;
    font-size: 14px;
    line-height: 19px;
    color: #ffffff;
    text-align: center;
    font-family: 'SF-Pro-Regular';
}

    .btn_primary:hover {
        background-color: #000000;
        color: #ffffff;
    }

    .btn_primary:focus, .btn_primary.btn-check:checked + .btn, .btn_primary.btn.active, .btn_primary.btn.show, .btn_primary.btn:first-child:active, :not(.btn-check) + .btn_primary.btn:active {
        outline: none;
        background-color: #000000;
        color: #ffffff;
    }


    .btn_primary .spinner-grow {
        width: 1rem;
        height: 1rem;
        vertical-align: -4px;
        margin-right: 3px;
    }


    .btn_primary.btn_lign {
        background: #F5F5F5;
        color: #000;
    }

        .btn_primary.btn_lign:hover {
            color: #000;
        }

.form_tp input:focus {
    border: none;
    background: none;
    box-shadow: none;
    border-bottom: 1px solid #000;
    border-radius: 0;
    padding: 0px;
}

.content_terms {
    font-size: 14px;
    margin: 10px 0 14px;
    width: 100%;
    font-family: 'SF-Pro-Regular';
}

    .content_terms p {
        font-size: 14px;
        line-height: 19px;
        font-family: 'SF-Pro-Regular';
        margin-bottom: 0;
    }

.right_forgot a {
    color: #000;
}

    .right_forgot a:hover {
        color: #000;
    }

.timer_count {
    color: #000000;
    font-size: 14px;
    line-height: 19px;
    text-decoration: underline;
    font-family: 'SF-Pro-Regular';
}

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

.form-group .eye_icon {
    font-size: 16px;
    font-weight: 400;
}

.form_grp_botoom_mrgn {
    margin-bottom: 16px;
}
/*============ END SIGNUP CSS =============*/

/*============ START OTP CSS ============*/
.otp_box .form-group {
    margin-bottom: 16px;
}
/*============ END OTP CSS ============*/

/*============ START Login CSS ============*/
.Check_box_chk .Check_box_txt {
    font-size: 14px;
    line-height: 19px;
    color: #000000;
    font-family: 'SF-Pro-Regular';
}
/*============ END Login CSS ============*/

/*============ Header START ============*/
.ak_parts_head {
    background: #fff;
    padding: 10px 0;
    margin: 0 auto;
    display: table;
    z-index: 11;
    position: relative;
    width: 100%;
    box-shadow: 10px 0px 22px 7px #00000014;
}

.header_left {
    display: flex;
    align-items: center;
    gap: 80px;
}

.header_logo a img {
    height: 52px;
}

.header_inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header_menu_sublist {
    display: flex;
    align-items: center;
    gap: 55px;
}

    .header_menu_sublist li a {
        font-size: 16px;
        line-height: 21px;
        color: #000000;
        font-family: 'SF-Pro-Regular';
    }

.head_dropdown a {
    display: flex;
    align-items: center;
}

.arrow_up {
    transform: rotate(180deg);
    transition: all .5s ease;
}

span:not(.arrow_up) {
    transition: transform 0.2s ease-in-out;
}

.header_right {
    display: flex;
    gap: 60px;
    height: 40px;
}

.headerSearch {
    width: 500px;
}

.search_dropdown {
    width: 100%;
    position: relative;
}

.search_ak_parts {
    width: 100%;
    display: flex;
    border: 1px solid #dddddd;
    border-radius: 2px;
    position: relative;
}

    .search_ak_parts a {
        width: 46px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-right: 1px solid #dddddd;
        flex-shrink: 0;
    }

    .search_ak_parts span {
        font-size: 24px;
        color: #dddddd;
    }

    .search_ak_parts input {
        width: 100%;
        font-family: 'SF-Pro-Regular';
        font-size: 14px;
        line-height: 19px;
        color: #000000;
        height: 40px;
        /* padding: 10px 20px; */
        display: flex;
        align-items: center;
        padding: 0 20px;
        background: unset;
        border: 0;
    }

        .search_ak_parts input::placeholder {
            color: #959595;
        }

.login_btns {
    display: flex;
    align-items: center;
    gap: 24px;
}

.btn_white, .btn_black {
    border: 1px solid #1C1C1C;
    border-radius: 2px;
    color: #000000;
    height: 42px;
    display: inline-flex;
    align-items: center;
    padding: 0 20px;
    font-family: 'SF-Pro-Regular';
    font-size: 16px;
    line-height: 21px;
}

.btn_black {
    color: #ffffff;
    background-color: #000000;
}

.shopping_cart, .ak_profile {
    color: #000;
    display: flex;
    position: relative;
}

    .shopping_cart span {
        font-size: 22px;
        line-height: 22px;
    }

.ak_log_signup_btns {
    display: flex;
    align-items: center;
    gap: 12px;
}

.profile_dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 33px;
    right: -30px;
    background-color: #ffffff;
    min-width: 200px;
    box-shadow: 0 2px 6px #0000002e;
    padding: 0 15px;
    z-index: 1;
}

    .dropdown-content ul li {
        width: 100%;
        border-bottom: 1px solid #f7f3f3;
        padding: 6px 0;
    }

    .dropdown-content .profile_drop li a {
        text-decoration: none;
        font-weight: normal;
        color: #000000;
        font-size: 14px;
        line-height: 24px;
        display: block;
        height: unset;
        font-family: 'SF-Pro-Regular';
    }



.shopping_cart .cart_value {
    background: #C30F16;
    width: 15px;
    height: 15px;
    font-size: 11px;
    line-height: 16px;
    display: flex;
    padding-left: 1px;
    padding-bottom: 1px;
    padding-top: 3px;
    color: #ffffff;
    border-radius: 50%;
    margin: 0;
    position: absolute;
    top: -4px;
    right: -4px;
    text-align: center;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgb(0 0 0 / 28%);
}
/*============ Header END ============*/

/*============ Main Body START ============*/
.ak_parts_main_body {
    min-height: calc(100vh - 72px);
}
/*============ Main Body END ============*/

/*============ Footer START ============*/
.footer_outer {
    background-color: #1c1c1c;
    color: #ffffff;
    padding: 0;
}

.footer_sec1 {
    display: flex;
    align-items: center;
    gap: 160px;
    padding: 90px 0 80px;
}

.footer_sec1_inner1 {
    width: 230px;
}

    .footer_sec1_inner1 img {
        height: 75px;
    }

.footer_sec1_inner1_txt {
    margin-top: 30px;
}

    .footer_sec1_inner1_txt h3 {
        font-size: 32px;
        line-height: 43px;
        font-family: 'SF-Pro-Regular';
        margin-bottom: 10px;
    }

    .footer_sec1_inner1_txt p {
        font-size: 16px;
        line-height: 21px;
        font-family: 'SF-Pro-Medium';
        margin-bottom: 15px;
        display: unset;
    }

.contact_btn {
    font-size: 14px;
    line-height: 19px;
    font-family: 'SF-Pro-Regular';
    display: inline-flex;
    align-items: center;
    color: #000000;
    background: #FFFFFF;
    height: 38px;
    padding: 0 80px;
    margin-top: 15px;
    margin-bottom: 40px;
}

.footer_sec1_inner11 {
    width: calc(100% - 390px);
    display: flex;
}

.footer_sec1_inner2 {
    width: 33.33%;
}

.footer_sec2 {
    width: 100%;
    padding: 16px 0;
    border-top: 1px solid #ffffff;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: space-between;
}

    .footer_sec2 p, .footer_sec2 p a {
        font-size: 14px;
        line-height: 20px;
        color: #ffffff;
        text-align: center;
        margin-bottom: 0;
        gap: 5px;
        font-family: 'SF-Pro-Regular';
    }

        .footer_sec2 p a {
            text-decoration: underline;
        }

.footer_sec1_inner2 h3 {
    font-size: 23px;
    line-height: 37px;
    margin-bottom: 25px;
    font-family: 'SF-Pro-Medium';
}

.footer_menu_list a {
    color: #ffffff;
    font-size: 14px;
    line-height: 19px;
    font-family: 'SF-Pro-Regular';
}

.footer_menu_list li {
    margin-bottom: 10px;
}

    .footer_menu_list li:last-child {
        margin-bottom: 0;
    }

.ak_social_icons_list {
    display: flex;
    align-items: center;
    gap: 25px;
}

    .ak_social_icons_list li img {
        height: 18px;
    }
/*============ Footer END ============*/

/*==== BREADCRUMB BEGIN ====*/
.header_breadcrumb {
    padding-top: 80px;
    padding-bottom: 15px;
}

    .header_breadcrumb.header_breadcrumb2 {
        padding-top: 30px;
        padding-bottom: 0;
    }

.breadcrumb_list {
    border-bottom: 1px solid #dddddd;
    padding-bottom: 15px;
}

    .breadcrumb_list ul {
        padding: 0;
        margin: 0;
    }

        .breadcrumb_list ul li {
            display: inline-block;
        }

    .breadcrumb_list li a {
        color: #000000;
        font-size: 16px;
        line-height: 21px;
        font-family: 'SF-Pro-Regular';
    }

.bold_txt {
    color: #000000;
    font-size: 24px;
    vertical-align: middle;
}

.text-orange {
    color: #000000;
    font-size: 16px;
    line-height: 21px;
    font-family: 'SF-Pro-Medium';
}
/*==== BREADCRUMB END ====*/

/*====== CAROUSEL CSS START =======*/
.owl-theme .owl-dots {
    text-align: center;
    -webkit-tap-highlight-color: transparent
}

    .owl-theme .owl-dots .owl-dot {
        display: inline-block;
        zoom: 1
    }

        .owl-theme .owl-dots .owl-dot span {
            width: 9px;
            height: 9px;
            margin: 5px 5px;
            background: transparent;
            border: 1px solid #ffffff;
            display: block;
            backface-visibility: visible;
            -webkit-backface-visibility: visible;
            transition: opacity .2s ease;
            border-radius: 9px;
            -webkit-transition: all 300ms ease-in-out 0s;
            -o-transition: all 300ms ease-in-out 0s;
            -ms-transition: all 300ms ease-in-out 0s;
            transition: all 300ms ease-in-out 0s;
        }

        .owl-theme .owl-dots .owl-dot.active span {
            width: 9px;
        }

        .owl-theme .owl-dots .owl-dot.active span,
        .owl-theme .owl-dots .owl-dot:hover span {
            background: #ffffff;
        }

.owl-carousel,
.owl-carousel .owl-item {
    -webkit-tap-highlight-color: transparent;
    position: relative;
}

.owl-carousel {
    display: none;
    width: calc(100% - 120px);
    z-index: 1;
    font-size: 0;
}

    .owl-carousel .owl-stage {
        position: relative;
        touch-action: pan-Y;
        -ms-touch-action: pan-Y;
        backface-visibility: hidden;
        -moz-backface-visibility: hidden;
    }

        .owl-carousel .owl-stage:after {
            content: ".";
            display: block;
            clear: both;
            visibility: hidden;
            line-height: 0;
            height: 0;
        }

    .owl-carousel .owl-stage-outer {
        position: relative;
        overflow: hidden;
        transform: translate3d(0, 0, 0);
        -webkit-transform: translate3d(0, 0, 0);
    }

    .owl-carousel .owl-item,
    .owl-carousel .owl-wrapper {
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
        -moz-backface-visibility: hidden;
        -ms-backface-visibility: hidden;
        transform: translate3d(0, 0, 0);
        -webkit-transform: translate3d(0, 0, 0);
        -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0)
    }

    .owl-carousel .owl-item {
        min-height: 1px;
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
        -webkit-touch-callout: none;
        background-color: #ffffff;
        margin: 0 15px !important;
        border-radius: 0;
        overflow: hidden;
    }

        .owl-carousel .owl-item img {
            display: block;
            width: 100%;
            object-fit: contain;
        }

    .owl-carousel .owl-dots.disabled,
    .owl-carousel .owl-nav.disabled {
        display: none;
    }

    .no-js .owl-carousel,
    .owl-carousel.owl-loaded {
        display: block;
    }

    .owl-carousel.owl-loading {
        opacity: 0;
        display: block;
    }

    .owl-carousel.owl-hidden {
        opacity: 0;
    }

    .owl-carousel.owl-refresh .owl-item {
        visibility: hidden;
    }

    .owl-carousel.owl-drag .owl-item {
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }

    .owl-carousel.owl-grab {
        cursor: move;
        cursor: grab;
    }

    .owl-carousel .animated {
        animation-duration: 1s;
        animation-fill-mode: both;
    }

    .owl-carousel .owl-animated-in {
        z-index: 0;
    }

    .owl-carousel .owl-animated-out {
        z-index: 1;
    }

    .owl-carousel .fadeOut {
        animation-name: fadeOut;
    }

@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.owl-carousel .owl-dot {
    cursor: pointer;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.owl-carousel button.owl-dot {
    background: 0 0;
    color: inherit;
    border: none;
    padding: 0 !important;
    font: inherit;
}

.owl-height {
    transition: height .5s ease-in-out;
}

.owl-carousel .owl-stage {
    display: flex;
}

.features_Grid .owl-item .item {
    height: 100%;
    overflow: hidden;
    box-shadow: unset;
    padding: 0;
    border-radius: 0;
    background: #ffffff;
    text-align: left;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.features_Grid .owl-nav {
    font-size: 30px;
    margin-top: 20px;
    position: relative;
}

    .features_Grid .owl-nav button {
        position: absolute;
        font-size: 55px;
        line-height: 30px;
        color: #707070;
        -webkit-font-smoothing: antialiased;
        overflow: hidden;
        padding: 0px 10px 10px;
    }

    .features_Grid .owl-nav .owl-prev {
        right: 23%;
    }

    .features_Grid .owl-nav .owl-next {
        right: 20%;
    }

.features_Grid .owl-item .item .card-body {
    position: relative;
}
/*======= CAROUSEL CSS END ========*/

/*============ Index START ============*/
.ak_main_banner_sec {
    background: url('../images/main-banner.png') no-repeat;
    background-size: cover;
    height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}



.ak_main_banner_subsec h1 {
    font-size: 70px;
    line-height: 93px;
    font-family: 'SF-Pro-Bold';
    color: #ffffff;
    margin-bottom: 32px;
}

    .ak_main_banner_subsec h1 span {
        display: block;
    }

.ak_main_banner_subsec p {
    font-size: 16px;
    line-height: 21px;
    font-family: 'SF-Pro-Regular';
    color: #ffffff;
    margin-bottom: 35px;
}

.search_deal_box {
    display: flex;
    align-items: flex-start;
    width: 662px;
    margin: 0 auto;
    margin-top: 30px;
    position: relative;
}

    .search_deal_box input {
        font-size: 14px;
        line-height: 19px;
        color: #000000;
        padding: 0 18px;
        background-color: #ffffff;
        border-right: 0;
        border-top-left-radius: 3px;
        border-bottom-left-radius: 3px;
        width: 100%;
        height: 48px;
        display: flex;
        align-items: center;
        font-family: 'SF-Pro-Regular';
        border: 0.5px solid #ffffff;
        border-right: 0;
    }

        .search_deal_box input::placeholder {
            color: #8D8D8D;
            font-size: 14px;
            line-height: 19px;
        }

    .search_deal_box a {
        padding: 0 16px;
        background-color: #000000;
        color: #ffffff;
        border-top-right-radius: 3px;
        border-bottom-right-radius: 3px;
        height: 48px;
        display: flex;
        align-items: center;
        border: 0.5px solid #ffffff;
        border-left: 0;
    }

.ak_btn_div {
    display: inline-block;
}

.ak_btn {
    background: #ffffff;
    border-radius: 2px;
    font-size: 18px;
    line-height: 24px;
    font-family: 'SF-Pro-Regular';
    height: 52px;
    padding: 0 30px;
    display: flex;
    align-items: center;
    color: #000000;
}

.shop_cat_sec {
    padding: 100px 0;
}

.shop_cat0 {
    width: 100%;
    display: flex;
    gap: 60px;
}

.shop_cat1 {
    width: calc(33.33% - 30px);
}

    .shop_cat1 h3 {
        font-size: 35px;
        line-height: 40px;
        color: #000000;
        font-family: 'SF-Pro-Bold';
        margin-bottom: 32px;
    }

    .shop_cat1 p {
        font-size: 15px;
        line-height: 24px;
        color: #000000;
        font-family: 'SF-Pro-Regular';
        margin: 0;
    }

.shop_cat2 {
    width: calc(66.66% - 30px);
}

    .shop_cat2 ul {
        width: 100%;
        display: flex;
        gap: 40px;
        height: 100%;
    }

        .shop_cat2 ul li {
            width: calc(50% - 20px);
            border: 1px solid #dddddd;
            border-radius: 3px;
            overflow: hidden;
            position: relative;
        }

            .shop_cat2 ul li a {
                display: inline-block;
                height: 100%;
            }

.pro_img {
    width: 100%;
    height: 100%;
}

    .pro_img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.pro_cont {
    position: absolute;
    left: 15px;
    right: 15px;
    bottom: 15px;
    padding: 0 20px;
    font-family: 'SF-Pro-Medium';
    background-color: #ffffff;
    border-radius: 3px;
    transition: all .6s ease;
    -moz-transition: all .6s ease;
    -webkit-transition: all .6s ease;
    -o-transition: all .6s ease;
    height: 50px;
    display: flex;
    align-items: center;
}

    .pro_cont p {
        font-size: 18px;
        line-height: 24px;
        width: 100%;
        color: #000000;
        font-family: 'SF-Pro-Medium';
        margin-bottom: 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

        .pro_cont p span {
            font-size: 30px;
            font-weight: 300;
            color: #000000;
        }


.shop_cat2 ul li:hover .pro_cont {
    background-color: #000000;
    left: 0;
    right: 0;
    bottom: 40px;
    border-radius: 0;
}

    .shop_cat2 ul li:hover .pro_cont p,
    .shop_cat2 ul li:hover .pro_cont p span {
        color: #ffffff;
    }

.ctgry_inner {
    width: 100%;
    height: 700px;
    display: flex;
    border-bottom: 1px solid #DFE0DC;
}

.image_part {
    width: 58%;
}

    .image_part img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.text_part {
    width: 42%;
    padding: 80px;
    background-color: #000000;
    position: relative;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
}

    .text_part h2 {
        font-family: 'SF-Pro-Bold';
        color: #ffffff;
        font-size: 35px;
        line-height: 47px;
        margin-bottom: 24px;
    }

    .text_part p {
        font-family: 'SF-Pro-Regular';
        font-size: 16px;
        line-height: 21px;
        color: #ffffff;
        max-width: 640px;
        margin-bottom: 35px;
    }

.ak_banner_sec_1 .ak_btn {
    height: 38px;
    padding: 0 15px;
    font-size: 16px;
    line-height: 21px;
}

.ak_deal_head h3 {
    font-family: 'SF-Pro-Bold';
    font-size: 35px;
    line-height: 47px;
    margin-bottom: 50px;
}

.ak_deal_body {
    display: flex;
    align-items: center;
    gap: 28px;
    height: 816px;
}

.ak_deal_body_left {
    background-color: #f6f6f6;
    border: 1px solid #E2E2E2;
    border-radius: 2px;
    width: calc(100% - 488px);
    padding: 0 20px 30px;
    height: 816px;
}

.ak_deal_body_right {
    background-color: #f6f6f6;
    border: 1px solid #E2E2E2;
    border-radius: 2px;
    width: 460px;
    height: 816px;
    overflow: auto;
    scrollbar-width: none;
}

.ak_deal_body_left_11 {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 103px 0;
}

.ak_deal_body_left_img {
    width: 560px;
}

.icons_box {
    display: flex;
    gap: 2px;
}

    .icons_box img {
        width: 12px;
    }

.ak_deal_body_left_desc_11 h3 {
    font-family: 'SF-Pro-Bold';
    font-size: 20px;
    line-height: 27px;
    margin-bottom: 9px;
}

.ratings_div {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-bottom: 12px;
}

    .ratings_div span {
        font-size: 12px;
        line-height: 16px;
        color: #000000;
        margin-bottom: 0;
        font-family: 'SF-Pro-Regular';
    }

.ak_deal_body_left_desc_11 h4 {
    font-family: 'SF-Pro-Semibold';
    font-size: 22px;
    line-height: 29px;
    margin-bottom: 48px;
}

.progress_sec {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 15px;
}

.progress-container {
    width: 100%;
    height: 10px;
    background: #eee;
    border-radius: 5px;
    overflow: hidden;
}

.ak_progress p {
    font-family: 'SF-Pro-Regular';
    font-size: 16px;
    line-height: 21px;
    margin-bottom: 10px;
}

.ak_deals_sec .progress-bar {
    position: unset;
    width: 70%;
    height: 100%;
    border-radius: 0 5px 5px 0;
    background: #000000;
    transition: width 0.3sease;
}

.ak_progress_timing, .ak_deal_body_left_desc_12 {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ak_progress_timing {
    margin-bottom: 50px;
}

.ak_progress_timing_1 span {
    font-family: 'SF-Pro-Regular';
    font-size: 16px;
    line-height: 21px;
    border: 1px solid #E6E6E6;
    border-radius: 2px;
    background-color: #ffffff;
    padding: 0 10px;
    height: 40px;
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    margin-top: 10px;
}

.ak_progress_timing_1 p {
    font-family: 'SF-Pro-Regular';
    font-size: 12px;
    line-height: 16px;
    margin-bottom: 0;
    margin-left: 5px;
}

.ak_deal_body_left_desc_12 .btn_black, .ak_deal_body_left_desc_12 .ak_btn {
    height: 40px;
    font-size: 14px;
    line-height: 19px;
}

.ak_deal_body_left_desc_12 .btn_black {
    padding: 0 35px;
}

.ak_deal_body_left_desc_12 .ak_btn {
    border: 1px solid #E6E6E6;
    padding: 0 25px;
}

.ak_deal_slider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin: 20px 0 0;
    position: relative;
}

.dotProductWrapper {
    display: flex;
    scroll-behavior: smooth;
    overflow-x: hidden;
    gap: 16px;
}

.dotProduct {
    cursor: pointer;
    position: relative;
    display: inline-block;
    padding: 0;
    box-sizing: border-box;
    vertical-align: top;
}


    .dotProduct img {
        background: #ffffff;
        border: 1px solid #E2E2E2;
        border-radius: 2px;
        width: 266px;
        height: 204px;
        object-fit: contain;
        padding: 1px;
        transition: all 500ms ease-in-out;
    }

.navArrow {
    background-color: transparent;
    border: none;
    cursor: pointer;
    user-select: none;
    padding: 0;
    color: #000000;
    position: absolute;
}

    .navArrow.prevArrow {
        left: 0;
        z-index: 1;
    }

    .navArrow.nextArrow {
        right: 0;
    }

    .navArrow span {
        border: 1px solid #E6E6E6;
        border-radius: 2px;
        padding: 20px 0;
        background-color: #f6f6f6;
    }

.ak_deal_body_right {
    padding: 30px 0 0;
}

    .ak_deal_body_right h3 {
        font-family: 'SF-Pro-Bold';
        font-size: 22px;
        line-height: 29px;
        margin-bottom: 0;
        padding: 0 20px;
    }

.ak_best_prod_list li {
    padding: 25px 20px;
    border-bottom: 1px solid #ddd;
}

    .ak_best_prod_list li:last-child {
        border-bottom: 0;
    }

.ak_best_prod_list_subsec {
    display: flex;
    align-items: center;
    gap: 25px;
}

.ak_best_prod_list_left {
    background-color: #ffffff;
    border: 1px solid #E2E2E2;
    border-radius: 2px;
    height: 100px;
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ak_best_prod_list_right h3 {
    font-family: 'SF-Pro-Bold';
    font-size: 20px;
    line-height: 27px;
    margin-bottom: 8px;
    color: #000000;
}

.ak_best_prod_list_right h4 {
    font-family: 'SF-Pro-Semibold';
    font-size: 16px;
    line-height: 21px;
    margin-bottom: 0;
    color: #000000;
}

.ak_new_arr_sec {
    padding-bottom: 100px;
}

.ak_new_arr_head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

    .ak_new_arr_head h3 {
        font-family: 'SF-Pro-Bold';
        font-size: 35px;
        line-height: 47px;
        margin-bottom: 0;
    }

.ak_new_arr_sec .btn_black {
    height: 48px;
}

.product_card {
    width: 100%;
    border: 1px solid #E2E2E2;
}

.product_img {
    width: 100%;
    margin-bottom: 15px;
}

    .product_img > a {
        background-color: #f7f7f7;
        height: 382px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-bottom: 1px solid #E2E2E2;
    }

    .product_img img {
        width: 100%;
        height: 200px;
        object-fit: contain;
        border: 1px solid #f4f4f4;
        margin-bottom: 10px;
    }

.product_content {
    padding: 10px;
    padding-bottom: 0;
}

    .product_content h3,
    .product_content h3 a {
        font-size: 16px;
        line-height: 21px;
        color: #000000;
        margin-bottom: 10px;
        width: 100%;
        font-family: 'SF-Pro-Bold';
    }

        .product_content h3 a {
            margin-bottom: 0;
        }

    .product_content h5 {
        font-size: 14px;
        line-height: 18px;
        font-weight: normal;
        color: #777E5D;
        margin-top: 0;
        margin-bottom: 10px;
    }

    .product_content p {
        font-size: 16px;
        line-height: 22px;
        color: #000000;
        display: flex;
        gap: 10px;
        margin-bottom: 0;
    }

.actual_price {
    font-size: 16px;
    line-height: 21px;
    font-family: 'SF-Pro-Bold';
}

.orig_price {
    color: #A1A1A1;
    text-decoration: line-through;
    font-family: 'SF-Pro-Regular';
}

.discount_per {
    font-size: 15px;
    color: #C30F16;
}

.product_content h4 {
    font-size: 17px;
    line-height: 23px;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 0;
    color: #000000;
}

.mobile_slider {
    width: 100%;
}


    .mobile_slider .owl-carousel, .mobile_slider .owl-carousel .owl-item img {
        width: 100%;
    }

    .mobile_slider .owl-theme .owl-dots {
        margin-top: 10px;
        display: block !important;
    }

.card_btns {
    width: 100%;
    border-top: 1px solid #E2E2E2;
    border-top: 0;
    display: flex;
}

.addTo_wish {
    width: 70px;
    height: 42px;
    display: flex;
    padding: 4px;
    background-color: #ffffff;
    border-top: 1px solid #dddddd;
    align-items: center;
    justify-content: center;
}

    .addTo_wish i {
        font-size: 20px;
        color: #777E5D;
    }

        .addTo_wish i.fa-solid,
        #addTo_wish i.fa-solid {
            color: #C30F16;
        }

.product_card .btn_black {
    min-width: 100px;
    width: 100%;
    justify-content: center;
    height: 42px;
    font-size: 15px;
    line-height: 20px;
}

.add_fav {
    font-variation-settings: 'FILL' 1;
    color: #C30F16;
}

.ak_join_drive_sec {
    background: url('../images/Grid.png') no-repeat;
    height: 370px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    padding: 80px 0;
}

.ak_join_drive_subsec {
    max-width: 918px;
    text-align: center;
}

    .ak_join_drive_subsec h3 {
        font-size: 38px;
        line-height: 51px;
        margin-bottom: 28px;
        font-family: 'SF-Pro-Bold';
    }

    .ak_join_drive_subsec p {
        font-size: 16px;
        line-height: 21px;
        margin-bottom: 45px;
        font-family: 'SF-Pro-Regular';
    }

.search_deal_box.subscription_input {
    width: 530px;
}

    .search_deal_box.subscription_input input {
        font-size: 16px;
        line-height: 21px;
        font-family: 'SF-Pro-Regular';
        padding: 0 25px;
        border: 1px solid #000000;
    }

        .search_deal_box.subscription_input input::placeholder {
            font-size: 16px;
            line-height: 21px;
            font-family: 'SF-Pro-Regular';
        }

    .search_deal_box.subscription_input a {
        padding: 0 25px;
        background-color: #000000;
        color: #ffffff;
        text-decoration: none;
        font-size: 16px;
        line-height: 21px;
        border-top-right-radius: 3px;
        border-bottom-right-radius: 3px;
        font-family: 'SF-Pro-Regular';
        height: 48px;
        display: flex;
        align-items: center;
        border: 0;
    }

.subscribe_error .required-message {
    top: 52px;
}
/*============ Index END ============*/


/*==== PRIVACY POLICY & TERMS OF USE PAGE START======*/
.policies_sec {
    padding-top: 25px;
}

.PriPoli_tc {
    padding: 100px 0;
}

    .PriPoli_tc h3 {
        margin-top: 0;
        margin-bottom: 15px;
        font-size: 35px;
        color: #000000;
        line-height: 45px;
        font-weight: 700;
    }


    .PriPoli_tc h4 {
        color: #000000;
        font-size: 18px;
        line-height: 24px;
        margin-top: 40px;
        margin-bottom: 15px;
        padding: 20px;
        background: #f2f2f2;
        border-left: 3px solid #000000;
        font-family: 'SF-Pro-Semibold';
    }

.policies_sec .tc_main_title {
    margin-top: 0;
}

.PriPoli_tc span {
    font-size: 18px;
    line-height: 24px;
    font-family: 'SF-Pro-Semibold';
}

.PriPoli_tc p {
    font-size: 16px;
    line-height: 21px;
    margin-bottom: 15px;
    color: #000000;
    font-family: 'SF-Pro-Regular';
}

    .PriPoli_tc p:last-child {
        margin-bottom: 0;
    }

    .PriPoli_tc p a.links_color {
        text-decoration: none;
        color: #0066CC;
        cursor: pointer;
    }

.PriPoli_tc .links_color {
    color: #0066CC;
    font-size: 16px;
    line-height: 21px;
    font-family: 'SF-Pro-Regular';
}

.PriPoli_tc h5 {
    color: #000000;
    font-size: 16px;
    line-height: 21px;
    font-family: 'SF-Pro-Semibold';
    margin-top: 20px;
    margin-bottom: 15px;
}

.PriPoli_tc .sp_title, .PriPoli_tc .sp_title span {
    font-size: 16px;
    line-height: 21px;
}

.inner_content {
    margin-left: 20px;
}
/*==== PRIVACY POLICY & TERMS OF USE PAGE END======*/

/*==== Contact us START======*/
.contact_sec {
    padding: 100px 0;
}

.contact_head {
    margin-bottom: 42px;
}

    .contact_head h3 {
        font-size: 35px;
        line-height: 47px;
        font-family: 'SF-Pro-Bold';
        margin-bottom: 15px;
    }

    .contact_head p {
        font-size: 16px;
        line-height: 21px;
        font-family: 'SF-Pro-Regular';
        margin-bottom: 0;
    }

.contact_box {
    width: 1364px;
    display: flex;
    margin-top: 40px;
    background: #ffffff;
    box-shadow: 0px 0px 14px rgb(0 0 0 / 12%);
    border-radius: 5px;
    overflow: hidden;
}

    .contact_box .Contact_Right {
        width: 50%;
    }

.Contact_Right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right;
}

.contact_box .Contact_Left {
    width: 50%;
    padding: 40px;
}

.contact_head {
    width: 100%;
    display: inline-block;
}

.contact_sec h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 35px;
    color: #000000;
    line-height: 45px;
    font-family: 'SF-Pro-Bold';
}

.contact_sec p {
    color: #000000;
    font-size: 15px;
    line-height: 22px;
    margin-bottom: 0;
}

.contact_sec h4 {
    font-size: 20px;
    color: #000000;
    line-height: 28px;
    margin-bottom: 50px;
    font-family: 'SF-Pro-Semibold';
}

.Contact_Left .contact_Form {
    width: 100%;
    display: inline-block;
}

.contact_Form .input-field {
    position: relative;
}

.contact_Form label {
    font-size: 14px;
    line-height: 18px;
    color: #000000;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 7px;
}

.contact_Form input,
.contact_Form textarea,
.contact_Form select.Size--list {
    margin-bottom: 25px;
    height: 42px;
    display: flex;
    align-items: center;
    padding: 0 15px;
    font-size: 14px;
    line-height: 19px;
    box-shadow: none;
    color: #000000;
    width: 100%;
    background-color: #ffffff;
    border: 1px solid #E2E2E2;
    border-radius: 4px;
    font-family: 'SF-Pro-Regular';
}

.contact_Form textarea {
    height: auto;
}

    .contact_Form input::placeholder,
    .contact_Form textarea::placeholder {
        color: #000000;
        font-family: 'SF-Pro-Regular';
    }



.contact_Form .img_box {
    position: relative;
}

    .contact_Form .img_box .upload__box {
        margin-bottom: 25px;
        padding: 5px;
        font-size: 13px;
        line-height: 20px;
        box-shadow: none;
        color: #000000;
        width: 100%;
        background-color: #ffffff;
        border: 1px solid #dddddd;
        border-radius: 4px;
        display: flex;
        align-items: center;
    }

.contact_Form .upload__box .btn-file {
    position: relative;
    overflow: hidden;
    margin-right: 10px;
    background: #f4f4f4;
    border: 1px solid #ece9e9;
    color: #000000;
    padding: 8px 15px;
    font-size: 13px;
    line-height: 16px;
    border-radius: 2px;
    cursor: pointer;
    font-weight: normal;
    display: inline-block;
    flex-shrink: 0;
}

    .contact_Form .upload__box .btn-file input[type=file] {
        position: absolute;
        top: -6px;
        left: -6px;
        font-size: 4px;
        opacity: 0;
        outline: none;
        background: #bbb9b9;
        height: 44px;
        width: 113px;
        cursor: pointer;
        display: inline-block;
        margin-bottom: 0;
        padding: 0;
    }

.contact_Form .upload__box span.upload__box_txt {
    font-size: 14px;
    line-height: 19px;
    margin-bottom: 0;
}

.contact_Form .img_box span.add_more {
    position: absolute;
    top: 43px;
    left: 0;
    font-size: 12px;
    line-height: 18px;
    color: #000000;
    font-weight: 500;
}

.contact_Form .contact_btn:hover,
.contact_Form .contact_btn:focus {
    color: #ffffff;
    text-decoration: none;
}

.required_error {
    border-bottom: 2px solid #777E5D;
}

.contact_Form p .txt_bld {
    font-weight: 700;
    font-size: 13px;
}

.contact_Form p {
    color: #000000;
    font-size: 13px;
    line-height: 20px;
    margin-bottom: 0;
    margin-top: 15px;
    font-family: 'SF-Pro-Regular';
}

.contact_sec .btn_black {
    height: 42px;
    padding: 0 30px;
    font-size: 16px;
    line-height: 21px;
}

.upload__box_txt {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.arrow_down {
    color: #000;
    font-weight: 400;
}

/*====== PHONE NUMBER FIELD START =======*/
.phone_div {
    width: 100%;
    display: flex;
    gap: 12px;
    font-family: 'Montserrat';
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #000000;
    margin-bottom: 20px;
}

.flag_dropdown {
    min-width: 125px;
    flex-shrink: 0;
    position: relative;
}

    .flag_dropdown button {
        min-height: 42px;
        width: 100%;
        border: 1px solid #E2E2E2;
        margin-bottom: 0;
        background: #ffffff;
        padding: 10px 15px;
        border-radius: 0;
        font-family: 'Montserrat';
        font-weight: 400;
        font-size: 14px;
        line-height: 20px;
        text-align: left;
    }

        .flag_dropdown button,
        .flag_dropdown button span:after {
            color: #a7a7a7;
        }

    .flag_dropdown.active button,
    .flag_dropdown.active button span:after {
        color: #000000;
    }

    .flag_dropdown button span:after {
        content: '\e313';
        font-family: 'Material Symbols Outlined';
        font-size: 24px;
        width: 24px;
        height: 14px;
        display: inline-flex;
        font-weight: 200;
        vertical-align: middle;
        align-items: center;
        justify-content: center;
        transition: .3s all;
        position: relative;
        right: -8px;
    }

    .flag_dropdown button.arrow_down span:after {
        transform: rotate(180deg);
    }

.flagList_div {
    width: 270px;
    position: absolute;
    top: 46px;
    left: 0;
    z-index: 99;
    background-color: #ffffff;
    border-radius: 3px;
    box-shadow: 0 2px 10px #0000001a;
    /* opacity: 0;
    visibility: hidden; */
    display: none;
}

.flag_list {
    width: 100%;
    height: 288px;
    overflow-y: auto;
    padding-left: 0;
    list-style: none;
    margin-bottom: 0;
}

    .flag_list li {
        width: 100%;
        padding: 4px 15px;
        margin-bottom: 1px;
        cursor: pointer;
    }

        .flag_list li a {
            width: 100%;
            font-family: 'SF-Pro-Regular';
            font-weight: 400;
            font-size: 14px;
            line-height: 19px;
            color: #000000;
            display: inline-block;
        }

.number_box {
    width: 100%;
    position: relative;
}

    .number_box input {
        width: 100%;
        border: 1px solid #E2E2E2;
        margin-bottom: 0;
        background: #ffffff;
        padding: 10px 15px;
        border-radius: 4px;
        font-family: 'SF-Pro-Regular';
        font-weight: 400;
        font-size: 14px;
        line-height: 20px;
        color: #000000;
    }

.flag_list li:hover,
.flag_list li.active {
    background: #f2f2f2;
    cursor: pointer;
}

/*======= PHONE NUMBER FIELD END ========*/
/*==== Contact us END======*/

/*==== Products START======*/
.ak_products_sec {
    padding-bottom: 100px;
}

.ak_products_subsec {
    width: 100%;
    display: flex;
    position: relative;
}

.products_sec1 {
    width: 250px;
    flex-shrink: 0;
}

.products_sec2 {
    width: calc(100% - 250px);
    display: flex;
    flex-direction: column;
}

.add_filter_btn,
.hide_icon {
    display: none;
}

.filter_head {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 40px;
}

    .filter_head h5 {
        font-family: 'SF-Pro-Medium';
        font-size: 16px;
        line-height: 21px;
        color: #000000;
        margin-bottom: 0;
    }

.close_btns button {
    font-family: 'SF-Pro-Regular';
    font-size: 14px;
    line-height: 19px;
    color: #000000;
    text-decoration: underline;
}

    .close_btns button.hideIn_des {
        display: none;
    }

.body_head,
.accordion-button.body_head {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 0;
    font-family: 'SF-Pro-Medium';
    font-size: 16px;
    line-height: 21px;
    color: #000000;
    margin-bottom: 0;
    background: unset;
    box-shadow: unset;
}

.filter_body {
    width: 100%;
    padding: 22px 18px 7px 0;
    border: 0;
    border-right: 1px solid #dddddd;
    border-bottom: 1px solid #dddddd;
    border-radius: 0 !important;
}

    .filter_body:first-of-type {
        padding-top: 0;
    }


    .filter_body h6 {
        font-weight: 500;
        font-size: 16px;
        line-height: 22px;
        color: #000000;
        margin-bottom: 0;
    }

    .filter_body ul {
        margin-top: 15px;
    }

        .filter_body ul li p,
        .filter_body ul li button {
            font-size: 14px;
            line-height: 19px;
            color: #000000;
            margin-bottom: 15px;
            display: flex;
            hyphens: auto;
            text-align: left;
            font-family: 'SF-Pro-Regular';
        }

        .filter_body ul li:last-child p {
            margin-bottom: 0;
        }

    .filter_body .subCategory_ul {
        margin-top: 0;
        margin-left: 27px;
        margin-bottom: 15px;
    }

.subCategory_ul .m-checkbox.m-checkbox--solid > span {
    width: 14px;
    height: 14px;
    top: 2px;
}

.category {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 6px;
}

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

.filter_body .accordion-button::after,
.filter_body .category::after {
    background: unset;
    content: '\e145';
    font-family: 'Material Symbols Outlined';
    width: 22px;
    height: 22px;
    font-size: 22px;
    font-weight: 300;
    color: #000000;
    transition: unset;
    margin: 0;
}

.filter_body .accordion-button:not(.collapsed)::after {
    content: '\e15b';
}

.accordion-button.accor_list:not(.collapsed)::after {
    display: none;
}

.color_box {
    width: 10px;
    height: 10px;
    border-radius: 2px;
    display: inline-block;
    background-color: #c9c9c9;
    margin-right: 8px;
}

.showMore_list {
    width: 100%;
    height: 178px;
    overflow: hidden;
}

.show_more {
    -webkit-font-smoothing: auto;
    font-size: 14px;
    line-height: 22px;
    color: #777E5D;
    margin-left: 30px;
    margin-top: 5px;
}

.products_sec21 {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    padding-bottom: 21px;
    align-items: center;
}

    .products_sec21 > p {
        font-family: 'SF-Pro-Regular';
        font-size: 14px;
        line-height: 23px;
        font-weight: 300;
        color: #575757;
        margin-bottom: 0;
        padding-left: 20px;
    }

        .products_sec21 > p b {
            font-weight: 500;
        }

.sort_sortBy {
    font-size: 15px;
    line-height: 20px;
    color: #000000;
    padding: 11px;
    background-color: #ffffff;
    border: 1px solid #dddddd;
    border-radius: 2px;
    min-width: 195px;
    position: relative;
    font-family: 'SF-Pro-Medium';
    cursor: pointer;
}

    .sort_sortBy > span:last-of-type {
        font-weight: 500;
    }

    .sort_sortBy:before {
        position: absolute;
        top: 5px;
        right: 6px;
        content: '\e5cf';
        font-family: 'Material Symbols Outlined';
        font-style: normal;
        font-size: 28px;
        color: #b9b9b9;
        line-height: 1;
    }

    .sort_sortBy ul {
        background-color: #fff;
        display: none;
        position: absolute;
        left: -1px;
        right: -1px;
        top: 43px;
        margin: 0;
        padding-top: 6px;
        z-index: 2;
        border-top: none;
        box-shadow: 0px 2px 4px rgb(0 0 0 / 16%);
    }

.sort_list label {
    display: block;
    cursor: pointer;
    padding: 8px 12px;
    font-size: 15px;
    line-height: 21px;
    font-family: 'SF-Pro-Regular';
    color: #000000;
    width: 100%;
    position: relative;
    border-bottom: 1px solid #dddddd;
}

.sort-label input {
    visibility: hidden;
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.sort_list label.sort_selected {
    background-color: #f7f7f7;
    font-weight: 500;
}

.sort_sortBy:hover ul {
    display: block;
}

.products_sec22 {
    width: 100%;
    padding-left: 20px;
}

.List_pagination {
    width: 100%;
    margin-top: 40px;
    text-align: center;
}

    .List_pagination ul {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        width: 100%;
    }

        .List_pagination ul li {
            background: #ffffff;
            display: inline-block;
            border-radius: 1px;
            text-align: center;
            height: 36px;
            line-height: 36px;
            color: #808191;
            margin: 0 5px;
            border: 1px solid #dddddd;
        }

            .List_pagination ul li a {
                line-height: 36px;
                height: 36px;
                display: inline-block;
            }

            .List_pagination ul li span {
                font-size: 15px;
                line-height: 34px;
                padding: 0 10px;
                color: #000000;
                display: flex;
                align-items: center;
                gap: 10px;
                min-width: 36px;
                justify-content: center;
            }

                .List_pagination ul li span i {
                    font-size: 20px;
                }

            .List_pagination ul li.active {
                border-color: #777E5D;
                background-color: #f9faf5;
            }

                .List_pagination ul li.active span {
                    color: #777E5D;
                }

.products_grid {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    gap: 30px 25px;
}

.ak_products_sec .product_card {
    width: calc(20% - 20px);
    margin: 0;
}
/*==== Products END======*/

/*============ Product Detail START ============*/
.ak_productDetail_sec {
    padding: 45px 0 80px;
}

.product_dtlSticky {
    position: relative;
    width: 100%;
    display: flex;
    align-items: flex-start;
    gap: 100px;
}

.product_detail {
    width: 638px;
    flex-shrink: 0;
}

/* .sticky_proDtl {
    position: sticky;
    top: 50px;
} */

.productSlider.owl-theme .owl-dots .owl-dot.active span,
.productSlider.owl-theme .owl-dots .owl-dot:hover span {
    background: #000;
    border-color: #000;
    width: 12px;
    height: 12px;
}

.productSlider.owl-theme .owl-dots .owl-dot span {
    border-color: #000;
    width: 12px;
    height: 12px;
}

.images_loader {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    line-height: 22px;
    flex-direction: column;
    gap: 10px;
}

.product_images ul {
    display: flex;
    flex-wrap: wrap;
}

    .product_images ul li {
        width: calc(50% - 10px);
        margin: 5px;
        height: 300px;
        border: 1px solid #dddddd;
        border-radius: 3px;
        background-color: #f6f6f6;
    }

        .product_images ul li img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: top;
        }

.padding_l {
    padding-left: 0;
}

.padding_r {
    padding-right: 0;
}

.partition_border, .partition_border_2 {
    border-top: 1px solid #dddddd;
    margin-top: 20px;
    margin-bottom: 20px;
    width: 100%;
}

.form_switch_btn {
    position: relative;
    top: -2px;
}

    .form_switch_btn input:checked {
        background-color: #e4e4e4;
        border-color: #e4e4e4;
    }

    .form_switch_btn .form-check-input:focus, .form_switch_btn .form-check-input:checked:active {
        box-shadow: none;
        border-color: #000;
        filter: brightness();
    }

.ak_prod_detail_1 {
    padding-bottom: 12px;
}

    .ak_prod_detail_1 p {
        font-family: 'SF-Pro-Regular';
        font-size: 16px;
        line-height: 21px;
        margin-bottom: 6px;
    }

    .ak_prod_detail_1 h3 {
        font-family: 'SF-Pro-Bold';
        font-size: 28px;
        line-height: 37px;
        margin-bottom: 9px;
    }

    .ak_prod_detail_1 .ak_prod_price, .ak_prod_price .actual_price {
        font-size: 20px;
        line-height: 27px;
    }

.ak_prod_price, .ak_prod_gst, .ak_prod_sale {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ak_prod_gst {
    gap: 12px;
}

.ak_prod_sale {
    gap: 7px;
}

    .ak_prod_sale p {
        margin-bottom: 0;
    }

.count_min_plus {
    display: inline-flex;
    border: 1px solid #DFE0DC;
    border-radius: 2px;
    font-size: 14px;
    line-height: 19px;
    height: 30px;
}

    .count_min_plus .quantity_input {
        padding: 0;
        border: 0;
        border-left: 1px solid #dddddd;
        border-right: 1px solid #dddddd;
        border-radius: 0;
        background-color: #f7f7f7;
        width: 36px;
        text-align: center;
        font-size: 14px;
        line-height: 19px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

.mini_value, .max_value {
    display: flex;
    align-items: center;
    padding: 0 8px;
    cursor: pointer;
}

    .mini_value span, .max_value span {
        font-size: 22px;
    }

.ak_prod_detail_2 {
    display: flex;
    align-items: center;
    gap: 60px;
    padding-bottom: 5px;
}

    .ak_prod_detail_2 p {
        font-size: 17px;
        line-height: 23px;
        font-family: 'SF-Pro-Regular';
        margin-bottom: 0;
    }

.ak_prod_detail_3 {
    display: flex;
    align-items: center;
    padding-bottom: 10px;
}

    .ak_prod_detail_3 p {
        font-size: 17px;
        line-height: 23px;
        font-family: 'SF-Pro-Medium';
        margin-bottom: 0;
    }

        .ak_prod_detail_3 p:first-of-type {
            border-right: 1px solid #ddd;
            padding-right: 30px;
        }

        .ak_prod_detail_3 p:nth-child(2) {
            padding-left: 30px;
        }

.block_txt {
    display: block;
}

.addTo_btns {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 0;
}

    .addTo_btns .btn_white, .addTo_btns .btn_black {
        display: flex;
        align-items: center;
        gap: 8px;
    }

        .addTo_btns .btn_white span, .addTo_btns .btn_black span {
            font-weight: 300;
        }

.proDtl_9 {
    display: flex;
    align-items: stretch;
    position: relative;
    margin-bottom: 30px;
}

    .proDtl_9 input {
        padding: 5px 10px;
        font-size: 14px;
        line-height: 20px;
        border: 0;
        border-radius: 0;
        border-bottom: 1px solid #dddddd;
        width: 100%;
    }

        .proDtl_9 input::placeholder {
            color: #A1A1A1;
        }



.ak_prod_detail_4 p {
    font-size: 14px;
    line-height: 19px;
    font-family: 'SF-Pro-Regular';
    margin-bottom: 6px;
}

.ak_prod_detail_5 h4 {
    font-size: 24px;
    line-height: 32px;
    font-family: 'SF-Pro-Medium';
    margin-bottom: 0;
}

.bold_txt_2 {
    font-family: 'SF-Pro-Semibold';
}

.ak_prod_detail_desc p {
    font-size: 14px;
    line-height: 19px;
    font-family: 'SF-Pro-Regular';
    margin-bottom: 15px;
}

    .ak_prod_detail_desc p:last-of-type {
        margin-bottom: 0;
    }

.ak_more_prod_sec {
    padding: 80px 0;
    border-top: 1px solid #dddddd;
}

.ak_more_prod_head {
    margin-bottom: 48px;
}

.detail_tabs {
    width: 100%;
}

    .detail_tabs .nav-tabs {
        border-bottom: 0;
        gap: 10px;
    }

        .detail_tabs .nav-tabs .nav-link {
            font-family: 'Poppins', sans-serif;
            font-size: 16px;
            line-height: 22px;
            font-weight: 400;
            color: #000000;
            background: unset;
            padding: 15px 25px;
            padding-top: 0;
            border: 0;
            border-bottom: 1px solid transparent;
        }

            .detail_tabs .nav-tabs .nav-link.active {
                font-weight: 500;
                color: #777E5D;
                border-color: #777E5D;
            }

    .detail_tabs .tab-content {
        width: 100%;
        padding: 20px;
        background-color: #F7F7F7;
        border: 1px solid #dddddd;
    }

        .detail_tabs .tab-content p {
            font-family: 'Poppins', sans-serif;
            font-size: 14px;
            line-height: 20px;
            font-weight: 400;
            color: #000000;
            margin-bottom: 8px;
        }

.tabs_content span {
    padding-right: 12px;
    font-size: 16px;
    vertical-align: middle;
    margin-bottom: 2px;
}

.mini_value span,
.max_value span {
    padding-right: 0;
    font-size: 20px;
    vertical-align: unset;
    margin-bottom: 0;
}

.detail_tabs .tab-content p:last-of-type {
    margin-bottom: 0;
}

.detail_tabs .tab-content p b {
    font-weight: 600;
}

.care_dtl ul li {
    width: 100%;
    border-bottom: 1px solid #dddddd;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

    .care_dtl ul li:last-child {
        border-bottom: 0;
        padding-bottom: 0;
        margin-bottom: 0;
    }

    .care_dtl ul li div {
        display: flex;
        align-items: center;
        margin-bottom: 10px;
    }

    .care_dtl ul li img {
        width: unset;
        height: 26px;
        border-right: 1px solid #dddddd;
        padding-right: 10px;
        margin-right: 10px;
    }

    .care_dtl ul li h5 {
        font-family: 'Poppins', sans-serif;
        font-size: 14px;
        line-height: 22px;
        font-weight: 600;
        color: #000000;
        margin-bottom: 0;
    }

    .care_dtl ul li p {
        font-family: 'Poppins', sans-serif;
        font-size: 14px;
        line-height: 20px;
        font-weight: 400;
        color: #000000;
        margin-bottom: 0;
    }

/*===== PRODUCT DETAIL PAGE SLIDER START ======*/
.product_images {
    width: calc(100% - 739px);
    position: sticky;
    top: 90px;
    display: flex;
    gap: 20px;
}

.productImageDetail {
    width: 100%;
    display: inline-block;
}

    .productImageDetail .magnify {
        width: 100%;
    }

    .productImageDetail img {
        width: auto;
        height: 600px;
        margin: 0 auto;
    }

.productGalleryInner {
    display: flex;
    overflow-y: scroll;
    width: 100px;
    height: 600px;
    padding: 0;
    flex-direction: column;
    gap: 10px;
    padding-right: 5px;
}

    .productGalleryInner::-webkit-scrollbar {
        width: 2px;
    }

    .productGalleryInner::-webkit-scrollbar-track {
        background: transparent;
    }

    .productGalleryInner::-webkit-scrollbar-thumb {
        background: #dddddd;
        border-radius: 4px;
    }

        .productGalleryInner::-webkit-scrollbar-thumb:hover {
            background: #dddddd;
        }

.productGallery .owl-carousel .owl-item {
    margin: 0 !important;
}

.ak_productDetail_sec .dotProduct {
    cursor: pointer;
    position: relative;
    display: inline-block;
    width: 100%;
    height: 70px;
    box-sizing: border-box;
    vertical-align: top;
    margin: 0;
}

    .ak_productDetail_sec .dotProduct img {
        border-radius: 0;
        width: 100%;
        height: 100%;
        object-fit: contain;
        border: 2px solid #f4f4f4;
        padding: 2px;
        transition: .3s border;
    }

    .ak_productDetail_sec .dotProduct.active img {
        border: 2px solid #AE1919;
        transition: .3s border;
    }

.magnify > .magnify-lens {
    width: 300px;
    height: 300px;
    border-radius: 1px;
    box-shadow: none;
    border: 2px solid #ffffff;
}
/*======== PRODUCT DETAIL SLIDER END ========*/

/*========== MAGNIFY CSS START ==========*/
html.magnifying > body {
    overflow-x: hidden !important;
}

.magnify,
.magnify > .magnify-lens,
.magnify-mobile,
.lens-mobile {
    /* Reset */
    min-width: 0;
    min-height: 0;
    animation: none;
    border: none;
    float: none;
    margin: 0;
    opacity: 1;
    outline: none;
    overflow: visible;
    padding: 0;
    text-indent: 0;
    transform: none;
    transition: none;
}

.magnify {
    position: relative;
    width: auto;
    height: auto;
    box-shadow: none;
    display: inline-block;
    z-index: inherit;
}

    .magnify > .magnify-lens {
        position: absolute;
        width: 200px;
        height: 200px;
        border-radius: 100%;
        box-shadow: 0 0 0 7px rgba(255, 255, 255, 0.85), 0 0 7px 7px rgba(0, 0, 0, 0.25), inset 0 0 40px 2px rgba(0, 0, 0, 0.25);
        cursor: none;
        display: none;
        z-index: 99;
    }

        .magnify > .magnify-lens.loading {
            background: #333 !important;
            opacity: 0.8;
        }

            .magnify > .magnify-lens.loading:after {
                position: absolute;
                top: 50%;
                left: 0;
                width: 100%;
                color: #fff;
                content: 'Loading...';
                font: italic normal 16px/1 Calibri, sans-serif;
                letter-spacing: 1px;
                margin-top: -8px;
                text-align: center;
                text-shadow: 0 0 2px rgba(51, 51, 51, 0.8);
                text-transform: none;
            }
/*========= MAGNIFY CSS END ===========*/

/*============ Product Detail END ============*/
