.graphexpand {

    cursor: pointer;

    & i:first-child {
        display: inline-block;
    }

    & i:last-child{
        position: absolute;
        display: flex;
        bottom: 2px;
        transform: scale(0.01);
        justify-content: center;
        align-items: center;
    }

    & i{
		color: var(--color-text-S360);
		transition: transform 0.2s ease-out;
	}

    &:hover  {
        
        & i:first-child {
            transform: scale(0.01)
        }

        & i:last-child {
            transform: none;
        }
        
    }
}