
#QBorder_id_0001_frame.QBorderFrame {
    pointer-events: none;
    z-index: 420;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: calc(100vw - 0px);
    height: calc(100vh - 0px);
    background: transparent;
    overflow: hidden;
    /*
    border-top: 2px solid rgba(255, 255, 255, 1);
    border-right: 2px solid rgba(255, 255, 255, 1);
    border-bottom: 2px solid rgba(255, 255, 255, 1);
    border-left: 2px solid rgba(255, 255, 255, 1);
    */
    border-top: 2px solid rgba(255, 255, 255, 0.618);
    border-right: 2px solid rgba(255, 255, 255, 0.618);
    border-bottom: 2px solid rgba(255, 255, 255, 0.618);
    border-left: 2px solid rgba(255, 255, 255, 0.618);
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    padding: 2px;
    margin: 0px;
    border-radius: 8px;
    box-shadow: 8px 8px 38px 0 black;
}

#QBorder_id_0001_frame .QBorderEdge {
    z-index: 421;
    position: absolute;
    border-radius: 0px;
    box-shadow: 8px 8px 38px 0 black;
    transition: all 1000ms 0ms cubic-bezier(1, -0.01, .65, 1.37);
    opacity: 0;
}

#QBorder_id_0001_frame .QBorderTop {
    top: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient( 90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
}

#QBorder_id_0001_frame .QBorderBottom {
    right: 0;
    bottom: 0;
    height: 1px;
    background: linear-gradient( 90deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}

#QBorder_id_0001_frame .QBorderRight {
    top: 0;
    right: 0;
    width: 1px;
    height: 0;
    background: linear-gradient( 180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
}

#QBorder_id_0001_frame .QBorderLeft {
    left: 0;
    bottom: 0;
    width: 1px;
    height: 0;
    background: linear-gradient( 180deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}

#QBorder_id_0001_frame .QBorderTop {
    animation: QBorder_id_0001_frameanimateTop 6s linear infinite;
}

#QBorder_id_0001_frame .QBorderBottom {
    animation: QBorder_id_0001_frameanimateBottom 6s linear infinite;
}

#QBorder_id_0001_frame .QBorderRight {
    animation: QBorder_id_0001_frameanimateRight 6s linear infinite;
}

#QBorder_id_0001_frame .QBorderLeft {
    animation: QBorder_id_0001_frameanimateLeft 6s linear infinite;
}

@keyframes QBorder_id_0001_frameanimateRight {
    0% {
        opacity: 1;
        height: 0;
    }

    25% {
        opacity: 1;
        height: 100%;
    }

    50%, 75%, 100% {
        opacity: 0;
        height: 100%;
    }
}

@keyframes QBorder_id_0001_frameanimateBottom {
    0% {
        opacity: 0;
        width: 0;
    }

    25% {
        opacity: 1;
        width: 0;
    }

    50% {
        opacity: 1;
        width: 100%;
    }

    75%, 100% {
        opacity: 0;
        width: 100%;
    }
}

@keyframes QBorder_id_0001_frameanimateLeft {
    0%
    25%, {
        opacity: 0;
        height: 100%;
    }

    50% {
        opacity: 1;
        bottom: 0;
        height: 0;
    }

    75% {
        opacity: 1;
        height: 100%;
    }

    100% {
        opacity: 0;
        height: 100%;
    }
}

@keyframes QBorder_id_0001_frameanimateTop {
    0%, 25% {
        width: 0%;
        opacity: 0;
    }

    50% {
        width: 0%;
        opacity: 0;
    }

    75% {
        width: 0%;
        opacity: 1;
    }

    100% {
        width: 100%;
        opacity: 1;
    }
}