#video-branching-player-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

#video-branching-player-iframe {
    width: 100%;
    height: 100%;
}

#video-branch-decision-overlay {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 15%;
    left: 5%;
    background: transparent;
    justify-content: center;
    align-items: flex-start;
    gap: 50px;
    max-height: calc(100% - 100px);
    overflow-y: auto;
}

#video-branch-decision-overlay .decision-button .common-button {
    height: 44px;   
    min-width: 150px;
    max-width: 100vh;
    color: #373737 !important;
    font-weight: 600;
    background-color: #fff;
    border-radius: 8px !important;
}

#video-branch-decision-overlay .decision-button .common-button:before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px; /* border thickness */
    border-radius: 8px !important;
    background: linear-gradient(90deg, #a020f0, #00c4ff);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

#video-branch-decision-overlay .decision-button .common-button:hover {
    background-color: #F9F9F9 !important;
}

#video-branch-decision-overlay .decision-button .common-button:focus {
    background-color: #F9F9F9 !important;
}