
/* ------------------------------------------------------ */
/* Image (thumbnail) classes                              */
/* ------------------------------------------------------ */

.image-thumb-container-center {
  display: flex;
  justify-content: center;
}

.image-thumb-container-right {
  display: flex;
  justify-content: right;
}

.image-thumb-container-left {
  display: flex;
  justify-content: left;
}

/* Small image thumb in 3:3 format */
.image-thumb3x3-sm {
  text-align: center;
}

  .image-thumb3x3-sm img {
    width: 24px;
    height: 24px;
    /*border: 0.1rem solid rgba(0, 0, 0, 0.1);*/
  }

  .image-thumb3x3-sm h4 {
    margin-top: 1.5rem;
    margin-bottom: 0;
  }


/* Small image thumb in 4:3 format */
.image-thumb4x3-sm {
  text-align: center;
}

  .image-thumb4x3-sm img {
    width: 32px;
    height: 24px;
    /*border: 0.1rem solid rgba(0, 0, 0, 0.1);*/
  }

  .image-thumb4x3-sm h4 {
    margin-top: 1.5rem;
    margin-bottom: 0;
  }

/* Large image thumb in 3:3 format */
.image-thumb3x3-lg {
  text-align: center;
}

  .image-thumb3x3-lg img {
    width: 3rem;
    height: 3rem;
    /*border: 0.1rem solid rgba(0, 0, 0, 0.1);*/
  }

  .image-thumb3x3-lg h4 {
    margin-top: 1.5rem;
    margin-bottom: 0;
  }


/* Large image thumb in 4:3 format */
.image-thumb4x3-lg {
  text-align: center;
}

  .image-thumb4x3-lg img {
    width: 4rem;
    height: 3rem;
    /*border: 0.1rem solid rgba(0, 0, 0, 0.1);*/
  }

  .image-thumb4x3-lg h4 {
    margin-top: 1.5rem;
    margin-bottom: 0;
  }

