/* ↓ tumlive */
.tumlive-video {
    width: 100%;
    aspect-ratio: 16/9;
    min-height: auto;
}
.tumlive-video--wrapper {
    position: relative;
}
.tumlive-video--wrapper > :first-child {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
    pointer-events: none;
    display: none;
}
.tumlive-video--wrapper > div {
    width: 100%;
    height: 100%;
    background-color: white;
    justify-content: center;
    align-items: center;
    border: 1px solid #e6e6e6;
    padding: 10px;
}
.tumlive-video--wrapper > div > image {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.tumlive-video--wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden
}
.tumlive-video--wrapper .vjs-icon-placeholder {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    border: 1px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: default;
    z-index: 2;
}
.tumlive-video--wrapper .vjs-icon-placeholder:hover {
    background-color: red;
}

.tumlive-video--wrapper .vjs-icon-placeholder::before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-left: 20px solid white;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    margin-left: 5px;
}
/* ↑ tumlive */
