/* =========================================================
   AWESOME SUPPORT
   EMERALD GLASSMORPHISM / PREMIUM DARK NATURE UI
   =========================================================

   Palette
   ---------------------------------------------------------
   Deep Forest       #0B1F16
   Forest            #102D20
   Emerald           #1F6B4A
   Emerald Light     #5ED39A
   Soft Mint         #C4F0D3
   Glass             rgba(255,255,255,.055)
   Glass Strong      rgba(255,255,255,.085)
   Border            rgba(196,240,211,.18)
   ========================================================= */


/* =========================================================
   01 — ROOT / MAIN CONTAINER
   ========================================================= */

.wpas {
    position: relative;

    width: 100%;
    max-width: 950px;

    margin: 24px auto;
    padding: 24px;

    box-sizing: border-box;

    color: #C4F0D3;

    background:
        radial-gradient(
            circle at 10% 0%,
            rgba(94, 211, 154, .12),
            transparent 35%
        ),
        radial-gradient(
            circle at 90% 100%,
            rgba(31, 107, 74, .16),
            transparent 40%
        ),
        rgba(11, 31, 22, .92);

    border: 1px solid rgba(196, 240, 211, .16);
    border-radius: 24px;

    box-shadow:
        0 20px 60px rgba(0, 0, 0, .30),
        inset 0 1px 0 rgba(255,255,255,.05);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    overflow: hidden;
}


/* subtle glass highlight */

.wpas::before {
    content: "";
    position: absolute;

    top: 0;
    left: 8%;
    right: 8%;

    height: 1px;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(196,240,211,.25),
        transparent
    );

    pointer-events: none;
}


/* =========================================================
   02 — RESPONSIVE
   ========================================================= */

@media (max-width: 768px) {

    .wpas {
        width: 100%;
        max-width: 100%;

        margin: 12px auto;
        padding: 16px;

        border-radius: 20px;
    }

}


@media (max-width: 480px) {

    .wpas {
        width: 100%;
        max-width: 100%;

        margin: 6px auto;
        padding: 10px;

        border-radius: 16px;
    }

}


/* =========================================================
   03 — GLOBAL TEXT
   ========================================================= */

.wpas,
.wpas p,
.wpas span,
.wpas label,
.wpas td,
.wpas th,
.wpas h1,
.wpas h2,
.wpas h3,
.wpas h4,
.wpas h5,
.wpas h6,
.wpas strong,
.wpas small {
    color: #C4F0D3;
}


/* Headings */

.wpas h1,
.wpas h2,
.wpas h3,
.wpas h4,
.wpas h5,
.wpas h6 {
    font-weight: 600;
    letter-spacing: -.2px;
}


/* =========================================================
   04 — LINKS
   ========================================================= */

.wpas a {
    color: #C4F0D3;
    text-decoration: none;

    transition:
        color .2s ease,
        opacity .2s ease,
        text-shadow .2s ease;
}

.wpas a:hover {
    color: #5ED39A;

    text-shadow:
        0 0 12px rgba(94,211,154,.22);
}


/* =========================================================
   05 — BUTTONS
   ========================================================= */

.wpas .wpas-btn,
.wpas .wpas-btn-default {

    position: relative;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 42px;

    padding: 9px 20px;

    color: #C4F0D3;

    background:
        linear-gradient(
            135deg,
            rgba(94,211,154,.12),
            rgba(31,107,74,.20)
        );

    border: 1px solid rgba(196,240,211,.28);
    border-radius: 12px;

    font-size: 16px;
    font-weight: 600;

    box-shadow:
        0 8px 25px rgba(0,0,0,.18),
        inset 0 1px 0 rgba(255,255,255,.05);

    transition:
        background .2s ease,
        border-color .2s ease,
        color .2s ease,
        transform .2s ease,
        box-shadow .2s ease;

    cursor: pointer;
}


/* Button Hover */

.wpas .wpas-btn:hover,
.wpas .wpas-btn-default:hover {

    color: #0B1F16;

    background:
        linear-gradient(
            135deg,
            #5ED39A,
            #9AE8BC
        );

    border-color: #5ED39A;

    transform: translateY(-1px);

    box-shadow:
        0 10px 28px rgba(0,0,0,.25),
        0 0 22px rgba(94,211,154,.14);
}


/* Focus */

.wpas .wpas-btn:focus,
.wpas .wpas-btn-default:focus {

    outline: none;

    border-color: #5ED39A;

    box-shadow:
        0 0 0 3px rgba(94,211,154,.13),
        0 10px 25px rgba(0,0,0,.20);
}


/* =========================================================
   06 — FORM INPUTS
   ========================================================= */

.wpas .wpas-form-control,
.wpas #wpas_ticketlist_filter input,
.wpas .wpas-submit-ticket-wysiwyg,
.wpas .wpas-wysiwyg-textarea {

    width: 100%;

    box-sizing: border-box;

    color: #C4F0D3;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,.045),
            rgba(94,211,154,.025)
        );

    border: 1px solid rgba(196,240,211,.18);
    border-radius: 12px;

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.025),
        0 8px 25px rgba(0,0,0,.10);

    transition:
        border-color .2s ease,
        background .2s ease,
        box-shadow .2s ease;
}


/* Input Hover */

.wpas .wpas-form-control:hover,
.wpas #wpas_ticketlist_filter input:hover,
.wpas .wpas-submit-ticket-wysiwyg:hover,
.wpas .wpas-wysiwyg-textarea:hover {

    border-color: rgba(196,240,211,.30);

    background:
        rgba(255,255,255,.055);
}


/* Input Focus */

.wpas .wpas-form-control:focus,
.wpas #wpas_ticketlist_filter input:focus,
.wpas .wpas-submit-ticket-wysiwyg:focus,
.wpas .wpas-wysiwyg-textarea:focus {

    color: #C4F0D3;

    background:
        rgba(255,255,255,.065);

    border-color: #5ED39A;

    outline: none;

    box-shadow:
        0 0 0 3px rgba(94,211,154,.10),
        0 8px 25px rgba(0,0,0,.16);
}


/* Placeholder */

.wpas .wpas-form-control::placeholder,
.wpas #wpas_ticketlist_filter input::placeholder,
.wpas textarea::placeholder {

    color: rgba(196,240,211,.50);

    opacity: 1;
}


/* =========================================================
   07 — TABLE / MY TICKETS
   ========================================================= */

.wpas .wpas-table {

    width: 100%;

    color: #C4F0D3;

    background:
        rgba(255,255,255,.045);

    border: 1px solid rgba(196,240,211,.13);

    border-radius: 16px;

    overflow: hidden;

    border-collapse: separate;
    border-spacing: 0;

    box-shadow:
        0 12px 35px rgba(0,0,0,.15);
}


/* Table sections */

.wpas .wpas-table > thead,
.wpas .wpas-table > tbody,
.wpas .wpas-table > tfoot {

    background: transparent;
}


/* Table cells */

.wpas .wpas-table > thead > tr > th,
.wpas .wpas-table > tbody > tr > td,
.wpas .wpas-table > tfoot > tr > td,
.wpas .wpas-table > tfoot > tr > th {

    color: #C4F0D3;

    background: transparent;

    border-color:
        rgba(196,240,211,.10);

    padding: 13px 14px;
}


/* Table Header */

.wpas .wpas-table > thead > tr > th {

    background:
        rgba(94,211,154,.07);

    color: #C4F0D3;

    font-weight: 600;

    border-bottom:
        1px solid rgba(196,240,211,.15);
}


/* Table Row */

.wpas .wpas-table > tbody > tr {

    transition:
        background .2s ease,
        transform .2s ease;
}


/* Table Hover */

.wpas .wpas-table > tbody > tr:hover,
.wpas .wpas-table > tbody > tr:hover > td {

    background:
        rgba(94,211,154,.075);

    color: #C4F0D3;
}


/* =========================================================
   08 — TICKET REPLIES CONTAINER
   ========================================================= */

.wpas .wpas-ticket-replies,
.wpas-ticket-replies {

    width: 100%;
    max-width: 100%;

    box-sizing: border-box;

    padding: 18px;

    margin: 18px 0;

    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(94,211,154,.08),
            transparent 35%
        ),
        rgba(5,18,12,.72);

    border:
        1px solid rgba(196,240,211,.12);

    border-radius: 20px;

    box-shadow:
        0 15px 40px rgba(0,0,0,.22),
        inset 0 1px 0 rgba(255,255,255,.025);

    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}


/* =========================================================
   09 — SINGLE REPLY
   ========================================================= */

.wpas-reply-single {

    position: relative;

    padding: 18px;

    margin: 14px 0;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.055),
            rgba(94,211,154,.025)
        );

    border:
        1px solid rgba(196,240,211,.12);

    border-radius: 18px;

    box-shadow:
        0 10px 30px rgba(0,0,0,.16),
        inset 0 1px 0 rgba(255,255,255,.025);

    transition:
        border-color .2s ease,
        background .2s ease,
        transform .2s ease;
}


/* Reply Hover */

.wpas-reply-single:hover {

    border-color:
        rgba(94,211,154,.25);

    background:
        linear-gradient(
            145deg,
            rgba(94,211,154,.07),
            rgba(255,255,255,.035)
        );

    transform: translateY(-1px);
}


/* =========================================================
   10 — REPLY META
   ========================================================= */

.wpas-reply-meta {

    display: flex;
    align-items: center;
    gap: 10px;

    padding: 10px 13px;

    margin: 0 0 12px;

    background:
        linear-gradient(
            135deg,
            rgba(94,211,154,.13),
            rgba(31,107,74,.08)
        );

    border:
        1px solid rgba(196,240,211,.12);

    border-radius: 13px;

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.025);
}


.wpas-reply-user,
.wpas-reply-time,
.wpas-timestamp {

    color: #C4F0D3;
}


/* Timestamp */

.wpas-timestamp {

    font-size: 15px;

    color:
        rgba(196,240,211,.70);
}


/* =========================================================
   11 — REPLY CONTENT
   ========================================================= */

.wpas-reply-content {

    padding: 10px;

    margin: 8px 0;

    color: #C4F0D3;

    font-size: 16px;
    line-height: 1.8;
}


.wpas-reply-content p {

    padding: 0;
    margin: 0 0 10px;

    color: #C4F0D3;

    font-size: 15px;
    line-height: 1.8;
}


/* =========================================================
   12 — USER PROFILE
   ========================================================= */

.wpas-user-profile {

    width: 56px;
    height: 56px;

    margin: 10px;

    position: relative;
}


.wpas-user-profile img {

    width: 56px;
    height: 56px;

    object-fit: cover;

    border:
        2px solid rgba(94,211,154,.30);

    border-radius: 50%;

    box-shadow:
        0 0 0 4px rgba(94,211,154,.055),
        0 8px 20px rgba(0,0,0,.20);
}


/* Mobile */

@media (max-width: 480px) {

    .wpas-user-profile {

        width: 0 !important;
        height: 0 !important;

        margin: 0 !important;
    }

    .wpas-user-profile img {

        display: none !important;
    }

}


/* =========================================================
   13 — DATE HOVER
   ========================================================= */

.wpas-reply-single:hover .wpas-human-date {
    display: block;
}

.wpas-reply-single:hover .wpas-date-ago {
    display: none;
}


/* =========================================================
   14 — ATTACHMENTS
   ========================================================= */

.wpas .wpas-reply-attachements {

    padding: 12px;

    color: #C4F0D3;

    background:
        rgba(94,211,154,.045);

    border-top:
        1px solid rgba(196,240,211,.12);

    border-radius: 12px;
}


.wpas .wpas-reply-attachements strong {

    display: inline-block;

    color: #C4F0D3;

    border-bottom:
        2px solid rgba(94,211,154,.30);

    padding-bottom: 3px;
}


/* =========================================================
   15 — LABELS
   ========================================================= */

.wpas .wpas-label {

    display: inline-flex;
    align-items: center;

    padding: 5px 10px;

    color: #0B1F16;

    background:
        linear-gradient(
            135deg,
            #5ED39A,
            #9AE8BC
        );

    border: 0;

    border-radius: 999px;

    font-size: 12px;
    font-weight: 700;

    box-shadow:
        0 4px 15px rgba(94,211,154,.12);
}


/* =========================================================
   16 — FORM GROUP
   ========================================================= */

.wpas .wpas-form-group {

    margin-bottom: 18px;
}


.wpas .wpas-form-group label {

    display: block;

    margin-bottom: 7px;

    color: #C4F0D3;

    font-weight: 600;
}


/* =========================================================
   17 — HELP / ATTACHMENT TEXT
   ========================================================= */

.wpas .wpas-help-block,
.wpas .wpas-attachment-help,
.wpas .wpas-file-help {

    background: transparent !important;

    color:
        rgba(196,240,211,.68) !important;

    opacity: 1 !important;
}


.wpas .wpas-help-block *,
.wpas .wpas-attachment-help *,
.wpas .wpas-file-help * {

    background: transparent !important;

    color:
        rgba(196,240,211,.68) !important;

    opacity: 1 !important;
}


/* =========================================================
   18 — SEARCH
   ========================================================= */

.wpas #wpas_ticketlist_filter {

    color: #C4F0D3;

    margin-bottom: 16px;
}


.wpas #wpas_ticketlist_filter label {

    color: #C4F0D3;
}


/* =========================================================
   19 — CHECKBOX
   ========================================================= */

.wpas input[type="checkbox"] {

    accent-color: #5ED39A;

    cursor: pointer;
}


/* =========================================================
   20 — ICONS
   ========================================================= */

.wpas i,
.wpas svg,
.wpas .dashicons,
.wpas [class*="icon"] {

    color: #C4F0D3;

    fill: currentColor;

    transition:
        color .2s ease,
        opacity .2s ease;
}


/* Icon Hover */

.wpas a:hover i,
.wpas a:hover svg,
.wpas button:hover i,
.wpas button:hover svg {

    color: #5ED39A;
}


/* =========================================================
   21 — DIVIDERS
   ========================================================= */

.wpas hr {

    height: 1px;

    margin: 20px 0;

    border: 0;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(196,240,211,.18),
            transparent
        );
}


/* =========================================================
   22 — SELECTION
   ========================================================= */

.wpas ::selection {

    color: #0B1F16;

    background: #5ED39A;
}


/* =========================================================
   23 — TINYMCE / QUICKTAGS
   ========================================================= */

.wpas .mce-toolbar,
.wpas .mce-container,
.wpas .quicktags-toolbar,
.e-atomic-element .wpas .mce-toolbar,
.e-atomic-element .wpas .mce-container,
.e-atomic-element .wpas .quicktags-toolbar {

    background:
        rgba(11,31,22,.95) !important;

    border-color:
        rgba(196,240,211,.12) !important;
}


/* Toolbar buttons */

.wpas .mce-toolbar button,
.wpas .mce-toolbar .mce-btn,
.wpas .mce-toolbar .mce-btn button,
.wpas .mce-toolbar .mce-ico,
.wpas .quicktags-toolbar button,
.e-atomic-element .wpas .mce-toolbar button,
.e-atomic-element .wpas .mce-toolbar .mce-btn,
.e-atomic-element .wpas .mce-toolbar .mce-btn button,
.e-atomic-element .wpas .mce-ico {

    color: #C4F0D3 !important;

    fill: #C4F0D3 !important;
}


/* Toolbar Hover */

.wpas .mce-toolbar button:hover,
.wpas .mce-toolbar .mce-btn:hover,
.wpas .mce-toolbar .mce-btn button:hover,
.wpas .quicktags-toolbar button:hover,
.e-atomic-element .wpas .mce-toolbar button:hover,
.e-atomic-element .wpas .mce-toolbar .mce-btn:hover,
.e-atomic-element .wpas .mce-toolbar .mce-btn button:hover {

    color: #0B1F16 !important;

    background:
        rgba(94,211,154,.16) !important;

    border-radius: 7px;
}


/* Toolbar icon Hover */

.wpas .mce-toolbar button:hover .mce-ico,
.wpas .mce-toolbar .mce-btn:hover .mce-ico,
.e-atomic-element .wpas .mce-toolbar button:hover .mce-ico,
.e-atomic-element .wpas .mce-toolbar .mce-btn:hover .mce-ico {

    color: #5ED39A !important;

    fill: #5ED39A !important;
}


/* =========================================================
   24 — REPLY EDITOR
   ========================================================= */

.wpas-ticket-replies .mce-toolbar,
.wpas-ticket-replies .mce-container,
.wpas-ticket-replies .quicktags-toolbar {

    background:
        rgba(11,31,22,.96) !important;

    border: 0 !important;
}


/* =========================================================
   25 — EDITOR AREA
   ========================================================= */

.wpas .mce-edit-area,
.wpas .mce-edit-area iframe {

    background:
        #102D20 !important;
}


/* =========================================================
   26 — EDITOR BODY
   ========================================================= */

.wpas .mce-content-body {

    color: #C4F0D3 !important;

    background:
        #102D20 !important;
}


/* =========================================================
   27 — SCROLLBAR
   ========================================================= */

.wpas * {

    scrollbar-width: thin;

    scrollbar-color:
        rgba(94,211,154,.35)
        rgba(11,31,22,.40);
}


/* Chrome / Edge / Safari */

.wpas *::-webkit-scrollbar {

    width: 7px;
    height: 7px;
}


.wpas *::-webkit-scrollbar-track {

    background:
        rgba(11,31,22,.40);
}


.wpas *::-webkit-scrollbar-thumb {

    background:
        rgba(94,211,154,.30);

    border-radius: 999px;
}


.wpas *::-webkit-scrollbar-thumb:hover {

    background:
        rgba(94,211,154,.50);
}


/* =========================================================
   28 — MOBILE TABLE
   ========================================================= */

@media (max-width: 600px) {

    .wpas .wpas-table > thead > tr > th,
    .wpas .wpas-table > tbody > tr > td,
    .wpas .wpas-table > tfoot > tr > td,
    .wpas .wpas-table > tfoot > tr > th {

        padding: 10px 8px;

        font-size: 13px;
    }

    .wpas-reply-single {

        padding: 13px;

        border-radius: 15px;
    }

    .wpas .wpas-ticket-replies,
    .wpas-ticket-replies {

        padding: 12px;

        border-radius: 16px;
    }

}


/* =========================================================
   29 — REDUCE MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .wpas *,
    .wpas *::before,
    .wpas *::after {

        transition: none !important;

        animation: none !important;
    }

}




/* =========================================================
   AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
   ========================================================= */




/* =========================================================
   USERSWP
   EMERALD GLASSMORPHISM / PREMIUM DARK NATURE
   =========================================================

   Main Dark       #0B1F16
   Forest          #102D20
   Emerald         #1F6B4A
   Emerald Light   #5ED39A
   Mint Text       #C4F0D3

   Compatible with:
   Profile / Login / Register / Edit Profile / Account
   ========================================================= */


/* =========================================================
   01. USERSWP GLOBAL
   ========================================================= */

.uwp-content,
.uwp-content-wrap,
.userswp,
.userswp-container {

    color: #C4F0D3 !important;
    box-sizing: border-box;
}


/* همه عناصر داخلی */

.uwp-content *,
.uwp-content-wrap *,
.userswp * {

    box-sizing: border-box;
}


/* =========================================================
   02. MAIN USERSWP BACKGROUND
   ========================================================= */

.uwp-content,
.uwp-content-wrap {

    color: #C4F0D3 !important;

    background:
        radial-gradient(
            circle at 10% 0%,
            rgba(94,211,154,.10),
            transparent 35%
        ),
        linear-gradient(
            145deg,
            rgba(11,31,22,.97),
            rgba(16,45,32,.94)
        ) !important;

    border:
        1px solid rgba(196,240,211,.12) !important;

    border-radius: 22px !important;

    box-shadow:
        0 20px 60px rgba(0,0,0,.28),
        inset 0 1px 0 rgba(255,255,255,.035) !important;

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}


/* =========================================================
   03. REMOVE WHITE BACKGROUNDS
   ========================================================= */

.uwp-content,
.uwp-content > *,
.uwp-content-wrap,
.uwp-content-wrap > *,

.uwp-content .uwp-form,
.uwp-content .uwp-account,
.uwp-content .uwp-profile,
.uwp-content .uwp-profile-header,
.uwp-content .uwp-profile-content {

    background-color: transparent;
}


/* =========================================================
   04. GLOBAL TEXT
   ========================================================= */

.uwp-content,
.uwp-content p,
.uwp-content span,
.uwp-content label,
.uwp-content small,
.uwp-content strong,
.uwp-content b,
.uwp-content h1,
.uwp-content h2,
.uwp-content h3,
.uwp-content h4,
.uwp-content h5,
.uwp-content h6,

.userswp,
.userswp p,
.userswp span,
.userswp label,
.userswp small,
.userswp strong,
.userswp b,
.userswp h1,
.userswp h2,
.userswp h3,
.userswp h4,
.userswp h5,
.userswp h6 {

    color: #C4F0D3 !important;
}


/* =========================================================
   05. HEADINGS
   ========================================================= */

.uwp-content h1,
.uwp-content h2,
.uwp-content h3,
.uwp-content h4,
.uwp-content h5,
.uwp-content h6 {

    font-weight: 600;

    letter-spacing: -.25px;

    text-shadow:
        0 0 20px rgba(94,211,154,.08);
}


/* =========================================================
   06. LINKS
   ========================================================= */

.uwp-content a,
.userswp a {

    color: #C4F0D3 !important;

    text-decoration: none;

    transition:
        color .2s ease,
        background .2s ease,
        border-color .2s ease,
        box-shadow .2s ease;
}


.uwp-content a:hover,
.userswp a:hover {

    color: #5ED39A !important;

    text-decoration: none;
}


/* =========================================================
   07. PROFILE / ACCOUNT CARD
   ========================================================= */

.uwp-profile,
.uwp-account,
.uwp-profile-content,
.uwp-profile-header {

    color: #C4F0D3 !important;

    background:
        rgba(11,31,22,.55) !important;

    border:
        1px solid rgba(196,240,211,.10) !important;

    border-radius: 18px !important;

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.025);
}


/* =========================================================
   08. PROFILE HEADER
   ========================================================= */

.uwp-profile-header {

    position: relative;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(94,211,154,.14),
            transparent 55%
        ),
        rgba(11,31,22,.72) !important;
}


/* =========================================================
   09. PROFILE AVATAR
   ========================================================= */

.uwp-profile-avatar img,
.uwp-avatar img,
.uwp-profile img.avatar {

    object-fit: cover;

    border:
        3px solid rgba(94,211,154,.45) !important;

    border-radius: 50% !important;

    box-shadow:
        0 0 0 5px rgba(94,211,154,.06),
        0 12px 35px rgba(0,0,0,.35),
        0 0 30px rgba(94,211,154,.10);
}


/* =========================================================
   10. PROFILE NAME
   ========================================================= */

.uwp-profile-header h1,
.uwp-profile-header h2,
.uwp-profile-header h3,
.uwp-profile-name {

    color: #C4F0D3 !important;

    font-weight: 700;

    text-shadow:
        0 0 20px rgba(94,211,154,.10);
}


/* =========================================================
   11. PROFILE NAVIGATION
   ========================================================= */

.uwp-profile-nav,
.uwp-profile-tabs {

    padding: 5px;

    background:
        rgba(11,31,22,.65) !important;

    border:
        1px solid rgba(196,240,211,.10) !important;

    border-radius: 14px !important;
}


.uwp-profile-nav a,
.uwp-profile-tabs a {

    display: inline-block;

    color: #C4F0D3 !important;

    border-radius: 10px;

    transition:
        .2s ease;
}


.uwp-profile-nav a:hover,
.uwp-profile-tabs a:hover,
.uwp-profile-nav a.active,
.uwp-profile-tabs a.active {

    color: #0B1F16 !important;

    background:
        linear-gradient(
            135deg,
            #5ED39A,
            #9AE8BC
        ) !important;

    box-shadow:
        0 5px 18px rgba(94,211,154,.14);
}


/* =========================================================
   12. PROFILE INFORMATION
   ========================================================= */

.uwp-profile-info,
.uwp-profile-details,
.uwp-profile-fields {

    padding: 15px;

    color: #C4F0D3 !important;

    background:
        rgba(255,255,255,.035) !important;

    border:
        1px solid rgba(196,240,211,.10) !important;

    border-radius: 15px !important;
}


/* =========================================================
   13. PROFILE ITEMS
   ========================================================= */

.uwp-profile-info > div,
.uwp-profile-details > div,
.uwp-profile-fields > div {

    border-color:
        rgba(196,240,211,.08) !important;
}


/* =========================================================
   14. LOGIN / REGISTER / EDIT PROFILE
   ========================================================= */

.uwp-login,
.uwp-register,
.uwp-login-form,
.uwp-register-form,
.uwp-edit-profile,
.uwp-form {

    color: #C4F0D3 !important;

    background:
        radial-gradient(
            circle at 10% 0%,
            rgba(94,211,154,.09),
            transparent 40%
        ),
        rgba(11,31,22,.75) !important;

    border:
        1px solid rgba(196,240,211,.12) !important;

    border-radius: 20px !important;

    box-shadow:
        0 15px 45px rgba(0,0,0,.22),
        inset 0 1px 0 rgba(255,255,255,.03) !important;
}


/* =========================================================
   15. FORM GROUP
   ========================================================= */

.uwp-content .form-group,
.uwp-content .uwp-form-group {

    margin-bottom: 18px;
}


/* =========================================================
   16. LABEL
   ========================================================= */

.uwp-content label {

    display: block;

    margin-bottom: 7px;

    color: #C4F0D3 !important;

    font-weight: 600;
}


/* =========================================================
   17. INPUTS
   ========================================================= */

.uwp-content input[type="text"],
.uwp-content input[type="email"],
.uwp-content input[type="password"],
.uwp-content input[type="number"],
.uwp-content input[type="url"],
.uwp-content input[type="tel"],
.uwp-content input[type="search"],
.uwp-content input[type="date"],
.uwp-content select,
.uwp-content textarea {

    width: 100% !important;

    min-height: 44px;

    padding: 10px 13px;

    color: #C4F0D3 !important;

    background:
        rgba(255,255,255,.045) !important;

    border:
        1px solid rgba(196,240,211,.18) !important;

    border-radius: 11px !important;

    outline: none !important;

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.025);

    transition:
        all .2s ease;
}


/* INPUT HOVER */

.uwp-content input:hover,
.uwp-content select:hover,
.uwp-content textarea:hover {

    background:
        rgba(255,255,255,.06) !important;

    border-color:
        rgba(196,240,211,.30) !important;
}


/* INPUT FOCUS */

.uwp-content input:focus,
.uwp-content select:focus,
.uwp-content textarea:focus {

    color: #C4F0D3 !important;

    background:
        rgba(16,45,32,.85) !important;

    border-color:
        #5ED39A !important;

    box-shadow:
        0 0 0 3px rgba(94,211,154,.10),
        0 8px 25px rgba(0,0,0,.18) !important;
}


/* =========================================================
   18. PLACEHOLDER
   ========================================================= */

.uwp-content input::placeholder,
.uwp-content textarea::placeholder {

    color:
        rgba(196,240,211,.45) !important;

    opacity: 1 !important;
}


/* =========================================================
   19. SELECT DROPDOWN
   ========================================================= */

.uwp-content select {

    color: #C4F0D3 !important;

    background-color:
        #102D20 !important;
}


/* =========================================================
   20. BUTTONS
   ========================================================= */

.uwp-content button,
.uwp-content input[type="submit"],
.uwp-content input[type="button"],
.uwp-content .btn,
.uwp-content .uwp-btn,
.uwp-content a.btn {

    min-height: 42px;

    padding: 9px 20px;

    color: #C4F0D3 !important;

    background:
        linear-gradient(
            135deg,
            rgba(94,211,154,.12),
            rgba(31,107,74,.22)
        ) !important;

    border:
        1px solid rgba(196,240,211,.22) !important;

    border-radius: 11px !important;

    font-weight: 600;

    box-shadow:
        0 8px 25px rgba(0,0,0,.16);

    transition:
        all .2s ease;

    cursor: pointer;
}


.uwp-content button:hover,
.uwp-content input[type="submit"]:hover,
.uwp-content input[type="button"]:hover,
.uwp-content .btn:hover,
.uwp-content .uwp-btn:hover,
.uwp-content a.btn:hover {

    color: #0B1F16 !important;

    background:
        linear-gradient(
            135deg,
            #5ED39A,
            #9AE8BC
        ) !important;

    border-color:
        #5ED39A !important;

    transform:
        translateY(-1px);

    box-shadow:
        0 10px 28px rgba(0,0,0,.25),
        0 0 22px rgba(94,211,154,.12);
}


/* =========================================================
   21. CHECKBOX / RADIO
   ========================================================= */

.uwp-content input[type="checkbox"],
.uwp-content input[type="radio"] {

    accent-color: #5ED39A;
}


/* =========================================================
   22. HELP / DESCRIPTION
   ========================================================= */

.uwp-content .help-block,
.uwp-content .description,
.uwp-content small {

    color:
        rgba(196,240,211,.60) !important;
}


/* =========================================================
   23. ALERTS / NOTICES
   ========================================================= */

.uwp-content .alert,
.uwp-content .uwp-alert,
.uwp-content .notice {

    color: #C4F0D3 !important;

    background:
        rgba(94,211,154,.07) !important;

    border:
        1px solid rgba(94,211,154,.18) !important;

    border-radius: 12px !important;
}


/* =========================================================
   24. BADGES
   ========================================================= */

.uwp-content .badge,
.uwp-content .uwp-badge {

    color: #0B1F16 !important;

    background:
        linear-gradient(
            135deg,
            #5ED39A,
            #9AE8BC
        ) !important;

    border-radius: 999px !important;

    font-weight: 700;
}


/* =========================================================
   25. TABLES
   ========================================================= */

.uwp-content table {

    width: 100%;

    color: #C4F0D3 !important;

    background:
        #102D20 !important;

    border:
        1px solid rgba(196,240,211,.12) !important;

    border-collapse: separate;

    border-spacing: 0;

    border-radius: 14px;

    overflow: hidden;
}


.uwp-content table thead,
.uwp-content table thead tr {

    background:
        #1F6B4A !important;
}


.uwp-content table th {

    color: #C4F0D3 !important;

    background:
        #1F6B4A !important;

    border-color:
        rgba(196,240,211,.15) !important;
}


.uwp-content table td {

    color: #C4F0D3 !important;

    background:
        #102D20 !important;

    border-color:
        rgba(196,240,211,.08) !important;
}


.uwp-content table tbody tr:hover td {

    background:
        rgba(94,211,154,.08) !important;
}


/* =========================================================
   26. PAGINATION
   ========================================================= */

.uwp-content .pagination a,
.uwp-content .pagination span {

    color: #C4F0D3 !important;

    background:
        rgba(255,255,255,.04) !important;

    border:
        1px solid rgba(196,240,211,.12) !important;

    border-radius: 8px !important;
}


.uwp-content .pagination a:hover,
.uwp-content .pagination .current {

    color: #0B1F16 !important;

    background:
        #5ED39A !important;

    border-color:
        #5ED39A !important;
}


/* =========================================================
   27. ICONS
   ========================================================= */

.uwp-content i,
.uwp-content svg,
.uwp-content .dashicons {

    color: #C4F0D3;

    fill: currentColor;
}


.uwp-content a:hover i,
.uwp-content a:hover svg {

    color: #5ED39A;
}


/* =========================================================
   28. DIVIDERS
   ========================================================= */

.uwp-content hr {

    height: 1px;

    border: 0 !important;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(196,240,211,.18),
            transparent
        );
}


/* =========================================================
   29. FILE UPLOAD
   ========================================================= */

.uwp-content input[type="file"] {

    width: 100%;

    padding: 10px;

    color: #C4F0D3 !important;

    background:
        rgba(255,255,255,.04) !important;

    border:
        1px dashed rgba(196,240,211,.20) !important;

    border-radius: 11px;
}


/* =========================================================
   30. SEARCH
   ========================================================= */

.uwp-content input[type="search"] {

    color: #C4F0D3 !important;

    background:
        rgba(11,31,22,.70) !important;
}


/* =========================================================
   31. DROPDOWN / MENU
   ========================================================= */

.uwp-content .dropdown-menu,
.uwp-content .uwp-dropdown-menu {

    color: #C4F0D3 !important;

    background:
        #102D20 !important;

    border:
        1px solid rgba(196,240,211,.15) !important;

    border-radius: 12px !important;

    box-shadow:
        0 15px 40px rgba(0,0,0,.30);
}


.uwp-content .dropdown-menu a,
.uwp-content .uwp-dropdown-menu a {

    color: #C4F0D3 !important;
}


.uwp-content .dropdown-menu a:hover,
.uwp-content .uwp-dropdown-menu a:hover {

    color: #0B1F16 !important;

    background:
        #5ED39A !important;
}


/* =========================================================
   32. SOCIAL ICONS
   ========================================================= */

.uwp-content .uwp-social-icons a,
.uwp-content .social-icons a {

    display: inline-flex;

    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;

    color: #C4F0D3 !important;

    background:
        rgba(255,255,255,.045) !important;

    border:
        1px solid rgba(196,240,211,.12) !important;

    border-radius: 50%;

    transition:
        all .2s ease;
}


.uwp-content .uwp-social-icons a:hover,
.uwp-content .social-icons a:hover {

    color: #0B1F16 !important;

    background:
        #5ED39A !important;

    border-color:
        #5ED39A !important;

    transform:
        translateY(-2px);

    box-shadow:
        0 5px 18px rgba(94,211,154,.16);
}


/* =========================================================
   33. COVER IMAGE
   ========================================================= */

.uwp-profile-cover,
.uwp-cover {

    overflow: hidden;

    border-radius: 18px 18px 0 0;

    border-bottom:
        1px solid rgba(196,240,211,.12);
}


/* =========================================================
   34. PROFILE STATISTICS
   ========================================================= */

.uwp-profile-stats,
.uwp-profile-statistics {

    background:
        rgba(255,255,255,.035) !important;

    border:
        1px solid rgba(196,240,211,.10) !important;

    border-radius: 14px !important;
}


.uwp-profile-stats strong,
.uwp-profile-statistics strong {

    color: #5ED39A !important;
}


/* =========================================================
   35. REMOVE UNWANTED WHITE BOXES
   ========================================================= */

.uwp-content .card,
.uwp-content .panel,
.uwp-content .well,
.uwp-content .thumbnail {

    color: #C4F0D3 !important;

    background:
        rgba(16,45,32,.75) !important;

    border-color:
        rgba(196,240,211,.12) !important;
}


/* =========================================================
   36. MOBILE
   ========================================================= */

@media (max-width: 768px) {

    .uwp-content,
    .uwp-content-wrap {

        padding: 16px !important;

        border-radius: 18px !important;
    }


    .uwp-profile,
    .uwp-account,
    .uwp-login,
    .uwp-register,
    .uwp-edit-profile,
    .uwp-form {

        border-radius: 16px !important;
    }

}


@media (max-width: 480px) {

    .uwp-content,
    .uwp-content-wrap {

        padding: 10px !important;

        border-radius: 15px !important;
    }


    .uwp-login,
    .uwp-register,
    .uwp-edit-profile,
    .uwp-form {

        padding: 14px !important;

        border-radius: 15px !important;
    }


    .uwp-content button,
    .uwp-content input[type="submit"],
    .uwp-content input[type="button"],
    .uwp-content .btn {

        width: 100%;

        margin-bottom: 8px;
    }

}


/* =========================================================
   37. TEXT SELECTION
   ========================================================= */

.uwp-content ::selection {

    color: #0B1F16;

    background:
        #5ED39A;
}


/* =========================================================
   38. SCROLLBAR
   ========================================================= */

.uwp-content * {

    scrollbar-width: thin;

    scrollbar-color:
        rgba(94,211,154,.35)
        rgba(11,31,22,.35);
}


.uwp-content *::-webkit-scrollbar {

    width: 7px;
    height: 7px;
}


.uwp-content *::-webkit-scrollbar-track {

    background:
        rgba(11,31,22,.35);
}


.uwp-content *::-webkit-scrollbar-thumb {

    background:
        rgba(94,211,154,.35);

    border-radius: 999px;
}


.uwp-content *::-webkit-scrollbar-thumb:hover {

    background:
        rgba(94,211,154,.55);
}


/* =========================================================
   39. REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .uwp-content *,
    .uwp-content *::before,
    .uwp-content *::after {

        transition: none !important;

        animation: none !important;
    }
}


/* =========================================================
   END USERSWP THEME
   ========================================================= */















/* =========================================================
   USERSWP ACCOUNT
   PREMIUM EMERALD GLASSMORPHISM
   Target: actual UsersWP Account structure
   ========================================================= */


/* =========================================================
   01. MAIN ACCOUNT WRAPPER
   ========================================================= */

.uwp-account-class,
.uwp-account-class .uwp_widget_account,
.uwp-account-class .uwp_page {

    color: #C4F0D3 !important;
}


/* =========================================================
   02. ACCOUNT MAIN CONTAINER
   ========================================================= */

.uwp-account-class .uwp_widget_account .uwp_page .container {

    color: #C4F0D3 !important;

    background:
        radial-gradient(
            circle at 10% 0%,
            rgba(94,211,154,.10),
            transparent 38%
        ),
        linear-gradient(
            145deg,
            #0B1F16,
            #102D20
        ) !important;

    border:
        1px solid rgba(196,240,211,.12) !important;

    border-radius: 22px !important;

    box-shadow:
        0 20px 55px rgba(0,0,0,.28),
        inset 0 1px 0 rgba(255,255,255,.035) !important;

    overflow: hidden;
}


/* =========================================================
   03. LEFT ACCOUNT MENU
   ========================================================= */

.uwp-account-class .uwp_widget_account .container .bg-light {

    background:
        linear-gradient(
            180deg,
            rgba(31,107,74,.82),
            rgba(16,45,32,.94)
        ) !important;

    color: #C4F0D3 !important;

    border:
        0 !important;

    border-radius: 20px !important;

    padding: 15px !important;

    box-shadow:
        inset -1px 0 rgba(196,240,211,.08),
        0 10px 30px rgba(0,0,0,.15);
}


/* =========================================================
   04. ACCOUNT MENU UL
   ========================================================= */

.uwp-account-class .bg-light .d-flex ul {

    width: 100%;

    padding: 6px !important;

    margin: 0 !important;

    background:
        rgba(11,31,22,.38) !important;

    border:
        1px solid rgba(196,240,211,.08) !important;

    border-radius: 15px !important;

    list-style: none;
}


/* =========================================================
   05. ACCOUNT MENU ITEMS
   ========================================================= */

.uwp-account-class .bg-light .nav-item {

    margin: 3px 0;
}


/* =========================================================
   06. ACCOUNT MENU LINKS
   ========================================================= */

.uwp-account-class .bg-light .nav-item a {

    display: block;

    padding: 11px 13px;

    color: #C4F0D3 !important;

    background:
        transparent !important;

    border:
        1px solid transparent !important;

    border-radius: 10px !important;

    font-weight: 500;

    text-decoration: none !important;

    transition:
        all .2s ease;
}


/* =========================================================
   07. MENU HOVER
   ========================================================= */

.uwp-account-class .bg-light .nav-item a:hover {

    color: #5ED39A !important;

    background:
        rgba(94,211,154,.08) !important;

    border-color:
        rgba(94,211,154,.12) !important;

    transform:
        translateX(3px);
}


/* =========================================================
   08. ACTIVE ACCOUNT MENU
   ========================================================= */

.uwp-account-class .bg-light .nav-item a.active {

    color: #0B1F16 !important;

    background:
        linear-gradient(
            135deg,
            #5ED39A,
            #9AE8BC
        ) !important;

    border-color:
        #5ED39A !important;

    font-weight: 700;

    box-shadow:
        0 6px 20px rgba(94,211,154,.15);
}


/* =========================================================
   09. MENU ICONS
   ========================================================= */

.uwp-account-class .bg-light .nav-item i,
.uwp-account-class .bg-light .nav-item svg,
.uwp-account-class .bg-light .nav-item .dashicons {

    color: #C4F0D3 !important;

    fill: currentColor;
}


.uwp-account-class .bg-light .nav-item a:hover i,
.uwp-account-class .bg-light .nav-item a:hover svg {

    color: #5ED39A !important;
}


/* =========================================================
   10. RIGHT CONTENT
   ========================================================= */

.uwp-account-class .container .ps-lg-4 {

    color: #C4F0D3 !important;

    background:
        rgba(11,31,22,.38) !important;

    border:
        1px solid rgba(196,240,211,.08) !important;

    border-radius: 18px !important;

    padding: 24px !important;
}


/* =========================================================
   11. ACCOUNT TITLE
   ========================================================= */

.uwp-account-class .ps-lg-4 h3 {

    color: #C4F0D3 !important;

    font-size: 24px;

    font-weight: 700;

    margin-top: 0 !important;

    text-shadow:
        0 0 20px rgba(94,211,154,.10);
}


/* =========================================================
   12. ACCOUNT FORM
   ========================================================= */

.uwp-account-class .uwp-account-form {

    color: #C4F0D3 !important;

    background:
        transparent !important;
}


/* =========================================================
   13. FORM LABELS
   ========================================================= */

.uwp-account-class .uwp-account-form label {

    color: #C4F0D3 !important;

    font-weight: 600;
}


/* =========================================================
   14. FORM INPUTS
   ========================================================= */

.uwp-account-class .uwp-account-form input[type="text"],
.uwp-account-class .uwp-account-form input[type="email"],
.uwp-account-class .uwp-account-form input[type="password"],
.uwp-account-class .uwp-account-form input[type="url"],
.uwp-account-class .uwp-account-form input[type="tel"],
.uwp-account-class .uwp-account-form input[type="number"],
.uwp-account-class .uwp-account-form select,
.uwp-account-class .uwp-account-form textarea {

    width: 100% !important;

    min-height: 44px;

    padding: 10px 13px;

    color: #C4F0D3 !important;

    background:
        rgba(255,255,255,.045) !important;

    border:
        1px solid rgba(196,240,211,.18) !important;

    border-radius: 11px !important;

    outline: none !important;

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.025) !important;

    transition:
        all .2s ease;
}


/* =========================================================
   15. INPUT FOCUS
   ========================================================= */

.uwp-account-class .uwp-account-form input:focus,
.uwp-account-class .uwp-account-form select:focus,
.uwp-account-class .uwp-account-form textarea:focus {

    color: #C4F0D3 !important;

    background:
        #102D20 !important;

    border-color:
        #5ED39A !important;

    outline: none !important;

    box-shadow:
        0 0 0 3px rgba(94,211,154,.10) !important;
}


/* =========================================================
   16. PLACEHOLDER
   ========================================================= */

.uwp-account-class .uwp-account-form input::placeholder,
.uwp-account-class .uwp-account-form textarea::placeholder {

    color:
        rgba(196,240,211,.45) !important;

    opacity: 1 !important;
}


/* =========================================================
   17. BUTTON
   ========================================================= */

.uwp-account-class .uwp-account-form .text-uppercase {

    color: #C4F0D3 !important;

    background:
        linear-gradient(
            135deg,
            rgba(94,211,154,.12),
            rgba(31,107,74,.25)
        ) !important;

    border:
        2px solid #C4F0D3 !important;

    border-radius: 11px !important;

    padding: 10px 22px !important;

    font-weight: 700;

    transition:
        all .2s ease;
}


/* BUTTON HOVER */

.uwp-account-class .uwp-account-form .text-uppercase:hover {

    color: #0B1F16 !important;

    background:
        linear-gradient(
            135deg,
            #5ED39A,
            #9AE8BC
        ) !important;

    border-color:
        #5ED39A !important;

    transform:
        translateY(-1px);

    box-shadow:
        0 8px 25px rgba(94,211,154,.15);
}


/* =========================================================
   18. ACCOUNT TEXT / HELP
   ========================================================= */

.uwp-account-class .uwp-account-form p,
.uwp-account-class .uwp-account-form small,
.uwp-account-class .uwp-account-form .help-block {

    color:
        rgba(196,240,211,.70) !important;
}


/* =========================================================
   19. REMOVE WHITE BOOTSTRAP BACKGROUNDS
   ========================================================= */

.uwp-account-class .bg-white,
.uwp-account-class .bg-body,
.uwp-account-class .card,
.uwp-account-class .card-body,
.uwp-account-class .list-group,
.uwp-account-class .list-group-item {

    color: #C4F0D3 !important;

    background:
        rgba(16,45,32,.72) !important;

    border-color:
        rgba(196,240,211,.10) !important;
}


/* =========================================================
   20. ACCOUNT DIVIDERS
   ========================================================= */

.uwp-account-class hr {

    border: 0 !important;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(196,240,211,.18),
            transparent
        );
}


/* =========================================================
   21. MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .uwp-account-class .container {

        border-radius: 17px !important;
    }


    .uwp-account-class .container .bg-light {

        border-radius: 15px !important;

        margin-bottom: 12px;
    }


    .uwp-account-class .container .ps-lg-4 {

        padding: 18px !important;

        border-radius: 15px !important;
    }

}


/* =========================================================
   22. SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .uwp-account-class .container {

        padding-left: 8px !important;

        padding-right: 8px !important;
    }


    .uwp-account-class .container .bg-light {

        padding: 10px !important;
    }


    .uwp-account-class .container .ps-lg-4 {

        padding: 15px !important;
    }


    .uwp-account-class .bg-light .d-flex ul {

        padding: 5px !important;
    }


    .uwp-account-class .bg-light .nav-item a {

        padding: 10px !important;
    }


    .uwp-account-class .uwp-account-form .text-uppercase {

        width: 100% !important;

        margin-top: 8px;
    }

}


/* =========================================================
   END USERSWP ACCOUNT
   ========================================================= */






