/**
 * @Author    HopZone Eu
 * @Author    DenArt Designs
 * @Developer Nightwolf
 * @version   5.0.9
 * @package   Donate Panel
 *
 * Purchased: https://hopzone.eu/store/product/26-donate-panel-v5/
 * Managed: https://hopzone.eu/clients/purchases/
 *
 * Software Usage Agreement
 *
 * This software, originally developed by DenArt Designs,
 * has been officially transferred to HopZone EU on 1/3/2024.
 * HopZone EU holds complete ownership of these files.
 *
 * By using this software, you agree to the following terms:
 *  1) No redistribution, modification, or reverse engineering without explicit permission.
 *  2) The software is provided as-is, without warranty.
 *  3) The developer bears no liability for any damages arising from its use.
 * Removing this notice constitutes a violation of the agreement.
 */

ul.tabs {
    padding: 14px 0 8px;
    margin: 0;
    list-style-type: none;
    text-align: center;
}

ul.tabs li {
    display: inline;
    margin: 0;
    margin-right: 2px;
    font: normal 12px Verdana;
}

ul.tabs li a {
    text-decoration: none;
    position: relative;
    padding: 8px 22px;
    color: #000;
    border-radius: 3px 3px 0 0;
    outline: none;
}


ul.tabs li a:hover {
    text-decoration: underline;
    color: #000;
}

ul.tabs li.selected a {
    position: relative;
    top: 0px;
    font-weight: bold;

    border: 1px solid #AAA;
    border-bottom: 1px solid #FFF;
    color: #000;
}


ul.tabs li.selected a:hover, ul.tabs li.selected a:hover {
    text-decoration: none;
}

div.tabcontents {
    border-top-color: #AAA;
    background-color: #FFF;
    border-radius: 0 0 2px 2px;
}

/*----- Tabs -----*/
.tabs {
    width: 100%;
    display: inline-block;
}

/*----- Tab Links -----*/
/* Clearfix */
.tab-links:after {
    display: block;
    clear: both;
    content: '';
}

.tab-links li {
    margin: 0px 5px;
    float: left;
    list-style: none;
}

.tab-links a {
    padding: 9px 15px;
    display: inline-block;
    border-radius: 3px 3px 0px 0px;
    font-size: 16px;
    font-weight: 600;
    color: #4c4c4c;
    transition: all linear 0.15s;
}

.tab-links a:hover {
    background: #a7cce5;
    text-decoration: none;
}

li.active a, li.active a:hover {
    background: #7FB5DA;

    color: #4c4c4c;
}

/*----- Content of Tabs -----*/
.tab-content {
    padding: 15px;
    border-radius: 3px;
    box-shadow: -1px 1px 1px rgba(0, 0, 0, 0.15);
    background: #fff;
}

.tab {
    display: none;
}

.tab.active {
    display: block;
}