@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@400;500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Hind+Siliguri:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Bengali:wght@400;500;600;700&display=swap');

 :root {
     --heading-font-family: 'Rubik', sans-serif;
     --primary-font-family: 'Lato', sans-serif;
}
 body {
     background-color: var(--background-color);
     color: var(--primary-font-color);
     font-size: 18px;
     font-family: var(--primary-font-family);
}
p {
  color: var(--primary-font-color);
  font-size: 14px;
  font-family: var(--primary-font-family)
}
a { 
  color: var(--theme-color);
  text-decoration: none;
  font-size: 14px;
  font-family: var(--primary-font-family)
}
 h1, h2, h3, h4, h5, h6 {
     font-family: var(--heading-font-family);
}
 h2 {
     font-size: 24px;
     font-weight: 500;
     padding: 10px 0px 10px;
}
 h3 {
     font-size: 22px;
     font-weight: 500;
     padding: 10px 0px 10px;
}
 h4 {
     font-size: 20px;
     font-weight: 500;
     padding: 10px 0px 10px;
}
 h5 {
     font-size: 18px;
     font-weight: 500;
     padding: 0px 10px 10px 10px;
} 

.footer{

    padding: 30px 50px;
    font-size: 14px;
     font-family: var(--primary-font-family);

     background-color: #575757; color: #fff;

}
.footer .col-sm-4{
    padding: 20px;
}



 .shadow{
     box-shadow: 0 .15rem 1.75rem 0 rgba(58,59,69,.15)!important;
}

.alert-white {
    font-size: 16px;
    padding: 5px;
    color: #b03e3e;
} 
.alert-green {
    font-size: 16px;
    padding: 5px;
    color: #0f943d;
}

.alert-white a,
.alert-green a{
    font-size: 16px;
}

.required_info{
    font-size: 18px;
    padding-top: 5px;
    color: red;
}


.p-tb-20{
    padding: 20px 0px 20px 0px !important;
}
.p-tb-50{
    padding: 50px 0px 50px 0px !important;
}

.m-r-3{
    margin-right: 3px;
}
.m-lr-3{
    margin-left: 3px;
    margin-right: 3px;    
}

.tooltip_icon {
    position: relative;
    top: -5px; /* Adjust this value as needed */
    margin-right: 5px; /* Add some spacing between the icon and text */
    border-radius: 50%;
    height: 15px;
    width: 15px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: #b03e3e;
    background-color: #e5e5e5;
    font-size: 8px;
}


/********************************* Navigation **********************************/
 .navbar {
     background-color: var(--navigation-background-color);
     display: flex;
     align-items: center;
     padding: 20px 10px 20px 10px;
     z-index: 1000;
     border-bottom: 1px solid #e5e5e5;
}
 .navbar-brand img{
     max-height: 25px;
     max-width: auto;
} 
.company_logo{
     max-height: 35px;
     max-width: auto;
     margin-bottom: 10px;
}
 .navbar-brand {
     font-weight: 500;
     font-size: 21px;
     color: var(--logo-color) !important;
     text-transform: uppercase;
     font-family: var(--heading-font-family);
}
 .navbar-brand:hover, .navbar-brand:focus, .navbar-brand:active {
     color: var(--logo-color) !important;
}
 .navbar-nav .nav-link:hover, .navbar-nav .nav-link:focus {
     opacity: 0.6;
}
 .navbar-nav .nav-link {
     margin-right: 15px;
     font-family: var(--heading-font-family);
     font-size: 16px;
     font-weight: 400;
     color: var(--navigation-font-color);
     padding: 0 18px;
}
 .navbar-nav .nav-link.active {
     background-color: var(--navigation-active-background);
     padding: 8px 12px 8px 12px;
     border-radius: 15px;
     color: var(--navigation-font-color);
     display: inline-block;
}
 .navbar .nav-link img {
     margin-right: 5px;
}
 .dropdown-toggle {
     color: var(--navigation-font-color);
}
 .navbar-nav {
     margin-left: auto;
}
/* desktop view start */
 @media (min-width: 991.99px) {
     .navbar-nav {
         display: flex;
         align-items: center;
    }
     .nav-item .signup-btn {
         background-color: rgba(0,0,0,.3);
         color: #fff;
         padding: 8px 15px 8px 15px !important;
         border-radius: 15px;
    }
}
/* desktop view end */
/* mobile view start */
 @media (max-width: 991.98px) {
     .navbar-nav.ms-auto {
         margin-left: 0;
         justify-content: flex-start;
    }
     .navbar-nav.ms-auto .nav-item {
         margin-bottom: 8px;
    }
     .navbar-nav.ms-auto .dropdown-menu {
         right: 0;
         left: auto;
    }
     .navbar-collapse{
         margin: 20px 0px 20px 0px;
    }
     .navbar-nav .nav-link {
         margin: 7px;
    }
     .fa-singin-link, .fa-singup-link{
         display: none;
    }
     .navbar-brand{
         color: var(--logo-color) !important;
         padding: 8px !important;
         font-weight: 500;
         font-size: 18px;
    }
     .navbar-toggler{
         background-color: #e5e5e5 !important;
         border-radius: 5px !important;
         max-width: 20% !important;
         min-width: auto !important;
         text-align: center;
    }
     .navbar-toggler .fa-nav-icon{
         color: var(--primary-font-color) !important;
         font-weight: bold !important;
         padding: 8px 5px 8px 5px !important;
         margin: 0px;
    }
}
/* mobile view end */
 .navbar-toggler, .navbar-toggler:hover, .navbar-toggler:focus, .navbar-toggler:active {
     border: 0pc;
     box-shadow: none;
     outline: none;
}
 .navbar-toggler:hover .fa-nav-icon, .navbar-toggler:focus .fa-nav-icon, .navbar-toggler:active .fa-nav-icon {
     color: rgba(255,255,255,.4);
}



/********************************* Hero Section **********************************/
 .hero {
     width: 100%;
     height: 100%;
     margin: 0px;
     display: flex;
     justify-content: center;
     align-items: center;
}
 .hero-heading {
     color: #3c87f0;
     font-size: 28px;
     font-weight: 700;
     font-family: 'Hind Siliguri', sans-serif;
     margin-bottom: 0px;
     padding-bottom: 0px;
     line-height: 1.7;
}
 .hero-subheading {
     color: #3c87f0;
     font-size: 18px;
     font-weight: 600;
     font-family: 'Hind Siliguri', sans-serif;
     margin-bottom: 4px;
     line-height: 1.4;
}
 .hero .btn, .hero a {
     font-family: 'Roboto', sans-serif;
}
 .hero-buttons {
     margin-bottom: 15px;
}
 .hero-buttons .btn {
     margin-right: 10px;
}
 .hero .row {
     margin: 0;
     padding: 0;
}
/* Mobile view */
 @media (max-width: 991.98px) {
     .hero {
         padding: 20px 20px 0px 20px;
         flex-direction: column;
         align-items: center;
    }
     .hero-img {
         order: -1;
        /* Place image before content in mobile view */
         opacity: 1;
         margin-bottom: 10px;
    }
}
/* Desktop view */
 @media (min-width: 991.99px) {
     .hero-content {
         padding-left: 2%;
         padding-right: 5%;
    }
     .hero {
         padding: 40px 80px 40px 80px;
         flex-direction: row;
        /* Reset to original layout for desktop */
    }
     .hero-img {
         opacity: 1;
         order: 1;
        /* Place image after content in desktop view */
    }
}



/********************************* Product Loop **********************************/
 .short_line{
     display: block;
     border-bottom: 3px solid #575757;
     padding-bottom: 4px;
     margin: 0 auto;
     width: 50px;
     text-align: center;
}
 .product {
     border-radius: 4px;
    background-color: #FFFFFF;
     color: #575757;
    margin: 15px;
     border: 1px solid rgba(87, 87, 87, 0.05);
     box-shadow: 0px 0px 5px rgba(58,59,69,.05)!important;
}
 .product .first-item-line{
     border-bottom: 1px solid #ebebeb;
}
 .product-title {
     padding: 15px;
     background-color: #F5F5F5;
     color:#3c87f0;
     font-weight: bold;
     font-size: 16px;
     font-family: 'Hind Siliguri', sans-serif;
}
 .product-item {
     padding: 8px 15px 8px 15px;
     font-weight: 700;
     font-size: 14px;
     border-bottom: 1px solid #ebebeb;
     font-family: 'Hind Siliguri', sans-serif;
}
 .product-feature{
     background-color: #3c87f0;
     color: #fafafa;
     border-radius: 50%;
     margin-right: 5px;
     font-size: 10px;
     height: 15px;
     width: 15px;
     display: inline-flex;
     justify-content: center;
     align-items: center;
}



 .special-feature-container {
     display: flex;
     align-items: stretch;
     margin: 5px 5px 10px 15px;
     padding: 0px 0px 15px 0px;
}
.product-price-container {
     width: 50% !important;
}


 .special-feature {
     background-color: #F5F5F5;
     flex: 1;
     display: flex;
     align-items: center;
     margin-right: 7px;
     margin-bottom: 5px !important;
     border-radius: 5px;
     max-width: 50% !important;
     min-width: 50% !important;
}
 .special-feature p {
     color: #db40a7;
     padding: 12px;
     line-height: 1.4;
     font-family: 'Hind Siliguri', sans-serif;
     font-weight: bold;
     font-size: 14px;
     margin: 0;
}
 .product-price {
     background-color: #F5F5F5;
     color: #db40a7;
     padding: 12px;
     font-family: 'Hind Siliguri', sans-serif;
     font-weight: bold;
     margin: 0px 15px 0px 5px !important;
     border-radius: 5px;
     font-size: 14px;


    width: calc(100% - 15px) !important;
}
 .theme-btn{
     width: calc(100% - 15px) !important;
     background-color: #db40a7;
     padding: 8px;
     font-family: 'Hind Siliguri', sans-serif;
     font-weight: bold;
     font-size: 14px;
     border: 0px;
     margin: 12px 15px 5px 5px !important;
     border-radius: 5px;

}
 .product-info{
     margin-bottom: 15px;
}
 .hidden {
     display: none;
}
 @keyframes slideLeft {
     0% {
         opacity: 0.5;
    }
     100% {
         opacity: 1;
    }
}
 .show_info {
     animation: slideLeft 0.5s ease-in;
}



/********************************* Site Stats **********************************/
 .stats-info{
     font-family: 'Hind Siliguri', sans-serif;
     text-align: center;
     background-color: white;
     padding: 30px;
     margin: 10px;
}
 .stats-info .title{
     font-weight: 700;
     font-size: 18px;
     display: block;
}
 .stats-info .number{
     font-size: 30px;
     color: green;
     font-weight: 600;
}
 .stats-info i{
     font-size: 36px;
     color: green;
     padding-bottom: 5px;
     display: block;
}



/********************************* Testimonial **********************************/
 .testimonial{
     text-align: center;
     margin: 0px 30px 0px 30px;
}
 .description{
     color:#656565;
     font-size: 24px;
     line-height: 35px;
     margin-bottom: 30px;
     padding:0px 11%;
     position: relative;
     font-family: 'Noto Sans Bengali', sans-serif;
}
 .description:before{
     content: "\f10d";
     font-family: "Font Awesome 5 Free";
     font-weight: 900;
     display: inline-block;
     position: absolute;
     top: 8px;
     left: 2%;
     color:#3498db;
     font-size: 36px;
}
 .description:after{
     content: "\f10e";
     font-family: "Font Awesome 5 Free";
     font-weight: 900;
     display: inline-block;
     position: absolute;
     top: 8px;
     right: 2%;
     color:#3498db;
     font-size: 36px;
}
 .pic{
     width: 94px;
     height: 94px;
     margin: 0 auto;
}
 .pic img{
     width: 100%;
     height: auto;
     border-radius: 50%;
}
 .testimonial-title{
     font-size: 18px;
     color:#333;
     font-weight: bolder;
     text-transform: capitalize;
          font-family: 'Hind Siliguri', sans-serif;

}
 .testimonial-title > small{
     display: block;
     color:#656565;
     font-size: 15px;
     text-transform: uppercase;
     margin-top: 5px;
}
 .owl-theme .owl-controls .owl-page.active span, .owl-theme .owl-controls.clickable .owl-page:hover span{
     background: #3498db;
}
 .owl-theme .owl-controls .owl-page span{
     opacity: 1;
}
 @media screen and (max-width: 480px) {
     .description{
         font-size:19px;
         line-height: 29px;
    }
     .description:before, .description:after{
         font-size: 25px;
    }
}



/********************************* Footer **********************************/
 .contact_information .info{
     padding: 10px 25px 0px 10px;
}
 .contact_information .icon{
     padding: 10px 0px 0px 0px;
}
 .icon i{
     border: 1px solid #fff;
     border-radius: 50%;
     height: 30px;
     width: 30px;
     font-size: 12px;
     display: flex;
     justify-content: center;
     align-items: center;
}
 .social_media i{
     border: 1px solid #fff;
     border-radius: 50%;
     height: 30px;
     width: 30px;
     font-size: 12px;
     margin-right: 5px;
     display: inline-flex;
     justify-content: center;
     align-items: center;
}

.social_media a{
    color: #fff;
}

 .company_info{
     margin-right: 10px;
     color: #fff;
}



/********************************* Sticky Icon **********************************/

 .social-media-icons {
     display: none;
     position: fixed;
     bottom: 65px;
     right: 20px;
     z-index: 1;
}
 .social-media-icons.show {
     display: block;
     margin-bottom: 5px;
}

 .social-media-icons i{
     border: 1px solid #fff;
     border-radius: 50%;
     padding: 8px;
     font-size: 12px;
     background: #575757;
}
 .social-media-icons i {
     border: 1px solid #3c87f0;
     color: #3c87f0;
     border-radius: 50%;
     height: 50px;
     width: 50px;
     font-size: 28px;
     margin-bottom: 10px;
     background: #fff;
     display: flex;
     justify-content: center;
     align-items: center;
}
 .sticky-icon { 
     position: fixed;
     bottom: 20px;
     right: 20px;
     cursor: pointer;
     z-index: 2;
}

 .sticky-up {
     position: fixed;
     bottom: 20px;
     left: 20px;
     background: #fff;
     border: 1px solid #3c87f0;
     color: #3c87f0;
     border-radius: 50%;
     height: 50px;
     width: 50px;
     cursor: pointer;
     transition: background-color 0.3s ease-in-out, transform 0.3s ease-in-out;
     display: flex;
     justify-content: center;
     align-items: center;
}
 .sticky-icon i{
     border: 1px solid #3c87f0;
     color: #3c87f0;
     border-radius: 50%;
     height: 50px;
     width: 50px;
     font-size: 28px;
     background: #fff;
     display: flex;
     justify-content: center;
     align-items: center;
}
 .sticky-up:hover, .sticky-icon i:hover, .social-media-icons i:hover {
     background-color: #2762d3;
     color: #fff;
}
 

/********************************* Custom Form **********************************/


.custom-bg
{
        background: #e4e6e6;
}

 .custom_form .form-bg {
    background: #e4e6e6;
    padding: 50px 0px 50px;
}

.custom_form form {
    font-family: 'Lato', sans-serif;
}

.custom_form .form-horizontal .header {
    background: #3f9cb5;
    padding: 30px 25px;
    font-size: 24px;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    border-radius: 3px 3px 0 0;
}
.custom_form .form-horizontal .title {
    background: #3f9cb5;
    padding: 20px 15px;
    font-size: 18px;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    
    border-radius: 10px 10px 0px 0px;
}

.custom_form .form-horizontal .heading {
    font-size: 16px;
    color: #555;
    margin: 10px 0 20px 0;
    text-transform: capitalize;
    font-weight: 700;
}

.custom_form .form-horizontal .form-content {
    padding: 25px;
    background: #fff;
}

.custom_form .form-horizontal .form-control {
    padding: 12px 16px 12px 39px;
    height: 50px;
    font-size: 14px;
    color: #2b2a2a;
    border: none;
    border-bottom: 2px solid #ccc;
    border-radius: 0;
    box-shadow: none;
    margin-bottom: 15px;
}


.form_1 .form-horizontal .form-control {
    padding: 12px 16px 12px 16px !important;

}

.custom_form .form-horizontal .form-control:focus {
    border-color: #3f9cb5;
    box-shadow: none;
}

.custom_form .form-horizontal .form-group {
    position: relative;
}
.custom_form .form-horizontal .control-label {
    font-size: 17px;
    color: #ccc;
    position: absolute;
    top: 12px;
    left: 12px;
    text-align: center;
}

.custom_form .form-horizontal textarea.form-control {
    resize: vertical;
    height: 130px;
}

.custom_form .form-horizontal .btn, .simple_form .btn {
    font-size: 18px;
    color: #4e4e4e;
    border: 2px solid #ccc;
    border-radius: 0;
    transition: all 0.5s ease 0s;
    float: right;
}

.custom_form .form-horizontal .btn:hover {
    background: #fff;
    border-color: #3f9cb5;
}

.custom_form .form-horizontal a{
    color: #3f9cb5;
    font-size: 16px;

}

.custom_form .form-horizontal hr{
    border-bottom: 2px solid #ccc;

}
.custom_form .form-horizontal .component_checkbox{
    color: #555;
    padding: 10px 0px 10px 10px;
    font-size: 18px;

}



/********************************* Custom Table **********************************/
.panel {
    padding: 20px 0px 20px 0px;
}

.panel .panel_head
{
    background-color: #3f9cb5;
    padding: 10px;
    margin: 0px;
    border-radius: 10px 10px 0px 0px;

}

.panel .panel_head .title{
    color: #fff;
    font-size: 20px;
}

.panel table{
    width: 100%;
     border-collapse: separate;
    border-spacing: 0 2px;
}
.panel table tr{
    background-color: #fff;
    font-size: 16px;
}
.panel table tr th,
.panel table tr td
{
    padding: 10px 10px 10px 20px;
}

.panel .btn{
    font-weight: 400px;
    font-size: 14px;
}
.panel i{
    font-size: 12px;
}

.panel .body{
    background-color: #fff;
    font-size: 16px;
    padding: 10px;
}


/* Center align both title and options in mobile view */
@media (max-width: 767px) {
    .panel .title,
    .panel .options {
        text-align: center;
    }
    .panel .btn{
        margin-top: 7px;
        margin-bottom: 4px;
    }

}


.simple_form .body{
    padding: 20px;
}

.modal .form-control,
.preview .form-control,
.simple_form .form-control {
    height: 40px;
    font-size: 18px;
    margin-left: 5px;
    margin-right: 5px;
    margin-bottom: 10px;
}

.preview textarea,
.simple_form textarea

{

    height: auto !important;
}

.modal .control-label,
.preview .control-label,
.simple_form .control-label {
    font-size: 18px;
    color: #555;
    margin-bottom: 10px;
    margin-left: 5px;
    margin-right: 5px;
}


.thumbUploadInput {
    display: none;
}

.thumbUploadLabel {
    cursor: pointer;
    display: inline-block;
    background-color: #3498db;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    transition: background-color 0.3s;

}

.thumbUploadLabel:hover {
    background-color: #2980b9;
}







.custom_panel .custom_body{
    border-radius: 10px 10px 0px 0px;
    background-color: #fff;
    font-size: 16px;
    padding: 10px 20px 20px 20px;
    margin-top: 20px;

}

.custom_panel .custom_body_form{
    background-color: #fff;
    font-size: 16px;
    padding: 10px 20px 20px 20px;
    margin-top: 20px;

}





/********************************* Checkout **********************************/




    .checkout {
        background-color: #fcfcfc;
        padding: 10px 10px 100px 10px;
    }

    .checkout .product_info{
        background-color: #f4f4f4;
        padding: 20px;
        margin: 20px 0px 20px 0px;
        border-radius: 5px;
        border: 1px solid #ededed;

    }

    .checkout .custom_body p{
        font-size: 16px !important;
     font-weight: 400;
     font-family: 'Noto Sans Bengali', sans-serif;
}    


.checkout .custom_body .price_info
{
        font-size: 16px !important;
     font-weight: 400;
     font-family: 'Rubik', sans-serif;
}
    .checkout .heading_container {
        margin: 10px 0px 10px 0px !important;
    }

    .checkout .heading_container .heading {
        font-size: 20px;
        font-weight: 500;
        font-family: 'Poppins', sans-serif;
        color: #555;
        margin-bottom: 5px;
    }

    .checkout .heading_container .sub_heading {
        font-size: 14px;
        font-weight: 400;
        font-family: 'Rubik', sans-serif;
        color: #555;
        margin-bottom: 5px;
    }

    .checkout .heading_container .sign-option{
        font-size: 14px;
        font-weight: 700;
        font-family: 'Poppins', sans-serif;
        color: #555;
        display: inline-block;
        padding: 10px 15px 10px 15px;
        margin: 0px 5px 5px 5px;

    }

    .checkout .heading_container .border_bottom{

     display: block;
     border-bottom: 3px solid #575757;
     padding-bottom: 4px;
     padding-top: 4px;
     margin: 0 auto;
     width: 50px;
     text-align: center;
}

    .checkout label{
        font-size: 16px !important;
     font-weight: 400;
     font-family: 'Hind Siliguri', sans-serif;
     margin: 5px 0px 0px 5px !important;

    }

     .checkout input[type="text"],
     .checkout input[type="mail"],
     .checkout input[type="tel"],
     .checkout input[type="password"],
     .checkout select
     {
        height: 40px;
        padding: 5px 15px;
        margin: 10px 0px 10px 0px;
        font-size: 14px !important;
     font-weight: 400;
     font-family: 'Noto Sans Bengali', sans-serif;
        background-color: #fcfcfc;
     }

     .checkout textarea{
        padding: 5px 15px;
        margin: 10px 0px 10px 0px;
        font-size: 14px !important;
     font-weight: 400;
     font-family: 'Noto Sans Bengali', sans-serif;
        background-color: #fcfcfc;
        height: 100px;

     }

.check_btn,
.check_btn:hover,
.check_btn:active
{
    background-color: var(--theme-color);
    padding: 15px 30px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
        font-family: 'Poppins', sans-serif;
}



@media (min-width: 991.99px) {
  #order_summary {
    position: relative;
    transition: top 0.3s ease, right 0.3s ease;
  }

  .sticky {
    position: fixed;
    right: 0;
    top: 0;
    z-index: 1000;
  }
}

    .order_summary_container {
        padding: 2px 0px 2px 0px; 
        background-color: #8f8f8f;
        border-radius: 7px;
     font-family: 'Hind Siliguri', sans-serif;
    }
    .order_summary_heading {
        color: #fff; 
        padding: 10px; 
        text-align: center;
        font-size: 18px;
    }
    .order_summary_content {
     background-color: #fff; 
     padding: 8px; 
     border-radius: 4px;   
    }
    .order_summary_details {
        font-size: 14px; 
        color: #555;
    }
    .order_summary_line {
        border-bottom: dashed 0.5px #999;
    }
    .order_summary_details td{
        padding: 5px 0px 5px 0px;
    }







@media (min-width: 768px) {
.signin-nav,
.signin-nav:active,
.signin-nav:hover

{
     border-radius: 10px;

        font-family: var(--custom-font-family-1);
color: var(--theme-color); 
border: 1px solid var(--theme-color); 
font-weight: 500; font-size: 14px;
padding: 8px 14px;
margin: 5px; 
  box-shadow: 0 .1rem 1.5rem 0 rgba(58, 59, 69, .1) !important;


}

.singup-nav,
.singup-nav:active,
.singup-nav:hover

{
     border-radius: 10px;
   background-color: var(--theme-color) !important;
  color: #fff !important;
font-family: var(--custom-font-family-1);
 font-size: 14px;
 font-weight: 500; font-size: 14px;
padding: 8px 14px;
margin: 5px 3px 5px 5px; 
  box-shadow: 0 .1rem 1.5rem 0 rgba(58, 59, 69, .1) !important;
}


.signin-nav:active,
.signin-nav:hover,
.singup-nav:active,
.singup-nav:hover
{
  scale: 0.96;
}

.signin-nav,
.singup-nav{
cursor: pointer;
}
.navbar-nav{
display: none;
}
}

@media (max-width: 767px) {
  .navbar {
    position: fixed;
    width: 100%;
    top: 0px;
    z-index: 1000;
  }

.navbar-button{
display: none;
}


.navbar-dropdown{
    position: fixed;
    z-index: 1000;
    width: 100%;
    top: 62px;
    background-color: var(--content-box-color);

     box-shadow: 0 .15rem 1.75rem 0 rgba(58,59,69,.15)!important;
     padding: 7px;
}

  body {
    padding-top: 76px;
}
}

  .signin_btn, .add_fund{
    border-radius: 15px;

        font-family: var(--custom-font-family-1);
color: var(--theme-color); 
border: 1px solid var(--theme-color); 
font-weight: 400; font-size: 14px;
padding: 5px 12px;
margin: 5px;
  }

.add_fund{
display: none;
}

  .add_fund:active,,
  .add_fund:hover,
  .signin_btn:active,
  .signin_btn:hover
  {
background-color: var(--content-box-color);
color: #555; 
border: 1px solid #555;

  }


.buy_now,
.buy_now:active
{
    border-radius: 15px;
        font-family: var(--custom-font-family-1);
color: var(--content-box-color); 
background-color: var(--theme-color);
border: 1px solid var(--theme-color);  
font-weight: 400; font-size: 14px;
padding: 5px 12px;
margin: 3px;  
}

.buy_now:hover{
color: var(--theme-color); 
background-color: var(--content-box-color);
border: 1px solid var(--theme-color);  
}

.buy_now:disabled
{
    border-radius: 15px;

        font-family: var(--custom-font-family-1);
color: var(--content-box-color); 
background-color: var(--theme-color);
border: 1px solid var(--theme-color);  
font-weight: 400; font-size: 14px;
padding: 5px 12px;
margin: 3px;  
opacity: 0.7;
    cursor: not-allowed;  
}
.signin_btn,
.buy_now
{

  box-shadow: 0 .1rem 1.5rem 0 rgba(58, 59, 69, .05) !important;
}


.setting_tabs .nav-link {
  color: var(--primary-font-color);
  text-align: center
}

.setting_tabs .active {
  color: var(--theme-color) !important;
  text-align: center
}

.settings_image {
  margin: 20px
}

.modal-signin-box {
  font-size: 14px
}

.modal-signin-items .content-title {
  color: var(--theme-color);
  text-align: center;
  font-size: 18px;
  font-weight: 600
}

.modal-signin-items .content-label {
  font-weight: 500;
  padding: 15px 0px 15px 0px
}

.modal-signin-items .input[type="text"],
.modal-signin-items .input[type="password"],
.modal-signin-items .input[type="email"],
.modal-signin-items .input[type="tel"],
.modal-signin-items .input[type="number"],
.modal-signin-items .input[type="file"],
.modal-signin-items .form-control {
  background-color: #fafafa !important;
  color: #696969;
  border: 1px solid rgba(58, 59, 69, .1);
  box-shadow: 0 .1rem 1.5rem 0 rgba(58, 59, 69, .05) !important;
  margin: 10px 0px 10px 0px;
  width: 100%
}

.modal-signin-items .theme-btn-block {
  margin-top: 10px
}

.modal-signin-items .form-group,
.form-group-icon {
  position: relative
}

.modal-signin-items .control-label,
.form-group-icon .control-label {
  font-size: 17px;
  color: #ccc;
  position: absolute;
  top: 12px;
  left: 12px;
  text-align: center
}

.modal-signin-items .form-control {
  padding: 12px 16px 12px 39px;
  height: 50px;
  font-size: 14px;
  color: #2b2a2a;
  border: none;
  border-bottom: 2px solid #ccc;
  border-radius: 0;
  box-shadow: none;
  margin-bottom: 15px
}

.form-group-icon .form-control {
  padding: 12px 16px 12px 39px;
  height: 50px;
  font-size: 14px;
  color: #2b2a2a;
  border: none;
  border-bottom: 2px solid #ccc;
  border-radius: 0;
  box-shadow: none;
  margin: 8px 0px 8px 0px
}

.form-group-icon .alert-white {
  padding: 5px 0px 8px 0px !important
}


.fa-info {
  color: var(--theme-color);
  opacity: 0.8
}

.footer-rights {
  background-color: var(--footer-color);
  color: var(--footer-font-color);
  text-align: center;
  padding: 12px;
  font-size: 14px
}

.pagination {
  margin: 15px 0px 15px 0px
}

.page-link {
  background-color: #fff;
  color: var(--theme-color);
  padding: 8px 12px 8px 12px
}

.pagination .active {
  background-color: var(--theme-color);
  color: #fff;
  padding: 8px 12px 8px 12px
}

.theme-btn-block,
.theme-btn-block:hover,
.theme-btn-block:active
 {
  background-color: var(--theme-color) !important;
  color: #fff !important;
  width: 100%;
  margin: 20px 0px 20px 0px;
  padding: 8px;
  font-weight: 500;
  font-size: 14px;
  font-family: var(--heading-font-family)
}


.theme-btn-block:hover,
.theme-btn-block:active
{
  
  border-radius: 20px !important;
}

.theme-btn, .theme-btn:hover, .theme-btn:active {
  background-color: var(--theme-color) !important;
  color: #fff !important;
  font-family: var(--heading-font-family);
  font-size: 14px
}



    .right-side-menu {
    position: fixed;
    top: 0;
    right: -260px;
    width: 260px;
    height: 100%;
    background: #fff;
    box-shadow: -2px 0 5px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
    overflow: auto;
  }

  .right-side-menu.active {
    right: 0;
  }

  .close-button {
 
    color: var(--primary-font-color);
  }

.my-profile{
  padding-right: 15px;
  font-family: var(--custom-font-family-1);
  font-weight: 400;
  font-size: 14px;
}

  .account-button,
  .account-button:hover
  {
        border-radius: 15px;
        font-family: var(--custom-font-family-1);
color: var(--theme-color); 
background-color: var(--navigation-background-color);
border: 1px solid var(--theme-color);  
font-weight: 500; font-size: 15px;
padding: 6px 16px;
margin: 3px 0px 3px 3px;  
text-decoration: none;
  box-shadow: 0 .1rem 1.5rem 0 rgba(58, 59, 69, .1) !important;

}

.ab-profile-icon, .ab-dropdown-icon 
{
  font-size: 16px;
  color: var(--theme-color); 
}

.ab-profile-icon{
  margin-right: 4px;
} 
.ab-dropdown-icon{
  margin-left: 4px;
} 
 .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); 
    z-index: 999;
    display: none;
  }



 .profile_icon
{
     border-radius: 50%;
     height: 64px;
     width: 64px;
     font-size: 24px;
     font-weight: 700;
     margin-right: 8px;
     display: flex;
     justify-content: center;
     align-items: center;

        font-family: var(--custom-font-family-1);
     background-color: var(--theme-color);
     color: var(--content-box-color);
}

.nav_username{

     font-size: 14px;
     font-weight: 700;
        font-family: var(--custom-font-family-1);
        margin: 5px 5px 5px 5px;
}

.nav_hr {
  margin: 10px 0px 10px 0px;
  padding: 0px;
}

.nav_link{

display: block;

  color: var(--primary-font-color);

     font-size: 14px;
     font-weight: 600;
     opacity: 0.6;

        font-family: var(--custom-font-family-1);
        padding: 10px 20px;
}

.nav_link i {
  margin-right: 7px;     
  width: 20px;

}
.nav_link:hover,
.nav_link:active{
  color: var(--theme-color);
}



.nav_balance{

  color: var(--theme-color);
  border: 1px solid var(--theme-color);
  border-radius: 5px;
       font-size: 12px;
     font-weight: 700;
     text-align: center;
     padding: 3px 20px;
        font-family: var(--custom-font-family-1);
        margin: 5px 5px 5px 5px;
}



.not_found {
  text-align: center;
  padding: 50px !important;
  color: #707070
}

  .google_auth
  {
    margin: 10px;
  }
  .sign_separator{
    font-weight: 500;
    color: var(--primary-font-color);
    text-align: center;
    margin: 20px;
  display: flex;
  align-items: center;
  }

  .sign_separator .line {
  flex-grow: 1;
  border-top: 1px solid #595959; 
  margin: 0 10px;
  max-width: 100%;
  min-width: 10%;
}


/*****checkout pm start*****/

.pm_body
{
padding: 0px;
}

.pm_body .row,
.pm_body .col-sm-4

{
  margin: 0px;
  padding: 0px;
} 


  .equal-height {
            display: flex;
            flex-direction: column;
    justify-content: center; 
        }
.pm_list
{
            
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


.pm_list
 {
    background-color: var(--content-box-color);
    border-radius: 5px;
    padding: 0px;
    margin: 5px;
    border: 1px solid #e3e3e3;
    box-shadow: 0 .1rem 1.5rem 0 rgba(58, 59, 69, .02) !important;
            cursor: pointer;
            position: relative;
}

.pm_list {
  text-align: center;
    padding: 15px 0px !important;
    font-size: 10px;
}
.selected_pm_icon
         {
            position: absolute;
            top: 0;
            left: 0;
            background-color: var(--theme-color);
            color: var(--content-box-color);
            padding: 4px;
            border-radius: 3px 0px 5px 0px;
            font-size: 10px;
        }

.pm_list:hover
{
  border: 1px solid var(--theme-color);
}

.selected_pm
 {
            border-color: var(--theme-color);
}



.pm_title
{

        font-family: var(--custom-font-family-1);
color: var(--highlight-text-color); font-weight: 400; font-size: 12px;
}

.pm_list img{
  width: auto;
  height: 35px;
margin-bottom: 14px;
display: inline-block; 
}
/*****checkout pm end*****/



    .content-box {
                border-radius: 15px;
        padding: 15px 15px 20px 15px;
        margin: 20px 10px 20px 10px;
        background-color: var(--content-box-color);
        border-left: 5px var(--theme-color) solid;
    }

    .content-box-no-padding {
                border-radius: 15px;
        padding: 0px;
        margin: 20px 10px 20px 10px;
        background-color: var(--content-box-color);
        border-left: 5px var(--theme-color) solid;
    }
    .content-box-no-padding-table {
        background-color: var(--content-box-color);
                border-radius: 15px;
        padding: 0px;
    }

.content-box-no-padding td a
{
     color: var(--primary-font-color);
              text-decoration: none;
              font-size: 18px;
}
    .content-box .content-title,
    .content-box-no-padding .content-title {
          color: var(--theme-color);
          text-align: center;
    }

    .content-box .content-label,
    .content-box-no-padding .content-label{
        color: var(--theme-color);
        font-weight: 500;
        padding: 10px 0px 5px 0px;
    }

    .modal .content-label
    {
        font-weight: 500;
        padding: 15px 0px 15px 0px;

    }

    .content-box-no-padding table tr th{
      font-size: 14px;
     padding-top: 12px;
      padding-bottom: 12px;    
      background-color: var(--theme-color);
      color: var(--content-box-color);
       }

    .content-box-no-padding table tr td{
      color: var(--primary-font-color);
      border-right: 1px solid rgba(0, 0, 0, 0.1);
      padding: 5px 10px 5px 10px;
      font-size: 14px;
    }

   .content-box-no-padding table tr td a{
      font-size: 14px;
   }

.btn-light{
  border: 1px outset rgba(0, 0, 0, 0.1);
}
.modal h5{
  padding: 10px 5px 5px 5px !important;
  margin: 0px;
}

    .content-box-no-padding .table thead tr{
      background-color: var(--theme-color);
      color: var(--navigation-font-color);
    }

    .content-box .job-title{
      text-align: center;
    }

    .content-box input[type="text"],
    .content-box input[type="password"],
    .content-box input[type="email"],
    .content-box input[type="tel"],
    .content-box input[type="number"],
    .content-box input[type="file"],
     select

    .content-box-no-padding input[type="text"],
    .content-box-no-padding input[type="password"],
    .content-box-no-padding input[type="email"],
    .content-box-no-padding input[type="tel"],
    .content-box-no-padding input[type="number"],
    .content-box-no-padding input[type="file"],
    select
    {
        background-color: #f5f5f5 !important;
        border: 1px solid rgba(58,59,69,.1);
         box-shadow: 0 .1rem 1.5rem 0 rgba(58,59,69,.05)!important;

    }
    
.content-box textarea,
.content-box-no-padding textarea,
.tox .tox-edit-area__iframe

{
        background-color: #f5f5f5 !important;
        color: var(--primary-font-color) !important;
        border: 1px solid rgba(58,59,69,.1);
         box-shadow: 0 .1rem 1.5rem 0 rgba(58,59,69,.05)!important;
}
.content-box select{
        color: var(--primary-font-color) !important;
}



/***** responsive table start ******/
   @media only screen and (max-width: 760px),
(min-device-width: 768px) and (max-device-width: 1024px) {
    
    [data-content]:before {
        content: attr(data-content);
    }
    
    /* Force table to not be like tables anymore */


    .table-mobile-responsive,
    .table-mobile-responsive thead,
    .table-mobile-responsive tbody,
    .table-mobile-responsive th,
    .table-mobile-responsive td,
    .table-mobile-responsive tr {
        display: block;
    }
/*
    .table-mobile-responsive.text-center {
        text-align: left !important;
    }
  */
    .table-mobile-responsive caption {
        width: max-content;
    }

    /* Hide table headers (but not display: none;, for accessibility) */
    .table-mobile-responsive thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }

    .table-mobile-responsive> :not(:first-child) {
        border-top: none;
    }

    .table-mobile-responsive>:not(caption)>*>* {
        border-color: var(--tmr-bootstrap-border-color);
    }

    .table-mobile-responsive tr:not(.bg-light-blue) {
        border-bottom: 2px solid var(--tmr-row-divider-color);
    }

    /* Default layout */
    .table-mobile-responsive td {
        /* Behave  like a "row" */
        border: none;
        border-bottom: 1px solid #e1e1e1;
        position: relative;
        padding-left: 50%;
        padding-top: 1.5rem !important;

    }

    .table-mobile-responsive td:before {
        /* Now like a table header */
        position: absolute;
        /* Top/left values mimic padding */
        top: 0;
        left: 6px;
        width: 45%;
        padding: 5px 5px 5px 10px;
        white-space: nowrap;
        font-weight: 500;
    }
    


.table-mobile-responsive td:last-child  ,
.table-mobile-responsive.table-mobile-sided td:last-child
{
    padding-bottom: 20px !important; 
}

    /* Sided layout */
    .table-mobile-responsive.table-mobile-sided> :not(:first-child) {
        border-top: none;
    }

    .table-mobile-responsive.table-mobile-sided>:not(caption)>*>* {
    }
    .table-mobile-responsive.table-mobile-sided .info_list td {
          /* Behave  like a "row" */
        border: none;
        border-bottom: 1px solid var(--tmr-white);
        position: relative;
        padding-left: 40%;
        padding-right: 10px;
        padding-top: 10px;
        display: flex;
        justify-content: flex-start;
        color: var(--primary-font-color);
    }
    .table-mobile-responsive.table-mobile-sided td:before {
        /* Now like a table header */
        position: absolute;
        /* Top/left values mimic padding */
        top: 0;
        left: 6px;
        width: 60%;
        padding-right: 10px;
        padding-top: 25px;
        white-space: nowrap;
        font-weight: 500;
        color: var(--primary-font-color);
    }

    /* Styleless */
    .table-mobile-responsive.table-mobile-styleless tr:not(.bg-light-blue) {
        border-bottom: none !important;
    }

    /* Stripped rows */
    .table-mobile-responsive.table-mobile-striped>tbody>tr:nth-of-type(odd)>* {
    }
}

.pay-now a{
  cursor: pointer;
}
.pay-now .btn{
    background-color: var(--theme-color) !important;
    color: var(--content-box-color) !important;
}


@media only screen and (max-width: 760.99px)
{
.pay-now a{
    position: absolute !important;
    bottom: 10px !important; right: 10px !important;
}
}

@media only screen and (min-width: 761px)
{
.pay-now a{
  bottom: 0 !important; 
  right: 0 !important; 
  position: relative !important;
}


  .content-title-ms { 
display: none;
}
.fully-responsive-table th,
.fully-responsive-table td
{
padding: 10px 15px !important;
}

.delivery_message, .order_note {

text-align:center;
cursor: pointer;
}

}

.oicon{
  margin-top: 3px;
}


.content-title-ms { font-size: 14px;
  padding-top: 12px;
  padding-bottom: 12px;
    background-color: var(--theme-color);
  color: var(--content-box-color);
  border-radius: 12px 12px 0px 0px !important;
  text-align: center;
}

/***** responsive table end ******/

  .searchbox {
    background-color: #f5f5f5 !important;
    border: 1px solid rgba(58,59,69,.1) !important;
    padding: 7px;
  }

.searchstatus {
  height: 40px;
  border-radius: 10px;
  font-size: 14px;
  padding: 7px;
  margin-right: 5px;
      color: #707070;
}


.searchbox, .search100 {
  height: 40px;
  border-radius: 10px;
  font-size: 14px;
  padding: 7px;
  margin-right: 6px
}

  
  .searchstatus {
    width: 40%
  }



  .searchbox {
    width: 60%;
  }

  .search100 {
    width: 100%;
  }


/****** acc infos start *******/
.ap_placement {
    position: relative;
    top: -50px;
    left: 3%;
}

.account_profile_icon {
    border-radius: 50%;
    height: 100px;
    width: 100px;
    font-size: 32px;
    font-weight: 700;
    margin-right: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--custom-font-family-1);
    background-color: var(--theme-color);
    color: var(--content-box-color);
}

.acc_username{

     font-size: 22px;
     font-weight: 600;
        font-family: var(--custom-font-family-1);
        margin: 60px 10px 10px 5px;

}

.acc_infos {
  margin: 0px 10px 0px 10px !important;
}

.acc_info_box
{
  text-align: center;
       font-size: 16px;
     font-weight: 500;
        font-family: var(--custom-font-family-1);
        background-color: var(--content-box-color);
        color: var(--primary-font-color);
    border: 1px solid rgba(0, 0, 0, 0.1); 
        padding: 20px 10px;
        margin: 0px 5px;
        border-radius: 10px;
          box-shadow: 0 .15rem 0.75rem 0 rgba(58, 59, 69, .05) !important

}

.acc_info_box .heading
{
     font-weight: 600;
       font-size: 14px;
       margin-bottom: 5px;

}



.cover_div {
    position: relative;
    height: 100px;
    background-size: cover;
    background-position: top;
}

.cover_div_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #555;
    opacity: 0.1;
}

.acc_infos .row {
    display: flex;
    justify-content: space-between;
}

.acc_info_box {
    height: 100%; 
    border: 1px solid #ccc; 
    padding: 10px;
    box-sizing: border-box;
}

.acc_infos .col-4
{
  padding:0;
  margin:0;
}
/****** acc infos end *******/


.list_container{
padding: 0px 10px !important;
}

.list_container .row,
.list_container .col-6,
.list_container .col-sm-3{
  margin: 0px;
  padding: 0px;
}

.list_body {
  color: #fff !important;
  padding: 0px;
  margin: 7px !important;
  border-radius: 10px;
  font-weight: 500;
  font-size: 16px;
  box-shadow: 0 .1rem 1.5rem 0 rgba(58, 59, 69, .05) !important;
  text-align: center;
}

.list_body a{
  color: #fff !important;
}

.list_body .content {
  padding: 15px;
}
.list_body .content .heading {
  font-size: 24px;
  font-weight: 700;
  padding-top: 0px;
}
.list_body .content .sub_heading {
  font-size: 12px;
  font-weight: 500;
  padding: 5px 0px;
}

.list_body .footer {
  font-size: 14px;
  font-weight: 500;
  padding: 7px;
  background-color: rgba(0,0,0,0.2) !important;

  border-radius: 0px 0px 10px 10px; 
}

.list_body .footer i{
  padding-left: 5px;
}

