
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
:root{
    --text-color: #666666;
    --brand-color: #10348C;
    --title: #ea1a33;
    --brand-bg-color: #10348C;
    --special-color : rgb(0 173 233);
}
body, td {
    color: var(--text-color);
    font-family: "Roboto", sans-serif;
    font-size: 16px;
}
.footer{
    color: var(--text-color);
}
.footer .footer-links a{
    color: var(--text-color);
}
.brand-color{
    color: var(--brand-color);
}
.brand-bg-color{
    background-color: var(--brand-bg-color);
}
table{
    color: var(--text-color) !important;
}
.title-color{
    color: var(--title);
}
.sky-blue{
    color: var(--special-color);
}
.text-color{
    color: var(--text-color);
}
.special-color{
    color: var(--special-color);
}
.valid-feedback-error{
    margin-top: .25rem;
    font-size: .75rem;
    color: red;
}
.mb-2{
    margin-bottom: 12px;
}
hr{
    color: #c9c9c9;
}
.breadcrumb-item.active{
    color: #414141;
}
.breadcrumb-item+.breadcrumb-item::before{
    color: #414141;
}

.m-l-10{
    margin-left:10px;
}
.border{
    border-color: #b5b5b5 !important;
}

.form-control:focus {
    color: #838c96;
    background-color: #fff;
    border-color: #3a86f7;
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.content > .container-fluid{
    max-width: 100% !important;
}

label{
    color: var(--text-color);
}
.auth-fluid label{
    color: #fff;
}
label.required::after {
    content: '*';
    color: red;
}

.toast-close-btn{
    position: absolute;
    right: 5%;
}
.table-responsive,
.table-responsive-sm{
    overflow-x: unset;
}
.table-scroll {
    overflow-x: auto;
    width: 100%;
}
.dataTable thead th, .dataTable tbody td {
    white-space: nowrap;
}
.mandatory::after{
    content: "*";
    color: red;
}
.btn-div{
    display: flex;
    align-items: center;
    column-gap: 10px;
    justify-content: end;
}
.btn-danger{
    background-color: var(--title);
}
.navbar-custom{
    position: fixed;
    top: 0;
    box-shadow: none;
}
.container-fluid.main-body-fluid{
    margin-top: 100px;
}
.dataTables_length,
.dataTables_info{
    float: left;
}
.dataTables_paginate{
    float: right;
}
div.dataTables_wrapper div.dataTables_filter{
    text-align: center !important;
    margin-right: 140px;
}
div.dataTables_wrapper div.dataTables_filter input{
    width: 600px !important;
}
.card-body .btn-light.add-btn{
    position: absolute;
    right: 25px;
    top: 30px;
}
.card-body .floating_btn{
    position: absolute;
    right: 25px;
    top: 30px;
}
.card-body .floating_btn .btn-light.add-btn{
    position: unset;
    top: unset;
    right: unset;
}
.card-body:has(.no_record_table) .btn-light.add-btn{
    position: unset;
}
.card-body:has(.no_record_table) .floating_btn{
    position: unset;
}



/* Login */
.auth-fluid{
    height: 100vh;
    overflow: hidden !important;
}
.auth-fluid .auth-fluid-form-box{
    overflow: hidden;
    overflow-y: auto;
}
.auth-fluid-form-box{
    background-color: rgb(16, 52, 140, 80%) !important;
    padding: 2rem 2rem !important;
}
.auth-fluid .brand-logo img {
    height: 50px;
}
.custom_white_btn_outline{
    border: 1px solid #fff;
    color: #fff;
}
.custom_white_btn_outline span::after{
    content: "";
    display: inline-block;
    width: 15px;
    height: 15px;
    background-image: url('/media/btnshape_white.svg');
    background-size: contain;
    background-repeat: no-repeat;
    margin-left: 10px;
    margin-top: -3px;
    vertical-align: middle;
}
.btn.custom_white_btn_outline:hover span::after{
    background-image: url('/media/btnshape_red.svg');
    color: #fff !important;
}
.auth-fluid-form-box .btn:hover{
    color: #fff;
}

/* .custom_white_btn_outline.with_arrow{
    background-image: url('/media/btnshape_white.svg');
    background-repeat: no-repeat;
    background-position: 60% 50%;
}
.custom_white_btn_outline.with_arrow:hover{
    background-image: url('/media/btnshape_red.svg');
} */

.nav-flex-outer-div {
    display: flex;
    justify-content: space-between;
    padding: 15px 0px;
}
.nav-user{
    background-color: #fafbfd2b;
    border-radius: 5px;
    border-width: 0;
}
.navbar-custom .topbar-menu .nav-link{
    color: #fff;
}
.navbar-nav .nav-link{
    color: #fff;
    font-size: 18px;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active,
.navbar-nav .nav-item.active a{
    color: #fff;
    font-weight: 500;
}
.navbar-nav .nav-link.active,
.navbar-nav .nav-item.active a{
    color: var(--title);
}
.navbar-nav .nav-item .dropdown-menu a{
    color: #fff;
}
.navbar-nav .nav-item{
    position: relative;
}
.navbar-nav .nav-item a.nav-link::after {
    position: absolute;
    display: block !important;
    content: '';
    left: 0;
    bottom: 0px;
    width: 0;
    border: 0;
    height: 1px;
    background: #ffffff;
    transition: all 0.7s;
}
.navbar-nav .nav-item a.nav-link:hover:after {
    width: 100%;
}
.navbar-nav .nav-item .dropdown-menu a:hover{
    background-color: transparent;
    color: var(--title);
}
.navbar-nav .nav-item .dropdown-menu a.active {
    color: var(--title);
    background-color: transparent;
}
.dropdown-menu{
    font-size: 17px;
    box-shadow: none;
}
.navbar-expand-lg .navbar-nav .dropdown-menu{
    width: 100%;
    top: 69px;
    border: 0;
    background-color: var(--brand-bg-color);
    border-radius: 0 0 .25rem .25rem;
}
.auth-fluid .auth-fluid-left, .auth-fluid .auth-fluid-right{
    background-color: rgb(0 0 0 / 35%);
}

#myVideo {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
  }

.card{
    background-color: rgb(255 255 255 / 80%);
}
.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active{
    background-color: transparent;
}
.btn-div .btn-light:hover{
    background-color: var(--title);
    color: #fff;
}

/* .dashboard_page_content .small-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row-reverse;
    padding: 30px;
    box-shadow: 0 .46875rem 2.1875rem rgba(4, 9, 20, .03), 0 .9375rem 1.40625rem rgba(4, 9, 20, .03), 0 .25rem .53125rem rgba(4, 9, 20, .05), 0 .125rem .1875rem rgba(4, 9, 20, .03);
    border-radius: 30px;
    margin-bottom: 0;
    height: 100%;
    color: #fff;
} */
.dashboard_page_content .small-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row-reverse;
    padding: 40px;
    /* box-shadow: 0 .46875rem 2.1875rem rgba(4, 9, 20, .03), 0 .9375rem 1.40625rem rgba(4, 9, 20, .03), 0 .25rem .53125rem rgba(4, 9, 20, .05), 0 .125rem .1875rem rgba(4, 9, 20, .03); */
    /* border-radius: 30px 0; */
    margin-bottom: 0;
    /* border: 8px solid #fff; */
    height: 100%;
    color: #fff;
}
.dashboard_page_content .small-box .inner {
    text-align: center;
}
.small-box>.inner {
    padding: 10px;
}
.small-box .icon {
    width: 85px;
    height: 85px;
    padding: 10px;
    border-radius: 100px;
    background: #f9f9f9;
    display: flex;
    align-items: center;
    justify-content: center;
}
.dashboard_page_content .small-box .icon .mdi{
    color: #0f1a34;
    font-size: 50px;
    transition: all .3s linear;
}
.dashboard_page_content .small-box:hover .icon>.mdi {
    font-size: 60px;
    transition: all .3s linear;
}
.dashboard_page_content .bg-secondary {
    background-color: #6c757d !important;
}
.dashboard_page_content .bg-danger{
    /* background-color: #dc3545!important; */
    background-color: rgb(116 126 172) !important;
}
.dashboard_page_content .bg-warning {
    background-color: rgb(184 190 224) !important;
    color: #0f1a34;
}
.dashboard_page_content .dashboard_count{
    font-size: 60px;
    font-weight: 500;
    line-height: 45px;
    color: var(--special-color);
}
.dashboard_page_content .small-box:hover .dashboard_count{
    scale: 1.1;
    transition: all .3s linear;
}
.dashboard_page_content .dashboard_count_title{
    font-size: 20px;
    margin: 0;
}

.wrapper{
    background-image: url('/media/bg/bg5.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    /* background-color: #10348c; */
    /* background-position: top left;
    background-repeat: no-repeat;
    background-size: 20% auto; */
}
.page-title-box .page-title{
    font-size: 24px;
    font-weight: 400;
    line-height: 35px;
    display: inline-flex;
    padding: 5px 20px;
    border: 2px solid var(--brand-color);
    margin: 15px 0px;
    border-radius: 30px;
    color: var(--brand-color);
}
.product_main_image{
    height: 550px;
    max-width: 600px;
    width: 100%;
    padding: 8px;
    object-fit: contain;
    /* background-color: #fff;
    border: 1px solid #d4d9de; */
}
.product-detail-content .product_title{
    color: var(--brand-color);
    font-size: 45px;
    font-weight: 500;
    word-break: break-all;
}
.product_view_page .product-detail-content table td,
.product_view_page .product-detail-content table th{
    width: 50% !important; 
}
.product_view_page .product-detail-content table>:not(caption)>*>*{
    border-bottom-width: 0;
}
.detail-content strong{
    width: 130px;
    display: inline-block;
}
.product-detail-content strong{
    width: 190px;
    display: inline-block;
}
.product_type_active_check #id_is_active{
    display: flex;
    align-items: center;
    column-gap: 30px;
}

.product_form .title{
    text-transform: uppercase;
    font-weight: 500;
}
.product_form .bg-light{
    background-color: #d0d7e1 !important;
}
.product_form .btn-secondary{
    background-color: transparent;
    color: var(--brand-color);
    border-color: var(--brand-bg-color);
    border-width: 2px;
    font-weight: 500;
    border-radius: 20px;
}
.product_form .btn-danger{
    background-color: transparent;
    color: var(--title);
    border-color: var(--title);
    border-width: 2px;
    font-weight: 500;
    border-radius: 20px;
}
.product_form .btn-light:hover{
    background-color: var(--brand-color);
    color: #fff;
}
.product_form .btn-danger:hover{
    background-color:var(--title);
    color: #fff;
}
.product_list_section{
    margin-bottom: 30px;
}
.product_list_section .col-md-4:has(.item){
    margin-bottom: 24px;
}
.product_list_section .item{
    padding: 30px 20px;
    position: relative;
    border: 1px solid #ccc;
    border-radius: 6px;
    height: 100%;
}
.product_list_section .item:hover{
    scale: 1.05;
    transition: all 0.3s ease-in-out;
}
.select2-container--default .select2-selection--single .select2-selection__clear{
    padding: 0 15px;
}





.product_list_section img{
    width: 100%;
}
.product_list_section .product_image-div{
    padding-right:20px;
}
.product_list_section .product_image-div img{
    width: 200px;
    height: 200px;
    object-fit: contain;
}
.product_list_section .product_click_view{
    display: flex;
    color: #333333;
}
.product_list_section .product_properties{
    width: 100%;
}
.product_list_section .product_properties table td{
    border-bottom: 0 !important;
}
.nav-pills .nav-link.active, .nav-pills .show>.nav-link{
    background-color: var(--brand-bg-color);
}
.price_section strong{
    width: 110px;
}
.modal .card{
    box-shadow: rgba(0, 0, 0, 0.10) 0px 5px 15px 0px;
}
input[data-switch=bool]+label {
    background-color: var(--brand-bg-color);
}
input[data-switch]:checked+label {
    background-color: var(--brand-bg-color);
}
ul.errorlist{
    padding: 0px;
    list-style: none;
    font-size: 13px;
}
ul.errorlist li {
    padding: 4px 4px;
}

.btn-light {
    color: var(--brand-color);
    background-color: transparent;
    border: 2px solid var(--brand-color);
    font-weight: 500;
    border-radius: 40px;
    padding: 10px 20px;
}
.btn-light:hover{
    border-color: #00148c;
    color:var(--brand-bg-color);
    background-color:transparent;
}
.btn-primary{
    color: var(--brand-color);
    background-color: transparent;
    border: 2px solid var(--brand-color);
    font-weight: 500;
    border-radius: 40px;
    padding: 10px 20px;
}
.btn-primary:hover{
    border-color: var(--brand-color);
    color: var(--brand-color);
    background-color: transparent;
}
.btn-primary span::after{
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url('/media/btnshape.svg');
    background-size: contain;
    background-repeat: no-repeat;
    margin-left: 6px;
    margin-top: -3px;
    vertical-align: middle;
}
.btn-primary:hover span::after{
    background-image: url('/media/btnshape_red.svg');
}
.font-22{
    font-size: 22px;
}

table .table-secondary th{
    background-color: var(--brand-bg-color);
    color: #fff;
}
table th,table td,
.table>:not(:last-child)>:last-child>*{
    border-color: rgb(0 20 140 / 30%);
}
.table-bordered>:not(caption)>*>*{
    border-width: 1px 1px;
}
table.column-2 th{
    width: 50%;
}
/* .card:has(.table-responsive .dataTables_filter) .btn-light.add-btn{
    position: unset;
} */
.form-control:not(.auth-fluid-form-box .form-control){
    border-color: rgb(0 20 140 / 20%);
    text-transform: uppercase;
}
.smart_search_section .form-control{
    text-transform: unset !important;
}
.dataTables_paginate{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.dataTables_paginate span{
    display: flex;
    align-items: center;
}
.dataTables_paginate a{
    color: #474d56;
}
.pagination .page-link{
    border: none;
}
.dataTables_paginate a.paginate_button{
    padding: .375rem .75rem;
}
.dataTables_paginate a.paginate_button:hover{
    cursor: pointer;
}
.page-item.disabled .page-link,
.dataTables_paginate a.paginate_button.disabled{
    border-color: transparent;
    background-color: transparent;
    color: #98a6ad;
}
.page-item.active .page-link,
.dataTables_paginate a.paginate_button.current{
    background-color: var(--brand-color);
    border-color: var(--brand-color);
    border-radius: 30px;
    width: 40px;
    height: 40px;
    text-align: center;
    vertical-align: middle;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
}
.dashboard-Search-product-list table td{
    word-break: break-all;
}

#deactivate_user .modal-footer{
    justify-content: center;
}
#deactivate_user .modal-footer .btn{
    width: 90px;
}
#deactivate_user .modal-body .text-center{
    padding: 10px;
}
#delete-user-modal .modal-footer{
    justify-content: center;
} 

.card .card-body.profile-user-box .col-sm-4{ 
    display: flex;
    align-items: center;
    justify-content: end;
}
.card .card-body.profile-user-box .img-thumbnail{
    max-width: 100px;
    height: 100px;
    object-fit: cover;
}
.card .card-body.profile-user-box h4{
    font-size: 30px;
    font-weight: 400;
}


#dimension-formset-container .dimension-formset-row:not(:last-child) .add-formset-row-dimension{
        /* display: none; */
    visibility: hidden;
}
#dimension-formset-container .dimension-formset-row .col-md-12>div{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
#application-formset-container .application-formset-row:not(:last-child) .add-formset-row-application{
    visibility: hidden;
}
#application-formset-container .application-formset-row .col-md-12>div{
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.modal .modal-content{
    border-radius: 10px;
}
.modal .modal-content .bg-primary{
    background-color: var(--brand-bg-color) !important;
}

.modal .modal-body{
    max-height:75vh;
    overflow: auto;
    padding: 10px 24px;
}

.modal .modal-body::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	border-radius: 10px;
	background-color: #F5F5F5;
}

.modal .modal-body::-webkit-scrollbar
{
	width:10px;
	background-color: #F5F5F5;
}

.modal .modal-body::-webkit-scrollbar-thumb
{
	border-radius: 10px;
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
	background-color: #a5a5a5;
}
.modal .modal-content .modal-header{
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    padding: 10px 24px;
}
.header-title {
    margin: 0;
    color: #fff;
    font-weight: 500;
    /* text-transform: uppercase; */
}
/* .modal .modal-content .btn-light{
    color: #fff;
    border-color: #fff;
    padding: 8px 16px;
} */
.modal .modal-body .content{
    padding: 15px 0;
}
.modal .modal-body .content p strong{
    width: 140px;
    display: inline-block;
}
.modal .modal-body .content p:last-child{
    margin-bottom: 0;
}


.search_field_dashboard .title{
    font-size: 60px;
    font-weight: 600;
    color: #313131;
    margin-bottom: 10px !important;
}
.search_field_dashboard h5{
    margin-bottom: 30px;
    font-size: 20px;
}
.search_field_dashboard .search-decs{
    color: #313131;
}
.textline{
    display: flex;
    align-items: center;
    color: #fff;
    column-gap: 10px;
    text-transform: uppercase;
    letter-spacing: 4px;
}
.textline span.line{
    height: 1px;
    display: inline-block;
    background-color: #fff;
    width: 850px;
}
.search_field_dashboard .search_field{
    /* text-align: center; */
    display: flex;
    align-items: center;
    justify-content: center;
    /* column-gap: 15px; */
    position: relative;
    width: 800px;
    /* margin: 0 auto; */
    margin-bottom: 30px;
}
.search_field_dashboard .input_search_field{
    box-shadow: 0 1px 6px 0 #0d0e0f47;
    border: 0;
    font-size: 26px !important;
    height: 80px;
    /* margin-bottom: 20px; */
    border-radius: 0px;
    font-size: 18px;
    padding: 10px 130px 10px 30px;
}
.search_field_dashboard .input_search_field:focus{
    box-shadow: 0 1px 6px 0 #52585e47 !important;
}
.search_field_dashboard .search_field .btn{
    font-size: 18px;
    padding: 14px 30px;
    white-space: nowrap;
    height: 80px;
    border-radius: 0;
    background-color: var(--special-color);
    color: #fff;
    border: 0;
    /* position: absolute; */
    /* right: 0; */
}
/* #searchForm:has(.list-group-item) .search_field{
    margin-bottom: 0;
} */
#suggestionList{
    width: 800px;
    margin-bottom: 30px;
}



.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
}

input:checked + .slider {
    background-color: #2196F3;
}

input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

#success-alert-modal .bg-success{
    background-color: var(--brand-bg-color) !important;
}
#success-alert-modal .bg-success .btn-light{
    color: #fff;
    border-color: #fff;
}

@media (min-width: 576px){
    #success-alert-modal .modal-sm{
        max-width: 450px;
    }
}

@media (min-width: 1200px) {
    .modal-xl {
        max-width: 1250px;
    }
}

@media (min-width:1024px) and (max-width: 1399px) {
    .navbar-nav .nav-link{
        font-size: 15px;
    }
    .navbar-nav .nav-item .dropdown-menu a{
        font-size: 15px;
    }
}
@media (min-width:1400px) and (max-width: 1500px) {
    .navbar-nav .nav-link{
        font-size: 16px;
    }
    .navbar-nav .nav-item .dropdown-menu a{
        font-size: 16px;
    }
}


  