[data-ctype="inmedium_roundimages"] {
    --primary-color: #9E2E33;
}

.round-images {
    position: relative;

    .small-image-wrapper, 
    .big-image-left-wrapper,
    .big-image-right-wrapper {
        position: absolute;
    }

    .small-image-wrapper {
        top: 0;
        right: unset;
        bottom: unset;
        left: 50%;
        width: 30%;
        height: auto;
        padding: 0.25rem;
        border-radius: 50%;
        border: 0.1rem solid var(--primary-color);

        .small-image {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            border: 0.25rem solid var(--primary-color);
        }
    }
    .big-image-left-wrapper {
        top: 15%;
        right: unset;
        bottom: unset;
        left: 0;
        width: 50%;
        height: auto;
        padding: 0.5rem;
        border-radius: 50%;
        border: 0.2rem solid var(--primary-color);

        .big-image-left {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            border: 0.5rem solid var(--primary-color);
        }
    }
    .big-image-right-wrapper {
        top: unset;
        right: 0;
        bottom: 12%;
        left: unset;
        width: 50%;
        height: auto;
        padding: 0.5rem;
        border-radius: 50%;
        border: 0.2rem solid var(--primary-color);

        .big-image-right {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            border: 0.5rem solid var(--primary-color);
        }
    }
}