/* ------------------------------------------------------------ Standard Icons and Logos ------------------------------------------------------------ */

/* ---------- Contents:

-----> QR Code Images
-----> Standard Images

*/

/* -------------------- SECTION: QR Code Images -------------------- */

.QR_CodeStandard{
    display: block;
    object-fit: contain;

    max-width: 150px;
    max-height: 150px;

    border-radius: 5px;

}


/* -------------------- SECTION: Standard Images -------------------- */

/* ----- Icons ----- */
 .iconMicro{
    user-select: none;
    max-width: 12px;
    max-height: 12px;
    margin: 2px;
 }
.iconVeryTiny{
    user-select: none;
    max-width: 16px;
    max-height: 16px;
    margin: 5px;
 }
.iconTiny{
    user-select: none;
    max-width: 24px;
    max-height: 24px;
    margin: 5px;
}
.iconVerySmall{
    user-select: none;
    max-width: 36px;
    max-height: 36px;
    margin: 5px;
}
.iconSmall{
    user-select: none;
    max-width: 48px;
    max-height: 48px;
    margin: 5px;
}
.iconMedium{
    user-select: none;
    max-width: 64px;
    max-height: 64px;
    margin: 5px;
}
.iconLarge{
    user-select: none;
    max-width: 100px;
    max-height: 100px;
    margin: 5px;
}

/* ----- Logos ----- */
.logoSmall{
    user-select: none;
    max-width: fit-content;
    max-height: 50px;
    margin: 5px;
}
.logoMedium{
    user-select: none;
    max-width: 250px;
    max-height: 75px;
    margin: 0;
}
.logoLarge{
    user-select: none;
    max-width: fit-content;
    max-height: 100px;
    margin: 5px;
}


/* ----- Images ----- */
.imageSmall{
    object-fit: contain;
    user-select: none;
    width: 100%; max-width: 200px;
    max-height: 200px;
    margin: 5px;
}
.imageMedium{
    object-fit: contain;
    user-select: none;
    width: 100%; max-width: 300px;
    max-height: 400px;
    margin: 5px;
}
.imageLarge{
    object-fit: contain;
    user-select: none;
    width: 100%; max-width: 450px;
    max-height: 450px;
    margin: 5px;
}
.imageVeryLarge{
    object-fit: contain;
    user-select: none;
    width: 100%; max-width: 600px;
    max-height: 600px;
    margin: 5px;
}
.imageMain{
    object-fit: contain;
    user-select: none;
    width: 100%; max-width: 650px; min-width: 400px;
    max-height: 650px;
    margin: 5px;
}
.imageFit{
    object-fit: contain;
    width: fit-content; max-width: fit-content; min-width: fit-content;
    height: fit-content; min-width: fit-content; max-width: fit-content;
    margin: 5px;

    align-self: flex-start;
    /* justify-self: flex-start; */
    border: 4px solid yellow;
}


.imageSquare{
    border-radius: 0;
}
.imageRoundedEdges{
    border-radius: 5px;
}
.imageRounded,
.imageRound{
    border-radius: 50px;
}
.imageFull{
    object-fit: contain;
    width: 100%;
    height: 100%;
}

.imageObjectFitCover{
    object-fit: cover;
}
.imageFitBin{
    width: inherit;
    height: inherit;
    object-fit: cover;
}

.headerBinCenter{
    display: flex;
    flex-direction: row;
    align-items: center;
    list-style: none;

    height: 75px;
    width: fit-content;

    padding: 0;
    margin: 0;

    background-color: rgba(0, 0, 0, 0);
    /* border: 2px solid yellow; */
}


.formDisplayImg{
    object-fit: contain;
    max-width: 200px;
    max-height: 200px;
    /* border: 1px solid red; */
}




.calloutImageFull{
    object-fit: contain;
    width: 100%; max-width: 1000px;
    height: fit-content;
}




