* {
    box-sizing: border-box;
  }
  body {
    margin: 0;
    height: 100vh;
    overflow: hidden;
  }
  .general {
    height: 100vh;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 10px;
    overflow: auto;
  }

  button {
    width: 300px;
    padding: 10px;
    font-size: 18px;
    font-weight: bold;
    margin-top: 5px;
  }

  input {
      width: 300px;
      padding: 10px;
      margin-top: 4px;
      border-radius: 100px;
      border: solid 1px #7a7a78;
  }

  .image-tab {
    border: 1px solid grey;
    width: 100%;
    height: calc(100vh - 100px);
    padding: 10px;
    overflow: auto;
    gap: 50px 100px;
    margin-bottom: 20px;
    display: none;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    grid-gap: 10px;
  }

  .thumbnail-item {
    height: 250px;
    border-radius: 5px;
    box-shadow: 0 0 4px 2px #80808078;
  }

  .thumbnail-item .image-panel {
    border-bottom: 1px solid rgba(182, 182, 182, 0.514);
    height: 200px;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .thumbnail-item img {
    background-repeat: repeat;
    object-fit: contain;

    background-size: var(--cell-size, 15px) var(--cell-size, 15px);
    background-image: conic-gradient(
      white 0deg,
      white 90deg,
      #cccccc 90deg,
      #cccccc 180deg,
      white 180deg,
      white 270deg,
      #cccccc 270deg
    );
  }

  .info-panel {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 50px;
    padding: 0 10px;
  }
  .info-panel .title {
    font-size: 14px;
    margin: 0;
  }
  .info-panel .btn-edit {
    width: 80px;
    height: 30px;
    padding: 10px;
    font-weight: bold;
    border-radius: 40px;
    border-width: 1px;
    border-style: solid;
    text-align: center;
    font-size: 16px;
    text-decoration: none;
    font-weight: 500;
    line-height: 0.8;
    color: #fff;
    background-color: #c45003;
    border-color: #c45003;
    cursor: pointer;
  }

  .info-panel .btn-edit:hover {
    transform: scale(1.05);
    background-color: #b14904;
    border-color: #b14904;
  }



  #gs-builder {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-color: white;
    display: none;
  }

  /* General */
  .general {
    font-family: "Montserrat", sans-serif;
    color: #767674;
  }

  /* Create a Gang Sheet Button*/
  .createGangSheetBtn {
    border-radius: 40px;
    border-width: 1px;
    border-style: solid;
    float: left;
    padding: 10px 20px;
    text-align: center;
    font-size: 16px;
    text-decoration: none;
    font-weight: 500;
    line-height: 1.5;
    transition: all 0.2s cubic-bezier(0.4, 0, 1, 1);
    transition-property: color, border-color, background-color;
    color: #fff;
    background-color: #c45003;
    border-color: #c45003;
  }

  .createGangSheetBtn:focus,
  .createGangSheetBtn:hover {
    background-color: #8d3a02;
    border-color: #8d3a02;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
  }

  /* edit gang sheet button */
  .editGangSheetBtn {
    border-radius: 40px;
    border-width: 1px;
    border-style: solid;
    float: left;
    padding: 10px 20px;
    text-align: center;
    font-size: 16px;
    text-decoration: none;
    font-weight: 500;
    line-height: 1.5;
    transition: all 0.2s cubic-bezier(0.4, 0, 1, 1);
    transition-property: color, border-color, background-color;
    color: #767674;
    background-color: #fff;
    border-color: #aeaead;
  }

  .editGangSheetBtn:focus,
  .editGangSheetBtn:hover {
    color: #555553;
    background-color: #f5f5f5;
    border-color: #aeaead;
    text-decoration: none;
    cursor: pointer;
  }

  /* loading 
we don't use a gif but have it in CSS. If possible could we change the color of your loading gif to match ours #c45003 CSS is also below if that's easier.
*/
  .loading {
    position: absolute;
    left: calc(50% - 40px);
    top: calc(50% - 40px);
    width: 80px;
    height: 80px;
  }
  .loading:after {
    content: " ";
    display: block;
    width: 64px;
    height: 64px;
    margin: 8px;
    border-radius: 50%;
    border: 6px solid #c45003;
    border-color: #c45003 transparent #c45003 transparent;
    animation: lds-dual-ring 1.2s linear infinite;
    z-index: 51;
  }
  @keyframes lds-dual-ring {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }