.lds-grid {
    /* change color here */
    color: #000000;
}
.lds-grid,
.lds-grid div {
    box-sizing: border-box;
}
.lds-grid {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}
.lds-grid div {
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: currentColor;
    animation: lds-grid 1.2s linear infinite;
}
.lds-grid div:nth-child(1) {
    top: 8px;
    left: 8px;
    animation-delay: 0s;
}
.lds-grid div:nth-child(2) {
    top: 8px;
    left: 32px;
    animation-delay: -0.4s;
}
.lds-grid div:nth-child(3) {
    top: 8px;
    left: 56px;
    animation-delay: -0.8s;
}
.lds-grid div:nth-child(4) {
    top: 32px;
    left: 8px;
    animation-delay: -0.4s;
}
.lds-grid div:nth-child(5) {
    top: 32px;
    left: 32px;
    animation-delay: -0.8s;
}
.lds-grid div:nth-child(6) {
    top: 32px;
    left: 56px;
    animation-delay: -1.2s;
}
.lds-grid div:nth-child(7) {
    top: 56px;
    left: 8px;
    animation-delay: -0.8s;
}
.lds-grid div:nth-child(8) {
    top: 56px;
    left: 32px;
    animation-delay: -1.2s;
}
.lds-grid div:nth-child(9) {
    top: 56px;
    left: 56px;
    animation-delay: -1.6s;
}
@keyframes lds-grid {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.lds-dots {
    /* change color here */
    color: #ffffff;
}
.lds-dots,
.lds-dots div {
    box-sizing: border-box;
}
.lds-dots {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}
.lds-dots div {
    position: absolute;
    top: 33.33333px;
    width: 13.33333px;
    height: 13.33333px;
    border-radius: 50%;
    background: currentColor;
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.lds-dots div:nth-child(1) {
    left: 8px;
    animation: lds-ellipsis1 0.6s infinite;
}
.lds-dots div:nth-child(2) {
    left: 8px;
    animation: lds-ellipsis2 0.6s infinite;
}
.lds-dots div:nth-child(3) {
    left: 32px;
    animation: lds-ellipsis2 0.6s infinite;
}
.lds-dots div:nth-child(4) {
    left: 56px;
    animation: lds-ellipsis3 0.6s infinite;
}
@keyframes lds-ellipsis1 {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}
@keyframes lds-ellipsis3 {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(0);
    }
}
@keyframes lds-ellipsis2 {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(24px, 0);
    }
}

.side-bar {
    width: var(--sideBarWidth);
    height: 100vh;
    left: 0;
    top: 0;
    position: fixed;
    background-color: #fff;
    border-right: 1px solid #e0e0e0;
    overflow: auto;
    z-index: 3;
    transition: all 300ms;
}

.top-bar {
    width: calc(100% - var(--sideBarWidth));
    height: var(--topBarHeight);
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    padding: 12px 28px;
    position: fixed;
    top: 0;
    left: var(--sideBarWidth);
    display: flex;
    justify-content: space-between;
    z-index: 3;
    transition:
        width 300ms,
        left 300ms;
}
.top-bar > div {
    display: flex;
    align-items: center;
    gap: 10px;
}

.top-bar object {
    flex-basis: 150px;
    flex-shrink: 0;
    aspect-ratio: 276/58;
}
.user-profile {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    margin-bottom: 20px;
}

.top-bar-search {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #f3f3f3;
    border-radius: 8px;
    padding: 8px;
}
.top-bar-search input {
    border: none;
    outline: none;
    background-color: transparent;
    width: 100%;
}
.top-bar-search input::placeholder {
    color: #c9c9c9;
}

.app {
    width: 100%;
    height: 100vh;
}
