.cplFrame{
    height: 195px;
    background-color: rgba(0, 0, 0, 0.02);
    outline: 1px solid lightgray;
    border-radius: 3px;
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.cplSubFrame{
    height: 135px;
    width: 270px;
    position: relative;
    top: 30px;
    left: 30px;
    z-index:1;
    pointer-events: none;
}

.cplSubFrame.rtl{
    right: 30px;
}

.cplPhotoControlButtons{
    display: flex;
    row-gap: 5px;
    flex-direction: column;
    position: absolute;
    z-index:1;
    top: 30px;
    left: calc(100% - 45px);
}

.cplPhotoControlButtons.rtl{
    right: calc(100% - 45px);
}

.cplPhotoControlButton{
    height: 30px;
    width: 30px;
    border: 0;
    border-radius: 3px;
    cursor: pointer;
    color: var(--pmMainColor);
}

.cplPhoto{
    pointer-events: none;
    max-height: 100%;
    max-width: 100%;
    user-select: none;
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    bottom: 50%;
    transform: translate(-50%, -50%);
}

.cplPhotoBorder{
    position: absolute;
    height: 100%;
    width: 100%;
    outline: 1px dashed lightgray;
    border-radius: 6px;
    z-index: 1;
}