body,
#app {
    background: #f5f6f7;
}

.container {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.loader-container {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader {
    width: 30px;
    height: 30px;
    background-image: url('./loader.svg');
    background-repeat: no-repeat;
    background-position: 6px 6px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.tabs__pills {
    display: flex;
    gap: 5px;
    padding: 2px;
    margin: 8px;
    background-color: #edeeee;
    border-radius: 8px;
    width: 405px;
}
.tabs__pills .tab__button {
    width: 200px;
    height: 36px;
    border-radius: 8px;
    border: none;
    background-color: #edeeee;
    color: rgba(123, 125, 133, 1);
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease;
}
.tabs__pills .tab__button:hover {
    font-weight: 400;
    background-color: #e8e8e8;
}
.tabs__pills .tab__button.active {
    color: rgba(5, 13, 51, 1);
    font-weight: 400;
    background-color: white;
    opacity: 1;
    transform: translateX(0);
}

.panel {
    height: 100%;
    background: #fff;
    margin: 0 8px;
    border-radius: 8px;
    overflow: hidden;
}

.panel__text {
    display: flex;
    flex-direction: column;
    gap: 11px;
    margin-top: 40px;
    margin-left: 32px;
    width: 550px;
    font-size: 24px;
    font-weight: 500;
}

._hide {
    display: none;
}
