/**
 * Image Position Classes
 * 
 * Used with applari_get_image_position_class() helper function.
 * These classes set both object-position (for img/video) and 
 * background-position (for background images).
 */

/* Top positions */
.img-pos-top {
    object-position: top center;
    background-position: top center;
}

.img-pos-top-left {
    object-position: top left;
    background-position: top left;
}

.img-pos-top-right {
    object-position: top right;
    background-position: top right;
}

/* Bottom positions */
.img-pos-bottom {
    object-position: bottom center;
    background-position: bottom center;
}

.img-pos-bottom-left {
    object-position: bottom left;
    background-position: bottom left;
}

.img-pos-bottom-right {
    object-position: bottom right;
    background-position: bottom right;
}

/* Side positions */
.img-pos-left {
    object-position: center left;
    background-position: center left;
}

.img-pos-right {
    object-position: center right;
    background-position: center right;
}

/* Center is default in CSS, but adding for completeness */
.img-pos-center {
    object-position: center center;
    background-position: center center;
}

