.left-side-menu {
  top: 0px;
  padding: 0 0 20px 0;
}
.callsign input,
.pilot input {
  text-transform: uppercase !important;
  border: 0px;
  border-bottom: 1px solid #7d57c2;
  outline: none;
  margin-left: 10px;
}
.toast-container{
  font-family: 'Exo 2', sans-serif !important;
}
.callsign-fdtl,
.callsign-fdtl input {
  width: 75px;
  outline: 0;
  border: 0px;
  border-bottom: 1px solid #ced4da;
  height: 38px;
  padding-left: 4px;
}
.loader-parent {
    position: fixed;
    z-index: 1111;
    background: rgba(0, 0, 0, 0.4);
    left: 0;
    right: 0;
    text-align: center;
    top: 0;
    bottom: 0;
}
.loader {
  display: block;
  position: relative;
  top: 40%;
}

.loader-inner {
  display: inline-block;
  width: 140px;
  height: 140px;
  border-radius: 100px;
  background-size: 290px;
  background-image: url(../images/loader2.gif);
  background-repeat: no-repeat;
  background-position: center;
}
/* Spinner Start */
#cover-spin {
  position:fixed;
  width:100%;
  left:0;right:0;top:0;bottom:0;
  background-color: rgba(255,255,255,0.7);
  z-index:9999;
  display:block;
}

@-webkit-keyframes spin {
from {-webkit-transform:rotate(0deg);}
to {-webkit-transform:rotate(360deg);}
}

@keyframes spin {
from {transform:rotate(0deg);}
to {transform:rotate(360deg);}
}

#cover-spin::after {
  content:'';
  display:block;
  position:absolute;
  left:48%;top:40%;
  width:40px;height:40px;
  border-style:solid;
  border-color:#f7b84b;
  border-top-color:transparent;
  border-width: 4px;
  border-radius:50%;
  -webkit-animation: spin .8s linear infinite;
  animation: spin .8s linear infinite;
}
/* Spinner End */
@keyframes loader {
  0% {
    transform: rotate(0deg);
  }
  
  25% {
    transform: rotate(180deg);
  }
  
  50% {
    transform: rotate(180deg);
  }
  
  75% {
    transform: rotate(360deg);
  }
  
  100% {
    transform: rotate(360deg);
  }
}

@keyframes loader-inner {
  0% {
    height: 0%;
  }
  
  25% {
    height: 0%;
  }
  
  50% {
    height: 100%;
  }
  
  75% {
    height: 100%;
  }
  
  100% {
    height: 0%;
  }
}