﻿.App
{
    width: 500px !important;
    min-height: 100vh  !important;
    //background-color: #0f0638;
    margin: auto;
    box-shadow: 0 0 1em #cccccc;
    //overflow-y: auto;
  }

  /*.offcanvas {
    padding: 15px;
    width: 480px !important;
    margin: auto;
    box-shadow: 0 0 1em #cccccc;
  }*/

.loading-overlay {
    position: fixed;
    width: 100vw !important;
    height: 100vh !important;
    background-image: linear-gradient(to bottom, rgba(255, 165, 0, 0.86), rgb(255, 140, 0, 0.86));
    display: flex;
    justify-content: center !important;
    align-items: center !important;
    z-index: 9999;
}


.loading-spinner {
  width: 200px !important;
  height: 200px !important;
}


.header-fixed{
    position:fixed;
    margin: auto;
    width: 484px !important;
}

.footer-bar {
    margin: auto;
    width: 484px !important;
}


  
  ::-webkit-scrollbar-track
    {
      -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.1);
      border-radius: 10px;
      background-color: #F5F5F555;
    }
  
    ::-webkit-scrollbar
    {
      width: 12px;
      background-color: #F5F5F544;
    }
  
    ::-webkit-scrollbar-thumb
    {
      border-radius: 10px;
      -webkit-box-shadow: inset 0 0 6px rgba(129, 111, 111, 0.2);
      background-color: #555;
    }
  
  
  
  @media (max-width: 500px) {
    .App {
        width: 100vw !important;
        height: 100%  !important;
        //background-color: #0f0638;
        margin: auto;
        //box-shadow: 0 0 1em #cccccc;
        //overflow-y: auto;
    }

    .header-fixed {
        width: auto !important;
    }

    .footer-bar {
        width: auto !important;
    }



  
    ::-webkit-scrollbar-track
    {
      width: 0px;
    }
  
    ::-webkit-scrollbar
    {
      width: 0px;
    }
  
    ::-webkit-scrollbar-thumb
    {
      width: 0px;
    }
  }
  