/**
 * NOTICE OF LICENSE
 *
 * This module was created by SmartPresta and is protected by the laws of Copyright.
 * We offer high quality and useful modules for PrestaShop and modifications for your online store.
 *
 * This module is licensed for one customer to use on one installation.
 * Site developer has the right to modify this module to suit their needs, but can not redistribute the module in
 * whole or in part. Any other use of this module constitues a violation of the user agreement.
 *
 * @author    Pedram Saeedi <LuckyPed10@gmail.com>
 * @copyright SmartPresta
 * @license   Purchased through addons.prestashop.com (see above for detail).
 * @category  PrestaShop Module
 */

.wm-tabs {
    width: 100%;
    height: 100%;
}

.wm-tab-links {
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
    flex-wrap: wrap;
}

.wm-tab-links a {
    color: #000;
    text-decoration: none;
    padding: 10px 15px;
}

.wm-tab-links a.active {
    background-color: #82a7d6;
}

.wm-tab-content {
    padding: 20px;
    height: calc(100% - 40px);
}

.wm-tab {
    display: none;
}

.wm-tab.active {
    display: block;
}

@media (max-width: 767px) {
    .wm-responsive-table thead {
        display: none;
    }

    .wm-responsive-table tr {
        margin-bottom: 10px;
        display: flex;
        flex-direction: column;
        box-shadow: 0 1px 3px rgba(0,0,0,0.2);
    }

    .wm-responsive-table td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid #ddd;
        padding: 10px;
    }

    .wm-responsive-table td:before {
        content: attr(data-label);
        flex-basis: 50%;
        text-transform: uppercase;
        font-weight: bold;
    }
}