/* Your app custom styles here */
#loading {
    background: url('/assets/img/icons/loader.gif') no-repeat center center;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 9999999;
  }
  
  #loading_trans {
    background: url('assets/img/icons/loader_2.gif') no-repeat center center;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 9999999;
  }

  .plane {
    margin: 20px auto;
    max-width: 300px;
    }
    
    .exit {
    position: relative;
    height: 50px;
    }
    .exit:before, .exit:after {
    content: "EXIT";
    font-size: 14px;
    line-height: 18px;
    padding: 0px 2px;
    font-family: "Arial Narrow", Arial, sans-serif;
    display: block;
    position: absolute;
    background: green;
    color: white;
    top: 50%;
    transform: translate(0, -50%);
    }
    .exit:before {
    left: 0;
    }
    .exit:after {
    right: 0;
    }
    
    .fuselage {
    border-right: 5px solid #d8d8d8;
    border-left: 5px solid #d8d8d8;
    }
    
    ol {
    list-style: none;
    padding: 0;
    margin: 0;
    }

   .block-title-large {
    font-size: 20px;
   } 

   .selected {
    box-shadow: 1px 1px 2px 2px rgb(0,100,0);
    background-color: #32CD32;
}

.de-selected {
    box-shadow: 1px 1px 2px 2px rgb(128,128,128);
    /* background-color: #FF0000; */
    pointer-events:none;
    /* opacity:0.5; */
}

.driver-seat {
    box-shadow: 1px 1px 2px 2px rgb(128,128,128);
    pointer-events:none;
}



.seat-arr{
  /* margin-left: 40px; */
  }

  .trip_item{
  /* margin:3%; */
  color:#000!important
  }

  .heading1{
      margin:5%;
  font-size: 25px;
  }

  .heading2{
      margin:5%;
  margin-top:15%;
  font-size: 20px;
  }

  .payment{
  background-color: #f0edeb;
  padding:3px;
  margin-top: 15%;
  }

  .text1{
  /* color:black;
  font-weight: 700; */
  float: right;
  }
  

  .card-footer{
  background-color: black;
  color:white;
  }

  .purchaseLink{
  text-decoration: none;
  }

  .row1{
  font-size:12px;
  }

  .row2{
  font-weight: 600;
  }

  .subRow{
  margin-left:10%;
  margin-bottom: 2%;
  margin-top:5%;
  }

  p.cardAndExpireValue,p.nameAndcvcValue{
  margin:5%;
  margin-bottom: 10%;
  font-weight: 600;}

  p.nameAndcvc,p.cardAndExpire{
  margin-bottom: -10px;
  }

  .total{
  margin:3%;
  }

  .totalText{
  font-weight: 700;

  }
  .totalText2{
  font-weight: 700;
  font-size:30px;
  }

  .card-img-top {
      width: 100%;
      border-top-left-radius: calc(.25rem - 1px);
      border-top-right-radius: calc(.25rem - 1px);
      height: 430px;
  }

  .button-90{
    width: 90%; 
    margin-left: 5%;
    margin-top: 5%;
  }

  .theme-color{
    color: #cb3534;
  }

  .theme-dark{
    color: #000;
  }

  .card-white{
    background-color: #fff;
  }


  #codeBox1, #codeBox2, #codeBox3, #codeBox4, #codeBox5, #codeBox6{
    height: 1.5em;
    width: 1.5em;
    border: 2px solid #dad9df;
    outline: none;
    text-align: center;
    font-size: 1.5em;
    border-radius: 0.3em;
    background-color: #ffffff;
    outline: none;
    /*Hide number field arrows*/
    -moz-appearance: textfield;
  }

@import url("https://fonts.googleapis.com/css2?family=Roboto&display=swap");
* {
  box-sizing: border-box;
}
/* body {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  background-color: #f7f8fc;
  font-family: "Roboto", sans-serif;
  color: #10182f;
} */
.container {
  display: flex;
  width: 1040px;
  justify-content: space-evenly;
  flex-wrap: wrap;
}
.card {
  margin: 10px;
  /* background-color: #fff; */
  border-radius: 10px;
  overflow: hidden;
  /* width: 300px; */
}
.card-shadow {
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}
.card-header img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.card-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 20px;
  min-height: 250px;
}

.tag {
  background: #cccccc;
  border-radius: 50px;
  font-size: 12px;
  margin: 0;
  color: #fff;
  padding: 2px 10px;
  text-transform: uppercase;
  cursor: pointer;
}
.tag-teal {
  background-color: #47bcd4;
}
.tag-purple {
  background-color: #5e76bf;
}
.tag-pink {
  background-color: #cd5b9f;
}

.card-body p {
  font-size: 13px;
  margin: 0 0 40px;
}
.user {
  display: flex;
  margin-top: auto;
}

.user img {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  margin-right: 10px;
}
.user-info h5 {
  margin: 0;
}
.user-info small {
  color: #545d7a;
}

