.mzw-tabs-widget {
    display: flex;
    background: #282a40;
    padding: 10px;
}

.mzw-tabs-widget .tab-list-area {
    width: 40%;
}
.mzw-tabs-widget .tabs-list {
    list-style: none;
    padding: 0;
    width: 100%;
    display: inline-block;
}

.mzw-tabs-widget .tab-list-title {
    font-weight: 400;
    color: white;
    padding-bottom: 15px;
}

.mzw-tabs-widget .tabs-list li {
    margin-right: 15px;
}

.mzw-tabs-widget .tabs-list a {
    display: block;
    padding: 11px 13px;
    margin-right: 0;
    margin-bottom: 5px;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    background: white;
    transition: all ease 300ms;
}

.mzw-tabs-widget .tabs-list a.active {
    border: none;
    background-color: #907f65;
    color: #fff;
}

.mzw-tabs-widget .tabs-list a:hover {
    border: none;
    background-color: #907f65;
    color: #fff;
}

.mzw-tabs-widget .tabs-content {
    width: 100%;
    margin-left: 10px;
}

.mzw-tabs-widget .tab-content {
    display: none;
    color: #424242;
}

.mzw-tabs-widget .tab-content .content {
    background-color: #fff;
    padding: 5px;
}

.mzw-tabs-widget .tabs-content-title {
    font-weight: 400;
    color: white;

}

.mzw-tabs-widget .download_icon {
    width: 35px;
}

.mzw-tabs-widget .tabs-content-title-area {
    display: flex;
    justify-content: space-between;
    padding-bottom: 5px;
}

@media only screen and (max-width: 750px) {
    .mzw-tabs-widget {
        flex-direction: column;
    }

    .mzw-tabs-widget .tab-list-area {
        width: 100%;
    }

    .mzw-tabs-widget .tabs-list li {
        margin-right: 0px;
    }

    .mzw-tabs-widget .tab-list-title {
        padding-bottom: 0px;
        text-align: center;
    }

    .mzw-tabs-widget .tabs-content {
        width: 100%;
        margin-left: 0px;
    }
}