/* ============================================================================
   ITMZZ Admin Stylesheet - Modern Design Standards
   Matching Landing Page and Dashboard Design System
   ============================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ============================================================================
   CSS CUSTOM PROPERTIES (VARIABLES)
   ============================================================================ */
:root {
    /* Primary Colors - Matching Landing Page */
    --primary-green: #22C55E;
    --primary-blue: #38BDF8;
    --primary-teal: #14B8A6;
    --primary-cyan: #06B6D4;
    --primary-dark: #1e293b;
    --primary-light: #f8fafc;

    /* Text Colors */
    --text-primary: #0f172a;
    --text-secondary: #334155;
    --text-muted: #64748b;
    --text-light: #f1f5f9;

    /* Background Colors */
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-card: #ffffff;
    --bg-dark: #0f172a;
    --bg-sidebar: #242d37;
    --bg-sidebar-dark: #19222E;

    /* Border Colors */
    --border-color: #e2e8f0;
    --border-light: #f1f5f9;

    /* Accent Colors */
    --accent-success: #22c55e;
    --accent-danger: #ef4444;
    --accent-warning: #f59e0b;
    --accent-info: #38bdf8;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #22C55E, #38BDF8);
    --gradient-secondary: linear-gradient(135deg, #14B8A6, #06B6D4);
    --gradient-dark: linear-gradient(135deg, #1e293b, #0f172a);

    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;

    /* Border Radius */
    --border-radius: 16px;
    --border-radius-sm: 8px;
    --border-radius-lg: 24px;

    /* Shadows */
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 12px 48px rgba(0, 0, 0, 0.2);

    /* Typography */
    --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-secondary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Transitions */
    --transition: all 0.3s ease;
    --transition-fast: all 0.15s ease;
    --transition-slow: all 0.5s ease;
}

/* Dark Mode Support */
[data-theme="dark"] {
    --bg-primary: #0f172a;
    --bg-secondary: #1e293b;
    --bg-card: #1e293b;
    --text-primary: #f1f5f9;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;
    --border-color: #334155;
}

/* ============================================================================
   GLOBAL STYLES & RESETS
   ============================================================================ */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: var(--font-secondary);
    color: var(--text-primary);
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ============================================================================
   TYPOGRAPHY
   ============================================================================ */
h1, h2, h3, h4, h5, h6, p {
    margin-top: 0;
    font-family: var(--font-primary);
    color: var(--text-primary);
    line-height: 1.2;
}

h1 { font-size: 2.5rem; font-weight: 700; }
h2 { font-size: 2rem; font-weight: 700; }
h3 { font-size: 1.75rem; font-weight: 600; }
h4 { font-size: 1.5rem; font-weight: 600; }
h5 { font-size: 1.25rem; font-weight: 600; }
h6 { font-size: 1rem; font-weight: 600; }

p {
    font-family: var(--font-secondary);
    line-height: 1.6;
}

/* ============================================================================
   PAGE HEADER
   ============================================================================ */
.page-header {
    vertical-align: middle;
    margin: var(--spacing-lg) 0 var(--spacing-md) 0;
    padding: 0;
    border-bottom: 1px solid var(--border-color);
}

.page-header h1 {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 2rem;
    color: var(--text-primary);
    display: inline-block;
    margin-bottom: var(--spacing-md);
    text-shadow: none;
}

/* ============================================================================
   BREADCRUMB
   ============================================================================ */
.breadcrumb {
    display: inline-block;
    background: none;
    margin: var(--spacing-sm) 0 var(--spacing-lg) 0;
    padding: 0 var(--spacing-sm);
    border-radius: 0;
}

.breadcrumb li a {
    color: var(--text-muted);
    font-size: 0.875rem;
    padding: 0;
    margin: 0;
    transition: var(--transition);
}

.breadcrumb li a:hover {
    text-decoration: none;
    color: var(--primary-green);
}

.breadcrumb li + li:before {
    content: "\f105";
    font-family: FontAwesome;
    color: var(--text-muted);
    padding: 0 var(--spacing-xs);
    font-size: 0.625rem;
}

/* ============================================================================
   LINKS
   ============================================================================ */
a:hover, a:focus {
    text-decoration: none;
    color: var(--primary-green);
}

/* ============================================================================
   CONTAINER & LAYOUT
   ============================================================================ */
#container {
    min-height: 100%;
    width: 100%;
    position: relative;
    background: var(--bg-secondary);
    overflow: hidden;
}

.container-fluid {
    padding: 0 var(--spacing-lg);
}

/* ============================================================================
   HEADER
   ============================================================================ */
#header {
    min-height: 0;
    background: var(--bg-card);
    border-bottom: 1px solid var(--border-color);
    margin: 0;
    padding: 0;
    box-shadow: var(--shadow-sm);
}

#header .container-fluid {
    padding: 0;
}

#header .navbar-header {
    transition: var(--transition);
    border-right: 1px solid var(--border-light);
    width: 235px;
    display: none;
}

#header .navbar-brand {
    margin-left: var(--spacing-sm);
}

#header .navbar-nav > li {
    display: inline-block;
}

#header .navbar-right > li {
    border-left: 1px solid var(--border-light);
}

#header .navbar-right {
    margin: 0;
    float: right;
}

#header #user-profile {
    max-width: 30px;
    margin-right: var(--spacing-md);
    border-radius: 50%;
    border: 2px solid var(--primary-green);
}

#header .nav > li > a {
    padding: 0 var(--spacing-lg);
    line-height: 45px;
    cursor: pointer;
    color: var(--text-secondary);
    border-left: 0;
    transition: var(--transition);
}

#header .nav > li > a:hover {
    color: var(--primary-green);
}

#header .nav > li.dropdown > a {
    padding-left: var(--spacing-md);
    padding-right: var(--spacing-md);
}

/* Desktop */
@media (min-width: 768px) {
    #header .navbar-header {
        display: inline-block;
    }

    #header #user-profile {
        max-width: none;
    }

    #header .nav > li > a {
        line-height: 60px;
    }
}

/* ============================================================================
   MOBILE MENU BUTTON
   ============================================================================ */
#button-menu {
    font-size: 24px;
    float: left;
    padding: var(--spacing-md);
    line-height: 25px;
    display: inline-block;
    cursor: pointer;
    color: var(--text-secondary);
    border-right: 1px solid var(--border-light);
    transition: var(--transition);
}

#button-menu:hover {
    color: var(--primary-green);
}

/* Desktop */
@media (min-width: 768px) {
    #button-menu {
        display: none;
    }
}

/* ============================================================================
   SIDEBAR
   ============================================================================ */
#column-left {
    width: 235px;
    height: 100%;
    overflow: auto;
    background-color: var(--bg-sidebar);
    position: absolute;
    top: 0;
    left: -235px;
    padding-top: 60px;
    z-index: 10;
    transition: var(--transition);
}

#column-left::-webkit-scrollbar {
    width: 10px;
    background-color: rgba(200, 200, 200, 0);
}

#column-left::-webkit-scrollbar-thumb {
    border-radius: var(--border-radius-sm);
    background-color: rgba(128, 139, 156, 0.2);
}

#content {
    padding-bottom: 40px;
}

#column-left, #content, #footer {
    transition: var(--transition);
}

#column-left + #content, #column-left + #content + #footer {
    position: relative;
    left: 0;
}

#column-left.active {
    left: 0;
}

#column-left.active + #content, #column-left.active + #content + #footer {
    left: 235px;
}

/* Desktop */
@media (min-width: 768px) {
    #column-left {
        left: 0;
    }

    #column-left + #content, #column-left + #content + #footer {
        left: 0;
        margin-left: 200px;
    }

    #column-left.active + #content, #column-left.active + #content + #footer {
        left: 0;
        margin-left: 235px;
    }
}

@media (min-width: 1024px) {
    #column-left + #content, #column-left + #content + #footer {
        left: 0;
        margin-left: 190px;
    }
}

/* ============================================================================
   NAVIGATION
   ============================================================================ */
#navigation {
    text-transform: uppercase;
    padding: var(--spacing-md);
    color: var(--text-light);
    background: var(--bg-sidebar-dark);
    display: block;
}

/* ============================================================================
   MENU
   ============================================================================ */
#menu, #menu ul, #menu li {
    padding: 0;
    margin: 0;
    list-style: none;
}

#menu {
    margin-bottom: 25px;
}

#menu li a {
    text-decoration: none;
    display: block;
    padding: var(--spacing-md);
    cursor: pointer;
    border-bottom: 0;
    transition: var(--transition);
}

#menu li a.parent:after {
    font-family: FontAwesome, sans-serif;
    float: right;
    margin-right: 8px;
    margin-top: -19px !important;
    content: "\f107";
}

#menu li a.collapsed:after {
    content: "\f105";
}

/* 1st level */
#menu > li {
    position: relative;
    border-bottom: 1px solid #2b3642;
}

#menu > li > a {
    font-size: 14px;
    color: #b3cbdd;
    padding-left: 20px;
    border-bottom: 0;
}

#menu > li > a:hover {
    background-color: rgba(34, 197, 94, 0.1);
    color: var(--primary-green);
}

#menu > li > a > i {
    font-size: 16px;
    width: 18px;
    margin-right: 5px;
}

#menu > li.active > a {
    color: var(--primary-green);
    background-color: var(--bg-sidebar-dark);
}

#menu > li > ul {
    background-color: #293141;
}

/* 2nd level */
#menu li li a {
    color: #7f8a9b;
}

#menu li li a:before {
    content: "\f101";
    font-size: 13px;
    font-family: FontAwesome;
    margin-left: var(--spacing-md);
    margin-right: var(--spacing-md);
    transition: margin ease 0.5s;
}

#menu li li a:hover:before {
    margin-right: 20px;
}

#menu li li a:hover {
    color: var(--text-light);
    background-color: var(--bg-sidebar);
}

#menu li li.active > a {
    color: var(--primary-green);
    background-color: var(--bg-sidebar);
}

#menu li ul a {
    padding-left: 20px;
}

#menu li li ul a {
    padding-left: 40px;
}

#menu li li li ul a {
    padding-left: 60px;
}

#menu li li li li ul a {
    padding-left: 80px;
}

/* ============================================================================
   FOOTER
   ============================================================================ */
#footer {
    height: 100px;
    text-align: center;
    color: var(--text-muted);
}

/* ============================================================================
   NAVIGATION TABS
   ============================================================================ */
.nav-tabs > li > a {
    color: var(--text-muted);
    border-radius: var(--border-radius-sm) var(--border-radius-sm) 0 0;
    transition: var(--transition);
}

.nav-tabs > li > a:hover {
    border-color: var(--border-light) var(--border-light) var(--border-color);
    color: var(--text-primary);
}

.nav-tabs {
    margin-bottom: 25px;
}

.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
    font-weight: 600;
    color: var(--text-primary);
    border-bottom-color: transparent;
}

/* ============================================================================
   FORM CONTROLS
   ============================================================================ */
.form-control:hover {
    border: 1px solid #b9b9b9;
    border-top-color: #a0a0a0;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
}

.form-control:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 0.2rem rgba(34, 197, 94, 0.25);
}

div.required .control-label:not(span):before,
td.required:before {
    content: '* ';
    color: var(--accent-danger);
    font-weight: bold;
}

.btn-group {
    white-space: nowrap;
}

.table thead td span[data-toggle="tooltip"]:after,
label.control-label span:after {
    font-family: FontAwesome;
    color: var(--accent-info);
    content: "\f059";
    margin-left: 4px;
}

fieldset legend {
    padding-bottom: 5px;
    color: var(--text-primary);
    font-weight: 600;
}

/* ============================================================================
   FORM INPUTS - CHECKBOXES & RADIOS
   ============================================================================ */
input[type="radio"],
input[type="checkbox"] {
    margin: 2px 0 0;
}

.radio, .checkbox {
    min-height: 18px;
}

input[type="radio"],
.radio input[type="radio"],
.radio-inline input[type="radio"],
input[type="checkbox"],
.checkbox input[type="checkbox"],
.checkbox-inline input[type="checkbox"] {
    position: relative;
    width: 16px;
    height: 16px;
    -webkit-appearance: none;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 1px;
    transition: var(--transition);
}

input[type="radio"]:focus,
.radio input[type="radio"]:focus,
.radio-inline input[type="radio"]:focus,
input[type="checkbox"]:focus,
.checkbox input[type="checkbox"]:focus,
.checkbox-inline input[type="checkbox"]:focus {
    border-color: var(--primary-green);
    outline: 0;
}

input[type="radio"]:active,
.radio input[type="radio"]:active,
.radio-inline input[type="radio"]:active,
input[type="checkbox"]:active,
.checkbox input[type="checkbox"]:active,
.checkbox-inline input[type="checkbox"]:active {
    background-color: #ebebeb;
    border-color: #c6c6c6;
}

input[type="radio"]:checked,
.radio input[type="radio"]:checked,
.radio-inline input[type="radio"]:checked,
input[type="checkbox"]:checked,
.checkbox input[type="checkbox"]:checked,
.checkbox-inline input[type="checkbox"]:checked {
    background: #fff;
    border-color: var(--primary-green);
}

input[type="radio"],
.radio input[type="radio"],
.radio-inline input[type="radio"] {
    width: 15px;
    height: 15px;
    border-radius: 1em;
}

input[type="radio"]:checked::after,
.radio input[type="radio"]:checked::after,
.radio-inline input[type="radio"]:checked::after {
    position: relative;
    top: 3px;
    left: 3px;
    display: block;
    width: 7px;
    height: 7px;
    content: '';
    background: var(--primary-green);
    border-radius: 1em;
}

input[type="checkbox"]:hover,
.checkbox input[type="checkbox"]:hover,
.checkbox-inline input[type="checkbox"]:hover {
    border-color: #c6c6c6;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .1);
}

input[type="checkbox"]:checked::after,
.checkbox input[type="checkbox"]:checked::after,
.checkbox-inline input[type="checkbox"]:checked::after {
    position: absolute;
    top: -6px;
    left: -5px;
    display: block;
    content: url('../image/checkmark.png');
}

/* ============================================================================
   TABLES
   ============================================================================ */
.table thead td {
    font-weight: 600;
    color: var(--text-primary);
    background: var(--bg-secondary);
}

.table thead > tr > td,
.table tbody > tr > td {
    vertical-align: middle;
    border-color: var(--border-color);
}

.table a.asc:after {
    content: " \f106";
    font-family: FontAwesome;
    color: var(--primary-green);
}

.table a.desc:after {
    content: " \f107";
    font-family: FontAwesome;
    color: var(--primary-green);
}

.table-hover > tbody > tr:hover {
    background-color: var(--bg-secondary);
}

/* ============================================================================
   PAGINATION
   ============================================================================ */
.pagination {
    margin: 0;
}

.pagination > li > a,
.pagination > li > span {
    color: var(--text-primary);
    border-color: var(--border-color);
    transition: var(--transition);
}

.pagination > li > a:hover {
    background-color: var(--bg-secondary);
    border-color: var(--border-color);
    color: var(--primary-green);
}

.pagination > .active > a,
.pagination > .active > span {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
}

/* ============================================================================
   FORM GROUPS
   ============================================================================ */
.form-group {
    padding-top: 15px;
    padding-bottom: 15px;
    margin-bottom: 0;
}

.form-group + .form-group {
    border-top: 1px solid var(--border-light);
}

/* ============================================================================
   PANELS
   ============================================================================ */
.panel {
    border-radius: var(--border-radius-sm);
    border-color: var(--border-color);
    box-shadow: var(--shadow-sm);
}

.panel .panel-heading {
    position: relative;
    border-radius: var(--border-radius-sm) var(--border-radius-sm) 0 0;
}

.panel-heading h3 i {
    margin-right: 5px;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.panel-heading h3 {
    font-weight: 600;
    display: inline-block;
    font-family: var(--font-primary);
}

/* Primary Panel */
.panel-primary {
    border: 1px solid var(--border-color);
    border-top: 2px solid var(--primary-green);
}

.panel-primary .panel-heading {
    color: var(--primary-green);
    border-color: var(--border-color);
    background: var(--bg-card);
}

/* Default Panel */
.panel-default {
    border: 1px solid var(--border-color);
}

.panel-default .panel-heading {
    color: var(--text-primary);
    border-color: var(--border-color);
    background: var(--bg-secondary);
    text-shadow: none;
}

/* ============================================================================
   IMAGES & THUMBNAILS
   ============================================================================ */
.img-thumbnail i {
    color: #FFFFFF;
    background-color: var(--bg-secondary);
    text-align: center;
    vertical-align: middle;
    width: 100px;
    height: 100px;
    padding-top: 20px;
    display: inline-block;
}

.img-thumbnail.list i {
    width: 40px;
    height: 40px;
    padding-top: 10px;
}

/* ============================================================================
   TILES - Dashboard Statistics Cards
   ============================================================================ */
.tile {
    margin-bottom: 15px;
    border-radius: var(--border-radius-sm);
    color: #FFFFFF;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.tile-primary {
    background: var(--gradient-primary);
}

.tile-success {
    background: linear-gradient(135deg, var(--accent-success), #10b981);
}

.tile-warning {
    background: linear-gradient(135deg, var(--accent-warning), #f97316);
}

.tile-danger {
    background: linear-gradient(135deg, var(--accent-danger), #dc2626);
}

.tile:hover {
    opacity: 0.95;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.tile a {
    color: #FFFFFF;
}

.tile-heading {
    padding: 5px 8px;
    text-transform: uppercase;
    color: #FFF;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, .4);
    background-color: rgba(255, 255, 255, 0.1);
    font-family: var(--font-primary);
    font-weight: 600;
}

.tile .tile-heading .pull-right {
    transition: var(--transition);
    opacity: 0.7;
}

.tile:hover .tile-heading .pull-right {
    opacity: 1;
}

.tile-body {
    padding: 15px;
    color: #FFFFFF;
    line-height: 48px;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, .4);
}

.tile .tile-body i {
    font-size: 50px;
    opacity: 0.3;
    transition: var(--transition);
}

.tile:hover .tile-body i {
    color: #FFFFFF;
    opacity: 1;
}

.tile .tile-body h2 {
    font-size: 42px;
    font-family: var(--font-primary);
    font-weight: 700;
}

.tile-footer {
    padding: 5px 8px;
    background-color: rgba(0, 0, 0, 0.1);
}

#stats {
    border-radius: 2px;
    color: #808b9c;
    background: #2e3a47;
    margin: 15px 20px;
    padding: 5px 0;
}

#stats ul, #stats li {
    padding: 0;
    margin: 0;
    list-style: none;
}

#stats li {
    font-size: 11px;
    color: #9d9d9d;
    padding: 5px 10px;
    border-bottom: 1px dotted #373737;
}

#stats div:first-child {
    margin-bottom: 4px;
}

#stats .progress {
    height: 3px;
    margin-bottom: 0;
}

.jqvmap-label {
    z-index: 999;
}

.alert {
    overflow: auto;
}

/* Fix form-group margin inside the modal */
.modal-body .form-group {
    margin: 0;
}

/* Fixed Sumernote Button Height */
.note-toolbar.panel-heading i {
    font-size: 14px;
}

/* Filemanager Folder Size */
#filemanager .fa-folder.fa-5x {
    font-size: 10.5em;
}

#extension-list {
    color: #4b525d;
}

#extension-list h2 {
    margin-top: 54px;
    margin-bottom: 44px;
}

#extension-list section {
    border: 1px solid #ddd;
}

#extension-list section > div {
    position: relative;
}

#extension-list section > div + div {
    border-top: 1px solid #ddd;
    padding: 10px;
}

#extension-list section:hover {
    border: 1px solid #1b80c2;
}

#extension-list > .row {
    margin-top: 40px;
}

#extension-list > .row > * {
    margin-bottom: 30px;
}

#extension-list .extension-preview {
    min-height: 150px;
}

#extension-list .extension-preview .extension-description {
    position: absolute;
    background-color: rgba(36, 45, 55, 0.9);
    color: #fff;
    padding: 10px;
    font-size: 14px;
    line-height: 16px;
    opacity: 0;
    height: 100%;
    width: 100%;
}

#extension-list .extension-preview .extension-description:hover {
    opacity: 1;
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
    #extension-list .extension-preview {
        min-height: 123px;
    }

    #extension-list .extension-preview .extension-description {
        font-size: 12.5px;
        padding: 6px;
    }
}

#extension-list .extension-preview img {
    margin: 0 auto;
}

#extension-list .extension-name {
    min-height: 100px;
}

#extension-list .extension-name p {
    color: #000;
    margin-bottom: 0;
    font-weight: 600;
}

#extension-list .extension-name p:first-child {
    font-size: 17px;
}

#extension-list .extension-name p span {
    color: #4b525d;
    font-weight: 400;
}

#extension-list .extension-name h4 a, #extension-list .extension-name p a {
    color: #000;
}

#extension-list .extension-name + div > .row {
    margin-top: 0;
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
    #extension-list .extension-name + div > .row {
        font-size: 14px;
    }
}

#extension-list i {
    color: #10b4e9;
}

#extension-list span {
    font-weight: 600;
}

#marketplace-extension-info #banner img {
    margin-left: auto;
    margin-right: auto;
}

#marketplace-extension-info .extension-review {
    border-top: 5px solid #1b80c2;
    padding-top: 50px;
    margin-top: 50px;
    margin-bottom: 50px;
}

#marketplace-extension-info .nav-tabs {
    font-size: 14px;
}

#marketplace-extension-info .nav-tabs + .tab-content {
    margin-top: 30px;
    margin-bottom: 30px;
}

#marketplace-extension-info iframe {
    width: 100%;
    height: 500px;
}

@media screen and (max-width: 767px) {
    #marketplace-extension-info iframe {
        height: 350px;
    }
}

#marketplace-extension-info #buy {
    color: #4b525d;
}

#marketplace-extension-info #buy #price {
    color: #000;
    font-size: 20px;
    padding-top: 15px;
    padding-bottom: 5px;
}

#marketplace-extension-info #buy i {
    color: #10b4e9;
}

#marketplace-extension-info #buy hr {
    border-color: #ddd;
    margin: 10px 0;
}

#marketplace-extension-info #sales {
    color: #4b525d;
}

#marketplace-extension-info #sales i {
    color: #7ec239;
    margin-right: 10px;
    font-size: 24px;
}

#marketplace-extension-info #sales strong {
    font-size: 24px;
}

#marketplace-extension-info #comment {
    color: #4b525d;
}

#marketplace-extension-info #comment i {
    margin-right: 10px;
    font-size: 22px;
}

#marketplace-extension-info #comment strong {
    font-size: 22px;
}

#marketplace-extension-info .reply > div {
    margin-top: 15px;
}

#marketplace-extension-info .well .media {
    line-height: 1.2;
}

#marketplace-extension-info .well .media .media-body {
    padding-top: 6px;
}

#marketplace-extension-info .well .media .media-body span {
    font-size: 24px;
    font-weight: 600;
}

#marketplace-extension-info .well .media .media-body small {
    color: #878f9a;
}

@media screen and (max-width: 992px) {
    #marketplace-extension-info .container-fluid {
        padding-bottom: 30px;
    }
}

.list-check {
    list-style: none;
}

.list-check li::before {
    font-family: 'FontAwesome';
    content: '\f00c';
    margin-left: -30px;
    width: 29px;
    display: inline-block;
    color: #7ebd38;
}

.list-check.list-color-blue li::before {
    color: #02afe9;
}

.well.filter {
    background-color: #ffffff;
}


@font-face {
    font-family: 'opencart';
    src: url('fonts/opencart.eot?h4wsna');
    src: url('fonts/opencart.eot?h4wsna#iefix') format('embedded-opentype'), url('fonts/opencart.ttf?h4wsna') format('truetype'), url('fonts/opencart.woff?h4wsna') format('woff'), url('fonts/opencart.svg?h4wsna#opencart') format('svg');
    font-weight: normal;
    font-style: normal;
}

[class^="opencart-icon-"], [class*=" opencart-icon-"] {
    font-family: 'opencart' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    /* Better Font Rendering =========== */
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.opencart-icon-comment:before {
    content: "\e91b";
}

.opencart-icon-cart-mini:before {
    content: "\e91c";
}

#menu li ul a {
    font-size: 13px;
}

.invert {
    filter: invert(100%);
}

.sellerAccountImg1 {
    width: 18px;
    height: 18px;
    margin-right: 5px;
}

.ptssellertop > div {
    margin-top: 8px;
}

#header .nav > li > a {
    line-height: 50px;
}


.icons-text {
    padding-left: 60px !important;
    margin-top: -35px !important;
}

.menu-icons {
    padding-left: 27px !important;
    margin-top: -19px !important;
}

.ptssellertop #form-currency .currency-select, .ptssellertop #form-language .language-select {
    text-align: left;
}