@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Oswald:wght@200..700&display=swap');

body {
    /* background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(100, 55, 0, 0.5)), url(../images/banner-bg.jpg); */
    background-size: cover;
    background-position: center;
    /* height: calc(100vh - 100px); */
    background-attachment: fixed;
    font-family: Oswald,
        sans-serif !important;
}
/* .pagination{
    margin-top: -1.5rem !important;
} */

.table {
    background-color: white !important;
}

.active {
    border-bottom: 1px solid #0c298d;
}

.nav-item:hover {
    border-bottom: 1px solid #0c298d;
}

.bg-color {
    background-color: #0c298d !important;
    color: white !important;
}

.text-color1 {
    color: #0c298d !important;
}

.fs-12 {
    font-size: 12px;
}

.fs-13 {
    font-size: 13px;
}

.fs-14 {
    font-size: 14px;
}
.fs-16{
    font-size: 16px;
}

.fs-20 {
    font-size: 20px;
}

.nav-item {
    padding: 10px 0px;
}

.nav-link {
    font-weight: 500;
    font-size: 15px;
    line-height: 20px;
}
.camp-detailCol {
    border-right: 2px solid #dee2e6;
}
.accordion-button:after {
    font-family: 'FontAwesome';
    content: "\f078";
    float: right;
    font-size: 17px;
    top: 24px;
    position: absolute;
    right: 10px;
    z-index: 1;
}

.accordion-opened .accordion-buttoon:after {
    content: "\f054";
}

.book_btn {
    background-color: #e4bd12;
    padding: 10px;
    font-size: 15px;
    font-weight: 500;
    border-radius: 0px;
    letter-spacing: 3px;

}

.book_btn:hover,
.book_btn:focus {
    background-color: #0c298d;

}

.social-link {
    background-color: #0c298d;
    padding: 0px 5px;
    margin: 0px 3px;
    height: 30px;
}

/* .dob_input:hover,
.dob_input:focus,
.dob_input:visited {
    pointer-events: none;

} */
.banner-image {
    /* background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(100, 55, 0, 0.5)), url(../images/banner-bg.jpg); */
    background-size: cover;
    background-position: center;
    /* height: calc(100vh - 100px); */
    /* background-attachment: fixed; */
}

.submit_btn {
    background-color: #0c298d;
    color: white;
    font-weight: 500;
}

.submit_btn:hover,
.submit_btn:focus {
    background-color: #0c298d;
    color: white;
    font-weight: 500;
}

.book_course {
    background-color: #0c298d;
    color: white;
    border-radius: 0px;
}

.book_course:hover,
.book_course:focus {
    background-color: #0c298d;
    color: white;
    border-radius: 0px;
}

.thankyou-section {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(100, 55, 0, 0.5)), url(../images/thankyou-bg.jpeg);
    background-size: cover;
    background-position: center;
    height: calc(100vh - 100px);
}

/*Dashboard Css for  tables and calendar*/

.header {
    padding: 10px;
    display: flex;
    justify-content: space-between;
}

.table-container {
    max-height: 400px;
    /* Set the maximum height of the container */
    overflow-y: auto;
    /* Enable vertical scrollbar when content overflows */
}

.table-responsive {
    width: 100%;
    /* Ensure the table takes up the full width */
    overflow-x: auto;
    /* Enable horizontal scrollbar if needed */
}

.header #month {
    color: #0c298d;
    font-size: 20px;
    font-weight: 600;
}

.calendar-btn {
    width: 30px;
    cursor: pointer;
    border: none;
    outline: none;
    padding: 5px;
    border-radius: 3px;
    color: white;
}

.header .calendar-btn {
    background-color: #0c298d;
}

.weekdays {
    width: 100%;
    display: flex;
    background-color: #2f3640;
    font-size: 17px;
    color: #fff;
    font-weight: 500;
}

.weekdays div {
    width: 100px;
    padding: 10px;
    text-align: center;
    text-transform: uppercase;
}

#calendar {
    width: 100%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
}

.day {
    width: 50px;
    height: 50px;
    padding: 10px;
    cursor: pointer;
    margin: 5px;
    box-sizing: border-box;
    box-shadow: 0px 0px 3px #cbd4c2;
    color: #7f8fa6;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.day:hover {
    background-color: rgba(112, 111, 211, 0.1);
    color: #706fd3;
}

#currentDay {
    background-color: #706fd3;
    color: #fff;
}

.event {
    font-size: 10px;
    padding: 3px;
    background-color: #3d3d3d;
    color: #fff;
    border-radius: 5px;
    max-height: 55px;
    overflow: hidden;
}

.event.holiday {
    background-color: palegreen;
    color: #3d3d3d;
}

.plain {
    cursor: default;
    box-shadow: none;
}

#modal {
    display: none;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100vw;
    height: 100vh;
    z-index: 10;
    background-color: rgba(0, 0, 0, 0.8);
}

#addEvent,
#viewEvent {
    display: none;
    width: 350px;
    background-color: #fff;
    padding: 25px;
    position: absolute;
    z-index: 20;
}

#addEvent h2,
#viewEvent h2 {
    font-weight: 500;
    margin-bottom: 10px;
}

#txtTitle {
    padding: 10px;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 25px;
    border-radius: 3px;
    outline: none;
    border: 1px solid #cbd4c2;
    font-size: 16px;
}

#btnSave {
    background-color: #2ed573;
}

.btnClose {
    background-color: #2f3542;
}

#viewEvent p {
    margin-bottom: 20px;
}

#btnDelete {
    background-color: #ea2027;
}

.error {
    border-color: #ea2027 !important;
}

/*End Dashboard Css for  tables and calendar*/

/*Email Invoice Template Css*/
.invoice-header {
    width: 50%;
    float: left;
}

@media screen and (max-width: 768px) {
    body.swal2-toast-shown .swal2-container {
        box-sizing: border-box;
        width: 50% !important;
        max-width: 100%;
        background-color: rgba(0, 0, 0, 0);
        pointer-events: none;
    }
                .camp-detailCol {
                    border-right: none !important;
                }

}

@media screen and (max-width: 475px) {
    body.swal2-toast-shown .swal2-container {
        box-sizing: border-box;
        width: 95% !important;
        max-width: 100%;
        background-color: rgba(0, 0, 0, 0);
        pointer-events: none;
    }
}

#bookingForm .iti--allow-dropdown {
    width: 100% !important;
}

@media screen and (max-width: 991px) {
    .book-now {
        background-color: #e4bd12 !important;
        border-bottom: none !important;
    }

    .book-now .nav-link {
        color: white !important;
    }
}

@media (max-width:575px) {
    .thankyou-section {
        height: 100% !important;
    }
}
#Bookingstable td{
  color: #474747 !important;
}
#Bookingstable th{
    font-weight: 500;
  }
#Bookingstable_length{
    padding-left: 20px;
}
#Bookingstable .dataTables_filter{
    display: flex;
}
.Bookingpayment_filter{
    margin-left: 0.5em;
    display: inline-block !important;
    width: 142 !important;
}
#Bookingstable_info{
 padding-left: 20px;
 margin-bottom: 20px;
}
#Bookingstable_paginate{
    padding-right: 15px;
    padding-top: 5px;
    margin-bottom: 15px;
}
@media (max-width:787px){
    #Bookingstable_info{
        margin-bottom: 5px !important;
       }
       #Bookingstable_paginate{
           margin-bottom: 10px;
       }
}
#Bookings_filter .active,
#custom_filter .active{
    background-color: #085DB7 !important;
    color: white !important;
}
@media (max-width:490px){
    #Bookings_filter{
        display: flex;
        justify-content: space-between;
    }
    #Bookings_filter .nav-item{
    width: 120px !important;
    }
    #Bookings_filter .nav-link{
        width: 120px !important;
        }
}
