.cryo-tracker {
  background-color: white;
  display: flex;
  flex-direction: column;
  font-family: sans-serif;
  justify-content: space-around;
  margin: 0 auto 0 0;
  max-width: 800px;

  .tooltip {
    background-color: #636986;
    color: white;
    z-index: 1;
    max-width: 100px;
    text-align: center;
  }

  button {
    border-radius: 4px;
    background-color: aliceblue;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .heading {
    border: 1px solid black;
    border-radius: 4px;
    background-color: #ffae1a;
    display: flex;
    flex-direction: column;
    color: black;
    padding: 8px 0;

    h1,
    h3 {
      font-size: 20px;
      margin: 4px auto;
      color: black;
      font-weight: 600;
    }

    p {
      margin: 8px auto;
    }

    h1 {
      font-size: 32px;
      margin-bottom: 16px;
    }

    h3 {
      margin-top: 12px;
    }

    label {
      margin: 4px auto;
    }

    .settings {
      margin: 8px auto;
      display: flex;
      flex-direction: row;
      width: 268px;
      justify-content: space-between;

      button {
        height: 28px;
        width: 128px;
        background-color: black;
        color: white;
      }
    }

    .unstyled-button {
      height: 28px;
      width: 80px;
      background-color: #ffae1a;
      color: black;
      border: 1px solid #404040;
      margin: 8px auto 4px;
      font-size: 12px;
    }

    .scale-slider,
    .color-key {
      width: 240px;
      margin: 4px auto;
    }
  }

  .content {
    transform-origin: top left;
    margin: 0 8px;
    padding: 40px 40px;
    min-height: 800px;

    h3 {
      margin: 24px auto 16px 4px;
      color: white;
      font-weight: 600;
      letter-spacing: 2px;
      font-size: 20px;
    }

    .locations {
      flex-wrap: wrap;
      max-width: 800px;
    }

    .objective-section {
      display: flex;
      flex-direction: row;
      justify-content: center;
      align-items: flex-start;
      padding: 4px 4px 4px 12px;
      border: 4px solid rgb(82, 82, 82);
    }

    .cryo-button {
      width: 148px;
      background-color: unset;
      border: 4px solid rgb(82, 82, 82);
      color: white;
      margin: 0 0 4px 0;
      font-size: 16px;
      font-weight: 600;
      height: 76px;
      padding: 8px;

      &.image {
        height: 62px;
        padding: 2px;
        width: 62px;
        background-color: black;
      }

      &.active {
        border-color: aqua;
      }

      &.disabled {
        color: gray;
        border-color: #202020;
      }
    }
  }
}
