.shipping-page{
  all: unset;
  display: grid;
  grid-template-rows: auto 1fr auto;
  height: 100%;

  *{
     box-sizing: border-box;
  }

  box-sizing: border-box;
  header{
    all: unset;
    box-sizing: border-box;
    background: white;
    padding: 0.5rem;
    margin: 0;
    width: 100%;
    display: grid;
    place-items: center;

    img {
      height: 50px;
    }
  }

  main{
    all: unset;
    box-sizing: border-box;
    position: relative;
    height: 100%;
    font-family: var(--main-font-family);
    padding: 1rem;
  }

  footer {
    background: #aaa;
    width: 100%;
    padding: 0.5rem 1rem;
    font-size: 1.5rem;
    font-weight: bold;
    ul {
      display: flex;
      justify-content: space-between;
      color: white;
    }
  }

  .scan-buttons{
    box-sizing: border-box;
    position: absolute;
    bottom: 0;
    display: flex;
    justify-content: space-between;
    width: calc(100% - 2rem);

    .btn{
      font-size: 1.5rem;
      display: flex;
      gap: 1rem;
      font-weight: normal;
    }
  }

  .shipping-button{
    text-align: left;
    background: #eee;
    margin-bottom: 1rem;
    width: 100%;
    border-radius: var(--common-radius);
    padding: 1rem 1rem;
  }

  .side-menu{
    border-width: 2px 0;
    border-color: black;
    border-style: solid;
    padding: 1rem 0;


    position: absolute;
    background: white;
    z-index: 100;
    height: 100%;
    width: 100%;
    left: -100%;
    top: 0;

    transition: left 200ms ease;

    &.open{
      left: 0;
    }
  }

  .close-side-menu-button{
    position: absolute;
    top: 1rem;
    right: 1rem;
  }

  .status-select{
    ul {
      margin: 0;
      padding: 0;
      list-style: none;
      margin-top: 4rem;
    }

    li {
      width: 100%;
      padding: 0.75rem 1rem;
      border-bottom: 2px solid #eee;
      cursor: pointer;
      
      &:first-child {
        border-top: 2px solid #eee;
      }

      &:hover, &:active {
        background: #ddd;
      }
    }
  }

  #camera-scan{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: #aaa;
    padding-block: 3rem;
    display: none;

    &.active{
      display: block;
    }
  }
}