.main {

    width: 93%;
    height: 100%;
    position: absolute;
    right: 0;
}

.item-1 {
    width: 100%;
    height: 450px;
    padding: 10px;
    display: flex;
    gap: 2%;
}

.item-2 {
    width: 100%;
    height: auto;
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 2%;
    justify-content: space-around;
}

.graphic {

    width: 50%;
    height: 400px;
    padding: 10px;
}

.totais {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 colunas */
    grid-template-rows: repeat(2, 1fr);
    /* 2 linhas */
    gap: 10px;
    /* Espaço entre os itens */
    padding: 10px;
    /* Cor de fundo */
    width: 50%;
    /* Ajustar a largura ao container pai */
    height: 85%;
    /* Ajustar a altura ao container pai */
}

.col-anual {
    padding-left: 150px !important;
    margin-left: 0 !important;
    display: flex;
}

.total-item {
    background-color: rgb(86, 174, 233);
    /* Cor de fundo do item */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-transform: uppercase;
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    transition: 0.7s ease-in-out;
}

.total-item.div1 {
    grid-area: 1 / 1 / 2 / 2;
}

.total-item.div2 {
    grid-area: 1 / 2 / 2 / 3;
}

.total-item.div3 {
    grid-area: 1 / 3 / 2 / 4;
}

.total-item.div4 {
    grid-area: 2 / 1 / 3 / 2;
}

.total-item.div5 {
    grid-area: 2 / 2 / 3 / 3;
}

.total-item.div6 {
    grid-area: 2 / 3 / 3 / 4;
}

.total-item:hover {
    background-color: rgb(71, 146, 196);
    transition: 0.7s ease-in-out;
}

.desc-totais {
    font-size: 1.1rem;
}

.desc-tot-values {
    font-size: 1.3rem;
    font-weight: 500;
}

.desc-ranks {
    margin-bottom: 90px;
    font-size: 1.5rem;
    text-transform: uppercase;
    font-weight: 700;
    text-align: center;
    color: white;
}

.rank-item {
    background-color: rgb(86, 174, 233);
    padding: 15px;
    width: 25%;
    height: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    border-radius: 10px;
}

.vendor-name {
    font-size: 1.3rem;
    text-transform: uppercase;
    background-color: rgb(36, 36, 36);
    color: white;
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    cursor: pointer;
    transition: 0.6s ease-in-out;
}

.vendor-name:hover {
    background-color: rgb(65, 189, 226);
    transition: 0.6s ease-in-out;
}