@import url('open-iconic/font/css/open-iconic-bootstrap.min.css');

.split {
    --WidthLeft: 60%; /* css variable */
    --WidthRight: 40%;
    width: 100%;
    z-index: 1;
    overflow-x: hidden;
    overflow-y: clip;   /* Counteract the small offset td.top in ct_table.css. */
}

.split-left {
    left: 280px;
    width: var(--WidthLeft);
}

.split-right {
    right: 0;
    top: 10px;
    width: var(--WidthRight);
    background-color: rgb(250, 250, 250, 255);
    border: 1px solid;
    border-color: lightgray;
    border-radius: 5px 0px;
    padding: 10px 10px 10px 10px;
    display: block;
    box-shadow: lightgray -1px 0px 9px;
}

.centered {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.centered img {
    width: 150px;
    border-radius: 50%;
}
