/* -------------------------------------------------------------------------- */
/*                                Falcon Button                               */
/* -------------------------------------------------------------------------- */
/* prettier-ignore */
/*# sourceMappingURL=user.css.map */

@media (min-width: 1200px) {
  .navbar-vertical-collapsed .welcome-note {
    display: none;
  }

  .navbar-vertical-collapsed-hover .welcome-note {
    display: block;
  }
}

@media (max-width: 768px) {
  .dropdown-caret-none-2:after,
  .dropdown-caret-none-2:before {
    display: none !important;
  }
}

.choices {
  margin-bottom: 0 !important;
}

.video_box {
  position: relative;
}
.video_overlays {
  display: none;
  position: absolute;
  min-height: 40px;
  background-color: #000000;
  z-index: 300000;
  text-align: center;
}
.video_image {
  padding-top: 102px;
  padding-bottom: 102px;
}

.camera_download .active .btn {
  color: var(--falcon-primary);
}

.dropdown-icon {
  width: 20px;
  display: inline-block;
}

.avatar-6xl {
  height: 15.5rem;
  width: 15.5rem;
}

.g-recaptcha {
  border: var(--falcon-border-width) solid var(--falcon-gray-300);
  overflow: hidden;
  width: 298px;
  height: 74px;
}
.g-recaptcha iframe {
  margin: -1px 0px 0px -2px;
}

@media only screen and (max-width: 360px) {
  .g-recaptcha {
    width: 230px;
    margin: 0 auto;
  }
}

.loader {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  position: relative;
  animation: rotate 1s linear infinite
}
.loader::before , .loader::after {
  content: "";
  box-sizing: border-box;
  position: absolute;
  inset: 0px;
  border-radius: 50%;
  border: 3px solid var(--falcon-gray-400);
  animation: prixClipFix 2s linear infinite ;
}

.loader::after{
  border-color: var(--falcon-primary);
  animation: prixClipFix 2s linear infinite , rotate 0.5s linear infinite reverse;
  inset: 6px;
}

@keyframes rotate {
  0%   {transform: rotate(0deg)}
  100%   {transform: rotate(360deg)}
}

@keyframes prixClipFix {
    0%   {clip-path:polygon(50% 50%,0 0,0 0,0 0,0 0,0 0)}
    25%  {clip-path:polygon(50% 50%,0 0,100% 0,100% 0,100% 0,100% 0)}
    50%  {clip-path:polygon(50% 50%,0 0,100% 0,100% 100%,100% 100%,100% 100%)}
    75%  {clip-path:polygon(50% 50%,0 0,100% 0,100% 100%,0 100%,0 100%)}
    100% {clip-path:polygon(50% 50%,0 0,100% 0,100% 100%,0 100%,0 0)}
}

/* .loader {
  width: 0;
  height: 4.8px;
  display: inline-block;
  position: relative;
  background: var(--falcon-primary);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
  box-sizing: border-box;
  animation: animFw 8s linear infinite;
}
.loader::after,
.loader::before {
  content: "";
  width: 10px;
  height: 1px;
  background: var(--falcon-primary);
  position: absolute;
  top: 9px;
  right: -2px;
  opacity: 0;
  transform: rotate(-45deg) translateX(0px);
  box-sizing: border-box;
  animation: coli1 0.3s linear infinite;
}
.loader::before {
  top: -4px;
  transform: rotate(45deg);
  animation: coli2 0.3s linear infinite;
}

@keyframes animFw {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

@keyframes coli1 {
  0% {
    transform: rotate(-45deg) translateX(0px);
    opacity: 0.7;
  }
  100% {
    transform: rotate(-45deg) translateX(-45px);
    opacity: 0;
  }
}

@keyframes coli2 {
  0% {
    transform: rotate(45deg) translateX(0px);
    opacity: 1;
  }
  100% {
    transform: rotate(45deg) translateX(-45px);
    opacity: 0.7;
  }
} */

/* rocket loader  */
.rocket {
  width: 200px;
  position: absolute;
  bottom: 80%;
  /* animation: fly 1.5s ease-in infinite; */
  animation: fly 1.2s cubic-bezier(0,.21,1,.06) infinite;
}

@keyframes fly {
  0% {
    bottom: 35%;
  }

  100% {
    bottom: 80%;
  }
}

@media (max-width: 768px) {
  .rocket {
    width: 150px;
  }
  @keyframes fly {
    0% {
      bottom: 35%;
    }
  
    100% {
      bottom: 80%;
    }
  }
}