/*
 * Copyright 2019, Innotera, ltd
 */

/* custom css goes here */

/* splash-screen utility */
.fitstatus-absolute {
    position: absolute;
}

/* fade animation */
.fitstatus-fade-enter-active,
.fitstatus-fade-leave-active {
    transition-property: opacity;
    transition-duration: .20s;
}

.fitstatus-fade-enter-active {
    transition-delay: .20s;
}

.fitstatus-fade-enter,
.fitstatus-fade-leave-active {
    opacity: 0
}

@media screen and (min-width: 500px) {
    html {
        /* margin-left: calc(100vw - 100%);
        margin-right: 0; */
    }
}

.visually-hidden {
    position: absolute !important;
    clip: rect(1px 1px 1px 1px);
    /* IE6, IE7 */
    clip: rect(1px, 1px, 1px, 1px);
    padding: 0 !important;
    border: 0 !important;
    height: 1px !important;
    width: 1px !important;
    overflow: hidden;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Light.ttf') format('truetype');
    font-weight: light;
    font-style: normal;
}

/* pending animation */
.lds-facebook {
    display: inline-block;
    position: relative;
    width: 70px;
    height: 170px;
  }
  .lds-facebook div {
    display: inline-block;
    position: absolute;
    left: 6px;
    width: 70px;
    background: #F29D2B;
    animation: lds-facebook 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
  }
  .lds-facebook div:nth-child(1) {
    left: -95px;
    animation-delay: 0;
  }
  .lds-facebook div:nth-child(2) {
    left: 0px;
    animation-delay: -0.2s;
  }
  .lds-facebook div:nth-child(3) {
    left: 95px;
    animation-delay: -0.3s;
  }
  @keyframes lds-facebook {
    0% {
      top: 0px;
      height: 170px;
    }
    50%, 100% {
      top: 45px;
      height: 80px;
    }
  }

  /* ^ pending animation */
  
