/********** Template CSS **********/
:root {
    --primary: #ed1d24;
    --light: #F3F6F9;
    --dark: #191C24;
}
body {
    margin: 0;
    padding: 0;
    font-size: 12px;
    font-family: Heebo, sans-serif, Helvetica, Arial;
    background: #fff;
    font-weight: normal;
    font-style: normal;
    overflow-x: hidden;
}



a {
    color: #ed1d24;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    transition: .5s;
}

.btn.btn-primary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
}


/*** Layout ***/
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 250px;
    height: 100vh;
    overflow-y: auto;
    background: var(--light);
    transition: 0.5s;
    z-index: 999;
}

.content {
    margin-left: 250px;
    min-height: 100vh;
    background: #FFFFFF;
    transition: 0.5s;
}
.select-icon{
    position: absolute;
    top: 6px;
    right: 40px;
    color: #878787;
    font-size: 20px;
    cursor: pointer;
}

@media (min-width: 992px) {
    .sidebar {
        margin-left: 0;
    }

    .sidebar.open {
        margin-left: -250px;
    }

    .content {
        width: calc(100% - 250px);
    }

    .content.open {
        width: 100%;
        margin-left: 0;
    }
}

@media (max-width: 991.98px) {
    .sidebar {
        margin-left: -250px;
    }

    .sidebar.open {
        margin-left: 0;
    }

    .content {
        width: 100%;
        margin-left: 0;
    }
}


/*** Navbar ***/
.sidebar .navbar .navbar-nav .nav-link {
    padding: 7px 20px;
    font-size: 13px;
    color: var(--dark);
    font-weight: 500;
    border-left: 3px solid var(--light);
    border-radius: 0 30px 30px 0;
    outline: none;
}

.sidebar .navbar .navbar-nav .nav-link:hover,
.sidebar .navbar .navbar-nav .nav-link.active {
    color: var(--primary);
    background: #FFFFFF;
    border-color: var(--primary);
}

.sidebar .navbar .navbar-nav .nav-link i {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    border-radius: 40px;
}

.sidebar .navbar .navbar-nav .nav-link:hover i,
.sidebar .navbar .navbar-nav .nav-link.active i {
    background: var(--light);
}

.sidebar .navbar .dropdown-toggle::after {
    position: absolute;
    top: 15px;
    right: 15px;
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    transition: .5s;
}

.sidebar .navbar .dropdown-toggle[aria-expanded=true]::after {
    transform: rotate(-180deg);
}

.sidebar .navbar .dropdown-item {
    padding-left: 25px;
    border-radius: 0 30px 30px 0;
}

.content .navbar .navbar-nav .nav-link {
    margin-left: 25px;
    padding: 12px 0;
    color: var(--dark);
    outline: none;
}

.content .navbar .navbar-nav .nav-link:hover,
.content .navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.content .navbar .sidebar-toggler,
.content .navbar .navbar-nav .nav-link i {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    border-radius: 40px;
}

.content .navbar .dropdown-toggle::after {
    margin-left: 6px;
    vertical-align: middle;
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    transition: .5s;
}

.content .navbar .dropdown-toggle[aria-expanded=true]::after {
    transform: rotate(-180deg);
}

@media (max-width: 575.98px) {
    .content .navbar .navbar-nav .nav-link {
        margin-left: 15px;
    }
}


/*** Date Picker ***/
.bootstrap-datetimepicker-widget.bottom {
    top: auto !important;
}

.bootstrap-datetimepicker-widget .table * {
    border-bottom-width: 0px;
}

.bootstrap-datetimepicker-widget .table th {
    font-weight: 500;
}

.bootstrap-datetimepicker-widget.dropdown-menu {
    padding: 10px;
    border-radius: 2px;
}

.bootstrap-datetimepicker-widget table td.active,
.bootstrap-datetimepicker-widget table td.active:hover {
    background: var(--primary);
}

.bootstrap-datetimepicker-widget table td.today::before {
    border-bottom-color: var(--primary);
}


/*** Testimonial ***/
.progress .progress-bar {
    width: 0px;
    transition: 2s;
}


/*** Testimonial ***/
.testimonial-carousel .owl-dots {
    margin-top: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    border: 5px solid var(--primary);
    border-radius: 15px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    background: var(--dark);
    border-color: #dc3545;
}
.text-success {
    color: green;
}

.text-danger {
    color: red;
}

input[readonly] {
    background-color: #f0f0f0; /* Light grey background */
    cursor: not-allowed; /* Change cursor to indicate it's not editable */
}

.tab-button {
    background-color: #e9ecef; /* Default color */
    border: 1px solid #dee2e6; /* Border color */
    color: #495057; /* Text color */
    transition: background-color 0.3s, color 0.3s;
}

.tab-button.active {
    background-color: #dc3545; /* Active color */
    color: #ffffff; /* Text color when active */
    border: 1px solid #dc3545; /* Border color when active */
}
.btn-primary {
    color: #000;
    background-color: #dc3545FF;
    border-color: #dc3545;
}
.text-primary {
    color:#dc3545 !important;
}
a:hover {
    color:#ed1d24;
}

:root {
    bs-blue: #ed1d24;
}
button:hover {
    background-color: #ed1d24;
    
}
.form-control-otp-box {
    width: 3rem;
    height: 3rem;
    font-size: 1.5rem;
    text-align: center;
    border: 1px solid #ced4da;
}

.timer {
    text-align: center;
    font-size: 1.2rem;
    font-weight: bold;
}

.not-receive-otp {
    text-align: center;
}

.sent-successfully-text {
    text-align: center;
    font-size: 1.1rem;
    color: green;
}

.gc_table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 1em;
    text-align: left;
    background-color: #f9f9f9;
    border: 1px solid #ddd; /* Border for the entire table */
}

.gc_table th, .gc_table td {
    padding: 12px 15px;
    border: 1px solid #ddd; /* Border for table cells */
}

.gc_table th {
    background-color: #e9ecef;
    color: red; /* Text color for headers */
    font-weight: bold;
}

.table_status_tbl {
    width: 100%;
    border-collapse: collapse; /* Ensures borders are collapsed into a single border */
}

.table_status_tbl th, .table_status_tbl td {
    border: 1px solid #000; /* Border color for table cells */
    padding: 8px; /* Add some padding inside cells */
    text-align: left; /* Align text to the left */
}

.table_status_tbl th {
    background-color: #000; /* Black background for headers */
    color: #fff; /* White text color for headers */
}

.status_tbl tbody tr:nth-child(even) {
    background-color: #f2f2f2; /* Light grey background for even rows */
}
.required-asterisk {
    color: red;
}
.consignment_block{
    width:100%;float:left;
    position:relative;
    padding:0 0 45px; 
}
.consignment_block .consignment_area{
    width:100%;
    display:inline-block;
    /*padding:25px;*/
    /*background:#fff;*/
    /*-webkit-box-shadow:0 0 5px rgba(0,0,0,.1);*/
    /*box-shadow:0 0 5px rgba(0,0,0,.1);*/
    /*border-radius:5px;*/
}
.consignment_block .consignment_area .try_new{
    width:auto;float:right;font-size:14px;line-height:20px;font-weight:500;color:#212121;text-align:right;margin:0 0 20px
    
}
.consignment_block .consignment_area .try_new:hover{
    color:#ee1c25;
}
.consignment_block .consignment_area .cnsmnt_tbl{
    width:100%;float:left;margin:0 0 25px;background:#fff;
    
}
.consignment_block .consignment_area .cnsmnt_tbl tr td{
    width:100%;display:block;margin:0 0 20px;background:#fff;padding:10px 15px;border-color:#e5e5e5!important;color:#55555a;font-size:15px;text-align:left;
    
}
.consignment_block .consignment_area .cnsmnt_tbl tr td span{
    width:100%;padding:0 0 7px 0;color:#ee1c25;font-weight:600;text-transform:uppercase;display:inline-block;
    
}
.consignment_block .consignment_area .cnsmnt_status_area{
    width: 100%;
    float: left;
    position: relative;
    margin: 30px 0 20px;
    padding: 0 !important;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    
}
.consignment_block .consignment_area .cnsmnt_status_area .liv_map{
    width:auto;position:absolute;top:-8px;right:0;font-size:13px;color:#585858;font-weight:600;text-transform:uppercase;
    
}
.consignment_block .consignment_area .cnsmnt_status_area .liv_map:hover{
    color:#ee1c25;
    
}
.consignment_block .consignment_area .cnsmnt_status_area li{
    text-align: left;
    list-style: none;
    width: 100%;
    float: left;
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding: 8px 10px 15px 0px;
    
}
.consignment_block .consignment_area .cnsmnt_status_area li:after{
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    left: -100%;
    top: 0;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    text-align: left;
    list-style: none;
}
.consignment_block .consignment_area .cnsmnt_status_area li:first-child:after{
    display:none;
}
.consignment_block .consignment_area .cnsmnt_status_area li:before{
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 100%;
    background: #fff;
    border: solid 2px #e5e5e5;
    top: -5px;
    left: 0;
    z-index: 1;
    
}.consignment_block .consignment_area .cnsmnt_status_area li h4{
    width:100%;float:left;font-size:14px;font-weight:600;text-transform:uppercase;color:#969696;line-height:25px;
    
}
.consignment_block .consignment_area .cnsmnt_status_area li p{
    width:100%;float:left;font-size:12px;font-weight:400;color:#c1c1c1;line-height:16px;
    
}
.consignment_block .consignment_area .cnsmnt_status_area .active:after{
background:#ee1c25}.consignment_block .consignment_area .cnsmnt_status_area .active:before{
border-color:#ee1c25;background:#ee1c25;
}
.consignment_block .consignment_area .cnsmnt_status_area .active h4{color:#ee1c25}
.consignment_block .consignment_area .cnsmnt_status_area .active p{color:#55555a}
.consignment_block .consignment_area .status_box{width:100%;float:left;padding:0 0 20px}
.consignment_block .consignment_area .status_box .status_tbl{width:100%;float:left;background:#fff}
.consignment_block .consignment_area .status_box .status_tbl tr{text-align:left;border-radius:5px 5px 0 0;display:block;margin:0 0 20px}
.consignment_block .consignment_area .status_box .status_tbl tr th{
width:100%;display:block;background:#333;color:#fff;padding:10px 15px;font-size:14px;
line-height:25px;font-weight:600;border-color:#585858;text-transform:uppercase;letter-spacing:.5px}
.consignment_block .consignment_area .status_box .status_tbl tr td{width:100%;display:block;
background:#fff;color:#55555a;padding:10px 15px;font-size:13px;line-height:25px;font-weight:500;border-color:#e5e5e5}
.consignment_block .consignment_area .status_box .status_tbl tr td+td{border-top:none}
.consignment_block .consignment_area .status_box .notify_me{width:100%;float:left;border:solid 1px #e5e5e5;padding:20px;background:#f4f4f4;margin:0 0 20px}
.consignment_block .consignment_area .status_box .notify_me form{width:100%;float:left;display:block}
.consignment_block .consignment_area .status_box .notify_me form h3{width:100%;float:left;text-align:center;font-size:14px;
line-height:25px;font-weight:600;border-color:#585858;text-transform:uppercase;letter-spacing:.5px}
.consignment_block .consignment_area .status_box .notify_me form .text_area{width:50%;float:left;padding:10px 15px 10px 0;position:relative}
.consignment_block .consignment_area .status_box .notify_me form .text_area input{width:100%;float:left;height:45px;border:solid 1px rgba(0,0,0,.1);
padding:10px 15px;font-size:14px;line-height:25px;color:#55555a;background:#f4f4f4}
.consignment_block .consignment_area .status_box .notify_me form .text_area+.text_area{padding:10px 0 10px 15px}
.consignment_block .consignment_area .status_box .notify_me form .text_area+.text_area:before{
content:"OR";
position:absolute;font-size:11px;line-height:45px;color:#212121;font-weight:600;top:10px;left:-9px}
.consignment_block .consignment_area .status_box .notify_me form .submit_notify{
width:80px;float:right;background:#ee1c25;color:#fff;
font-size:13px;font-weight:600;text-transform:uppercase;line-height:45px;border:none;padding:0 15px;text-shadow:none;
}
.consignment_block .consignment_area .status_box p.info{width:100%;float:left}.consignment_block .consignment_area .status_box a.fd_btn{
width:auto;display:inline-block;padding:10px 20px;background:#333;color:#fff;
font-size:13px;line-height:20px;font-weight:600;margin:15px 0 0;border-radius:5px;
}
.custom-file-upload {
    border: 1px solid #ccc;
    display: inline-block;
    padding: 6px 12px;
    cursor: pointer;
    background: #f8f9fa;
    border-radius: 4px;
}

.custom-file-upload input[type="file"] {
    display: none; /* Hide the actual file input */
}
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000; /* Ensure it is on top of other content */
}

.spinner-border {
    border: 8px solid rgba(0, 0, 0, 0.1); /* Light grey background */
    border-radius: 50%;
    border-top: 8px solid #dc3545FF; /* Blue border */
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
#searchInput {
    position: relative;
    padding-right: 30px;
}

#clearSearch {
    position: absolute;
    right: 10px;
    top: 50%;
    background-color: #ed1c24;
    color: #fff;
    height: 20px;
    width: 20px;
    border-radius: 50px;
    text-align: center;
    transform: translateY(-50%);
    cursor: pointer;
    display: none;
}
.clear-icon {
    position: absolute;
    right: 10px; /* Adjust as needed */
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px; /* Make the icon larger */
    cursor: pointer;
    color: #999; /* You can change the color as needed */
}

.clear-icon:hover {
    color: #333; /* Darker color on hover */
}
#loader {
    position: fixed;
    z-index: 9999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Dark semi-transparent overlay */
    z-index: 9998; /* Just below the loader */
    backdrop-filter: blur(5px); /* Blur effect for background */
}
#enquiryDetailsModal .modal-header {
    /*background: #052158;*/
    /*color: #fff;*/
}
#enquiryDetailsModal h4#modal_title {
    font-size: 12px;
    color: inherit;
}
#enquiryDetailsModal .modal-header .close {
    margin: 0px 5px;
    color: inherit;
    border-color: #fff !important;
}

.modal-header .close {
    margin-top: -8px;
    border: 1px solid #333 !important;
    border-radius: 50%;
    padding: 2px 5px 0;
    line-height: 18px;
    color: #333 !important;
    opacity: 1;
    font-size: 22px;
}
div#enquiryDetailsModal {
    margin-top: 5%!important;
}
.btn-circle {
    border-radius: 50%;
    width: 20px;
    height: 20px;
    padding: 0px;
    text-align: center;
    font-size: 10px;
    line-height: 1;
}

.login-main-bg-cus{
    /*background: url(../images/5153829.jpg);*/
    background: #e9e9e9;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    min-height: 100%;
    padding-top: 5px;
    padding-bottom: 5px;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
}
.centerdv {
    margin: auto;
    float: none;
}
.login-form-box-main-cus{
    position: relative;
    margin-top: 0%;
    width: 100%;
    background: #fff;
    /*box-shadow: 0 17px 50px 0 rgba(11, 20, 26, .19), 0 12px 15px 0 rgba(11, 20, 26, .24);*/
    border-radius: 10px 0 0px 10px;
    padding: 30px 30px;
    min-height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.apml-login-form-cus{
    text-align: center;
}
.apml-login-logo{
    width: 50%;
    margin: 0 auto 10px;
}
.apml-login-logo a{
    color: #102a83;
}
.apml-login-logo img{
    width: 80px;
    height: auto;
}
.apml-login-title{}
.apml-login-title h3 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #000;
}
.apml-login-title p {
    font-size: 12px;
    line-height: 1.4;
    padding: 0;
}
.login-form-check-login-cus{
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom:15px;
}
.login-form-check-login-cus .hrlogin-check{}
.login-form-check-login-cus .emplogin-check{}
.form-group {
    margin-bottom: 12px;
}
.login-form-box-main-cus .form-control {
    display: block;
    width: 100%;
    height: 44px !important;
    padding: 0.65rem 0rem 0.65rem 1rem;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    color: #3F4254;
    background-color: #ffffff;
    background-clip: padding-box;
    border: 1px solid #E4E6EF;
    border-radius: 8px;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}
.form-control:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    border-color: #303030;
}
.was-validated .form-control:invalid:focus, .form-control.is-invalid:focus {
    border-color: #dc3545;
    box-shadow: none;
}


.login-form-box-main-cus .login-btn-cus {
    background: #ed1c24 none repeat scroll 0 0 !important;
    border: medium none;
    border-radius: 8px;
    color: #fff !important;
    height: 38px;
    line-height: 38px;
    font-size: 14px;
    padding: 0 10px;
    font-weight: 500;
    width: auto;
    min-width: 150px;
    text-align: center;
    display: inline-block;
    text-transform: capitalize;
    transition: all 0.5s ease-out 0s;
    -webkit-transition: all 0.5s ease-out 0s;
}
.login-page-left-img-cus {
    position: relative;
}
.login-page-left-img-cus img {
    width: auto;
    height: 547px;
    border-radius: 0px 10px 10px 0px;
}
.backtologin{
    margin-top: 10px;
}
.backtologin a {
    border: 1px dashed #ddd;
    padding: 5px 10px;
    color: #102a83;
    font-size: 12px;
}
.logout-main-box-cus{
    border-radius: 10px;
}
.feature-box-style-12 {
    box-shadow: 0 3px 10px 0 rgb(48 46 56 / 15%);
    background-color: #fff;
    border-radius: .5rem;
    margin: 0 0 30px;
    padding: 15px 15px 10px; 
}
.adtab-detail {
    position: relative;
    background: #f8f9fa00;
    padding: 0 0px 10px;
    border-bottom: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    margin-bottom: 6px;
    border-bottom: 1px dashed #e2e8f0;
}
.adtab-detail h2 {
    font-weight: 500;
    margin: 0px;
    padding-top: 0px;
    padding-bottom: 0px;
    font-size: 16px;
    padding-left: 8px;
    color: #333;
    position: relative;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.filter-btn-add-new-btn {
    display: flex;
    align-items: center;
    justify-content: end;
}
.add_btn_box {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.add_btn_box .add_btn {
    margin-left: 5px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
}
.add_btn {
    position: relative;
    background: none;
    color: #ed1d24;
    border: 1px solid #ed1d24;
    font-size: 14px;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    height: 38px;
    background-color: #fff;
    width: auto;
    min-width: 100px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.add_btn:hover {
    background: #ed1d24;
    color: #fff;
}
.dashboard-table-custom {
    box-shadow: 0 3px 10px 0 rgb(48 46 56 / 15%);
    margin-bottom: 0;
}
.table-responsive {
    overflow: visible;
}
.table-custom {
    margin-bottom: 0;
}
.table-custom tr th {
    background-color: #e2e8f0;
    border-bottom: none;
    padding-bottom: 1rem !important;
    padding-top: 1rem !important;
    font-size: 14px;
    font-weight: 500;
    color: #333;
}
.table-custom tr th:first-child {
    border-radius: 4px 0 0 0;
}
.table-custom tr th:last-child {
    border-radius: 0 4px 0 0;
}
.table-custom tr td {
     font-size: 13px; 
}
.table-custom span {
    font-size: 13px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    white-space: normal;
    transition: all 0.3s ease;
}
.action.dropdown {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    /* height: 40px; */
}
.action-cus {}
.action-cus a {
    cursor: pointer;
    color: #000;
}
.action-cus span {
    font-size:16px;
}
.action-cus .dropdown-menu {
    padding: 0;
    overflow: hidden;
    text-align: left;
}
.action-cus .dropdown-menu li {}
.action-cus .dropdown-menu li a {
    cursor: pointer;
    display: block;
    padding: 10px 0 10px 5px;
    font-size: 13px;
    color: #555;
    transition: all 0.3s ease-out 0s;
    -webkit-transition: all 0.3s ease-out 0s;
}
.action-cus .dropdown-menu li a:hover {
    background-color: #ed1d24;
    color: #fff;
}
.home-search-form .btn-link-default {
    background: #f2812800 none repeat scroll 0 0;
    font-size: 12px;
    color: #ed1d24;
    font-weight: 500;
    height: 38px;
    line-height: 32px;
    padding: 0px 10px;
    border-radius: 8px;
    text-transform: capitalize;
    min-width: 35px;
    text-align: center;
    border: 1px solid #ed1d24;
}
.btn-link-default:hover {
    background: #ed1d24;
    color: #fff;
    box-shadow: 0 10px 20px rgb(0 0 0 / 19%), 0 6px 6px rgb(0 0 0 / 23%);
}
.home-search-form {
    align-items: flex-end;
    padding: 6px 15px 10px 8px;
}
.home-search-form .form-control{
    margin-bottom:10px;
}
.pagination-main-cus{
    padding: 15px 0 1px;
}
.pagination-main-cus nav{}
.pagination-main-cus .pagination{
    align-items: center;
    justify-content: center;
}
.pagination-main-cus .page-item{}
.pagination-main-cus .page-item .page-link{
    color: #ed1c24;
}
.pagination-main-cus .page-item.active .page-link{
    z-index: 3;
    color: #fff;
    background-color: #ed1c24;
    border-color: #ed1c24;
}
.page-link:focus{
    box-shadow: none;
}
button:focus{
    box-shadow: none;
}
.btn-check:focus+.btn-success, .btn-success:focus{
   box-shadow: none; 
}
.paddingrightleft {
    padding-right: 5px;
    padding-left: 5px;
}
.today_card .card {
    position: relative;
    display: flex;
    flex-direction: column;
    word-wrap: break-word;
    border-radius: 10px;
    border: none;
    overflow: hidden;
    margin-bottom: 0px; 
}

.card {
    box-shadow: 0px 0px 5px 0px #cbcbcb;
    border: 1px solid #cbcbcb;
    margin-top: 0px;
    transition: transform 0.3s ease-in-out, border 0.3s ease-in-out, box-shadow 0.3s ease-in-out; /* Smooth transition */
}

.card:hover {
    transform: scale(1.05); /* Slight zoom effect */
    box-shadow: 0px 4px 15px rgba(255, 153, 153, 0.5); /* Light red shadow effect */
    border: 2px solid #fff; /* Light red border */
}

.bg-yellow-dark {
    color: #000000;
}

.today_card .card-statistic {
    padding: 15px 15px;
}
.today_card .card .card-statistic .card-icon {
    font-size: 50px;
    color: #000;
    position: absolute;
    right: 10px;
    top: 9px;
    height: 50px;
    width: 50px;
    padding-top: 0px;
    opacity: 0.5;
    -moz-transition: all 2000ms cubic-bezier(.19, 1, .22, 1) 0ms;
    -ms-transition: all 2000ms cubic-bezier(.19, 1, .22, 1) 0ms;
    -o-transition: all 2000ms cubic-bezier(.19, 1, .22, 1) 0ms;
    -webkit-transition: all 2000ms cubic-bezier(.19,1,.22,1) 0ms;
    transition: all 2000ms cubic-bezier(.19,1,.22,1) 0ms;
    /* background-color: #7fbfff; */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}
.today_card .card-title {
    font-weight: 500;
    font-size: 13px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
}
.card-statistic h5 {
    font-size: 24px;
    font-weight: 500;
}
.link_txt {
    position: relative;
    text-align: center;
    padding: 5px 0;
    font-size: 13px;
    display: block;
    background: rgba(0, 0, 0, .1);
}
.link_txt a {
    color: #000;
    cursor: pointer;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.link_txt a:hover {
    color: #ed1d24; 
}
.link_txt a i {
    padding-left: 5px;
}
.btn-close:focus {
    outline: 0;
    box-shadow: none;
    opacity: 1;
}
.modal-body {
    position: relative;
    flex: 1 1 auto;
    padding: 1rem 2rem;
}
.submit-btn-cus{
    background: #ed1d24 none repeat scroll 0 0;
    border: medium none;
    border-radius: 4px;
    color: #fff;
    height: 38px;
    line-height: 38px;
    font-size: 14px;
    padding: 0 10px;
    font-weight: 500;
    width: auto;
    min-width: 150px;
    text-align: center;
    display: inline-block;
    text-transform: capitalize;
    transition: all 0.5s ease-out 0s;
    -webkit-transition: all 0.5s ease-out 0s;
}
.btn-submit-form:hover, .submit-btn-cus:hover {
    background: #ffb100 none repeat scroll 0 0;
    color: #fff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08), 0 6px 6px rgba(0, 0, 0, 0.12);
}
a:active, a:hover, a:focus, button:active, button:hover, button:focus {
    outline: 0;
    box-shadow: none;
    text-decoration: none;
}
.relative {
    position: relative;
}
.error {
    position: absolute;
    left: 5px;
    bottom: -18px;
    font-size: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
}
.user-view-detais-box-main{}
.user-view-detais-box-main-single{
    box-shadow: 0 0 5px 1px #e7e7e7;
    padding: 10px;
    display: flex;
    flex-flow: row wrap;
    gap: 20px;
    border-radius: 5px;
    position: relative;
    margin-bottom: 10px;
}
.user-view-detais-box-main-single .user-view-detais-data{
      width: 48%;
    /* width: auto; */
    display: flex;
    align-items: baseline;
    justify-content: flex-start;
    gap: 10px;
}
.user-view-detais-box-main-single .user-view-detais-data .heading{
    padding: 0;
    color: #000000;
    font-size: 12px;
    font-weight: 500;
    overflow: hidden;
    margin: 0;
    width: 40%;
}
.user-view-detais-box-main-single .user-view-detais-data .data{
    color: #404040;
    font-weight: 500;
    font-size: 12px;
    overflow: hidden;
    margin: 0;
    width: 60%;
}
.bookng-form-main-box-cus{
    box-shadow: 0 3px 10px 0 rgb(48 46 56 / 15%);
    padding: 30px 25px;
}
.dropdown-menu {
    float: none;
    border: 1px solid rgba(0, 0, 0, .05);
}
.user-menu .dropdown-menu {
    min-width: 220px;
    padding: 0;
    left: auto;
    right: 0;
}
.user-header {
    background-color: #f2f2f2;
    display: block;
    padding: 10px 10px;
    text-align: center;
    margin-bottom: 10px;
}
.avatar {}
.avatar .avatar-img {
    width: 40px;
}
.user-header .user-text {
    margin-left: 0px;
    margin-top: 10px;
}
.user-header .user-text h6 {
    margin-bottom: 2px;
    font-size: 16px;
}
.user-header .user-text p {
    padding-bottom: 0;
    font-size: 13px;
}
.top-header-profile-setting-cus {
    margin: 10px 10px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.user-menu .dropdown-menu .dropdown-item {
    font-size: 13px;
    display: flex;
    align-items: center;
    border-top: 1px solid #e3e3e3;
    padding: 10px 10px;
}
.user-menu .dropdown-menu .dropdown-item i {
    font-size: 14px;
    background-color: #f2f2f2;
    padding: 8px 8px;
    border-radius: 8px;
    margin-right: 5px;
}
.top-header-profile-setting-cus .dropdown-item:first-child {
    border-top: none;
}
.tracking-main-sec-box{
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 18px;
    left: auto;
    width: 50%;
    max-width: 45%;
    background: #fff;
    border-radius: 5px;
    padding: 50px;
    text-align: center;
    -webkit-box-shadow: 0 0 3px 0 rgba(0, 0, 0, .22);
    box-shadow: 0 0 3px 0 rgba(0, 0, 0, .22);
    margin: 25px auto;
}
.tracking-main-sec-box h4{
    font-size: 26px;
}
.tracking-main-sec-box p{
    margin: 25px 0;
    line-height: 1.8;
}
.tracking-main-sec-box button{
    background: #ee1c25;
    color: #fff;
    font-size: 15px;
    text-align: center;
    text-transform: uppercase;
    height: 55px;
    text-shadow: none;
    width: 100%;
    border: none;
    border-radius: 5px;
    font-weight: 500;
    margin-top: 10px;
    outline: 0;
}
.tracking-main-sec-box button:hover{
    color: #fff;
}
.tracking-status-another-track{
    text-align: end;
    margin-bottom: 10px;
}
.tracking-status-another-track a{
    background-color: #ed1d24;
    color: #fff;
    padding: 5px 10px;
    border-radius: 6px;
    font-weight: 600;
}
.profile-upload-img-cus{
    position: absolute;
    bottom: 0;
    left: 75px;
    background-color: #ddd;
    padding: 4px 8px;
    border-radius: 6px;
    cursor: pointer;
}
.profile-upload-img-cus label{}
.profile-upload-img-cus i{}
.profile-image-name-main-box-cus{
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}
.profile-update-user-name-cus{}
.profile-update-user-name-cus h2{
    font-size: 24px;
    margin: 0;;
}
.profile-update-user-name-cus h3{
    font-size: 14px;
    color: #b5b5b5;
    font-weight: 300;
    margin: 0;
}
.profile-edit-main-box{}
.user-menu .dropdown-menu .dropdown-item:hover {
    color: #fff;
    background: #ed1d24;
}
.user-menu .dropdown-menu .dropdown-item:hover i {
    color: #ed1d24;
}
.profile-upload-img-close-btn{
    position: absolute;
    top: -5px;
    left: 90px;
    cursor: pointer;
    background-color: rgb(255, 0, 0);
    color: white;
    border-radius: 50%;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 20px;
    width: 20px;
    line-height: 0.7;
    text-align: center;
}
/* Hide number input spinners in Chrome, Safari, and Edge */
.no-spinner {
    -moz-appearance: textfield; /* Firefox */
    -webkit-appearance: none; /* Chrome, Safari, Edge */
    appearance: none; /* Modern browsers */
}

/* Hide spinner buttons */
.no-spinner::-webkit-inner-spin-button,
.no-spinner::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0; /* Prevents margin of spinner buttons */
}

/* Hide spinner buttons in Firefox */
.no-spinner[type=number] {
    -moz-appearance: textfield; /* Firefox */
}


.relative{
    position: relative;
}

.feedback_page .top-sec {
    padding: 0px 0 0;
    text-align: center;
    max-width: 100%;
    margin: 0 auto;
}
    .feedback_page .top-sec h2 {
        font-size: 20px;
        color: #ec2127;
        line-height: 30px;
        font-weight: 700;
        padding-bottom: 12px;
    }
    .feedback_page .top-sec h4 {
        font-size: 13px;
        line-height: 25px;
        color: #333;
        padding-bottom: 10px;
    }
    .feedback_page .top-sec p {
        font-size: 14px;
        line-height: 30px;
        padding-bottom: 10px;
    }
    .feedback_page .form-sec {
        margin-bottom: 50px;
    }
    .feedback_page form {
        max-width: 100%;
        background: #fff;
        margin: 0 auto;
        padding: 30px 20px;
        -webkit-box-shadow: 0 0 8px 0 rgba(0, 0, 0, .18);
        box-shadow: 0 0 8px 0 rgba(0, 0, 0, .18);
        border-radius: 3px;
    }
    .feedback_page .top-input {
        /*margin-bottom: 20px;*/
        /*border: 1px solid #d2d2d2;*/
        /*border-radius: 5px;*/
        /*position: relative;*/
    }
    .feedback_page .rate-us {
        border-top: 1px solid #d5d3d3;
        padding-top: 20px;
        margin-top: 25px;
    }
    .feedback_page .rate-us .rate {
        margin-bottom: 20px;
    }
    .feedback_page .rate-us h3 {
        background: #e9e8e8;
        font-size: 13px;
        color: #333;
        font-weight: 700;
        padding: 10px 15px;
        border-radius: 5px;
        margin: 0;
    }
    .feedback_page .rate-us ul {
        list-style: none;
        margin: 0;
        padding: 15px 0 0 10px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .feedback_page .rate-us ul li {
        width: 25%;
    }
    .feedback_page .radio input[type=radio] {
        opacity: 0;
    }
    .feedback_page .radio-label {
        color: #55555a;
        font-size: 16px;
        font-weight: 500;
    }
    .feedback_page .radio-label:before {
        content: "";
        background-color: transparent;
        border-radius: 100%;
        border: 2px solid #ee1c25;
        display: inline-block;
        width: 15px;
        height: 15px;
        position: relative;
        top: 0px;
        margin-right: 15px;
        vertical-align: middle;
        cursor: pointer;
        text-align: center;
        -webkit-transition: all 250ms ease;
        -o-transition: all 250ms ease;
        transition: all 250ms ease;
    }
    .feedback_page .radio-label {
        color: #55555a;
        font-size: 13px;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: start;
        margin: 0;
        padding: 0;
    }
    .feedback_page .radio input[type=radio]:checked+.radio-label:before {
        background-color: #ee1c25;
        -webkit-box-shadow: inset 0 0 0 3px #fff;
        box-shadow: inset 0 0 0 3px #fff;
    }
    
    .feedback_page form .btn {
     width: 130px;
    height: 50px;
    line-height: 50px;
    margin-top: 40px;
    background: #ec2028;
    color: #fff;
    text-transform: uppercase;
    width: 120px;
    height: 50px;
    line-height: 50px;
    padding: 0;
    text-shadow: none;
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    margin: 20px auto 0;
    font-size: 15px;
    font-weight: 600;
    display: block;
    border-radius: 5px;
    outline: 0;
}
.feedback_page .captcha_code span {
    padding: 5px 0px 5px 5px;
    background: #000;
    display: flex;
    border-radius: 0px 8px 8px 0px;
    width: 100px;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    align-items: center;
    justify-content: center;
}
.feedback_page .feedback-icon-cus{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.feedback_page .feedback-icon-cus img{
    display: block;
    width: 30px;
    height: 30px;
    /*margin-bottom: 5px;*/
    background-color: #ed1c24;
    padding: 5px;
    border-radius: 6px;
}
.highlightedrow {
    border: solid 1px #ee1c25;
}    
.feedback_page .qstn {
    display: flex;
    align-items: flex-end;
    list-style: none;
    padding: 0;
    margin: 0;
}
.feedback_page .qstn li {
    margin-bottom: 20px;
    font-size: 14px;
    display: inline-block;
    color: #333;
    font-weight: 600;
}
.feedback_page .qstn li:first-child {
    width: 38%;
    text-align: left;
}
.feedback_page .qstn li {
    width: 8%;
    text-align: right;
}
.errorfeedback{
    position: absolute;
    left: 15px;
    bottom: 5px;
    color: #ffb100 !important;
    font-size: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
}
.errorfeedbacktextarea{
    position: absolute;
    left: 0px;
    bottom: -15px;
    color: #ffb100 !important;
    font-size: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
}
input[type=radio] {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
    height: 18px;
    width: 18px;
    border-radius: 0;
}
#loader img {
    max-width: 50%;
    height: auto;
}
 
.small-placeholder::placeholder {
    font-size: 12px; /* Adjust the size as needed */
    color: gray;
}
.small-input {
    font-size: 14px; /* Adjust the size as needed */
}
  .ui-autocomplete {
    max-height: 300px;
    overflow-x: hidden;
    overflow-y: auto;
    background: #f9f9f9;
    border: solid 1px rgba(0,0,0,.1);
    border-radius: 5px;
    padding: 0;
    margin: 0;
    z-index: 9999;
}
.ui-autocomplete li {
    width: 100%;
    display: block;
    border-bottom: solid 1px rgba(0,0,0,.1);
    font-size: 11px;
    line-height: 18px;
    color: #333;
    font-weight: 400;
    text-align: left;
    text-transform: uppercase;
}
.ui-autocomplete li:last-child {border-bottom:none;}
.ui-autocomplete li .ui-menu-item-wrapper{padding: 10px 10px 10px 28px;}
.ui-autocomplete li .ui-menu-item-wrapper:before {
    content: "";
    position: absolute;
    top: 0;
    left: 5px;
    width: 20px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url(../images/pin1.png) no-repeat center;
    background-size: 15px;
    z-index: 111;
}

