body.fade-in {
    animation: fadeInAnimation ease 0.2s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

@keyframes fadeInAnimation {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

body ::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

body ::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.1);
    border-radius: 0;
}

body ::-webkit-scrollbar-thumb {
    border-radius: 4px;
    -webkit-box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.2);
}

.cpro-toolbar-button {
    cursor: pointer !important;
    width: unset !important;
    display: flex !important;
    align-items: center;
    background-color: rgb(40, 40, 40);
}

.cpro-toolbar-button:hover {
    background-color: rgb(51, 51, 51);
}

.cpro-toolbar-button:after {
    content: "OK";
    margin-left: 0.5em;
    font-weight: bold;
}

.cpro-hide {
    display: none !important;
}

.w2g-spacer:focus {
    display: none !important;
}

.link-inside a {
    text-decoration: underline;
}

@keyframes fillProgress {
    from {
        width: 0%;
    }

    to {
        width: 100%;
    }
}

.progress-bar-fill {
    animation: fillProgress 3s ease-out forwards;
}

body.room-ready .progress-bar-fill {
    animation: none;
    width: 100%;
}