.w2cloud-dashboard-content {
    background-color:#f5f6fa;

    .main-menu {
        display: flex;
        flex-flow: row;

        & > div > .nav-tabs {
            display: flex;
            flex-flow: column;
            width: 220px;
            height: 100%;
            background-color: rgb(255, 255, 255);
            border: none;
            position: relative;
            padding-bottom: 460px;

            & > .nav-item {
                &:first-child {
                    margin-bottom: 110px;
                    margin-top: 50px;
                    text-align: center;
                    a {
                        padding: 0px;
                    }
                }
                &:nth-child(2) {
                    a {
                        margin-top: 0;
                    }
                }
                &:not(:first-child) a {
                    position: relative;
                    font-size: 14px;
                    color: #333951;
                    text-transform: capitalize;
                    border: none;
                    margin-top: 36px;
                    padding: 1px 15px 1px 66px;

                    &:before {
                        content: "";
                        position: absolute;
                        left: 0;
                        top: 0;
                        height: 100%;
                        width: 3px;
                        background: #0058fb;
                        opacity: 0;
                        visibility: hidden;
                        transition: all 0.3s ease;
                    }
                    &:hover,
                    &.active {
                        color: #0058fb;

                        &:before{
                            opacity: 1;
                            visibility: visible;
                        }
                    }

                    .icon{
                        position: absolute;
                        top: 50%;
                        left: 35px;
                        transform: translateY(-50%);
                        transition: all 0.3s ease;
                    }
                    .hover-img{
                        opacity: 0;
                        visibility: hidden;
                    }
                    &:hover,
                    &.active{
                        .hover-img {
                            opacity: 1;
                            visibility: visible;
                        }
                        .regular-img{
                            opacity: 0;
                            visibility: hidden;
                        }
                    }
                }
                &:last-child {
                    text-align: center;
                    position: absolute;
                    bottom: 50px;
                    left: 16px;
                    right: 16px;
                    a {
                        margin-top: 0px;
                        padding: 0px;
                        &:before {
                            content: "";
                            display: none;
                        }
                        &.active {
                            color: #0058fb;

                            &:before {
                                opacity: 1;
                                visibility: visible;
                            }
                        }
                    }
                    &:before {
                        opacity: 0;
                        visibility: hidden;
                    }
                    &:hover,
                    &.active {
                        color: #0058fb;
                    }
                    .w2cloud__resources {
                        margin-top: -20px;
                        padding: 50px 25px 25px;
                        border-radius: 5px;
                        background: rgb(210, 240, 231);
                        span {
                            font-weight: 500;
                            color:#0058fb;
                            }
                        a {
                            font-weight: 500;
                            color: #fff;
                            padding: 0px 20px;
                            border: 1px solid rgba(0, 0, 0, 0);
                            &:hover {
                                box-shadow: none;
                                background: rgba(0, 0, 0, 0);
                                border-color: #0058fb;
                                color: #0058fb;
                            }
                        }

                        p {
                            padding-bottom: 25px;
                        }
                    }
                }
            }
        }

        & > .tab-content{
            width: calc(100% - 222px);
            padding: 50px;
        }

    }


    .w2cloud__menubar {
            padding: 40px;
        .w2cloud__storage-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            padding-bottom: 70px;

            .w2cloud__media {
                background-color: #0058fb;
                border-radius: 10px;
                padding: 50px 0px 50px 50px;
                position: relative;
                display: flex;
                width: 75%;
                max-width: 100%;

                .w2cloud__media--title {
                    max-width: 460px;
                    h4 {
                        padding-bottom: 14px;
                    }
                    p {
                        font-weight: 500;
                        color:#fff;
                    }
                }
                .w2cloud__media--image {
                    position: absolute;
                    right: -18px;
                    top: 53px;
                }
            }
            .w2cloud-review {
                background-color:#093d69;
                padding: 30px 0px 20px 30px;
                border-radius: 10px;
                .w2cloud__star {
                    display: flex;
                    align-items: center;
                    img {
                        background: rgb(19, 81, 113);
                        padding: 14px;
                        border-radius: 4px;
                        margin-right: 10px;
                    }
                    p {
                        font-size: 18px;
                        font-weight: 500;
                        color: rgb(255, 255, 255);
                    }
                }
                .w2cloud__rate {
                    padding-top: 85px;
                    span  {
                        font-size: 35px;
                        font-weight: 500;
                        color:#fff;
                    }
                    .w2cloud__btn-radius {
                        border-top-left-radius: 50px;
                        border-bottom-left-radius: 50px;
                        margin-left: 35px;
                    }
                }
            }

        }
        h5 {
            padding-bottom: 25px;
        }


    }
}