.flash-text-item {
    animation: blinker 2s linear infinite;
}

@keyframes blinker {
    50% {
        opacity: 0;
    }
}

.overlay-baseplate {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.911);
    width: 100%;
    height: 100%;
    position: absolute;
    top: auto;
    bottom: 0;
    opacity: 1;
}

.video-preview-wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
}

.overlay-baseplate .overlay-title {
    color: white;
}

.overlay-baseplate.video-overlay-base {
    z-index: 1;
}

.sidebar-toggler-icon {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
}

.sidebar .sidebar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.bg-auth-custom-gradient {
    background-color: #2d2d2d;
    background-image: linear-gradient(180deg, #2d2d2d 0%, #000000 100%);
}