.w2cloud__sync-area {
    border-radius: 10px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 5px 10px 0px rgba(169, 174, 195, 0.1);

    .nav {
        padding: 25px 30px 0px;
        border-bottom: 1px solid #e1e5ee;
    }
    .nav-item {
        margin: 0px 18px;
        &:first-child {
            margin: 0px 18px 0px 0px;
        }
        .nav-link {
            position: relative;
            font-size: 15px;
            font-weight: 500;
            color:#8c9fbe;
            padding: 0 0 20px;

            span {
                padding-right: 20px;
            }
            &:before {
                content: '';
                position: absolute;
                width: 0;
                height: 2px;
                left: 50%;
                bottom: -2px;
                background-color: #0058fb;
                transition: all ease-in-out .2s;
            }
            &:before {
                opacity: 0;
                visibility: hidden;
            }
            &:hover {
                background-color:#fff;
                color: #3c4863;
            }
            &.active {
                background-color:#fff;
                color: #3c4863;
                &:before {
                    opacity: 1;
                    visibility: visible;
                    width: 100%;
                    left: 0;
                }
            }
        }
    }

}
