
#refreshPage {
    position: absolute;
    right: 10px;
    top: 10px;
}

/* loader */
#loader {
    position: fixed;
    background: #1a1a1f url(../img/load.svg) center no-repeat 6.25rem;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999999;
  }
  .loader-container {
    align-items: center;
    background: #111114 url(../img/logo.svg) no-repeat center/4.375rem;
    display: flex;
    justify-content: center;
    height: 100%;
    width: 100%;
  }
  .loading-screen {
    height: 9.375rem;
    width: 9.375rem;
    border-radius: 50%;
    border: 0.0625rem solid #FB5F15;
    border-right: none;
    border-bottom: none;
    animation-name: spin, fade;
    animation-duration: 3s, 3s;
    animation-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1), linear;
    animation-iteration-count: infinite;
  }

  @keyframes spin {
    from {
      transform: rotate(0);
    }
  
    to {
      transform: rotate(1170deg);
    }
  }
  
  @keyframes fade {
    0%,
    100%,
    70% {
      opacity: 0;
    }
  
    50% {
      opacity: 1;
    }
  }


  .daySelect {
    background-color: ghostwhite;
    margin-left: auto;
    width: 100% !important;
    text-align: center !important;
    border: none !important;
    height: 100%;
  }

  .daySelectDiv {
    width: 40% !important;
    height: 2.1rem;
  }