@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --bg-color: #121417;
    --default-text-color: #e8eaed;

    --block-bg: #1f2328;

    --test-color-lvl-1: #1C1E21;
    --test-color-lvl-2: #292C31;
}

body {
    padding: 0;
    margin: 0;
    background-color: var(--bg-color);
    font-family: "Poppins", sans-serif;
    color: var(--default-text-color);
    overflow-x: hidden;
}

input {
  all: unset;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

.wrapper {
    width: 100vw;
    display: flex;
    justify-content: flex-end;
}

.wrapper .container {
    width: calc(100vw - var(--sidebar-original-width) - 10px);
    /* background: var(--test-color-lvl-1); */
    display: flex;
    justify-content: center;
    transition: width 300ms;
    padding-right: 10px;
}

.wrapper.sidebar-collapsed .container {
    width: calc(100vw - var(--sidebar-collapsed-width) - 10px);
    /* min-width: calc(100vw - var(--sidebar-collapsed-width)); */
    transition: width 300ms;
    padding-right: 10px;
}

.wrapper .container .content {
    display: flex;
    gap: 40px;
    width: 100%;
    max-width: 1544px;
    flex-direction: column;
}

@media (min-width: 1634px) and (max-width: 1874px) {
    .wrapper .container .content {
        padding-left: 10px;
        padding-right: 10px;
    }
}

@media (max-width: 1634px) {
    .wrapper .container .content {
        padding-left: 10px;
        padding-right: 10px;
    }
}

@media(max-width: 1440px) {
    .wrapper .container {
        width: calc(100vw - var(--sidebar-collapsed-width));
    }
}

@media(max-width: 1024px) {
    .wrapper .container, .wrapper.sidebar-collapsed .container {
        padding: 0px 10px;
        width: calc(100vw - 20px);
    }
}

/* Dots animation */
.dots {
    display: flex;
    align-items: center;
    gap: 4px;
}

.dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: currentColor;

    animation: dotPulse 1s infinite ease-in-out;
}

.dot:nth-child(2) {
    animation-delay: 0.15s;
}

.dot:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes dotPulse {
    0%, 80%, 100% {
        transform: scale(0.7);
        opacity: 0.5;
    }

    40% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Buttons Css */
.button {
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: opacity 300ms;
}

.button.width-auto {
    width: fit-content;
    padding: 0px 30px;
}

.button.disabled {
    opacity: 0.5;
    cursor: no-drop;
    transition: opacity 300ms;
}

.button.green {
    color: #fff;
    background: #2A9861;
    transition: background 300ms;
}

.button.blue {
    color: #fff;
    background: #2F80ED;
    transition: background 300ms;
}

.button.green:hover {
    background: #2EA66A;
    transition: background 300ms;
}

.button.disabled {
    pointer-events: none;
    opacity: .7;
}

@keyframes shine {
    0% {
        left: -100%;
    }
    100% {
        left: 150%;
    }
}