/* BASE */
body {
    margin: 0;
    font-family: 'Cairo', sans-serif;
}

/* .all_header12{
    background-color: #f5f2eb !important;
} */

/* ================= HEADER ================= */
.hd900_main {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999999;
    padding: 18px 0;
    transition: 0.4s ease;
    background: #f5f2eb;
}


.hd900_scrolled {
    background: #f5f2eb;
    backdrop-filter: blur(6px);
}

.hd900_container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

/* Custom Dropdown */
.hd900_lang_box786 {
    position: relative;
    width: 80px;
}

.hd900_lang_selected786 {
    background: rgb(0 0 0 / 20%);
    border: 1px solid rgb(0 0 0 / 40%);
    color: #000000;
    padding: 6px 30px 6px 8px;
    font-size: 15px;
    border-radius: 6px;
    cursor: pointer;
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    gap: 6px;
}

.hd900_lang_selected786 img {
    width: 22px;
    height: 15px;
    border-radius: 4px;
    object-fit: cover;
}

.hd900_lang_list786 {
    position: absolute;
    top: 42px;
    left: 0;
    width: 100%;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 6px;
    display: none;
    z-index: 100;
    padding-left: 0px;
}

.hd900_lang_list786 li {
    padding: 6px 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.myThumbSlider .swiper-slide{
    border: solid 2px #EDE7DB;}

.myThumbSlider .swiper-slide .swiper-slide-active{
    border: solid 2px #ccc !important;}

.hd900_lang_list786 li a{
	text-decoration: none;
    color: #000;}

.hd900_lang_list786 li:hover {
    background: #f2f2f2;
}

.prdInner900_price span{
	    color: red;
    font-size: 20px;
    font-weight: 300;}

.hd900_lang_list786 img {
	width: 24px;
    margin-right: 5px;
    position: relative;
    top: -2px;
}

/* Arrow */
.hd900_lang_box786::after {
    content: "▼";
    position: absolute;
    right: 12px;
    top: 10px;
    color: #000000;
    font-size: 12px;
    pointer-events: none;
}

/* Logo */
.hd900_logo img {
    height: 75px;
    transition: all 0.4s ease;
}

.hd900_scrolled .hd900_logo img {
    height: 55px;
    transition: all 0.4s ease;
}

/* Login */
.hd900_login {
    color: #000;
    font-size: 16px;
}

.hd900_login a {
    color: #000;
    text-decoration: none;
    margin: 0 5px;
}








/* ================= HERO SECTION ================= */
.hero900_main {
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
    margin-top: 90px;
}

/* Video */
.hero900_video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Fallback Image */
.hero900_image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-image: url('hero.jpg');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

/* HERO CONTENT */
.hero900_content {
    position: relative;
    z-index: 5;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    color: #fff;

    opacity: 0;
    animation: fadeUp900 1.3s forwards ease;
}

.hero900_content h1 {
    font-size: 34px;
    font-weight: 700;
    line-height: 44px;
    margin-bottom: 25px;
}

/* BUTTON */
.hero900_btn {
    background: #C6A04A;
    padding: 10px 35px;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: 0.3s ease;
}

.hero900_btn:hover {
    transform: translateY(-4px);
    background: #b28f3e;
}

/* Animation */
@keyframes fadeUp900 {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {

    .hero900_content {
        align-items: center;
        text-align: center;
        padding-right: 0;
        padding: 0 20px;
    }

    .hero900_content h1 {
        font-size: 25px;
    }

    .hd900_logo img {
        height: 55px;
    }
}


/* CATEGORY SECTION */
.cat900_section {
    padding-top: 70px;
    padding-bottom: 70px;
    font-family: 'Cairo', sans-serif;
}

.cat900_card {
    height: 420px;
    display: block;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;

    /* fade animation */
    opacity: 0;
    transform: translateY(40px);
    animation: catFade 1s forwards ease;
}

@keyframes catFade {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cat900_overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, 0.7) 100%);
    padding: 20px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-align: center;
    /* for hover animation */
    transition: 0.4s ease;
}

.cat900_overlay h3 {
    font-size: 24px;
    line-height: 32PX;
    font-weight: 500;
    margin: 0;
    transform: translateY(10px);

    transition: 0.4s ease;
}

.cat900_overlay p {
font-size: 18px;
    margin-top: 5px;
    line-height: 26px;
    transform: translateY(10px);

    transition: 0.4s ease;
}

/* HOVER ANIMATION */
/* .cat900_card:hover .cat900_overlay {
    background: rgba(0, 0, 0, 0.6);
} */

.cat900_card:hover h3,
.cat900_card:hover p {
    opacity: 1;
    transform: translateY(0px);
}

/* RESPONSIVE */
@media(max-width: 768px) {
    .cat900_card {
        height: 340px;
    }
}

/* CATEGORY SECTION  end*/

/* footer start */

/* FOOTER MAIN */
.ft900_footer {
    background: #EDE7DB;
    padding: 50px 0 50px;
}



.ft900_title {
     font-weight: 400;
    font-size: 22px;
    margin-bottom: 15px;
    color: #000;
}

.ft900_list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ft900_list li {
    margin-bottom: 8px;
}

.ft900_list li a {
    color: #000;
    text-decoration: none;
    font-size: 16px;
    transition: 0.3s;
}

.ft900_list li a:hover {
    opacity: 0.6;
}

/* SOCIAL */
.ft900_social a {
    display: inline-block;
    margin-left: 10px;
    font-size: 20px;
    color: #000;
    transition: 0.3s;
}

.ft900_social a:hover {
    opacity: 0.6;
}

/* COPYRIGHT */
.ft900_copy {
    margin: 10px 0px !important;
    font-size: 15px;
    color: #000;
    line-height: normal;

}

/* footer end */


/* product page css start */

/* MAIN SECTION */
.prd900_section {
    background: #f5f2eb;
    padding: 110px 0 60px;
    font-family: 'Cairo', sans-serif;
}

/* TITLE */
.prd900_title {
    font-size: 34px;
    font-weight: 300;
    margin-bottom: 20px;
    color: #000;
}

/* BREADCRUMB */
.prd900_breadcrumb {
    font-size: 15px;
    margin-bottom: 15px;
}

.prd900_breadcrumb a {
    color: #b69544;
    text-decoration: none;
}

.prd900_breadcrumb span {
    margin: 0 5px;
    color: #888;
}

/* COUNT */
.prd900_count {
    font-size: 15px;
    margin-bottom: 25px;
    color: #555;
}

/* PRODUCT CARD */
.prd900_card {
    text-align: left;
    transition: 0.3s ease;
}


/* Product Image */
.prd900_img {
    background: #fff;
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    text-decoration: none;
    margin-bottom: 15px;
}

.prd900_img img {
    height: 300px;
    object-fit: contain;
    width: 100%;
}

/* Product Subtitle */
.prd900_sub {
    font-size: 15px;
    margin: 10px 10px 20px 30px !important;
    color: #000;
}

/* Product Name */
.prd900_name {
    font-size: 20px;
    font-weight: 300;
    margin: 0px;
    text-decoration: none;
    color: #000;
    line-height: 28px;
}

/* Price */
.prd900_price {
    font-size: 16px;
    margin-top: 5px;
    color: #333;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .prd900_title {
        font-size: 32px;
    }
}

/* product page css end */

/* product inner page css start */

.prdInner900_section {
    background: #fff;
    padding: 50px 0 50px;
    font-family: 'Cairo', sans-serif;
}

/* BREADCRUMB */
.prdInner900_breadcrumb {
    font-size: 15px;
    padding: 110px 0 30px;
    background-color: #f5f2eb;
}

.prdInner900_breadcrumb a {
    color: #c49d3f;
    text-decoration: none;
        font-size: 16px;
    font-weight: 400;
}

.prdInner900_breadcrumb span {
    margin: 0 5px;
    color: #777;
}

/* LEFT IMAGE BOX */
.prdInner900_imgbox {
    background: #fff;
    padding: 40px;
    text-align: center;
}

.prdInner900_imgbox img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* TITLE */
.prdInner900_title {
    font-size: 30px;
    font-weight: 300;
    color: #000;
    margin-bottom: 15px;
        text-transform: capitalize;

}

/* DESCRIPTION */
.prdInner900_desc {
    font-size: 20px;
    color: #444;
    line-height: 28px;
    font-weight: 300;
}

.pagination-box{
	 width:100%;
	  display:block;}
	 
.pagination-box li{
    display: inline-block;
    padding: 2px 8px;
    background-color: #b69544;}	 

.pagination-box li a{
    color: #fff;
    text-decoration: none;
    font-weight: 600;}

.pagination-box li.active{
	background-color:#846824;}

.checkout786_form_box label{
	margin-bottom:3px;}
	
.cart786_table .pro-thumbnail a img{
	width: 50px;
    background-color: #ccc;
    padding: 1px;}	

.cart786_product a{
    color: #000;
    text-decoration: none;}

/* PRICE GOLD */
.prdInner900_price {
    color: #c49d3f;
    font-size: 24px;
    font-weight: 700;
    margin: 15px 0;
}

/* short bold text */
.prdInner900_shortBold {
font-size: 18px;
    font-weight: 300;
    margin-bottom: 20px;
}

/* LABEL */
.prdInner900_label {
    font-size: 17px;
    margin-bottom: 5px;
    display: block;
}

/* SELECT BOX */
.prdInner900_select {
    width: 100%;
    padding: 5px 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    outline: none;
    margin-bottom: 25px;
}

/* QUANTITY SELECTOR */
.prdInner900_qty {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.qty_btn {
    width: 30px;
    height: 30px;
    border: 1px solid #000;
    background: transparent;
    border-radius: 50%;
    font-size: 27px;
    line-height: 20px;
    display: flex;
    padding: 1px 0px 0px 6px;
}

.cart786_remove a{
    text-decoration: none;
    color: #000;}

.qty_num {
    font-size: 18px;
    font-weight: 600;
}
#loginForm label{
    display: flex;
    align-items: center;
    gap: 6px;
}
/* ADD TO CART BUTTON */
.prdInner900_addcart {
    width: 100%;
    background: transparent;
    border: 1px solid #000;
    padding: 12px 0;
    font-size: 18px;
    font-weight: 300;
    cursor: pointer;
    border-radius: 4px;
    transition: 0.3s ease;
    color: #000;
}

.prdInner900_addcart:hover {
    background: #c49d3f;
    color: #fff !important;
    border-color: #c49d3f;
}

/* product inner page css end */


/* related prodcut start */

.related786_section {
    padding: 50px 0;
    background: #f4f1ea;
}

.related786_title {
    font-size: 30px;
    font-weight: 300;
    margin-bottom: 30px;
    color: #333;
}

.related786_item {
    text-align: left;
}

.related786_swiper .swiper-wrapper {
    padding-bottom: 30px;
}


/* Pagination */
.related786_pagination {
    margin-top: 20px;
}

.related786_pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #ccc;
    opacity: 1;
}

.related786_pagination .swiper-pagination-bullet-active {
    background: #c49d3f;
}

/* related prodcut end */





/* pp page strat */
/* PRIVACY POLICY SECTION */
.p_psection12 {
    padding: 60px 0;
    background: #fff;
    /* light premium background */
}


.p_pcontent12 h2 {
    font-size: 30px;
    font-weight: 400;
    color: #c49d3f;
    /* your main theme color */
    margin-bottom: 20px;
}

.p_pcontent12 h3 {
    font-size: 22px;
    font-weight: 600;
    color: #333;
    margin-top: 30px;
    margin-bottom: 12px;
}

.p_pcontent12 p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.p_pcontent12 ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.p_pcontent12 ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 8px;
}

/* Responsive */
@media (max-width: 767px) {
    .p_pcontent12 {
        padding: 25px 20px;
    }

    .p_pcontent12 h2 {
        font-size: 26px;
    }

    .p_pcontent12 h3 {
        font-size: 20px;
    }
}

/* pp page end */




/* about us start */

/* ABOUT SECTION */
.about_section12 {
    padding: 70px 0;
    background: #f8f6f2;
    /* soft elegant background */
}

.about_title12 {
    font-size: 30px;
    font-weight: 300;
    margin-bottom: 20px;
    color: #c49d3f;
    /* your theme color */
}

.about_para12 {
    font-size: 17px;
    line-height: 26px;
    color: #555;
    margin-bottom: 20px;
}

.about_img12 {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.08);
    height: 500px;
    background: #fff;
}

/* DESKTOP (default) */
.about_section12 .row {
    align-items: center;
}

/* TABLET RESPONSIVE */
@media (max-width: 991px) {
    .about_section12 {
        padding: 50px 0;
    }

    .about_title12 {
        font-size: 28px;
        margin-top: 20px;
    }
}

/* MOBILE RESPONSIVE */
@media (max-width: 767px) {

    .about_title12 {
        font-size: 24px;
        text-align: center;
    }

    .about_para12 {
        font-size: 15px;
        text-align: center;
    }

    .about_section12 img.about_img12 {
        margin-top: 25px;
    }
}

/* about us end */




/* login page css start */

.log_signsection12 {
    background: #fff;
    padding: 50px 0px;
}

.log_indiv12,
.sign_indiv12 {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: .3s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp12 .7s forwards;
    height: 100%;
}

.forgot12 {
    color: #000;
    text-decoration: none !important;
    font-size: 15px;
}

.sign_indiv12 {
    animation-delay: .2s;
}

.log_indiv12:hover,
.sign_indiv12:hover {
    transform: translateY(-5px);
}

.title12 {
font-weight: 300;
    font-size: 26px;
}

.titleline12 {
    width: 40px;
    height: 4px;
    background: #B18934;
    border-radius: 20px;
}

/* INPUT */
.input12 {
    height: 48px;
    border-radius: 0px;
    border: 1px solid #ddd;
}

.input12:focus {
    border-color: #B18934;
    box-shadow: 0 0 0 .20rem rgba(177, 137, 52, 0.25);
}

/* ONLY SELECT BOX ICON */
.selecticon12 {
    position: relative;
}

.selecticon12 i {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #777;
    pointer-events: none;
}

.icon_select12 {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #777;
}

/* BUTTON */
.btn12 {
    background: #B18934;
    color: #fff;
    padding: 9px;
    border-radius: 0px;
    font-weight: 400;
    font-size: 20px;
}

.btn12:hover {
    background: #9e7c2e;
    color: #fff;
}

/* POPUP */
.forgot_popup786 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

.forgot_overlay786 {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    animation: fadeIn786 .3s ease forwards;
}

.forgot_box786 input {
    border-radius: 0px;

}

.forgot_box786 input:focus {
    border-radius: 0px;
    border-color: #B18934;
    box-shadow: 0 0 0 .20rem rgba(177, 137, 52, 0.25);
}

.forgot_box786 {
    position: relative;
    width: 95%;
    max-width: 400px;
    background: #fff;
    padding: 25px;

    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.25);
    opacity: 0;
    transform: translateY(-40px);
    animation: popupSlide786 .35s ease forwards;
}

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

.forgot_close786 {
    cursor: pointer;
    font-size: 20px;
    color: #B18934;
}

/* Animations */
@keyframes fadeUp12 {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn786 {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes popupSlide786 {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* login page css end */



/* cart page start */

.cart786_title {
    font-size: 28px;
    font-weight: 700;
}

.cart786_table_wrapper {
    background: #fff;
    border: 1px solid #eee;
}

.cart786_table thead th {
    padding: 15px;
    font-weight: 600;
    color: #555;
    border-bottom: 1px solid #eee;
    font-size: 16px;
}

.cart786_table tbody td {
    padding: 15px;
    border-bottom: 0px solid #eee;
    vertical-align: middle;
    font-size: 15px;
}

/* Product */
.cart786_product {
    display: flex;
    gap: 15px;
    align-items: center;
}

.cart786_product img {
    width: 60px;
    border-radius: 6px;
}

.cart786_remove {
    font-size: 20px;
    cursor: pointer;
    color: #999;
}

/* Quantity */
.cart786_qty {
    width: 60px;
    text-align: center;
    padding: 5px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

/* Bottom coupon area */
.cart786_bottom_box {
    padding: 20px;
    border-top: 1px solid #eee;
}

.cart786_coupon {
    height: 45px;
}

.cart786_coupon:focus {
    border-color: #B18934;
    box-shadow: 0 0 0 .20rem rgba(177, 137, 52, 0.25);
}

/* Buttons */
.cart786_apply,
.cart786_update {
    height: 45px;
    border: none;
    font-weight: 600;
    font-size: 14px;
    color: #fff;
    background: #B18934;
    /* same as snapshot */
    transition: 0.3s;
}

.cart786_update {
    background: #ddd;
    color: #333;
}

.cart786_apply:hover {
    background: #B18934;
}

/* TOTALS BOX */
.cart786_totals_box {
    background: #fff;
    border: 1px solid #eee;
    padding: 25px;
    border-radius: 6px;
}

.cart786_totals_box h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cart786_line {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 15px;
    border-bottom: 1px solid #eee;
}

.cart786_checkout {
    margin-top: 20px;
    height: 50px;
    border: none;
    background: #B18934;
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.5px;
    font-size: 15px;
    transition: 0.3s;
}

.cart786_checkout:hover {
    background: #B18934;
}

@media (max-width: 767px) {
    .cart786_table thead {
        display: none;
    }

    .cart786_table tbody tr {
        display: block;
        padding: 15px;
    }

    .cart786_table tbody td {
        display: flex;
        justify-content: space-between;
        border: none;
        padding: 10px 0;
    }

    .cart786_remove {
        justify-content: flex-end;
    }

    .cart786_product {
        justify-content: space-between;
    }

    .cart786_totals_box {
        margin-top: 40px;
    }
}

/* cart page end */

/* checkout start */

.checkout786_title {
font-size: 30px;
    font-weight: 300;
}

/* LEFT FORM BOX */
.checkout786_form_box {
    background: #fff;
    padding: 25px;
    border: 1px solid #eee;
    border-radius: 6px;
}

.checkout786_subtitle {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.checkout786_input {
    height: 45px;
    border-radius: 0px;
    border: 1px solid #ddd;
}

.checkout786_input:focus {
    border-color: #B18934;
    box-shadow: none;
}

/* Payment Box */
.checkout786_payment_box {
    padding: 15px;
    border: 1px solid #eee;
    background: #fafafa;
    border-radius: 0px;
}

/* SUMMARY BOX */
.checkout786_summary_box {
    background: #fff;
    padding: 25px;
    border: 1px solid #eee;
    border-radius: 0px;
}

.checkout786_summary_title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.checkout786_line {
    display: flex;
    justify-content: space-between;
    font-size: 15px;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.checkout786_total {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    padding: 12px 0;
    font-weight: 600;
}

.checkout786_placeorder {
    margin-top: 20px;
    height: 50px;
    border-radius: 0px;
    border: none;
    background: #B18934;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    transition: 0.3s;
}

.checkout786_placeorder:hover {
    background: #B18934;
}

/* MOBILE RESPONSIVE */
@media (max-width: 767px) {
    .checkout786_summary_box {
        margin-top: 40px;
    }
}

/* checkout end */


/* toogle start */

.user786_wrapper {
    position: relative;
    display: inline-block;
}

.user786_icons {
    display: flex;
    align-items: center;
    gap: 25px;
    font-size: 20px;
    cursor: pointer;
}

.user786_dropdown {
    position: absolute;
    top: 35px;
    right: 0;
    background: #fff;
    width: 160px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    padding: 10px 0;
    display: none;
    z-index: 999;
}

.user786_dropdown a {
    display: block;
    padding: 10px 15px;
    color: #333;
    font-size: 16px;
    text-decoration: none;
}

.count_top12 {
position: absolute;
    left: 14px;
    top: -8px;
    background: #B18934;
    border-radius: 10px;
    height: 20px;
    width: 20px;
    font-size: 13px;
    display: flex;
    align-items: center;
    color: #fff;
    justify-content: center;
}

.user786_dropdown a:hover {
    background: #f3f3f3;
}

.user786_dropdown {
    display: none;
}

.user786_dropdown.user786_show {
    display: block;
}

.emaildiv12 a {
    color: #000;
    text-decoration: none;
}

/* toogle end */

/* my account page start */
/* MAIN SECTION */
.acc100_section {
    padding: 40px 0;
}

/* SIDEBAR */
.acc100_sidebar {
    border: 1px solid #eee;
    border-radius: 4px;
}

.acc100_menu {
    display: block;
    padding: 14px 18px;
    border-bottom: 1px solid #eee;
    color: #333;
    font-size: 15px;
    font-weight: 500;
    transition: 0.3s;
	cursor:pointer;
    text-decoration: none;
}

#dash a{
	color:#b7892a;
	text-decoration:none;}

.acc100_menu i {
    margin-right: 6px;
    color: #555;
}

.acc100_menu:hover {
    background: #f6f6f6;
    padding-left: 23px;
}

.acc100_menu.active {
    background: #b7892a;
    color: white;
}

.acc100_menu.active i {
    color: white;
}

/* CONTENT BOX */
.acc100_box {
    border: 1px solid #eee;
    padding: 25px;
    border-radius: 4px;
}

/* HEADINGS */
.acc100_title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    border-bottom: 1px dashed #ccc;
    padding-bottom: 8px;
}

/* TABLE */
.acc100_table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
    white-space: nowrap;
}
.success786_section .btn.btn-primary{
    background-color: #ad8a31;
    border: none;
}
.acc100_table th,
.acc100_table td {
    padding: 12px;
    border: 1px solid #eee;
    font-size: 14px;
}
.view_table12{
    width: 100%;
}
.acc100_table th {
    background: #f7f7f7;
    font-weight: 600;
}
.acc100_table a{
    color: #b7892a;
    text-decoration: none; 
    padding: 0px; 
}
.acc100_viewbtn {
    background: #b7892a;
    color: #fff;
    padding: 8px 18px;
    border-radius: 3px;
    border: none;
}

/* FORM */
.acc100_form_group {
    margin-bottom: 18px;
}

.acc100_label {
    font-size: 14px;
    margin-bottom: 5px;
    font-weight: 500;
}

.acc100_input {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 3px;
}

.acc100_btn_save {
    background: #b7892a;
    color: white;
    padding: 10px 22px;
    border-radius: 3px;
    border: none;
    margin-top: 8px;
}

.log_indiv12 a{
	color:#000;
	text-decoration:none;}
	
.pagination-box li a .fa-angle-double-left{
    rotate: 180deg;}

.pagination-box li a .fa-angle-double-right{
    rotate: 180deg;}
	
.prdInner900_thumb img{
	border-radius:0px !important;}	

.select_out12,
.hd900_logo
{
    width: 100%;
        text-align: center;
}
.hd900_login{
     width: 100%;
        text-align: end;
}

/* RESPONSIVE */
@media(max-width: 767px){
    .acc100_sidebar {
        margin-bottom: 20px;
    }
}
/* my account page end */
.checkout786_summary_box .form-check .form-check-input{
        margin-top: 5px;

}
.sle_icon129{
    position: relative;
}
.sle_icon129 .fa-angle-down{
    position: absolute;
right: 25px;
    top: 11px;
}
@media(max-width: 950px){
.hd900_login{
	 font-size:11px;}

.select_out12, .hd900_logo {
    width: 80%;
    text-align: center;
}

.hero900_content{
	padding: 80px 20px 0 20px;}

.hero900_content br{
	display:none;}

.hd900_login{
	font-size: 11px;}
}