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

:root {
    --brand: #f4a416;
    --brand-hover: #de8f11;
    --brand-dark: #424242;
    --body-bg: #fafafa;
    --surface: #ffffff;
    --heading: #424242;
    --text: #545454;
    --muted: #7f7f7f;
    --line: #ececec;
    --border: #e2e2e2;
    --danger: #ff0000;
    --success: #228b22;
    --shadow-sm: 0 1px 3px rgba(30, 30, 30, 0.06);
    --shadow-md: 0 8px 24px rgba(30, 30, 30, 0.08);
    --radius: 8px;
    --radius-sm: 5px;

    --sidebar-bg: #1c1c1e;
    --sidebar-bg-elevated: #242426;
    --sidebar-hover-bg: rgba(255, 255, 255, 0.06);
    --sidebar-active-bg: rgba(244, 164, 22, 0.14);
    --sidebar-text: #e8e8e9;
    --sidebar-text-muted: #9a9a9d;
    --sidebar-border: rgba(255, 255, 255, 0.07);
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Heebo', 'Open Sans', sans-serif;
    color: var(--text);
    text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6, p {
    margin-top: 0;
}

.page-header {
    vertical-align: middle;
    margin: 24px 0 18px 0;
    padding: 0;
    border-bottom: 1px solid var(--line);
}

.page-header h1 {
    font-family: 'Oswald', 'Heebo', sans-serif;
    font-weight: 500;
    font-size: 26px;
    letter-spacing: 0.2px;
    color: var(--heading);
    display: inline-block;
    margin-bottom: 15px;
    text-shadow: none;
}

.breadcrumb {
    display: inline-block;
    background: none;
    margin: 8px 0 19px 0;
    padding: 0 10px;
    border-radius: 0;
}

.breadcrumb li a {
    color: var(--muted);
    font-size: 13px;
    padding: 0px;
    margin: 0px;
}

.breadcrumb li a:hover {
    text-decoration: none;
}

.breadcrumb li + li:before {
    content: "\f105";
    font-family: FontAwesome;
    color: #c9c9c9;
    padding: 0 5px;
    font-size: 10px;
}

a:hover, a:focus {
    text-decoration: none;
}

#container {
    min-height: 100%;
    width: 100%;
    position: relative;
    background: var(--body-bg);
    overflow: hidden;
}

.container-fluid {
    padding: 0 20px;
}

#header {
    min-height: 0px;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    margin: 0;
    padding: 0;
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 20;
}

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

#header .navbar-header {
    transition: 0.3s all;
    border-right: 1px solid #eee;
    width: 235px;
    display: none;
}

#header .navbar-brand {
    margin-left: 8px;
}

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

#header .navbar-right > li {
    border-left: 1px solid #eee;
}

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

#header #user-profile {
    max-width: 30px;
    margin-right: 15px;
}

#header .nav > li > a {
    padding: 0px 21px;
    line-height: 45px;
    cursor: pointer;
    color: #6D6D6D;
    border-left: 0px solid #E1E1E1;
}

#header .nav > li.dropdown > a {
    padding-left: 10px;
    padding-right: 10px;
}

#header .nav > li.dropdown > a {
    padding-left: 10px;
    padding-right: 10px;
}

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

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

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

#button-menu {
    line-height: 30px;
    font-size: 24px;
    float: left;
    padding: 10px 16px;
    line-height: 25px;
    display: inline-block;
    cursor: pointer;
    color: #6D6D6D;
    border-right: 1px solid #eee;
}

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

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

#column-left::-webkit-scrollbar {
    width: 8px;
    background-color: transparent;
}

#column-left::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.12);
}

#content {
    padding-bottom: 40px;
}

#column-left, #content, #footer {
    transition: all 0.3s;
}

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

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

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

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

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

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

/* Navigation */
#navigation {
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-size: 11px;
    font-weight: 600;
    padding: 14px 20px;
    color: var(--sidebar-text-muted);
    background: transparent;
    border-bottom: 1px solid var(--sidebar-border);
    display: block;
}

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

#menu {
    margin-bottom: 20px;
    padding: 8px;
}

#menu li a {
    text-decoration: none;
    display: block;
    padding: 11px 12px;
    margin: 2px 0;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: background-color 0.15s ease, color 0.15s ease;
}

#menu li a.parent:after {
    font-family: FontAwesome;
    content: "\f105";
    float: right;
    margin-right: 2px;
    font-size: 12px;
    opacity: 0.7;
    transition: transform 0.2s ease;
}

#menu li a.parent:not(.collapsed):after {
    transform: rotate(90deg);
}

/* 1st lvl */
#menu > li {
    position: relative;
}

#menu > li > a {
    font-size: 14px;
    font-weight: 500;
    color: var(--sidebar-text-muted);
}

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

#menu a:focus-visible {
    outline: 2px solid var(--brand);
    outline-offset: -2px;
}

#menu > li > a > i {
    font-size: 15px;
    width: 20px;
    margin-right: 8px;
    text-align: center;
}

#menu > li.active > a {
    color: var(--brand);
    background-color: var(--sidebar-active-bg);
    font-weight: 600;
}

#menu > li > ul {
    background: transparent;
    padding: 2px 0 2px 12px;
}

/* 2nd lvl */
#menu li li a {
    color: var(--sidebar-text-muted);
    font-size: 13.5px;
}

#menu li li a:before {
    content: "\f101";
    font-size: 12px;
    font-family: FontAwesome;
    margin-right: 8px;
    opacity: 0.6;
    transition: margin ease 0.2s;
}

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

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

#menu li li.active > a {
    color: var(--brand);
    background-color: var(--sidebar-active-bg);
    font-weight: 600;
}

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

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

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

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

/* footer */
#footer {
    height: 100px;
    text-align: center;
}

/* Navs
/* Tabs */
.nav-tabs > li > a {
    color: var(--muted);
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}

.nav-tabs > li > a:hover {
    border-color: #eee #eee #ddd;
}

.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(--heading);
}

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

/* Modern rounded controls + brand focus ring (overrides Bootstrap defaults) */
.btn, .form-control, .input-group-addon, .dropdown-menu, .alert, .label, .well, .modal-content {
    border-radius: var(--radius-sm);
}

.btn {
    transition: background-color 0.15s, border-color 0.15s, box-shadow 0.15s;
}

.form-control:focus {
    border-color: var(--brand);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.06), 0 0 0 3px rgba(244, 164, 22, 0.15);
}

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(--brand);
    outline: 0;
}

div.required .control-label:not(span):before, td.required:before {
    content: '* ';
    color: #F00;
    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: #F4A416;
    content: "\f059";
    margin-left: 4px;
}

fieldset legend {
    padding-bottom: 5px;
}

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: 13px;
    width: 16px \0;
    height: 13px;
    height: 16px \0;
    -webkit-appearance: none;
    background: white;
    border: 1px solid #dcdcdc;
    border: 1px solid transparent \0;
    border-radius: 1px;
}

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: #4d90fe;
    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;
}

input[type="radio"], .radio input[type="radio"], .radio-inline input[type="radio"] {
    width: 15px;
    width: 18px \0;
    height: 15px;
    height: 18px \0;
    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: #666;
    border-radius: 1em;
}

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

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');
}

.table thead td {
    font-weight: 600;
    color: var(--heading);
    background: #fbfbfb;
}

.table thead > tr > td, .table tbody > tr > td {
    vertical-align: middle;
}

.table-hover > tbody > tr:hover {
    background-color: #fdf6e8;
}

.table a.asc:after {
    content: " \f106";
    font-family: FontAwesome;
}

.table a.desc:after {
    content: " \f107";
    font-family: FontAwesome;
}

.pagination {
    margin: 0;
}

.form-group {
    padding-top: 15px;
    padding-bottom: 15px;
    margin-bottom: 0;
}

.form-group + .form-group {
    border-top: 1px solid #ededed;
}

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

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

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

.panel-heading h3 {
    font-weight: 500;
    display: inline-block;
}

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

.panel-primary .panel-heading {
    color: var(--brand-hover);
    border-color: #f6cf8e;
    background: white;
}

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

.panel-default .panel-heading {
    color: var(--heading);
    border-color: var(--border);
    background: #fbfbfb;
    text-shadow: none;
}

.list-group-item {
    border-color: var(--border);
    transition: background-color 0.15s;
}

.list-group-item:hover {
    background-color: #fdf6e8;
}

.list-group-item.text-center {
    padding: 34px 15px;
    color: var(--muted);
    font-size: 13px;
}

.list-group-item.text-center:hover {
    background-color: transparent;
}

.img-thumbnail i {
    color: #FFFFFF;
    background-color: #EEEEEE;
    text-align: center;
    vertical-align: middle;
    width: 100px;
    height: 100px;
    padding-top: 20px;
    vertical-align: middle;
    display: inline-block;
}

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

/* Tiles */
.tile {
    margin-bottom: 15px;
    border-radius: var(--radius);
    color: #FFFFFF;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    overflow: hidden;
}

.tile-primary {
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-hover) 100%);
}

.tile-success {
    background-color: #53b953;
}

.tile-warning {
    background-color: #f3aa41;
}

.tile-danger {
    background-color: #e45847;
}

.tile:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(30, 30, 30, 0.15);
}

.tile a {
    color: #FFFFFF;
}

.tile-heading {
    padding: 14px 18px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    text-shadow: none;
    background-color: transparent;
}

.tile .tile-heading .pull-right {
    transition: opacity 0.2s;
    opacity: 0.85;
}

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

.tile-body {
    padding: 6px 18px 18px;
    color: #FFFFFF;
    text-shadow: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tile .tile-body i {
    font-size: 36px;
    opacity: 0.4;
    transition: opacity 0.2s;
}

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

.tile .tile-body h2 {
    font-size: 32px;
    font-weight: 700;
    margin: 0;
}

.tile-footer {
    padding: 10px 18px;
    font-size: 12.5px;
    background-color: rgba(0, 0, 0, 0.12);
}

.tile-footer a {
    font-weight: 500;
}

#stats {
    border-radius: var(--radius);
    color: var(--sidebar-text-muted);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--sidebar-border);
    margin: 8px 12px 16px;
    padding: 4px 0;
}

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

#stats li {
    font-size: 11px;
    color: var(--sidebar-text-muted);
    padding: 8px 12px;
}

#stats li + li {
    border-top: 1px solid var(--sidebar-border);
}

#stats div:first-child {
    margin-bottom: 6px;
    color: var(--sidebar-text);
}

#stats .progress {
    height: 4px;
    margin-bottom: 0;
    border-radius: 2px;
    background-color: rgba(255, 255, 255, 0.08);
}

.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 #d98e0e;
}

#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 #d98e0e;
    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";
}

/* Tun Market branding */
#header-logo img {
    max-height: 40px;
    width: auto;
}

/* Login page: full-height centered card on a branded dark background.
   Hides the app chrome (top navbar) via :has() since this page never
   includes column_left and only the logo shows in the header when logged out. */
#container:has(.login-page) {
    background: radial-gradient(circle at 20% 15%, #3a3a3a 0%, #1c1c1c 55%, #161616 100%);
}

#container:has(.login-page) #header {
    display: none;
}

.login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.login-card {
    width: 100%;
    max-width: 380px;
    background: var(--surface);
    border-radius: 14px;
    box-shadow: var(--shadow-md);
    padding: 40px 36px 32px;
}

.login-brand {
    text-align: center;
    margin-bottom: 28px;
}

.login-brand img {
    max-height: 44px;
    width: auto;
    margin-bottom: 14px;
}

.login-brand p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.login-card .form-group {
    padding-top: 0;
    padding-bottom: 16px;
    border-top: none !important;
}

.login-card label {
    color: var(--heading);
    font-weight: 500;
    font-size: 13px;
}

.login-card .btn-primary {
    padding: 10px;
    font-weight: 600;
    letter-spacing: 0.2px;
}

.login-forgot {
    text-align: center;
    margin-top: 16px;
}

.login-forgot a {
    color: var(--muted);
    font-size: 13px;
}

.login-forgot a:hover {
    color: var(--brand-hover);
}

/* Tun Market brand colors: override Bootstrap's default blue (#1e91cf family)
   with the storefront's brand orange. Kept here instead of editing the vendor
   bootstrap.css directly, and loads after it so these rules win the cascade. */
a,
.text-primary,
.btn-primary .badge,
.btn-link,
.breadcrumb > li:last-child a,
.pagination > li > a,
.pagination > li > span,
.list-group-item.active > .badge,
.nav-pills > .active > a > .badge,
.panel-primary > .panel-heading .badge {
    color: #F4A416;
}

a:hover, a:focus,
.btn-link:hover, .btn-link:focus,
.pagination > li > a:hover, .pagination > li > span:hover,
.pagination > li > a:focus, .pagination > li > span:focus {
    color: #d98e0e;
}

.bg-primary,
.btn-primary,
.dropdown-menu > .active > a, .dropdown-menu > .active > a:hover, .dropdown-menu > .active > a:focus,
.nav-pills > li.active > a, .nav-pills > li.active > a:hover, .nav-pills > li.active > a:focus,
.pagination > .active > a, .pagination > .active > span,
.pagination > .active > a:hover, .pagination > .active > span:hover,
.pagination > .active > a:focus, .pagination > .active > span:focus,
.label-primary,
.progress-bar,
.list-group-item.active, .list-group-item.active:hover, .list-group-item.active:focus,
.panel-primary > .panel-heading {
    background-color: #F4A416;
    border-color: #d98e0e;
}

.btn-primary:focus, .btn-primary.focus,
.btn-primary:hover,
.btn-primary:active, .btn-primary.active, .open > .btn-primary.dropdown-toggle,
.btn-primary:active:hover, .btn-primary.active:hover, .open > .btn-primary.dropdown-toggle:hover,
.btn-primary:active:focus, .btn-primary.active:focus, .open > .btn-primary.dropdown-toggle:focus,
.btn-primary:active.focus, .btn-primary.active.focus, .open > .btn-primary.dropdown-toggle.focus,
.btn-primary.disabled:hover, .btn-primary[disabled]:hover, fieldset[disabled] .btn-primary:hover,
.btn-primary.disabled:focus, .btn-primary[disabled]:focus, fieldset[disabled] .btn-primary:focus,
.btn-primary.disabled.focus, .btn-primary[disabled].focus, fieldset[disabled] .btn-primary.focus {
    background-color: #d98e0e;
    border-color: #d98e0e;
}

.nav .open > a, .nav .open > a:hover, .nav .open > a:focus,
a.thumbnail:hover, a.thumbnail:focus, a.thumbnail.active,
.panel-primary,
.panel-primary > .panel-heading + .panel-collapse > .panel-body,
.panel-primary > .panel-footer + .panel-collapse > .panel-body {
    border-color: #F4A416;
}
