.trip-login{
    display:flex;
    align-items: center;
    background-color: ghostwhite;
    border-radius: 10px;
    padding:20px;
    gap:40px
}
#trips-third-step, #trips-second-step {
    width:80%;
    margin-left:auto;
    margin-right:auto;
}
#trip-login .trips-btn, #trip-booking .trips-btn{
    background-color: var(--e-global-color-primary);
    border-color: var(--e-global-color-primary);
    color: white;
}
#trip-login .trips-btn a{
    color: white;
}
#trip-login .trips-btn:hover, #trip-booking .trips-btn:hover{
    background-color: transparent;
    color:var(--e-global-color-primary);
}
#trip-login .trips-btn a:hover{
    color:var(--e-global-color-primary);
    
}
a.button.button-primary.trips-btn{
     background-color: transparent;
    color:var(--e-global-color-primary);
}
a.button.button-primary.trips-btn:hover{
        background-color: var(--e-global-color-primary);
    border-color: var(--e-global-color-primary);
    color: white; 
    padding:10px;
}


#trip-booking{
    display:flex;
    align-items: center;
    background-color: ghostwhite;
    border-radius: 10px;
    padding:20px;
}
#trip-booking .error-wrapper{
    color:red;
}
#trip-booking .form-input{   
    height: 45px;
    border-radius: 5px !important;
    text-align: center;
    background: #fff;
    border: 1px solid #e4e8eb;
}
#trips-first-step , .trips-waiting-list , .form-wrapper {
    width:100%;
}
#trip-booking .form-elements {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 20px;
}
@media(max-width:768px){
	#trip-booking .form-elements {
		flex-direction:column;
	}
}
#trip-booking #trips-second-step .form-elements {
	display:block;
}
#tickets-count{
    width:35%
}
#trip-booking .ticket-slot , #trip-booking .room-selectors{
    margin-bottom:20px;
}
#trip-booking .ticket-slots{
    display:grid;
    grid-template-columns: 32% 32% 32%;
    gap:30px;
}
#trip-booking .bus-seats-members{
    width:100%;
}
#trip-booking .bus-seats-wrapper{
    display:grid;
    grid-template-columns: auto auto 30px auto auto;
    /* gap:15px; */
    margin:30px 0;
    justify-content: center;
	direction: ltr;
}

.seats-last-row{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    grid-column: 1 / span 5;
}
.bus-corridor{
    grid-row: 1 / span 12;
    grid-column: 3;
	background-color: unset!important; 
}


.bus-seat{
    border: 1px solid black;
    text-align: center;
    padding:15px;
	background-color: #b8f8b8; 
}
.bus-seat:has(input:disabled) {
    background-color: #f8b8b8!important; 
}
#bus-seat-toilet{
    grid-column: 4 / span 2;
    grid-row: 6 / span 2;
	background-color: unset!important; 
}
.room-wrapper > label{
	font-size:24px;
	margin:15px 5px;
	padding:20px;
	border: 1px solid black;
	background:white;
	box-shadow: 0px 1px 8px 1px #d0d0d0;
	border-radius:20px;
}
.room-quantity label{
	font-size:20px
}
.listed-room {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.room-gallery {
    display: flex;
	gap:5px;
}
.trips-h2{
	color: var(--e-global-color-primary);
    font-family: "Cairo", Sans-serif;
    font-size: 45px;
    font-weight: 700;
    line-height: 60px;
}
@media(min-width:768px){
    #trip-booking .ticket-slot:not(:last-child){
        border-left:1px solid #8080804f;
        padding-left:30px;
    }
}
@media(max-width:768px){
    .trip-login{
        flex-direction: column;
    }
    .trip-login-message{
        text-align: center;
    }
    #trip-booking .ticket-slots{
        grid-template-columns: max-content;
    }
}
#trip-booking .form-loader {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    z-index: 9;
  }

