@charset "UTF-8";

@import url(https://fonts.googleapis.com/icon?family=Material+Icons);
/*@import url(https://fonts.googleapis.com/css?family=Lato:300);*/
/*@import url(http://netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.min.css);*/
/*body
{
    margin: 0;
    padding: 0;
    font-family: 'Lato' , sans-serif;
    color: #333;
    background-size: 100%;
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: none;
    background-color: #475264;
}*/
/*p
{
    margin: 0;
    padding: 0 0 10px 0;
    line-height: 20px;
}*/

/* ===================================
   Modern Pricing Table Styles
   =================================== */

.pricing-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    padding: 40px 20px;
    margin: 0 auto;
    max-width: 1400px;
}

/* Card Base Styles */
.pricing-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    flex: 1;
    min-width: 280px;
    max-width: 380px;
    position: relative;
    display: flex;
    flex-direction: column;
}

    .pricing-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    }

    /* Featured Badge */
    .pricing-card.featured {
        border: 3px solid #BD0303;
        transform: scale(1.05);
    }

        .pricing-card.featured::before {
            content: "POPULAR";
            position: absolute;
            top: 25px;
            right: -35px;
            background: linear-gradient(135deg, #BD0303 0%, #8B0000 100%);
            color: white;
            padding: 8px 45px;
            transform: rotate(45deg);
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 1px;
            z-index: 10;
            box-shadow: 0 4px 12px rgba(189, 3, 3, 0.3);
        }

        .pricing-card.featured:hover {
            transform: scale(1.05) translateY(-12px);
        }

/* Header Section */
.pricing-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 40px 25px 35px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

    .pricing-header::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
        animation: pulse 4s ease-in-out infinite;
    }

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.3;
    }
}

.pricing-header.primary {
    background: linear-gradient(135deg, #BD0303 0%, #8B0000 100%);
}

.pricing-header.secondary {
    background: linear-gradient(135deg, #4A5568 0%, #2D3748 100%);
}

.pricing-header.success {
    background: linear-gradient(135deg, #48BB78 0%, #38A169 100%);
}

.pricing-header.gold {
    background: linear-gradient(135deg, #F6AD55 0%, #DD6B20 100%);
}

.pricing-title {
    font-size: 26px;
    font-weight: 700;
    margin: 0 0 12px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
}

.pricing-subtitle {
    font-size: 13px;
    opacity: 0.95;
    margin: 0;
    font-weight: 400;
    position: relative;
    z-index: 1;
    line-height: 1.5;
}

/* Price Section */
.pricing-price {
    padding: 45px 25px;
    text-align: center;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    border-bottom: 1px solid #e9ecef;
    position: relative;
}

.price-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    margin-bottom: 10px;
}

.currency-sign {
    font-size: 36px;
    font-weight: 600;
    color: #495057;
    position: relative;
    top: -5px;
}

.price-value {
    font-size: 64px;
    font-weight: 800;
    color: #000;
    line-height: 1;
    letter-spacing: -2px;
}

.price-description {
    font-size: 14px;
    color: #6c757d;
    margin: 10px 0 0 0;
    font-weight: 500;
}

.fee-info {
    font-size: 12px;
    color: #ff6a00;
    margin-top: 12px;
    font-weight: 600;
}

/* Features Section */
.pricing-features {
    padding: 35px 30px;
    flex: 1;
    background: #fff;
}

    .pricing-features ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .pricing-features li {
        padding: 14px 0;
        border-bottom: 1px solid #f0f0f0;
        display: flex;
        align-items: flex-start;
        gap: 14px;
        transition: all 0.3s ease;
    }

        .pricing-features li:last-child {
            border-bottom: none;
        }

        .pricing-features li:hover {
            padding-left: 8px;
            background: rgba(189, 3, 3, 0.02);
        }

.feature-checkbox {
    min-width: 22px;
    height: 22px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: #BD0303;
    border-radius: 4px;
}

    .feature-checkbox:disabled {
        cursor: not-allowed;
        opacity: 0.5;
    }

.feature-text {
    flex: 1;
    font-size: 15px;
    color: #2d3748;
    line-height: 1.6;
    font-weight: 500;
}

.feature-price {
    font-size: 14px;
    font-weight: 700;
    color: #BD0303;
    white-space: nowrap;
}

.feature-description {
    font-size: 12px;
    color: #718096;
    margin-top: 6px;
    line-height: 1.5;
}

/* Quantity Section */
.pricing-quantity {
    padding: 25px 30px;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    border-top: 1px solid #e9ecef;
}

.quantity-label {
    font-weight: 700;
    color: #2d3748;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.quantity-select {
    padding: 12px 40px 12px 16px;
    border: 2px solid #cbd5e0;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
    color: #2d3748;
    min-width: 80px;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
}

    .quantity-select:hover {
        border-color: #BD0303;
        box-shadow: 0 0 0 3px rgba(189, 3, 3, 0.1);
    }

    .quantity-select:focus {
        outline: none;
        border-color: #BD0303;
        box-shadow: 0 0 0 4px rgba(189, 3, 3, 0.15);
    }

/* Status Messages */
.pricing-status {
    padding: 25px 30px;
    text-align: center;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.status-badge {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

    .status-badge.sold-out {
        background: linear-gradient(135deg, #fee 0%, #fdd 100%);
        color: #c00;
        box-shadow: 0 4px 12px rgba(204, 0, 0, 0.2);
    }

    .status-badge.coming-soon {
        background: linear-gradient(135deg, #fff3cd 0%, #ffe69c 100%);
        color: #856404;
        box-shadow: 0 4px 12px rgba(133, 100, 4, 0.2);
    }

    .status-badge.available-soon {
        background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
        color: #065f46;
        box-shadow: 0 4px 12px rgba(6, 95, 70, 0.2);
    }

.status-message {
    margin-top: 14px;
    font-size: 13px;
    color: #718096;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .pricing-container {
        gap: 25px;
    }

    .pricing-card {
        max-width: 350px;
    }
}

@media (max-width: 992px) {
    .pricing-container {
        gap: 30px;
        padding: 30px 15px;
    }

    .pricing-card {
        min-width: 300px;
        max-width: 400px;
    }

        .pricing-card.featured {
            transform: scale(1);
        }

            .pricing-card.featured:hover {
                transform: translateY(-12px);
            }
}

@media (max-width: 768px) {
    .pricing-container {
        gap: 25px;
    }

    .pricing-card {
        min-width: 100%;
        max-width: 500px;
    }

    .price-value {
        font-size: 56px;
    }

    .currency-sign {
        font-size: 32px;
    }

    .pricing-title {
        font-size: 24px;
    }

    .pricing-header {
        padding: 35px 20px 30px;
    }

    .pricing-features {
        padding: 30px 25px;
    }

    .pricing-quantity {
        padding: 20px 25px;
    }
}

@media (max-width: 480px) {
    .pricing-container {
        padding: 20px 10px;
    }

    .pricing-header {
        padding: 30px 15px 25px;
    }

    .price-value {
        font-size: 48px;
    }

    .currency-sign {
        font-size: 28px;
    }

    .pricing-title {
        font-size: 20px;
        letter-spacing: 1px;
    }

    .pricing-features {
        padding: 25px 20px;
    }

    .feature-text {
        font-size: 14px;
    }

    .pricing-quantity {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .quantity-select {
        width: 100%;
    }
}

/* Animation Classes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pricing-card {
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

    .pricing-card:nth-child(1) {
        animation-delay: 0.1s;
    }

    .pricing-card:nth-child(2) {
        animation-delay: 0.2s;
    }

    .pricing-card:nth-child(3) {
        animation-delay: 0.3s;
    }

    .pricing-card:nth-child(4) {
        animation-delay: 0.4s;
    }

/* Legacy Support - Override old styles */
#generic_price_table {
    background: transparent;
}

.generic_content {
    background: white !important;
    border-radius: 20px !important;
    overflow: hidden !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08) !important;
}

    .generic_content:hover {
        transform: translateY(-12px) !important;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15) !important;
    }

/* Loading State */
.pricing-card.loading {
    opacity: 0.5;
    pointer-events: none;
}

    .pricing-card.loading::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 40px;
        height: 40px;
        margin: -20px 0 0 -20px;
        border: 3px solid #f3f3f3;
        border-top: 3px solid #BD0303;
        border-radius: 50%;
        animation: spin 1s linear infinite;
    }

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Print Styles */
@media print {
    .pricing-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }

        .pricing-card:hover {
            transform: none;
        }
}

/* Master Reports */
.modern-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-bottom: 20px;
    overflow: hidden;
}

.card-header-modern {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 20px;
    border-bottom: none;
}

.summary-table {
    margin: 0;
}

    .summary-table tbody tr:hover {
        background-color: #f8f9fa;
    }

    .summary-table td {
        padding: 12px 15px;
        border-bottom: 1px solid #e9ecef;
    }

.stat-card {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.2s, box-shadow 0.2s;
    height: 100%;
    border-left: 4px solid;
}

    .stat-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    }

    .stat-card.card-primary {
        border-left-color: #667eea;
    }

    .stat-card.card-success {
        border-left-color: #10b981;
    }

    .stat-card.card-info {
        border-left-color: #3b82f6;
    }

.stat-icon {
    font-size: 2.5rem;
    opacity: 0.2;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 10px 0;
    color: #1f2937;
}

.stat-label {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #6b7280;
    font-weight: 800;
}

.stat-description {
    font-size: 1.1rem;
    color: #9ca3af;
    font-weight: 800;
    margin-top: 8px;
}

.info-panel {
    background: #f0f9ff;
    border-left: 4px solid #3b82f6;
    padding: 15px;
    border-radius: 4px;
    margin-top: 15px;
}

    .info-panel h5 {
        color: #1e40af;
        margin-top: 0;
        font-weight: 600;
    }

.info-item {
    margin-bottom: 8px;
}

    .info-item strong {
        color: #1f2937;
    }

.form-section {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.form-modern .form-control {
    border-radius: 6px;
    border: 1px solid #d1d5db;
    padding: 10px 15px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

    .form-modern .form-control:focus {
        border-color: #667eea;
        box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    }

.table-modern {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

    .table-modern thead th {
        background: #f9fafb;
        color: #374151;
        font-weight: 600;
        font-size: 0.813rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        border-bottom: 2px solid #e5e7eb;
        padding: 12px 8px;
    }

    .table-modern tbody tr:hover {
        background-color: #f9fafb;
    }

.btn-modern {
    border-radius: 6px;
    padding: 10px 24px;
    font-weight: 600;
    transition: all 0.2s;
    border: none;
}

.btn-modern-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

    .btn-modern-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
    }

.btn-modern-danger {
    background: #ef4444;
    color: #fff;
}

    .btn-modern-danger:hover {
        background: #dc2626;
    }

.breadcrumb-modern {
    background: transparent;
    padding: 15px 0;
    margin-bottom: 20px;
}

    .breadcrumb-modern a {
        color: #6b7280;
        text-decoration: none;
        transition: color 0.2s;
    }

        .breadcrumb-modern a:hover {
            color: #667eea;
        }

.loader-container {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.spinner {
    width: 20px;
    height: 20px;
    border: 3px solid #f3f4f6;
    border-top-color: #667eea;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.modal-modern .modal-content {
    border-radius: 12px;
    border: none;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.modal-modern .modal-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-radius: 12px 12px 0 0;
    padding: 20px 30px;
}

.modal-modern .modal-body {
    padding: 30px;
}

.tab-modern .nav-tabs {
    border-bottom: 2px solid #e5e7eb;
}

    .tab-modern .nav-tabs .nav-link {
        border: none;
        color: #6b7280;
        padding: 12px 24px;
        font-weight: 600;
        transition: all 0.2s;
    }

        .tab-modern .nav-tabs .nav-link.active {
            color: #667eea;
            border-bottom: 3px solid #667eea;
            background: transparent;
        }

.alert-modern {
    border-radius: 8px;
    border: none;
    padding: 15px 20px;
    color: darkblue;
}

    .alert-modern.alert-success {
        background: #d1fae5;
        color: #065f46;
    }

    .alert-modern.alert-danger {
        background: #fee2e2;
        color: #991b1b;
    }

@media (max-width: 768px) {
    .stat-card {
        margin-bottom: 15px;
    }

    .stat-value {
        font-size: 1.5rem;
    }

    .hide-mobile {
        display: none;
    }
}

/* Instance ticket sales report */
.bold-noindent {
    font-weight: bold;
    margin-left: 0
}

.bold-indent1 {
    font-weight: bold;
    margin-left: 15px;
}

.indent2 {
    margin-left: 30px;
}
/* for entry length on data tables of ticket sales report*/
.report-l-275 {
    margin-left: 275px;
}
/*.dataTable span {
    display:none;
}*/
/* QuickLaunch */
.qlStatsHdr {
    width: 90px;
    display: inline-block;
}

.qlStatusReload {
    /*background-image: url(/images/portlet-reload-icon.png);*/
    width: 13px;
}
/*instances revenue summary box*/
.sale-num {
    width: 65px;
    display: inline-block;
    text-align: right;
    padding-right: 4px;
}

.dataTables_wrapper .dt-buttons {
    float: left;
    text-align: center;
    margin-bottom: 25px;
}

#showMe {
    display: none;
}

#contactList_filter {
}

.dataTables_filter {
    float: right;
}

.margin-5 {
    margin: 5px;
    float: right;
}

.blk {
    background: #000;
    color: #fff;
}

.span4 {
    width: 80px;
    float: left;
    margin: 0 8px 10px 8px;
}

.clockedIn {
    background-color: #8775a7;
}

.clockedOut {
    background-color: #b4b2b7;
}

.phone {
    margin-top: 15px;
    background: #fff;
}

.tel {
    margin-bottom: 10px;
    margin-top: 10px;
    border: 1px solid #9e9e9e;
    border-radius: 0px;
}

.num-pad {
    padding-left: 15px;
}


.num {
    border: 1px solid #9e9e9e;
    -webkit-border-radius: 999px;
    border-radius: 999px;
    -moz-border-radius: 999px;
    height: 80px;
    background-color: #fff;
    color: #333;
    cursor: pointer;
}

    /* WITH THIS (correct): */
    .num:hover {
        background-color: #9e9e9e;
        color: #fff;
        transition: background-color 0.2s linear;
        -moz-transition: background-color 0.2s linear;
        -webkit-transition: background-color 0.2s linear;
        -o-transition: background-color 0.2s linear;
    }

.txt {
    font-size: 30px;
    text-align: center;
    margin-top: 15px;
    font-family: 'Lato', sans-serif;
    line-height: 30px;
    color: #333;
}

.small {
    font-size: 15px;
}

.btn {
    font-weight: bold;
    -webkit-transition: .1s ease-in background-color;
    -webkit-font-smoothing: antialiased;
    letter-spacing: 1px;
}

    .btn:hover {
        transition: background-color 0.2s linear, color 0.2s linear;
        -moz-transition: background-color 0.2s linear, color 0.2s linear;
        -webkit-transition: background-color 0.2s linear, color 0.2s linear;
        -o-transition: background-color 0.2s linear, color 0.2s linear;
    }

.spanicons {
    width: 72px;
    float: left;
    text-align: center;
    margin-top: 40px;
    color: #9e9e9e;
    font-size: 30px;
    cursor: pointer;
}

    .spanicons:hover {
        color: #3498db;
        transition: color 0.2s linear;
        -moz-transition: color 0.2s linear;
        -webkit-transition: color 0.2s linear;
        -o-transition: color 0.2s linear;
    }

span.status-active {
    text-align: center;
    background-color: #171E28;
}

span.status-disabled {
    text-align: center;
    background-color: #800000;
}

span.unsubscribed {
    text-align: center;
    color: red;
}

span.deleted {
    text-align: center;
    color: red;
}

span.unverified {
    text-align: center;
    color: red;
}
/*/* Padding - just for asthetics on Bootsnipp.com */
body {
    margin-top: 20px;
}

/* CSS for Credit Card Payment form */
.credit-card-box .panel-title {
    display: inline;
    font-weight: bold;
}

.credit-card-box .form-control.error {
    border-color: red;
    outline: 0;
    box-shadow: inset 0 1px 1px rgba(0,0,0,0.075),0 0 8px rgba(255,0,0,0.6);
}

.credit-card-box label.error {
    font-weight: bold;
    color: red;
    padding: 2px 8px;
    margin-top: 2px;
}

.credit-card-box .payment-errors {
    font-weight: bold;
    color: red;
    padding: 2px 8px;
    margin-top: 2px;
}

.credit-card-box label {
    display: block;
}
/* The old "center div vertically" hack */
.credit-card-box .display-table {
    display: table;
}

.credit-card-box .display-tr {
    display: table-row;
}

.credit-card-box .display-td {
    display: table-cell;
    vertical-align: middle;
    width: 50%;
}
/* Just looks nicer */
.credit-card-box .panel-heading img {
    min-width: 180px;
}

.btn-sm,
.btn-group-sm > .btn {
    padding: 5px 10px;
    font-size: 14px;
    line-height: 1.5;
    border-radius: 3px;
}

input {
    font-size: 16px;
}

.btn-warning {
    color: #ffffff;
    background-color: #f89406;
    border-color: #f89406;
}
/*===============CUSTOM REBELITY BUTTONS===================*/
.btn-rebelity-save {
    color: #ffffff;
    background-color: #9bce7d;
    border-color: #f89406;
}

.btn-rebelity-ok {
    color: #ffffff;
    background-color: #72ac93;
    /*border-color: #f89406;*/
}

.btn-rebelity-next {
    color: #ffffff;
    background-color: #699e77;
    /*border-color: #f89406;*/
}

.btn-rebelity-danger {
    color: #ffffff;
    background-color: #bd0102;
    /*border-color: #f89406;*/
}

.btn-rebelity-warning {
    color: #ffffff;
    background-color: #98002f;
    /*border-color: #f89406;*/
}

.btn-rebelity-tone1 {
    color: #fff;
    background-color: #c5d5cb;
    /*border-color: #171E28;*/
}

.btn-rebelity-tone2 {
    color: #ffffff;
    background-color: #9fa8a3;
    /*border-color: #171E28;*/
}

.btn-rebelity-tone3 {
    color: #22313F;
    background-color: #e3e0cf;
    /*border-color: #f89406;*/
}

.btn-rebelity-tone4 {
    color: #ffffff;
    background-color: #b3c2bf;
    /*border-color: #f89406;*/
}
/*----------------------------------------------------*/
.center {
    text-align: center;
}

.tleft {
    text-align: left;
}

.tright {
    text-align: right;
}

.f15 {
    font-size: 15px;
}

.f15b {
    font-weight: bold;
    font-size: 15px;
}

.f18 {
    font-size: 18px;
}

.f18b {
    font-weight: bold;
    font-size: 18px;
}

.f20b {
    font-weight: bold;
    font-size: 20px;
}

.f20 {
    font-size: 20px;
}

.f25 {
    font-size: 25px;
}

.f95 {
    font-size: 95px;
}

#updateMsg {
    margin: 10px;
    font-size: 14px;
    font-weight: normal;
}

.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning:active,
.btn-warning.active,
.open > .dropdown-toggle.btn-warning {
    color: #ffffff;
    background-color: #c67605;
    border-color: #bc7005;
}

.btn-warning:active,
.btn-warning.active,
.open > .dropdown-toggle.btn-warning {
    background-image: none;
}

.btn-warning .badge {
    color: #f89406;
    background-color: #ffffff;
}

.btn.btn-warning {
    background-color: #fd3d00;
    border-color: #f89406;
    color: #fff;
    -webkit-transition: background-color 0.3s, color 0.3s;
    transition: background-color 0.3s, color 0.3s;
}

    .btn.btn-warning:hover {
        background-color: #f89406;
        color: white;
    }

.fa-5x {
    font-size: 5em;
}

.color-1 {
    color: #0000FF;
}

.color-2 {
    color: #FF8C00;
}

.color-3 {
    color: #FF1493;
}

.color-4 {
    color: #7CFC00;
}

.color-5 {
    color: #00FA9A;
}

.color-6 {
    color: #8A2BE2;
}

.color-7 {
    color: #00FFFF;
}

span.label {
    display: block;
    width: 100px;
}

span.label-normal {
    display: inline;
    width: auto;
    padding: 4px;
    border-radius: 4px;
}

.nav > li > a {
    position: relative;
    display: block;
    padding: 10px 15px;
}

#Wizard {
    position: relative;
    display: block;
    padding: 0px 0px;
}

#Wizard1 {
    position: relative;
    display: block;
    padding: 0px 10px;
}

.form-wizard .steps > li.active > a.step .number {
    background-color: #22313F;
    color: #FFF;
}

.input-group-addon1 {
    padding: 0px;
    font-size: 0px;
    font-weight: normal;
    text-align: center;
    border-radius: 4px;
}

.font-green-add {
    color: green;
}

.form-control-static {
    min-height: 0px;
    padding-top: 0px;
    padding-bottom: 0px;
    margin-bottom: 0px;
    margin: 0px 0px;
    display: inline-block;
}

.dashboard-stat .details2 {
    position: absolute;
    color: #ffffff;
    padding-right: 15px;
}

.dashboard-stat .more2 {
    clear: both;
    display: block;
    padding: 3px 0px;
    position: relative;
    /*text-transform: uppercase;*/
    font-weight: 300;
    font-size: 12px;
    /*opacity: 0.7;*/
}

.control-label {
    font-size: 12px;
    color: rgb(128, 128, 128);
}

#portlet-review {
    border: 0px none !important;
    padding: 10px;
    box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.1);
}
/* for data validation errors */
.errorElement {
    outline: solid red 1px;
}

.note.note-notesBox {
    background-color: #c5d5cb;
    border-color: #dde0cd;
    padding: 10px;
    color: #3b3a36;
}
/* custom fields delete */
.delete-custom {
    font-size: 18px;
    color: red;
    font-weight: bold
}

a.delete-custom:hover {
    text-decoration: none;
}
/* settings event data fields */
.fieldContainer {
    box-sizing: border-box;
    list-style: none;
    margin: 0;
    padding: 0 5px;
    width: 100%;
}

.event-field {
    background-color: #e4e4e4;
    border: 1px solid #aaa;
    border-radius: 4px;
    cursor: default;
    float: left;
    margin-right: 5px;
    margin-top: 5px;
    padding: 0 5px;
}

    .event-field span.removeField {
        color: #999;
        cursor: pointer;
        display: inline-block;
        font-weight: bold;
        margin-right: 2px;
        position: relative;
        top: -1px;
    }

.margin-r-5 {
    margin-right: 5px;
}

.margin-l-5 {
    margin-left: 5px;
}

.text-ellipsis {
    text-overflow: ellipsis;
}

.filter-col {
    padding-left: 10px;
    padding-right: 10px;
}

@media (max-width: 767px) {
}

form .error {
    color: #ff0000;
}
/* spinner */
.loader,
.loader:after {
    border-radius: 50%;
    width: 10em;
    height: 10em;
}

.loader {
    /*margin: 60px auto;*/
    font-size: 10px;
    position: absolute;
    left: 40%;
    top: 30%;
    text-indent: -9999em;
    border-top: 1.1em solid #b4b2b7;
    border-right: 1.1em solid #b4b2b7;
    border-bottom: 1.1em solid #b4b2b7;
    border-left: 1.1em solid #3498db;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-animation: load8 1.1s infinite linear;
    animation: load8 1.1s infinite linear;
    z-index: 100;
}

@-webkit-keyframes load8 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes load8 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.tracking-detail {
    padding: 3rem 0
}

#tracking {
    margin-bottom: 1rem
}

[class*=tracking-status-] p {
    margin: 0;
    /*font-size: 1.1rem;*/
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
    text-align: center
}

[class*=tracking-status-] {
    padding: 1.6rem 0
}

.tracking-status-intransit {
    background-color: #8877a9
}

.tracking-status-outfordelivery {
    background-color: #f5a551
}

.tracking-status-deliveryoffice {
    background-color: #f7dc6f
}

.tracking-status-delivered {
    background-color: #4cbb87
}

.tracking-status-attemptfail {
    background-color: #b789c7
}

.tracking-status-error, .tracking-status-exception {
    background-color: #d26759
}

.tracking-status-expired {
    background-color: #616e7d
}

.tracking-status-pending {
    background-color: #ccc
}

.tracking-status-inforeceived {
    background-color: #214977
}

.tracking-list {
    border: 1px solid #e5e5e5
}

.tracking-item {
    border-left: 1px solid #e5e5e5;
    position: relative;
    font-weight: bold;
    padding: 2rem 1.5rem .5rem 2.5rem;
    font-size: 1.2rem;
    margin-left: 3rem;
    min-height: 5rem
}

    .tracking-item:last-child {
        padding-bottom: 4rem
    }

    .tracking-item .tracking-date {
        margin-bottom: .5rem
    }

        .tracking-item .tracking-date span {
            color: #888;
            font-size: 85%;
            padding-left: .4rem
        }

    .tracking-item .tracking-content {
        padding: .5rem .8rem;
        background-color: #f4f4f4;
        border-radius: .5rem
    }

        .tracking-item .tracking-content span {
            display: block;
            color: #888;
            font-size: 85%
        }

    .tracking-item .tracking-icon {
        line-height: 2.6rem;
        position: absolute;
        left: -1.3rem;
        width: 2.6rem;
        height: 2.6rem;
        text-align: center;
        border-radius: 50%;
        font-size: 1.1rem;
        background-color: #fff;
        color: #fff
    }

        .tracking-item .tracking-icon.status-sponsored {
            background-color: #f68
        }

        .tracking-item .tracking-icon.status-delivered {
            background-color: #4cbb87
        }

        .tracking-item .tracking-icon.status-outfordelivery {
            background-color: #f5a551
        }

        .tracking-item .tracking-icon.status-deliveryoffice {
            background-color: #f7dc6f
        }

        .tracking-item .tracking-icon.status-attemptfail {
            background-color: #b789c7
        }

        .tracking-item .tracking-icon.status-exception {
            background-color: #d26759
        }

        .tracking-item .tracking-icon.status-inforeceived {
            background-color: #214977
        }

        .tracking-item .tracking-icon.status-intransit {
            color: #ccbbf0;
            border: 3px solid #7456b5;
            font-size: .6rem
        }

@media(min-width:992px) {
    .tracking-item {
        margin-left: 10rem
    }

        .tracking-item .tracking-date {
            position: absolute;
            left: -10rem;
            width: 7.5rem;
            text-align: right
        }

            .tracking-item .tracking-date span {
                display: block
            }

        .tracking-item .tracking-content {
            padding: 0;
            background-color: transparent
        }
}
/*client member admin loader*/
.program-wait {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
    background-color: #d5d9d7;
    opacity: 0.5;
    padding: 160px 50%;
    font-size: 24px;
    z-index: 100
}

.d-hide {
    display: none !important
}

/* ===================================
   Emoji and UTF-8 Character Support
   =================================== */

* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body,
.price-description,
.feature-description,
.pricing-subtitle,
.status-message,
p, span, div {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji", sans-serif;
}

/* Ensure emoji render at correct size */
.emoji {
    font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
    font-size: inherit;
    line-height: inherit;
}

/* Fix emoji in pricing descriptions */
.price-description,
.feature-description,
.pricing-subtitle {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji", sans-serif !important;
}
/* Add to your stylesheet */
.bootstrap-tagsinput {
    width: 100%;
    min-height: 38px;
    padding: 6px 12px;
}

    .bootstrap-tagsinput .tag {
        margin-right: 4px;
        margin-bottom: 4px;
        padding: 4px 8px;
        background-color: #8775a7;
        color: white;
        border-radius: 3px;
        display: inline-block;
    }

        .bootstrap-tagsinput .tag [data-role="remove"] {
            margin-left: 6px;
            cursor: pointer;
        }

    .bootstrap-tagsinput input {
        border: none;
        box-shadow: none;
        outline: none;
        background-color: transparent;
        padding: 0;
        margin: 0;
        width: auto;
        max-width: inherit;
    }

.tt-menu {
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-top: 4px;
    padding: 8px 0;
    max-height: 200px;
    overflow-y: auto;
}

.tt-suggestion {
    padding: 8px 12px;
    cursor: pointer;
}

    .tt-suggestion:hover {
        background-color: #f5f5f5;
    }

li > a:hover {
    position: relative;
    display: block;
    padding: 10px 15px;
    background-color: #8e5fa2;
}

/* Modern Revenue Card Styles */
.modern-revenue-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.modern-revenue-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.modern-revenue-card .card-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 8px 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modern-revenue-card .header-content {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #ffffff;
}

    .modern-revenue-card .header-content i {
        font-size: 14px;
    }

    .modern-revenue-card .header-content h3 {
        margin: 0;
        font-size: 14px;
        font-weight: 600;
        color: #ffffff;
    }

.modern-revenue-card .header-actions {
    display: flex;
    align-items: center;
    gap: 6px;
}

.modern-revenue-card .btn-refresh {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #ffffff;
    width: 24px;
    height: 24px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

    .modern-revenue-card .btn-refresh:hover {
        background: rgba(255, 255, 255, 0.3);
        transform: rotate(180deg);
    }

.modern-revenue-card .card-body {
    padding: 8px;
}

.modern-revenue-card .revenue-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
}

.modern-revenue-card .metric-item {
    display: flex;
    align-items: center;
    padding: 6px 8px;
    background: #f8f9fa;
    border-radius: 6px;
    transition: all 0.3s ease;
    border-left: 2px solid transparent;
}

    .modern-revenue-card .metric-item:hover {
        background: #f1f3f5;
        border-left-color: #667eea;
        transform: translateX(2px);
    }

    .modern-revenue-card .metric-item.highlight {
        background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
        border-left-color: #667eea;
    }

.modern-revenue-card .metric-icon {
    display: none;
}

.modern-revenue-card .metric-content {
    flex: 1;
    margin-left: 0;
}

.modern-revenue-card .metric-value {
    font-size: 16px;
    font-weight: 700;
    color: #2d3748;
    line-height: 1.1;
    margin-bottom: 1px;
}

.modern-revenue-card .metric-label {
    font-size: 9px;
    font-weight: 600;
    color: #718096;
    text-transform: uppercase;
    letter-spacing: 0.2px;
}

.modern-revenue-card .metric-subtext {
    display: block;
    font-size: 12px;
    color: #a0aec0;
    margin-top: 2px;
    font-weight: 400;
    text-transform: none;
}

/* Animation for spinner */
.fa-spinner.fa-spin {
    animation: fa-spin 1s infinite linear;
    color: #ffffff;
}

@keyframes fa-spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


