.blc-live-copy {
    position: relative;
}

.bricks-fly-copy-wrapper {
    position: absolute;
    width: 42px;
    right: 0%;
    top: 50%;
    transform: translate(-0%, 0%);
    background: #4a4a4a;
    border: 1px solid #4a4a4a;
    padding: 12px 0;
    border-radius: 10px;
    transition: all .3s ease;
    z-index: 999;
}

.bricks-fly-copy-button,
.bricks-fly-download-tooltip {
    position: absolute;
    left: -113px;
    top: 50%;
    width: 100px;
    height: 34px;
    background: #363636;
    color: #fff;
    font-size: 12px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(-50%) scale(0);
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease;
}

.bricks-fly-copy-button::before,
.bricks-fly-download-tooltip::before {
    content: "";
    position: absolute;
    right: -12px;
    top: 50%;
    width: 12px;
    height: 12px;
    background: #363636;
    transform: translateY(-50%) rotate(90deg);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.bricks-fly-copy-wrapper.active-live-copy .bricks-fly-copy-button {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) scale(1);
}

.bricks-fly-copy-wrapper.active-live-download .bricks-fly-download-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) scale(1);
}

.bricks-fly-copy-icon,
.bricks-fly-download-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.bricks-fly-copy-icon {
    padding-bottom: 10px;
    line-height: 0;
    cursor: copy;
}

.bricks-fly-download-button {
    border-top: 1px solid rgb(115 115 115);
    padding-top: 10px;
    line-height: 0;
}

.bricks-fly-copy-icon svg path,
.bricks-fly-download-button svg path {
    transition: fill .3s ease;
}

.bricks-fly-copy-icon:hover svg path,
.bricks-fly-download-button:hover svg path {
    fill: #f6502c;
}

.blc-live-copy.copying::after {
    content: "Copied";
    position: absolute;
    inset: 0;
    background: #f6502c;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    z-index: 99999;
}

.blc-live-copy.downloading::after {
    content: "Downloading";
    position: absolute;
    inset: 0;
    background: #f6502c;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    z-index: 99999;
}