.craft-type {
    display: flex;
    justify-content: space-between;
    white-space: nowrap;
    overflow: auto;
}

.craft-type {
    margin-bottom: 20px;
    position: relative;
}
.craft-type label {
    display: block;
    cursor: pointer;
    margin: 5px;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.craft-seat {
    margin-top: 20px;
}
.seat-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
    width: 340px;
    margin: auto;
    background: #f2f2f2;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}
.custom-accordion {
    background: #f6f6f6;
    padding-left: 15px;
    padding-right: 15px;
}
.custom-accordionbody{
    padding-left: 20px;
    padding-right: 20px;
    border: 1px solid #f6f6f6;
}
.plainhead {
    width: 338px;
    height: 209px;
    background: url(../images/flighthead.svg);   
    position: relative;
    margin: auto;
    background-size: contain;
    background-repeat: no-repeat;
}

.plaintail {    
    width: 600px;
    height: 420px;
    background: url(../images/flighttail.svg);
    position: relative;
    margin: auto;
    background-repeat: no-repeat;
    background-size: contain;
}
.window {
    width: 20px;
    height: 30px;
    background: #444;
    position: absolute;
    top: 40px;
}

/* .ssr-seat {
    outline: 2px solid green;
    background-color: #e0ffe0;
} */


.seat-checkbox.ssr-seat {
    outline: 2px solid green;
}
.seat-checkbox.booked + label {
    color: #aaa;
    text-decoration: line-through;
}

.window.left {
    left: 50px;
    transform: rotate(-20deg);
}

.window.right {
    right: 50px;
    transform: rotate(20deg);
}

.window.center {
    left: 90px;
}



.planemain {
    position: relative;
    width: fit-content;
    margin: auto;
    height: 600px;
    overflow-y: auto;
}
.seat-row {
    display: flex;
    align-items: center;
    margin: 2px 0;
}
.row-number {
    font-weight: bold;
    width: 25px;
    text-align: right;
    margin-right: 10px;
}
.row-number-right {
    font-weight: bold;
    width: 25px;
    text-align: left;
    margin-left: 10px;
}
.seat-checkbox {
    display: none;
}
.seat-checkbox + label {
    display: inline-block;
    width: 27px;
    height: 27px;
    line-height: 27px;
    text-align: center;
    margin: 2px;
    background-color: #f3e7e0;
    border: 1px solid #f3e7e0;
    border-radius: 2px;
    cursor: pointer;
    font-size: 10px;
}
.seat-checkbox:checked + label {
    background-color: green;
    color: white;
}
.seat-checkbox.booked + label {
    background-color: #52514d;
    pointer-events: none;
    color: #fff;
}
.seat-checkbox.xl + label {
    background-color: purple;
    color: white;
    font-weight: bold;
}
.seat-checkbox + label.not-available{
    background-color: #ddd;
    cursor:no-drop;
}
.aisle {
    width: 20px;
}

button.flight-details {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.flight-details ul {
    display: flex;
    margin-bottom: 0;
}

.seatbooking .flight-details p{
    font-size: 16px;    
    font-weight: 600;
}

.flight-details ul li {
    list-style-type: none;
    margin-right: 11px;
    font-size: 14px;
}