@font-face {
  font-family: 'CircularStd';
  font-weight: 400;
  font-style: normal;
  src: local('CircularStd'), url('CircularStd-Book.otf') format('opentype');
}
@font-face {
  font-family: 'CircularStd';
  font-weight: 500;
  font-style: normal;
  src: local('CircularStd'), url('CircularStd-Medium.otf') format('opentype');
}
@font-face {
  font-family: 'CircularStd';
  font-weight: 700;
  font-style: normal;
  src: local('CircularStd'), url('CircularStd-Bold.otf') format('opentype');
}

.pwaModal{
  display: none;
}

#overlay {
  display: none; 
}

.clkPickerStyle {
  width: 100% !important;
}

.clkPickerStyle > .MuiClockPicker-arrowSwitcher {
  margin-left: auto;
  position: static;
  top: 0;
  right: 0;
}

@media screen and (max-width: 600px) {

  .overflowTableRow {
    width: 100%;
    overflow: hidden;
    text-overflow: clip;
  }

  .disableRow{
    pointer-events: none;
    opacity: 0.4;
  }

  .mobileTableHeader{
    font-size: 1rem;
    font-family: "Public Sans", sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: left;
    color: rgb(99, 115, 129);
  }

  .mobileTableContent {
    font-weight: 600;
    line-height: 1.5714285714285714;
    font-size: 0.875rem;
    font-family: Public Sans,sans-serif;
  }

  .containerMobileRow{
    border: solid thin hsl(210 13% 62% / 0.12);
    border-radius: 0.5rem;
    padding: 0.5rem;
  }

  #overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.5);
    z-index: 2000;
    cursor: pointer;
  }

  .pwaModal {
    position: fixed;
    bottom: 0;
    font-size: 4rem;
    z-index: 9999;
    width: 100vw;
    height: 8vh;
    animation: showModal 300ms ease  forwards;
    background-color: white;
  }

  .modal-content{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: 76%;
    margin: 0.5rem;
    margin-left: 0px;
    margin-right: 0px;
    padding-left: 1rem;
    padding-right: 1rem

  }

  .company-info{
    display: flex;
    flex-direction: row;
  }
  .company-info img{
    height: 40px;
    width: 40px;
  }

  .modal-subcontent-2{
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    font-size: 0.7rem;
  }

  .modal-subcontent-2 button{
    font-size: 1rem;
    color: #1a73e8;
    background-color: white;
    border: none;
  }

  @keyframes showModal {
    0%{
      transform: translateY(100%);
    }
    100%{
      transform: translateY(0%);
    }
  }
}
