﻿/*.page {
    position: relative;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

.sidebar {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #4e73df 70%);
}

.top-row {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row ::deep a, .top-row ::deep .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

        .top-row ::deep a:hover, .top-row ::deep .btn-link:hover {
            text-decoration: underline;
        }

        .top-row ::deep a:first-child {
            overflow: hidden;
            text-overflow: ellipsis;
        }

@media (max-width: 640.98px) {
    .top-row:not(.auth) {
        display: none;
    }

    .top-row.auth {
        justify-content: space-between;
    }

    .top-row ::deep a, .top-row ::deep .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page {
        flex-direction: row;
    }

    .sidebar {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row {
        position: sticky;
        top: 0;
        z-index: 1;
    }

        .top-row.auth ::deep a:first-child {
            flex: 1;
            text-align: right;
            width: 0;
        }

    .top-row, article {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}*/


/*
navmenu*/



/*.navbar-toggler {
    background-color: rgba(255, 255, 255, 0.1);
}

.top-row {
    height: 3.5rem;
    background-color: rgba(0,0,0,0.0);
}

.navbar-brand {
    font-size: 1.1rem;
}

.oi {
    width: 2rem;
    font-size: 1.1rem;
    vertical-align: text-top;
    top: -2px;
}

.nav-item {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
    color: white;*/ /* Set text color to white */
/*}

    .nav-item:first-of-type {
        padding-top: 1rem;
    }

    .nav-item:last-of-type {
        padding-bottom: 1rem;
    }

    .nav-item a {
        color: inherit;*/ /* Inherit text color from parent */
/*}

        .nav-item a.active {
            background-color: rgba(255, 255, 255, 0.25);
            color: white;
        }

        .nav-item a:hover {
            background-color: rgba(255, 255, 255, 0.1);
            color: white;
        }*/


/*@media (min-width: 641px) {
    .navbar-toggler {
        display: none;
    }

    .collapse {*/
/* Never collapse the sidebar for wide screens */
/*display: block;
    }
}*/




@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;

}

body {
    height: 100%;
    background: #ededed !important;
}
/* .container {
  width: 100%;
  min-height: 100vh;
  background: #efefef;
} */

/* .navigation {
    position: fixed;
    inset: 0px;
    width: 300px;
    background: #5b0607;
    overflow: hidden;
    box-shadow: 15px 15px 25px rgba(0, 0, 0, 0.05);
    transition: 0.5s;
} */

.navigation.active {
    width: 100px;

}

.toggle {
    position: absolute;
    right: 15px;
    bottom: 15px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .toggle::before {
        content: '';
        position: absolute;
        width: 25px;
        height: 3px;
        border-radius: 3px;
        background: #287bff;
        transform: translateY(-5px);
        transition: 1s;
    }

    .toggle::after {
        content: '';
        position: absolute;
        width: 25px;
        height: 3px;
        border-radius: 3px;
        background: #287bff;
        transform: translateY(5px);
        transition: 1s;
    }

.navigation.active .toggle::before {
    transform: translateY(0px) rotate(-405deg);
}

.navigation.active .toggle::after {
    transform: translateY(0px) rotate(225deg);
}

.navigation ul {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
}

    .navigation ul li {
        position: relative;
        list-style: none;
        width: 100%;
        border-top-left-radius: 30px;
        border-bottom-left-radius: 30px;
        margin-bottom: 2px;
    }

        .dropbtn:hover,
        .navigation ul li a:hover {
            background: #fff;
            color: #222 !important;
            transition: 0.3s;
            border-radius: 30px 0px 0px 30px;
        }
        /*.navigation ul li a:hover {
            color: #fff;          
        }*/

        .navigation ul li:nth-child(1) {
            top: 0px;
            margin-bottom: 0px;
            background: none;
        }

        /* .navigation ul li:not(:first-child):hover::before {
            content: '';
            position: absolute;
            top: -20px;
            right: 0;
            width: 20px;
            height: 20px;
            background: transparent;
            border-bottom-right-radius: 20px;
            box-shadow: 7.5px 7.5px 0 7.5px #fff;
        }

        .navigation ul li:not(:first-child):hover::after {
            content: '';
            position: absolute;
            bottom: -20px;
            right: 0;
            width: 20px;
            height: 20px;
            background: transparent;
            border-top-right-radius: 20px;
            box-shadow: 7.5px -7.5px 0 7.5px #fff;
        }*/

        .navigation ul li a {
            position: relative;
            display: flex;
            width: 100%;
            text-decoration: none;
            color: #000 !important;
            transition: background .3s ease-out, -webkit-box-shadow .3s ease-out;
            will-change: background;
            border-radius: 30px 0px 0px 30px;
        }

        .navigation ul li:hover:not(:first-child) a {
            color: #000;
        }

        .navigation ul li a .icon {
            position: relative;
            display: block;
            min-width: 20px;
            height: 0px;
            /* line-height: 75px; */
            line-height: 35px;
            text-align: center;
        }

            .navigation ul li a .icon ion-icon {
                font-size: 1.75rem;
            }

        .navigation ul li a .title {
            position: relative;
            display: block;
            padding: 5px 6px;
            color:#000;
            height: auto;
            /* line-height: 36px; */
            text-align: start;
            font-size: 15px;
           /* white-space: nowrap;*/
        }

/* navbar css  */
.navbar-expand-lg {
    z-index: 11;
    background-color: #fff;
    position: fixed;
    width: 100%;
    top: 0;
    height: 50px;
}

    .navbar-expand-lg .profile-navbar {
        right: 20px;
    }

.w-40 {
    width: 40px;
}

/* __________ */

.sidebar {
    height: 100%;
    width: 260px;
    position: fixed;
    z-index: 1;
    top: 0px;
    left: 0;
    background-color: #ffffff;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 0px;
}

    .sidebar a {
        padding: 8px 8px 8px 8px;
        text-decoration: none;
        /* font-size: 25px; */
        color: #818181;
        display: block;
        transition: 0.3s;
    }

        .sidebar a:hover {
            color: #f1f1f1;
        }

    .sidebar .closebtn {
        /* position: absolute;
        right: 10px;
        font-size: 16px;
        margin-left: 0px;
        bottom: 10px;
        background: white;
        font-weight: 700;
        border-radius: 50%;
        color: #7f0707 !important;
        padding: 0px 7px 0px 7px;
        text-align: center;
        display: table;*/
        position: fixed;
        left: 220px;
        font-size: 16px;
        margin-left: 0px;
        bottom: 10px;
        background: white;
        font-weight: 700;
        border-radius: 50%;
        color: #7f0707 !important;
        padding: 0px 7px 0px 7px;
        text-align: center;
        display: table;
    }

.openbtn {
    font-size: 30px;
    cursor: pointer;
    /* background-color: #111; */
    color: white;
    padding: 0px 0px;
    border: none;
    transition: 0.5s;
}
/*   
  .openbtn:hover {
    background-color: #444;
  } */

#main {
    transition: margin-left .5s;
    padding: 30px 0px;
    margin-left: 240px;
}

}

/* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */
@media screen and (max-height: 450px) {
    .sidebar {
        padding-top: 15px;
    }

        .sidebar a {
            font-size: 18px;
        }
}

.dropdown-menu {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
    z-index: 1;
}

    .dropdown-menu li {
        display: block;
    }

        .dropdown-menu li a {
            color: #333;
            padding: 12px 16px;
            text-decoration: none;
            display: block;
        }

            .dropdown-menu li a:hover {
                background-color: #f1f1f1;
            }

    .dropdown-menu.active {
        display: contents;
    }

.dropdown li a {
    font-size: 18px;
}

.btn-comn {
    background: linear-gradient(45deg, #198754, #0d5734);
    border: none;
    border-radius: 4px;
    color: white;
    padding: 6px 14px;
    font-size: 14px;
}

.btn-select-coach {
    font-size: 11px;
    background: linear-gradient(45deg, var(--bs-primary), #5e93e1);
    border: none;
    border-radius: 4px;
    color: white;
    padding: 4px 10px;
}

label {
    margin-bottom: 5px;
}

.form-control {
    background-color: #ffffff !important;
}

.form-heading {
    background: #f15a22;
    border-radius: 4px;
}


.comn-card-bg {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    background: white;
    border-radius: 4px;
}

.nav-link {
    display: block;
    padding: 0rem;
}

.comn-btn-bg {
    background-color: #0d468b;
    border-radius: 6px;
    color: white;
}

.comn-btn-bg-header {
    background-color: #ffffff;
    border-radius: 22px;
    color: #5b0607;
    font-weight: 600;
    text-decoration: none;
    padding: 3px 5px;
    margin-bottom: 6px;
    border: 2px solid white !important;
}

.comn-form-heading-bg {
    background: #e04e18;
    color: white;
    border-radius: 4px 4px 0px 0px;
    font-weight: 500;
}

    .comn-form-heading-bg h4 {
        font-size: 20px;
        margin-bottom: 0;
        padding: 10px;
    }

.btn-seat {
    padding: 0.375rem .75rem;
    font-size: 14px;
    /* border-radius: 2.25rem; */
    border: none;
    color: white;
}

.card-form {
    border-radius: 4px;
}

input [type="date"], input [type="number"] {
    background: #ededed;
    border: none;
    padding-left: 10px;
    height: 35px;
}
/*.form-heading {
    background: #5b0607;
}*/

.dropdown {
    position: relative;
    display: inline-block;
    width: 100%;
}
.dropbtndd,
.dropbtn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 10px;   word-break: break-all;
    word-wrap: break-word;
    font-size: 14px;
    color: #000;
    background-color: #fff;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    .dropbtndd:hover,.dropbtn:hover .dropdown-content {
        color: white;
    }
/*  .dropbtn:hover {
        background-color: #ffffff;
        color: #5b0607;
        border-radius: 20px;
    }*/
/* .dropbtn:focus {
        background-color: #365fa1;
    }*/
.dropdown-contentdd,
.dropdown-content {
    display: none;
    position: relative;
    left: 10px;
    width: 100%;
    z-index: 1;
}
    .dropdown-contentdd a,
    .dropdown-content a {
        color: white;
        padding: 12px 0px 12px 10px;
        margin-bottom: 2px;
        text-decoration: none;
        font-size: 15px;
        display: block;
        transition: background-color 0.3s ease;
    }
    .dropdown-contentdd a:hover,
    .dropdown-content a:hover {
        background-color: #ffffff;
        color: #5b0607;
    }
    .dropdown-contentdd.show,
    .dropdown-content.show {
        display: block;
    }


.show {
    display: block;
}

select {
    word-wrap: normal;
    height: 38px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 14px;
}

input[type=date], input[type=number], input[type=text], input[type=tel] {
    width: 100%;
    background: #ffffff;
    border: none;
    height: 38px;
    padding: 5px;
    border: 1px solid #ced4da;
    color: #333;
    border-radius: 4px;
    font-size:14px;
}

.input-fieldroom {
    width: 50%;
    background: #ffffff;
    border: none;
    height: 35px;
    padding: 5px;
    border: 1px solid #ced4da;
    color: #737977;
}

.Pending-container {
    width: 300px;
    height: 50%;
    border: 2px solid black;
}

.booking-headings {
    display: inline;
    align-items: center;
    background-color: #0d6efd;
}

.coach-header {
    text-align: center;
}

.traveller-container {
    margin-bottom: 20px;
}

.traveller-details {
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 10px;
    background-color: #f9f9f9;
}

    .traveller-details p {
        margin: 5px 0;
    }

        .traveller-details p strong {
            font-weight: bold;
        }

.section-container {
    margin-bottom: 20px;
}

.item {
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 10px;
    background-color: #f9f9f9;
    cursor: pointer; /* Add pointer cursor for clickable items */
}

    .item:hover {
        background-color: #e9e9e9; /* Change background color on hover */
    }

.scrollable-list {
    max-height: 400px; /* Fixed height */
    overflow-y: auto; /* Scroll if content overflows */
    scrollbar-width: thin;
}

.person-name {
    cursor: pointer;
}

    .person-name:hover {
        text-decoration: underline;
    }

.coach-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

.seat {
    width: 40px;
    height: 40px;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    cursor: pointer;
    border: 1px solid black;
}

    .seat.reserved {
        background-color: red;
    }

.fs-4 {
    font-size: 1rem !important;
}

.person-name {
    cursor: pointer;
    display: block;
    font-size: 14px;
    margin: 0px 10px;
}

.form-select {
    width: 100%;
}

.box-container {
    display: inline-block;
    margin: 5px;
    border: 1px solid black;
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
}

    .box-container input[type="checkbox"] {
        display: none;
    }

        .box-container input[type="checkbox"]:checked + label {
            background-color: lightblue;
        }

.traveller-details.selected {
    background-color: lightblue;
}

.box-container input[type="checkbox"]:checked {
    background-color: lightgreen;
}

.traveller-tooltip {
    position: absolute;
    display: none;
    background-color: #ddd;
    border: 1px solid #ccc;
    padding: 5px;
    z-index: 1;
}

.box-container:hover .traveller-tooltip {
    display: block;
    position: inherit; /* Show tooltip on hover */
    display: block;
}

.checkbox-container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.checkbox-item {
    /*margin-right: 10px;*/ /* Adjust margin as needed */
    position: relative;
    display: flex;
    width: 120px;
    height: 30px;
    margin-bottom: 10px;
    margin-top: 10px;
}

    .checkbox-item .tooltiptext {
        visibility: hidden;
        width: 140px;
        background-color: black;
        color: #fff;
        /* text-align: center; */
        border-radius: 6px;
        padding: 5px 6px;
        position: absolute;
        z-index: 1;
        top: 100%;
        left: 50%;
        margin-left: -60px;
        font-size: 14px;
    }

    .checkbox-item:hover .tooltiptext {
        visibility: visible;
    }

/*.checkbox-item:hover .tooltip {
    visibility: visible;
    opacity: 1;
    position:relative;
}*/

[data-checkbox]:checked:after {
    display: none;
}

.traveller-details span {
    display: inline-block;
    margin-right: 10px;
}

.custom-checkbox-men {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #ccc;
    border-radius: 3px;
    position: relative;
    cursor: pointer;
}

    .custom-checkbox-men::before {
        content: '';
        display: block;
        width: 100%;
        height: 100%;
        background-color: white;
        transition: background-color 0.3s;
    }

    .custom-checkbox-men:checked::before {
        background-color: #4caf50;
    }

.custom-checkbox-women {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #ccc;
    border-radius: 3px;
    position: relative;
    cursor: pointer;
}

    .custom-checkbox-women::before {
        content: '';
        display: block;
        width: 100%;
        height: 100%;
        background-color: white;
        transition: background-color 0.3s;
    }

    .custom-checkbox-women:checked::before {
        background-color: hotpink;
    }





/*
        train containers
    */

.button-container {
    display: flex;
    flex-wrap: wrap;
}


.seat-button-male {
    width: 60px;
    height: 30px;
    margin: 0px;
    border: 1px solid #c9d3e7;
    text-align: center;
    vertical-align: middle;
    background-color: blue;
    font-size: 12px;
    color: white;
}

.seat-button-female {
    width: 60px;
    height: 30px;
    margin: 0px;
    border: 1px solid #c9d3e7;
    text-align: center;
    vertical-align: middle;
    background-color: #d33b87;
    font-size: 12px;
    color: white;
}

.seat-button-empty {
    width: 60px;
    height: 30px;
    margin: 0px;
    border: 1px solid #c9d3e7;
    text-align: center;
    vertical-align: middle;
    background-color: white;
    font-size: 12px;
}


.seat-button-booked {
    background-color: #ccc;
    cursor: not-allowed;
}

.seat-button-reserved {
    width: 60px;
    height: 30px;
    margin: 0px;
    border: 1px solid #c9d3e7;
    text-align: center;
    vertical-align: middle;
    background-color: #eb0000;
    font-size: 12px;
    color: white;
}

.traveller-table {
    width: 100%;
    border-collapse: collapse;
}

    .traveller-table th,
    .traveller-table td {
        padding: 10px;
        border: 1px solid #ddd;
        text-align: left;
    }

    .traveller-table thead th {
        background-color: #f2f2f2;
        font-weight: 500;
        font-size:14px;
    }

.selected-row {
    background-color: lightblue;
}

.canceled-row {
    background-color: palevioletred;
}

.replaced-row {
    background-color: goldenrod;
}

.traveller-table td {
    cursor: pointer;
    font-size: 14px;
}

.login-bg {
    background-image: url('../vaishno-devi-cover-photo-enhanced.jpg');
    width: 100%;
    height: 100vh;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
    background-position: 0px -40px;
}

    .login-bg::before {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        background: #1515154f;
    }

.login-frm {
    /* position: absolute !important;
    top: 25%;
    left: 10%;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 5px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(0.5px);
    -webkit-backdrop-filter: blur(6.5px);
    border: 1px solid rgba(255, 255, 255, 0.43);*/
    position: absolute !important;
    top: 0%;
    left: 0%;
    background: rgb(161 161 163 / 26%);
    border-radius: 0px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(0.5px);
    -webkit-backdrop-filter: blur(6.5px);
    height: 100vh;
    border: 1px solid rgba(255, 255, 255, 0.43);
}

.login-input {
    border: none;
    outline: none;
    /* border-bottom: 2px solid #5b0607;*/
    background: white;
    border-radius: 10px;
    box-shadow: none;
    width: 100% !important;
}

.login-frm p {
    color: #fcbc03;
    font-weight: 700;
    font-size: 17px;
    word-break: break-all;
    width: 79%;
    text-align: center;
    left: 60px;
    position: relative;
}

.login-frm h6 {
    color: /*#ff8416*/;
    color: #fcbc03;
    font-weight: 700;
    font-size: 3rem;
}


/*active navlink*/

.nav-link.active {
    background-color: #e5e5e5;
    color: black !important;
    font-weight: 600;
    border-radius: 30px 0px 0px 30px;
    transition: all 0.3s;
}

.head-dropdown {
    position: relative;
    background: #5b0607;
    top: 35%;
    border-radius: 10px;
    line-height: 2;
    padding: 7px 15px;
}

.card-rule-txt {
    font-size: 16px;
}

.color-box-red {
    background-color: red;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    margin-right: 10px;
    margin-top: 2px;
}

.color-box-pink {
    background-color: #d33b87;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    margin-right: 10px;
    margin-top: 2px;
}

.color-box-blue {
    background-color: blue;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    margin-right: 10px;
    margin-top: 2px;
}

.color-box-pink {
    background-color: #d33b87;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    margin-right: 10px;
    margin-top: 2px;
}

.color-box-lightgreen {
    background-color: #318331;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    margin-right: 10px;
    margin-top: 2px;
}

.reserve-seat {
    font-size: 14px;
}
/*tr:nth-child(even) {
    background-color: #f2f2f2;
}*/
.home-block-heading {
    background: #f47e34;
    padding: 3px 4px;
    border-radius: 40px 0px 0px 0px;
}

.bx {
    color: white;
}

.add-train-icon {
    line-height: 2 !important;
    font-size: 20px;
}

.card-rule-txt {
    background: #e5e5e5;
    height: 315px;
}

.frm-inputboxd {
    border: 1px solid #ced4da;
    height: 35px;
}
/*header dropdown */

.dropbtn1 {
    background-color: #04aa6d00;
    color: white;
    padding: 6px;
    font-size: 16px;
    border: none;
}

.dropdown1 {
    position: relative;
    display: inline-block;
}

.dropdown-content1 {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 250px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    right: 0;
    top: 48px;
}


    .dropdown-content1 a {
        color: black;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
    }

        .dropdown-content1 a:hover {
            background-color: #ddd;
        }

.dropdown1:hover .dropdown-content1 {
    display: block;
}


/*room container*/


.add-room-container {
    display: flex;
    flex-direction: row;
    margin-bottom: 10px;
}

/*.form-group {
    margin-right: 10px;
}*/

.room-container .row {
    display: flex;
    flex-wrap: wrap;
}

    .room-container .row .form-group {
        margin-right: 10px;
        margin-bottom: 10px;
    }


.room-inputs {
    display: flex;
    flex-wrap: wrap;
    margin-top: 10px;
}


.room-inputs {
    display: flex;
    flex-wrap: wrap;
    margin-top: 10px;
}

.room-input-wrapper {
    display: flex;
    align-items: center;
    /* margin-right: 10px;*/
    margin-bottom: 10px;
}

.remove-room-btn {
    background-color: #5b0607;
    color: white;
    border: none;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    margin-left: 6px;
    margin-right:6px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
    padding: 0;
}

.remove-form-btn {
    background-color: #5b0607;
    color: white;
    border: none;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    margin-left: 6px;
    margin-right: 6px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
    padding: 0;
    position: absolute;
    top: 10px;
    right: 10px;
}




/*coach dropdown*/

.dropdown-wrapper {
    position: relative;
}

.dropdown-icon {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    pointer-events: none;
}

.form-control {
    padding-right: 30px;
}




/*Custom popUp*/


.custom-popup {
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black overlay */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Popup content */
 
.popup-content {
    position: absolute;
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.2);
    max-width: 400px;
    width: 100%;
    left: 40%;
    top: 30%;
    text-align: center;
    animation: fadeIn 0.3s ease-in-out;
}

/* Close button */
.close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    color: #aaa;
    cursor: pointer;
    transition: color 0.3s ease;
}

    .close:hover {
        color: #333;
    }

/* Popup message */
.popup-message {
    font-size: 18px;
    margin-top: 20px;
    line-height: 1.5;
}

/* Keyframes for fade-in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/*FormsPage Checkboxes*/
.formpage-checkbox-div {
    display: inline-flex;
    column-gap: 15px;
}

.formpage-checkbox {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 15px;
    height: 15px;
    border: 2px solid #5b0607;
    border-radius: 50%;
    outline: none;
    cursor: pointer;
    margin-top: 10px;
}

    .formpage-checkbox:checked {
        background-color: #5b0607;
    }



.formpage-label {
    position: relative;
    top: -2px;
    font-size:14px;
}

/* Flexbox container */
.d-flex {
    display: flex;
    align-items: center;
}

/* Adjust margin for the label to align vertically with the input field */
.form-group-formpage label {
    margin-right: 20px;
}

/* Flex properties for ratio 100:60 */
.flex-grow-100 {
    flex: 100;
}

.flex-grow-60 {
    flex: 60;
}

/* Ensure the input field takes the full width of its container */
.form-group-formpage input {
    width: 100%;
}

.textarea-yatra-initiate {
    width: 100%;
    height: 100%;
    padding: 10px
}

.custom-dropdown {
    width: 100%;
}

/*hotel booking tooltip*/

.room-item {
    position: relative;
    display: inline-block;
    width: 100%;
}

.tooltiptext2 {
    visibility: hidden;
    width: 200px;
    background-color: #555;
    color: #fff;
    text-align: left;
    border-radius: 6px;
    padding: 5px;
    position: absolute;
    z-index: 11;
    bottom: 125%;
    left: 50%;
    margin-left: -100px;
    opacity: 0;
    transition: opacity 0.3s;
}

.room-item:hover .tooltiptext2 {
    visibility: visible;
    opacity: 1;
}

.assigned-room {
    background-color: green;
    color: white;
}

#dd-icon {
    margin-left: -3px;
    padding-right: 2px;
}

.search-bar input[type=text] {
    padding: 5px;
    font-size: 15px;
    border: 1px solid #cfbebe !important;
    width: 100%;
    background: #f1f1f1;
    border-radius: 0px !important;
}

.search-bar button {
    width: 75%;
    padding: 4px;
    background: #910910;
    color: white;
    border-radius: 0;
    font-size: 17px;
    border: 1px solid #80808000;
}

    .search-bar button:hover {
        background: #0b7dda;
    }

.search-bar ::after {
    content: "";
    clear: both;
    display: table;
}

.btn-outline-primary:hover {
    color: #fff;
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.btn:focus {
    outline: 0;
    box-shadow: none !important;
}

.login-card-heading {
    padding-top: 6rem;
}

    .login-card-heading img {
        width: 140px;
        border-radius: 50%;
        border: 1px solid white;
        height: 140px;
    }

@media (min-width:1601px) {
    .login-card-heading {
        padding-top: 10rem;
    }
}

.logo-nav {
    /*width: 70px;*/
    height: 70px;
    margin-top: 5PX;
    margin-left: 40px;
    /*border: 2px solid white;*/
    /*border-radius: 50%;*/
}
.logo-nav img{
    width:100%;
    height:100%;
}

.loader-bg {
    display: flex;
    justify-content: center;
}

.loader-img {
    position: absolute;
    top: 25%;
    align-items: center;
}

.required-caption:after {
    content: '*';
    color: red;
}

/*YATRA PARCHI*/






/*Bootstrap toast service css*/

.fade:not(.show) {
    visibility: collapse;
}

.fade {
    transition: visibility .15s linear, opacity .15s linear;
}

.information {
    background-color: #04AA6D;
    color: #ffffff;
}

.warning {
    background-color: #fcefa4;
}

.error {
    background-color: #910910bd;
    color: white;
}

/*registration form */
input[type=file] {
    border: 1px solid #ced4da;
    width: 100%;
    padding: .25rem .75rem;
    border-radius: 5px;
}

fieldset {
    min-width: 0;
    padding: 15px;
    margin-top: 25px;
    margin-bottom: 10px;
    border: 1px solid #5b0607;
    width: 100%;
}

legend {
    font-size: 1.5rem;
    padding-left: 20px;
    margin-top: -35px;
}

fieldset strong {
    font-weight: bolder;
    background: #ffffff;
    font-size: 20px;
    padding: 2px 4px;
}

fieldset input[type=number], fieldset input[type=text], fieldset input[type=tel] {
    width: 100%;
    border: none;
    height: 35px;
    padding: 5px;
    border: 1px solid #ced4da;
    color: #737977;
}

fieldset label {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: #5b0607;
}

.train-coach-bg {
    background: #e3e3e3;
    padding: 10px 0px 0px 10px;
    margin-top: 20px;
}

.yatri-form p {
    text-align: justify;
}

.mob-view-field {
    display: none;
}

@media print {
    yatra-main-card {
        margin: 2mm 2mm 2mm 2mm !important;
    }
}

/*registration form media(responsive) css */

@media (max-width:575px) and (min-width:320px) {
    .sevadar-title {
        font-size: 12px;
    }

    .yatri-form .form-group {
        margin-top: 0.5rem !important;
    }

    input[type=file],
    .form-control {
        font-size: 12px;
    }

    .btn-comn {
        padding: 5px 13px;
        font-size: 12px;
    }

    fieldset strong {
        font-size: 16px;
    }

    .form-group .registration-frm-address {
        display: block !important;
    }

        .form-group .registration-frm-address input {
            margin-left: 0px !important;
        }

    .yatri-form p {
        font-size: 12px;
        text-align: justify;
    }

    label {
        font-size: 14px;
    }

    fieldset label {
        font-size: 12px;
    }

    .desk-view-field {
        display: none;
    }

    .mob-view-field {
        display: block;
    }
}

.user-detail-sevadar {
    background: #e5e5e5;
    padding: 8px 10px;
}

.seatbooking-checkbox {
    height: 18px;
    width: 18px !important;
    margin-left: 10px;
}

.change-btn {
    font-size: 14px;
    padding: 3px 2px;
    border: none;
    color: #0095ff;
    border-radius: 5px;
    background: white;
}

.show-hotl {
    width: 100%;
    margin-bottom: 20px;
    border-radius: 5px;
}

.yartiimg {
    height: 50px;
    width: 50px;
    display: block;
    margin: 0px auto;
}

.yartireprtimg {
    height: 120px;
    width: 120px;
    display: block;
    margin: 0px auto;
}
.yatri-name {
    font-size: 12px;
    text-decoration: none;
    color: #333;
    text-align: CENTER;
    width: 100%;
    display: inline-block;
}

/*List check*/
.pending-check {
    border-radius: 20px;
    text-align: CENTER;
    border: solid thin #dd6d35;
    width: fit-content;
    height: fit-content;
}

    .pending-check .formpage-checkbox:checked {
        background-color: #dd6d35;
    }

    .pending-check .formpage-checkbox {
        border: 2px solid #dd6d35;
    }

        .pending-check .formpage-checkbox label {
            color: #8f4300;
        }

.submit-check {
    border-radius: 20px;
    text-align: CENTER;
    border: solid thin #198754;
    width: fit-content;
    height: fit-content;

}

    .submit-check .formpage-checkbox:checked {
        background-color: #198754;
    }

    .submit-check .formpage-checkbox {
        border: 2px solid #198754;
    }

        .submit-check .formpage-checkbox label {
            color: #198754;
        }

.verified-check {
    border-radius: 20px;
    text-align: CENTER;
    border: solid thin #266ac1;
    width: fit-content;
    height: fit-content;
}

    .verified-check .formpage-checkbox:checked {
        background-color: #266ac1;
    }

    .verified-check .formpage-checkbox {
        border: 2px solid #266ac1;
    }

        .verified-check .formpage-checkbox label {
            color: #266ac1;
        }


.payment-check {
    border-radius: 20px;
    text-align: CENTER;
    border: solid thin #ffc107;
    width: fit-content;
    height: fit-content;
}

    .payment-check .formpage-checkbox:checked {
        background-color: #ffc107;
    }

    .payment-check .formpage-checkbox {
        border: 2px solid #ffc107;
    }

        .payment-check .formpage-checkbox label {
            color: #ffc107;
        }

.extra-check {
    border-radius: 20px;
    text-align: CENTER;
    border: solid thin #cd9d0d;
    width: fit-content;
    height: fit-content;
}

    .extra-check .formpage-checkbox:checked {
        background-color: #cd9d0d;
    }

    .extra-check .formpage-checkbox {
        border: 2px solid #cd9d0d;
    }

        .extra-check .formpage-checkbox label {
            color: #cd9d0d;
        }

.trainallot-check {
    border-radius: 20px;
    text-align: CENTER;
    border: solid thin #5b0607;
    width: fit-content;
    height: fit-content;
}

    .trainallot-check .formpage-checkbox:checked {
        background-color: #5b0607;
    }

    .trainallot-check .formpage-checkbox {
        border: 2px solid #5b0607;
    }

        .trainallot-check .formpage-checkbox label {
            color: #5b0607;
        }

.hotelallot-check {
    border-radius: 20px;
    text-align: CENTER;
    border: solid thin #6610f2;
    width: fit-content;
    height: fit-content;
}

    .hotelallot-check .formpage-checkbox:checked {
        background-color: #6610f2;
    }

    .hotelallot-check .formpage-checkbox {
        border: 2px solid #6610f2;
    }

        .hotelallot-check .formpage-checkbox label {
            color: #6610f2;
        }

.showall-check {
    border-radius: 20px;
    text-align: CENTER;
    border: solid thin #000000;
    width: fit-content;
    height: fit-content;
}

    .showall-check .formpage-checkbox:checked {
        background-color: #000000;
    }

    .showall-check .formpage-checkbox {
        border: 2px solid #000000;
    }

        .showall-check .formpage-checkbox label {
            color: #000000;
        }



.expired-check {
    border-radius: 20px;
    text-align: CENTER;
    border: solid thin #dc3545;
    width: fit-content;
    height: fit-content;
}

    .expired-check .formpage-checkbox:checked {
        background-color: #dc3545;
    }

    .expired-check .formpage-checkbox {
        border: 2px solid #dc3545;
    }

        .expired-check .formpage-checkbox label {
            color: #dc3545;
        }



.cancelled-check {
    border-radius: 20px;
    text-align: CENTER;
    border: solid thin #ff6776;
    width: fit-content;
    height: fit-content;
}

    .cancelled-check .formpage-checkbox:checked {
        background-color: #ff6776;
    }

    .cancelled-check .formpage-checkbox {
        border: 2px solid #ff6776;
    }

        .cancelled-check .formpage-checkbox label {
            color: #ff6776;
        }

.formpage-checkbox-div .form-group {
    margin-top:10px;
}

.status_box {
    font-size: 12px;
    background: #ccc;
    border-radius: 10px;
    text-align: center;
    width: auto;
    padding: 4px;
    color: #fff;
}

    .status_box.pending {
        background: #dd6d35;
    }

    .status_box.complete {
        background: #183918;
    }

    .status_box.payment {
        background: #ffc107;
    }

    .status_box.verified {
        background: #266ac1;
    }

    .status_box.extraform {
        background: #cd9d0d;
    }

    .status_box.trainallot {
        background: #5b0607;
    }

    .status_box.hotelallot {
        background: #6610f2;
    }

    .status_box.cancel {
        background: #dc143c;
    }

    .status_box.expired {
        background: #ff6776;
    }

.btn-child {
    background: linear-gradient(45deg, var(--bs-orange), #a5530e);
}

.btn-member {
    background: linear-gradient(45deg, var(--bs-red), #6f0e17);
}

.available-seat-color {
    background: #318331;
}

.sevadarheading h4 {
    background: #e04e18;
    margin-bottom: 0;
    font-size: 20px;
    padding: 10px;
    color: #fff;
    border-radius: 5px 5px 0px 0px !important;
}

.btn-td-userdetail {
    font-size: 12px;
}

.seatassign-bg {
    background: linear-gradient(45deg, #73161f, var(--bs-red));
}

.roomnum-bg {
    background: linear-gradient(45deg, var(--bs-primary), #033f99);
}
.table-f-14 thead tr th, .table-f-14 tbody tr td{
    font-size:12px;
}


.waiting-indicator {
    float: right;
    position: fixed;
    right: 30px;
    bottom: 40px;
    padding: 10px 80px
}
#dd2-icon {
    margin-left: -93px;
    padding-right: 5px;
}
.dashbrd-block span {
    font-size:16px;
}
@media (max-width:1300px) and (min-width:992px){
    .dashbrd-block span {
        font-size: 14px;
    }
    .dashbrd-block h5{
        font-size:16px;
    }

}
.red-color {
    color: #9a1539;
     font-weight:600;
}
.yatra-detailsfroms .table-bordered > :not(caption) > * {
    border-width: 1px 0;
    border: 1px solid #9a1539;
}
.yatra-detailsfroms {
    color: #9a1539;
}
    .yatra-detailsfroms table {
        color: #9a1539;
        text-align:center;
    }

.col-flex {
    display: flex;
    flex-direction: column;
    background: #f2fff2;
    border: 1px solid #000000;
    margin-right: 15px;
    width: 24%;
    border-radius:7px;
}
@media print {
    .page-break {
        page-break-before: always;
    }
    .button-group {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px; /* Space between view and upload button */
    }

    .icon-container {
        display: inline-block;
        text-align: center;
    }

        .icon-container i {
            font-size: 24px; /* Icon size */
            display: block;
        }

        .icon-container span {
            font-size: 12px; /* Text size */
        }


}

.fa {
    color: #2e3092;
}
#dd-title {
    font-weight:500;
}
.home-card {
    border-radius: 70px 0px 40px 0px;
}
.table > :not(caption) > * > * {
    vertical-align: baseline;
}
.printfooter{
    font-size:20px;
    display:flex;
    justify-content:end;
    margin-bottom:10px;
}


.otp-verification-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 400px;
    margin: 0 auto;
    padding: 2rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.otp-header {
    text-align: center;
    margin-bottom: 2rem;
}

.otp-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 1rem 0;
    line-height: 1.3;
}

.otp-description {
    font-size: 0.95rem;
    color: #666666;
    margin: 0;
    line-height: 1.5;
}

.otp-input-section {
    margin-bottom: 2rem;
    width: 100%;
}

.otp-input-group {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 1rem;
}

.otp-input {
    width: 3.5rem;
    height: 3.5rem;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    border: 2px solid #e8e8e8;
    border-radius: 8px;
    background-color: #f8f9fa;
    color: #1a1a1a;
    transition: all 0.2s ease-in-out;
    outline: none;
}

    .otp-input:hover {
        border-color: #d0d0d0;
        background-color: #ffffff;
    }

    .otp-input:focus,
    .otp-input.focused {
        border-color: #e04e18;
        background-color: #ffffff;
        box-shadow: 0 0 0 3px rgba(224, 78, 24, 0.1);
    }

    .otp-input:not(:placeholder-shown) {
        border-color: #e04e18;
        background-color: #ffffff;
    }

    .otp-input.error {
        border-color: #dc3545;
        background-color: #fff5f5;
    }

        .otp-input.error:focus {
            box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
        }

.error-message {
    text-align: center;
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    font-weight: 500;
}

.action-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.verify-btn {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    text-transform: none;
}

    .verify-btn.enabled {
        background-color: #e04e18;
        color: white;
    }

        .verify-btn.enabled:hover {
            background-color: #c43e14;
            transform: translateY(-1px);
            box-shadow: 0 6px 20px rgba(224, 78, 24, 0.3);
        }

        .verify-btn.enabled:active {
            transform: translateY(0);
        }

    .verify-btn.disabled {
        background-color: #e8e8e8;
        color: #999999;
        cursor: not-allowed;
    }

.resend-section {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.resend-text {
    color: #666666;
}

.resend-link {
    color: #e04e18;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}

    .resend-link:hover {
        color: #c43e14;
        text-decoration: underline;
    }

/* Mobile responsive */
@media (max-width: 640px) {
    .otp-verification-container {
        padding: 1.5rem;
        margin: 1rem;
    }

    .otp-title {
        font-size: 1.5rem;
    }

    .otp-input {
        width: 3rem;
        height: 3rem;
        font-size: 1.25rem;
    }

    .otp-input-group {
        gap: 0.5rem;
    }

    .otp-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .otp-input {
        width: 2.75rem;
        height: 2.75rem;
        font-size: 1.125rem;
    }

    .otp-input-group {
        gap: 0.375rem;
    }
}
main {
    scrollbar-width: none;
    overflow: auto !important;
    height: auto !important;
}
.overflow-x {
    overflow-x:auto;
    width:100%;
}
@media (max-width:767px) and (min-width:320px){
    .pageinationfrm {
        display: flex;
        float: inline-end;
        justify-content: end;
    }
    .comn-form-heading-bg h4 {
        font-size: 16px;
    }
    .yatri-form .form-group {
        margin-top:10px;
    }
}
.logo-card {
    background: white;
    position: fixed;
    top: 0;
    z-index: 1111;
    width: 260px;
    height: 95px;
}
#main .fs-4 {
    font-size: 1.2rem !important;
}
.h-90 {
    height:90px;
}
.paymentreportcard{
    margin-top:13px;
}
.cancelseatinput {
    margin-top:-3px;
}
.sample-photo-card img{
    height: 300px;
    width:100%;
    object-fit:contain;
}

.sample-photo-card {
    background: #cfcaca24;
    border-radius: 6px;
}

.center-message {
    color: red;
    font-size: 2rem; /* Large font */
    font-weight: bold;
    text-align: center;
}