/********** Template CSS **********/
:root {
    --primary: #009CFF;
    --light: #F3F6F9;
    --dark: #191C24;
}
.bg-primary{
    background-color:var(--primary)!important;
}
.bg-brand {
    background-color: var(--primary) !important;
}
.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;
}

@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;
    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: 3rem;
    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: var(--primary);
}
.testimonial-item span {
    width: 120px;
    height: 120px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    border-radius: 120px;
}
.card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card-body {
    flex-grow: 1;
}

.bg-image {
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    height: 200px; /* Set a fixed height for the image container */
}

    .bg-image img {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        max-width: 100%; /* Ensure the image does not exceed the container's width */
        max-height: 100%; /* Ensure the image does not exceed the container's height */
        object-fit: cover; /* Cover the container while maintaining aspect ratio */
    }
.color-toggle::after{
    display:none;
}
.wizard > .steps .current-info, .wizard > .steps .number {
    display: none;
}

#wizard {
    min-height: 834px;
    background: #fff;
    margin-right: 60px;
    padding: 107px 75px 65px;
}

.steps {
    margin-bottom: 30px;
}

    .steps ul {
        display: flex;
        position: relative;
    }

        .steps ul li {
            width: 20.16%;
            margin-right: 10px;
        }

            .steps ul li a {
                display: inline-block;
                width: 100%;
                height: 7px;
                background: #e6e6e6;
                border-radius: 3.5px;
            }

            .steps ul li.first a, .steps ul li.checked a {
                background: #009CFF;
                transition: all 0.5s ease;
            }

        .steps ul:before {
            content: "Personal Info";
            font-size: 22px;
            font-family: "Poppins-SemiBold";
            color: #333;
            top: -38px;
            position: absolute;
        }

        .steps ul.step-2:before {
            content: "Additional Information";
        }

       

        .steps ul.step-3:before {
            content: "Ticket Details";
        }

.actions ul {
    display: flex;
    margin-top: 30px;
    justify-content: space-between;
}

    .actions ul.step-last {
        justify-content: space-between;
    }

       

.actions li a {
    padding: 0;
    border: none;
    display: inline-flex;
    height: 51px;
    width: 135px;
    align-items: center;
    cursor: pointer;
    position: relative;
    padding-left: 41px;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    font-weight: 400;
}

    .actions li a:before {
        content: "\f35a";
        position: absolute;
        margin: -2px;
        right: 41px;
        font-family: "Font Awesome 6 Free";
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }

    

.actions li[aria-disabled="true"] a {
    display: none;
}

.actions li:first-child a{
    text-align:left !important;
}

.actions li:first-child a:before {
    content: '\f359';
    font-family: "Font Awesome 6 Free";
    left: 26px;
    margin: -5px;
}

    

.actions li:last-child a {
    padding-left: 29px;
    width: 167px;
    font-weight: 400;
}

    .actions li:last-child a:before {
        right: 30px;
        content: '\f058';
        font-family: "Font Awesome 6 Free";
    }
.item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 30px;
    border-bottom: 1px solid #e6e6e6;
    margin-bottom: 30px;
}

    .item:last-child {
        margin-bottom: 0;
        padding-bottom: 0;
        border: none;
    }

    .item .left {
        display: flex;
        align-items: center;
    }

    .item .thumb {
        display: inline-flex;
        width: 100px;
        height: 90px;
        justify-content: center;
        align-items: center;
        border: 1px solid #f2f2f2;
    }

    .item .purchase {
        display: inline-block;
        margin-left: 21px;
    }

        .item .purchase h6 {
            font-family: "Poppins-Medium";
            font-size: 16px;
            margin-bottom: 4px;
            font-weight: 500;
        }

            .item .purchase h6 a {
                color: #333;
            }

    .item .price {
        font-size: 16px;
    }

.checkout {
    margin-bottom: 44px;
}

    .checkout span.heading {
        font-family: "Poppins-Medium";
        font-weight: 500;
        margin-right: 5px;
    }

    .checkout .subtotal {
        margin-bottom: 18px;
    }

    .checkout .shipping {
        margin-bottom: 19px;
    }

        .checkout .shipping span.heading {
            margin-right: 4px;
        }

    .checkout .total-price {
        font-family: "Muli-Bold";
        color: #333;
        font-weight: 700;
    }
.form-row {
    margin-bottom: 24px;
}

    .form-row label {
        margin-bottom: 8px;
        display: block;
    }

    .form-row.form-group {
        display: flex;
    }

        .form-row.form-group .form-holder {
            width: 50%;
            margin-right: 21px;
        }

            .form-row.form-group .form-holder:last-child {
                margin-right: 0;
            }
#wizard ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
@media (max-width: 1199px) {
    #wizard {
        margin-right: 40px;
        min-height: 829px;
        padding-left: 60px;
        padding-right: 60px;
    }
}

@media (max-width: 991px) {
    .wrapper {
        justify-content: center;
    }

        .wrapper .image-holder {
            display: none;
        }

        .wrapper form {
            width: 60%;
        }

    #wizard {
        margin-right: 0;
        padding-left: 40px;
        padding-right: 40px;
    }
}

@media (max-width: 767px) {
    .wrapper {
        height: auto;
        display: block;
    }

        .wrapper .image-holder {
            width: 100%;
            display: block;
        }

        .wrapper form {
            width: 100%;
        }

    #wizard {
        min-height: unset;
        padding: 70px 20px 40px;
    }
}

.wizard .steps ul {
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
    -o-justify-content: space-between;
    -ms-justify-content: space-between;
    -moz-justify-content: space-between;
    -webkit-justify-content: space-between;
    list-style: none;
    padding-left: 0;
    margin-top: 0;
    width: 100%;
}

.wizard .steps li,
.wizard .steps li.current {
    outline: none;
    -o-outline: none;
    -ms-outline: none;
    -moz-outline: none;
    -webkit-outline: none;
    border-radius: 5px;
    -o-border-radius: 5px;
    -ms-border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    position: relative;
    width: 33.33%;
    margin-right: 20px;
    background: #fff;
}

    .wizard .steps li:last-child {
        margin-right: 0;
    }
    .wizard .steps li .current-info {
        display: none;
    }

    .wizard .steps li a {
        text-decoration: none;
        outline: none;
        -o-outline: none;
        -ms-outline: none;
        -moz-outline: none;
        -webkit-outline: none;
    }

        .wizard .steps li a .title {
            display: flex;
            display: -webkit-flex;
        }

            .wizard .steps li a .title .step-icon {
                position: relative;
                outline: none;
                -o-outline: none;
                -ms-outline: none;
                -moz-outline: none;
                -webkit-outline: none;
                box-shadow: 0px 4px 11px 0px rgba(0, 0, 0, 0.14);
                -o-box-shadow: 0px 4px 11px 0px rgba(0, 0, 0, 0.14);
                -ms-box-shadow: 0px 4px 11px 0px rgba(0, 0, 0, 0.14);
                -moz-box-shadow: 0px 4px 11px 0px rgba(0, 0, 0, 0.14);
                -webkit-box-shadow: 0px 4px 11px 0px rgba(0, 0, 0, 0.14);
                font-size: 18px;
                color: #fff;
                font-size: 25px;
                background: #ccc;
                padding: 30px;
                margin: 0;
                border-top-left-radius: 5px;
                border-bottom-left-radius: 5px;
            }

        .wizard .steps li a .step-icon span {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            -o-transform: translate(-50%, -50%);
            -ms-transform: translate(-50%, -50%);
            -moz-transform: translate(-50%, -50%);
            -webkit-transform: translate(-50%, -50%);
        }

    .wizard .steps li.current a .step-icon,
    .wizard .steps li.current a:active .step-icon,
    .wizard .steps li.done a .step-icon,
    .wizard .steps li.done a:active .step-icon {
        background: #55e8d5;
    }

    .wizard .steps li a .step-text {
        color: #333;
        font-size: 16px;
        font-weight: 400;
        padding-top: 18px;
        padding-left: 20px;
    }
    .wizard .content{
        margin:0 !important;
        min-height:unset !important;
    }
.text-brand {
    color: var(--primary);
}
.table-data2 {
    border-collapse: collapse;
    overflow: visible;
}

    .table-data2.table thead th {
        font-size: 12px;
        color: #555;
        text-transform: uppercase;
        border: none;
        font-weight: 600;
        vertical-align: top;
        padding: 15px 40px;
        padding-right: 10px;
    }

        .table-data2.table thead th:first-child {
            padding-right: 0;
        }

    .table-data2.table tbody {
        background: #fff;
    }

        .table-data2.table tbody tr td:first-child {
            -webkit-border-top-left-radius: 3px;
            -moz-border-radius-topleft: 3px;
            border-top-left-radius: 3px;
            -webkit-border-bottom-left-radius: 3px;
            -moz-border-radius-bottomleft: 3px;
            border-bottom-left-radius: 3px;
            vertical-align: top;
        }

            .table-data2.table tbody tr td:first-child .au-checkbox {
                margin-top: 5px;
            }

@media (max-width: 1199px) {
    .table-data2.table tbody tr td:first-child {
        vertical-align: middle;
    }

        .table-data2.table tbody tr td:first-child .au-checkbox {
            margin-top: 0;
        }
}

.table-data2.table tbody tr td:last-child {
    -webkit-border-top-right-radius: 3px;
    -moz-border-radius-topright: 3px;
    border-top-right-radius: 3px;
    -webkit-border-bottom-right-radius: 3px;
    -moz-border-radius-bottomright: 3px;
    border-bottom-right-radius: 3px;
    padding-right: 35px;
}

.table-data2.table tbody td {
    font-size: 14px;
    color: #808080;
    vertical-align: middle;
    padding: 25px 40px;
    padding-right: 10px;
    border: none;
    font-weight:600;
}

    .table-data2.table tbody td.desc {
        color: #4272d7;
    }

.table-data2 .spacer {
    height: 5px;
    background: transparent;
}
.table-data2 tbody tr {
    border-bottom: 5px solid #f8f9fa;
}

.tr-shadow {
    -webkit-box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.03);
    -moz-box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.03);
    box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.03);
}
.dt-column-order{
    display:none;
}
.dt-search {
    position: relative;
    text-align:left !important;
}

    .dt-search input {
        width: 200px !important; /* Set the width */
        padding: 5px; /* Add some padding */
        border: 1px solid #ccc; /* Border styling */
        border-radius: 4px; /* Rounded corners */
    }

    .dt-search .fa-search {
        top: 10px;
        left: 10px;
        right: auto;
    }
    /* Container styles */
.dt-layout-row:last-of-type {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0;
}

/* Information text styles */
.dt-info {
    font-size: 16px;
    color: #333;
}

/* Pagination button styles */
.dt-paging-button {
    padding: 10px 15px;
    margin: 0 5px;
    font-size: 16px;
    color: var(--primary);
    background-color: #fff;
    border: 1px solid #dee2e6;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.dt-paging-button:hover {
    background-color: var(--primary);
    color: #fff;
}

.dt-paging-button.disabled {
    color: #6c757d;
    cursor: not-allowed;
    background-color: #e9ecef;
}

.dt-paging-button.current {
    background-color: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

/* Remove outline on focus */
.dt-paging-button:focus {
    outline: none;
}
#updateModal .modal-dialog{
    max-width:1000px;
}
.nav-item .badge {
    font-size: 0.75rem;
    position: absolute;
    top: 8px;
    right: 20px;
}

.nav-item .dropdown-menu-noti {
    min-width: 300px;
}

.dropdown-item {
    display: flex;
    align-items: center;
}

  

    .dropdown-item h6 {
        margin: 0;
    }

    .dropdown-item small {
        display: block;
    }
    .fs-normal{
        font-size:14px;
    }
.btn-whatsapp {
    background-color: #45d97c;
    color: white;
}
#wizard .content{
    width:100% !important;
}
/* Override Select2 to match Bootstrap 5 form control styling */
.select2-container .select2-selection--single {
    height: calc(2.25rem + 2px); /* Matches Bootstrap form-control height */
    line-height: calc(2.25rem + 2px); /* Vertically center text */
    padding: 0.375rem 0.75rem;
    border: 1px solid #ced4da;
    border-radius: 0.375rem;
    font-size: 1rem;
    color: #495057;
}

.select2-container--bootstrap-5 .select2-selection--single {
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: 0.375rem;
    box-shadow: none;
    height: calc(2.25rem + 2px);
}

    .select2-container--bootstrap-5 .select2-selection--single .select2-selection__rendered {
        color: #495057;
        padding-left: 0.75rem;
        line-height: calc(2.25rem + 2px);
    }

    .select2-container--bootstrap-5 .select2-selection--single .select2-selection__arrow {
        height: calc(2.25rem + 2px);
        right: 0.75rem;
    }
.select2-container--default .select2-selection--single .select2-selection__placeholder
{
    color:black;
}
.dt-type-numeric {
    text-align: left !important; /* Example: Change text alignment or any other style */
}




