*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
   /* font-family: 'Mulish', sans-serif; */
   word-wrap: break-word;
   scroll-behavior: smooth;
}

:root 
{
    --text-color: #141414;
    --primary-color: #822E28;
    --color3: #988F86;
    --color4: #DCD0B5;
    --color5: #EDEEEE;
    --color6: #149DF6;
}

body
{
  color: var(--text-color);  
}

/*====== index page ========*/

/*-- nav bar --*/
.navBar
{
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    background:white;
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    z-index: 11;
    padding: 2px 0;
}

.logo
{
    width: 160px;
}

.navbar-toggler
{
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
}
.navbar-toggler i 
{
    color: black !important;
    font-size: 24px;
}

.phone_menu a {
    color: rgba(0,0,0,.55) !important;
}

.nav-item
{
    margin: 0px 12px;
}

.nav-link
{
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
}
.nav-link.active 
{
    color: black !important;
}

.login_btn
{
    background-color: var(--primary-color); 
    color: white !important;
    border-radius: 5px;
    padding: 12px 20px !important;
}
.cart_menu
{
    position: relative;
}

.hover_cart
{
    position: absolute;
    top: 52px;
    right: 18%;
    background-color: white;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    padding: 20px 10px;
    width: 400px;
    min-height: 100%;
    max-height: 500px;
    border-radius: 5px;
    overflow-y: auto;
    display: none;  
}

.hover_cart h1 
{
    font-size: 22px;
    font-weight: 600;
}

.hover_cart h1 span
{
    font-size: 20px;
}

.view_full_cart,.shipping_page_btn
{
    text-align: center; 
   
}
.view_full_cart
{
    margin-top: 10px;
}
.shipping_page_btn
{
    margin-top: 10px;
}
.view_full_cart a
{
    background-color: var(--primary-color);
    color: white !important;
    font-size: 16px;
    font-weight: 500;
    padding: 10px 16px;
    text-decoration: none;
    display: block;
    border: 1px solid var(--primary-color);
    transition-duration: 0.3s;
}
.view_full_cart a:hover 
{
    background-color: white;
    color: var(--primary-color) !important;
    transition-duration: 0.3s;
}

.shipping_page_btn a
{
    border: 1px solid var(--primary-color);
    background-color: white;
    color: var(--primary-color) !important;
    font-size: 16px;
    font-weight: 500;
    padding: 10px 16px;
    text-decoration: none;
    display: block;
}

.small_screen_menu 
{
    position: fixed;
    display: none;
} 

.cart_icon
{
    position: relative;
}
.cart_icon span
{
    display: block;
    position: absolute;
    top: 0px;
    right: -10px;
    background-color: var(--primary-color);
    color: white;
    height: 24px;
    width: 24px;
    line-height: 24px;
    font-size: 12px;
    border-radius: 50%;
    text-align: center;
}

@media(max-width: 575px)
{
    .small_screen_menu 
    {
        top: 15px;
        right: 100px;
    } 
    .cart_icon span {
        top: -2px;
        right: 1px;
        height: 22px;
        width: 22px;
        line-height: 22px;
    }
}

@media(min-width: 576px) and (max-width: 767px)
{
    .small_screen_menu 
    {
        top: 15px;
        right: 200px;
    } 
    .cart_icon span {
        top: -2px;
        right: 1px;
        height: 22px;
        width: 22px;
        line-height: 22px;
    }
}

@media(min-width: 768px) and (max-width: 991px)
{
    .small_screen_menu 
    {
        top: 15px;
        right: 250px;
    } 
    .cart_icon span {
        top: -2px;
        right: 1px;
        height: 22px;
        width: 22px;
        line-height: 22px;
    }
}

@media(min-width: 992px) and (max-width: 1199px)
{
    .nav-item {
        margin: 0px 10px;
    }
    .nav-link {
        font-size: 14px;
    }
    .login_btn {
        padding: 12px 16px !important;
    }
}

@media(max-width:991px)
{
    .small_screen_menu 
    {
        display: block;
    } 
    .cart_menu
    {
        display: none;
    } 
}

@media(max-width:320px)
{
    .hover_cart {
        top: 50px;
        right: 10px;
        width: 300px;
    }
   
}

@media(min-width:321px) and (max-width:425px)
{
    .hover_cart {
        top: 50px;
        right: 12px;
        width: 300px;
    }
}
@media(min-width:426px) and (max-width:574px)
{
    .hover_cart {
        top: 50px;
        right: 18px;
        width: 380px;
    }
}

@media(min-width:575px) and (max-width:599px)
{
    .hover_cart {
        top: 44px;
        right: 68px;
        width: 380px;
    }
}

@media(min-width:600px) and (max-width:767px)
{
    .hover_cart {
        top: 50px;
        right: 68px;
        width: 380px;
    }
}

@media(min-width:768px) and (max-width:991px)
{
    .hover_cart {
        top: 52px;
        right: 68px;
        width: 380px;
    }
}

@media(min-width:992px) and (max-width:1024px)
{
    .hover_cart {
        top: 50px;
        right: 68px;
        width: 380px;
    }
}

@media(min-width:1025px) and (max-width:1480px)
{
    .hover_cart {
        top: 50px;
        right: 15%;
        width: 380px;
    }
}

@media(min-width:1481px) and (max-width:1580px)
{
    .hover_cart {
        top: 50px;
        right: 14%;
        width: 380px;
    }
}

/*-- /nav bar --*/

/*-- hero --*/
.hero
{
    height: 100vh;
    width: 100%;
}

.hero_item
{
    background-position: center !important;
    background-size: cover !important; 
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero_item_text 
{
    color: white;
    text-align: center;
}

.hero_item_text h3 
{
    font-size: 24px;
    font-weight: 500;
    margin-top: 10px;
    margin-bottom: 0px;
}

.hero_item_text h1 
{
    font-size: 50px;
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 20px;
}

.hero_item_text a 
{
    white-space: nowrap;
    color: white !important;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    padding: 14px 30px;
    display: inline-flex;
    background-color: var(--primary-color);
    border-radius: 8px;
}

.hero_item_text a span
{
    display: inline-block;
}
.hero_item_text a span i 
{
    margin-left: 10px;
}

.hero .owl-carousel .owl-dots
{
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
} 

.owl-theme .owl-dots .owl-dot span {
    border-radius: 0px !important; 
    transform: rotate(45deg);
    background: var(--color5) !important;
}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background: var(--primary-color) !important;
}

/*-- /hero --*/

/*-- our product --*/
.our_product
{
    padding: 50px 0;
}

.product_title
{
    font-size: 35px;
    font-weight: 600;
    text-align: center;
    margin-top: 0px;
    margin-bottom: 0px;
}

.product_sub_title
{
    font-size: 18px;
    font-weight: 400;
    text-align: center;
    margin-top: 5px;
    margin-bottom: 40px;
}

.product_box
{
    margin: 10px 0;
    padding: 20px;
    text-align: center;
}

.product_box_img
{
    overflow: hidden;
}

.product_box img{
    height: 220px;
    width: 100%;
    object-fit: contain;
    transition-duration: 0.4s;
}

.product_box img:hover
{
    transform: scale(1.1);
    transition-duration: 0.4s;
}

.product_box h4 
{
    font-size: 22px;
    font-weight: 600;
    margin-top: 10px;
    margin-bottom: 10px;
    text-decoration: none !important;
}

.know_more_btn{
    background-color: var(--primary-color);
    color: white !important;
    font-size: 16px;
    font-weight: 500;
    padding: 10px 16px;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    transition-duration: 0.3s;
    margin: 2px 0;
    border: 1px solid var(--primary-color);
}

.know_more_btn:hover 
{
    transition-duration: 0.3s;
    background-color: white;
    color: var(--primary-color) !important;
}

.view_more_box
{
    text-align: center;
    margin-top: 50px;
}

.view_more_box a 
{
    background-color: var(--text-color);
    color: white !important;
    padding: 18px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
}

.view_more_box a:hover
{
    opacity: .8;
}

/*-- our product --*/

/*-- about us --*/
.about_us
{
    padding: 50px 0;
    background-image: url("../image/bg1.jpg");
    background-size: cover;
    background-position: center;
}

.about_us_inner
{
    margin: 10px 0;
    height: 100%;
}

.about_us_text p span
{
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 400;
}


.about_us_text p 
{
    margin: 0px;
}

.about_us_inner img{
    width: 100%;
    object-fit: contain;
    border-radius: 10px !important;
}

.mt-30
{
    margin-top: 30px;
}

.about_us_inner p
{
    font-size: 17px;
    font-weight: 400;
    margin: 20px 0;
}
.about_us_inner p span
{
    font-size: 40px;
    font-weight: 600;
    color: #1233A7;
}

.about_us_inner h4 
{
    font-size: 24px;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 0px;
}
.about_us_inner h5 
{
    font-size: 16px;
    font-weight: 500;
    margin-top: 3px;
    margin-bottom: 3px;
}

.about_us_text 
{
    padding-left: 20px;
}
/*-- /about us --*/

/*-- contact us --*/
.contact_us
{
    padding-top: 60px;
    padding-bottom: 60px;
}

.contact_inner
{
    background-color: var(--color3);
    border-radius: 30px;
    padding: 20px 30px 20px;
}

.contact_inner h2 
{
    color: white;
    font-size: 35px;
    font-weight: 600;
    margin-bottom: 10px;
    text-align: center;
}

.contact_inp
{
    margin: 15px 0;
}

.contact_inp:last-child
{
    margin-bottom: 0;
}

.contact_inp label
{
    display: block;
    font-size: 16px;
    color: white;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 5px;
}

.contact_inp input,.contact_inp textarea
{
    color: white;
    font-size: 16px;
    font-weight: 500;
    width: 100%;
    height: 50px;
    outline: none;
    box-shadow: none;
    border: 1px solid #fff;
    background-color: rgba(255, 255, 255, 0.104);
    padding: 6px 10px;
    border-radius: 6px;
}

.contact_inp textarea
{
    height: 120px;
}

#contact_submit
{
    height: 55px;
    background-color: var(--primary-color);
    border-radius: 6px;
    color: white;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 18px;
    border: none;
}
/*--/contact us --*/

/*-- footer --*/
.footer
{
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    padding-top: 40px;
    padding-bottom: 30px;
    background-color: var(--color5);
   
}

.footer .row > div 
{
    margin: 10px 0;
}

.footer_item
{
    height: 100%;
}

.footer_item h2 
{
    font-size: 22px;
    font-weight: 600;
    margin-top: 0px;
    margin-bottom: 10px;
}

.contact_item
{
    margin-top: 20px;
}

.contact_item h4{
    font-size: 22px;
    font-weight: 600;
}
.contact_item p{
    font-size: 17px;
    font-weight: 500;
    margin: 10px 0;
    letter-spacing: 1px;
}
.contact_item p i 
{
    margin-right: 5px;
}
.footer_item ul 
{
    padding: 0px;
    margin: 0px;
    margin-top: 20px;
    list-style: none;
}
.footer_item ul li
{
    display: block;
    margin: 10px 0;
}
.footer_item ul li a 
{
    font-size: 16px;
    font-weight: 500;
    color: var(--text-color) !important;
    text-decoration: none;
}

.footer_item ul li a:hover 
{
    color: var(--primary-color) !important;
}

.footer_item ul li a i 
{
    font-size: 22px;
    margin-right: 5px;
}

.footer_mail
{
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.335);
    color: white !important;
    display: block;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    text-decoration: none;
    padding: 20px;
}

.footer_mail:hover
{
    color: var(--primary-color) !important;
}

.footer_mail i 
{
    font-size: 40px;
}

.footer_mail span
{
    font-size: 20px;
    font-weight: 500;
    word-break: break-all;
}

.copyright
{
    margin-top: 40px;
    border-top: 1px solid white;
    padding-top: 20px;
}
.copyright p 
{
    font-size: 17px;
    font-weight: 400;
    text-align: center;
    letter-spacing: 1px;
}
/*------- /footer ------*/

@media(max-width:575px)
{
    .logo
    {
        width: 100px;
    }
    .navbar-nav
    {
        text-align: right;
        padding-top: 20px;
    }
    .login_btn
    {
        text-align: center;
    }
    .hero_item_text h3 {
        font-size: 20px;
        margin-top: 14px;
    }
    .hero_item_text h1 {
        font-size: 32px;
        margin: 15px 0;
    }
    .product_sub_title {
        font-size: 16px;
    }
    .product_box {
        margin-bottom: 60px;
    }
    .about_us_inner img {
        margin: auto;
        display: block;
    }
    .contact_inner {
        border-radius: 14px;
        padding: 20px 10px;
    }

    .contact_inner h2 {
        font-size: 32px;
    }

    .footer_item ul {
        margin-top: 15px;
    }
    .contact_item {
        margin-top: 25px;
    }
    .footer_item h2 {
        margin-top: 10px;
    }

    .footer_mail i {
        font-size: 35px;
    }
    .footer_mail span {
        font-size: 18px;
    }

}


@media(min-width:576px) and (max-width:767px)
{
    .logo
    {
        width: 120px;
    }
}



@media(min-width:576px) and (max-width:700px)
{
    .navbar-nav
    {
        text-align: right;
        padding-top: 20px;
    }
    .login_btn
    {
        text-align: center;
    }
  
    .hero_item_text h3 {
        font-size: 22px;
    }
    .hero_item_text h1 {
        font-size: 35px;
        margin: 15px 0;
    }

    .product_box h4 {
        font-size: 20px;
    }
    .product_box {
        margin-bottom: 70px;
    }
    .about_us_inner img {
        margin: auto;
        display: block;
    }
    .contact_inner {
        padding: 30px 40px;
    }
    .footer_item ul {
        margin-top: 20px;
    }
    .footer_item h2 {
        margin-top: 10px;
    }
    
}

@media(min-width:701px) and (max-width:767px)
{
    .navbar-nav
    {
        text-align: right;
        padding-top: 20px;
    }
    .login_btn
    {
        text-align: center;
    }
    
    .hero_item_text h1 {
        font-size: 40px;
    }
    .about_us_inner img {
        display: block;
        margin: auto;
    }
    .footer_item ul {
        margin-top: 20px;
    }
    .footer_item h2 {
        margin-top: 15px;
    }
    .contact_item {
        margin-top: 20px;
    }
}

@media(min-width:768px) and (max-width:991px)
{
    .navbar-nav
    {
        text-align: right;
        padding-top: 20px;
    }
    .login_btn
    {
        text-align: center;
    }
    .hero_item_text h1 {
        font-size: 40px;
    }
    .footer_mail span {
        font-size: 18px;
    }
}
/*====== /index page ========*/

/*====== login page ========*/
.login
{
    padding-top: 120px;
    padding-bottom: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.login_inner
{
    background-color: white;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    padding: 30px 30px;
    border-radius: 10px;
    max-width: 700px;
    width: 96%;
}

.login_inner h2 
{
    font-size: 40px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 10px;
}

.login_inner p 
{
    font-size: 18px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 20px;
}

.login_inner p a 
{
    color: var(--text-color) !important;
    text-decoration: underline;
}



.reg_account_type,.reg_account_type div
{
    display: flex;
    align-items: center;
    justify-content: center;
}

.reg_account_type
{
    margin-bottom: 30px;
}

.reg_account_title
{
    text-align: center;
    font-size: 25px;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 10px;
    font-family: 'Barlow Condensed', sans-serif;
}

.reg_account_type input,.reg_account_type p 
{
  display: block;
}
.reg_account_type input
{
    margin-right: 0px;
    height: 17px;
    width: 17px;
    cursor: pointer;
}
.reg_company
{
    margin-left: 20px;
}
.reg_account_type label 
{
    margin: 0px;
    margin-left: 5px;
    font-size: 17px;
    font-weight: 500;
    cursor: pointer;
}

.company_reg_account
{
  display: none;
}

.login_inp 
{
    margin-bottom: 20px;
}

.login_inp h3 
{
    font-size: 25px;
    font-weight: 500;
    font-family: 'Barlow Condensed', sans-serif;
}
.login_inp h3 span
{
    color: red;
}

.login_inp label
{
    display: block;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 4px;
}
.login_inp label span 
{
    color: red;
}
.login_inp input,.login_inp select,.login_inp textarea
{
    width: 100%;
    height: 60px;
    outline: none;
    box-shadow: none;
    border: none;
    border: 1px solid #cccccc81;
    padding: 4px 12px;
    font-size: 16px;
    font-weight: 500;
    margin: 2px 0;
    border-radius: 6px;
}

.login_inp textarea
{
    height: 100px;
}

.pass_toggle
{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
    background-color: transparent;
    box-shadow: none;
    outline: none;
    border: none;
    cursor: pointer;
}


#login_btn
{
    background-color: var(--primary-color);
    color: white;
    height: 60px;
    border: none;
    border-radius: 4px;
    font-size: 18px;
}

#login_btn.stopped 
{
    pointer-events: none;
    background-color: #ccc;
}

.login_inner p 
{
    text-align: center;
    margin-top: 5px;
    font-size: 17px;
    font-weight: 500;
}

/*======= profile  =========*/
.profile
{
    padding-top: 120px;
    padding-bottom: 50px;
}

.profile_left
{
    padding: 30px;
}
.profile_left ul 
{
    padding: 0px;
    margin: 0px;
    list-style: none;
}
.profile_left ul li 
{
    margin: 14px 0;
}
.profile_left ul li a 
{
    font-size: 18px;
    font-weight: 500;
    color: black !important;
    text-decoration: none;
    background-color: #889369;
    padding: 8px 20px;
    display: block;
    border-radius: 4px;
}
.profile_right
{
    padding: 30px;
}
.profile_right h2 
{
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 20px;
}
.profile_right ul 
{
    padding: 0px;
    margin: 0px;
    padding-left: 10px;
}
.profile_right ul li 
{
    margin: 20px 0;
    list-style: none;
    font-size: 20px;
    font-weight: 500;
    display: flex;
    flex-direction: column;
}
.profile_right ul li b 
{
    font-size: 22px;
    font-weight: 700;
}
.change_pass_inp
{
    margin-bottom: 20px;
}
.change_pass_inp label
{
    display: block;
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 4px;
}
.change_pass_inp input
{
    height: 40px;
    outline: none;
    box-shadow: none;
    border: none;
    border: 1px solid #ccc;
    padding: 6px 10px;
    width: 100%;
    font-size: 17px;
    font-weight: 500;
}
#change_pass_btn
{
    background-color: var(--primary-color);
    color: white;
    border: none;
    height: 45px;
    border-radius: 4px;
}

.profile_title
{
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 20px;
} 

.profle_menu
{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    padding-bottom: 10px;
    border-bottom: 1px solid #cccccc81;
}

.profle_menu .user_name 
{
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color) !important;
    text-decoration: none;
}

.profle_menu ul
{
    padding: 0px;
    margin: 0px;
    list-style: none;
  
}
.profle_menu ul li 
{
    display: inline-block;
    margin: 2px 16px;
}
.profle_menu ul li:first-child
{
    margin-left: 0px;
}
.profle_menu ul li a 
{
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    color: var(--color3) !important;
}

.profle_menu ul li a.active 
{
    color: black !important;
    padding-bottom: 3px;
    border-bottom: 2px solid black;
}

.profile_option
{
    padding-top: 30px;
}

.profile_option h3 
{
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--primary-color);
}
.profile_option ul
{
    padding: 0px;
    margin: 0px;
    list-style: none;
}
.profile_option ul li 
{
    margin: 12px 0;
}
.profile_option ul li a 
{
   font-size: 16px;
   font-weight: 500;
   text-decoration: none;
   color: var(--text-color) !important;
}

#profile_side_menu.active 
{
    display: block;
}

.profile_single
{
    padding-top: 40px;
    position: relative;
}
.profile_side_menu
{
    z-index: 2;
}
.profile_side_menu_item
{
    margin-bottom: 15px;
}
.profile_side_menu_item p
{
    margin: 0px;
}
.profile_side_menu_item p button 
{
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color) !important;
    text-decoration: none;
    width: 100%;
    display: flex;
    justify-content: space-between;
    background-color: whitesmoke;
    padding: 10px 10px;
    outline: none;
    border: none;
    box-shadow: none;
    border: none;
}
.profile_side_menu_item p button span
{
    display: block;
}
.profile_side_menu_item p button span i 
{
    color: black;
}
.profile_side_menu_item .card-body
{
  padding: 0px;
  margin: 0px;
  border: none;
}
.profile_side_menu_item ul 
{
    padding: 0px;
    margin: 0px;
    padding-left: 15px;
    list-style: none;
}
.profile_side_menu_item ul li 
{
    margin: 10px 0;
}
.profile_side_menu_item ul li a 
{
    font-size: 16px;
    font-weight: 500;
    color: black !important;
    text-decoration: none;
}
.profile_side_menu_item ul li a:hover 
{
    text-decoration: underline;
}
.profile_right_det h1 
{
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 5px;
    border-bottom: 2px solid #cccccc81;
    padding-top: 0px;
    padding-bottom: 10px;
    color: var(--primary-color);
}

.profile_right_det_single
{
    display: grid;
    grid-template-columns: 40% 55%;
    gap: 5px;
    align-items: center;
    padding: 25px 0;
    border-bottom: 1px solid #cccccc81;
}
.profile_right_det_single h4
{
   font-size: 16px;
   font-weight: 700;
   margin: 0px;
}
.profile_right_det_single p
{
   font-size: 16px;
   font-weight: 400;
   margin: 0px;
}
.profile_right_val
{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.profile_right_val a {
    color: var(--primary-color) !important;
    font-size: 17px;
    font-weight: 600;
}

.profile_name_update
{
    margin-top: 20px;
}
.profile_name_update input,.profile_name_update select,.profile_name_update textarea
{
    width: 100%;
    height: 45px;
    outline: none;
    border: 1px solid #ccc;
    padding: 4px 8px;
    font-size: 15px;
    font-weight: 400;
    margin: 2px 0;
}

.profile_name_update textarea
{
    height: 80px;
}
#personal_update_btn
{
    background-color: var(--primary-color);
    color: white !important;
    font-size: 16px;
    font-weight: 400;
    border: none;
}

.profile_name_update
{
    display: none;
}
.profile_name_update_active 
{
    display: block;
}

.p_side_menu_btn
{
    display: none;
    font-size: 22px;
    color: var(--primary-color) !important;
    text-decoration: none;
    margin-right: 5px;
    border: 1px solid var(--primary-color);
    border-radius: 4px;
    padding: 3px 6px;
}


@media(max-width:425px)
{
    .profle_menu ul li a {
        font-size: 15px;
    }
    .profle_menu .user_name {
        font-size: 15px;
    }
    .profle_menu ul li {
        margin: 2px 8px;
    }

    .profile_side_menu
    {
      position: absolute;
      height: 100%;
      left: 0px;
      top: 100px;
      background: white;
      box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
      display: none;
    }

    .profile_right_det h1 {
        font-size: 20px;
        padding-bottom: 7px;
    }

    .profile_right_val {
        align-items: flex-start;
        flex-direction: column;
    }
    .profile_right_val a {
        font-size: 14px;
    }
    .profile_right_det_single p {
        font-size: 15px;
    }
    .profile_right_det_single h4 {
        font-size: 15px;
    }
    .p_side_menu_btn
    {
       display: inline-block !important;
    }
    .profile_side_menu_item p button {
        font-size: 16px;
    }
    .profile_side_menu_item ul li a {
        font-size: 15px;
    }
}

@media(min-width:426px) and (max-width:599px)
{
    .profle_menu ul li {
        margin: 2px 10px;
    }
    .profle_menu ul li a {
        font-size: 16px;
    }
    .profle_menu .user_name {
        font-size: 18px;
    }
    .profile_side_menu
    {
      position: absolute;
      height: 100%;
      left: 0px;
      top: 82px;
      background: white;
      box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
      display: none;
    }
    .p_side_menu_btn
    {
        display: inline-block !important;
    }
    .profile_right_det h1 {
        font-size: 25px;
        padding-bottom: 7px;
    }
    .profile_right_val {
        align-items: flex-start;
        flex-direction: column;
    }
    .profile_right_val a {
        font-size: 16px;
    }
    .profile_right_det_single p {
        font-size: 16px;
    }
    .profile_right_det_single h4 {
        font-size: 16px;
    }
   
    .profile_side_menu_item p button {
        font-size: 16px;
    }
    .profile_side_menu_item ul li a {
        font-size: 15px;
    }
}

@media(min-width:600px) and (max-width:767px)
{
    .profile_side_menu
    {
      position: absolute;
      height: 100%;
      left: 0px;
      top: 83px;
      background: white;
      box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
      display: none;
    }
    .p_side_menu_btn
    {
        display: inline-block !important;
    }
    .profile_right_det h1 {
        font-size: 28px;
        padding-bottom: 7px;
    }
    
    .profile_right_val a {
        font-size: 16px;
    }
    .profile_right_det_single p {
        font-size: 16px;
    }
    .profile_right_det_single h4 {
        font-size: 16px;
    }
   
    .profile_side_menu_item p button {
        font-size: 16px;
    }
    .profile_side_menu_item ul li a {
        font-size: 16px;
    }
}

@media(min-width:768px) and (max-width:991px)
{
    .profile_side_menu_item p button {
        font-size: 16px;
    }
    .profile_right_det_single h4 {
        font-size: 16px;
    }
    .profile_right_det_single p {
        font-size: 16px;
    }
    .profile_right_val a {
        font-size: 16px;
    }
}

@media(min-width: 992px) and (max-width: 1199px)
{
    .profile_side_menu_item p button {
        font-size: 17px;
    }
}

/*======= /profile  =========*/


/*======= product page =========*/

.all_product
{
   padding-top: 120px;
   padding-bottom: 50px;
}
.mt-30
{
    margin-top: 30px;
}

.all_product_filter
{
    text-align: center;
    margin-bottom: 60px;
}
.all_product_filter ul
{
    margin: 0px;
    padding: 0px;
    list-style: none;
}
.all_product_filter ul li 
{
    display: inline-flex;
    margin: 5px 5px;
}
.all_product_filter ul li a 
{
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    color: white !important;
    background-color: #1233A7;
    padding: 6px 20px;
    border-radius: 30px;
}

/*======= /product page  =========*/

/*======= single product  =========*/
.single_product
{
    padding-top: 120px;
    padding-bottom: 50px;
}

.single_item_img
{
    overflow: hidden;
}
.single_item_img img{
    width: 100%;
    height: 400px;
    object-fit: contain;
    transition-duration: 0.3s;
    cursor: pointer;
}
.single_item_img img:hover
{
    transform: scale(1.1);
    transition-duration: 0.3s;
}

.product_instruction
{
    text-align: center;
}

.product_instruction h2 
{
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 700;
}
.ins_pdf
{
    margin-top: 20px;
}

.ins_pdf a 
{
    text-decoration: none;
    color: white !important;
    background-color: var(--primary-color);
    font-size: 15px;
    font-weight: 400;
    padding: 7px 12px;
    border-radius: 4px;
    margin: 4px 4px;
    flex-wrap: wrap;
    white-space: nowrap;
    display: inline-block;
}

.single_item_details h2 
{
    font-size: 35px;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 10px;
}
.single_item_details p 
{
    font-size: 16px;
    font-weight: 400;
    margin: 10px 0;
}
.single_item_price h3 
{
    font-size: 40px;
    font-weight: 600;
    margin-top: 20px;
    color: var(--primary-color);
}
.single_item_weight h3 
{
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}
.cart_info_flex
{
    display: flex;
}
.single_item_qty:nth-child(2)
{
    margin-left: 25px;
}
.single_item_qty
{
    display: flex;
    align-items: center;
}
.single_item_qty p 
{
    font-size: 18px;
    font-weight: 600;
    margin-right: 10px;
}
.single_item_qty select
{
    border: none;
    border: 2px solid var(--text-color);
    padding: 6px 14px;
    outline: none;
    box-shadow: none;
    cursor: pointer;
    border-radius: 5px;
    font-size: 20px;
}

.single_item_color p 
{
    font-size: 18px;
    font-weight: 600;
    margin-right: 10px;
}

.single_product_manual_qty input
{
    height: 40px;
    width: 80px;
    border: 2px solid var(--text-color);
    border-radius: 5px;
    box-shadow: none;
    outline: none;
    text-align: center;
    padding: 5px;
}

.single_product_manual_qty input::-webkit-outer-spin-button,
.single_product_manual_qty input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.single_product_manual_qty input[type=number] {
  -moz-appearance: textfield;
}

.color_checkbox
{
    display: flex;
    align-items: center;
}

.single_item_color input 
{
    height: 20px;
    width: 20px;
    accent-color: #1233A7;
    display: block;
    cursor: pointer;
    outline: none;
    box-shadow: none;
}

.color_checkbox span
{
    display: block;
    margin-right: 15px;
    margin-left: 5px;
}

.cart_btn
{
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    color: white !important;
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: 14px 20px;
    border-radius: 4px;
    display: inline-block;
    margin-top: 20px;
    transition: all linear 0.2s;
}

.cart_btn:hover
{
  background-color: white;
  color: var(--primary-color) !important;
}


@media(max-width:425px)
{
    .single_product {
        padding-top: 80px;
    }

    .cart_info_flex
    {
        display: flex;
        flex-direction: column;
    }
    .single_item_qty:nth-child(2)
    {
        margin-left: 0px;
    }
}

@media(min-width:426px) and (max-width: 599px)
{
    .single_product {
        padding-top: 80px;
    }

    .single_item_qty:nth-child(2)
    {
        margin-left: 10px;
    }
}
/*======= /single product  =========*/

.error_msg
{
    color: red;
    display: none;
    font-size: 18px;
}
.success_msg
{
    color: green;
    display: none;
    font-size: 18px;
}

#discount_success,#discount_error
{
    font-size: 15px;
    font-weight: 600;
    margin-top: 10px;
    margin-bottom: 0px;
}

/*======== cart page ======*/
.cart 
{
    padding-top: 120px;
    padding-bottom: 60px;
}

.cart_title
{
    font-size: 32px;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 0px;
}

.cart_price
{
    font-size: 25px;
    font-weight: 600;
    margin: 0px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}
.checkout_option
{
    text-align: center;
}
.checkout_option a 
{
    display: inline-block;
    background-color: #1233A7;
    color: white !important;
    padding: 16px 20px;
    border-radius: 30px;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    margin: 10px 5px;
    width: 100%;

}
.mt-30
{
    margin-top: 30px;
}

.cart_table th 
{
    font-size: 17px;
    font-weight: 600;
}

.select_qty
{
    position: relative;
}
.temp_qty_box
{
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100px; 
    border: 1px solid #ccc;
    padding: 4px 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    border-radius: 4px;
    background-color: #fff;
    display: flex;
    justify-content: space-between;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    pointer-events: none;
}

.manual_qty
{
    display: flex;
}


.manual_qty input::-webkit-outer-spin-button,
.manual_qty input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.manual_qty input[type=number] {
  -moz-appearance: textfield;
}

.temp_qty_box p 
{
    margin: 0px;
}


.cart_table td h4 
{
    font-size: 24px;
    font-weight: 600;
    margin-top: 10px;
    margin-bottom: 10px;
}

.cart_table td h3 
{
    font-size: 18px;
    font-weight: 600;
    margin-top: 0px;
    margin-bottom: 3px;
}
.cart_table td p 
{
    font-size: 15px;
    font-weight: 500;
    margin-top: 0px;
    margin-bottom: 2px;
}

.cart_single
{
    display: flex;
}
.cart_single img 
{
    width: 140px;
    margin-right: 30px;
}
.cart_single h3 
{
    margin-top: 10px !important;
}
.cart_qty
{
    margin-top: 10px;
    display: flex;
    align-items: end;
}
.cart_qty select
{
    border: none;
    border: 1px solid #ccc;
    outline: none;
    padding: 6px 4px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    border-radius: 4px;
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    width: 100px;
}

.manual_qty
{
    margin-top: 10px;
}
.manual_qty input
{
    width: 60px;
    border: none;
    border: 1px solid #ccc;
    padding: 4px;
    outline: none;
    box-shadow: none;
}
.manual_qty button
{
    background-color: rgb(210, 210, 5);
    color: black;
    border-radius: 30px;
    text-align: center;
    border: none;
    font-size: 14px;
    font-weight: 500;
    padding: 6px 8px;
}

.cart_image
{
    width: 100px !important;
    margin-right: 10px !important;
}
@media(max-width:425px)
{
    .cart_image {
        width: 100px;
    }
}
@media(min-width:992px) and (max-width:1199px)
{
    .cart_image {
        width: 90px;
    }
}

.qty_box
{
    display: flex;
    align-items: center;
}
#qty_input{
    width: 50px;
    text-align: center;
    outline: none;
    box-shadow: none;
    border: none;
    border: 1px solid #ccc;
    padding: 0px 0px;
    color: black;
    cursor: pointer;
    background-color: white;
}
/* Chrome, Safari, Edge, Opera */
#qty_input::-webkit-outer-spin-button,
#qty_input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
#qty_input[type=number] {
  -moz-appearance: textfield;
}

#remove_btn
{
    background-color: red;
    padding: 5px;
    color: white !important;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    display: block;
    margin-left: 15px;
}

.cart_right
{
    padding: 0px 20px;
}
.checkout_inp
{
    margin-top: 10px;
    margin-bottom: 10px;
}
.checkout_inp label
{
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 4px;
    display: block
}
.checkout_inp input,.checkout_inp textarea
{
    font-size: 16px;
    font-weight: 500;
    width: 100%;
    height: 40px;
    outline: none;
    box-shadow: none;
    padding: 4px 8px;
    border: none;
    border: 1px solid #ccc;
}
.checkout_inp textarea
{
    height: 100px;
}
#checkout_btn
{
    background-color: #1233A7;
    color: white;
    border: none;
    text-align: center;
}
.px-80
{
    padding: 0px 80px;
}
.decrement_btn,.increment_btn
{
    background-color: #1233A7;
    color: white !important;
    font-size: 20px;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    height: 26px;
    width: 26px;
    text-align: center;
    line-height: 26px;
}

@media(min-width:768px)
{
    
    .shipping_address
    {
        position: sticky;
        top: 70px;
    }
}

.shipping_address h2,.shipping_summary h2,.shipping_product h2,.shipping_timeline h2
{
    font-size: 22px;
    font-weight: 600;
    background-color: #212020;
    color: white;
    padding: 10px 0px 10px 20px;
}

.shipping_summary h2,.shipping_product h2,.shipping_timeline h2
{
    background-color:#a4a4a491;
    color: black;
}
.shipping_inner
{
    background-color: white;
    padding: 20px;
    border-radius: 5px;
}
.shipping_inp
{
    /* display: flex; */
    margin-bottom: 25px;
}
.shipping_inp_left
{
    width: 100%;
}
.shipping_inp_right
{
    width: 100%;
}
.shipping_inp_left p 
{
    font-size: 16px;
    font-weight: 600;
    margin-right: 10px;
    margin-bottom: 4px;
}
.shipping_inp_left p span
{
    color: red;
}
.shipping_inp_right input,.shipping_inp_right select
{
    max-width: 100%;
    width: 100%;
    height: 40px;
    outline: none;
    box-shadow: none;
    padding: 4px 8px;
    border: none;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.shipping_login p 
{
    font-size: 16px;
    font-weight: 600;
}

.shipping_condition
{
    display: flex;
    align-items: flex-start;
    background-color: #cccccc81;
    border: 1px solid #cccccc81;
    padding: 20px 15px;
    border-radius: 4px;
}
.shipping_condition input
{
    height: 20px;
    width: 20px;
    margin-right: 10px;
    cursor: pointer;
}
.shipping_condition p 
{
    font-size: 16px;
    font-weight: 500;
    margin: 0px;
}
.shipping_btn
{
    margin-top: 20px;
    text-align: right;
}
.shipping_btn button
{
    outline: none;
    border: none;
    color: white;
    background-color: var(--primary-color);
    padding: 9px 14px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
}


.shipping_right
{
    background-color: white;
    height: 100%;
}
.shipping_summary
{
    border: 1px solid #ccc;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}
.summary_details
{
    padding: 15px;
}
.summary_details h5
{
   display: flex;
   justify-content: space-between;
   font-size: 16px;
   font-weight: 600;
   margin-bottom: 15px;
}

.shipping_charge
{
    color: var(--primary-color);
}

.summary_details h5 span:nth-child(2)
{
    text-align: right;
}

.shipping_det
{
    font-size: 13px;
}
.summary_details h4
{
   display: flex;
   justify-content: space-between;
   font-size: 22px;
   font-weight: 800;
}

.summary_details h4 span:nth-child(2)
{
    text-align: right;
}

.shipping_product
{
    margin-top: 30px;
}
.price_qty_box
{
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.shipping_timeline
{
    margin-top: 20px;
    border: 1px solid #cccccc81;
}
.shipping_timeline p 
{
    padding: 20px 15px;
    font-size: 16px;
    font-weight: 500;
    margin: 0px;
}

/* .discount_amt_box
{
    display: none;
} */

.coupon_box
{

}
.coupon_box h3 
{
    font-size: 20px;
    font-weight: 800;
    margin-top: 20px;
    margin-bottom: 4px;
}

.coupon_box form input
{
    width: 75%;
    height: 40px;
    outline: none;
    box-shadow: none;
    border: 1px solid #ccc;
    padding: 4px 8px;
    border-radius: 4px;
}
.coupon_box button
{
    height: 40px;
    width: 23%;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    outline: none;
    box-shadow: none;
    font-size: 14px;
    font-weight: 500;
}
.coupon_restore
{
    display: flex;
}
.coupon_restore h4
{   
  font-size: 16px;
  font-weight: 700;
  color: #1598F1;
  margin: 2px 0;
}

.coupon_restore a 
{
    color: red !important;
    font-size: 16px;
    font-weight: 600;
    display: inline-block;
    margin-left: 15px;
}

.shipping_modal_inp
{
    margin-bottom: 10px;
}

.shipping_modal_inp input
{
    margin-right: 4px;
    cursor: pointer;
}
.shipping_modal_inp label
{
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
}

@media(max-width:599px)
{
    .shipping_inp {
        flex-direction: column;
    }
    .shipping_inp_left,.shipping_inp_right
    {
        width: 100%;
    }
    .shipping_inp_right input {
        max-width: 100%;
    }
    .shipping_inp_left p {
        margin-right: 0px;
        margin-bottom: 4px;
    }
    .shipping_condition p {
        font-size: 14px;
    }
    .shipping_btn button {
        font-size: 12px;
    }

    .shipping_address h2, .shipping_summary h2, .shipping_product h2, .shipping_timeline h2 {
        font-size: 25px;
    }
    .shipping_timeline p {
        font-size: 16px;
    }

    .px-80
    {
        padding: 0px 0px;
    }
    .cart_right {
        padding: 20px 0px;
    }
}

@media(min-width: 600px) and (max-width:767px)
{
    .shipping_inp {
        flex-direction: column;
    }
    .shipping_inp_left,.shipping_inp_right
    {
        width: 100%;
    }
    .shipping_inp_right input {
        max-width: 100%;
    }
    .shipping_inp_left p {
        margin-right: 0px;
        margin-bottom: 4px;
    }
    .shipping_condition p {
        font-size: 14px;
    }
    .shipping_address h2, .shipping_summary h2, .shipping_product h2, .shipping_timeline h2 {
        font-size: 25px;
    }

    .px-80
    {
        padding: 0px 10px;
    }
    .cart_right {
        padding: 20px 10px;
    }
}

@media(min-width: 768px) and (max-width:991px)
{
    .shipping_inp {
        flex-direction: column;
    }
    .shipping_inp_left,.shipping_inp_right
    {
        width: 100%;
    }
    .shipping_inp_right input {
        max-width: 100%;
    }
    .shipping_inp_left p {
        margin-right: 0px;
        margin-bottom: 4px;
    }

    .px-80
    {
        padding: 0px 20px;
    }
    .cart_right {
        padding: 0px 20px;
    }
}

@media(min-width: 992px) and (max-width:1024px)
{
    .shipping_inp_left,.shipping_inp_right {
        width: 100%;
    }
    .shipping_condition p {
        font-size: 15px;
    }
    .shipping_btn button {
        font-size: 15px;
    }
    .shipping_address h2, .shipping_summary h2, .shipping_product h2, .shipping_timeline h2 {
        font-size: 26px;
    }
    .summary_details h5 {
        font-size: 16px;
    }
    .cart_table td h3 {
        font-size: 17px;
    }

    .px-80
    {
        padding: 0px 30px;
    }
    .cart_right {
        padding: 10px 20px;
    }
}

@media(min-width: 1025px) and (max-width:1199px)
{
    .shipping_inp_left,.shipping_inp_right {
        width: 100%;
    }
    .shipping_condition p {
        font-size: 15px;
    }
    .shipping_btn button {
        font-size: 15px;
    }
    .shipping_address h2, .shipping_summary h2, .shipping_product h2, .shipping_timeline h2 {
        font-size: 26px;
    }
    .summary_details h5 {
        font-size: 16px;
    }
    .cart_table td h3 {
        font-size: 17px;
    }
}

@media(min-width: 1200px) and (max-width:1317px)
{
    .px-80
    {
        padding: 0px 30px;
    }
    .cart_right {
        padding: 10px 20px;
    }
}
/*======== /cart page ======*/


/*======== my order page ======*/
#cancel_btn
{
    color: white;
    padding: 8px 14px;
    font-size: 18px;
    transition-duration: 0.3s;
    text-decoration: none;
    white-space: nowrap;
}
#complete_btn
{
    background-color: #1598F1;
    color: white;
    padding: 8px 14px;
    font-size: 18px;
    border: 1px solid #1598F1;
    transition-duration: 0.3s;
    text-decoration: none;
}
#on_the_way_btn
{
    background-color: #095DFA;
    color: white;
    padding: 8px 14px;
    font-size: 18px;
    border: 1px solid #095DFA;
    transition-duration: 0.3s;
    text-decoration: none;
    white-space: nowrap;
}
#pending_btn
{
    background-color: #FA09EF;
    color: white;
    padding: 8px 14px;
    font-size: 18px;
    border: 1px solid #FA09EF;
    transition-duration: 0.3s;
    text-decoration: none;
    white-space: nowrap;
}
/*======== /my order page ======*/


/*======= payment page========*/
.payment_method
{
    padding: 60px 0;
    margin-top: 50px;
}
.payment_method_inner
{
    background-color: white;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    padding: 40px 20px;
    border-radius: 10px;
}
.payment_method_inner h2 
{
    text-align: center;
    margin-bottom: 4px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 40px;
    font-weight: 700;
}
.payment_method_inner p 
{
    text-align: center;
    margin-bottom: 30px;
    font-size: 18px;
    font-weight: 500;
}
.method_form_inp label
{
    display: block;
    position: relative;
    background-color: #095DFA;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}
.method_form_inp label img 
{
    height: 40px;
}
.method_form_box
{
    display: flex;
    justify-content: center;
    align-items: center;
}

.method_form_box ul 
{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    display: flex;
}
.method_form_box ul li 
{
    display: block;
    margin: 2px 10px;
}
#checkout-button
{
    background-color: #1598F1;
    color: white;
    border: none;
    padding: 8px 40px; 
    border-radius: 4px;
}
#checkout-button i 
{
    font-size: 36px;
}

/*======= payment page======*/

/*======= track order page======*/
.order_search_form
{
   margin: auto;
   padding-top: 30px;
   max-width: 500px;
   width: 99%;
   padding: 10px;
}
.order_search_form form label
{
    display: block;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 4px;
}

.order_search_form form input 
{
    height: 60px;
    width: 100%;
    outline: none;
    box-shadow: none;
    border: none;
    border: 1px solid #ccc;
    display: block;
    padding: 5px 8px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 4px;
}

#track_order_btn
{
    margin-top: 10px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    font-size: 18px;
    font-weight: 500;
}

.edit_cart_btn
{
    font-size: 20px;
    font-weight: 500;
    color: red !important;
    font-family: 'Barlow Condensed', sans-serif;
}
/*======= /track order page======*/

/*======= floating contact======*/
.float_contact
{
    position: fixed;
    bottom: 0px;
    right: 0px;
    z-index: 2;
}

.float_contact_icon button
{
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 30px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    font-size: 20px;
    font-weight: 600;
    margin: 0px;
}
.float_contact_icon button i 
{
    margin-right: 5px;
}
.floating_messag_box
{
    max-width: 400px;
    width: 98%;
    background-color: #e8f0f7;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    display: none;
}
.floating_m_top
{
    background-color: var(--primary-color);
    color: white;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.floating_m_top h2 
{
    font-size: 25px;
    font-weight: 500;
    margin: 0px;
}
.floating_m_top p
{
    font-size: 16px;
    font-weight: 400;
    margin: 0px;
}
.floating_m_top p i 
{
    font-size: 12px;
    color: #43b72a;
}
.floating_m_top div a 
{
    color: white !important;
    font-size: 20px;
}

.floating_m_mid
{
    max-height: 550px;
    min-height: 350px;
    overflow-y: auto;
}

.floating_m_mid::-webkit-scrollbar {
    width: 5px;
  }
  
.floating_m_mid::-webkit-scrollbar-track {
   background: #f1f1f1; 
}
   
.floating_m_mid::-webkit-scrollbar-thumb {
   background: #888; 
}

.floating_m_mid::-webkit-scrollbar-thumb:hover {
   background: #555; 
}

.floating_m_mid h6 
{
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    margin-top: 10px;
    margin-bottom: 12px;
}
.floating_m_mid h6 span
{
    background-color: var(--color4);
    padding: 5px 8px;
    border-radius: 4px;
}
.floating_mid_info
{
    background-color: white;
}
.floating_m_mid_inner
{
    padding: 8px 15px;
}
.floating_mid_info
{
    padding: 12px;
    border-radius: 8px;
}
.floating_mid_info p 
{
   font-size: 14px;
   font-weight: 400;
   margin: 0px;
}
.floating_mid_form
{
    margin-top: 10px;
    background-color: white;
    padding: 12px;
    border-radius: 8px;
}
.floating_inp 
{
  position: relative;
  margin-bottom: 10px;
}

.float_error
{
    font-size: 15px;
}

.floating_inp:last-child
{
    margin-bottom: 0px;
}
.floating_inp input,.floating_inp textarea
{
    height: 40px;
    width: 100%;
    outline: none;
    box-shadow: none;
    padding: 4px 20px 4px 10px;
    font-size: 17px;
    font-weight: 400;
    border: none;
    border-bottom: 1px solid #ccc;
}
.floating_inp textarea
{
    height: 100px;
}
.floating_require 
{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0px;
    cursor: pointer;
}
#floating_btn
{
    background-color: var(--primary-color);
    color: white;
    cursor: pointer;
    height: 45px;
    border-radius: 4px;
    border: 1px solid var(--primary-color);
}

@media(max-width: 425px)
{
    .floating_messag_box {
        max-width: 300px;
    }
    .floating_m_top h2 {
        font-size: 22px;
    }
    .floating_m_top p {
        font-size: 13px;
    }
}

@media(min-width: 426px) and (max-width:599px)
{
    .floating_messag_box {
        max-width: 350px;
    }
}

/*======= /floating contact======*/

/*======= verify success ======*/
.verify_result
{
    padding: 60px 0px;
    display: flex;
    justify-content: center;
}

.verify_inner
{
    background-color: white;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    padding: 30px 15px;
    border-radius: 10px;
    width: 94%;
    max-width: 650px;
    height: fit-content;
    text-align: center;
}

.verify_inner img
{
    width: 100px;
    margin-bottom: 20px;
}
.verify_inner p 
{
    font-size: 18px;
    font-weight: 600;
    margin-top: 0px;
    margin-bottom: 30px;
}
.verify_inner a 
{
    font-size: 16px;
    font-weight: 600;
    background-color: var(--primary-color);
    color: white !important;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
}
/*======= /verify success ======*/

/*----- message page -------*/
.message_box
{
    padding-top: 30px;
}
.message_box_left ul 
{
    margin: 0px;
    padding: 0px;
    list-style: none;
}
.message_box_left ul li 
{
    display: block;
    margin: 10px 0; 
    padding: 6px 6px;
}
.message_box_left a 
{
    color: #999 !important;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
}
.message_box_left a.active, .message_box_left a:hover 
{
    color: var(--primary-color) !important;
}
.message_box_inner h2 
{
  font-size: 26px;
  font-weight: 600;
  margin-top: 10px;
}

.message_box_item
{
    padding: 20px 20px 10px 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}
.sent_msg_tbl tr th 
{
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 700;
}
.sent_msg_tbl tr td 
{
    font-size: 15px;
    font-weight: 300;
}
.sent_msg_div
{
    height: auto;
    width: 100%;
    min-width: 100px;
    max-height: 100px;
    overflow-y: auto;
}

.sent_msg_div::-webkit-scrollbar {
    width: 4px;
}
.sent_msg_div::-webkit-scrollbar-track {
    background: #f1f1f1; 
}
   
.sent_msg_div::-webkit-scrollbar-thumb {
    background: #888; 
}
.sent_msg_div::-webkit-scrollbar-thumb:hover {
    background: #555; 
}
.sent_msg_trash_btn
{
    font-size: 20px;
    color: red !important;
    text-decoration: none;
}

.reply_msg_btn
{
    font-size: 20px;
    color: #095DFA !important;
    display: inline-block;
    margin-right: 8px;
    text-decoration: none;
}

.message_pagination
{
    display: flex;
    justify-content: flex-end;
}
.pagi_active
{
    background-color: #095DFA !important;
    color: white !important;
}

@media(max-width:425px)
{
    .message_box_left ul li {
        display: inline-block;
        margin: 7px 5px;
        padding: 3px 6px;
    }
    .message_box_left a {
        font-size: 17px;
    }
}

@media(min-width:426px) and (max-width:767px)
{
    .message_box_left ul li {
        display: inline-block;
        margin: 7px 5px;
        padding: 3px 6px;
    }
    .message_box_left a {
        font-size: 18px;
    }
}

@media(min-width:768px) and (max-width:991px)
{
    .message_box_left ul li {
        display: inline-block;
        margin: 4px 5px;
        padding: 3px 0px;
    }
    .message_box_left a {
        font-size: 16px;
        white-space: nowrap;
    }
}

/*----- /message page -------*/

/*----- payment method page -------*/
.add_payment_box
{
    margin-top: 20px;
    background-color: var(--color6);
    color: white;
    padding: 20px;
    border-radius: 4px;
    display: flex;
    justify-content: space-between;
}
.a_p_box_left
{
    display: flex;
}
.a_p_box_left i 
{
    font-size: 15px;
    margin-right: 10px;
    background-color: white;
    color: #095DFA;
    height: 20px;
    width: 20px;
    line-height: 20px;
    border-radius: 50%;
    text-align: center;
}
.a_p_box_left h6 
{
    font-size: 17px;
    font-weight: 500;
    margin-top: 0px;
    margin-bottom: 4px;
}

.a_p_box_left p 
{
    font-size: 16px;
    font-weight: 500;
    margin-top: 0px;
    margin-bottom: 0px;
}

.a_p_box_right a 
{
    color: white !important;
    font-size: 16px;
    font-weight: 500;
}
.payment_option_title
{
    font-size: 30px;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 20px;
}

.drag_payment_box
{
    width: 100%;
    max-width: 400px;
    height: 200px;
    border: 1px solid #8999;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-decoration: none;
}
.drag_payment_box i 
{
    font-size: 18px;
    color: #1598F1 !important;
}
.drag_payment_box p 
{
    font-size: 18px;
    font-weight: 600;
    margin-top: 10px;
    color: #1598F1 !important;
}

.method_select
{
    position: fixed;
    top: 0px;
    left: 0px;
    height: 100vh;
    width: 100vw;
    background-color: rgba(0,0,0,.55);
    z-index: 111;
    display: none;
    justify-content: center;
    align-items: center;
}

.credit_info
{
    position: fixed;
    top: 0px;
    left: 0px;
    height: 100vh;
    width: 100vw;
    background-color: rgba(0,0,0,.55);
    z-index: 111;
    display: none;
    justify-content: center;
    align-items: center;
}

.method_select_inner,.credit_info_inner
{
    background-color: white;
    width: 95%;
    max-width: 550px;
    border-radius: 10px;
}
.method_select_top,.credit_info_top
{
    padding: 20px 20px 0px 20px;
    display: flex;
    justify-content: space-between;
}
.method_select_top h2,.credit_info_top h2 
{
    font-size: 20px;
    font-weight: 700;
}

.method_select_top a,.credit_info_top a
{
    text-decoration: none;
    color: black !important;
}
.method_select_top a i,.credit_info_top a i 
{
    font-size: 25px;
}

.method_select_mid
{
    padding: 5px 20px;
    max-height: 400px;
    min-height: 300px;
    height: 100%;
    overflow-y: auto;
}
.method_single
{
    display: flex;
    margin: 30px 0;
}
.method_single_left input
{
    height: 20px;
    width: 20px;
    cursor: pointer;
    margin-right: 15px;
}

.method_single_right
{
    display: flex;
}
.method_single_right i 
{
    color: #095DFA;
    font-size: 20px;
    margin-right: 6px;
}
.method_single_right h5 
{
    font-size: 16px;
    font-weight: 700;
    margin-top: 0px;
    margin-bottom: 2px;
}
.method_single_right p 
{
    margin: 2px 0;
    font-size: 16px;
    font-weight: 400;
}
.method_select_bottom,.credit_info_bottom
{
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
}

.method_select_bottom p,.credit_info_bottom p  
{
    font-size: 16px;
    font-weight: 500;
    margin: 0px;
}
.method_select_bottom p i,.credit_info_bottom p i {
    margin-right: 5px;
}
.method_select_bottom .cancel_btn,.credit_info_bottom .cancel_btn
{
    display: inline-block;
    color: red !important;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    padding: 9px 16px;
    border-radius: 30px;
    border: 1px solid red;
    margin-right: 10px;
}
.method_select_bottom .continue_btn,.credit_info_bottom .continue_btn
{
    display: inline-block;
    background-color: var(--primary-color);
    color: #fff !important;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    padding: 9px 16px;
    border-radius: 30px;
    margin-right: 10px;
}
.credit_info_mid
{
    padding: 10px 20px;
}

.credit_info_mid h2 
{
    font-size: 18px;
    font-weight: 700;
    margin-top: 5px;
    margin-bottom: 15px;
}

.credit_info_inp 
{
    margin-bottom: 15px;
} 
.credit_info_inp input
{
    height: 40px;
    width: 100%;
    outline: none;
    box-shadow: none;
    padding: 4px 8px;
    font-size: 15px;
    font-weight: 500;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.credit_info_inp img 
{
    width: 150px; 
}
.billing_add p 
{
    margin: -2px 0;
    font-size: 15px;
    font-weight: 500;
}

.billing_add p a 
{
    display: block;
    margin-top: 6px;
    color: black !important;
}

@media(max-width:599px)
{
    .add_payment_box {
        flex-direction: column;
    }
    .a_p_box_right
    {
        margin-top: 12px;
    }
    .method_select_bottom, .credit_info_bottom {
        flex-direction: column-reverse;
    }
    .method_select_bottom p, .credit_info_bottom p {
        margin-top: 20px;
    }
}

@media(min-width:600px) and (max-width:767px)
{
    .a_p_box_right a {
        white-space: nowrap;
    } 
    .a_p_box_left {
        margin-right: 10px;
    }
}

/*----- /payment method page -------*/

.profile_right_val .change_pass_btn
{
    background-color: var(--primary-color);
    color: white !important;
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 400;
}

/*---- message box page ---------*/

.message_single
{
  margin-bottom:14px;
  padding-bottom:10px;
  border-bottom:1px solid #ccc;
}

.msg_s_left p 
{
  font-size: 14px;
  font-weight:700;
  margin:0px;
}
.msg_s_right p 
{
  font-size:17px;
  font-weight:400;
  margin-top:2px;
  margin-bottom:0px;
}

.msg_s_right h5 
{
  font-size:14px;
  font-weight:600;
  margin-top:10px;
  margin-bottom:0px;
}
.reply_msg_box
{
  margin-top:30px;
}
.reply_msg_box h4 
{
  font-size:20px;
  font-weight: 600;
  margin-bottom:10px;
  color: var(--color6);
}

.reply_msg_box form textarea 
{
  max-width: 100%;
  width: 95%;
  height: 200px;
  border:1px solid #1598F1;
  padding:10px 10px;
  font-size:16px;
  font-weight:400;
  outline:none;
  border-radius:5px;
  box-shadow:none;
  border-top: 20px solid #1598F1;
}

#reply_btn
{
  display:block;
  width:fit-content;
  background-color:var(--primary-color);
  color:white;
  font-size:18px;
  font-weight:500;
  border:none;
  padding:8px 40px;
  border-radius:5px;
}

/*---- message box page ---------*/


/*--- top message dropdown -----*/
.message_box
{
    position: relative;
}
.message_box i
{
    font-size: 22px;
}
.message_box span
{
    position: absolute;
    top: 0px;
    right: -10px;
    background-color: #095DFA;
    color: white;
    height: 24px;
    width: 24px;
    line-height: 24px;
    text-align: center;
    border-radius: 50%;
    font-size: 12px;
}

.message_box.dropdown-toggle::after {
    display: none;
}
.dropdown_msg span
{
    font-size: 14px;
    font-weight: 400;
}

.dropdown_msg p
{
    font-size: 14px;
    font-weight: 400;
    margin-top: 6px;
    margin-bottom: 0px;
}

.small_screen_msg
{
    display: none;
}


@media(max-width:991px)
{
    .big_screen_msg
    {
        display: none;
    }
    .small_screen_msg
    {
        display: block;
        position: fixed;
        text-decoration: none;
    }
    .small_screen_msg .message_box
    {
       color:rgba(0,0,0,.55) !important;     
    }
}

@media(max-width:425px)
{
    .small_screen_msg 
    {
        top: 1%;
        right: 24%;
    } 
}
@media(min-width:426px) and (max-width:599px)
{
    .small_screen_msg 
    {
        top: 1%;
        right: 20%;
    } 
}
@media(min-width: 600px) and (max-width: 991px)
{
    .small_screen_msg 
    {
        top: 2%;
        right: 25%;
    } 
}

@media (min-width: 991px){
    .navbar-expand-lg .navbar-nav .dropdown-menu {
        right: 10px !important;
    }
}

/*--- /top message dropdown ---*/

/*--- to top ---*/
.float_top_arrow
{
    position: fixed;
    right: 40px;
    bottom: 80px;
    display: none;
}
.top_arrow_btn
{
    background-color: #fff;
    border: 1px solid var(--primary-color);
    color: var(--primary-color) !important;
    font-size: 20px;
    font-weight: 500;
    display: inline-block;
    height: 45px;
    width: 45px;
    line-height: 45px;
    border-radius: 50%;
    text-align: center;
    transition-duration: 0.3s;
}
.top_arrow_btn:hover 
{
    transition-duration: 0.3s;
    background-color: var(--primary-color);
    color: white !important;
}
/*-- / to top  --*/

/*---- color details page -----*/
.color_breadcome h4 
{
   font-size: 18px;
   font-weight: 600;
   display: flex;
   align-items: center;
   gap: 10px;
}

.color_breadcome h4 a 
{
    display: block;
    text-decoration: none;
}

.color_details
{
    padding-top: 120px;
    padding-bottom: 80px;
}

.color_details .row
{
    align-items: center;
}

.color_details_left
{
    margin: 10px auto;
    height: 500px;
    width: 80%;
    padding: 10px;
}

.color_details_right
{
    margin: 10px 0;
    padding-left: 60px;
    padding-top: 0px;
}
.color_details_info
{
    padding-top: 20px;
}
.color_details_info h5 
{
    font-size: 18px;
    font-weight: 600;
    margin: 0px;
}

.color_details_info h3 
{
    font-size: 45px;
    font-weight: 600;
    margin-top: 6px;
    margin-bottom: 6px;
}

.color_details_info h4 
{
    font-size: 18px;
    font-weight: 600;
    margin: 5px 0;
}
.color_paint_option
{
    padding-top: 10px;
}
.color_paint_option > h4 
{
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
}
.color_paint_in
{
    display: flex;
    align-items: center;
    gap: 20px;
}

.color_paint_box
{
    text-align: center;
    padding: 13px 8px;
    border-radius: 5px;
    text-decoration: none !important;
}

.color_paint_box img 
{
    width: 40px;
}
.color_paint_box p 
{
    margin-top:  7px;
    margin-bottom: 0px;
    font-size: 16px;
    font-weight: 600;
}
.painting_view
{
    padding: 60px 0;
}

.painting_view_in > h1 
{
    font-size: 35px;
    font-weight: 600;
    margin-bottom: 30px;
}

.paintaing_img_box_view
{
    display: none;
}
.paintaing_img_box_view.active 
{
    display: block;
}
.paintaing_img_box_view img 
{
    width: 100%;
}
.painting_view_link
{
    display: grid;
    grid-template-columns: 20% 20% 20% 20% 20%;
    align-items: center;
    justify-content: center;
}
.painting_view_link a 
{
    display: block;
    text-align: center;
    padding: 18px 0;
    color: black !important;
    text-transform: uppercase;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
}
.painting_view_link a:hover 
{
    background-color: #cccccc52;
}

@media(max-width : 575px)
{
    .color_details .row 
    {
        flex-direction: column-reverse;
    }
    
    .color_details_left
    {
        height: 400px;
        width: 100%;
    }

    .color_details_right {
        margin: 10px 0;
        padding-left: 0px; 
        padding-top: 20px;
    }
    .color_breadcome h4 {
        font-size: 14px;
        gap: 14px;
    }
    .color_details_info {
        padding-top: 20px;
    }
    .color_details_info h3 {
        font-size: 35px;
    }
    .color_paint_option {
        padding-top: 10px;
    }
    
    .color_paint_box i {
        font-size: 25px;
    }
    .color_paint_box p {
        font-size: 15px;
    }
    .painting_view_in > h1 {
        font-size: 30px;
    }
    .painting_view_link {
        grid-template-columns: 33% 33% 33%;
    }
    .painting_view_link a {
        font-size: 12px;
    }
}

@media(min-width : 576px) and (max-width : 700px)
{
    .color_details .row 
    {
        flex-direction: column-reverse;
    }
    .color_details_left
    {
        height: 400px;
        width: 100%;
    }

    .color_details_right {
        padding-left: 20px;
        padding-top: 30px;
    }
    .color_breadcome h4 {
        font-size: 14px;
    }
    .color_details_info {
        padding-top: 20px;
    }
    .color_details_info h3 {
        font-size: 40px;
    }
    .painting_view_link a {
        font-size: 13px;
    }

}

@media(min-width : 701px) and (max-width : 767px)
{
    .color_details .row 
    {
        flex-direction: column-reverse;
    }
    .color_details_left
    {
        height: 400px;
        width: 100%;
    }
    .color_details_right {
        padding-left: 20px;
        padding-top: 30px;
    }
    .color_breadcome h4 {
        font-size: 15px;
    }
    .painting_view_link a {
        font-size: 14px;
    }
}

@media(min-width : 768px) and (max-width : 991px)
{
    .color_details_right {
        padding-left: 20px;
        padding-top: 50px;
    }
    .color_breadcome h4 {
        font-size: 13px;
        gap: 12px;
    }
    .color_details_info {
        padding-top: 20px;
    }
    .color_details_info h3 {
        font-size: 40px;
    }
    .color_paint_option {
        padding-top: 10px;
    }
    .color_paint_box i {
        font-size: 24px;
    }
    
    .painting_view_link a {
        font-size: 15px;
    }
}

@media(min-width : 992px) and (max-width : 1200px)
{
    .color_breadcome h4 {
        font-size: 15px;
    }
    .color_details_right {
        padding-left: 20px;
        padding-top: 40px;
    }
    .color_details_info {
        padding-top: 30px;
    }
    .color_paint_option {
        padding-top: 10px;
    }
    
    .color_paint_box i {
        font-size: 25px;
    }
    .painting_view_link a {
        font-size: 15px;
    }
}
/*---- /color details page -----*/

/*====== all color page ======*/
.color_section
{
    padding-top: 120px;
    padding-bottom: 60px;
}
.color_in >  h2 
{
  font-size: 35px;
  font-weight: 600;
}

.color_main
{
    padding-top: 20px;
}

.color_top
{
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 15px;
}

.color_top h1 
{
    font-size: 22px;
    font-weight: 600;
    margin: 0;
}

.select_color_filter
{
    height: 40px;
    width: 200px;
    background-color: white;
    border: 2px solid var(--text-color);
    padding: 0px 5px;
    border-radius: 5px;
}

.select_color_filter select
{
    height: 100%;
    width: 100%;
    border: none;
    background-color: transparent;
    padding: 6px 10px;
    font-size: 17px;
    font-weight: 400;
    cursor: pointer;
    outline: none;
    box-shadow: none;
}

.color_bottom
{
    margin-top: 20px;
    background-color: var(--color5);
    height: 100%;
   /*  max-height: 400px; */
    width: 100%;
    /* max-width: 700px;  */
    padding: 30px 30px; 
    overflow: auto;
    border-radius: 10px;
}

.color_bottom.active
{
    padding: 30px 20px; 
}

.color_bottom_in
{
    display: grid;
    grid-template-columns: repeat(10,1fr); 
    align-items: center;
    justify-content: start; 
    gap: 5px 2px;
}

.color_bottom_in.active 
{
    transform: scale(1.2);
    padding: 60px 80px;
}

.color_item
{
    background-color: white;
    padding: 2px;
    transition: all 0.2s linear;
    position: relative;
    border-radius: 5px;
}
.color_item:active 
{
    background-color: #1233A7;
}
.color_item_box
{
    border-radius: 5px;
    height: 80px;
    width: 100%;;
    /* height: 50px;
    width: 50px; */
    cursor: pointer;
}
.color_item_box.active
{   
    height: 120px;
    width: 120px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.color_item_box.active .color_item_in
{
    display: block;
}

.color_item_in
{
    display: none;
    padding: 8px;
}

.color_item_in h6 
{
    font-size: 14px;
    font-weight: 500;
    margin-top: 4px;
    margin-bottom: 0px;
}
.color_item_in h4 
{
    font-size: 15px;
    font-weight: 700;
    margin-top: 4px;
    margin-bottom: 0px;
}
.color_item_in a 
{
    display: inline-block;
    margin-top: 15px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    padding: 3px 6px;
    border-radius: 3px;
}

@media(max-width: 425px)
{
    .color_in > h2 {
        font-size: 30px;
    }
    .color_top {
        gap: 5px;
    }
    .color_top h1 {
        font-size: 20px;
    }
    .color_bottom_in {
        grid-template-columns: repeat(5, 1fr);
    }
    .color_bottom
    {
        padding: 30px 20px; 
    }
    .color_item_box.active {
        height: 106px;
        width: 110px;
    }
    .color_item_box {
        height: 45px;
    }
    .color_item_in a {
        font-size: 12px;
    }
    .color_item_in h6 {
        font-size: 13px;
    }
    .color_item_in h4 {
        font-size: 14px;
    }
    
}

@media(min-width: 426px) and (max-width: 575px)
{
    .color_in > h2 {
        font-size: 32px;
    }
    .color_top {
        gap: 10px;
    }
    .color_top h1 {
        font-size: 20px;
    }

    .color_bottom_in {
        grid-template-columns: repeat(6, 1fr);
        justify-content: center;
    } 
   .color_bottom
    {
        padding: 30px 20px; 
    }
    .color_item_box.active {
        height: 108px;
        width: 110px;
    }
    .color_item_box {
        height: 55px;
    }
    .color_item_in a {
        font-size: 12px;
    }
    .color_item_in h6 {
        font-size: 13px;
    }
    .color_item_in h4 {
        font-size: 14px;
    } 
    
}

@media(min-width: 576px) and (max-width: 767px)
{
    .color_bottom_in {
        grid-template-columns: repeat(6, 1fr);
        justify-content: center;
    } 
   .color_bottom
    {
        padding: 30px 20px; 
    }
    .color_item_box {
        height: 65px;
    }
}

@media(min-width: 768px) and (max-width: 991px)
{
    .color_bottom_in {
        grid-template-columns: repeat(8, 1fr);
        justify-content: center;
    } 
    .color_item_box {
        height: 65px;
    }
}

/*====== /all color page ======*/

/*====== Coming Soon ======*/
.coming_soon
{
    padding: 120px 0 40px 0;
}
.coming_soon_left,
.coming_soon_right
{
    margin: 10px 0;
}

.coming_soon_left h1 
{
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--primary-color);
}
.coming_soon_left h2 
{
    font-size: 18px;
    font-weight: 500;
}

.coming_soon_left h5 
{
    font-size: 20px;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.coming_soon_left p 
{
    font-size: 16px;
    font-weight: 400;
    margin: 10px 0;
}

.coming_soon_left a 
{
    display: inline-block;
    margin-top: 10px;
    background-color: var(--primary-color);
    color: white !important;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none !important;

    &:hover 
    {
        opacity: .9;
    }
}

.coming_soon_right img 
{
   /*  display: block;
    margin: auto;
    max-width: 550px; */
    width: 100%;
    border-radius: 10px;
}

.coming_soon_right_btm
{
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.coming_soon_right_btm a 
{
    display: flex;
    align-items: center;
    gap: 2px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none !important;
    padding: 8px 12px;
    border-radius: 5px;
    border: 1px solid var(--primary-color);
    color: var(--primary-color) !important;
    transition: all linear 0.2s;

    &:hover 
    {
        background-color: var(--primary-color);
        color: white !important;
    }
}

@media(max-width : 425px)
{
    .coming_soon {
        padding: 100px 0 40px 0;
    }
}
/*====== /Coming Soon ======*/

.swal2-actions
{
    gap: 15px;
}
