@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@300;400&display=swap');

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    /* font-family: "Open Sans", sans-serif; */
    /* background: #e2e2e2; */
    font-family: 'Roboto Mono', monospace;
    --bg-opacity: 1;
    background-color: #1a202c;
    background-color: rgba(25, 33, 46, var(--bg-opacity));
}

svg {
    position: absolute;
    top: -120px;
    left: -271px;
}

.container_form {
    /* width: 600px; */
    position: relative;
    display: block;
    /*top: 100px;*/
    margin-bottom: 80px;
    /* left: 35%; */
    height: auto;
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
    z-index: 1;
}

h2 {
    padding: 40px;
    font-weight: lighter;
    text-transform: uppercase;
    color: #414141;
}

input, textarea {
    display: block;
    width: 90%;
    margin: 0 auto;
    border: none;
    resize: vertical;
    margin-top: 5px;
}

textarea {
    padding-top: 12px;
}

/*textarea ::placeholder {
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
textarea:hover, textarea:focus, textarea:active:focus {
  color: #ff5722;
  outline: none;
  border-bottom: 1px solid #ff5722;
}
textarea:hover::placeholder, textarea:focus::placeholder, textarea:active:focus::placeholder {
  color: #ff5722;
  position: relative;
  -webkit-transform: translateY(-20px);
  transform: translateY(-20px);
}*/
input {
    height: 50px;
}

input, input::placeholder {
    font-size: 12px;
}

input::placeholder {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

input:hover, input:focus, input:active:focus {
    color: #ff5722;
    outline: none;
    border-bottom: 1px solid #ff5722;
}

/* input:hover::placeholder, input:focus::placeholder, input:active:focus::placeholder {
  color: #ff5722;
  position: relative;
  -webkit-transform: translateY(-20px);
  transform: translateY(-20px);
} */
.ifield {
    position: relative;
    z-index: 1;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-left: 20px;
    /* font-family: "Open Sans", sans-serif; */
    font-family: 'Roboto Mono', monospace;
    font-weight: 400;
    text-transform: uppercase;
    color: #858585;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.link {
    text-decoration: none;
    display: inline-block;
    margin: 27px 28%;
    text-transform: uppercase;
    color: #858585;
    font-weight: lighter;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

button {
    cursor: pointer;
    display: inline-block;
    float: left;
    width: 100%;
    height: 60px;
    margin-top: -10px;
    border: none;
    font-family: "Open Sans", sans-serif;
    text-transform: uppercase;
    color: #fff;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

button:nth-of-type(1) {
    background: #3498db;
}

button:nth-of-type(2) {
    background: #03a9f4;
}

button span {
    position: relative;
    display: block;
    margin: 0;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

button:hover span {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
}

/*#routeai:checked{
    background-color: yellowgreen;
    border-color: yellowgreen;
}*/
#rankoptions {
    display: none;
  }
#routeai{
    display: none;
}
  
.switch {
position: relative;
width: fit-content;
padding: 1px 15px;
background-color: rgb(46, 46, 46);
border-radius: 50px;
z-index: 1;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
gap: 10px;
color: white;
font-size: 0.7em;
font-weight: 600;
transition: all 0.3s;
}
.switch svg path {
fill: white;
}
#routeai:checked  + .switch {
    background-color: rgb(0, 102, 255);
    box-shadow: 0px 0px 40px rgba(0, 140, 255, 0.438);
}
#rankoptions:checked  + .switch {

    background-color: #11a343;
    box-shadow: 0px 0px 40px hsla(141, 81%, 35%, 0.541);
}

.TicketForm {
    margin-bottom: -40px;
}

.reg {
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transform: translateY(-100%) scale(1);
    transform: translateY(-100%) scale(1);
    display: block;
    width: 20px;
    height: 20px;
    border-radius: 50px;
    background: #673ab7;
    z-index: 5;
    -webkit-transition: 0.8s ease-in-out;
    transition: 0.8s ease-in-out;
}
#Format_PNR {
    background-image: linear-gradient(163deg, #00ff75 0%, #3700ff 100%);
    border-radius: 20px;
    transition: all .3s;
}
.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* semi-transparent black */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999; /* ensure it’s above everything */
  }
.loader {
    --cell-size: 52px;
    --cell-spacing: 1px;
    --cells: 3;
    --total-size: calc(var(--cells) * (var(--cell-size) + 2 * var(--cell-spacing)));
    display: flex;
    flex-wrap: wrap;
    width: var(--total-size);
    height: var(--total-size);
  }
  
  .cell {
    flex: 0 0 var(--cell-size);
    margin: var(--cell-spacing);
    background-color: transparent;
    box-sizing: border-box;
    border-radius: 4px;
    animation: 1.5s ripple ease infinite;
  }
  
  .cell.d-1 {
    animation-delay: 100ms;
  }
  
  .cell.d-2 {
    animation-delay: 200ms;
  }
  
  .cell.d-3 {
    animation-delay: 300ms;
  }
  
  .cell.d-4 {
    animation-delay: 400ms;
  }
  
  .cell:nth-child(1) {
    --cell-color: #00FF87;
  }
  
  .cell:nth-child(2) {
    --cell-color: #0CFD95;
  }
  
  .cell:nth-child(3) {
    --cell-color: #17FBA2;
  }
  
  .cell:nth-child(4) {
    --cell-color: #23F9B2;
  }
  
  .cell:nth-child(5) {
    --cell-color: #30F7C3;
  }
  
  .cell:nth-child(6) {
    --cell-color: #3DF5D4;
  }
  
  .cell:nth-child(7) {
    --cell-color: #45F4DE;
  }
  
  .cell:nth-child(8) {
    --cell-color: #53F1F0;
  }
  
  .cell:nth-child(9) {
    --cell-color: #60EFFF;
  }
  
  /*Animation*/
  @keyframes ripple {
    0% {
      background-color: transparent;
    }
  
    30% {
      background-color: var(--cell-color);
    }
  
    60% {
      background-color: transparent;
    }
  
    100% {
      background-color: transparent;
    }
  }

#formatCard{
    
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}
  
#formatCard::before {
    content: "";
    height: 250px;
    width: 250px;
    position: absolute;
    top: -60%;
    left: -20%;
    border-radius: 70%;
    border: 35px solid rgba(128, 151, 255, 0);
    transition: all .8s ease;
    filter: blur(.5rem);
}
  
#formatCard:hover::before {
    width: 250px;
    height: 250px;
    top: -5%;
    left: 70%;
    filter: blur(0rem);
    border: 35px solid rgba(128, 151, 255, 0.13);
 }

.sig {
    position: absolute;
    top: 0;
    right: 0;
    -webkit-transform: translateY(-100%) scale(1);
    transform: translateY(-100%) scale(1);
    display: block;
    width: 20px;
    height: 20px;
    display: block;
    /* background: steelblue; */
    --bg-opacity: 1;
    background-color: #2d3748;
    background-color: rgba(45, 55, 72, var(--bg-opacity));
    z-index: 5;
    -webkit-transition: 0.8s ease-in-out;
    transition: 0.8s ease-in-out;
}

h3 {
    position: absolute;
    top: -100%;
    left: 20%;
    text-transform: uppercase;
    font-weight: 100;
    color: rgba(255, 255, 255, 1);
    -webkit-transition: 0.3s ease-in-out 0.5s;
    transition: 0.3s ease-in-out 0.5s;
}
.fixed-size-textarea {
    height: 80px !important;
    resize: none !important;
    overflow: auto !important;
    box-sizing: border-box !important;
    max-height: 80px !important;
    min-height: 80px !important;
    display: block !important;
}
.plane {
    font-size: 50px;
    position: absolute;
    top: 100%;
    left: 0%;
    text-transform: uppercase;
    font-weight: 100;
    color: #EFC050;
    background:transparent !important;
    -webkit-transition: 20s ease-out 1s;
    transition: 20s ease-out 1s;
}

@keyframes example {
    0% {
        background-color: red;
        left: 0px;
        top: 0px;
    }

    25% {
        background-color: yellow;
        left: 200px;
        top: 0px;
    }

    50% {
        background-color: blue;
        left: 200px;
        top: 200px;
    }

    75% {
        background-color: green;
        left: 0px;
        top: 200px;
    }

    100% {
        background-color: red;
        left: 0px;
        top: 0px;
    }
}

label.error.fail-alert {
    line-height: 1;
    padding: 2px 0 6px 6px;
    background: wheat;
    font-size: 10px;
    display: block;
    text-align: center;
    margin: 3px 10px 0px 10px;
    position: relative;
    font-weight: bold;
    color: firebrick;
}

input.valid.success-alert {
    border: 2px solid #4CAF50;
    color: green;
}

.nav_ovveride{
    color: cadetblue;
    text-transform: none;
}